@ni/nimble-angular 19.4.0 → 20.0.1

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 (35) hide show
  1. package/directives/icons/arrow-up-right-from-square/nimble-icon-arrow-up-right-from-square.directive.d.ts +12 -0
  2. package/directives/icons/arrow-up-right-from-square/nimble-icon-arrow-up-right-from-square.module.d.ts +9 -0
  3. package/directives/icons/index.d.ts +8 -0
  4. package/directives/icons/pause/nimble-icon-pause.directive.d.ts +12 -0
  5. package/directives/icons/pause/nimble-icon-pause.module.d.ts +9 -0
  6. package/directives/icons/play/nimble-icon-play.directive.d.ts +12 -0
  7. package/directives/icons/play/nimble-icon-play.module.d.ts +9 -0
  8. package/directives/icons/stop-square/nimble-icon-stop-square.directive.d.ts +12 -0
  9. package/directives/icons/stop-square/nimble-icon-stop-square.module.d.ts +9 -0
  10. package/esm2020/directives/icons/arrow-up-right-from-square/nimble-icon-arrow-up-right-from-square.directive.mjs +21 -0
  11. package/esm2020/directives/icons/arrow-up-right-from-square/nimble-icon-arrow-up-right-from-square.module.mjs +21 -0
  12. package/esm2020/directives/icons/index.mjs +9 -1
  13. package/esm2020/directives/icons/pause/nimble-icon-pause.directive.mjs +21 -0
  14. package/esm2020/directives/icons/pause/nimble-icon-pause.module.mjs +21 -0
  15. package/esm2020/directives/icons/play/nimble-icon-play.directive.mjs +21 -0
  16. package/esm2020/directives/icons/play/nimble-icon-play.module.mjs +21 -0
  17. package/esm2020/directives/icons/stop-square/nimble-icon-stop-square.directive.mjs +21 -0
  18. package/esm2020/directives/icons/stop-square/nimble-icon-stop-square.module.mjs +21 -0
  19. package/esm2020/pipes/duration.pipe.mjs +4 -3
  20. package/esm2020/pipes/number-text.pipe.mjs +30 -0
  21. package/esm2020/pipes/public-api.mjs +5 -2
  22. package/fesm2015/ni-nimble-angular-pipes.mjs +35 -15
  23. package/fesm2015/ni-nimble-angular-pipes.mjs.map +1 -1
  24. package/fesm2015/ni-nimble-angular.mjs +133 -1
  25. package/fesm2015/ni-nimble-angular.mjs.map +1 -1
  26. package/fesm2020/ni-nimble-angular-pipes.mjs +32 -15
  27. package/fesm2020/ni-nimble-angular-pipes.mjs.map +1 -1
  28. package/fesm2020/ni-nimble-angular.mjs +133 -1
  29. package/fesm2020/ni-nimble-angular.mjs.map +1 -1
  30. package/package.json +2 -2
  31. package/pipes/duration.pipe.d.ts +1 -1
  32. package/pipes/number-text.pipe.d.ts +17 -0
  33. package/pipes/public-api.d.ts +4 -1
  34. package/esm2020/pipes/nimble-pipes.module.mjs +0 -18
  35. package/pipes/nimble-pipes.module.d.ts +0 -8
