@ni/nimble-tokens 6.12.0 → 6.12.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/dist/icons/js/index.d.ts +2 -2
- package/dist/icons/js/index.js +185 -185
- package/dist/icons/js/index.js.map +1 -1
- package/dist/styledictionary/css/variables.css +1 -1
- package/dist/styledictionary/js/tokens.d.ts +7 -4
- package/dist/styledictionary/js/tokens.js +2 -2
- package/dist/styledictionary/scss/variables.scss +2 -2
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 12 Mar 2024 20:45:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const SlLegacyBlue : string;
|
|
@@ -171,6 +171,9 @@ export const BodyEmphasizedLineHeight : string;
|
|
|
171
171
|
export const BodyEmphasized2LineHeight : string;
|
|
172
172
|
export const ButtonLabel1LineHeight : string;
|
|
173
173
|
export const TooltipCaptionLineHeight : string;
|
|
174
|
-
|
|
175
|
-
export const
|
|
176
|
-
|
|
174
|
+
/** Short animation delay used for control state change animation */
|
|
175
|
+
export const SmallDelay : string;
|
|
176
|
+
/** Medium animation delay for control state change animation */
|
|
177
|
+
export const MediumDelay : string;
|
|
178
|
+
/** Long animation delay used for control state change animation */
|
|
179
|
+
export const LargeDelay : string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 12 Mar 2024 20:45:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const SlLegacyBlue = "#009ff5";
|
|
@@ -173,4 +173,4 @@ export const ButtonLabel1LineHeight = "16px";
|
|
|
173
173
|
export const TooltipCaptionLineHeight = "14px";
|
|
174
174
|
export const SmallDelay = "0.075s"; // Short animation delay used for control state change animation
|
|
175
175
|
export const MediumDelay = "0.15s"; // Medium animation delay for control state change animation
|
|
176
|
-
export const LargeDelay = "0.25s"; // Long animation delay used for control state change animation
|
|
176
|
+
export const LargeDelay = "0.25s"; // Long animation delay used for control state change animation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 12 Mar 2024 20:45:49 GMT
|
|
4
4
|
|
|
5
5
|
$ni-nimble-base-sl-legacy-blue: #009ff5;
|
|
6
6
|
$ni-nimble-base-information-100-dark-ui: #a46eff;
|
|
@@ -172,4 +172,4 @@ $ni-nimble-base-button-label-1-line-height: 16px;
|
|
|
172
172
|
$ni-nimble-base-tooltip-caption-line-height: 14px;
|
|
173
173
|
$ni-nimble-base-small-delay: 0.075s; // Short animation delay used for control state change animation
|
|
174
174
|
$ni-nimble-base-medium-delay: 0.15s; // Medium animation delay for control state change animation
|
|
175
|
-
$ni-nimble-base-large-delay: 0.25s; // Long animation delay used for control state change animation
|
|
175
|
+
$ni-nimble-base-large-delay: 0.25s; // Long animation delay used for control state change animation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-tokens",
|
|
3
|
-
"version": "6.12.
|
|
3
|
+
"version": "6.12.1",
|
|
4
4
|
"description": "Design tokens for the NI Nimble Design System",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run build:svg-to-ts && npm run build:ts && npm run build:svg-to-ico && npm run build:generate-font-scss && npm run build:style-dictionary",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@microsoft/fast-colors": "^5.3.1",
|
|
40
40
|
"@ni/eslint-config-javascript": "^4.2.0",
|
|
41
41
|
"cross-env": "^7.0.3",
|
|
42
|
-
"glob": "^
|
|
42
|
+
"glob": "^10.3.10",
|
|
43
43
|
"lodash": "^4.17.21",
|
|
44
44
|
"rimraf": "^5.0.5",
|
|
45
|
-
"sharp": "^0.
|
|
46
|
-
"style-dictionary": "3.
|
|
47
|
-
"svg-to-ts": "^
|
|
45
|
+
"sharp": "^0.33.2",
|
|
46
|
+
"style-dictionary": "^3.9.2",
|
|
47
|
+
"svg-to-ts": "^12.0.0",
|
|
48
48
|
"to-ico": "^1.1.5",
|
|
49
|
-
"typescript": "~4.
|
|
49
|
+
"typescript": "~4.9.5"
|
|
50
50
|
},
|
|
51
51
|
"files": [
|
|
52
52
|
"dist/styledictionary/css/**",
|