You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello 👋 Thanks for putting together this validator and thanks for making it available to the public. It's great to have a validator so we can better align the implementations of design tokens.
I'm wondering if there's a bug resolving aliases? I expect this example to be valid:
Hello 👋 Thanks for putting together this validator and thanks for making it available to the public. It's great to have a validator so we can better align the implementations of design tokens.
I'm wondering if there's a bug resolving aliases? I expect this example to be valid:
{ "Action": { "$type": "shadow", "$value": { "blur": "2px", "color": "{one}", "offsetX": "0px", "offsetY": "1px", "spread": "0px" } }, "one": { "$type": "color", "$value": "#FFFFFF" } }However I get the following error:
A color token resolving another color token's value works however:
{ "my color": { "$type": "color", "$value": "{one}" }, "one": { "$type": "color", "$value": "#FFFFFF" } }Thanks again!