@ni/nimble-angular 20.2.11 → 20.2.12

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 (31) hide show
  1. package/directives/icons/eye-dash/nimble-icon-eye-dash.directive.d.ts +12 -0
  2. package/directives/icons/eye-dash/nimble-icon-eye-dash.module.d.ts +9 -0
  3. package/directives/icons/horizontal-triangle-outline/nimble-icon-horizontal-triangle-outline.directive.d.ts +12 -0
  4. package/directives/icons/horizontal-triangle-outline/nimble-icon-horizontal-triangle-outline.module.d.ts +9 -0
  5. package/directives/icons/index.d.ts +12 -0
  6. package/directives/icons/inward-squares-three/nimble-icon-inward-squares-three.directive.d.ts +12 -0
  7. package/directives/icons/inward-squares-three/nimble-icon-inward-squares-three.module.d.ts +9 -0
  8. package/directives/icons/outward-squares-three/nimble-icon-outward-squares-three.directive.d.ts +12 -0
  9. package/directives/icons/outward-squares-three/nimble-icon-outward-squares-three.module.d.ts +9 -0
  10. package/directives/icons/square-x/nimble-icon-square-x.directive.d.ts +12 -0
  11. package/directives/icons/square-x/nimble-icon-square-x.module.d.ts +9 -0
  12. package/directives/icons/three-circles-ascending-container/nimble-icon-three-circles-ascending-container.directive.d.ts +12 -0
  13. package/directives/icons/three-circles-ascending-container/nimble-icon-three-circles-ascending-container.module.d.ts +9 -0
  14. package/esm2020/directives/icons/eye-dash/nimble-icon-eye-dash.directive.mjs +21 -0
  15. package/esm2020/directives/icons/eye-dash/nimble-icon-eye-dash.module.mjs +21 -0
  16. package/esm2020/directives/icons/horizontal-triangle-outline/nimble-icon-horizontal-triangle-outline.directive.mjs +21 -0
  17. package/esm2020/directives/icons/horizontal-triangle-outline/nimble-icon-horizontal-triangle-outline.module.mjs +21 -0
  18. package/esm2020/directives/icons/index.mjs +13 -1
  19. package/esm2020/directives/icons/inward-squares-three/nimble-icon-inward-squares-three.directive.mjs +21 -0
  20. package/esm2020/directives/icons/inward-squares-three/nimble-icon-inward-squares-three.module.mjs +21 -0
  21. package/esm2020/directives/icons/outward-squares-three/nimble-icon-outward-squares-three.directive.mjs +21 -0
  22. package/esm2020/directives/icons/outward-squares-three/nimble-icon-outward-squares-three.module.mjs +21 -0
  23. package/esm2020/directives/icons/square-x/nimble-icon-square-x.directive.mjs +21 -0
  24. package/esm2020/directives/icons/square-x/nimble-icon-square-x.module.mjs +21 -0
  25. package/esm2020/directives/icons/three-circles-ascending-container/nimble-icon-three-circles-ascending-container.directive.mjs +21 -0
  26. package/esm2020/directives/icons/three-circles-ascending-container/nimble-icon-three-circles-ascending-container.module.mjs +21 -0
  27. package/fesm2015/ni-nimble-angular.mjs +199 -1
  28. package/fesm2015/ni-nimble-angular.mjs.map +1 -1
  29. package/fesm2020/ni-nimble-angular.mjs +199 -1
  30. package/fesm2020/ni-nimble-angular.mjs.map +1 -1
  31. package/package.json +2 -2
@@ -105,6 +105,7 @@ export { iconDownloadTag } from '@ni/nimble-components/dist/esm/icons/download';
105
105
  export { iconElectronicChipZoomedTag } from '@ni/nimble-components/dist/esm/icons/electronic-chip-zoomed';
106
106
  export { iconExclamationMarkTag } from '@ni/nimble-components/dist/esm/icons/exclamation-mark';
107
107
  export { iconEyeTag } from '@ni/nimble-components/dist/esm/icons/eye';
108
+ export { iconEyeDashTag } from '@ni/nimble-components/dist/esm/icons/eye-dash';
108
109
  export { iconFancyATag } from '@ni/nimble-components/dist/esm/icons/fancy-a';
