@dsn-starter-kit/design-tokens 1.0.0
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/LICENSE +21 -0
- package/README.md +287 -0
- package/dist/css/scoped/density-default.css +14 -0
- package/dist/css/scoped/density-information-dense.css +16 -0
- package/dist/css/scoped/wireframe-dark.css +340 -0
- package/dist/css/scoped/wireframe-light.css +340 -0
- package/dist/css/start-dark-default.css +1364 -0
- package/dist/css/start-dark-information-dense.css +1364 -0
- package/dist/css/start-light-default.css +1364 -0
- package/dist/css/start-light-information-dense.css +1364 -0
- package/dist/css/variables-dark.css +1364 -0
- package/dist/css/variables.css +1364 -0
- package/dist/css/wireframe-dark-default.css +1360 -0
- package/dist/css/wireframe-dark-information-dense.css +1360 -0
- package/dist/css/wireframe-light-default.css +1360 -0
- package/dist/css/wireframe-light-information-dense.css +1360 -0
- package/dist/js/start-dark-default.d.ts +1348 -0
- package/dist/js/start-dark-default.js +27420 -0
- package/dist/js/start-dark-information-dense.d.ts +1348 -0
- package/dist/js/start-dark-information-dense.js +27424 -0
- package/dist/js/start-light-default.d.ts +1348 -0
- package/dist/js/start-light-default.js +27418 -0
- package/dist/js/start-light-information-dense.d.ts +1348 -0
- package/dist/js/start-light-information-dense.js +27422 -0
- package/dist/js/tokens-dark.d.ts +1348 -0
- package/dist/js/tokens-dark.js +27420 -0
- package/dist/js/tokens.d.ts +1348 -0
- package/dist/js/tokens.js +27418 -0
- package/dist/js/wireframe-dark-default.d.ts +1344 -0
- package/dist/js/wireframe-dark-default.js +26975 -0
- package/dist/js/wireframe-dark-information-dense.d.ts +1344 -0
- package/dist/js/wireframe-dark-information-dense.js +26979 -0
- package/dist/js/wireframe-light-default.d.ts +1344 -0
- package/dist/js/wireframe-light-default.js +26975 -0
- package/dist/js/wireframe-light-information-dense.d.ts +1344 -0
- package/dist/js/wireframe-light-information-dense.js +26979 -0
- package/dist/json/start-dark-default.json +1350 -0
- package/dist/json/start-dark-information-dense.json +1350 -0
- package/dist/json/start-light-default.json +1350 -0
- package/dist/json/start-light-information-dense.json +1350 -0
- package/dist/json/tokens-dark.json +1350 -0
- package/dist/json/tokens.json +1350 -0
- package/dist/json/wireframe-dark-default.json +1346 -0
- package/dist/json/wireframe-dark-information-dense.json +1346 -0
- package/dist/json/wireframe-light-default.json +1346 -0
- package/dist/json/wireframe-light-information-dense.json +1346 -0
- package/dist/scss/_start-dark-default.scss +1351 -0
- package/dist/scss/_start-dark-information-dense.scss +1351 -0
- package/dist/scss/_start-light-default.scss +1351 -0
- package/dist/scss/_start-light-information-dense.scss +1351 -0
- package/dist/scss/_variables-dark.scss +1351 -0
- package/dist/scss/_variables.scss +1351 -0
- package/dist/scss/_wireframe-dark-default.scss +1347 -0
- package/dist/scss/_wireframe-dark-information-dense.scss +1347 -0
- package/dist/scss/_wireframe-light-default.scss +1347 -0
- package/dist/scss/_wireframe-light-information-dense.scss +1347 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dsn-starter-kit/design-tokens",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Design tokens for the design system",
|
|
5
|
+
"main": "dist/js/tokens.js",
|
|
6
|
+
"types": "dist/js/tokens.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/js/tokens.d.ts",
|
|
10
|
+
"import": "./dist/js/tokens.js",
|
|
11
|
+
"default": "./dist/js/tokens.js"
|
|
12
|
+
},
|
|
13
|
+
"./dark": {
|
|
14
|
+
"types": "./dist/js/tokens-dark.d.ts",
|
|
15
|
+
"import": "./dist/js/tokens-dark.js",
|
|
16
|
+
"default": "./dist/js/tokens-dark.js"
|
|
17
|
+
},
|
|
18
|
+
"./css": "./dist/css/variables.css",
|
|
19
|
+
"./css/dark": "./dist/css/variables-dark.css",
|
|
20
|
+
"./css/dark-scoped": "./dist/css/variables-dark-scoped.css",
|
|
21
|
+
"./scss": "./dist/scss/_variables.scss",
|
|
22
|
+
"./scss/dark": "./dist/scss/_variables-dark.scss"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"design-tokens",
|
|
30
|
+
"design-system",
|
|
31
|
+
"style-dictionary"
|
|
32
|
+
],
|
|
33
|
+
"author": "Jeffrey Lauwers",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"style-dictionary": "^4.0.0"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "node src/config/build.js",
|
|
43
|
+
"clean": "rm -rf dist",
|
|
44
|
+
"watch": "node --watch-path=src src/config/build.js"
|
|
45
|
+
}
|
|
46
|
+
}
|