@ni/nimble-tokens 6.12.0 → 6.13.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/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 +5 -1
- package/dist/styledictionary/js/tokens.d.ts +11 -4
- package/dist/styledictionary/js/tokens.js +6 -2
- package/dist/styledictionary/scss/variables.scss +6 -2
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Mar 2024 16:56:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -69,6 +69,8 @@
|
|
|
69
69
|
--ni-nimble-base-control-label-1-weight: 600;
|
|
70
70
|
--ni-nimble-base-body-family: Source Sans Pro;
|
|
71
71
|
--ni-nimble-base-body-weight: 400;
|
|
72
|
+
--ni-nimble-base-body-2-family: Source Sans Pro;
|
|
73
|
+
--ni-nimble-base-body-2-weight: 400;
|
|
72
74
|
--ni-nimble-base-header-0-family: Noto Serif;
|
|
73
75
|
--ni-nimble-base-header-0-weight: 400;
|
|
74
76
|
--ni-nimble-base-sub-header-family: Source Sans Pro;
|
|
@@ -128,6 +130,7 @@
|
|
|
128
130
|
--ni-nimble-base-title-2-size: 22px;
|
|
129
131
|
--ni-nimble-base-control-label-1-size: 11px;
|
|
130
132
|
--ni-nimble-base-body-size: 14px;
|
|
133
|
+
--ni-nimble-base-body-2-size: 16px;
|
|
131
134
|
--ni-nimble-base-header-0-size: 36px;
|
|
132
135
|
--ni-nimble-base-sub-header-size: 12px;
|
|
133
136
|
--ni-nimble-base-header-1-size: 24px;
|
|
@@ -157,6 +160,7 @@
|
|
|
157
160
|
--ni-nimble-base-grid-header-size: 12.800000190734863px;
|
|
158
161
|
--ni-nimble-base-group-label-expander-size: 14px;
|
|
159
162
|
--ni-nimble-base-body-line-height: 18px;
|
|
163
|
+
--ni-nimble-base-body-2-line-height: 16px;
|
|
160
164
|
--ni-nimble-base-control-label-1-line-height: 16px;
|
|
161
165
|
--ni-nimble-base-group-label-1-line-height: 16px;
|
|
162
166
|
--ni-nimble-base-headline-2-line-height: 40px;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Mar 2024 16:56:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const SlLegacyBlue : string;
|
|
@@ -68,6 +68,8 @@ export const ControlLabel1Family : string;
|
|
|
68
68
|
export const ControlLabel1Weight : string;
|
|
69
69
|
export const BodyFamily : string;
|
|
70
70
|
export const BodyWeight : string;
|
|
71
|
+
export const Body2Family : string;
|
|
72
|
+
export const Body2Weight : string;
|
|
71
73
|
export const Header0Family : string;
|
|
72
74
|
export const Header0Weight : string;
|
|
73
75
|
export const SubHeaderFamily : string;
|
|
@@ -127,6 +129,7 @@ export const GroupLabelExpanderWeight : string;
|
|
|
127
129
|
export const Title2Size : string;
|
|
128
130
|
export const ControlLabel1Size : string;
|
|
129
131
|
export const BodySize : string;
|
|
132
|
+
export const Body2Size : string;
|
|
130
133
|
export const Header0Size : string;
|
|
131
134
|
export const SubHeaderSize : string;
|
|
132
135
|
export const Header1Size : string;
|
|
@@ -156,6 +159,7 @@ export const LinkSelection100LightUiSize : string;
|
|
|
156
159
|
export const GridHeaderSize : string;
|
|
157
160
|
export const GroupLabelExpanderSize : string;
|
|
158
161
|
export const BodyLineHeight : string;
|
|
162
|
+
export const Body2LineHeight : string;
|
|
159
163
|
export const ControlLabel1LineHeight : string;
|
|
160
164
|
export const GroupLabel1LineHeight : string;
|
|
161
165
|
export const Headline2LineHeight : string;
|
|
@@ -171,6 +175,9 @@ export const BodyEmphasizedLineHeight : string;
|
|
|
171
175
|
export const BodyEmphasized2LineHeight : string;
|
|
172
176
|
export const ButtonLabel1LineHeight : string;
|
|
173
177
|
export const TooltipCaptionLineHeight : string;
|
|
174
|
-
|
|
175
|
-
export const
|
|
176
|
-
|
|
178
|
+
/** Short animation delay used for control state change animation */
|
|
179
|
+
export const SmallDelay : string;
|
|
180
|
+
/** Medium animation delay for control state change animation */
|
|
181
|
+
export const MediumDelay : string;
|
|
182
|
+
/** Long animation delay used for control state change animation */
|
|
183
|
+
export const LargeDelay : string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 21 Mar 2024 16:56:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const SlLegacyBlue = "#009ff5";
|
|
@@ -68,6 +68,8 @@ export const ControlLabel1Family = "Source Sans Pro";
|
|
|
68
68
|
export const ControlLabel1Weight = "600";
|
|
69
69
|
export const BodyFamily = "Source Sans Pro";
|
|
70
70
|
export const BodyWeight = "400";
|
|
71
|
+
export const Body2Family = "Source Sans Pro";
|
|
72
|
+
export const Body2Weight = "400";
|
|
71
73
|
export const Header0Family = "Noto Serif";
|
|
72
74
|
export const Header0Weight = "400";
|
|
73
75
|
export const SubHeaderFamily = "Source Sans Pro";
|
|
@@ -127,6 +129,7 @@ export const GroupLabelExpanderWeight = "600";
|
|
|
127
129
|
export const Title2Size = "22px";
|
|
128
130
|
export const ControlLabel1Size = "11px";
|
|
129
131
|
export const BodySize = "14px";
|
|
132
|
+
export const Body2Size = "16px";
|
|
130
133
|
export const Header0Size = "36px";
|
|
131
134
|
export const SubHeaderSize = "12px";
|
|
132
135
|
export const Header1Size = "24px";
|
|
@@ -156,6 +159,7 @@ export const LinkSelection100LightUiSize = "14px";
|
|
|
156
159
|
export const GridHeaderSize = "12.800000190734863px";
|
|
157
160
|
export const GroupLabelExpanderSize = "14px";
|
|
158
161
|
export const BodyLineHeight = "18px";
|
|
162
|
+
export const Body2LineHeight = "16px";
|
|
159
163
|
export const ControlLabel1LineHeight = "16px";
|
|
160
164
|
export const GroupLabel1LineHeight = "16px";
|
|
161
165
|
export const Headline2LineHeight = "40px";
|
|
@@ -173,4 +177,4 @@ export const ButtonLabel1LineHeight = "16px";
|
|
|
173
177
|
export const TooltipCaptionLineHeight = "14px";
|
|
174
178
|
export const SmallDelay = "0.075s"; // Short animation delay used for control state change animation
|
|
175
179
|
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
|
|
180
|
+
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 Thu, 21 Mar 2024 16:56:48 GMT
|
|
4
4
|
|
|
5
5
|
$ni-nimble-base-sl-legacy-blue: #009ff5;
|
|
6
6
|
$ni-nimble-base-information-100-dark-ui: #a46eff;
|
|
@@ -67,6 +67,8 @@ $ni-nimble-base-control-label-1-family: Source Sans Pro;
|
|
|
67
67
|
$ni-nimble-base-control-label-1-weight: 600;
|
|
68
68
|
$ni-nimble-base-body-family: Source Sans Pro;
|
|
69
69
|
$ni-nimble-base-body-weight: 400;
|
|
70
|
+
$ni-nimble-base-body-2-family: Source Sans Pro;
|
|
71
|
+
$ni-nimble-base-body-2-weight: 400;
|
|
70
72
|
$ni-nimble-base-header-0-family: Noto Serif;
|
|
71
73
|
$ni-nimble-base-header-0-weight: 400;
|
|
72
74
|
$ni-nimble-base-sub-header-family: Source Sans Pro;
|
|
@@ -126,6 +128,7 @@ $ni-nimble-base-group-label-expander-weight: 600;
|
|
|
126
128
|
$ni-nimble-base-title-2-size: 22px;
|
|
127
129
|
$ni-nimble-base-control-label-1-size: 11px;
|
|
128
130
|
$ni-nimble-base-body-size: 14px;
|
|
131
|
+
$ni-nimble-base-body-2-size: 16px;
|
|
129
132
|
$ni-nimble-base-header-0-size: 36px;
|
|
130
133
|
$ni-nimble-base-sub-header-size: 12px;
|
|
131
134
|
$ni-nimble-base-header-1-size: 24px;
|
|
@@ -155,6 +158,7 @@ $ni-nimble-base-link-selection-100-light-ui-size: 14px;
|
|
|
155
158
|
$ni-nimble-base-grid-header-size: 12.800000190734863px;
|
|
156
159
|
$ni-nimble-base-group-label-expander-size: 14px;
|
|
157
160
|
$ni-nimble-base-body-line-height: 18px;
|
|
161
|
+
$ni-nimble-base-body-2-line-height: 16px;
|
|
158
162
|
$ni-nimble-base-control-label-1-line-height: 16px;
|
|
159
163
|
$ni-nimble-base-group-label-1-line-height: 16px;
|
|
160
164
|
$ni-nimble-base-headline-2-line-height: 40px;
|
|
@@ -172,4 +176,4 @@ $ni-nimble-base-button-label-1-line-height: 16px;
|
|
|
172
176
|
$ni-nimble-base-tooltip-caption-line-height: 14px;
|
|
173
177
|
$ni-nimble-base-small-delay: 0.075s; // Short animation delay used for control state change animation
|
|
174
178
|
$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
|
|
179
|
+
$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.
|
|
3
|
+
"version": "6.13.0",
|
|
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/**",
|