├── .editorconfig ├── .gitignore ├── .node-version ├── .vscode └── settings.json ├── README.md ├── manifest.json ├── package.json ├── src ├── main.ts ├── styles.css ├── styles.css.d.ts ├── types.ts └── ui.tsx ├── test-data ├── colors.json ├── content.json └── spacing.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18.16.0 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 164px; 3 | overflow: auto; 4 | } 5 | -------------------------------------------------------------------------------- /src/styles.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/src/styles.css.d.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /test-data/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/test-data/colors.json -------------------------------------------------------------------------------- /test-data/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/test-data/content.json -------------------------------------------------------------------------------- /test-data/spacing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/test-data/spacing.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephnle/figma-style-dictionary-variables/HEAD/tsconfig.json --------------------------------------------------------------------------------