@@ -1,7 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
- import { LOCALE_ID, Pipe, Inject, NgModule } from '@angular/core';
2
+ import { LOCALE_ID, Pipe, Inject } from '@angular/core';
3
3
  import { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/duration-text/models/duration-formatter';
4
- import { CommonModule } from '@angular/common';
4
+ import { NumberTextUnitFormat } from '@ni/nimble-components/dist/esm/table-column/number-text/models/number-text-unit-format';
5
+ export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
6
+ export { byte1024UnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-1024-unit-scale';
7
+ export { voltUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/volt-unit-scale';
5
8
 
6
9
  /**
7
10
  * A pipe that transforms a number of milliseconds (string/number) into a string formatted like "1 day, 2 hr, 3 min, 4.567 sec"
@@ -19,34 +22,48 @@ class DurationPipe {
19
22
  }
20
23
  }
21
24
  DurationPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DurationPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
22
- DurationPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DurationPipe, name: "duration" });
25
+ DurationPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DurationPipe, isStandalone: true, name: "duration" });
23
26
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DurationPipe, decorators: [{
24
27
  type: Pipe,
25
28
  args: [{
26
- name: 'duration'
29
+ name: 'duration',
30
+ standalone: true
27
31
  }]
28
32
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
29
33
  type: Inject,
30
34
  args: [LOCALE_ID]
31
35
  }] }]; } });
32
36
 
33
- class NimblePipesModule {
37
+ /**
38
+ * A pipe that transforms a number into a string with optional unit
39
+ */
40
+ class NumberTextPipe {
41
+ constructor(locale) {
42
+ this.locale = locale;
43
+ }
44
+ transform(value, options) {
45
+ if (!this.numberTextUnitFormat?.optionsMatch(options)) {
46
+ this.numberTextUnitFormat = new NumberTextUnitFormat(this.locale, options);
47
+ }
48
+ return this.numberTextUnitFormat.format(value);
49
+ }
34
50
  }
35
- NimblePipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimblePipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
36
- NimblePipesModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimblePipesModule, declarations: [DurationPipe], imports: [CommonModule], exports: [DurationPipe] });
37
- NimblePipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimblePipesModule, imports: [CommonModule] });
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimblePipesModule, decorators: [{
39
- type: NgModule,
51
+ NumberTextPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumberTextPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
52
+ NumberTextPipepipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumberTextPipe, isStandalone: true, name: "numberText" });
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumberTextPipe, decorators: [{
54
+ type: Pipe,
40
55
  args: [{
41
- declarations: [DurationPipe],
42
- imports: [CommonModule],
43
- exports: [DurationPipe]
56
+ name: 'numberText',
57
+ standalone: true
44
58
  }]
45
- }] });
59
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
60
+ type: Inject,
61
+ args: [LOCALE_ID]
62
+ }] }]; } });
46
63
 
47
64
  /**
48
65
  * Generated bundle index. Do not edit.
49
66
  */
50
67
 
51
- export { DurationPipe, NimblePipesModule };
68
+ export { DurationPipe, NumberTextPipe };
52
69
  //# sourceMappingURL=ni-nimble-angular-pipes.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"ni-nimble-angular-pipes.mjs","sources":["../../../../projects/ni/nimble-angular/pipes/duration.pipe.ts","../../../../projects/ni/nimble-angular/pipes/nimble-pipes.module.ts","../../../../projects/ni/nimble-angular/pipes/ni-nimble-angular-pipes.ts"],"sourcesContent":["import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/duration-text/models/duration-formatter';\n\n/**\n * A pipe that transforms a number of milliseconds (string/number) into a string formatted like \"1 day, 2 hr, 3 min, 4.567 sec\"\n */\n@Pipe({\n name: 'duration'\n})\nexport class DurationPipe implements PipeTransform {\n private readonly durationFormatter;\n\n public constructor(@Inject(LOCALE_ID) locale: string) {\n this.durationFormatter = new DurationFormatter(locale);\n }\n\n public transform(timeInMilliseconds: string | number | null | undefined): string {\n const milliseconds = this.parseDuration(timeInMilliseconds);\n return this.durationFormatter.format(milliseconds);\n }\n\n private parseDuration(duration: string | number | null | undefined): number | null | undefined {\n return typeof duration === 'string' ? parseFloat(duration) : duration;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DurationPipe } from './duration.pipe';\n\n@NgModule({\n declarations: [DurationPipe],\n imports: [CommonModule],\n exports: [DurationPipe]\n})\nexport class NimblePipesModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAGA;;AAEG;MAIU,YAAY,CAAA;AAGrB,IAAA,WAAA,CAAsC,MAAc,EAAA;QAChD,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;KAC1D;AAEM,IAAA,SAAS,CAAC,kBAAsD,EAAA;QACnE,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;KACtD;AAEO,IAAA,aAAa,CAAC,QAA4C,EAAA;AAC9D,QAAA,OAAO,OAAO,QAAQ,KAAK,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;KACzE;;AAdQ,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,kBAGM,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;wGAH3B,YAAY,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,CAAA;4FAAZ,YAAY,EAAA,UAAA,EAAA,CAAA;kBAHxB,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,UAAU;AACnB,iBAAA,CAAA;;0BAIuB,MAAM;2BAAC,SAAS,CAAA;;;MCH3B,iBAAiB,CAAA;;+GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,EAJX,YAAA,EAAA,CAAA,YAAY,CACjB,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,YAAY,CAAA,EAAA,CAAA,CAAA;AAEb,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,YAHhB,YAAY,CAAA,EAAA,CAAA,CAAA;4FAGb,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAL7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,YAAY,CAAC;oBAC5B,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,YAAY,CAAC;AAC1B,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
