@ni/nimble-components 11.0.2 → 11.1.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.
Files changed (43) hide show
  1. package/dist/all-components-bundle.js +2375 -1488
  2. package/dist/all-components-bundle.js.map +1 -1
  3. package/dist/all-components-bundle.min.js +1476 -1234
  4. package/dist/all-components-bundle.min.js.map +1 -1
  5. package/dist/esm/all-components.d.ts +1 -0
  6. package/dist/esm/all-components.js +1 -0
  7. package/dist/esm/all-components.js.map +1 -1
  8. package/dist/esm/combobox/index.d.ts +41 -0
  9. package/dist/esm/combobox/index.js +136 -0
  10. package/dist/esm/combobox/index.js.map +1 -0
  11. package/dist/esm/combobox/styles.d.ts +1 -0
  12. package/dist/esm/combobox/styles.js +87 -0
  13. package/dist/esm/combobox/styles.js.map +1 -0
  14. package/dist/esm/combobox/types.d.ts +2 -0
  15. package/dist/esm/combobox/types.js +3 -0
  16. package/dist/esm/combobox/types.js.map +1 -0
  17. package/dist/esm/menu-button/template.js +1 -1
  18. package/dist/esm/menu-button/template.js.map +1 -1
  19. package/dist/esm/number-field/styles.js +1 -0
  20. package/dist/esm/number-field/styles.js.map +1 -1
  21. package/dist/esm/patterns/dropdown/styles.d.ts +1 -0
  22. package/dist/esm/patterns/dropdown/styles.js +193 -0
  23. package/dist/esm/patterns/dropdown/styles.js.map +1 -0
  24. package/dist/esm/patterns/dropdown/types.d.ts +5 -0
  25. package/dist/esm/patterns/dropdown/types.js +6 -0
  26. package/dist/esm/patterns/dropdown/types.js.map +1 -0
  27. package/dist/esm/patterns/error/styles.d.ts +1 -0
  28. package/dist/esm/patterns/error/styles.js +40 -0
  29. package/dist/esm/patterns/error/styles.js.map +1 -0
  30. package/dist/esm/patterns/error/template.d.ts +2 -0
  31. package/dist/esm/patterns/error/template.js +7 -0
  32. package/dist/esm/patterns/error/template.js.map +1 -0
  33. package/dist/esm/patterns/error/types.d.ts +9 -0
  34. package/dist/esm/patterns/error/types.js +2 -0
  35. package/dist/esm/patterns/error/types.js.map +1 -0
  36. package/dist/esm/select/styles.js +2 -140
  37. package/dist/esm/select/styles.js.map +1 -1
  38. package/dist/esm/text-field/index.d.ts +4 -2
  39. package/dist/esm/text-field/index.js +6 -10
  40. package/dist/esm/text-field/index.js.map +1 -1
  41. package/dist/esm/text-field/styles.js +8 -55
  42. package/dist/esm/text-field/styles.js.map +1 -1
  43. package/package.json +1 -1
@@ -1,144 +1,6 @@
1
1
  import { css } from '@microsoft/fast-element';