109
110
  export { iconFileTag } from '@ni/nimble-components/dist/esm/icons/file';
110
111
  export { iconFileArrowCurvedRightTag } from '@ni/nimble-components/dist/esm/icons/file-arrow-curved-right';
@@ -127,11 +128,13 @@ export { iconGridTwoByTwoTag } from '@ni/nimble-components/dist/esm/icons/grid-t
127
128
  export { iconHammerTag } from '@ni/nimble-components/dist/esm/icons/hammer';
128
129
  export { iconHashtagTag } from '@ni/nimble-components/dist/esm/icons/hashtag';
129
130
  export { iconHomeTag } from '@ni/nimble-components/dist/esm/icons/home';
131
+ export { iconHorizontalTriangleOutlineTag } from '@ni/nimble-components/dist/esm/icons/horizontal-triangle-outline';
130
132
  export { iconHourglassTag } from '@ni/nimble-components/dist/esm/icons/hourglass';
131
133
  export { iconIndentTag } from '@ni/nimble-components/dist/esm/icons/indent';
132
134
  export { iconIndeterminantCheckboxTag } from '@ni/nimble-components/dist/esm/icons/indeterminant-checkbox';
133
135
  export { iconInfoTag } from '@ni/nimble-components/dist/esm/icons/info';
134
136
  export { iconInfoCircleTag } from '@ni/nimble-components/dist/esm/icons/info-circle';
137
+ export { iconInwardSquaresThreeTag } from '@ni/nimble-components/dist/esm/icons/inward-squares-three';
135
138
  export { iconItalicITag } from '@ni/nimble-components/dist/esm/icons/italic-i';
136
139
  export { iconKeyTag } from '@ni/nimble-components/dist/esm/icons/key';
137
140
  export { iconLaptopTag } from '@ni/nimble-components/dist/esm/icons/laptop';
@@ -152,6 +155,7 @@ export { iconNiTag } from '@ni/nimble-components/dist/esm/icons/ni';
152
155
  export { iconNotebookTag } from '@ni/nimble-components/dist/esm/icons/notebook';
153
156
  export { iconNumberListTag } from '@ni/nimble-components/dist/esm/icons/number-list';
154
157
  export { iconOutdentTag } from '@ni/nimble-components/dist/esm/icons/outdent';
158
+ export { iconOutwardSquaresThreeTag } from '@ni/nimble-components/dist/esm/icons/outward-squares-three';
155
159
  export { iconPasteTag } from '@ni/nimble-components/dist/esm/icons/paste';
156
160
  export { iconPauseTag } from '@ni/nimble-components/dist/esm/icons/pause';
157
161
  export { iconPencilTag } from '@ni/nimble-components/dist/esm/icons/pencil';
@@ -172,6 +176,7 @@ export { iconSkipArrowTag } from '@ni/nimble-components/dist/esm/icons/skip-arro
172
176
  export { iconSpinnerTag } from '@ni/nimble-components/dist/esm/icons/spinner';
173
177
  export { iconSquareCheckTag } from '@ni/nimble-components/dist/esm/icons/square-check';
174
178
  export { iconSquareTTag } from '@ni/nimble-components/dist/esm/icons/square-t';
179
+ export { iconSquareXTag } from '@ni/nimble-components/dist/esm/icons/square-x';
175
180
  export { iconStopSquareTag } from '@ni/nimble-components/dist/esm/icons/stop-square';
176
181
  export { iconSystemlinkTag } from '@ni/nimble-components/dist/esm/icons/systemlink';
177
182
  export { iconTTag } from '@ni/nimble-components/dist/esm/icons/t';
@@ -180,6 +185,7 @@ export { iconTagTag } from '@ni/nimble-components/dist/esm/icons/tag';
180
185
  export { iconTagsTag } from '@ni/nimble-components/dist/esm/icons/tags';
181
186
  export { iconTargetCrosshairsTag } from '@ni/nimble-components/dist/esm/icons/target-crosshairs';
182
187
  export { iconTargetCrosshairsProgressTag } from '@ni/nimble-components/dist/esm/icons/target-crosshairs-progress';