1
+ {"version":3,"file":"ni-nimble-angular-pipes.mjs","sources":["../../../../projects/ni/nimble-angular/pipes/duration.pipe.ts","../../../../projects/ni/nimble-angular/pipes/number-text.pipe.ts","../../../../projects/ni/nimble-angular/pipes/ni-nimble-angular-pipes.ts"],"sourcesContent":["import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/duration-text/models/duration-formatter';\n\n/**\n * A pipe that transforms a number of milliseconds (string/number) into a string formatted like \"1 day, 2 hr, 3 min, 4.567 sec\"\n */\n@Pipe({\n name: 'duration',\n standalone: true\n})\nexport class DurationPipe implements PipeTransform {\n private readonly durationFormatter;\n\n public constructor(@Inject(LOCALE_ID) locale: string) {\n this.durationFormatter = new DurationFormatter(locale);\n }\n\n public transform(timeInMilliseconds: string | number | null | undefined): string {\n const milliseconds = this.parseDuration(timeInMilliseconds);\n return this.durationFormatter.format(milliseconds);\n }\n\n private parseDuration(duration: string | number | null | undefined): number | null | undefined {\n return typeof duration === 'string' ? parseFloat(duration) : duration;\n }\n}\n","import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { NumberTextUnitFormat, NumberTextUnitFormatOptions } from '@ni/nimble-components/dist/esm/table-column/number-text/models/number-text-unit-format';\n\n/**\n * A pipe that transforms a number into a string with optional unit\n */\n@Pipe({\n name: 'numberText',\n standalone: true\n})\nexport class NumberTextPipe implements PipeTransform {\n /**\n * @internal\n */\n public numberTextUnitFormat?: NumberTextUnitFormat;\n\n public constructor(@Inject(LOCALE_ID) private readonly locale: string) {}\n\n public transform(value: number, options?: NumberTextUnitFormatOptions): string {\n if (!this.numberTextUnitFormat?.optionsMatch(options)) {\n this.numberTextUnitFormat = new NumberTextUnitFormat(this.locale, options);\n }\n return this.numberTextUnitFormat.format(value);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;AAGA;;AAEG;MAKU,YAAY,CAAA;AAGrB,IAAA,WAAA,CAAsC,MAAc,EAAA;QAChD,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;KAC1D;AAEM,IAAA,SAAS,CAAC,kBAAsD,EAAA;QACnE,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;KACtD;AAEO,IAAA,aAAa,CAAC,QAA4C,EAAA;AAC9D,QAAA,OAAO,OAAO,QAAQ,KAAK,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;KACzE;;AAdQ,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,kBAGM,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;wGAH3B,YAAY,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,CAAA;4FAAZ,YAAY,EAAA,UAAA,EAAA,CAAA;kBAJxB,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAIuB,MAAM;2BAAC,SAAS,CAAA;;;ACVxC;;AAEG;MAKU,cAAc,CAAA;AAMvB,IAAA,WAAA,CAAuD,MAAc,EAAA;QAAd,IAAM,CAAA,MAAA,GAAN,MAAM,CAAQ;KAAI;IAElE,SAAS,CAAC,KAAa,EAAE,OAAqC,EAAA;QACjE,IAAI,CAAC,IAAI,CAAC,oBAAoB,EAAE,YAAY,CAAC,OAAO,CAAC,EAAE;AACnD,YAAA,IAAI,CAAC,oBAAoB,GAAG,IAAI,oBAAoB,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAC9E,SAAA;QACD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;KAClD;;AAbQ,cAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,kBAMI,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;0GAN3B,cAAc,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,CAAA;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAJ1B,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,YAAY;AAClB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAOuB,MAAM;2BAAC,SAAS,CAAA;;;AChBxC;;AAEG;;;;"}
@@ -43,6 +43,7 @@ export { iconArrowRotateRightTag } from '@ni/nimble-components/dist/esm/icons/ar
43
43
  export { iconArrowURotateLeftTag } from '@ni/nimble-components/dist/esm/icons/arrow-u-rotate-left';
44
44
  export { iconArrowUpTag } from '@ni/nimble-components/dist/esm/icons/arrow-up';
45
45
  export { iconArrowUpLeftAndArrowDownRightTag } from '@ni/nimble-components/dist/esm/icons/arrow-up-left-and-arrow-down-right';
46
+ export { iconArrowUpRightFromSquareTag } from '@ni/nimble-components/dist/esm/icons/arrow-up-right-from-square';
46
47
  export { iconArrowsMaximizeTag } from '@ni/nimble-components/dist/esm/icons/arrows-maximize';
47
48
  export { iconArrowsRepeatTag } from '@ni/nimble-components/dist/esm/icons/arrows-repeat';
48
49
  export { iconAtTag } from '@ni/nimble-components/dist/esm/icons/at';
@@ -152,7 +153,9 @@ export { iconNotebookTag } from '@ni/nimble-components/dist/esm/icons/notebook';
152
153
  export { iconNumberListTag } from '@ni/nimble-components/dist/esm/icons/number-list';
153
154
  export { iconOutdentTag } from '@ni/nimble-components/dist/esm/icons/outdent';
154
155
  export { iconPasteTag } from '@ni/nimble-components/dist/esm/icons/paste';
156
+ export { iconPauseTag } from '@ni/nimble-components/dist/esm/icons/pause';
155
157
  export { iconPencilTag } from '@ni/nimble-components/dist/esm/icons/pencil';
158
+ export { iconPlayTag } from '@ni/nimble-components/dist/esm/icons/play';
156
159
  export { iconPotWithLidTag } from '@ni/nimble-components/dist/esm/icons/pot-with-lid';
157
160
  export { iconQuestionTag } from '@ni/nimble-components/dist/esm/icons/question';
158
161
  export { iconRectangleCheckLinesTag } from '@ni/nimble-components/dist/esm/icons/rectangle-check-lines';
@@ -169,6 +172,7 @@ export { iconSkipArrowTag } from '@ni/nimble-components/dist/esm/icons/skip-arro
169
172
  export { iconSpinnerTag } from '@ni/nimble-components/dist/esm/icons/spinner';
170
173
  export { iconSquareCheckTag } from '@ni/nimble-components/dist/esm/icons/square-check';
171
174
  export { iconSquareTTag } from '@ni/nimble-components/dist/esm/icons/square-t';
175
+ export { iconStopSquareTag } from '@ni/nimble-components/dist/esm/icons/stop-square';
172
176
  export { iconSystemlinkTag } from '@ni/nimble-components/dist/esm/icons/systemlink';
173
177
  export { iconTTag } from '@ni/nimble-components/dist/esm/icons/t';
174
178
  export { iconTabletTag } from '@ni/nimble-components/dist/esm/icons/tablet';
@@ -2868,6 +2872,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2868
2872
  }]