2
- import { display } from '@microsoft/fast-foundation';
3
- import { applicationBackgroundColor, bodyFont, bodyFontColor, bodyDisabledFontColor, borderHoverColor, borderWidth, controlHeight, iconSize, popupBorderColor, popupBoxShadowColor, smallDelay, smallPadding } from '../theme-provider/design-tokens';
2
+ import { styles as dropdownStyles } from '../patterns/dropdown/styles';
4
3
  export const styles = css `
5
- ${display('inline-flex')}
6
-
7
- :host {
8
- box-sizing: border-box;
9
- color: ${bodyFontColor};
10
- font: ${bodyFont};
11
- height: ${controlHeight};
12
- position: relative;
13
- user-select: none;
14
- min-width: 250px;
15
- outline: none;
16
- vertical-align: top;
17
- }
18
-
19
- .listbox {
20
- box-sizing: border-box;
21
- display: inline-flex;
22
- flex-direction: column;
23
- left: 0;
24
- overflow-y: auto;
25
- position: absolute;
26
- width: 100%;
27
- --ni-private-listbox-padding: 4px;
28
- max-height: calc(
29
- var(--ni-private-select-max-height) - 2 *
30
- var(--ni-private-listbox-padding)
31
- );
32
- z-index: 1;
33
- padding: var(--ni-private-listbox-padding);
34
- box-shadow: 0px 3px 3px ${popupBoxShadowColor};
35
- border: 1px solid ${popupBorderColor};
36
- background-color: ${applicationBackgroundColor};
37
- background-clip: padding-box;
38
- }
39
-
40
- .listbox[hidden] {
41
- display: none;
42
- }
43
-
44
- .control {
45
- align-items: center;
46
- box-sizing: border-box;
47
- cursor: pointer;
48
- display: flex;
49
- min-height: 100%;
50
- width: 100%;
51
- border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
52
- background-color: transparent;
53
- padding-left: 8px;
54
- padding-bottom: 1px;
55
- }
56
-
57
- :host([disabled]) .control {
58
- cursor: default;
59
- }
60
-
61
- :host(.open:not(:hover)) .control {
62
- border-bottom: ${borderWidth} solid ${borderHoverColor};
63
- transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
64
- }
65
-
66
- :host(:hover) .control {
67
- border-bottom: 2px solid ${borderHoverColor};
68
- padding-bottom: 0px;
69
- transition: border-bottom ${smallDelay}, padding-bottom ${smallDelay};
70
- }
71
-
72
- :host([disabled]) .control,
73
- :host([disabled]) .control:hover {
74
- border-bottom: ${borderWidth} solid ${bodyDisabledFontColor};
75
- padding-bottom: 1px;
76
- color: ${bodyDisabledFontColor};
77
- }
78
-
79
- :host([open][position='above']) .listbox {
80
- border-bottom-left-radius: 0;
81
- border-bottom-right-radius: 0;
82
- }
83
-
84
- :host([open][position='below']) .listbox {
85
- border-top-left-radius: 0;
86
- border-top-right-radius: 0;
87
- }
88
-
89
- :host([open][position='above']) .listbox {
90
- bottom: ${controlHeight};
91
- }
92
-
93
- :host([open][position='below']) .listbox {
94
- top: calc(${controlHeight} + ${smallPadding});
95
- }
96
-
97
- .selected-value {
98
- flex: 1 1 auto;
99
- font-family: inherit;
100
- text-align: start;
101
- white-space: nowrap;
102
- text-overflow: ellipsis;
103
- overflow: hidden;
104
- }
105
-
106
- .indicator {
107
- flex: 0 0 auto;
108
- margin-inline-start: 1em;
109
- padding-right: 8px;
110
- display: flex;
111
- justify-content: center;
112
- align-items: center;
113
- }
114
-
115
- .indicator slot[name='indicator'] svg {
116
- width: ${iconSize};
117
- height: ${iconSize};
118
- fill: ${bodyFontColor};
119
- }
120
-
121
- :host([disabled]) .indicator slot[name='indicator'] svg {
122
- fill: ${bodyDisabledFontColor};
123
- }
124
-
125
- slot[name='listbox'] {
126
- display: none;
127
- width: 100%;
128
- }
129
-
130
- :host([open]) slot[name='listbox'] {
131
- display: flex;
132
- position: absolute;
133
- }
134
-
135
- .end {
136
- margin-inline-start: auto;
137
- }
138
-
139
- ::slotted([role='option']),
140
- ::slotted(option) {
141
- flex: 0 0 auto;
142
- }
4
+ ${dropdownStyles}
143
5
  `;