188
+ export { iconThreeCirclesAscendingContainerTag } from '@ni/nimble-components/dist/esm/icons/three-circles-ascending-container';
183
189
  export { iconThreeDotsLineTag } from '@ni/nimble-components/dist/esm/icons/three-dots-line';
184
190
  export { iconThreeVerticalLinesTag } from '@ni/nimble-components/dist/esm/icons/three-vertical-lines';
185
191
  export { iconThumbtackTag } from '@ni/nimble-components/dist/esm/icons/thumbtack';
@@ -4857,6 +4863,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4857
4863
  }]
4858
4864
  }] });
4859
4865
 
4866
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4867
+ // See generation source in nimble-angular/build/generate-icons
4868
+ /**
4869
+ * Directive to provide Angular integration for the eyeDash icon element.
4870
+ */
4871
+ class NimbleIconEyeDashDirective extends NimbleIconBaseDirective {
4872
+ }
4873
+ NimbleIconEyeDashDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
4874
+ NimbleIconEyeDashDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconEyeDashDirective, selector: "nimble-icon-eye-dash", usesInheritance: true, ngImport: i0 });
4875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashDirective, decorators: [{
4876
+ type: Directive,
4877
+ args: [{
4878
+ selector: 'nimble-icon-eye-dash'
4879
+ }]
4880
+ }] });
4881
+
4882
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4883
+ // See generation source in nimble-angular/build/generate-icons
4884
+ class NimbleIconEyeDashModule {
4885
+ }
4886
+ NimbleIconEyeDashModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4887
+ NimbleIconEyeDashModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashModule, declarations: [NimbleIconEyeDashDirective], imports: [CommonModule], exports: [NimbleIconEyeDashDirective] });
4888
+ NimbleIconEyeDashModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashModule, imports: [CommonModule] });
4889
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconEyeDashModule, decorators: [{
4890
+ type: NgModule,
4891
+ args: [{
4892
+ declarations: [NimbleIconEyeDashDirective],
4893
+ imports: [CommonModule],
4894
+ exports: [NimbleIconEyeDashDirective]
4895
+ }]
4896
+ }] });
4897
+
4860
4898
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4861
4899
  // See generation source in nimble-angular/build/generate-icons
4862
4900
  /**
@@ -5561,6 +5599,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5561
5599
  }]
5562
5600
  }] });
5563
5601
 
5602
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5603
+ // See generation source in nimble-angular/build/generate-icons
5604
+ /**
5605
+ * Directive to provide Angular integration for the horizontalTriangleOutline icon element.
5606
+ */
5607
+ class NimbleIconHorizontalTriangleOutlineDirective extends NimbleIconBaseDirective {
5608
+ }
5609
+ NimbleIconHorizontalTriangleOutlineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
5610
+ NimbleIconHorizontalTriangleOutlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconHorizontalTriangleOutlineDirective, selector: "nimble-icon-horizontal-triangle-outline", usesInheritance: true, ngImport: i0 });
5611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineDirective, decorators: [{
5612
+ type: Directive,
5613
+ args: [{
5614
+ selector: 'nimble-icon-horizontal-triangle-outline'
5615
+ }]
5616
+ }] });
5617
+
5618
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5619
+ // See generation source in nimble-angular/build/generate-icons
5620
+ class NimbleIconHorizontalTriangleOutlineModule {
5621
+ }
5622
+ NimbleIconHorizontalTriangleOutlineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5623
+ NimbleIconHorizontalTriangleOutlineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineModule, declarations: [NimbleIconHorizontalTriangleOutlineDirective], imports: [CommonModule], exports: [NimbleIconHorizontalTriangleOutlineDirective] });
5624
+ NimbleIconHorizontalTriangleOutlineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineModule, imports: [CommonModule] });
5625
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconHorizontalTriangleOutlineModule, decorators: [{
5626
+ type: NgModule,
5627
+ args: [{
5628
+ declarations: [NimbleIconHorizontalTriangleOutlineDirective],
5629
+ imports: [CommonModule],
5630
+ exports: [NimbleIconHorizontalTriangleOutlineDirective]
5631
+ }]
5632
+ }] });
5633
+
5564
5634
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5565
5635
  // See generation source in nimble-angular/build/generate-icons