2869
2873
  }] });
2870
2874
 
2875
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
2876
+ // See generation source in nimble-angular/build/generate-icons
2877
+ /**
2878
+ * Directive to provide Angular integration for the arrowUpRightFromSquare icon element.
2879
+ */
2880
+ class NimbleIconArrowUpRightFromSquareDirective extends NimbleIconBaseDirective {
2881
+ }
2882
+ NimbleIconArrowUpRightFromSquareDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2883
+ NimbleIconArrowUpRightFromSquareDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconArrowUpRightFromSquareDirective, selector: "nimble-icon-arrow-up-right-from-square", usesInheritance: true, ngImport: i0 });
2884
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareDirective, decorators: [{
2885
+ type: Directive,
2886
+ args: [{
2887
+ selector: 'nimble-icon-arrow-up-right-from-square'
2888
+ }]
2889
+ }] });
2890
+
2891
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
2892
+ // See generation source in nimble-angular/build/generate-icons
2893
+ class NimbleIconArrowUpRightFromSquareModule {
2894
+ }
2895
+ NimbleIconArrowUpRightFromSquareModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2896
+ NimbleIconArrowUpRightFromSquareModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareModule, declarations: [NimbleIconArrowUpRightFromSquareDirective], imports: [CommonModule], exports: [NimbleIconArrowUpRightFromSquareDirective] });
2897
+ NimbleIconArrowUpRightFromSquareModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareModule, imports: [CommonModule] });
2898
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconArrowUpRightFromSquareModule, decorators: [{
2899
+ type: NgModule,
2900
+ args: [{
2901
+ declarations: [NimbleIconArrowUpRightFromSquareDirective],
2902
+ imports: [CommonModule],
2903
+ exports: [NimbleIconArrowUpRightFromSquareDirective]
2904
+ }]
2905
+ }] });
2906
+
2871
2907
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
2872
2908
  // See generation source in nimble-angular/build/generate-icons
