@ni/nimble-angular 17.5.5 → 17.5.7
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.
- package/directives/icons/indent/nimble-icon-indent.directive.d.ts +12 -0
- package/directives/icons/indent/nimble-icon-indent.module.d.ts +9 -0
- package/directives/icons/index.d.ts +4 -0
- package/directives/icons/outdent/nimble-icon-outdent.directive.d.ts +12 -0
- package/directives/icons/outdent/nimble-icon-outdent.module.d.ts +9 -0
- package/esm2020/directives/icons/indent/nimble-icon-indent.directive.mjs +21 -0
- package/esm2020/directives/icons/indent/nimble-icon-indent.module.mjs +21 -0
- package/esm2020/directives/icons/index.mjs +5 -1
- package/esm2020/directives/icons/outdent/nimble-icon-outdent.directive.mjs +21 -0
- package/esm2020/directives/icons/outdent/nimble-icon-outdent.module.mjs +21 -0
- package/esm2020/label-provider/table/nimble-label-provider-table-with-defaults.directive.mjs +2 -2
- package/esm2020/label-provider/table/nimble-label-provider-table.directive.mjs +8 -8
- package/fesm2015/ni-nimble-angular-label-provider-table.mjs +8 -8
- package/fesm2015/ni-nimble-angular-label-provider-table.mjs.map +1 -1
- package/fesm2015/ni-nimble-angular.mjs +63 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular-label-provider-table.mjs +8 -8
- package/fesm2020/ni-nimble-angular-label-provider-table.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +63 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/label-provider/table/nimble-label-provider-table.directive.d.ts +3 -3
- package/package.json +2 -2
|
@@ -45,17 +45,17 @@ class NimbleLabelProviderTableDirective {
|
|
|
45
45
|
set cellActionMenu(value) {
|
|
46
46
|
this.renderer.setProperty(this.elementRef.nativeElement, 'cellActionMenu', value);
|
|
47
47
|
}
|
|
48
|
-
get
|
|
49
|
-
return this.elementRef.nativeElement.
|
|
48
|
+
get columnHeaderGrouped() {
|
|
49
|
+
return this.elementRef.nativeElement.columnHeaderGrouped;
|
|
50
50
|
}
|
|
51
51
|
// Renaming because property should have camel casing, but attribute should not
|
|
52
52
|
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
53
|
-
set
|
|
54
|
-
this.renderer.setProperty(this.elementRef.nativeElement, '
|
|
53
|
+
set columnHeaderGrouped(value) {
|
|
54
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'columnHeaderGrouped', value);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
NimbleLabelProviderTableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleLabelProviderTableDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
58
|
-
NimbleLabelProviderTableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleLabelProviderTableDirective, selector: "nimble-label-provider-table", inputs: { groupCollapse: ["group-collapse", "groupCollapse"], groupExpand: ["group-expand", "groupExpand"], groupsCollapseAll: ["groups-collapse-all", "groupsCollapseAll"], cellActionMenu: ["cell-action-menu", "cellActionMenu"],
|
|
58
|
+
NimbleLabelProviderTableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleLabelProviderTableDirective, selector: "nimble-label-provider-table", inputs: { groupCollapse: ["group-collapse", "groupCollapse"], groupExpand: ["group-expand", "groupExpand"], groupsCollapseAll: ["groups-collapse-all", "groupsCollapseAll"], cellActionMenu: ["cell-action-menu", "cellActionMenu"], columnHeaderGrouped: ["column-header-grouped", "columnHeaderGrouped"] }, ngImport: i0 });
|
|
59
59
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleLabelProviderTableDirective, decorators: [{
|
|
60
60
|
type: Directive,
|
|
61
61
|
args: [{
|
|
@@ -73,9 +73,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
73
73
|
}], cellActionMenu: [{
|
|
74
74
|
type: Input,
|
|
75
75
|
args: ['cell-action-menu']
|
|
76
|
-
}],
|
|
76
|
+
}], columnHeaderGrouped: [{
|
|
77
77
|
type: Input,
|
|
78
|
-
args: ['column-header-grouped
|
|
78
|
+
args: ['column-header-grouped']
|
|
79
79
|
}] } });
|
|
80
80
|
|
|
81
81
|
/**
|
|
@@ -90,7 +90,7 @@ class NimbleLabelProviderTableWithDefaultsDirective {
|
|
|
90
90
|
this.elementRef.nativeElement.groupExpand = $localize `:Nimble table - expand group|:Expand group`;
|
|
91
91
|
this.elementRef.nativeElement.groupsCollapseAll = $localize `:Nimble table - collapse all groups|:Collapse all groups`;
|
|
92
92
|
this.elementRef.nativeElement.cellActionMenu = $localize `:Nimble table - cell action menu|:Options`;
|
|
93
|
-
this.elementRef.nativeElement.
|
|
93
|
+
this.elementRef.nativeElement.columnHeaderGrouped = $localize `:Nimble table - column header grouped indicator|:Grouped`;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
NimbleLabelProviderTableWithDefaultsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleLabelProviderTableWithDefaultsDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ni-nimble-angular-label-provider-table.mjs","sources":["../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table.directive.ts","../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table-with-defaults.directive.ts","../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table.module.ts","../../../../projects/ni/nimble-angular/label-provider/table/ni-nimble-angular-label-provider-table.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { LabelProviderTable } from '@ni/nimble-components/dist/esm/label-provider/table';\n\nexport type { LabelProviderTable };\n\n/**\n * Directive to provide Angular integration for the nimble-table label provider.\n * To use the Nimble-provided strings declared via $localize, instead use NimbleLabelProviderTableWithDefaultsDirective.\n */\n@Directive({\n selector: 'nimble-label-provider-table'\n})\nexport class NimbleLabelProviderTableDirective {\n public constructor(protected readonly renderer: Renderer2, protected readonly elementRef: ElementRef<LabelProviderTable>) {\n }\n\n public get groupCollapse(): string | undefined {\n return this.elementRef.nativeElement.groupCollapse;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('group-collapse') public set groupCollapse(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupCollapse', value);\n }\n\n public get groupExpand(): string | undefined {\n return this.elementRef.nativeElement.groupExpand;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('group-expand') public set groupExpand(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupExpand', value);\n }\n\n public get groupsCollapseAll(): string | undefined {\n return this.elementRef.nativeElement.groupsCollapseAll;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('groups-collapse-all') public set groupsCollapseAll(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupsCollapseAll', value);\n }\n\n public get cellActionMenu(): string | undefined {\n return this.elementRef.nativeElement.cellActionMenu;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('cell-action-menu') public set cellActionMenu(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'cellActionMenu', value);\n }\n\n public get
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-label-provider-table.mjs","sources":["../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table.directive.ts","../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table-with-defaults.directive.ts","../../../../projects/ni/nimble-angular/label-provider/table/nimble-label-provider-table.module.ts","../../../../projects/ni/nimble-angular/label-provider/table/ni-nimble-angular-label-provider-table.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { LabelProviderTable } from '@ni/nimble-components/dist/esm/label-provider/table';\n\nexport type { LabelProviderTable };\n\n/**\n * Directive to provide Angular integration for the nimble-table label provider.\n * To use the Nimble-provided strings declared via $localize, instead use NimbleLabelProviderTableWithDefaultsDirective.\n */\n@Directive({\n selector: 'nimble-label-provider-table'\n})\nexport class NimbleLabelProviderTableDirective {\n public constructor(protected readonly renderer: Renderer2, protected readonly elementRef: ElementRef<LabelProviderTable>) {\n }\n\n public get groupCollapse(): string | undefined {\n return this.elementRef.nativeElement.groupCollapse;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('group-collapse') public set groupCollapse(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupCollapse', value);\n }\n\n public get groupExpand(): string | undefined {\n return this.elementRef.nativeElement.groupExpand;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('group-expand') public set groupExpand(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupExpand', value);\n }\n\n public get groupsCollapseAll(): string | undefined {\n return this.elementRef.nativeElement.groupsCollapseAll;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('groups-collapse-all') public set groupsCollapseAll(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'groupsCollapseAll', value);\n }\n\n public get cellActionMenu(): string | undefined {\n return this.elementRef.nativeElement.cellActionMenu;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('cell-action-menu') public set cellActionMenu(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'cellActionMenu', value);\n }\n\n public get columnHeaderGrouped(): string | undefined {\n return this.elementRef.nativeElement.columnHeaderGrouped;\n }\n\n // Renaming because property should have camel casing, but attribute should not\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('column-header-grouped') public set columnHeaderGrouped(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'columnHeaderGrouped', value);\n }\n}","import { Directive, ElementRef, Renderer2 } from '@angular/core';\nimport type { LabelProviderTable } from '@ni/nimble-components/dist/esm/label-provider/table';\n\nimport '@angular/localize/init';\n\n/**\n * Directive for nimble-label-provider-table which will initialize all of the labels with $localize-tagged strings, for apps\n * using @angular/localize.\n */\n@Directive({\n selector: 'nimble-label-provider-table[withDefaults]'\n})\nexport class NimbleLabelProviderTableWithDefaultsDirective {\n public constructor(protected readonly renderer: Renderer2, protected readonly elementRef: ElementRef<LabelProviderTable>) {\n this.elementRef.nativeElement.groupCollapse = $localize`:Nimble table - collapse group|:Collapse group`;\n this.elementRef.nativeElement.groupExpand = $localize`:Nimble table - expand group|:Expand group`;\n this.elementRef.nativeElement.groupsCollapseAll = $localize`:Nimble table - collapse all groups|:Collapse all groups`;\n this.elementRef.nativeElement.cellActionMenu = $localize`:Nimble table - cell action menu|:Options`;\n this.elementRef.nativeElement.columnHeaderGrouped = $localize`:Nimble table - column header grouped indicator|:Grouped`;\n }\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleLabelProviderTableDirective } from './nimble-label-provider-table.directive';\nimport { NimbleLabelProviderTableWithDefaultsDirective } from './nimble-label-provider-table-with-defaults.directive';\n\nimport '@ni/nimble-components/dist/esm/label-provider/table';\n\n@NgModule({\n declarations: [NimbleLabelProviderTableDirective, NimbleLabelProviderTableWithDefaultsDirective],\n imports: [\n CommonModule\n ],\n exports: [NimbleLabelProviderTableDirective, NimbleLabelProviderTableWithDefaultsDirective]\n})\nexport class NimbleLabelProviderTableModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -118,6 +118,7 @@ export { iconHammerTag } from '@ni/nimble-components/dist/esm/icons/hammer';
|
|
|
118
118
|
export { iconHashtagTag } from '@ni/nimble-components/dist/esm/icons/hashtag';
|
|
119
119
|
export { iconHomeTag } from '@ni/nimble-components/dist/esm/icons/home';
|
|
120
120
|
export { iconHourglassTag } from '@ni/nimble-components/dist/esm/icons/hourglass';
|
|
121
|
+
export { iconIndentTag } from '@ni/nimble-components/dist/esm/icons/indent';
|
|
121
122
|
export { iconIndeterminantCheckboxTag } from '@ni/nimble-components/dist/esm/icons/indeterminant-checkbox';
|
|
122
123
|
export { iconInfoTag } from '@ni/nimble-components/dist/esm/icons/info';
|
|
123
124
|
export { iconInfoCircleTag } from '@ni/nimble-components/dist/esm/icons/info-circle';
|
|
@@ -139,6 +140,7 @@ export { iconMinusWideTag } from '@ni/nimble-components/dist/esm/icons/minus-wid
|
|
|
139
140
|
export { iconMobileTag } from '@ni/nimble-components/dist/esm/icons/mobile';
|
|
140
141
|
export { iconNotebookTag } from '@ni/nimble-components/dist/esm/icons/notebook';
|
|
141
142
|
export { iconNumberListTag } from '@ni/nimble-components/dist/esm/icons/number-list';
|
|
143
|
+
export { iconOutdentTag } from '@ni/nimble-components/dist/esm/icons/outdent';
|
|
142
144
|
export { iconPasteTag } from '@ni/nimble-components/dist/esm/icons/paste';
|
|
143
145
|
export { iconPencilTag } from '@ni/nimble-components/dist/esm/icons/pencil';
|
|
144
146
|
export { iconPotWithLidTag } from '@ni/nimble-components/dist/esm/icons/pot-with-lid';
|
|
@@ -4496,6 +4498,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
4496
4498
|
}]
|
|
4497
4499
|
}] });
|
|
4498
4500
|
|
|
4501
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
4502
|
+
/**
|
|
4503
|
+
* Directive to provide Angular integration for the indent icon element.
|
|
4504
|
+
*/
|
|
4505
|
+
class NimbleIconIndentDirective extends NimbleIconBaseDirective {
|
|
4506
|
+
}
|
|
4507
|
+
NimbleIconIndentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4508
|
+
NimbleIconIndentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleIconIndentDirective, selector: "nimble-icon-indent", usesInheritance: true, ngImport: i0 });
|
|
4509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentDirective, decorators: [{
|
|
4510
|
+
type: Directive,
|
|
4511
|
+
args: [{
|
|
4512
|
+
selector: 'nimble-icon-indent'
|
|
4513
|
+
}]
|
|
4514
|
+
}] });
|
|
4515
|
+
|
|
4516
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
4517
|
+
class NimbleIconIndentModule {
|
|
4518
|
+
}
|
|
4519
|
+
NimbleIconIndentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4520
|
+
NimbleIconIndentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentModule, declarations: [NimbleIconIndentDirective], imports: [CommonModule], exports: [NimbleIconIndentDirective] });
|
|
4521
|
+
NimbleIconIndentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentModule, imports: [CommonModule] });
|
|
4522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconIndentModule, decorators: [{
|
|
4523
|
+
type: NgModule,
|
|
4524
|
+
args: [{
|
|
4525
|
+
declarations: [NimbleIconIndentDirective],
|
|
4526
|
+
imports: [CommonModule],
|
|
4527
|
+
exports: [NimbleIconIndentDirective]
|
|
4528
|
+
}]
|
|
4529
|
+
}] });
|
|
4530
|
+
|
|
4499
4531
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
4500
4532
|
/**
|
|
4501
4533
|
* Directive to provide Angular integration for the indeterminantCheckbox icon element.
|
|
@@ -5126,6 +5158,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
5126
5158
|
}]
|
|
5127
5159
|
}] });
|
|
5128
5160
|
|
|
5161
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
5162
|
+
/**
|
|
5163
|
+
* Directive to provide Angular integration for the outdent icon element.
|
|
5164
|
+
*/
|
|
5165
|
+
class NimbleIconOutdentDirective extends NimbleIconBaseDirective {
|
|
5166
|
+
}
|
|
5167
|
+
NimbleIconOutdentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
5168
|
+
NimbleIconOutdentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: NimbleIconOutdentDirective, selector: "nimble-icon-outdent", usesInheritance: true, ngImport: i0 });
|
|
5169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentDirective, decorators: [{
|
|
5170
|
+
type: Directive,
|
|
5171
|
+
args: [{
|
|
5172
|
+
selector: 'nimble-icon-outdent'
|
|
5173
|
+
}]
|
|
5174
|
+
}] });
|
|
5175
|
+
|
|
5176
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
5177
|
+
class NimbleIconOutdentModule {
|
|
5178
|
+
}
|
|
5179
|
+
NimbleIconOutdentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5180
|
+
NimbleIconOutdentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentModule, declarations: [NimbleIconOutdentDirective], imports: [CommonModule], exports: [NimbleIconOutdentDirective] });
|
|
5181
|
+
NimbleIconOutdentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentModule, imports: [CommonModule] });
|
|
5182
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NimbleIconOutdentModule, decorators: [{
|
|
5183
|
+
type: NgModule,
|
|
5184
|
+
args: [{
|
|
5185
|
+
declarations: [NimbleIconOutdentDirective],
|
|
5186
|
+
imports: [CommonModule],
|
|
5187
|
+
exports: [NimbleIconOutdentDirective]
|
|
5188
|
+
}]
|
|
5189
|
+
}] });
|
|
5190
|
+
|
|
5129
5191
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
5130
5192
|
/**
|
|
5131
5193
|
* Directive to provide Angular integration for the paste icon element.
|
|
@@ -8638,5 +8700,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
8638
8700
|
* Generated bundle index. Do not edit.
|
|
8639
8701
|
*/
|
|
8640
8702
|
|
|
8641
|
-
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, NimbleIconBoldBDirective, NimbleIconBoldBModule, 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, 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, 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, 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, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, 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, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, 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, 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 };
|
|
8703
|
+
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, NimbleIconBoldBDirective, NimbleIconBoldBModule, 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, 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, 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, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, 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, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, 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, 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 };
|
|
8642
8704
|
//# sourceMappingURL=ni-nimble-angular.mjs.map
|