freenowtech / wave

Design System of FREE NOW
https://wave.free-now.com
Apache License 2.0
64 stars 22 forks source link

Semantic colors codemod #411

Closed martimalek closed 8 months ago

martimalek commented 8 months ago

What

Adds a codemod to automatically migrate usages of SemanticColors and themeGet to getSemanticValue

SemanticColors example From

SemanticColors.button.primary.backgroundDisabled

to

getSemanticValue('background-element-disabled-default')

themeGet example From

themeGet('semanticColors.text.primary')

To

getSemanticValue('foreground-primary')

Why

To ease the migration effort throughout our codebase

How

Closes #395