@rijkshuisstijl-community/design-tokens 1.0.0-alpha.99 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/build.mjs +129 -0
- package/dist/_variables.scss +646 -635
- package/dist/index.css +646 -635
- package/dist/index.d.ts +725 -715
- package/dist/index.js +742 -731
- package/dist/index.json +741 -730
- package/dist/index.tokens.json +1625 -1617
- package/dist/root.css +646 -635
- package/dist/tokens.d.ts +1506 -1498
- package/dist/tokens.js +22273 -22035
- package/dist/uitvoerend-mintgroen-focus/_variables.scss +1204 -0
- package/dist/uitvoerend-mintgroen-focus/index.css +1207 -0
- package/dist/uitvoerend-mintgroen-focus/index.d.ts +1205 -0
- package/dist/uitvoerend-mintgroen-focus/index.js +1205 -0
- package/dist/uitvoerend-mintgroen-focus/index.json +1202 -0
- package/dist/uitvoerend-mintgroen-focus/index.tokens.json +1890 -0
- package/dist/uitvoerend-mintgroen-focus/root.css +1207 -0
- package/dist/uitvoerend-mintgroen-focus/tokens.d.ts +1913 -0
- package/dist/uitvoerend-mintgroen-focus/tokens.js +28229 -0
- package/dist/uitvoerend-violet/_variables.scss +1198 -0
- package/dist/uitvoerend-violet/index.css +1201 -0
- package/dist/uitvoerend-violet/index.d.ts +1199 -0
- package/dist/uitvoerend-violet/index.js +1199 -0
- package/dist/uitvoerend-violet/index.json +1196 -0
- package/dist/uitvoerend-violet/index.tokens.json +1852 -0
- package/dist/uitvoerend-violet/root.css +1201 -0
- package/dist/uitvoerend-violet/tokens.d.ts +1875 -0
- package/dist/uitvoerend-violet/tokens.js +28057 -0
- package/dist/uitvoerend-violet-oud/_variables.scss +1198 -0
- package/dist/uitvoerend-violet-oud/index.css +1201 -0
- package/dist/uitvoerend-violet-oud/index.d.ts +1199 -0
- package/dist/uitvoerend-violet-oud/index.js +1199 -0
- package/dist/uitvoerend-violet-oud/index.json +1196 -0
- package/dist/uitvoerend-violet-oud/index.tokens.json +1852 -0
- package/dist/uitvoerend-violet-oud/root.css +1201 -0
- package/dist/uitvoerend-violet-oud/tokens.d.ts +1875 -0
- package/dist/uitvoerend-violet-oud/tokens.js +28057 -0
- package/dist/wetgevend/_variables.scss +1198 -0
- package/dist/wetgevend/index.css +1201 -0
- package/dist/wetgevend/index.d.ts +1199 -0
- package/dist/wetgevend/index.js +1199 -0
- package/dist/wetgevend/index.json +1196 -0
- package/dist/wetgevend/index.tokens.json +1852 -0
- package/dist/wetgevend/root.css +1201 -0
- package/dist/wetgevend/tokens.d.ts +1875 -0
- package/dist/{tokens.json → wetgevend/tokens.js} +17174 -16931
- package/figma/figma.tokens.json +937 -235
- package/package.json +10 -12
- package/src/generated/{figma.tokens.json → base.tokens.json} +4373 -4307
- package/src/generated/themes.json +22450 -0
- package/src/generated/uitvoerend-mintgroen-focus/tokens.json +5650 -0
- package/src/generated/uitvoerend-violet/tokens.json +5594 -0
- package/src/generated/uitvoerend-violet-oud/tokens.json +5594 -0
- package/src/generated/wetgevend/tokens.json +5594 -0
- package/token-transformer.mjs +77 -41
- package/dist/variables.less +0 -1187
- package/style-dictionary.config.json +0 -105
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rijkshuisstijl-community/design-tokens",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": "Community for NL Design System",
|
|
5
5
|
"description": "Example design tokens",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -17,15 +17,6 @@
|
|
|
17
17
|
"url": "git@github.com:nl-design-system/rijkshuisstijl-community.git",
|
|
18
18
|
"directory": "proprietary/design-tokens"
|
|
19
19
|
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"clean": "rimraf dist/* src/generated/*",
|
|
22
|
-
"build": "npm-run-all clean build:figma-tokens build:style-dictionary",
|
|
23
|
-
"build:figma-tokens": "node ./token-transformer.mjs",
|
|
24
|
-
"build:scss": "sass --no-source-map src/:dist/",
|
|
25
|
-
"build:style-dictionary": "style-dictionary build --config ./style-dictionary.config.json",
|
|
26
|
-
"watch": "npm-run-all watch:**",
|
|
27
|
-
"watch:style-dictionary": "chokidar --follow-symlinks --command 'npm-run-all clean build:figma-tokens build:style-dictionary' 'src/**/*.tokens.json'"
|
|
28
|
-
},
|
|
29
20
|
"devDependencies": {
|
|
30
21
|
"chokidar-cli": "3.0.0",
|
|
31
22
|
"npm-run-all": "4.1.5",
|
|
@@ -33,5 +24,12 @@
|
|
|
33
24
|
"style-dictionary": "3.9.2",
|
|
34
25
|
"token-transformer": "0.0.33"
|
|
35
26
|
},
|
|
36
|
-
"
|
|
37
|
-
|
|
27
|
+
"scripts": {
|
|
28
|
+
"clean": "rimraf dist/* src/generated/*",
|
|
29
|
+
"build": "npm-run-all clean build:figma-tokens build:style-dictionary",
|
|
30
|
+
"build:figma-tokens": "node ./token-transformer.mjs",
|
|
31
|
+
"build:style-dictionary": "node build.mjs",
|
|
32
|
+
"watch": "npm-run-all watch:**",
|
|
33
|
+
"watch:style-dictionary": "chokidar --follow-symlinks --command 'npm-run-all clean build:figma-tokens build:style-dictionary' 'src/**/*.tokens.json'"
|
|
34
|
+
}
|
|
35
|
+
}
|