@ni/nimble-components 1.0.0-beta.127 → 1.0.0-beta.128

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 (42) hide show
  1. package/README.md +4 -0
  2. package/dist/esm/icons/all-icons.d.ts +9 -0
  3. package/dist/esm/icons/all-icons.js +9 -0
  4. package/dist/esm/icons/all-icons.js.map +1 -1
  5. package/dist/esm/icons/custom-status.d.ts +12 -0
  6. package/dist/esm/icons/custom-status.js +12 -0
  7. package/dist/esm/icons/custom-status.js.map +1 -0
  8. package/dist/esm/icons/done.d.ts +12 -0
  9. package/dist/esm/icons/done.js +12 -0
  10. package/dist/esm/icons/done.js.map +1 -0
  11. package/dist/esm/icons/looping.d.ts +12 -0
  12. package/dist/esm/icons/looping.js +12 -0
  13. package/dist/esm/icons/looping.js.map +1 -0
  14. package/dist/esm/icons/running.d.ts +12 -0
  15. package/dist/esm/icons/running.js +12 -0
  16. package/dist/esm/icons/running.js.map +1 -0
  17. package/dist/esm/icons/skipped.d.ts +12 -0
  18. package/dist/esm/icons/skipped.js +12 -0
  19. package/dist/esm/icons/skipped.js.map +1 -0
  20. package/dist/esm/icons/status.d.ts +12 -0
  21. package/dist/esm/icons/status.js +12 -0
  22. package/dist/esm/icons/status.js.map +1 -0
  23. package/dist/esm/icons/terminated.d.ts +12 -0
  24. package/dist/esm/icons/terminated.js +12 -0
  25. package/dist/esm/icons/terminated.js.map +1 -0
  26. package/dist/esm/icons/timed-out.d.ts +12 -0
  27. package/dist/esm/icons/timed-out.js +12 -0
  28. package/dist/esm/icons/timed-out.js.map +1 -0
  29. package/dist/esm/icons/waiting.d.ts +12 -0
  30. package/dist/esm/icons/waiting.js +12 -0
  31. package/dist/esm/icons/waiting.js.map +1 -0
  32. package/dist/esm/nimble-components/src/icons/all-icons.d.ts +9 -0
  33. package/dist/esm/nimble-components/src/icons/custom-status.d.ts +12 -0
  34. package/dist/esm/nimble-components/src/icons/done.d.ts +12 -0
  35. package/dist/esm/nimble-components/src/icons/looping.d.ts +12 -0
  36. package/dist/esm/nimble-components/src/icons/running.d.ts +12 -0
  37. package/dist/esm/nimble-components/src/icons/skipped.d.ts +12 -0
  38. package/dist/esm/nimble-components/src/icons/status.d.ts +12 -0
  39. package/dist/esm/nimble-components/src/icons/terminated.d.ts +12 -0
  40. package/dist/esm/nimble-components/src/icons/timed-out.d.ts +12 -0
  41. package/dist/esm/nimble-components/src/icons/waiting.d.ts +12 -0
  42. package/package.json +1 -1
package/README.md CHANGED
@@ -71,6 +71,10 @@ The theming system is composed of:
71
71
 
72
72
  The goal of the Nimble design system is to provide a consistent style for applications. If you find that Nimble does not expose colors, fonts, sizes, etc. that you need in an application get in touch with the Nimble squad.
73
73
 
74
+ ## Accessibility
75
+
76
+ For accessibility information related to nimble components, see [ACCESSIBILITY.md](docs/ACCESSIBILITY.md).
77
+
74
78
  ## Contributing
75
79
 
76
80
  Follow the instructions in [CONTRIBUTING.md](/packages/nimble-components/CONTRIBUTING.md) to modify this library.
@@ -3,13 +3,22 @@ export { AdminIcon } from './admin';
3
3
  export { AdministrationIcon } from './administration';
4
4
  export { CheckIcon } from './check';
5
5
  export { CustomApplicationsIcon } from './custom-applications';
6
+ export { CustomStatusIcon } from './custom-status';
6
7
  export { DeleteIcon } from './delete';
8
+ export { DoneIcon } from './done';
7
9
  export { FailIcon } from './fail';
8
10
  export { LoginIcon } from './login';
9
11
  export { LogoutIcon } from './logout';
12
+ export { LoopingIcon } from './looping';
10
13
  export { ManagedSystemsIcon } from './managed-systems';
11
14
  export { MeasurementDataAnalysisIcon } from './measurement-data-analysis';
15
+ export { RunningIcon } from './running';
12
16
  export { SettingsIcon } from './settings';
17
+ export { SkippedIcon } from './skipped';
18
+ export { StatusIcon } from './status';
13
19
  export { SucceededIcon } from './succeeded';
20
+ export { TerminatedIcon } from './terminated';
14
21
  export { TestInsightsIcon } from './test-insights';
22
+ export { TimedOutIcon } from './timed-out';
15
23
  export { UtilitiesIcon } from './utilities';
24
+ export { WaitingIcon } from './waiting';
@@ -3,14 +3,23 @@ export { AdminIcon } from './admin';
3
3
  export { AdministrationIcon } from './administration';
