@ni/nimble-components 11.0.1 → 11.0.2
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/all-components-bundle.js +106 -94
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +106 -94
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/number-field/styles.js +53 -20
- package/dist/esm/number-field/styles.js.map +1 -1
- package/dist/esm/text-field/styles.js +54 -75
- package/dist/esm/text-field/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css } from '@microsoft/fast-element';
|
|
2
2
|
import { display } from '@microsoft/fast-foundation';
|
|
3
|
-
import { borderColor, borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, fillSelectedRgbPartialColor, iconSize, controlLabelFont, controlLabelFontColor, labelHeight, smallDelay, bodyFont } from '../theme-provider/design-tokens';
|
|
3
|
+
import { borderColor, borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, fillSelectedRgbPartialColor, iconSize, controlLabelFont, controlLabelFontColor, labelHeight, smallDelay, bodyFont, failColor, standardPadding } from '../theme-provider/design-tokens';
|
|
4
4
|
export const styles = css `
|
|
5
5
|
${display('inline-block')}
|
|
6
6
|
|
|
@@ -10,6 +10,7 @@ export const styles = css `
|
|
|
10
10
|
user-select: none;
|
|
11
11
|
color: ${bodyFontColor};
|
|
12
12
|
height: calc(${labelHeight} + ${controlHeight});
|
|
13
|
+
--ni-private-hover-indicator-width: calc(${borderWidth} + 1px);
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
:host([disabled]) {
|
|
@@ -17,32 +18,71 @@ export const styles = css `
|
|
|
17
18
|
cursor: default;
|
|
18
19
|
}
|
|
19
20
|
|
|
21
|
+
.label {
|
|
22
|
+
display: flex;
|
|
23
|
+
color: ${controlLabelFontColor};
|
|
24
|
+
font: ${controlLabelFont};
|
|
25
|
+
}
|
|
26
|
+
|
|
20
27
|
.root {
|
|
21
28
|
box-sizing: border-box;
|
|
22
29
|
position: relative;
|
|
23
30
|
display: flex;
|
|
24
31
|
flex-direction: row;
|
|
32
|
+
justify-content: center;
|
|
25
33
|
border-radius: 0px;
|
|
26
34
|
border-bottom: ${borderWidth} solid rgba(${borderRgbPartialColor}, 0.3);
|
|
27
|
-
|
|
28
|
-
|
|
35
|
+
gap: calc(${standardPadding} / 2);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.root:focus-within {
|
|
39
|
+
border-bottom-color: ${borderHoverColor};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
:host([disabled]) .root,
|
|
43
|
+
:host([disabled]) .root:hover {
|
|
44
|
+
border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.root::before {
|
|
48
|
+
${ /* Empty string causes alignment issue */''}
|
|
49
|
+
content: ' ';
|
|
50
|
+
color: transparent;
|
|
51
|
+
width: 0px;
|
|
52
|
+
user-select: none;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.root::after {
|
|
56
|
+
content: '';
|
|
57
|
+
position: absolute;
|
|
58
|
+
bottom: calc(-1 * ${borderWidth});
|
|
59
|
+
width: 0px;
|
|
60
|
+
height: 0px;
|
|
61
|
+
border-bottom: ${borderHoverColor}
|
|
62
|
+
var(--ni-private-hover-indicator-width) solid;
|
|
63
|
+
transition: width ${smallDelay} ease-in;
|
|
29
64
|
}
|
|
30
65
|
|
|
31
66
|
@media (prefers-reduced-motion) {
|
|
32
|
-
.root {
|
|
67
|
+
.root::after {
|
|
33
68
|
transition-duration: 0s;
|
|
34
69
|
}
|
|
35
70
|
}
|
|
36
71
|
|
|
37
|
-
.root
|
|
38
|
-
border-bottom:
|
|
39
|
-
padding-bottom: 0px;
|
|
72
|
+
:host(.invalid) .root::after {
|
|
73
|
+
border-bottom-color: ${failColor};
|
|
40
74
|
}
|
|
41
75
|
|
|
42
|
-
:host(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
76
|
+
:host(:hover) .root::after {
|
|
77
|
+
width: 100%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
:host([disabled]:hover) .root::after {
|
|
81
|
+
width: 0px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
[part='start'] {
|
|
85
|
+
display: contents;
|
|
46
86
|
}
|
|
47
87
|
|
|
48
88
|
.control {
|
|
@@ -50,11 +90,10 @@ export const styles = css `
|
|
|
50
90
|
font: inherit;
|
|
51
91
|
background: transparent;
|
|
52
92
|
color: inherit;
|
|
53
|
-
height:
|
|
93
|
+
height: calc(${controlHeight} - ${borderWidth});
|
|
54
94
|
width: 100%;
|
|
55
|
-
margin-top: auto;
|
|
56
|
-
margin-bottom: auto;
|
|
57
95
|
border: none;
|
|
96
|
+
padding: 0px;
|
|
58
97
|
}
|
|
59
98
|
|
|
60
99
|
.control:hover,
|
|
@@ -81,12 +120,6 @@ export const styles = css `
|
|
|
81
120
|
color: ${bodyDisabledFontColor};
|
|
82
121
|
}
|
|
83
122
|
|
|
84
|
-
.label {
|
|
85
|
-
display: flex;
|
|
86
|
-
color: ${controlLabelFontColor};
|
|
87
|
-
font: ${controlLabelFont};
|
|
88
|
-
}
|
|
89
|
-
|
|
90
123
|
.controls {
|
|
91
124
|
display: flex;
|
|
92
125
|
flex-direction: column;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/number-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,WAAW,EACX,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,2BAA2B,EAC3B,QAAQ,EACR,gBAAgB,EAChB,qBAAqB,EACrB,WAAW,EACX,UAAU,EACV,QAAQ,
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/number-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,WAAW,EACX,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,2BAA2B,EAC3B,QAAQ,EACR,gBAAgB,EAChB,qBAAqB,EACrB,WAAW,EACX,UAAU,EACV,QAAQ,EACR,SAAS,EACT,eAAe,EAClB,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;iBAGP,aAAa;uBACP,WAAW,MAAM,aAAa;mDACF,WAAW;;;;iBAI7C,qBAAqB;;;;;;iBAMrB,qBAAqB;gBACtB,gBAAgB;;;;;;;;;;yBAUP,WAAW,eAAe,qBAAqB;oBACpD,eAAe;;;;+BAIJ,gBAAgB;;;;;yBAKtB,WAAW,UAAU,qBAAqB;;;;UAIzD,CAAA,yCAA0C,EAAE;;;;;;;;;;4BAU1B,WAAW;;;yBAGd,gBAAgB;;4BAEb,UAAU;;;;;;;;;;+BAUP,SAAS;;;;;;;;;;;;;;;;;;;;uBAoBjB,aAAa,MAAM,WAAW;;;;;;;;;;;;;;iBAcpC,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;;;;;iBAQrB,qBAAqB;;;;;;;;;;;;;;;;;;;;kBAoBpB,QAAQ;iBACT,QAAQ;gBACT,WAAW;;CAE1B,CAAC"}
|
|
@@ -15,6 +15,10 @@ export const styles = css `
|
|
|
15
15
|
--webkit-user-select: none;
|
|
16
16
|
color: ${bodyFontColor};
|
|
17
17
|
height: calc(${labelHeight} + ${controlHeight});
|
|
18
|
+
--ni-private-hover-indicator-width: calc(${borderWidth} + 1px);
|
|
19
|
+
--ni-private-height-within-border: calc(
|
|
20
|
+
${controlHeight} - 2 * ${borderWidth}
|
|
21
|
+
);
|
|
18
22
|
}
|
|
19
23
|
|
|
20
24
|
:host([disabled]) {
|
|
@@ -38,22 +42,10 @@ export const styles = css `
|
|
|
38
42
|
flex-direction: row;
|
|
39
43
|
border-radius: 0px;
|
|
40
44
|
font: inherit;
|
|
41
|
-
transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
|
|
42
45
|
align-items: center;
|
|
43
|
-
|
|
46
|
+
justify-content: center;
|
|
44
47
|
border: 0px solid rgba(${borderRgbPartialColor}, 0.3);
|
|
45
|
-
border-bottom-width: var(--ni-private-bottom-border-width);
|
|
46
48
|
gap: calc(${standardPadding} / 2);
|
|
47
|
-
padding-bottom: calc(
|
|
48
|
-
var(--ni-private-hover-bottom-border-width) -
|
|
49
|
-
var(--ni-private-bottom-border-width)
|
|
50
|
-
);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@media (prefers-reduced-motion) {
|
|
54
|
-
.root {
|
|
55
|
-
transition-duration: 0s;
|
|
56
|
-
}
|
|
57
49
|
}
|
|
58
50
|
|
|
59
51
|
:host(.invalid) .root {
|
|
@@ -68,21 +60,6 @@ export const styles = css `
|
|
|
68
60
|
border-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
69
61
|
}
|
|
70
62
|
|
|
71
|
-
.root:hover {
|
|
72
|
-
--ni-private-bottom-border-width: var(
|
|
73
|
-
--ni-private-hover-bottom-border-width
|
|
74
|
-
);
|
|
75
|
-
border-bottom-color: ${borderHoverColor};
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
:host([readonly]) .root:hover {
|
|
79
|
-
--ni-private-bottom-border-width: 1px;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
:host([disabled]) .root:hover {
|
|
83
|
-
--ni-private-bottom-border-width: 1px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
63
|
.root:focus-within {
|
|
87
64
|
border-bottom-color: ${borderHoverColor};
|
|
88
65
|
}
|
|
@@ -130,10 +107,7 @@ export const styles = css `
|
|
|
130
107
|
background: transparent;
|
|
131
108
|
color: inherit;
|
|
132
109
|
padding: 0px;
|
|
133
|
-
height:
|
|
134
|
-
${controlHeight} - ${borderWidth} -
|
|
135
|
-
var(--ni-private-hover-bottom-border-width)
|
|
136
|
-
);
|
|
110
|
+
height: ${controlHeight};
|
|
137
111
|
width: 100%;
|
|
138
112
|
margin-top: auto;
|
|
139
113
|
margin-bottom: auto;
|
|
@@ -177,6 +151,36 @@ export const styles = css `
|
|
|
177
151
|
display: contents;
|
|
178
152
|
}
|
|
179
153
|
|
|
154
|
+
[part='end']::after {
|
|
155
|
+
content: '';
|
|
156
|
+
position: absolute;
|
|
157
|
+
bottom: calc(-1 * ${borderWidth});
|
|
158
|
+
width: 0px;
|
|
159
|
+
height: 0px;
|
|
160
|
+
border-bottom: ${borderHoverColor}
|
|
161
|
+
var(--ni-private-hover-indicator-width) solid;
|
|
162
|
+
transition: width ${smallDelay} ease-in;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
@media (prefers-reduced-motion) {
|
|
166
|
+
[part='end']::after {
|
|
167
|
+
transition-duration: 0s;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:host(.invalid) [part='end']::after {
|
|
172
|
+
border-bottom-color: ${failColor};
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
:host(:hover) [part='end']::after {
|
|
176
|
+
width: 100%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
:host([disabled]:hover) [part='end']::after,
|
|
180
|
+
:host([readonly]:hover) [part='end']::after {
|
|
181
|
+
width: 0px;
|
|
182
|
+
}
|
|
183
|
+
|
|
180
184
|
.error-content {
|
|
181
185
|
display: none;
|
|
182
186
|
}
|
|
@@ -232,46 +236,33 @@ export const styles = css `
|
|
|
232
236
|
}
|
|
233
237
|
`.withBehaviors(appearanceBehavior(TextFieldAppearance.underline, css `
|
|
234
238
|
.root {
|
|
235
|
-
|
|
239
|
+
border-bottom-width: ${borderWidth};
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.control {
|
|
243
|
+
height: var(--ni-private-height-within-border);
|
|
236
244
|
padding-top: ${borderWidth};
|
|
237
245
|
padding-left: ${borderWidth};
|
|
238
246
|
padding-right: ${borderWidth};
|
|
239
247
|
}
|
|
240
|
-
|
|
241
|
-
:host([disabled]) .root {
|
|
242
|
-
border-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
:host([disabled]) .root:hover {
|
|
246
|
-
--ni-private-bottom-border-width: 1px;
|
|
247
|
-
}
|
|
248
248
|
`), appearanceBehavior(TextFieldAppearance.block, css `
|
|
249
249
|
.root {
|
|
250
250
|
background-color: rgba(${borderRgbPartialColor}, 0.1);
|
|
251
|
-
--ni-private-bottom-border-width: 0px;
|
|
252
|
-
padding-top: ${borderWidth};
|
|
253
|
-
padding-left: ${borderWidth};
|
|
254
|
-
padding-right: ${borderWidth};
|
|
255
251
|
}
|
|
256
252
|
|
|
257
|
-
.
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
.root:focus-within:hover {
|
|
262
|
-
--ni-private-bottom-border-width: var(
|
|
263
|
-
--ni-private-hover-bottom-border-width
|
|
264
|
-
);
|
|
253
|
+
.control {
|
|
254
|
+
padding-left: ${borderWidth};
|
|
255
|
+
padding-right: ${borderWidth};
|
|
265
256
|
}
|
|
266
257
|
|
|
258
|
+
.root:focus-within,
|
|
267
259
|
:host(.invalid) .root {
|
|
268
|
-
|
|
260
|
+
border-bottom-width: ${borderWidth};
|
|
269
261
|
}
|
|
270
262
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
);
|
|
263
|
+
.root:focus-within .control,
|
|
264
|
+
:host(.invalid) .control {
|
|
265
|
+
height: calc(${controlHeight} - ${borderWidth});
|
|
275
266
|
}
|
|
276
267
|
|
|
277
268
|
:host([readonly]) .root {
|
|
@@ -282,28 +273,20 @@ export const styles = css `
|
|
|
282
273
|
:host([disabled]) .root {
|
|
283
274
|
background-color: rgba(${borderRgbPartialColor}, 0.07);
|
|
284
275
|
}
|
|
285
|
-
|
|
286
|
-
:host([disabled]) .root:hover {
|
|
287
|
-
--ni-private-bottom-border-width: 0px;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
:host(.invalid[disabled]) .root {
|
|
291
|
-
--ni-private-bottom-border-width: 1px;
|
|
292
|
-
}
|
|
293
276
|
`), appearanceBehavior(TextFieldAppearance.outline, css `
|
|
294
277
|
.root {
|
|
295
|
-
--ni-private-bottom-border-width: 1px;
|
|
296
278
|
border-width: ${borderWidth};
|
|
297
|
-
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.control {
|
|
282
|
+
height: var(--ni-private-height-within-border);
|
|
298
283
|
}
|
|
299
284
|
|
|
300
285
|
:host(.invalid) .errortext {
|
|
301
286
|
top: calc(${controlHeight} - ${borderWidth});
|
|
302
287
|
}
|
|
303
288
|
`), appearanceBehavior(TextFieldAppearance.frameless, css `
|
|
304
|
-
.
|
|
305
|
-
--ni-private-bottom-border-width: 0px;
|
|
306
|
-
padding-top: ${borderWidth};
|
|
289
|
+
.control {
|
|
307
290
|
padding-left: ${borderWidth};
|
|
308
291
|
padding-right: ${borderWidth};
|
|
309
292
|
}
|
|
@@ -311,10 +294,6 @@ export const styles = css `
|
|
|
311
294
|
:host([readonly]) .root {
|
|
312
295
|
border-color: transparent;
|
|
313
296
|
}
|
|
314
|
-
|
|
315
|
-
.root:hover {
|
|
316
|
-
--ni-private-bottom-border-width: 0px;
|
|
317
|
-
}
|
|
318
297
|
`), themeBehavior(css `
|
|
319
298
|
${'' /* Light theme */}
|
|
320
299
|
.control::-ms-reveal {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAErD,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,aAAa,EACb,SAAS,EACT,2BAA2B,EAC3B,QAAQ,EACR,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,QAAQ,EACR,qBAAqB,EACrB,6BAA6B,EAC7B,eAAe,EAClB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;;iBAIP,aAAa;uBACP,WAAW,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/text-field/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAErD,OAAO,EACH,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,aAAa,EACb,SAAS,EACT,2BAA2B,EAC3B,QAAQ,EACR,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,QAAQ,EACR,qBAAqB,EACrB,6BAA6B,EAC7B,eAAe,EAClB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;;;gBAGb,QAAQ;;;;iBAIP,aAAa;uBACP,WAAW,MAAM,aAAa;mDACF,WAAW;;cAEhD,aAAa,UAAU,WAAW;;;;;iBAK/B,qBAAqB;;;;;iBAKrB,qBAAqB;gBACtB,gBAAgB;;;;iBAIf,6BAA6B;;;;;;;;;;;;iCAYb,qBAAqB;oBAClC,eAAe;;;;+BAIJ,SAAS;;;;6BAIX,qBAAqB;;;;6BAIrB,qBAAqB;;;;+BAInB,gBAAgB;;;;;;;;;UASrC,CAAA,yCAA0C,EAAE;;;;;;;;;;;;UAY5C,CAAA,yCAA0C,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;kBAyBpC,aAAa;;;;;;;;;;;;;;;;UAgBrB;AACE;;6CAE6C,CAAC,EAClD;;;;;iBAKS,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;;;;;iBAQrB,qBAAqB;;;;;;;;;;4BAUV,WAAW;;;yBAGd,gBAAgB;;4BAEb,UAAU;;;;;;;;;;+BAUP,SAAS;;;;;;;;;;;;;;;;;;;;;kBAqBtB,QAAQ;iBACT,QAAQ;;;;;gBAKT,SAAS;;;;gBAIT,qBAAqB;;;;;;;;;gBASrB,aAAa;iBACZ,SAAS;;;eAGX,aAAa;;;;;;;;;;;iBAWX,qBAAqB;;;;;;;;UAQ5B,aAAa,CAAC,iBAAiB;;CAExC,CAAC,aAAa,CACC,kBAAkB,CACd,mBAAmB,CAAC,SAAS,EAC7B,GAAG,CAAA;;uCAEgB,WAAW;;;;;+BAKnB,WAAW;gCACV,WAAW;iCACV,WAAW;;SAEnC,CACQ,EACD,kBAAkB,CACd,mBAAmB,CAAC,KAAK,EACzB,GAAG,CAAA;;yCAEkB,qBAAqB;;;;gCAI9B,WAAW;iCACV,WAAW;;;;;uCAKL,WAAW;;;;;+BAKnB,aAAa,MAAM,WAAW;;;;yCAIpB,qBAAqB;;;;;yCAKrB,qBAAqB;;SAErD,CACQ,EACD,kBAAkB,CACd,mBAAmB,CAAC,OAAO,EAC3B,GAAG,CAAA;;gCAES,WAAW;;;;;;;;4BAQf,aAAa,MAAM,WAAW;;SAEjD,CACQ,EACD,kBAAkB,CACd,mBAAmB,CAAC,SAAS,EAC7B,GAAG,CAAA;;gCAES,WAAW;iCACV,WAAW;;;;;;SAMnC,CACQ,EACD,aAAa,CACT,GAAG,CAAA;cACT,EAAE,CAAC,iBAAiB;;;;SAIzB,EACW,GAAG,CAAA;cACT,EAAE,CAAC,gBAAgB;;;;SAIxB;AACW,cAAc;AACd,KAAK,CAAC,IAAI,CACb,CACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-components",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.2",
|
|
4
4
|
"description": "Styled web components for the NI Nimble Design System",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run generate-icons && npm run build-components && npm run bundle-components && npm run generate-scss && npm run build-storybook",
|