2873
2909
  /**
@@ -6356,6 +6392,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6356
6392
  }]
6357
6393
  }] });
6358
6394
 
6395
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6396
+ // See generation source in nimble-angular/build/generate-icons
6397
+ /**
6398
+ * Directive to provide Angular integration for the pause icon element.
6399
+ */
6400
+ class NimbleIconPauseDirective extends NimbleIconBaseDirective {
6401
+ }
6402
+ NimbleIconPauseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
6403
+ NimbleIconPauseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconPauseDirective, selector: "nimble-icon-pause", usesInheritance: true, ngImport: i0 });
6404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseDirective, decorators: [{
6405
+ type: Directive,
6406
+ args: [{
6407
+ selector: 'nimble-icon-pause'
6408
+ }]
6409
+ }] });
6410
+
6411
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6412
+ // See generation source in nimble-angular/build/generate-icons
6413
+ class NimbleIconPauseModule {
6414
+ }
6415
+ NimbleIconPauseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6416
+ NimbleIconPauseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseModule, declarations: [NimbleIconPauseDirective], imports: [CommonModule], exports: [NimbleIconPauseDirective] });
6417
+ NimbleIconPauseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseModule, imports: [CommonModule] });
6418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPauseModule, decorators: [{
6419
+ type: NgModule,
6420
+ args: [{
6421
+ declarations: [NimbleIconPauseDirective],
6422
+ imports: [CommonModule],
6423
+ exports: [NimbleIconPauseDirective]
6424
+ }]
6425
+ }] });
6426
+
6359
6427
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6360
6428
  // See generation source in nimble-angular/build/generate-icons
6361
6429
  /**
@@ -6388,6 +6456,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6388
6456
  }]
6389
6457
  }] });
6390
6458
 
6459
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6460
+ // See generation source in nimble-angular/build/generate-icons
6461
+ /**
6462
+ * Directive to provide Angular integration for the play icon element.
6463
+ */
6464
+ class NimbleIconPlayDirective extends NimbleIconBaseDirective {
6465
+ }
6466
+ NimbleIconPlayDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
6467
+ NimbleIconPlayDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconPlayDirective, selector: "nimble-icon-play", usesInheritance: true, ngImport: i0 });
6468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayDirective, decorators: [{
6469
+ type: Directive,
6470
+ args: [{
6471
+ selector: 'nimble-icon-play'
6472
+ }]
6473
+ }] });
6474
+
6475
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6476
+ // See generation source in nimble-angular/build/generate-icons
6477
+ class NimbleIconPlayModule {
6478
+ }
6479
+ NimbleIconPlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6480
+ NimbleIconPlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayModule, declarations: [NimbleIconPlayDirective], imports: [CommonModule], exports: [NimbleIconPlayDirective] });
6481
+ NimbleIconPlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayModule, imports: [CommonModule] });
6482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconPlayModule, decorators: [{
6483
+ type: NgModule,
6484
+ args: [{
6485
+ declarations: [NimbleIconPlayDirective],
6486
+ imports: [CommonModule],
6487
+ exports: [NimbleIconPlayDirective]
6488
+ }]
6489
+ }] });
6490
+
6391
6491
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6392
6492
  // See generation source in nimble-angular/build/generate-icons
6393
6493
  /**
@@ -6900,6 +7000,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6900
7000
  }]
6901
7001
  }] });
6902
7002
 
7003
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7004
+ // See generation source in nimble-angular/build/generate-icons
7005
+ /**
7006
+ * Directive to provide Angular integration for the stopSquare icon element.
7007
+ */
7008
+ class NimbleIconStopSquareDirective extends NimbleIconBaseDirective {
7009
+ }
7010
+ NimbleIconStopSquareDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
7011
+ NimbleIconStopSquareDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconStopSquareDirective, selector: "nimble-icon-stop-square", usesInheritance: true, ngImport: i0 });
7012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareDirective, decorators: [{
7013
+ type: Directive,
7014
+ args: [{
7015
+ selector: 'nimble-icon-stop-square'
7016
+ }]
7017
+ }] });
7018
+
7019
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7020
+ // See generation source in nimble-angular/build/generate-icons
7021
+ class NimbleIconStopSquareModule {
7022
+ }
7023
+ NimbleIconStopSquareModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7024
+ NimbleIconStopSquareModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareModule, declarations: [NimbleIconStopSquareDirective], imports: [CommonModule], exports: [NimbleIconStopSquareDirective] });
7025
+ NimbleIconStopSquareModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareModule, imports: [CommonModule] });
7026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconStopSquareModule, decorators: [{
7027
+ type: NgModule,
7028
+ args: [{
7029
+ declarations: [NimbleIconStopSquareDirective],
7030
+ imports: [CommonModule],
7031
+ exports: [NimbleIconStopSquareDirective]
7032
+ }]
7033
+ }] });
7034
+
6903
7035
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6904
7036
  // See generation source in nimble-angular/build/generate-icons