144
6
  //# sourceMappingURL=styles.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/select/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AACrD,OAAO,EACH,0BAA0B,EAC1B,QAAQ,EACR,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,QAAQ,EACR,gBAAgB,EAChB,mBAAmB,EACnB,UAAU,EACV,YAAY,EACf,MAAM,iCAAiC,CAAC;AAEzC,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,aAAa,CAAC;;;;iBAIX,aAAa;gBACd,QAAQ;kBACN,aAAa;;;;;;;;;;;;;;;;;;;;;;;kCAuBG,mBAAmB;4BACzB,gBAAgB;4BAChB,0BAA0B;;;;;;;;;;;;;;;yBAe7B,WAAW,UAAU,qBAAqB;;;;;;;;;;;yBAW1C,WAAW,UAAU,gBAAgB;oCAC1B,UAAU,oBAAoB,UAAU;;;;mCAIzC,gBAAgB;;oCAEf,UAAU,oBAAoB,UAAU;;;;;yBAKnD,WAAW,UAAU,qBAAqB;;iBAElD,qBAAqB;;;;;;;;;;;;;;kBAcpB,aAAa;;;;oBAIX,aAAa,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;iBAsBlC,QAAQ;kBACP,QAAQ;gBACV,aAAa;;;;gBAIb,qBAAqB;;;;;;;;;;;;;;;;;;;;;CAqBpC,CAAC"}
1
+ {"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/select/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAEvE,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,cAAc;CACnB,CAAC"}
@@ -1,5 +1,7 @@
1
1
  import { TextField as FoundationTextField } from '@microsoft/fast-foundation';
2
+ import '../icons/exclamation-mark';
2
3
  import { TextFieldAppearance } from './types';