5566
5636
  /**
@@ -5721,6 +5791,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5721
5791
  }]
5722
5792
  }] });
5723
5793
 
5794
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5795
+ // See generation source in nimble-angular/build/generate-icons
5796
+ /**
5797
+ * Directive to provide Angular integration for the inwardSquaresThree icon element.
5798
+ */
5799
+ class NimbleIconInwardSquaresThreeDirective extends NimbleIconBaseDirective {
5800
+ }
5801
+ NimbleIconInwardSquaresThreeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
5802
+ NimbleIconInwardSquaresThreeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconInwardSquaresThreeDirective, selector: "nimble-icon-inward-squares-three", usesInheritance: true, ngImport: i0 });
5803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeDirective, decorators: [{
5804
+ type: Directive,
5805
+ args: [{
5806
+ selector: 'nimble-icon-inward-squares-three'
5807
+ }]
5808
+ }] });
5809
+
5810
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5811
+ // See generation source in nimble-angular/build/generate-icons
5812
+ class NimbleIconInwardSquaresThreeModule {
5813
+ }
5814
+ NimbleIconInwardSquaresThreeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5815
+ NimbleIconInwardSquaresThreeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeModule, declarations: [NimbleIconInwardSquaresThreeDirective], imports: [CommonModule], exports: [NimbleIconInwardSquaresThreeDirective] });
5816
+ NimbleIconInwardSquaresThreeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeModule, imports: [CommonModule] });
5817
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconInwardSquaresThreeModule, decorators: [{
5818
+ type: NgModule,
5819
+ args: [{
5820
+ declarations: [NimbleIconInwardSquaresThreeDirective],
5821
+ imports: [CommonModule],
5822
+ exports: [NimbleIconInwardSquaresThreeDirective]
5823
+ }]
5824
+ }] });
5825
+
5724
5826
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5725
5827
  // See generation source in nimble-angular/build/generate-icons
5726
5828
  /**
@@ -6361,6 +6463,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6361
6463
  }]
6362
6464
  }] });
6363
6465
 
6466
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6467
+ // See generation source in nimble-angular/build/generate-icons
6468
+ /**
6469
+ * Directive to provide Angular integration for the outwardSquaresThree icon element.
6470
+ */
6471
+ class NimbleIconOutwardSquaresThreeDirective extends NimbleIconBaseDirective {
6472
+ }
6473
+ NimbleIconOutwardSquaresThreeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
6474
+ NimbleIconOutwardSquaresThreeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconOutwardSquaresThreeDirective, selector: "nimble-icon-outward-squares-three", usesInheritance: true, ngImport: i0 });
6475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeDirective, decorators: [{
6476
+ type: Directive,
6477
+ args: [{
6478
+ selector: 'nimble-icon-outward-squares-three'
6479
+ }]
6480
+ }] });
6481
+
6482
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6483
+ // See generation source in nimble-angular/build/generate-icons
6484
+ class NimbleIconOutwardSquaresThreeModule {
6485
+ }
6486
+ NimbleIconOutwardSquaresThreeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6487
+ NimbleIconOutwardSquaresThreeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeModule, declarations: [NimbleIconOutwardSquaresThreeDirective], imports: [CommonModule], exports: [NimbleIconOutwardSquaresThreeDirective] });
6488
+ NimbleIconOutwardSquaresThreeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeModule, imports: [CommonModule] });
6489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconOutwardSquaresThreeModule, decorators: [{
6490
+ type: NgModule,
6491
+ args: [{
6492
+ declarations: [NimbleIconOutwardSquaresThreeDirective],
6493
+ imports: [CommonModule],
6494
+ exports: [NimbleIconOutwardSquaresThreeDirective]
6495
+ }]
6496
+ }] });
6497
+
6364
6498
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
6365
6499
  // See generation source in nimble-angular/build/generate-icons