6905
7037
  /**
@@ -10340,5 +10472,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
10340
10472
  * Generated bundle index. Do not edit.
10341
10473
  */
10342
10474
 
10343
- export { NimbleAnchorButtonDirective, NimbleAnchorButtonModule, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective, NimbleAnchorDirective, NimbleAnchorMenuItemDirective, NimbleAnchorMenuItemModule, NimbleAnchorMenuItemRouterLinkDirective, NimbleAnchorMenuItemRouterLinkWithHrefDirective, NimbleAnchorModule, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective, NimbleAnchorTabDirective, NimbleAnchorTabModule, NimbleAnchorTabRouterLinkDirective, NimbleAnchorTabRouterLinkWithHrefDirective, NimbleAnchorTabsDirective, NimbleAnchorTabsModule, NimbleAnchorTreeItemDirective, NimbleAnchorTreeItemModule, NimbleAnchorTreeItemRouterLinkDirective, NimbleAnchorTreeItemRouterLinkWithHrefDirective, NimbleBannerDirective, NimbleBannerModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownDirective, NimbleIconArrowDownModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckLargeDirective, NimbleIconCheckLargeModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockExclamationDirective, NimbleIconClockExclamationModule, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudDirective, NimbleIconCloudModule, NimbleIconCloudUploadDirective, NimbleIconCloudUploadModule, NimbleIconCloudWithArrowDirective, NimbleIconCloudWithArrowModule, NimbleIconCogDatabaseDirective, NimbleIconCogDatabaseInsetDirective, NimbleIconCogDatabaseInsetModule, NimbleIconCogDatabaseModule, NimbleIconCogDirective, NimbleIconCogModule, NimbleIconCogSmallCogDirective, NimbleIconCogSmallCogModule, NimbleIconCogZoomedDirective, NimbleIconCogZoomedModule, NimbleIconCommentDirective, NimbleIconCommentModule, NimbleIconComputerAndMonitorDirective, NimbleIconComputerAndMonitorModule, NimbleIconCopyDirective, NimbleIconCopyModule, NimbleIconCopyTextDirective, NimbleIconCopyTextModule, NimbleIconDashboardBuilderDirective, NimbleIconDashboardBuilderLegendDirective, NimbleIconDashboardBuilderLegendModule, NimbleIconDashboardBuilderModule, NimbleIconDashboardBuilderTemplatesDirective, NimbleIconDashboardBuilderTemplatesModule, NimbleIconDashboardBuilderTileDirective, NimbleIconDashboardBuilderTileModule, NimbleIconDatabaseCheckDirective, NimbleIconDatabaseCheckModule, NimbleIconDatabaseDirective, NimbleIconDatabaseModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, NimbleIconDotSolidDotStrokeModule, NimbleIconDownRightFromSquareDirective, NimbleIconDownRightFromSquareModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileArrowCurvedRightDirective, NimbleIconFileArrowCurvedRightModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, NimbleIconFloppyDiskPenDirective, NimbleIconFloppyDiskPenModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndentDirective, NimbleIconIndentModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconItalicIDirective, NimbleIconItalicIModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, NimbleIconTriangleModule, NimbleIconTriangleTwoLinesHorizontalDirective, NimbleIconTriangleTwoLinesHorizontalModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconTwoSquaresInBracketsDirective, NimbleIconTwoSquaresInBracketsModule, NimbleIconTwoTrianglesBetweenLinesDirective, NimbleIconTwoTrianglesBetweenLinesModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionModule, NimbleMenuButtonDirective, NimbleMenuButtonModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleRadioControlValueAccessorDirective, NimbleRadioDirective, NimbleRadioGroupDirective, NimbleRadioGroupModule, NimbleRadioModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectListOptionDirective, NimbleSelectModule, NimbleSpinnerDirective, NimbleSpinnerModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTooltipDirective, NimbleTooltipModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, OPTION_NOT_FOUND, waitForUpdatesAsync };
10475
+ export { NimbleAnchorButtonDirective, NimbleAnchorButtonModule, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective, NimbleAnchorDirective, NimbleAnchorMenuItemDirective, NimbleAnchorMenuItemModule, NimbleAnchorMenuItemRouterLinkDirective, NimbleAnchorMenuItemRouterLinkWithHrefDirective, NimbleAnchorModule, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective, NimbleAnchorTabDirective, NimbleAnchorTabModule, NimbleAnchorTabRouterLinkDirective, NimbleAnchorTabRouterLinkWithHrefDirective, NimbleAnchorTabsDirective, NimbleAnchorTabsModule, NimbleAnchorTreeItemDirective, NimbleAnchorTreeItemModule, NimbleAnchorTreeItemRouterLinkDirective, NimbleAnchorTreeItemRouterLinkWithHrefDirective, NimbleBannerDirective, NimbleBannerModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownDirective, NimbleIconArrowDownModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowUpRightFromSquareDirective, NimbleIconArrowUpRightFromSquareModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckLargeDirective, NimbleIconCheckLargeModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockExclamationDirective, NimbleIconClockExclamationModule, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudDirective, NimbleIconCloudModule, NimbleIconCloudUploadDirective, NimbleIconCloudUploadModule, NimbleIconCloudWithArrowDirective, NimbleIconCloudWithArrowModule, NimbleIconCogDatabaseDirective, NimbleIconCogDatabaseInsetDirective, NimbleIconCogDatabaseInsetModule, NimbleIconCogDatabaseModule, NimbleIconCogDirective, NimbleIconCogModule, NimbleIconCogSmallCogDirective, NimbleIconCogSmallCogModule, NimbleIconCogZoomedDirective, NimbleIconCogZoomedModule, NimbleIconCommentDirective, NimbleIconCommentModule, NimbleIconComputerAndMonitorDirective, NimbleIconComputerAndMonitorModule, NimbleIconCopyDirective, NimbleIconCopyModule, NimbleIconCopyTextDirective, NimbleIconCopyTextModule, NimbleIconDashboardBuilderDirective, NimbleIconDashboardBuilderLegendDirective, NimbleIconDashboardBuilderLegendModule, NimbleIconDashboardBuilderModule, NimbleIconDashboardBuilderTemplatesDirective, NimbleIconDashboardBuilderTemplatesModule, NimbleIconDashboardBuilderTileDirective, NimbleIconDashboardBuilderTileModule, NimbleIconDatabaseCheckDirective, NimbleIconDatabaseCheckModule, NimbleIconDatabaseDirective, NimbleIconDatabaseModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, NimbleIconDotSolidDotStrokeModule, NimbleIconDownRightFromSquareDirective, NimbleIconDownRightFromSquareModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileArrowCurvedRightDirective, NimbleIconFileArrowCurvedRightModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, NimbleIconFloppyDiskPenDirective, NimbleIconFloppyDiskPenModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndentDirective, NimbleIconIndentModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconItalicIDirective, NimbleIconItalicIModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPauseDirective, NimbleIconPauseModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPlayDirective, NimbleIconPlayModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, NimbleIconTriangleModule, NimbleIconTriangleTwoLinesHorizontalDirective, NimbleIconTriangleTwoLinesHorizontalModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconTwoSquaresInBracketsDirective, NimbleIconTwoSquaresInBracketsModule, NimbleIconTwoTrianglesBetweenLinesDirective, NimbleIconTwoTrianglesBetweenLinesModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionModule, NimbleMenuButtonDirective, NimbleMenuButtonModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleRadioControlValueAccessorDirective, NimbleRadioDirective, NimbleRadioGroupDirective, NimbleRadioGroupModule, NimbleRadioModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectListOptionDirective, NimbleSelectModule, NimbleSpinnerDirective, NimbleSpinnerModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTooltipDirective, NimbleTooltipModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, OPTION_NOT_FOUND, waitForUpdatesAsync };
10344
10476
  //# sourceMappingURL=ni-nimble-angular.mjs.map