4
+ import type { IHasErrorText } from '../patterns/error/types';
3
5
  declare global {
4
6
  interface HTMLElementTagNameMap {
5
7
  'nimble-text-field': TextField;
@@ -8,7 +10,7 @@ declare global {
8
10
  /**
9
11
  * A nimble-styed HTML text input
10
12
  */
11
- export declare class TextField extends FoundationTextField {
13
+ export declare class TextField extends FoundationTextField implements IHasErrorText {
12
14
  /**
13
15
  * The appearance the text field should have.
14
16
  *
@@ -24,6 +26,6 @@ export declare class TextField extends FoundationTextField {
24
26
  * @remarks
25
27
  * HTML Attribute: error-text
26
28
  */
27
- errorText: string;
29
+ errorText: string | undefined;
28
30
  connectedCallback(): void;
29
31
  }
@@ -1,9 +1,10 @@
1
1
  import { __decorate } from "tslib";
2
2
  import { attr, html } from '@microsoft/fast-element';
3
3
  import { DesignSystem, TextField as FoundationTextField, textFieldTemplate as template } from '@microsoft/fast-foundation';
4
- import { exclamationMark16X16 } from '@ni/nimble-tokens/dist/icons/js';
4
+ import '../icons/exclamation-mark';
5
5
  import { styles } from './styles';
6
6
  import { TextFieldAppearance } from './types';
7
+ import { errorTextTemplate } from '../patterns/error/template';
7
8
  /**
8
9
  * A nimble-styed HTML text input
9
10
  */
@@ -39,18 +40,13 @@ const nimbleTextField = TextField.compose({
39
40
  delegatesFocus: true
40
41
  },
41
42
  end: html `
42
- <span class="error-content">${exclamationMark16X16.data}</span>
43
+ <nimble-icon-exclamation-mark
44
+ class="error-icon fail"
45
+ ></nimble-icon-exclamation-mark>
43
46
  <span part="actions">
44
47
  <slot name="actions"></slot>
45
48
  </span>
46
- <div
47
- id="errortext"
48
- class="errortext error-content"
49
- title="${x => x.errorText}"
50
- aria-live="polite"
51
- >
52
- ${x => x.errorText}
53
- </div>
49
+ ${errorTextTemplate}
54
50
  `
55
51
  });
56
52
  DesignSystem.getOrCreate().withPrefix('nimble').register(nimbleTextField());
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/text-field/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EACH,YAAY,EACZ,SAAS,IAAI,mBAAmB,EAEhC,iBAAiB,IAAI,QAAQ,EAChC,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AACvE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAQ9C;;GAEG;AACH,MAAM,OAAO,SAAU,SAAQ,mBAAmB;IAAlD;;QACI;;;;;;WAMG;QAEI,eAAU,GAAwB,mBAAmB,CAAC,SAAS,CAAC;IAgB3E,CAAC;IAJmB,iBAAiB;QAC7B,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,mBAAmB,EAAE,WAAW,CAAC,CAAC;IAChE,CAAC;CACJ;AAhBG;IADC,IAAI;6CACkE;AAUvE;IADC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC;4CACR;AAQ9B,MAAM,eAAe,GAAG,SAAS,CAAC,OAAO,CAAmB;IACxD,QAAQ,EAAE,YAAY;IACtB,SAAS,EAAE,mBAAmB;IAC9B,QAAQ;IACR,MAAM;IACN,aAAa,EAAE;QACX,cAAc,EAAE,IAAI;KACvB;IACD,GAAG,EAAE,IAAI,CAAW;sCACc,oBAAoB,CAAC,IAAI;;;;;;;qBAO1C,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS;;;cAGvB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS;;KAEzB;CACJ,CAAC,CAAC;AAEH,YAAY,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/text-field/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EACH,YAAY,EACZ,SAAS,IAAI,mBAAmB,EAEhC,iBAAiB,IAAI,QAAQ,EAChC,MAAM,4BAA4B,CAAC;AACpC,OAAO,2BAA2B,CAAC;AACnC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAS/D;;GAEG;AACH,MAAM,OAAO,SAAU,SAAQ,mBAAmB;IAAlD;;QACI;;;;;;WAMG;QAEI,eAAU,GAAwB,mBAAmB,CAAC,SAAS,CAAC;IAgB3E,CAAC;IAJmB,iBAAiB;QAC7B,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,mBAAmB,EAAE,WAAW,CAAC,CAAC;IAChE,CAAC;CACJ;AAhBG;IADC,IAAI;6CACkE;AAUvE;IADC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC;4CACG;AAQzC,MAAM,eAAe,GAAG,SAAS,CAAC,OAAO,CAAmB;IACxD,QAAQ,EAAE,YAAY;IACtB,SAAS,EAAE,mBAAmB;IAC9B,QAAQ;IACR,MAAM;IACN,aAAa,EAAE;QACX,cAAc,EAAE,IAAI;KACvB;IACD,GAAG,EAAE,IAAI,CAAW;;;;;;;UAOd,iBAAiB;KACtB;CACJ,CAAC,CAAC;AAEH,YAAY,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,CAAC"}
@@ -1,12 +1,14 @@
1
1
  import { css } from '@microsoft/fast-element';
2
2
  import { display } from '@microsoft/fast-foundation';
3
- import { borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, errorTextFont, failColor, fillSelectedRgbPartialColor, iconSize, labelHeight, smallDelay, controlLabelFont, bodyFont, controlLabelFontColor, controlLabelDisabledFontColor, standardPadding } from '../theme-provider/design-tokens';
3
+ import { borderRgbPartialColor, borderHoverColor, borderWidth, bodyFontColor, bodyDisabledFontColor, controlHeight, failColor, fillSelectedRgbPartialColor, labelHeight, smallDelay, controlLabelFont, bodyFont, controlLabelFontColor, controlLabelDisabledFontColor, standardPadding } from '../theme-provider/design-tokens';
4
4
  import { appearanceBehavior } from '../utilities/style/appearance';
5
5
  import { TextFieldAppearance } from './types';
6
6
  import { Theme } from '../theme-provider/types';
7
7
  import { themeBehavior } from '../utilities/style/theme';
8
+ import { styles as errorStyles } from '../patterns/error/styles';
8
9
  export const styles = css `
9
10
  ${display('inline-block')}
11
+ ${errorStyles}
10
12
 
11
13
  :host {
12
14
  font: ${bodyFont};
@@ -48,10 +50,6 @@ export const styles = css `
48
50
  gap: calc(${standardPadding} / 2);
49
51
  }
50
52
 
51
- :host(.invalid) .root {
52
- border-bottom-color: ${failColor};
53
- }
54
-
55
53
  :host([readonly]) .root {
56
54
  border-color: rgba(${borderRgbPartialColor}, 0.1);
57
55
  }
@@ -60,6 +58,10 @@ export const styles = css `
60
58
  border-color: rgba(${borderRgbPartialColor}, 0.1);
61
59
  }
62
60
 
61
+ :host(.invalid) .root {
62
+ border-bottom-color: ${failColor};
63
+ }
64
+
63
65
  .root:focus-within {
64
66
  border-bottom-color: ${borderHoverColor};
65
67
  }
@@ -154,6 +156,7 @@ export const styles = css `
154
156
  [part='end']::after {
155
157
  content: '';
156
158
  position: absolute;
159
+ left: 0px;
157
160
  bottom: calc(-1 * ${borderWidth});
158
161
  width: 0px;
159
162
  height: 0px;
@@ -181,52 +184,6 @@ export const styles = css `
181
184
  width: 0px;
182
185
  }
183
186
 
184
- .error-content {
185
- display: none;
186
- }
187
-
188
- :host(.invalid) .error-content {
189
- display: contents;
190
- }
191
-
192
- :host(.invalid) .error-content svg {
193
- height: ${iconSize};
194
- width: ${iconSize};
195
- flex: none;
196
- }
197
-
198
- :host(.invalid) .error-content path {
199
- fill: ${failColor};
200
- }
201
-
202
- :host([disabled]) .error-content path {
203
- fill: ${bodyDisabledFontColor};
204
- }
205
-
206
- .errortext {
207
- display: none;
208
- }
209
-
210
- :host(.invalid) .errortext {
211
- display: block;
212
- font: ${errorTextFont};
213
- color: ${failColor};
214
- width: 100%;
215
- position: absolute;
216
- top: ${controlHeight};
217
- overflow: hidden;
218
- text-overflow: ellipsis;
219
- white-space: nowrap;
220
- }
221
-
222
- :host(.invalid) .error-text:empty {
223
- display: none;
224
- }
225
-
226
- :host([disabled]) .errortext {
227
- color: ${bodyDisabledFontColor};
228
- }
229
-
230
187
  [part='actions'] {
231
188
  display: contents;
232
189
  }
@@ -281,10 +238,6 @@ export const styles = css `
281
238
  .control {
282
239
  height: var(--ni-private-height-within-border);
283
240
  }
284
-
285
- :host(.invalid) .errortext {
286
- top: calc(${controlHeight} - ${borderWidth});
287
- }
288
241
  `), appearanceBehavior(TextFieldAppearance.frameless, css `
289
242
  .control {
290
243
  padding-left: ${borderWidth};
@@ -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;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"}
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,SAAS,EACT,2BAA2B,EAC3B,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;AACzD,OAAO,EAAE,MAAM,IAAI,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEjE,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;MACnB,OAAO,CAAC,cAAc,CAAC;MACvB,WAAW;;;gBAGD,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;;;;6BAIN,qBAAqB;;;;6BAIrB,qBAAqB;;;;+BAInB,SAAS;;;;+BAIT,gBAAgB;;;;;;;;;UASrC,CAAA,yCAA0C,EAAE;;;;;;;;;;;;UAY5C,CAAA,yCAA0C,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;kBAyBpC,aAAa;;;;;;;;;;;;;;;;UAgBrB;AACE;;6CAE6C,CAAC,EAClD;;;;;iBAKS,qBAAqB;2BACX,2BAA2B;;;;iBAIrC,qBAAqB;;;;;;;;iBAQrB,qBAAqB;;;;;;;;;;;4BAWV,WAAW;;;yBAGd,gBAAgB;;4BAEb,UAAU;;;;;;;;;;+BAUP,SAAS;;;;;;;;;;;;;;;;;UAiB9B,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;;;;;;SAMlC,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.2",
3
+ "version": "11.1.0",
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",