6366
6500
  /**
@@ -7001,6 +7135,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7001
7135
  }]
7002
7136
  }] });
7003
7137
 
7138
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7139
+ // See generation source in nimble-angular/build/generate-icons
7140
+ /**
7141
+ * Directive to provide Angular integration for the squareX icon element.
7142
+ */
7143
+ class NimbleIconSquareXDirective extends NimbleIconBaseDirective {
7144
+ }
7145
+ NimbleIconSquareXDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
7146
+ NimbleIconSquareXDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconSquareXDirective, selector: "nimble-icon-square-x", usesInheritance: true, ngImport: i0 });
7147
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXDirective, decorators: [{
7148
+ type: Directive,
7149
+ args: [{
7150
+ selector: 'nimble-icon-square-x'
7151
+ }]
7152
+ }] });
7153
+
7154
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7155
+ // See generation source in nimble-angular/build/generate-icons
7156
+ class NimbleIconSquareXModule {
7157
+ }
7158
+ NimbleIconSquareXModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7159
+ NimbleIconSquareXModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXModule, declarations: [NimbleIconSquareXDirective], imports: [CommonModule], exports: [NimbleIconSquareXDirective] });
7160
+ NimbleIconSquareXModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXModule, imports: [CommonModule] });
7161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconSquareXModule, decorators: [{
7162
+ type: NgModule,
7163
+ args: [{
7164
+ declarations: [NimbleIconSquareXDirective],
7165
+ imports: [CommonModule],
7166
+ exports: [NimbleIconSquareXDirective]
7167
+ }]
7168
+ }] });
7169
+
7004
7170
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7005
7171
  // See generation source in nimble-angular/build/generate-icons
7006
7172
  /**
@@ -7257,6 +7423,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7257
7423
  }]
7258
7424
  }] });
7259
7425
 
7426
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7427
+ // See generation source in nimble-angular/build/generate-icons
7428
+ /**
7429
+ * Directive to provide Angular integration for the threeCirclesAscendingContainer icon element.
7430
+ */
7431
+ class NimbleIconThreeCirclesAscendingContainerDirective extends NimbleIconBaseDirective {
7432
+ }
7433
+ NimbleIconThreeCirclesAscendingContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
7434
+ NimbleIconThreeCirclesAscendingContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NimbleIconThreeCirclesAscendingContainerDirective, selector: "nimble-icon-three-circles-ascending-container", usesInheritance: true, ngImport: i0 });
7435
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerDirective, decorators: [{
7436
+ type: Directive,
7437
+ args: [{
7438
+ selector: 'nimble-icon-three-circles-ascending-container'
7439
+ }]
7440
+ }] });
7441
+
7442
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7443
+ // See generation source in nimble-angular/build/generate-icons
7444
+ class NimbleIconThreeCirclesAscendingContainerModule {
7445
+ }
7446
+ NimbleIconThreeCirclesAscendingContainerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7447
+ NimbleIconThreeCirclesAscendingContainerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerModule, declarations: [NimbleIconThreeCirclesAscendingContainerDirective], imports: [CommonModule], exports: [NimbleIconThreeCirclesAscendingContainerDirective] });
7448
+ NimbleIconThreeCirclesAscendingContainerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerModule, imports: [CommonModule] });
7449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NimbleIconThreeCirclesAscendingContainerModule, decorators: [{
7450
+ type: NgModule,
7451
+ args: [{
7452
+ declarations: [NimbleIconThreeCirclesAscendingContainerDirective],
7453
+ imports: [CommonModule],
7454
+ exports: [NimbleIconThreeCirclesAscendingContainerDirective]
7455
+ }]
7456
+ }] });
7457
+
7260
7458
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
7261
7459
  // See generation source in nimble-angular/build/generate-icons
7262
7460
  /**
@@ -10482,5 +10680,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
10482
10680
  * Generated bundle index. Do not edit.
10483
10681
  */
10484
10682
 
10485
- 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 };
10683
+ 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, NimbleIconEyeDashDirective, NimbleIconEyeDashModule, 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, NimbleIconHorizontalTriangleOutlineDirective, NimbleIconHorizontalTriangleOutlineModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndentDirective, NimbleIconIndentModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconInwardSquaresThreeDirective, NimbleIconInwardSquaresThreeModule, 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, NimbleIconOutwardSquaresThreeDirective, NimbleIconOutwardSquaresThreeModule, 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, NimbleIconSquareXDirective, NimbleIconSquareXModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeCirclesAscendingContainerDirective, NimbleIconThreeCirclesAscendingContainerModule, 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 };
10486
10684
  //# sourceMappingURL=ni-nimble-angular.mjs.map