Fix for a build error for @flowable/work

export enum FlowableHeaderSize {
Small = ‘sm’,
Medium = ‘md’,
Large = ‘xlg’
}

Is causing an issue with build as its not pulling the exact values, I think turning this into a const object may fix this.

eg: .Small is not a property of undefined (FlowableHeaderSize)