4
4
  export { CheckIcon } from './check';
5
5
  export { CustomApplicationsIcon } from './custom-applications';
6
+ export { CustomStatusIcon } from './custom-status';
6
7
  export { DeleteIcon } from './delete';
8
+ export { DoneIcon } from './done';
7
9
  export { FailIcon } from './fail';
8
10
  export { LoginIcon } from './login';
9
11
  export { LogoutIcon } from './logout';
12
+ export { LoopingIcon } from './looping';
10
13
  export { ManagedSystemsIcon } from './managed-systems';
11
14
  export { MeasurementDataAnalysisIcon } from './measurement-data-analysis';
15
+ export { RunningIcon } from './running';
12
16
  export { SettingsIcon } from './settings';
17
+ export { SkippedIcon } from './skipped';
18
+ export { StatusIcon } from './status';
13
19
  export { SucceededIcon } from './succeeded';
20
+ export { TerminatedIcon } from './terminated';
14
21
  export { TestInsightsIcon } from './test-insights';
22
+ export { TimedOutIcon } from './timed-out';
15
23
  export { UtilitiesIcon } from './utilities';
24
+ export { WaitingIcon } from './waiting';
16
25
  //# sourceMappingURL=all-icons.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"all-icons.js","sourceRoot":"","sources":["../../../src/icons/all-icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"all-icons.js","sourceRoot":"","sources":["../../../src/icons/all-icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-custom-status-icon': CustomStatusIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'custom-status' icon
9
+ */
10
+ export declare class CustomStatusIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusCustom16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'custom-status' icon
5
+ */
6
+ export class CustomStatusIcon extends Icon {
7
+ constructor() {
8
+ super(statusCustom16X16);
9
+ }
10
+ }
11
+ registerIcon('custom-status-icon', CustomStatusIcon);
12
+ //# sourceMappingURL=custom-status.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"custom-status.js","sourceRoot":"","sources":["../../../src/icons/custom-status.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AACzF,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,IAAI;IACtC;QACI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAC7B,CAAC;CACJ;AAED,YAAY,CAAC,oBAAoB,EAAE,gBAAgB,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-done-icon': DoneIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'done' icon
9
+ */
10
+ export declare class DoneIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusDone16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'done' icon
5
+ */
6
+ export class DoneIcon extends Icon {
7
+ constructor() {
8
+ super(statusDone16X16);
9
+ }
10
+ }
11
+ registerIcon('done-icon', DoneIcon);
12
+ //# sourceMappingURL=done.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"done.js","sourceRoot":"","sources":["../../../src/icons/done.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,sDAAsD,CAAC;AACvF,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,IAAI;IAC9B;QACI,KAAK,CAAC,eAAe,CAAC,CAAC;IAC3B,CAAC;CACJ;AAED,YAAY,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-looping-icon': LoopingIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'looping' icon
9
+ */
10
+ export declare class LoopingIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusLooping16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'looping' icon
5
+ */
6
+ export class LoopingIcon extends Icon {
7
+ constructor() {
8
+ super(statusLooping16X16);
9
+ }
10
+ }
11
+ registerIcon('looping-icon', LoopingIcon);
12
+ //# sourceMappingURL=looping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"looping.js","sourceRoot":"","sources":["../../../src/icons/looping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sDAAsD,CAAC;AAC1F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC9B,CAAC;CACJ;AAED,YAAY,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-running-icon': RunningIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'running' icon
9
+ */
10
+ export declare class RunningIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusRunning16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'running' icon
5
+ */
6
+ export class RunningIcon extends Icon {
7
+ constructor() {
8
+ super(statusRunning16X16);
9
+ }
10
+ }
11
+ registerIcon('running-icon', RunningIcon);
12
+ //# sourceMappingURL=running.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"running.js","sourceRoot":"","sources":["../../../src/icons/running.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sDAAsD,CAAC;AAC1F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC9B,CAAC;CACJ;AAED,YAAY,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-skipped-icon': SkippedIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'skipped' icon
9
+ */
10
+ export declare class SkippedIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusSkipped16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'skipped' icon
5
+ */
6
+ export class SkippedIcon extends Icon {
7
+ constructor() {
8
+ super(statusSkipped16X16);
9
+ }
10
+ }
11
+ registerIcon('skipped-icon', SkippedIcon);
12
+ //# sourceMappingURL=skipped.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skipped.js","sourceRoot":"","sources":["../../../src/icons/skipped.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sDAAsD,CAAC;AAC1F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC9B,CAAC;CACJ;AAED,YAAY,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-status-icon': StatusIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'status' icon
9
+ */
10
+ export declare class StatusIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusHeader16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'status' icon
5
+ */
6
+ export class StatusIcon extends Icon {
7
+ constructor() {
8
+ super(statusHeader16X16);
9
+ }
10
+ }
11
+ registerIcon('status-icon', StatusIcon);
12
+ //# sourceMappingURL=status.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/icons/status.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AACzF,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,UAAW,SAAQ,IAAI;IAChC;QACI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAC7B,CAAC;CACJ;AAED,YAAY,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-terminated-icon': TerminatedIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'terminated' icon
9
+ */
10
+ export declare class TerminatedIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusTerminated16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'terminated' icon
5
+ */
6
+ export class TerminatedIcon extends Icon {
7
+ constructor() {
8
+ super(statusTerminated16X16);
9
+ }
10
+ }
11
+ registerIcon('terminated-icon', TerminatedIcon);
12
+ //# sourceMappingURL=terminated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"terminated.js","sourceRoot":"","sources":["../../../src/icons/terminated.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,sDAAsD,CAAC;AAC7F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,IAAI;IACpC;QACI,KAAK,CAAC,qBAAqB,CAAC,CAAC;IACjC,CAAC;CACJ;AAED,YAAY,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-timed-out-icon': TimedOutIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'timed-out' icon
9
+ */
10
+ export declare class TimedOutIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusTimedOut16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'timed-out' icon
5
+ */
6
+ export class TimedOutIcon extends Icon {
7
+ constructor() {
8
+ super(statusTimedOut16X16);
9
+ }
10
+ }
11
+ registerIcon('timed-out-icon', TimedOutIcon);
12
+ //# sourceMappingURL=timed-out.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"timed-out.js","sourceRoot":"","sources":["../../../src/icons/timed-out.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAC3F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,IAAI;IAClC;QACI,KAAK,CAAC,mBAAmB,CAAC,CAAC;IAC/B,CAAC;CACJ;AAED,YAAY,CAAC,gBAAgB,EAAE,YAAY,CAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-waiting-icon': WaitingIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'waiting' icon
9
+ */
10
+ export declare class WaitingIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { statusWaiting16X16 } from '@ni/nimble-tokens/dist-icons-esm/nimble-icons-inline';
2
+ import { Icon, registerIcon } from '../icon-base';
3
+ /**
4
+ * The icon component for the 'waiting' icon
5
+ */
6
+ export class WaitingIcon extends Icon {
7
+ constructor() {
8
+ super(statusWaiting16X16);
9
+ }
10
+ }
11
+ registerIcon('waiting-icon', WaitingIcon);
12
+ //# sourceMappingURL=waiting.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"waiting.js","sourceRoot":"","sources":["../../../src/icons/waiting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sDAAsD,CAAC;AAC1F,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAC9B,CAAC;CACJ;AAED,YAAY,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC"}
@@ -3,13 +3,22 @@ export { AdminIcon } from './admin';
3
3
  export { AdministrationIcon } from './administration';
