Skip to content

Commit

Permalink
blur selected and selected disabled token casing
Browse files Browse the repository at this point in the history
  • Loading branch information
origami-z committed Feb 22, 2024
1 parent 88eb1b2 commit aa5a56e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/export-variables-rest-api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,10 @@ function generateCustomCSS() {
ignoreNameSpecialPrefix: true,
});

const transformedOutputCss = outputCss.replace(
/(-border)([-:])/g,
"$1Color$2"
);
const transformedOutputCss = outputCss
.replace(/(-border)([-:])/g, "$1Color$2")
.replace(/-blur-selected/g, "-blurSelected")
.replace(/-selected-disabled/g, "-selectedDisabled");

const outputFilePath = join(
CODE_OUTPUT_FOLDER,
Expand Down

0 comments on commit aa5a56e

Please sign in to comment.