@ni/nimble-tokens 1.0.0-beta.28 → 1.0.0-beta.31
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/README.md +21 -21
- package/dist/styledictionary/css/variables.css +99 -99
- package/dist/styledictionary/js/tokens.d.ts +96 -96
- package/dist/styledictionary/js/tokens.js +96 -96
- package/dist/styledictionary/properties/colors.json +93 -93
- package/dist/styledictionary/properties/custom.json +11 -11
- package/dist/styledictionary/properties/fonts.json +227 -227
- package/dist/styledictionary/properties/sizes.json +2 -2
- package/dist/styledictionary/scss/variables.scss +50 -50
- package/dist-icons-esm/nimble-icons-inline.d.ts +594 -594
- package/dist-icons-esm/nimble-icons-inline.js +589 -589
- package/package.json +43 -40
- package/source/source-sans-pro-font-face.css +5 -5
- package/source/space-mono-font-face.css +5 -5
package/package.json
CHANGED
|
@@ -1,40 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ni/nimble-tokens",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
4
|
-
"description": "Design tokens for the NI Nimble Design System",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"build": "npm run build:svg-to-ts && npm run build:ts",
|
|
7
|
-
"build:svg-to-ts": "svg-to-ts --config source/build/svg-to-ts-config.js",
|
|
8
|
-
"build:ts": "tsc -p ./tsconfig.json",
|
|
9
|
-
"build:ts:watch": "tsc -p ./tsconfig.json -w",
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"dist/styledictionary/
|
|
36
|
-
"dist
|
|
37
|
-
"dist
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@ni/nimble-tokens",
|
|
3
|
+
"version": "1.0.0-beta.31",
|
|
4
|
+
"description": "Design tokens for the NI Nimble Design System",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "npm run build:svg-to-ts && npm run build:ts",
|
|
7
|
+
"build:svg-to-ts": "svg-to-ts --config source/build/svg-to-ts-config.js",
|
|
8
|
+
"build:ts": "tsc -p ./tsconfig.json",
|
|
9
|
+
"build:ts:watch": "tsc -p ./tsconfig.json -w",
|
|
10
|
+
"pack:nuget": "cross-env-shell dotnet pack ./source/NimbleTokens --configuration Release -p:PackageVersion=$npm_package_version",
|
|
11
|
+
"lint": "eslint ."
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/ni/nimble.git"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "National Instruments"
|
|
19
|
+
},
|
|
20
|
+
"license": "UNLICENSED",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/ni/nimble/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/ni/nimble#readme",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@ni/eslint-config-javascript": "^3.0.0",
|
|
27
|
+
"cross-env": "^7.0.3",
|
|
28
|
+
"hex-rgb": "^4.0.0",
|
|
29
|
+
"style-dictionary": "^3.0.3",
|
|
30
|
+
"svg-to-ts": "^6.0.1",
|
|
31
|
+
"typescript": "^4.3.2"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"assets-fonts/**",
|
|
35
|
+
"dist/styledictionary/css/**",
|
|
36
|
+
"dist/styledictionary/js/**",
|
|
37
|
+
"dist/styledictionary/properties/**",
|
|
38
|
+
"dist/styledictionary/scss/**",
|
|
39
|
+
"dist-icons/**",
|
|
40
|
+
"dist-icons-esm/**",
|
|
41
|
+
"source/*.css"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'Source Sans Pro';
|
|
3
|
-
src: url('../assets-fonts/SourceSansPro-Regular.ttf') format('truetype');
|
|
4
|
-
font-display: swap;
|
|
5
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Source Sans Pro';
|
|
3
|
+
src: url('../assets-fonts/SourceSansPro-Regular.ttf') format('truetype');
|
|
4
|
+
font-display: swap;
|
|
5
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'Space Mono';
|
|
3
|
-
src: url('../assets-fonts/SpaceMono-Regular.ttf') format('truetype');
|
|
4
|
-
font-display: swap;
|
|
5
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Space Mono';
|
|
3
|
+
src: url('../assets-fonts/SpaceMono-Regular.ttf') format('truetype');
|
|
4
|
+
font-display: swap;
|
|
5
|
+
}
|