4
4
  export { CheckIcon } from './check';
5
5
  export { CustomApplicationsIcon } from './custom-applications';
6
+ export { CustomStatusIcon } from './custom-status';
6
7
  export { DeleteIcon } from './delete';
8
+ export { DoneIcon } from './done';
7
9
  export { FailIcon } from './fail';
8
10
  export { LoginIcon } from './login';
9
11
  export { LogoutIcon } from './logout';
12
+ export { LoopingIcon } from './looping';
10
13
  export { ManagedSystemsIcon } from './managed-systems';
11
14
  export { MeasurementDataAnalysisIcon } from './measurement-data-analysis';
15
+ export { RunningIcon } from './running';
12
16
  export { SettingsIcon } from './settings';
17
+ export { SkippedIcon } from './skipped';
18
+ export { StatusIcon } from './status';
13
19
  export { SucceededIcon } from './succeeded';
20
+ export { TerminatedIcon } from './terminated';
14
21
  export { TestInsightsIcon } from './test-insights';
22
+ export { TimedOutIcon } from './timed-out';
15
23
  export { UtilitiesIcon } from './utilities';
24
+ export { WaitingIcon } from './waiting';
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-custom-status-icon': CustomStatusIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'custom-status' icon
9
+ */
10
+ export declare class CustomStatusIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-done-icon': DoneIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'done' icon
9
+ */
10
+ export declare class DoneIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-looping-icon': LoopingIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'looping' icon
9
+ */
10
+ export declare class LoopingIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-running-icon': RunningIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'running' icon
9
+ */
10
+ export declare class RunningIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-skipped-icon': SkippedIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'skipped' icon
9
+ */
10
+ export declare class SkippedIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-status-icon': StatusIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'status' icon
9
+ */
10
+ export declare class StatusIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-terminated-icon': TerminatedIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'terminated' icon
9
+ */
10
+ export declare class TerminatedIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-timed-out-icon': TimedOutIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'timed-out' icon
9
+ */
10
+ export declare class TimedOutIcon extends Icon {
11
+ constructor();
12
+ }
@@ -0,0 +1,12 @@
1
+ import { Icon } from '../icon-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'nimble-waiting-icon': WaitingIcon;
5
+ }
6
+ }
7
+ /**
8
+ * The icon component for the 'waiting' icon
9
+ */
10
+ export declare class WaitingIcon extends Icon {
11
+ constructor();
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-components",
3
- "version": "1.0.0-beta.127",
3
+ "version": "1.0.0-beta.128",
4
4
  "description": "Styled web components for the NI Nimble Design System",
5
5
  "scripts": {
6
6
  "build": "npm run build-components && npm run generate-scss && npm run build-storybook",