@ni/nimble-angular 16.5.16 → 16.5.18

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.
@@ -196,7 +196,9 @@ import '@ni/nimble-components/dist/esm/switch';
196
196
  import '@ni/nimble-components/dist/esm/tab';
197
197
  import '@ni/nimble-components/dist/esm/tab-panel';
198
198
  export { TableRowSelectionMode } from '@ni/nimble-components/dist/esm/table/types';
199
+ export { TablePageObject } from '@ni/nimble-components/dist/esm/table/tests/table.pageobject';
199
200
  import '@ni/nimble-components/dist/esm/table';
201
+ import '@ni/nimble-components/dist/esm/table-column/anchor';
200
202
  import '@ni/nimble-components/dist/esm/table-column/text';
201
203
  import '@ni/nimble-components/dist/esm/tabs';
202
204
  import '@ni/nimble-components/dist/esm/tabs-toolbar';
@@ -7716,6 +7718,242 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
7716
7718
  }]
7717
7719
  }] });
7718
7720
 
7721
+ /**
7722
+ * Directive to handle nimble-table-column-anchor RouterLink support.
7723
+ * Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
7724
+ * won't also be an active RouterLink directive incorrectly handling navigation.
7725
+ */
7726
+ class NimbleTableColumnAnchorRouterLinkWithHrefDirective extends RouterLinkWithHref {
7727
+ set routerLink(_commands) {
7728
+ throw new Error('Directly configuring the routerLink url is not supported. The router url is configured via the href-field-name of the column.');
7729
+ }
7730
+ onDelegatedEvent(delegatedEvent) {
7731
+ if (delegatedEvent.type !== 'click') {
7732
+ return;
7733
+ }
7734
+ const clickEvent = delegatedEvent;
7735
+ const href = delegatedEvent.target.cellRecord.href;
7736
+ if (!href) {
7737
+ return;
7738
+ }
7739
+ // Let the router handle this navigation
7740
+ super.routerLink = href;
7741
+ if (!this.onClick(clickEvent.button, clickEvent.ctrlKey, clickEvent.shiftKey, clickEvent.altKey, clickEvent.metaKey)) {
7742
+ clickEvent.preventDefault();
7743
+ }
7744
+ super.routerLink = null;
7745
+ }
7746
+ }
7747
+ NimbleTableColumnAnchorRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
7748
+ NimbleTableColumnAnchorRouterLinkWithHrefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnAnchorRouterLinkWithHrefDirective, selector: "nimble-table-column-anchor[nimbleRouterLink]", host: { listeners: { "delegated-event": "onDelegatedEvent($event.detail.originalEvent)" } }, usesInheritance: true, ngImport: i0 });
7749
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorRouterLinkWithHrefDirective, decorators: [{
7750
+ type: Directive,
7751
+ args: [{
7752
+ selector: 'nimble-table-column-anchor[nimbleRouterLink]'
7753
+ }]
7754
+ }], propDecorators: { onDelegatedEvent: [{
7755
+ type: HostListener,
7756
+ args: ['delegated-event', ['$event.detail.originalEvent']]
7757
+ }] } });
7758
+
7759
+ /**
7760
+ * Directive used solely to point consumers to use [nimbleRouterLink] / NimbleTableColumnAnchorRouterLinkWithHrefDirective.
7761
+ *
7762
+ * @see NimbleTableColumnAnchorRouterLinkWithHrefDirective
7763
+ */
7764
+ class NimbleTableColumnAnchorRouterLinkDirective {
7765
+ constructor() {
7766
+ throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
7767
+ }
7768
+ }
7769
+ NimbleTableColumnAnchorRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
7770
+ NimbleTableColumnAnchorRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnAnchorRouterLinkDirective, selector: "nimble-table-column-anchor[routerLink]", ngImport: i0 });
7771
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorRouterLinkDirective, decorators: [{
7772
+ type: Directive,
7773
+ args: [{ selector: 'nimble-table-column-anchor[routerLink]' }]
7774
+ }], ctorParameters: function () { return []; } });
7775
+
7776
+ /**
7777
+ * Directive to provide Angular integration for the table column element for links.
7778
+ */
7779
+ class NimbleTableColumnAnchorDirective {
7780
+ constructor(renderer, elementRef) {
7781
+ this.renderer = renderer;
7782
+ this.elementRef = elementRef;
7783
+ }
7784
+ get labelFieldName() {
7785
+ return this.elementRef.nativeElement.labelFieldName;
7786
+ }
7787
+ // Renaming because property should have camel casing, but attribute should not
7788
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7789
+ set labelFieldName(value) {
7790
+ this.renderer.setProperty(this.elementRef.nativeElement, 'labelFieldName', value);
7791
+ }
7792
+ get hrefFieldName() {
7793
+ return this.elementRef.nativeElement.hrefFieldName;
7794
+ }
7795
+ // Renaming because property should have camel casing, but attribute should not
7796
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7797
+ set hrefFieldName(value) {
7798
+ this.renderer.setProperty(this.elementRef.nativeElement, 'hrefFieldName', value);
7799
+ }
7800
+ get placeholder() {
7801
+ return this.elementRef.nativeElement.placeholder;
7802
+ }
7803
+ set placeholder(value) {
7804
+ this.renderer.setProperty(this.elementRef.nativeElement, 'placeholder', value);
7805
+ }
7806
+ get appearance() {
7807
+ return this.elementRef.nativeElement.appearance;
7808
+ }
7809
+ set appearance(value) {
7810
+ this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
7811
+ }
7812
+ get underlineHidden() {
7813
+ return this.elementRef.nativeElement.underlineHidden;
7814
+ }
7815
+ // Renaming because property should have camel casing, but attribute should not
7816
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7817
+ set underlineHidden(value) {
7818
+ this.renderer.setProperty(this.elementRef.nativeElement, 'underlineHidden', toBooleanProperty(value));
7819
+ }
7820
+ get hreflang() {
7821
+ return this.elementRef.nativeElement.hreflang;
7822
+ }
7823
+ set hreflang(value) {
7824
+ this.renderer.setProperty(this.elementRef.nativeElement, 'hreflang', value);
7825
+ }
7826
+ get ping() {
7827
+ return this.elementRef.nativeElement.ping;
7828
+ }
7829
+ set ping(value) {
7830
+ this.renderer.setProperty(this.elementRef.nativeElement, 'ping', value);
7831
+ }
7832
+ get referrerpolicy() {
7833
+ return this.elementRef.nativeElement.referrerpolicy;
7834
+ }
7835
+ set referrerpolicy(value) {
7836
+ this.renderer.setProperty(this.elementRef.nativeElement, 'referrerpolicy', value);
7837
+ }
7838
+ get rel() {
7839
+ return this.elementRef.nativeElement.rel;
7840
+ }
7841
+ set rel(value) {
7842
+ this.renderer.setProperty(this.elementRef.nativeElement, 'rel', value);
7843
+ }
7844
+ get target() {
7845
+ return this.elementRef.nativeElement.target;
7846
+ }
7847
+ set target(value) {
7848
+ this.renderer.setProperty(this.elementRef.nativeElement, 'target', value);
7849
+ }
7850
+ get type() {
7851
+ return this.elementRef.nativeElement.type;
7852
+ }
7853
+ set type(value) {
7854
+ this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);
7855
+ }
7856
+ get download() {
7857
+ return this.elementRef.nativeElement.download;
7858
+ }
7859
+ set download(value) {
7860
+ this.renderer.setProperty(this.elementRef.nativeElement, 'download', value);
7861
+ }
7862
+ get fractionalWidth() {
7863
+ return this.elementRef.nativeElement.fractionalWidth;
7864
+ }
7865
+ // Renaming because property should have camel casing, but attribute should not
7866
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7867
+ set fractionalWidth(value) {
7868
+ this.renderer.setProperty(this.elementRef.nativeElement, 'fractionalWidth', toNullableNumberProperty(value));
7869
+ }
7870
+ get minPixelWidth() {
7871
+ return this.elementRef.nativeElement.minPixelWidth;
7872
+ }
7873
+ // Renaming because property should have camel casing, but attribute should not
7874
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7875
+ set minPixelWidth(value) {
7876
+ this.renderer.setProperty(this.elementRef.nativeElement, 'minPixelWidth', toNullableNumberProperty(value));
7877
+ }
7878
+ get groupIndex() {
7879
+ return this.elementRef.nativeElement.groupIndex;
7880
+ }
7881
+ // Renaming because property should have camel casing, but attribute should not
7882
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7883
+ set groupIndex(value) {
7884
+ this.renderer.setProperty(this.elementRef.nativeElement, 'groupIndex', toNullableNumberProperty(value));
7885
+ }
7886
+ get groupingDisabled() {
7887
+ return this.elementRef.nativeElement.groupingDisabled;
7888
+ }
7889
+ // Renaming because property should have camel casing, but attribute should not
7890
+ // eslint-disable-next-line @angular-eslint/no-input-rename
7891
+ set groupingDisabled(value) {
7892
+ this.renderer.setProperty(this.elementRef.nativeElement, 'groupingDisabled', toBooleanProperty(value));
7893
+ }
7894
+ }
7895
+ NimbleTableColumnAnchorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
7896
+ NimbleTableColumnAnchorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: NimbleTableColumnAnchorDirective, selector: "nimble-table-column-anchor", inputs: { labelFieldName: ["label-field-name", "labelFieldName"], hrefFieldName: ["href-field-name", "hrefFieldName"], placeholder: "placeholder", appearance: "appearance", underlineHidden: ["underline-hidden", "underlineHidden"], hreflang: "hreflang", ping: "ping", referrerpolicy: "referrerpolicy", rel: "rel", target: "target", type: "type", download: "download", fractionalWidth: ["fractional-width", "fractionalWidth"], minPixelWidth: ["min-pixel-width", "minPixelWidth"], groupIndex: ["group-index", "groupIndex"], groupingDisabled: ["grouping-disabled", "groupingDisabled"] }, ngImport: i0 });
7897
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorDirective, decorators: [{
7898
+ type: Directive,
7899
+ args: [{
7900
+ selector: 'nimble-table-column-anchor'
7901
+ }]
7902
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { labelFieldName: [{
7903
+ type: Input,
7904
+ args: ['label-field-name']
7905
+ }], hrefFieldName: [{
7906
+ type: Input,
7907
+ args: ['href-field-name']
7908
+ }], placeholder: [{
7909
+ type: Input
7910
+ }], appearance: [{
7911
+ type: Input
7912
+ }], underlineHidden: [{
7913
+ type: Input,
7914
+ args: ['underline-hidden']
7915
+ }], hreflang: [{
7916
+ type: Input
7917
+ }], ping: [{
7918
+ type: Input
7919
+ }], referrerpolicy: [{
7920
+ type: Input
7921
+ }], rel: [{
7922
+ type: Input
7923
+ }], target: [{
7924
+ type: Input
7925
+ }], type: [{
7926
+ type: Input
7927
+ }], download: [{
7928
+ type: Input
7929
+ }], fractionalWidth: [{
7930
+ type: Input,
7931
+ args: ['fractional-width']
7932
+ }], minPixelWidth: [{
7933
+ type: Input,
7934
+ args: ['min-pixel-width']
7935
+ }], groupIndex: [{
7936
+ type: Input,
7937
+ args: ['group-index']
7938
+ }], groupingDisabled: [{
7939
+ type: Input,
7940
+ args: ['grouping-disabled']
7941
+ }] } });
7942
+
7943
+ class NimbleTableColumnAnchorModule {
7944
+ }
7945
+ NimbleTableColumnAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7946
+ NimbleTableColumnAnchorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorModule, declarations: [NimbleTableColumnAnchorDirective, NimbleTableColumnAnchorRouterLinkDirective, NimbleTableColumnAnchorRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleTableColumnAnchorDirective, NimbleTableColumnAnchorRouterLinkDirective, NimbleTableColumnAnchorRouterLinkWithHrefDirective] });
7947
+ NimbleTableColumnAnchorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorModule, imports: [CommonModule] });
7948
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NimbleTableColumnAnchorModule, decorators: [{
7949
+ type: NgModule,
7950
+ args: [{
7951
+ declarations: [NimbleTableColumnAnchorDirective, NimbleTableColumnAnchorRouterLinkDirective, NimbleTableColumnAnchorRouterLinkWithHrefDirective],
7952
+ imports: [CommonModule],
7953
+ exports: [NimbleTableColumnAnchorDirective, NimbleTableColumnAnchorRouterLinkDirective, NimbleTableColumnAnchorRouterLinkWithHrefDirective]
7954
+ }]
7955
+ }] });
7956
+
7719
7957
  /**
7720
7958
  * Base class for table column directives.
7721
7959
  */
@@ -8732,5 +8970,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
8732
8970
  * Generated bundle index. Do not edit.
8733
8971
  */
8734
8972
 
8735
- 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, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, 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, 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, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileExportDirective, NimbleIconFileExportModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, 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, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, 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, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShareSquareDirective, NimbleIconShareSquareModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, 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, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, 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, NimbleTableColumnTextDirective, NimbleTableColumnTextModule, NimbleTableDirective, NimbleTableModule, 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 };
8973
+ 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, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, 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, 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, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileExportDirective, NimbleIconFileExportModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, 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, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, 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, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShareSquareDirective, NimbleIconShareSquareModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, 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, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, 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, NimbleTableColumnAnchorDirective, NimbleTableColumnAnchorModule, NimbleTableColumnAnchorRouterLinkDirective, NimbleTableColumnAnchorRouterLinkWithHrefDirective, NimbleTableColumnTextDirective, NimbleTableColumnTextModule, NimbleTableDirective, NimbleTableModule, 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 };
8736
8974
  //# sourceMappingURL=ni-nimble-angular.mjs.map