@ni/nimble-angular 33.1.2 → 33.1.4
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/anchor-step/index.d.ts +34 -5
- package/fesm2022/ni-nimble-angular-anchor-step.mjs +59 -7
- package/fesm2022/ni-nimble-angular-anchor-step.mjs.map +1 -1
- package/fesm2022/ni-nimble-angular-step.mjs +5 -2
- package/fesm2022/ni-nimble-angular-step.mjs.map +1 -1
- package/fesm2022/ni-nimble-angular.mjs +77 -5
- package/fesm2022/ni-nimble-angular.mjs.map +1 -1
- package/index.d.ts +42 -15
- package/package.json +2 -6
- package/step/index.d.ts +1 -1
- package/anchor-base/index.d.ts +0 -30
- package/fesm2022/ni-nimble-angular-anchor-base.mjs +0 -80
- package/fesm2022/ni-nimble-angular-anchor-base.mjs.map +0 -1
package/anchor-step/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NimbleAnchorBaseDirective, DisableableRouterLinkWithHrefDirective } from '@ni/nimble-angular';
|
|
1
2
|
import * as i0 from '@angular/core';
|
|
2
3
|
import { Renderer2, ElementRef } from '@angular/core';
|
|
3
4
|
import { AnchorStep } from '@ni/nimble-components/dist/esm/anchor-step';
|
|
@@ -5,8 +6,7 @@ export { AnchorStep, anchorStepTag } from '@ni/nimble-components/dist/esm/anchor
|
|
|
5
6
|
import { AnchorStepSeverity } from '@ni/nimble-components/dist/esm/anchor-step/types';
|
|
6
7
|
export { AnchorStepSeverity } from '@ni/nimble-components/dist/esm/anchor-step/types';
|
|
7
8
|
import { BooleanValueOrAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
8
|
-
import
|
|
9
|
-
import * as i2 from '@angular/common';
|
|
9
|
+
import * as i4 from '@angular/common';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Directive to provide Angular integration for the anchor step element.
|
|
@@ -24,13 +24,42 @@ declare class NimbleAnchorStepDirective extends NimbleAnchorBaseDirective<Anchor
|
|
|
24
24
|
set selected(value: BooleanValueOrAttribute);
|
|
25
25
|
constructor(renderer: Renderer2, elementRef: ElementRef<AnchorStep>);
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorStepDirective, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorStepDirective, "nimble-anchor-step", never, { "severity": { "alias": "severity"; "required": false; }; "severityText": { "alias": "severity-text"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorStepDirective, "nimble-anchor-step", never, { "severity": { "alias": "severity"; "required": false; }; "severityText": { "alias": "severity-text"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readonly"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
32
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
33
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
34
|
+
*
|
|
35
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
36
|
+
*/
|
|
37
|
+
/**
|
|
38
|
+
* Directive to handle nimble-anchor-step RouterLink support.
|
|
39
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
40
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
41
|
+
*/
|
|
42
|
+
declare class NimbleAnchorStepRouterLinkWithHrefDirective extends DisableableRouterLinkWithHrefDirective<AnchorStep> {
|
|
43
|
+
set nimbleRouterLink(commands: never[] | string | null | undefined);
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorStepRouterLinkWithHrefDirective, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorStepRouterLinkWithHrefDirective, "nimble-anchor-step[nimbleRouterLink]", never, { "nimbleRouterLink": { "alias": "nimbleRouterLink"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorStepRouterLinkWithHrefDirective.
|
|
50
|
+
*
|
|
51
|
+
* @see NimbleAnchorStepRouterLinkWithHrefDirective
|
|
52
|
+
*/
|
|
53
|
+
declare class NimbleAnchorStepRouterLinkDirective {
|
|
54
|
+
constructor();
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorStepRouterLinkDirective, never>;
|
|
56
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorStepRouterLinkDirective, "nimble-anchor-step[routerLink]", never, {}, {}, never, never, false, never>;
|
|
28
57
|
}
|
|
29
58
|
|
|
30
59
|
declare class NimbleAnchorStepModule {
|
|
31
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorStepModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleAnchorStepModule, [typeof NimbleAnchorStepDirective], [typeof
|
|
61
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleAnchorStepModule, [typeof NimbleAnchorStepDirective, typeof NimbleAnchorStepRouterLinkDirective, typeof NimbleAnchorStepRouterLinkWithHrefDirective], [typeof i4.CommonModule], [typeof NimbleAnchorStepDirective, typeof NimbleAnchorStepRouterLinkDirective, typeof NimbleAnchorStepRouterLinkWithHrefDirective]>;
|
|
33
62
|
static ɵinj: i0.ɵɵInjectorDeclaration<NimbleAnchorStepModule>;
|
|
34
63
|
}
|
|
35
64
|
|
|
36
|
-
export { NimbleAnchorStepDirective, NimbleAnchorStepModule };
|
|
65
|
+
export { NimbleAnchorStepDirective, NimbleAnchorStepModule, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective };
|
|
@@ -1,11 +1,60 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Input, Directive, NgModule } from '@angular/core';
|
|
3
|
+
import { DisableableRouterLinkWithHrefDirective, NimbleAnchorBaseDirective } from '@ni/nimble-angular';
|
|
3
4
|
export { anchorStepTag } from '@ni/nimble-components/dist/esm/anchor-step';
|
|
4
5
|
export { AnchorStepSeverity } from '@ni/nimble-components/dist/esm/anchor-step/types';
|
|
5
6
|
import { toBooleanProperty } from '@ni/nimble-angular/internal-utilities';
|
|
6
|
-
import { NimbleAnchorBaseDirective } from '@ni/nimble-angular/anchor-base';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
11
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
12
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
13
|
+
*
|
|
14
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
15
|
+
*/
|
|
16
|
+
/**
|
|
17
|
+
* Directive to handle nimble-anchor-step RouterLink support.
|
|
18
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
19
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
20
|
+
*/
|
|
21
|
+
class NimbleAnchorStepRouterLinkWithHrefDirective extends DisableableRouterLinkWithHrefDirective {
|
|
22
|
+
set nimbleRouterLink(commands) {
|
|
23
|
+
this.routerLink = commands;
|
|
24
|
+
}
|
|
25
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
26
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorStepRouterLinkWithHrefDirective, isStandalone: false, selector: "nimble-anchor-step[nimbleRouterLink]", inputs: { nimbleRouterLink: "nimbleRouterLink" }, usesInheritance: true, ngImport: i0 }); }
|
|
27
|
+
}
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepRouterLinkWithHrefDirective, decorators: [{
|
|
29
|
+
type: Directive,
|
|
30
|
+
args: [{
|
|
31
|
+
selector: 'nimble-anchor-step[nimbleRouterLink]',
|
|
32
|
+
standalone: false
|
|
33
|
+
}]
|
|
34
|
+
}], propDecorators: { nimbleRouterLink: [{
|
|
35
|
+
type: Input
|
|
36
|
+
}] } });
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorStepRouterLinkWithHrefDirective.
|
|
40
|
+
*
|
|
41
|
+
* @see NimbleAnchorStepRouterLinkWithHrefDirective
|
|
42
|
+
*/
|
|
43
|
+
class NimbleAnchorStepRouterLinkDirective {
|
|
44
|
+
constructor() {
|
|
45
|
+
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
46
|
+
}
|
|
47
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
48
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorStepRouterLinkDirective, isStandalone: false, selector: "nimble-anchor-step[routerLink]", ngImport: i0 }); }
|
|
49
|
+
}
|
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepRouterLinkDirective, decorators: [{
|
|
51
|
+
type: Directive,
|
|
52
|
+
args: [{
|
|
53
|
+
selector: 'nimble-anchor-step[routerLink]',
|
|
54
|
+
standalone: false
|
|
55
|
+
}]
|
|
56
|
+
}], ctorParameters: () => [] });
|
|
57
|
+
|
|
9
58
|
/**
|
|
10
59
|
* Directive to provide Angular integration for the anchor step element.
|
|
11
60
|
*/
|
|
@@ -31,6 +80,8 @@ class NimbleAnchorStepDirective extends NimbleAnchorBaseDirective {
|
|
|
31
80
|
get readOnly() {
|
|
32
81
|
return this.elementRef.nativeElement.readOnly;
|
|
33
82
|
}
|
|
83
|
+
// readOnly property maps to the readonly attribute
|
|
84
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly
|
|
34
85
|
set readOnly(value) {
|
|
35
86
|
this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));
|
|
36
87
|
}
|
|
@@ -44,7 +95,7 @@ class NimbleAnchorStepDirective extends NimbleAnchorBaseDirective {
|
|
|
44
95
|
super(renderer, elementRef);
|
|
45
96
|
}
|
|
46
97
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
47
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorStepDirective, isStandalone: false, selector: "nimble-anchor-step", inputs: { severity: "severity", severityText: ["severity-text", "severityText"], disabled: "disabled", readOnly: "readOnly", selected: "selected" }, usesInheritance: true, ngImport: i0 }); }
|
|
98
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorStepDirective, isStandalone: false, selector: "nimble-anchor-step", inputs: { severity: "severity", severityText: ["severity-text", "severityText"], disabled: "disabled", readOnly: ["readonly", "readOnly"], selected: "selected" }, usesInheritance: true, ngImport: i0 }); }
|
|
48
99
|
}
|
|
49
100
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepDirective, decorators: [{
|
|
50
101
|
type: Directive,
|
|
@@ -60,22 +111,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
60
111
|
}], disabled: [{
|
|
61
112
|
type: Input
|
|
62
113
|
}], readOnly: [{
|
|
63
|
-
type: Input
|
|
114
|
+
type: Input,
|
|
115
|
+
args: ['readonly']
|
|
64
116
|
}], selected: [{
|
|
65
117
|
type: Input
|
|
66
118
|
}] } });
|
|
67
119
|
|
|
68
120
|
class NimbleAnchorStepModule {
|
|
69
121
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
70
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepModule, declarations: [NimbleAnchorStepDirective], imports: [CommonModule], exports: [NimbleAnchorStepDirective] }); }
|
|
122
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepModule, declarations: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective] }); }
|
|
71
123
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepModule, imports: [CommonModule] }); }
|
|
72
124
|
}
|
|
73
125
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorStepModule, decorators: [{
|
|
74
126
|
type: NgModule,
|
|
75
127
|
args: [{
|
|
76
|
-
declarations: [NimbleAnchorStepDirective],
|
|
128
|
+
declarations: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective],
|
|
77
129
|
imports: [CommonModule],
|
|
78
|
-
exports: [NimbleAnchorStepDirective]
|
|
130
|
+
exports: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective]
|
|
79
131
|
}]
|
|
80
132
|
}] });
|
|
81
133
|
|
|
@@ -83,5 +135,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
83
135
|
* Generated bundle index. Do not edit.
|
|
84
136
|
*/
|
|
85
137
|
|
|
86
|
-
export { NimbleAnchorStepDirective, NimbleAnchorStepModule };
|
|
138
|
+
export { NimbleAnchorStepDirective, NimbleAnchorStepModule, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective };
|
|
87
139
|
//# sourceMappingURL=ni-nimble-angular-anchor-step.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ni-nimble-angular-anchor-step.mjs","sources":["../../../nimble-angular/anchor-step/nimble-anchor-step.directive.ts","../../../nimble-angular/anchor-step/nimble-anchor-step.module.ts","../../../nimble-angular/anchor-step/ni-nimble-angular-anchor-step.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { type AnchorStep, anchorStepTag } from '@ni/nimble-components/dist/esm/anchor-step';\nimport { AnchorStepSeverity } from '@ni/nimble-components/dist/esm/anchor-step/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\nimport { NimbleAnchorBaseDirective } from '@ni/nimble-angular
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-anchor-step.mjs","sources":["../../../nimble-angular/anchor-step/nimble-anchor-step-router-link-with-href.directive.ts","../../../nimble-angular/anchor-step/nimble-anchor-step-router-link.directive.ts","../../../nimble-angular/anchor-step/nimble-anchor-step.directive.ts","../../../nimble-angular/anchor-step/nimble-anchor-step.module.ts","../../../nimble-angular/anchor-step/ni-nimble-angular-anchor-step.ts"],"sourcesContent":["import { Directive, Input } from '@angular/core';\nimport { DisableableRouterLinkWithHrefDirective } from '@ni/nimble-angular';\nimport type { AnchorStep } from './nimble-anchor-step.directive';\n\n/**\n * Selectors used for built-in Angular RouterLink directives:\n * RouterLink: ':not(a):not(area)[routerLink]'\n * RouterLinkWithHref: 'a[routerLink],area[routerLink]'\n *\n * See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts\n */\n\n/**\n * Directive to handle nimble-anchor-step RouterLink support.\n * Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there\n * won't also be an active RouterLink directive incorrectly handling navigation.\n */\n@Directive({\n selector: 'nimble-anchor-step[nimbleRouterLink]',\n standalone: false\n})\nexport class NimbleAnchorStepRouterLinkWithHrefDirective extends DisableableRouterLinkWithHrefDirective<AnchorStep> {\n @Input()\n public set nimbleRouterLink(commands: never[] | string | null | undefined) {\n this.routerLink = commands;\n }\n}\n","import { Directive } from '@angular/core';\n\n/**\n * Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorStepRouterLinkWithHrefDirective.\n *\n * @see NimbleAnchorStepRouterLinkWithHrefDirective\n */\n@Directive({\n selector: 'nimble-anchor-step[routerLink]',\n standalone: false\n})\nexport class NimbleAnchorStepRouterLinkDirective {\n public constructor() {\n throw new Error('Use [nimbleRouterLink] instead of [routerLink].');\n }\n}\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { type AnchorStep, anchorStepTag } from '@ni/nimble-components/dist/esm/anchor-step';\nimport { AnchorStepSeverity } from '@ni/nimble-components/dist/esm/anchor-step/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\nimport { NimbleAnchorBaseDirective } from '@ni/nimble-angular';\n\nexport type { AnchorStep };\nexport { anchorStepTag };\nexport { AnchorStepSeverity };\n\n/**\n * Directive to provide Angular integration for the anchor step element.\n */\n@Directive({\n selector: 'nimble-anchor-step',\n standalone: false\n})\nexport class NimbleAnchorStepDirective extends NimbleAnchorBaseDirective<AnchorStep> {\n public get severity(): AnchorStepSeverity {\n return this.elementRef.nativeElement.severity;\n }\n\n @Input() public set severity(value: AnchorStepSeverity) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severity', value);\n }\n\n public get severityText(): string | undefined {\n return this.elementRef.nativeElement.severityText;\n }\n\n @Input('severity-text') public set severityText(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severityText', value);\n }\n\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input() public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n }\n\n public constructor(renderer: Renderer2, elementRef: ElementRef<AnchorStep>) {\n super(renderer, elementRef);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleAnchorStepDirective } from './nimble-anchor-step.directive';\nimport { NimbleAnchorStepRouterLinkDirective } from './nimble-anchor-step-router-link.directive';\nimport { NimbleAnchorStepRouterLinkWithHrefDirective } from './nimble-anchor-step-router-link-with-href.directive';\n\nimport '@ni/nimble-components/dist/esm/anchor-step';\n\n@NgModule({\n declarations: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective],\n imports: [CommonModule],\n exports: [NimbleAnchorStepDirective, NimbleAnchorStepRouterLinkDirective, NimbleAnchorStepRouterLinkWithHrefDirective]\n})\nexport class NimbleAnchorStepModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -30,6 +30,8 @@ class NimbleStepDirective {
|
|
|
30
30
|
get readOnly() {
|
|
31
31
|
return this.elementRef.nativeElement.readOnly;
|
|
32
32
|
}
|
|
33
|
+
// readOnly property maps to the readonly attribute
|
|
34
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly
|
|
33
35
|
set readOnly(value) {
|
|
34
36
|
this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));
|
|
35
37
|
}
|
|
@@ -44,7 +46,7 @@ class NimbleStepDirective {
|
|
|
44
46
|
this.elementRef = elementRef;
|
|
45
47
|
}
|
|
46
48
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleStepDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
47
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleStepDirective, isStandalone: false, selector: "nimble-step", inputs: { severity: "severity", severityText: ["severity-text", "severityText"], disabled: "disabled", readOnly: "readOnly", selected: "selected" }, ngImport: i0 }); }
|
|
49
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleStepDirective, isStandalone: false, selector: "nimble-step", inputs: { severity: "severity", severityText: ["severity-text", "severityText"], disabled: "disabled", readOnly: ["readonly", "readOnly"], selected: "selected" }, ngImport: i0 }); }
|
|
48
50
|
}
|
|
49
51
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleStepDirective, decorators: [{
|
|
50
52
|
type: Directive,
|
|
@@ -60,7 +62,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
60
62
|
}], disabled: [{
|
|
61
63
|
type: Input
|
|
62
64
|
}], readOnly: [{
|
|
63
|
-
type: Input
|
|
65
|
+
type: Input,
|
|
66
|
+
args: ['readonly']
|
|
64
67
|
}], selected: [{
|
|
65
68
|
type: Input
|
|
66
69
|
}] } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ni-nimble-angular-step.mjs","sources":["../../../nimble-angular/step/nimble-step.directive.ts","../../../nimble-angular/step/nimble-step.module.ts","../../../nimble-angular/step/ni-nimble-angular-step.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { type Step, stepTag } from '@ni/nimble-components/dist/esm/step';\nimport { StepSeverity } from '@ni/nimble-components/dist/esm/step/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { Step };\nexport { stepTag };\nexport { StepSeverity };\n\n/**\n * Directive to provide Angular integration for the step element.\n */\n@Directive({\n selector: 'nimble-step',\n standalone: false\n})\nexport class NimbleStepDirective {\n public get severity(): StepSeverity {\n return this.elementRef.nativeElement.severity;\n }\n\n @Input() public set severity(value: StepSeverity) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severity', value);\n }\n\n public get severityText(): string | undefined {\n return this.elementRef.nativeElement.severityText;\n }\n\n @Input('severity-text') public set severityText(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severityText', value);\n }\n\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n @Input() public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input() public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Step>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleStepDirective } from './nimble-step.directive';\n\nimport '@ni/nimble-components/dist/esm/step';\n\n@NgModule({\n declarations: [NimbleStepDirective],\n imports: [CommonModule],\n exports: [NimbleStepDirective]\n})\nexport class NimbleStepModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;AASA;;AAEG;MAKU,mBAAmB,CAAA;AAC5B,IAAA,IAAW,QAAQ,GAAA;AACf,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;IACjD;IAEA,IAAoB,QAAQ,CAAC,KAAmB,EAAA;AAC5C,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,UAAU,EAAE,KAAK,CAAC;IAC/E;AAEA,IAAA,IAAW,YAAY,GAAA;AACnB,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY;IACrD;IAEA,IAAmC,YAAY,CAAC,KAAyB,EAAA;AACrE,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE,KAAK,CAAC;IACnF;AAEA,IAAA,IAAW,QAAQ,GAAA;AACf,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;IACjD;IAEA,IAAoB,QAAQ,CAAC,KAA8B,EAAA;AACvD,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,UAAU,EAAE,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAClG;AAEA,IAAA,IAAW,QAAQ,GAAA;AACf,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;IACjD
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-step.mjs","sources":["../../../nimble-angular/step/nimble-step.directive.ts","../../../nimble-angular/step/nimble-step.module.ts","../../../nimble-angular/step/ni-nimble-angular-step.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { type Step, stepTag } from '@ni/nimble-components/dist/esm/step';\nimport { StepSeverity } from '@ni/nimble-components/dist/esm/step/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { Step };\nexport { stepTag };\nexport { StepSeverity };\n\n/**\n * Directive to provide Angular integration for the step element.\n */\n@Directive({\n selector: 'nimble-step',\n standalone: false\n})\nexport class NimbleStepDirective {\n public get severity(): StepSeverity {\n return this.elementRef.nativeElement.severity;\n }\n\n @Input() public set severity(value: StepSeverity) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severity', value);\n }\n\n public get severityText(): string | undefined {\n return this.elementRef.nativeElement.severityText;\n }\n\n @Input('severity-text') public set severityText(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severityText', value);\n }\n\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input() public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Step>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleStepDirective } from './nimble-step.directive';\n\nimport '@ni/nimble-components/dist/esm/step';\n\n@NgModule({\n declarations: [NimbleStepDirective],\n imports: [CommonModule],\n exports: [NimbleStepDirective]\n})\nexport class NimbleStepModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -8,7 +8,6 @@ import { UrlTree, ROUTER_CONFIGURATION, NavigationEnd, Router, ActivatedRoute }
|
|
|
8
8
|
export { anchorTag } from '@ni/nimble-components/dist/esm/anchor';
|
|
9
9
|
export { AnchorAppearance } from '@ni/nimble-components/dist/esm/anchor/types';
|
|
10
10
|
import { toBooleanProperty, toNumberProperty, toBooleanAriaAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
11
|
-
import { NimbleAnchorBaseDirective } from '@ni/nimble-angular/anchor-base';
|
|
12
11
|
export { anchorButtonTag } from '@ni/nimble-components/dist/esm/anchor-button';
|
|
13
12
|
export { anchorMenuItemTag } from '@ni/nimble-components/dist/esm/anchor-menu-item';
|
|
14
13
|
export { anchorTabTag } from '@ni/nimble-components/dist/esm/anchor-tab';
|
|
@@ -775,6 +774,78 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
775
774
|
}]
|
|
776
775
|
}], ctorParameters: () => [] });
|
|
777
776
|
|
|
777
|
+
/**
|
|
778
|
+
* Base class for directives providing link attributes.
|
|
779
|
+
* @internal
|
|
780
|
+
*/
|
|
781
|
+
class NimbleAnchorBaseDirective {
|
|
782
|
+
get href() {
|
|
783
|
+
return this.elementRef.nativeElement.href;
|
|
784
|
+
}
|
|
785
|
+
set href(value) {
|
|
786
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'href', value);
|
|
787
|
+
}
|
|
788
|
+
get hreflang() {
|
|
789
|
+
return this.elementRef.nativeElement.hreflang;
|
|
790
|
+
}
|
|
791
|
+
set hreflang(value) {
|
|
792
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'hreflang', value);
|
|
793
|
+
}
|
|
794
|
+
get ping() {
|
|
795
|
+
return this.elementRef.nativeElement.ping;
|
|
796
|
+
}
|
|
797
|
+
set ping(value) {
|
|
798
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'ping', value);
|
|
799
|
+
}
|
|
800
|
+
get referrerpolicy() {
|
|
801
|
+
return this.elementRef.nativeElement.referrerpolicy;
|
|
802
|
+
}
|
|
803
|
+
set referrerpolicy(value) {
|
|
804
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'referrerpolicy', value);
|
|
805
|
+
}
|
|
806
|
+
get rel() {
|
|
807
|
+
return this.elementRef.nativeElement.rel;
|
|
808
|
+
}
|
|
809
|
+
set rel(value) {
|
|
810
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'rel', value);
|
|
811
|
+
}
|
|
812
|
+
get target() {
|
|
813
|
+
return this.elementRef.nativeElement.target;
|
|
814
|
+
}
|
|
815
|
+
set target(value) {
|
|
816
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'target', value);
|
|
817
|
+
}
|
|
818
|
+
get type() {
|
|
819
|
+
return this.elementRef.nativeElement.type;
|
|
820
|
+
}
|
|
821
|
+
set type(value) {
|
|
822
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);
|
|
823
|
+
}
|
|
824
|
+
constructor(renderer, elementRef) {
|
|
825
|
+
this.renderer = renderer;
|
|
826
|
+
this.elementRef = elementRef;
|
|
827
|
+
}
|
|
828
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorBaseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
829
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorBaseDirective, isStandalone: true, inputs: { href: "href", hreflang: "hreflang", ping: "ping", referrerpolicy: "referrerpolicy", rel: "rel", target: "target", type: "type" }, ngImport: i0 }); }
|
|
830
|
+
}
|
|
831
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorBaseDirective, decorators: [{
|
|
832
|
+
type: Directive
|
|
833
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { href: [{
|
|
834
|
+
type: Input
|
|
835
|
+
}], hreflang: [{
|
|
836
|
+
type: Input
|
|
837
|
+
}], ping: [{
|
|
838
|
+
type: Input
|
|
839
|
+
}], referrerpolicy: [{
|
|
840
|
+
type: Input
|
|
841
|
+
}], rel: [{
|
|
842
|
+
type: Input
|
|
843
|
+
}], target: [{
|
|
844
|
+
type: Input
|
|
845
|
+
}], type: [{
|
|
846
|
+
type: Input
|
|
847
|
+
}] } });
|
|
848
|
+
|
|
778
849
|
/**
|
|
779
850
|
* Directive to provide Angular integration for the anchor.
|
|
780
851
|
*/
|
|
@@ -835,6 +906,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
835
906
|
|
|
836
907
|
/**
|
|
837
908
|
* Base class for Nimble router link directives that go on disableable elements
|
|
909
|
+
* @internal
|
|
838
910
|
*/
|
|
839
911
|
class DisableableRouterLinkWithHrefDirective extends RouterLink {
|
|
840
912
|
constructor(router, route, renderer, elementRef, locationStrategy) {
|
|
@@ -11081,7 +11153,7 @@ class NimbleNumberFieldDirective {
|
|
|
11081
11153
|
return this.elementRef.nativeElement.readOnly;
|
|
11082
11154
|
}
|
|
11083
11155
|
// readOnly property maps to the readonly attribute
|
|
11084
|
-
// https://
|
|
11156
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly
|
|
11085
11157
|
set readOnly(value) {
|
|
11086
11158
|
this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));
|
|
11087
11159
|
}
|
|
@@ -12218,7 +12290,7 @@ class NimbleTextAreaDirective {
|
|
|
12218
12290
|
return this.elementRef.nativeElement.readOnly;
|
|
12219
12291
|
}
|
|
12220
12292
|
// readOnly property maps to the readonly attribute
|
|
12221
|
-
//
|
|
12293
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly
|
|
12222
12294
|
set readOnly(value) {
|
|
12223
12295
|
this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));
|
|
12224
12296
|
}
|
|
@@ -12432,7 +12504,7 @@ class NimbleTextFieldDirective {
|
|
|
12432
12504
|
return this.elementRef.nativeElement.readOnly;
|
|
12433
12505
|
}
|
|
12434
12506
|
// readOnly property maps to the readonly attribute
|
|
12435
|
-
//
|
|
12507
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/readOnly
|
|
12436
12508
|
set readOnly(value) {
|
|
12437
12509
|
this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));
|
|
12438
12510
|
}
|
|
@@ -12981,5 +13053,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
12981
13053
|
* Generated bundle index. Do not edit.
|
|
12982
13054
|
*/
|
|
12983
13055
|
|
|
12984
|
-
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, NimbleIconForkliftDirective, NimbleIconForkliftModule, 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, NimbleIconUserHelmetSafetyDirective, NimbleIconUserHelmetSafetyModule, 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 };
|
|
13056
|
+
export { DisableableRouterLinkWithHrefDirective, NimbleAnchorBaseDirective, 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, NimbleIconForkliftDirective, NimbleIconForkliftModule, 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, NimbleIconUserHelmetSafetyDirective, NimbleIconUserHelmetSafetyModule, 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 };
|
|
12985
13057
|
//# sourceMappingURL=ni-nimble-angular.mjs.map
|