We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should add support for --expandCompositionTokens in token-transformer.
An expanded composition token should have a value and a type property. The type property should have the type of the property that was set.
value
type
For example, the following input
{ "cardDefault": { "type": "composition", "value": { "borderWidthLeft": "{sizing.md}", "borderRadius": "{radii.md} } }
would produce this output:
{ "cardDefault": { "borderWidthLeft": { "value": "{sizing.md}", "type": "borderWidth" }, "borderRadius": { "value": "{radii.md}, "type": "borderRadius" } }
The text was updated successfully, but these errors were encountered:
swordEdge
Successfully merging a pull request may close this issue.
We should add support for --expandCompositionTokens in token-transformer.
An expanded composition token should have a
value
and atype
property. Thetype
property should have the type of the property that was set.For example, the following input
would produce this output:
The text was updated successfully, but these errors were encountered: