@ni/nimble-angular 30.8.0 → 30.9.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 (23) hide show
  1. package/directives/checkbox/nimble-checkbox-control-value-accessor.directive.d.ts +3 -0
  2. package/directives/icons/calipers/nimble-icon-calipers.directive.d.ts +12 -0
  3. package/directives/icons/calipers/nimble-icon-calipers.module.d.ts +9 -0
  4. package/directives/icons/camera/nimble-icon-camera.directive.d.ts +12 -0
  5. package/directives/icons/camera/nimble-icon-camera.module.d.ts +9 -0
  6. package/directives/icons/diadem/nimble-icon-diadem.directive.d.ts +12 -0
  7. package/directives/icons/diadem/nimble-icon-diadem.module.d.ts +9 -0
  8. package/directives/icons/index.d.ts +8 -0
  9. package/directives/icons/scanner-gun/nimble-icon-scanner-gun.directive.d.ts +12 -0
  10. package/directives/icons/scanner-gun/nimble-icon-scanner-gun.module.d.ts +9 -0
  11. package/esm2022/directives/checkbox/nimble-checkbox-control-value-accessor.directive.mjs +29 -5
  12. package/esm2022/directives/icons/calipers/nimble-icon-calipers.directive.mjs +21 -0
  13. package/esm2022/directives/icons/calipers/nimble-icon-calipers.module.mjs +21 -0
  14. package/esm2022/directives/icons/camera/nimble-icon-camera.directive.mjs +21 -0
  15. package/esm2022/directives/icons/camera/nimble-icon-camera.module.mjs +21 -0
  16. package/esm2022/directives/icons/diadem/nimble-icon-diadem.directive.mjs +21 -0
  17. package/esm2022/directives/icons/diadem/nimble-icon-diadem.module.mjs +21 -0
  18. package/esm2022/directives/icons/index.mjs +9 -1
  19. package/esm2022/directives/icons/scanner-gun/nimble-icon-scanner-gun.directive.mjs +21 -0
  20. package/esm2022/directives/icons/scanner-gun/nimble-icon-scanner-gun.module.mjs +21 -0
  21. package/fesm2022/ni-nimble-angular.mjs +160 -4
  22. package/fesm2022/ni-nimble-angular.mjs.map +1 -1
  23. package/package.json +2 -2
@@ -82,6 +82,8 @@ export { iconCalendarDaysTag } from '@ni/nimble-components/dist/esm/icons/calend
82
82
  export { iconCalendarLinesTag } from '@ni/nimble-components/dist/esm/icons/calendar-lines';
83
83
  export { iconCalendarRectangleTag } from '@ni/nimble-components/dist/esm/icons/calendar-rectangle';
84
84
  export { iconCalendarWeekTag } from '@ni/nimble-components/dist/esm/icons/calendar-week';
85
+ export { iconCalipersTag } from '@ni/nimble-components/dist/esm/icons/calipers';
86
+ export { iconCameraTag } from '@ni/nimble-components/dist/esm/icons/camera';
85
87
  export { iconChartDiagramTag } from '@ni/nimble-components/dist/esm/icons/chart-diagram';
86
88
  export { iconChartDiagramChildFocusTag } from '@ni/nimble-components/dist/esm/icons/chart-diagram-child-focus';
87
89
  export { iconChartDiagramParentFocusTag } from '@ni/nimble-components/dist/esm/icons/chart-diagram-parent-focus';
@@ -122,6 +124,7 @@ export { iconDatabaseTag } from '@ni/nimble-components/dist/esm/icons/database';
122
124
  export { iconDatabaseCheckTag } from '@ni/nimble-components/dist/esm/icons/database-check';
123
125
  export { iconDebugTag } from '@ni/nimble-components/dist/esm/icons/debug';
124
126
  export { iconDesktopTag } from '@ni/nimble-components/dist/esm/icons/desktop';
127
+ export { iconDiademTag } from '@ni/nimble-components/dist/esm/icons/diadem';
125
128
  export { iconDonutChartTag } from '@ni/nimble-components/dist/esm/icons/donut-chart';
126
129
  export { iconDotSolidDotStrokeTag } from '@ni/nimble-components/dist/esm/icons/dot-solid-dot-stroke';
127
130
  export { iconDotSolidDotStrokeMeasurementTag } from '@ni/nimble-components/dist/esm/icons/dot-solid-dot-stroke-measurement';
@@ -201,6 +204,7 @@ export { iconQuestionTag } from '@ni/nimble-components/dist/esm/icons/question';
201
204
  export { iconRectangleCheckLinesTag } from '@ni/nimble-components/dist/esm/icons/rectangle-check-lines';
202
205
  export { iconRectangleLinesTag } from '@ni/nimble-components/dist/esm/icons/rectangle-lines';
203
206
  export { iconRunningArrowTag } from '@ni/nimble-components/dist/esm/icons/running-arrow';
207
+ export { iconScannerGunTag } from '@ni/nimble-components/dist/esm/icons/scanner-gun';
204
208
  export { iconScreenCheckLinesTag } from '@ni/nimble-components/dist/esm/icons/screen-check-lines';
205
209
  export { iconScreenCheckLinesCalendarTag } from '@ni/nimble-components/dist/esm/icons/screen-check-lines-calendar';
206
210
  export { iconServerTag } from '@ni/nimble-components/dist/esm/icons/server';
@@ -1918,8 +1922,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
1918
1922
  * Directive decorator based on CheckboxControlValueAccessor decorator in thirdparty/directives/checkbox_value_accessor
1919
1923
  */
1920
1924
  class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {
1925
+ constructor() {
1926
+ super(...arguments);
1927
+ this.ignoreChangeEvents = false;
1928
+ }
1929
+ writeValue(value) {
1930
+ // Because the 'change' event is emitted from the checkbox when its value is set programmatically,
1931
+ // ignore change events while writing the value. See https://github.com/ni/nimble/issues/2739
1932
+ try {
1933
+ this.ignoreChangeEvents = true;
1934
+ super.writeValue(value);
1935
+ }
1936
+ finally {
1937
+ this.ignoreChangeEvents = false;
1938
+ }
1939
+ }
1940
+ nimbleOnChange(event) {
1941
+ if (this.ignoreChangeEvents) {
1942
+ return;
1943
+ }
1944
+ this.onChange(event.target.checked);
1945
+ }
1921
1946
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleCheckboxControlValueAccessorDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
1922
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleCheckboxControlValueAccessorDirective, selector: "nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]", host: { listeners: { "change": "onChange($event.target.checked)", "blur": "onTouched()" } }, providers: [{
1947
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleCheckboxControlValueAccessorDirective, selector: "nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]", host: { listeners: { "blur": "onTouched()", "change": "nimbleOnChange($event)" } }, providers: [{
1923
1948
  provide: NG_VALUE_ACCESSOR,
1924
1949
  useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),
1925
1950
  multi: true
@@ -1931,14 +1956,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
1931
1956
  selector: 'nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]',
1932
1957
  // The following host metadata is duplicated from CheckboxControlValueAccessor
1933
1958
  // eslint-disable-next-line @angular-eslint/no-host-metadata-property, @typescript-eslint/naming-convention
1934
- host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },
1959
+ host: { '(blur)': 'onTouched()' },
1935
1960
  providers: [{
1936
1961
  provide: NG_VALUE_ACCESSOR,
1937
1962
  useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),
1938
1963
  multi: true
1939
1964
  }]
1940
1965
  }]
1941
- }] });
1966
+ }], propDecorators: { nimbleOnChange: [{
1967
+ type: HostListener,
1968
+ args: ['change', ['$event']]
1969
+ }] } });
1942
1970
 
1943
1971
  /**
1944
1972
  * Directive to provide Angular integration for the checkbox.
@@ -4209,6 +4237,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
4209
4237
  }]
4210
4238
  }] });
4211
4239
 
4240
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4241
+ // See generation source in nimble-angular/build/generate-icons
4242
+ /**
4243
+ * Directive to provide Angular integration for the calipers icon element.
4244
+ */
4245
+ class NimbleIconCalipersDirective extends NimbleIconBaseDirective {
4246
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
4247
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleIconCalipersDirective, selector: "nimble-icon-calipers", usesInheritance: true, ngImport: i0 }); }
4248
+ }
4249
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersDirective, decorators: [{
4250
+ type: Directive,
4251
+ args: [{
4252
+ selector: 'nimble-icon-calipers'
4253
+ }]
4254
+ }] });
4255
+
4256
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4257
+ // See generation source in nimble-angular/build/generate-icons
4258
+ class NimbleIconCalipersModule {
4259
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
4260
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersModule, declarations: [NimbleIconCalipersDirective], imports: [CommonModule], exports: [NimbleIconCalipersDirective] }); }
4261
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersModule, imports: [CommonModule] }); }
4262
+ }
4263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCalipersModule, decorators: [{
4264
+ type: NgModule,
4265
+ args: [{
4266
+ declarations: [NimbleIconCalipersDirective],
4267
+ imports: [CommonModule],
4268
+ exports: [NimbleIconCalipersDirective]
4269
+ }]
4270
+ }] });
4271
+
4272
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4273
+ // See generation source in nimble-angular/build/generate-icons
4274
+ /**
4275
+ * Directive to provide Angular integration for the camera icon element.
4276
+ */
4277
+ class NimbleIconCameraDirective extends NimbleIconBaseDirective {
4278
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
4279
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleIconCameraDirective, selector: "nimble-icon-camera", usesInheritance: true, ngImport: i0 }); }
4280
+ }
4281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraDirective, decorators: [{
4282
+ type: Directive,
4283
+ args: [{
4284
+ selector: 'nimble-icon-camera'
4285
+ }]
4286
+ }] });
4287
+
4288
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4289
+ // See generation source in nimble-angular/build/generate-icons
4290
+ class NimbleIconCameraModule {
4291
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
4292
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraModule, declarations: [NimbleIconCameraDirective], imports: [CommonModule], exports: [NimbleIconCameraDirective] }); }
4293
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraModule, imports: [CommonModule] }); }
4294
+ }
4295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconCameraModule, decorators: [{
4296
+ type: NgModule,
4297
+ args: [{
4298
+ declarations: [NimbleIconCameraDirective],
4299
+ imports: [CommonModule],
4300
+ exports: [NimbleIconCameraDirective]
4301
+ }]
4302
+ }] });
4303
+
4212
4304
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
4213
4305
  // See generation source in nimble-angular/build/generate-icons
4214
4306
  /**
@@ -5489,6 +5581,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
5489
5581
  }]
5490
5582
  }] });
5491
5583
 
5584
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5585
+ // See generation source in nimble-angular/build/generate-icons
5586
+ /**
5587
+ * Directive to provide Angular integration for the diadem icon element.
5588
+ */
5589
+ class NimbleIconDiademDirective extends NimbleIconBaseDirective {
5590
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
5591
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleIconDiademDirective, selector: "nimble-icon-diadem", usesInheritance: true, ngImport: i0 }); }
5592
+ }
5593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademDirective, decorators: [{
5594
+ type: Directive,
5595
+ args: [{
5596
+ selector: 'nimble-icon-diadem'
5597
+ }]
5598
+ }] });
5599
+
5600
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5601
+ // See generation source in nimble-angular/build/generate-icons
5602
+ class NimbleIconDiademModule {
5603
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
5604
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademModule, declarations: [NimbleIconDiademDirective], imports: [CommonModule], exports: [NimbleIconDiademDirective] }); }
5605
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademModule, imports: [CommonModule] }); }
5606
+ }
5607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconDiademModule, decorators: [{
5608
+ type: NgModule,
5609
+ args: [{
5610
+ declarations: [NimbleIconDiademDirective],
5611
+ imports: [CommonModule],
5612
+ exports: [NimbleIconDiademDirective]
5613
+ }]
5614
+ }] });
5615
+
5492
5616
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
5493
5617
  // See generation source in nimble-angular/build/generate-icons
5494
5618
  /**
@@ -8017,6 +8141,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
8017
8141
  }]
8018
8142
  }] });
8019
8143
 
8144
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
8145
+ // See generation source in nimble-angular/build/generate-icons
8146
+ /**
8147
+ * Directive to provide Angular integration for the scannerGun icon element.
8148
+ */
8149
+ class NimbleIconScannerGunDirective extends NimbleIconBaseDirective {
8150
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
8151
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: NimbleIconScannerGunDirective, selector: "nimble-icon-scanner-gun", usesInheritance: true, ngImport: i0 }); }
8152
+ }
8153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunDirective, decorators: [{
8154
+ type: Directive,
8155
+ args: [{
8156
+ selector: 'nimble-icon-scanner-gun'
8157
+ }]
8158
+ }] });
8159
+
8160
+ // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
8161
+ // See generation source in nimble-angular/build/generate-icons
8162
+ class NimbleIconScannerGunModule {
8163
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8164
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunModule, declarations: [NimbleIconScannerGunDirective], imports: [CommonModule], exports: [NimbleIconScannerGunDirective] }); }
8165
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunModule, imports: [CommonModule] }); }
8166
+ }
8167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NimbleIconScannerGunModule, decorators: [{
8168
+ type: NgModule,
8169
+ args: [{
8170
+ declarations: [NimbleIconScannerGunDirective],
8171
+ imports: [CommonModule],
8172
+ exports: [NimbleIconScannerGunDirective]
8173
+ }]
8174
+ }] });
8175
+
8020
8176
  // AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
8021
8177
  // See generation source in nimble-angular/build/generate-icons
8022
8178
  /**
@@ -12423,5 +12579,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
12423
12579
  * Generated bundle index. Do not edit.
12424
12580
  */
12425
12581
 
12426
- 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, NimbleIconArrowDownLeftAndArrowUpRightDirective, NimbleIconArrowDownLeftAndArrowUpRightModule, NimbleIconArrowDownModule, NimbleIconArrowDownRectangleDirective, NimbleIconArrowDownRectangleModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowDownTwoRectanglesDirective, NimbleIconArrowDownTwoRectanglesModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowLeftTwoRectanglesDirective, NimbleIconArrowLeftTwoRectanglesModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightThinDirective, NimbleIconArrowRightThinModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRightTwoRectanglesDirective, NimbleIconArrowRightTwoRectanglesModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowULeftDirective, NimbleIconArrowULeftModule, NimbleIconArrowURightDirective, NimbleIconArrowURightModule, NimbleIconArrowUUpDirective, NimbleIconArrowUUpModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowUpRectangleDirective, NimbleIconArrowUpRectangleModule, NimbleIconArrowUpRightAndArrowDownLeftDirective, NimbleIconArrowUpRightAndArrowDownLeftModule, NimbleIconArrowUpRightFromSquareDirective, NimbleIconArrowUpRightFromSquareModule, NimbleIconArrowUpTwoRectanglesDirective, NimbleIconArrowUpTwoRectanglesModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconArrowsRotateReverseDotDirective, NimbleIconArrowsRotateReverseDotModule, NimbleIconAsteriskDirective, NimbleIconAsteriskModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellAndMessageDirective, NimbleIconBellAndMessageModule, NimbleIconBellCheckDirective, NimbleIconBellCheckModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellOnDirective, NimbleIconBellOnModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarArrowsRotateReverseDotDirective, NimbleIconCalendarArrowsRotateReverseDotModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarCircleExclamationDirective, NimbleIconCalendarCircleExclamationModule, NimbleIconCalendarClockDirective, NimbleIconCalendarClockModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDayOutlineDirective, NimbleIconCalendarDayOutlineModule, NimbleIconCalendarDaysDirective, NimbleIconCalendarDaysModule, NimbleIconCalendarLinesDirective, NimbleIconCalendarLinesModule, NimbleIconCalendarRectangleDirective, NimbleIconCalendarRectangleModule, NimbleIconCalendarWeekDirective, NimbleIconCalendarWeekModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleMinusDirective, NimbleIconCircleMinusModule, 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, NimbleIconDebugDirective, NimbleIconDebugModule, 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, NimbleIconLightbulbDirective, NimbleIconLightbulbModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMessageBotDirective, NimbleIconMessageBotModule, NimbleIconMessageDirective, NimbleIconMessageModule, NimbleIconMessagesSparkleDirective, NimbleIconMessagesSparkleModule, NimbleIconMicrophoneDirective, NimbleIconMicrophoneModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconMountainSunDirective, NimbleIconMountainSunModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconOutwardSquaresThreeDirective, NimbleIconOutwardSquaresThreeModule, NimbleIconPaperPlaneDirective, NimbleIconPaperPlaneModule, NimbleIconPaperclipDirective, NimbleIconPaperclipModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPauseDirective, NimbleIconPauseModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPencilToRectangleDirective, NimbleIconPencilToRectangleModule, NimbleIconPlayDirective, NimbleIconPlayModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconPrintDirective, NimbleIconPrintModule, NimbleIconQrcodeReadDirective, NimbleIconQrcodeReadModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRectangleLinesDirective, NimbleIconRectangleLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSparkleSwirlsDirective, NimbleIconSparkleSwirlsModule, NimbleIconSparklesDirective, NimbleIconSparklesModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareListCogDirective, NimbleIconSquareListCogModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconSquareXDirective, NimbleIconSquareXModule, NimbleIconStar8PointDirective, NimbleIconStar8PointModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeCirclesAscendingContainerDirective, NimbleIconThreeCirclesAscendingContainerModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbDownDirective, NimbleIconThumbDownModule, NimbleIconThumbUpDirective, NimbleIconThumbUpModule, 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, NimbleIconWindowDockDirective, NimbleIconWindowDockModule, NimbleIconWindowRestoreDirective, NimbleIconWindowRestoreModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionGroupDirective, NimbleListOptionGroupModule, 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 };
12582
+ 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, NimbleIconArrowDownLeftAndArrowUpRightDirective, NimbleIconArrowDownLeftAndArrowUpRightModule, NimbleIconArrowDownModule, NimbleIconArrowDownRectangleDirective, NimbleIconArrowDownRectangleModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowDownTwoRectanglesDirective, NimbleIconArrowDownTwoRectanglesModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowLeftTwoRectanglesDirective, NimbleIconArrowLeftTwoRectanglesModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightThinDirective, NimbleIconArrowRightThinModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRightTwoRectanglesDirective, NimbleIconArrowRightTwoRectanglesModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowULeftDirective, NimbleIconArrowULeftModule, NimbleIconArrowURightDirective, NimbleIconArrowURightModule, NimbleIconArrowUUpDirective, NimbleIconArrowUUpModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowUpRectangleDirective, NimbleIconArrowUpRectangleModule, NimbleIconArrowUpRightAndArrowDownLeftDirective, NimbleIconArrowUpRightAndArrowDownLeftModule, NimbleIconArrowUpRightFromSquareDirective, NimbleIconArrowUpRightFromSquareModule, NimbleIconArrowUpTwoRectanglesDirective, NimbleIconArrowUpTwoRectanglesModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconArrowsRotateReverseDotDirective, NimbleIconArrowsRotateReverseDotModule, NimbleIconAsteriskDirective, NimbleIconAsteriskModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellAndMessageDirective, NimbleIconBellAndMessageModule, NimbleIconBellCheckDirective, NimbleIconBellCheckModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellOnDirective, NimbleIconBellOnModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarArrowsRotateReverseDotDirective, NimbleIconCalendarArrowsRotateReverseDotModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarCircleExclamationDirective, NimbleIconCalendarCircleExclamationModule, NimbleIconCalendarClockDirective, NimbleIconCalendarClockModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDayOutlineDirective, NimbleIconCalendarDayOutlineModule, NimbleIconCalendarDaysDirective, NimbleIconCalendarDaysModule, NimbleIconCalendarLinesDirective, NimbleIconCalendarLinesModule, NimbleIconCalendarRectangleDirective, NimbleIconCalendarRectangleModule, NimbleIconCalendarWeekDirective, NimbleIconCalendarWeekModule, NimbleIconCalipersDirective, NimbleIconCalipersModule, NimbleIconCameraDirective, NimbleIconCameraModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleMinusDirective, NimbleIconCircleMinusModule, 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, NimbleIconDebugDirective, NimbleIconDebugModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDiademDirective, NimbleIconDiademModule, 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, NimbleIconLightbulbDirective, NimbleIconLightbulbModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMessageBotDirective, NimbleIconMessageBotModule, NimbleIconMessageDirective, NimbleIconMessageModule, NimbleIconMessagesSparkleDirective, NimbleIconMessagesSparkleModule, NimbleIconMicrophoneDirective, NimbleIconMicrophoneModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconMountainSunDirective, NimbleIconMountainSunModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconOutwardSquaresThreeDirective, NimbleIconOutwardSquaresThreeModule, NimbleIconPaperPlaneDirective, NimbleIconPaperPlaneModule, NimbleIconPaperclipDirective, NimbleIconPaperclipModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPauseDirective, NimbleIconPauseModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPencilToRectangleDirective, NimbleIconPencilToRectangleModule, NimbleIconPlayDirective, NimbleIconPlayModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconPrintDirective, NimbleIconPrintModule, NimbleIconQrcodeReadDirective, NimbleIconQrcodeReadModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRectangleLinesDirective, NimbleIconRectangleLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScannerGunDirective, NimbleIconScannerGunModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSparkleSwirlsDirective, NimbleIconSparkleSwirlsModule, NimbleIconSparklesDirective, NimbleIconSparklesModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareListCogDirective, NimbleIconSquareListCogModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconSquareXDirective, NimbleIconSquareXModule, NimbleIconStar8PointDirective, NimbleIconStar8PointModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeCirclesAscendingContainerDirective, NimbleIconThreeCirclesAscendingContainerModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbDownDirective, NimbleIconThumbDownModule, NimbleIconThumbUpDirective, NimbleIconThumbUpModule, 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, NimbleIconWindowDockDirective, NimbleIconWindowDockModule, NimbleIconWindowRestoreDirective, NimbleIconWindowRestoreModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionGroupDirective, NimbleListOptionGroupModule, 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 };
12427
12583
  //# sourceMappingURL=ni-nimble-angular.mjs.map