@ni/nimble-components 8.3.0 → 8.4.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/all-components-bundle.js +71 -41
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +807 -792
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/all-components.d.ts +1 -0
- package/dist/esm/all-components.js +1 -0
- package/dist/esm/all-components.js.map +1 -1
- package/dist/esm/anchored-region/index.d.ts +11 -0
- package/dist/esm/anchored-region/index.js +24 -0
- package/dist/esm/anchored-region/index.js.map +1 -0
- package/dist/esm/anchored-region/styles.d.ts +1 -0
- package/dist/esm/anchored-region/styles.js +9 -0
- package/dist/esm/anchored-region/styles.js.map +1 -0
- package/dist/esm/button/index.d.ts +2 -7
- package/dist/esm/button/index.js +0 -6
- package/dist/esm/button/index.js.map +1 -1
- package/dist/esm/nimble-components/src/all-components.d.ts +1 -0
- package/dist/esm/nimble-components/src/anchored-region/index.d.ts +11 -0
- package/dist/esm/nimble-components/src/anchored-region/styles.d.ts +1 -0
- package/dist/esm/nimble-components/src/button/index.d.ts +2 -7
- package/dist/esm/nimble-components/src/patterns/button/types.d.ts +20 -0
- package/dist/esm/nimble-components/src/toggle-button/index.d.ts +3 -8
- package/dist/esm/patterns/button/types.d.ts +20 -0
- package/dist/esm/patterns/button/types.js.map +1 -1
- package/dist/esm/toggle-button/index.d.ts +3 -8
- package/dist/esm/toggle-button/index.js +1 -7
- package/dist/esm/toggle-button/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all-components.js","sourceRoot":"","sources":["../../src/all-components.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,cAAc,CAAC;AACtB,OAAO,mBAAmB,CAAC;AAC3B,OAAO,UAAU,CAAC;AAClB,OAAO,YAAY,CAAC;AACpB,OAAO,UAAU,CAAC;AAClB,OAAO,mBAAmB,CAAC;AAC3B,OAAO,eAAe,CAAC;AACvB,OAAO,QAAQ,CAAC;AAChB,OAAO,aAAa,CAAC;AACrB,OAAO,gBAAgB,CAAC;AACxB,OAAO,UAAU,CAAC;AAClB,OAAO,UAAU,CAAC;AAClB,OAAO,OAAO,CAAC;AACf,OAAO,aAAa,CAAC;AACrB,OAAO,QAAQ,CAAC;AAChB,OAAO,gBAAgB,CAAC;AACxB,OAAO,aAAa,CAAC;AACrB,OAAO,cAAc,CAAC;AACtB,OAAO,kBAAkB,CAAC;AAC1B,OAAO,iBAAiB,CAAC;AACzB,OAAO,WAAW,CAAC;AACnB,OAAO,aAAa,CAAC;AACrB,OAAO,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"all-components.js","sourceRoot":"","sources":["../../src/all-components.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,mBAAmB,CAAC;AAC3B,OAAO,cAAc,CAAC;AACtB,OAAO,mBAAmB,CAAC;AAC3B,OAAO,UAAU,CAAC;AAClB,OAAO,YAAY,CAAC;AACpB,OAAO,UAAU,CAAC;AAClB,OAAO,mBAAmB,CAAC;AAC3B,OAAO,eAAe,CAAC;AACvB,OAAO,QAAQ,CAAC;AAChB,OAAO,aAAa,CAAC;AACrB,OAAO,gBAAgB,CAAC;AACxB,OAAO,UAAU,CAAC;AAClB,OAAO,UAAU,CAAC;AAClB,OAAO,OAAO,CAAC;AACf,OAAO,aAAa,CAAC;AACrB,OAAO,QAAQ,CAAC;AAChB,OAAO,gBAAgB,CAAC;AACxB,OAAO,aAAa,CAAC;AACrB,OAAO,cAAc,CAAC;AACtB,OAAO,kBAAkB,CAAC;AAC1B,OAAO,iBAAiB,CAAC;AACzB,OAAO,WAAW,CAAC;AACnB,OAAO,aAAa,CAAC;AACrB,OAAO,aAAa,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AnchoredRegion as FoundationAnchoredRegion } from '@microsoft/fast-foundation';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-anchored-region': AnchoredRegion;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* A nimble-styled anchored region control.
|
|
9
|
+
*/
|
|
10
|
+
export declare class AnchoredRegion extends FoundationAnchoredRegion {
|
|
11
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DesignSystem, AnchoredRegion as FoundationAnchoredRegion, anchoredRegionTemplate as template } from '@microsoft/fast-foundation';
|
|
2
|
+
import { styles } from './styles';
|
|
3
|
+
// When the anchor element changes position on the page, it is the client's responsibility to update the position
|
|
4
|
+
// of the anchored region by calling update() on the anchored region.
|
|
5
|
+
//
|
|
6
|
+
// When the anchor element is recreated on the page, it is the client's responsibility to reset the reference the
|
|
7
|
+
// anchored region has to the anchor element. This can be done by either recreating the anchor element with a new
|
|
8
|
+
// ID that is also set as the \`anchor\` attribute on the anchored region or by explicitly setting the value of
|
|
9
|
+
// anchorElement on the anchored region to the new anchor element.
|
|
10
|
+
/**
|
|
11
|
+
* A nimble-styled anchored region control.
|
|
12
|
+
*/
|
|
13
|
+
export class AnchoredRegion extends FoundationAnchoredRegion {
|
|
14
|
+
}
|
|
15
|
+
const nimbleAnchoredRegion = AnchoredRegion.compose({
|
|
16
|
+
baseName: 'anchored-region',
|
|
17
|
+
baseClass: FoundationAnchoredRegion,
|
|
18
|
+
template,
|
|
19
|
+
styles
|
|
20
|
+
});
|
|
21
|
+
DesignSystem.getOrCreate()
|
|
22
|
+
.withPrefix('nimble')
|
|
23
|
+
.register(nimbleAnchoredRegion());
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/anchored-region/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,YAAY,EACZ,cAAc,IAAI,wBAAwB,EAC1C,sBAAsB,IAAI,QAAQ,EACrC,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAQlC,iHAAiH;AACjH,qEAAqE;AACrE,EAAE;AACF,iHAAiH;AACjH,iHAAiH;AACjH,+GAA+G;AAC/G,kEAAkE;AAElE;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,wBAAwB;CAAG;AAE/D,MAAM,oBAAoB,GAAG,cAAc,CAAC,OAAO,CAAC;IAChD,QAAQ,EAAE,iBAAiB;IAC3B,SAAS,EAAE,wBAAwB;IACnC,QAAQ;IACR,MAAM;CACT,CAAC,CAAC;AAEH,YAAY,CAAC,WAAW,EAAE;KACrB,UAAU,CAAC,QAAQ,CAAC;KACpB,QAAQ,CAAC,oBAAoB,EAAE,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const styles: import("@microsoft/fast-element").ElementStyles;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/anchored-region/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAE9C,MAAM,CAAC,MAAM,MAAM,GAAG,GAAG,CAAA;;;;;;CAMxB,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Button as FoundationButton } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { IButton } from '../patterns/button/types';
|
|
2
3
|
import { ButtonAppearance } from './types';
|
|
3
4
|
declare global {
|
|
4
5
|
interface HTMLElementTagNameMap {
|
|
@@ -8,20 +9,14 @@ declare global {
|
|
|
8
9
|
/**
|
|
9
10
|
* A nimble-styled HTML button
|
|
10
11
|
*/
|
|
11
|
-
export declare class Button extends FoundationButton {
|
|
12
|
+
export declare class Button extends FoundationButton implements IButton {
|
|
12
13
|
/**
|
|
13
|
-
* The appearance the button should have.
|
|
14
|
-
*
|
|
15
14
|
* @public
|
|
16
15
|
* @remarks
|
|
17
16
|
* HTML Attribute: appearance
|
|
18
17
|
*/
|
|
19
18
|
appearance: ButtonAppearance;
|
|
20
19
|
/**
|
|
21
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
22
|
-
* become square, and the text content will be used as the label of the button
|
|
23
|
-
* for accessibility purposes.
|
|
24
|
-
*
|
|
25
20
|
* @public
|
|
26
21
|
* @remarks
|
|
27
22
|
* HTML Attribute: content-hidden
|
package/dist/esm/button/index.js
CHANGED
|
@@ -10,18 +10,12 @@ export class Button extends FoundationButton {
|
|
|
10
10
|
constructor() {
|
|
11
11
|
super(...arguments);
|
|
12
12
|
/**
|
|
13
|
-
* The appearance the button should have.
|
|
14
|
-
*
|
|
15
13
|
* @public
|
|
16
14
|
* @remarks
|
|
17
15
|
* HTML Attribute: appearance
|
|
18
16
|
*/
|
|
19
17
|
this.appearance = ButtonAppearance.Outline;
|
|
20
18
|
/**
|
|
21
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
22
|
-
* become square, and the text content will be used as the label of the button
|
|
23
|
-
* for accessibility purposes.
|
|
24
|
-
*
|
|
25
19
|
* @public
|
|
26
20
|
* @remarks
|
|
27
21
|
* HTML Attribute: content-hidden
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/button/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EACH,MAAM,IAAI,gBAAgB,EAE1B,cAAc,IAAI,QAAQ,EAC1B,YAAY,EACf,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/button/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EACH,MAAM,IAAI,gBAAgB,EAE1B,cAAc,IAAI,QAAQ,EAC1B,YAAY,EACf,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAQ3C;;GAEG;AACH,MAAM,OAAO,MAAO,SAAQ,gBAAgB;IAA5C;;QACI;;;;WAIG;QAEI,eAAU,GAAqB,gBAAgB,CAAC,OAAO,CAAC;QAE/D;;;;WAIG;QAEI,kBAAa,GAAG,KAAK,CAAC;IACjC,CAAC;CAAA;AATG;IADC,IAAI;0CAC0D;AAQ/D;IADC,IAAI,CAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;6CAC1B;AAGjC;;;;;;;;GAQG;AACH,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,CAAgB;IAC/C,QAAQ,EAAE,QAAQ;IAClB,SAAS,EAAE,gBAAgB;IAC3B,QAAQ;IACR,MAAM;IACN,aAAa,EAAE;QACX,cAAc,EAAE,IAAI;KACvB;CACJ,CAAC,CAAC;AAEH,YAAY,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AnchoredRegion as FoundationAnchoredRegion } from '@microsoft/fast-foundation';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-anchored-region': AnchoredRegion;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* A nimble-styled anchored region control.
|
|
9
|
+
*/
|
|
10
|
+
export declare class AnchoredRegion extends FoundationAnchoredRegion {
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const styles: import("@microsoft/fast-element").ElementStyles;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Button as FoundationButton } from '@microsoft/fast-foundation';
|
|
2
|
+
import type { IButton } from '../patterns/button/types';
|
|
2
3
|
import { ButtonAppearance } from './types';
|
|
3
4
|
declare global {
|
|
4
5
|
interface HTMLElementTagNameMap {
|
|
@@ -8,20 +9,14 @@ declare global {
|
|
|
8
9
|
/**
|
|
9
10
|
* A nimble-styled HTML button
|
|
10
11
|
*/
|
|
11
|
-
export declare class Button extends FoundationButton {
|
|
12
|
+
export declare class Button extends FoundationButton implements IButton {
|
|
12
13
|
/**
|
|
13
|
-
* The appearance the button should have.
|
|
14
|
-
*
|
|
15
14
|
* @public
|
|
16
15
|
* @remarks
|
|
17
16
|
* HTML Attribute: appearance
|
|
18
17
|
*/
|
|
19
18
|
appearance: ButtonAppearance;
|
|
20
19
|
/**
|
|
21
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
22
|
-
* become square, and the text content will be used as the label of the button
|
|
23
|
-
* for accessibility purposes.
|
|
24
|
-
*
|
|
25
20
|
* @public
|
|
26
21
|
* @remarks
|
|
27
22
|
* HTML Attribute: content-hidden
|
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface that buttons of various types implement. The properties in this interface
|
|
3
|
+
* are leveraged by the shared button pattern css.
|
|
4
|
+
*/
|
|
5
|
+
export interface IButton {
|
|
6
|
+
/**
|
|
7
|
+
* The appearance the button should have.
|
|
8
|
+
*/
|
|
9
|
+
appearance: ButtonAppearance;
|
|
10
|
+
/**
|
|
11
|
+
* Specify as 'true' to hide the text content of the button. The button will
|
|
12
|
+
* become square, and the text content will be used as the label of the button
|
|
13
|
+
* for accessibility purposes.
|
|
14
|
+
*/
|
|
15
|
+
contentHidden: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Whether or not the button is disabled.
|
|
18
|
+
*/
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
}
|
|
1
21
|
/**
|
|
2
22
|
* Types of button appearance.
|
|
3
23
|
* @public
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DelegatesARIAButton, StartEnd, Switch as FoundationSwitch } from '@microsoft/fast-foundation';
|
|
2
|
-
import {
|
|
2
|
+
import type { IButton } from '../patterns/button/types';
|
|
3
|
+
import { ButtonAppearance } from './types';
|
|
3
4
|
declare global {
|
|
4
5
|
interface HTMLElementTagNameMap {
|
|
5
6
|
'nimble-toggle-button': ToggleButton;
|
|
@@ -8,20 +9,14 @@ declare global {
|
|
|
8
9
|
/**
|
|
9
10
|
* A nimble-styled toggle button control.
|
|
10
11
|
*/
|
|
11
|
-
export declare class ToggleButton extends FoundationSwitch {
|
|
12
|
+
export declare class ToggleButton extends FoundationSwitch implements IButton {
|
|
12
13
|
/**
|
|
13
|
-
* The appearance the button should have.
|
|
14
|
-
*
|
|
15
14
|
* @public
|
|
16
15
|
* @remarks
|
|
17
16
|
* HTML Attribute: appearance
|
|
18
17
|
*/
|
|
19
18
|
appearance: ButtonAppearance;
|
|
20
19
|
/**
|
|
21
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
22
|
-
* become square, and the text content will be used as the label of the button
|
|
23
|
-
* for accessibility purposes.
|
|
24
|
-
*
|
|
25
20
|
* @public
|
|
26
21
|
* @remarks
|
|
27
22
|
* HTML Attribute: content-hidden
|
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface that buttons of various types implement. The properties in this interface
|
|
3
|
+
* are leveraged by the shared button pattern css.
|
|
4
|
+
*/
|
|
5
|
+
export interface IButton {
|
|
6
|
+
/**
|
|
7
|
+
* The appearance the button should have.
|
|
8
|
+
*/
|
|
9
|
+
appearance: ButtonAppearance;
|
|
10
|
+
/**
|
|
11
|
+
* Specify as 'true' to hide the text content of the button. The button will
|
|
12
|
+
* become square, and the text content will be used as the label of the button
|
|
13
|
+
* for accessibility purposes.
|
|
14
|
+
*/
|
|
15
|
+
contentHidden: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Whether or not the button is disabled.
|
|
18
|
+
*/
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
}
|
|
1
21
|
/**
|
|
2
22
|
* Types of button appearance.
|
|
3
23
|
* @public
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/patterns/button/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/patterns/button/types.ts"],"names":[],"mappings":"AAuBA;;;GAGG;AACH,MAAM,CAAN,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IACxB,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,mCAAe,CAAA;AACnB,CAAC,EAJW,gBAAgB,KAAhB,gBAAgB,QAI3B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DelegatesARIAButton, StartEnd, Switch as FoundationSwitch } from '@microsoft/fast-foundation';
|
|
2
|
-
import {
|
|
2
|
+
import type { IButton } from '../patterns/button/types';
|
|
3
|
+
import { ButtonAppearance } from './types';
|
|
3
4
|
declare global {
|
|
4
5
|
interface HTMLElementTagNameMap {
|
|
5
6
|
'nimble-toggle-button': ToggleButton;
|
|
@@ -8,20 +9,14 @@ declare global {
|
|
|
8
9
|
/**
|
|
9
10
|
* A nimble-styled toggle button control.
|
|
10
11
|
*/
|
|
11
|
-
export declare class ToggleButton extends FoundationSwitch {
|
|
12
|
+
export declare class ToggleButton extends FoundationSwitch implements IButton {
|
|
12
13
|
/**
|
|
13
|
-
* The appearance the button should have.
|
|
14
|
-
*
|
|
15
14
|
* @public
|
|
16
15
|
* @remarks
|
|
17
16
|
* HTML Attribute: appearance
|
|
18
17
|
*/
|
|
19
18
|
appearance: ButtonAppearance;
|
|
20
19
|
/**
|
|
21
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
22
|
-
* become square, and the text content will be used as the label of the button
|
|
23
|
-
* for accessibility purposes.
|
|
24
|
-
*
|
|
25
20
|
* @public
|
|
26
21
|
* @remarks
|
|
27
22
|
* HTML Attribute: content-hidden
|
|
@@ -3,7 +3,7 @@ import { attr } from '@microsoft/fast-element';
|
|
|
3
3
|
import { applyMixins, DelegatesARIAButton, DesignSystem, StartEnd, Switch as FoundationSwitch } from '@microsoft/fast-foundation';
|
|
4
4
|
import { styles } from './styles';
|
|
5
5
|
import { template } from './template';
|
|
6
|
-
import { ButtonAppearance } from '
|
|
6
|
+
import { ButtonAppearance } from './types';
|
|
7
7
|
/**
|
|
8
8
|
* A nimble-styled toggle button control.
|
|
9
9
|
*/
|
|
@@ -11,18 +11,12 @@ export class ToggleButton extends FoundationSwitch {
|
|
|
11
11
|
constructor() {
|
|
12
12
|
super(...arguments);
|
|
13
13
|
/**
|
|
14
|
-
* The appearance the button should have.
|
|
15
|
-
*
|
|
16
14
|
* @public
|
|
17
15
|
* @remarks
|
|
18
16
|
* HTML Attribute: appearance
|
|
19
17
|
*/
|
|
20
18
|
this.appearance = ButtonAppearance.Outline;
|
|
21
19
|
/**
|
|
22
|
-
* Specify as 'true' to hide the text content of the button. The button will
|
|
23
|
-
* become square, and the text content will be used as the label of the button
|
|
24
|
-
* for accessibility purposes.
|
|
25
|
-
*
|
|
26
20
|
* @public
|
|
27
21
|
* @remarks
|
|
28
22
|
* HTML Attribute: content-hidden
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/toggle-button/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EACH,WAAW,EAEX,mBAAmB,EACnB,YAAY,EACZ,QAAQ,EACR,MAAM,IAAI,gBAAgB,EAC7B,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/toggle-button/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EACH,WAAW,EAEX,mBAAmB,EACnB,YAAY,EACZ,QAAQ,EACR,MAAM,IAAI,gBAAgB,EAC7B,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAQ3C;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,gBAAgB;IAAlD;;QACI;;;;WAIG;QAEI,eAAU,GAAqB,gBAAgB,CAAC,OAAO,CAAC;QAE/D;;;;WAIG;QAEI,kBAAa,GAAG,KAAK,CAAC;IAIjC,CAAC;CAAA;AAZG;IADC,IAAI;gDAC0D;AAQ/D;IADC,IAAI,CAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;mDAC1B;AAKjC,WAAW,CAAC,YAAY,EAAE,QAAQ,EAAE,mBAAmB,CAAC,CAAC;AAGzD,MAAM,kBAAkB,GAAG,YAAY,CAAC,OAAO,CAAgB;IAC3D,QAAQ,EAAE,eAAe;IACzB,QAAQ;IACR,MAAM;IACN,aAAa,EAAE;QACX,cAAc,EAAE,IAAI;KACvB;CACJ,CAAC,CAAC;AAEH,YAAY,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,kBAAkB,EAAE,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.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",
|