For example:
The following doesn't pass a width class to the component it is assigned to
builtInStyles: ['cfWidth']
A work around im currently using it to use the default value syntax as shown below, however this seems to stop working if builtInStyles has any kind of value (anything apart from undefined) - meaning if i try to turn off margin (ie - builtInStyles: []) it stops working again.
variables: {
cfWidth: {
displayName: 'Width',
type: 'Text',
group: 'style',
defaultValue: 'fill'
}
}