@ni/nimble-angular 32.0.1 → 32.1.0
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/chip/index.d.ts +5 -0
- package/chip/nimble-chip.directive.d.ts +24 -0
- package/chip/nimble-chip.module.d.ts +9 -0
- package/chip/public-api.d.ts +2 -0
- package/chip/testing/chip.pageobject.d.ts +2 -0
- package/chip/testing/index.d.ts +5 -0
- package/chip/testing/public-api.d.ts +1 -0
- package/fesm2022/ni-nimble-angular-card.mjs +7 -7
- package/fesm2022/ni-nimble-angular-chip-testing.mjs +6 -0
- package/fesm2022/ni-nimble-angular-chip-testing.mjs.map +1 -0
- package/fesm2022/ni-nimble-angular-chip.mjs +70 -0
- package/fesm2022/ni-nimble-angular-chip.mjs.map +1 -0
- package/fesm2022/ni-nimble-angular-label-provider-core.mjs +10 -10
- package/fesm2022/ni-nimble-angular-label-provider-rich-text.mjs +10 -10
- package/fesm2022/ni-nimble-angular-label-provider-table.mjs +10 -10
- package/fesm2022/ni-nimble-angular-mapping-base.mjs +3 -3
- package/fesm2022/ni-nimble-angular-mapping-empty.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-icon.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-spinner.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-mapping-user.mjs +7 -7
- package/fesm2022/ni-nimble-angular-pipes.mjs +9 -9
- package/fesm2022/ni-nimble-angular-rich-text-editor.mjs +7 -7
- package/fesm2022/ni-nimble-angular-rich-text-mention-users.mjs +7 -7
- package/fesm2022/ni-nimble-angular-rich-text-mention.mjs +3 -3
- package/fesm2022/ni-nimble-angular-rich-text-viewer.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-anchor.mjs +10 -10
- package/fesm2022/ni-nimble-angular-table-column-date-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-duration-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-mapping.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-menu-button.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-number-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column-text.mjs +7 -7
- package/fesm2022/ni-nimble-angular-table-column.mjs +3 -3
- package/fesm2022/ni-nimble-angular-table.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-byte.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-celsius.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-fahrenheit.mjs +7 -7
- package/fesm2022/ni-nimble-angular-unit-volt.mjs +7 -7
- package/fesm2022/ni-nimble-angular.mjs +2005 -2005
- package/package.json +30 -21
package/chip/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { type Chip, chipTag } from '@ni/nimble-components/dist/esm/chip';
|
|
3
|
+
import { ChipAppearance } from '@ni/nimble-components/dist/esm/chip/types';
|
|
4
|
+
import { type BooleanValueOrAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export type { Chip };
|
|
7
|
+
export { chipTag };
|
|
8
|
+
export { ChipAppearance };
|
|
9
|
+
/**
|
|
10
|
+
* Directive to provide Angular integration for the chip.
|
|
11
|
+
*/
|
|
12
|
+
export declare class NimbleChipDirective {
|
|
13
|
+
private readonly renderer;
|
|
14
|
+
private readonly elementRef;
|
|
15
|
+
get removable(): boolean;
|
|
16
|
+
set removable(value: BooleanValueOrAttribute);
|
|
17
|
+
get disabled(): boolean;
|
|
18
|
+
set disabled(value: BooleanValueOrAttribute);
|
|
19
|
+
get appearance(): ChipAppearance;
|
|
20
|
+
set appearance(value: ChipAppearance);
|
|
21
|
+
constructor(renderer: Renderer2, elementRef: ElementRef<Chip>);
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleChipDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleChipDirective, "nimble-chip", never, { "removable": { "alias": "removable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import '@ni/nimble-components/dist/esm/chip';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./nimble-chip.directive";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
export declare class NimbleChipModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleChipModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleChipModule, [typeof i1.NimbleChipDirective], [typeof i2.CommonModule], [typeof i1.NimbleChipDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NimbleChipModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ChipPageObject } from './chip.pageobject';
|
|
@@ -7,10 +7,10 @@ import { CommonModule } from '@angular/common';
|
|
|
7
7
|
* Directive to provide Angular integration for the card.
|
|
8
8
|
*/
|
|
9
9
|
class NimbleCardDirective {
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
11
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleCardDirective, isStandalone: false, selector: "nimble-card", ngImport: i0 }); }
|
|
12
12
|
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardDirective, decorators: [{
|
|
14
14
|
type: Directive,
|
|
15
15
|
args: [{
|
|
16
16
|
selector: 'nimble-card',
|
|
@@ -19,11 +19,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
19
19
|
}] });
|
|
20
20
|
|
|
21
21
|
class NimbleCardModule {
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
23
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
24
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
23
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardModule, declarations: [NimbleCardDirective], imports: [CommonModule], exports: [NimbleCardDirective] }); }
|
|
24
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardModule, imports: [CommonModule] }); }
|
|
25
25
|
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleCardModule, decorators: [{
|
|
27
27
|
type: NgModule,
|
|
28
28
|
args: [{
|
|
29
29
|
declarations: [NimbleCardDirective],
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-chip-testing.mjs","sources":["../../../nimble-angular/chip/testing/ni-nimble-angular-chip-testing.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;AAAA;;AAEG"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Input, Directive, NgModule } from '@angular/core';
|
|
3
|
+
export { chipTag } from '@ni/nimble-components/dist/esm/chip';
|
|
4
|
+
export { ChipAppearance } from '@ni/nimble-components/dist/esm/chip/types';
|
|
5
|
+
import { toBooleanProperty } from '@ni/nimble-angular/internal-utilities';
|
|
6
|
+
import { CommonModule } from '@angular/common';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Directive to provide Angular integration for the chip.
|
|
10
|
+
*/
|
|
11
|
+
class NimbleChipDirective {
|
|
12
|
+
get removable() {
|
|
13
|
+
return this.elementRef.nativeElement.removable;
|
|
14
|
+
}
|
|
15
|
+
set removable(value) {
|
|
16
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'removable', toBooleanProperty(value));
|
|
17
|
+
}
|
|
18
|
+
get disabled() {
|
|
19
|
+
return this.elementRef.nativeElement.disabled;
|
|
20
|
+
}
|
|
21
|
+
set disabled(value) {
|
|
22
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
23
|
+
}
|
|
24
|
+
get appearance() {
|
|
25
|
+
return this.elementRef.nativeElement.appearance;
|
|
26
|
+
}
|
|
27
|
+
set appearance(value) {
|
|
28
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
29
|
+
}
|
|
30
|
+
constructor(renderer, elementRef) {
|
|
31
|
+
this.renderer = renderer;
|
|
32
|
+
this.elementRef = elementRef;
|
|
33
|
+
}
|
|
34
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
35
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleChipDirective, isStandalone: false, selector: "nimble-chip", inputs: { removable: "removable", disabled: "disabled", appearance: "appearance" }, ngImport: i0 }); }
|
|
36
|
+
}
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipDirective, decorators: [{
|
|
38
|
+
type: Directive,
|
|
39
|
+
args: [{
|
|
40
|
+
selector: 'nimble-chip',
|
|
41
|
+
standalone: false
|
|
42
|
+
}]
|
|
43
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { removable: [{
|
|
44
|
+
type: Input
|
|
45
|
+
}], disabled: [{
|
|
46
|
+
type: Input
|
|
47
|
+
}], appearance: [{
|
|
48
|
+
type: Input
|
|
49
|
+
}] } });
|
|
50
|
+
|
|
51
|
+
class NimbleChipModule {
|
|
52
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
53
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipModule, declarations: [NimbleChipDirective], imports: [CommonModule], exports: [NimbleChipDirective] }); }
|
|
54
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipModule, imports: [CommonModule] }); }
|
|
55
|
+
}
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleChipModule, decorators: [{
|
|
57
|
+
type: NgModule,
|
|
58
|
+
args: [{
|
|
59
|
+
declarations: [NimbleChipDirective],
|
|
60
|
+
imports: [CommonModule],
|
|
61
|
+
exports: [NimbleChipDirective]
|
|
62
|
+
}]
|
|
63
|
+
}] });
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Generated bundle index. Do not edit.
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
export { NimbleChipDirective, NimbleChipModule };
|
|
70
|
+
//# sourceMappingURL=ni-nimble-angular-chip.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-nimble-angular-chip.mjs","sources":["../../../nimble-angular/chip/nimble-chip.directive.ts","../../../nimble-angular/chip/nimble-chip.module.ts","../../../nimble-angular/chip/ni-nimble-angular-chip.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { type Chip, chipTag } from '@ni/nimble-components/dist/esm/chip';\nimport { ChipAppearance } from '@ni/nimble-components/dist/esm/chip/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { Chip };\nexport { chipTag };\nexport { ChipAppearance };\n\n/**\n * Directive to provide Angular integration for the chip.\n */\n@Directive({\n selector: 'nimble-chip',\n standalone: false\n})\nexport class NimbleChipDirective {\n public get removable(): boolean {\n return this.elementRef.nativeElement.removable;\n }\n\n @Input() public set removable(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'removable', toBooleanProperty(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 appearance(): ChipAppearance {\n return this.elementRef.nativeElement.appearance;\n }\n\n @Input() public set appearance(value: ChipAppearance) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Chip>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleChipDirective } from './nimble-chip.directive';\n\nimport '@ni/nimble-components/dist/esm/chip';\n\n@NgModule({\n declarations: [NimbleChipDirective],\n imports: [CommonModule],\n exports: [NimbleChipDirective]\n})\nexport class NimbleChipModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -78,10 +78,10 @@ class NimbleLabelProviderCoreDirective {
|
|
|
78
78
|
set scrollForward(value) {
|
|
79
79
|
this.renderer.setProperty(this.elementRef.nativeElement, 'scrollForward', value);
|
|
80
80
|
}
|
|
81
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
82
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
81
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
82
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderCoreDirective, isStandalone: false, selector: "nimble-label-provider-core", inputs: { popupDismiss: ["popup-dismiss", "popupDismiss"], numericDecrement: ["numeric-decrement", "numericDecrement"], numericIncrement: ["numeric-increment", "numericIncrement"], popupIconError: ["popup-icon-error", "popupIconError"], popupIconWarning: ["popup-icon-warning", "popupIconWarning"], popupIconInformation: ["popup-icon-information", "popupIconInformation"], filterSearch: ["filter-search", "filterSearch"], filterNoResults: ["filter-no-results", "filterNoResults"], loading: "loading", scrollBackward: "scrollBackward", scrollForward: "scrollForward" }, ngImport: i0 }); }
|
|
83
83
|
}
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
84
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreDirective, decorators: [{
|
|
85
85
|
type: Directive,
|
|
86
86
|
args: [{
|
|
87
87
|
selector: 'nimble-label-provider-core',
|
|
@@ -142,10 +142,10 @@ class NimbleLabelProviderCoreWithDefaultsDirective {
|
|
|
142
142
|
this.elementRef.nativeElement.scrollBackward = $localize `:Nimble scroll backward|:Scroll backward`;
|
|
143
143
|
this.elementRef.nativeElement.scrollForward = $localize `:Nimble scroll forward|:Scroll forward`;
|
|
144
144
|
}
|
|
145
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
146
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreWithDefaultsDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
146
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderCoreWithDefaultsDirective, isStandalone: false, selector: "nimble-label-provider-core[withDefaults]", ngImport: i0 }); }
|
|
147
147
|
}
|
|
148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreWithDefaultsDirective, decorators: [{
|
|
149
149
|
type: Directive,
|
|
150
150
|
args: [{
|
|
151
151
|
selector: 'nimble-label-provider-core[withDefaults]',
|
|
@@ -154,11 +154,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
154
154
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }] });
|
|
155
155
|
|
|
156
156
|
class NimbleLabelProviderCoreModule {
|
|
157
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
158
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
159
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
158
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreModule, declarations: [NimbleLabelProviderCoreDirective, NimbleLabelProviderCoreWithDefaultsDirective], imports: [CommonModule], exports: [NimbleLabelProviderCoreDirective, NimbleLabelProviderCoreWithDefaultsDirective] }); }
|
|
159
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreModule, imports: [CommonModule] }); }
|
|
160
160
|
}
|
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderCoreModule, decorators: [{
|
|
162
162
|
type: NgModule,
|
|
163
163
|
args: [{
|
|
164
164
|
declarations: [NimbleLabelProviderCoreDirective, NimbleLabelProviderCoreWithDefaultsDirective],
|
|
@@ -36,10 +36,10 @@ class NimbleLabelProviderRichTextDirective {
|
|
|
36
36
|
set toggleNumberedList(value) {
|
|
37
37
|
this.renderer.setProperty(this.elementRef.nativeElement, 'toggleNumberedList', value);
|
|
38
38
|
}
|
|
39
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
40
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
39
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
40
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderRichTextDirective, isStandalone: false, selector: "nimble-label-provider-rich-text", inputs: { toggleBold: ["toggle-bold", "toggleBold"], toggleItalics: ["toggle-italics", "toggleItalics"], toggleBulletedList: ["toggle-bulleted-list", "toggleBulletedList"], toggleNumberedList: ["toggle-numbered-list", "toggleNumberedList"] }, ngImport: i0 }); }
|
|
41
41
|
}
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextDirective, decorators: [{
|
|
43
43
|
type: Directive,
|
|
44
44
|
args: [{
|
|
45
45
|
selector: 'nimble-label-provider-rich-text',
|
|
@@ -72,10 +72,10 @@ class NimbleLabelProviderRichTextWithDefaultsDirective {
|
|
|
72
72
|
this.elementRef.nativeElement.toggleBulletedList = $localize `:Nimble rich text - toggle bulleted list|:Bulleted List`;
|
|
73
73
|
this.elementRef.nativeElement.toggleNumberedList = $localize `:Nimble rich text - toggle numbered list|:Numbered List`;
|
|
74
74
|
}
|
|
75
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
76
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
75
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextWithDefaultsDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
76
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderRichTextWithDefaultsDirective, isStandalone: false, selector: "nimble-label-provider-rich-text[withDefaults]", ngImport: i0 }); }
|
|
77
77
|
}
|
|
78
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
78
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextWithDefaultsDirective, decorators: [{
|
|
79
79
|
type: Directive,
|
|
80
80
|
args: [{
|
|
81
81
|
selector: 'nimble-label-provider-rich-text[withDefaults]',
|
|
@@ -84,11 +84,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
84
84
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }] });
|
|
85
85
|
|
|
86
86
|
class NimbleLabelProviderRichTextModule {
|
|
87
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
88
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
89
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
87
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
88
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextModule, declarations: [NimbleLabelProviderRichTextDirective, NimbleLabelProviderRichTextWithDefaultsDirective], imports: [CommonModule], exports: [NimbleLabelProviderRichTextDirective, NimbleLabelProviderRichTextWithDefaultsDirective] }); }
|
|
89
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextModule, imports: [CommonModule] }); }
|
|
90
90
|
}
|
|
91
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
91
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderRichTextModule, decorators: [{
|
|
92
92
|
type: NgModule,
|
|
93
93
|
args: [{
|
|
94
94
|
declarations: [NimbleLabelProviderRichTextDirective, NimbleLabelProviderRichTextWithDefaultsDirective],
|
|
@@ -109,10 +109,10 @@ class NimbleLabelProviderTableDirective {
|
|
|
109
109
|
set groupRowPlaceholderEmpty(value) {
|
|
110
110
|
this.renderer.setProperty(this.elementRef.nativeElement, 'groupRowPlaceholderEmpty', value);
|
|
111
111
|
}
|
|
112
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
113
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
112
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
113
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderTableDirective, isStandalone: false, selector: "nimble-label-provider-table", inputs: { groupCollapse: ["group-collapse", "groupCollapse"], groupExpand: ["group-expand", "groupExpand"], rowCollapse: ["row-collapse", "rowCollapse"], rowExpand: ["row-expand", "rowExpand"], collapseAll: ["collapse-all", "collapseAll"], cellActionMenu: ["cell-action-menu", "cellActionMenu"], columnHeaderGrouped: ["column-header-grouped", "columnHeaderGrouped"], columnHeaderSortedAscending: ["column-header-sorted-ascending", "columnHeaderSortedAscending"], columnHeaderSortedDescending: ["column-header-sorted-descending", "columnHeaderSortedDescending"], selectAll: ["select-all", "selectAll"], groupSelectAll: ["group-select-all", "groupSelectAll"], rowSelect: ["row-select", "rowSelect"], rowOperationColumn: ["row-operation-column", "rowOperationColumn"], rowLoading: ["row-loading", "rowLoading"], groupRowPlaceholderNoValue: ["group-row-placeholder-no-value", "groupRowPlaceholderNoValue"], groupRowPlaceholderEmpty: ["group-row-placeholder-empty", "groupRowPlaceholderEmpty"] }, ngImport: i0 }); }
|
|
114
114
|
}
|
|
115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableDirective, decorators: [{
|
|
116
116
|
type: Directive,
|
|
117
117
|
args: [{
|
|
118
118
|
selector: 'nimble-label-provider-table',
|
|
@@ -193,10 +193,10 @@ class NimbleLabelProviderTableWithDefaultsDirective {
|
|
|
193
193
|
this.elementRef.nativeElement.groupRowPlaceholderNoValue = $localize `:Nimble table - group row placeholder no value|:No value`;
|
|
194
194
|
this.elementRef.nativeElement.groupRowPlaceholderEmpty = $localize `:Nimble table - group row placeholder empty|:Empty`;
|
|
195
195
|
}
|
|
196
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
197
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
196
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableWithDefaultsDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
197
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleLabelProviderTableWithDefaultsDirective, isStandalone: false, selector: "nimble-label-provider-table[withDefaults]", ngImport: i0 }); }
|
|
198
198
|
}
|
|
199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableWithDefaultsDirective, decorators: [{
|
|
200
200
|
type: Directive,
|
|
201
201
|
args: [{
|
|
202
202
|
selector: 'nimble-label-provider-table[withDefaults]',
|
|
@@ -205,11 +205,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
205
205
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }] });
|
|
206
206
|
|
|
207
207
|
class NimbleLabelProviderTableModule {
|
|
208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
209
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
210
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
208
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
209
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableModule, declarations: [NimbleLabelProviderTableDirective, NimbleLabelProviderTableWithDefaultsDirective], imports: [CommonModule], exports: [NimbleLabelProviderTableDirective, NimbleLabelProviderTableWithDefaultsDirective] }); }
|
|
210
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableModule, imports: [CommonModule] }); }
|
|
211
211
|
}
|
|
212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleLabelProviderTableModule, decorators: [{
|
|
213
213
|
type: NgModule,
|
|
214
214
|
args: [{
|
|
215
215
|
declarations: [NimbleLabelProviderTableDirective, NimbleLabelProviderTableWithDefaultsDirective],
|
|
@@ -15,10 +15,10 @@ class NimbleMappingDirective {
|
|
|
15
15
|
this.renderer = renderer;
|
|
16
16
|
this.elementRef = elementRef;
|
|
17
17
|
}
|
|
18
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
19
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
18
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
19
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingDirective, isStandalone: true, inputs: { key: "key" }, ngImport: i0 }); }
|
|
20
20
|
}
|
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingDirective, decorators: [{
|
|
22
22
|
type: Directive
|
|
23
23
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { key: [{
|
|
24
24
|
type: Input
|
|
@@ -19,10 +19,10 @@ class NimbleMappingEmptyDirective extends NimbleMappingDirective {
|
|
|
19
19
|
this.renderer = renderer;
|
|
20
20
|
this.elementRef = elementRef;
|
|
21
21
|
}
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
23
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
23
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingEmptyDirective, isStandalone: false, selector: "nimble-mapping-empty", inputs: { text: "text" }, usesInheritance: true, ngImport: i0 }); }
|
|
24
24
|
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
28
|
selector: 'nimble-mapping-empty',
|
|
@@ -33,11 +33,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
33
33
|
}] } });
|
|
34
34
|
|
|
35
35
|
class NimbleMappingEmptyModule {
|
|
36
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
37
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
38
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
36
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
37
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyModule, declarations: [NimbleMappingEmptyDirective], imports: [CommonModule], exports: [NimbleMappingEmptyDirective] }); }
|
|
38
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyModule, imports: [CommonModule] }); }
|
|
39
39
|
}
|
|
40
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingEmptyModule, decorators: [{
|
|
41
41
|
type: NgModule,
|
|
42
42
|
args: [{
|
|
43
43
|
declarations: [NimbleMappingEmptyDirective],
|
|
@@ -38,10 +38,10 @@ class NimbleMappingIconDirective extends NimbleMappingDirective {
|
|
|
38
38
|
this.renderer = renderer;
|
|
39
39
|
this.elementRef = elementRef;
|
|
40
40
|
}
|
|
41
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
42
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
41
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
42
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingIconDirective, isStandalone: false, selector: "nimble-mapping-icon", inputs: { text: "text", icon: "icon", severity: "severity", textHidden: ["text-hidden", "textHidden"] }, usesInheritance: true, ngImport: i0 }); }
|
|
43
43
|
}
|
|
44
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconDirective, decorators: [{
|
|
45
45
|
type: Directive,
|
|
46
46
|
args: [{
|
|
47
47
|
selector: 'nimble-mapping-icon',
|
|
@@ -59,11 +59,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
59
59
|
}] } });
|
|
60
60
|
|
|
61
61
|
class NimbleMappingIconModule {
|
|
62
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
63
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
64
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
62
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
63
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconModule, declarations: [NimbleMappingIconDirective], imports: [CommonModule], exports: [NimbleMappingIconDirective] }); }
|
|
64
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconModule, imports: [CommonModule] }); }
|
|
65
65
|
}
|
|
66
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
66
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingIconModule, decorators: [{
|
|
67
67
|
type: NgModule,
|
|
68
68
|
args: [{
|
|
69
69
|
declarations: [NimbleMappingIconDirective],
|
|
@@ -26,10 +26,10 @@ class NimbleMappingSpinnerDirective extends NimbleMappingDirective {
|
|
|
26
26
|
this.renderer = renderer;
|
|
27
27
|
this.elementRef = elementRef;
|
|
28
28
|
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
30
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
30
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingSpinnerDirective, isStandalone: false, selector: "nimble-mapping-spinner", inputs: { text: "text", textHidden: ["text-hidden", "textHidden"] }, usesInheritance: true, ngImport: i0 }); }
|
|
31
31
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerDirective, decorators: [{
|
|
33
33
|
type: Directive,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: 'nimble-mapping-spinner',
|
|
@@ -43,11 +43,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
43
43
|
}] } });
|
|
44
44
|
|
|
45
45
|
class NimbleMappingSpinnerModule {
|
|
46
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
47
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
48
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
46
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
47
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerModule, declarations: [NimbleMappingSpinnerDirective], imports: [CommonModule], exports: [NimbleMappingSpinnerDirective] }); }
|
|
48
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerModule, imports: [CommonModule] }); }
|
|
49
49
|
}
|
|
50
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
50
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingSpinnerModule, decorators: [{
|
|
51
51
|
type: NgModule,
|
|
52
52
|
args: [{
|
|
53
53
|
declarations: [NimbleMappingSpinnerDirective],
|
|
@@ -19,10 +19,10 @@ class NimbleMappingTextDirective extends NimbleMappingDirective {
|
|
|
19
19
|
this.renderer = renderer;
|
|
20
20
|
this.elementRef = elementRef;
|
|
21
21
|
}
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
23
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
23
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingTextDirective, isStandalone: false, selector: "nimble-mapping-text", inputs: { text: "text" }, usesInheritance: true, ngImport: i0 }); }
|
|
24
24
|
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
28
|
selector: 'nimble-mapping-text',
|
|
@@ -33,11 +33,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
33
33
|
}] } });
|
|
34
34
|
|
|
35
35
|
class NimbleMappingTextModule {
|
|
36
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
37
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
38
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
36
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
37
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextModule, declarations: [NimbleMappingTextDirective], imports: [CommonModule], exports: [NimbleMappingTextDirective] }); }
|
|
38
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextModule, imports: [CommonModule] }); }
|
|
39
39
|
}
|
|
40
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingTextModule, decorators: [{
|
|
41
41
|
type: NgModule,
|
|
42
42
|
args: [{
|
|
43
43
|
declarations: [NimbleMappingTextDirective],
|
|
@@ -19,10 +19,10 @@ class NimbleMappingUserDirective extends NimbleMappingDirective {
|
|
|
19
19
|
this.renderer = renderer;
|
|
20
20
|
this.elementRef = elementRef;
|
|
21
21
|
}
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
23
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
23
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: NimbleMappingUserDirective, isStandalone: false, selector: "nimble-mapping-user", inputs: { displayName: ["display-name", "displayName"] }, usesInheritance: true, ngImport: i0 }); }
|
|
24
24
|
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
28
|
selector: 'nimble-mapping-user',
|
|
@@ -34,11 +34,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
34
34
|
}] } });
|
|
35
35
|
|
|
36
36
|
class NimbleMappingUserModule {
|
|
37
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
38
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
39
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
37
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
38
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserModule, declarations: [NimbleMappingUserDirective], imports: [CommonModule], exports: [NimbleMappingUserDirective] }); }
|
|
39
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserModule, imports: [CommonModule] }); }
|
|
40
40
|
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NimbleMappingUserModule, decorators: [{
|
|
42
42
|
type: NgModule,
|
|
43
43
|
args: [{
|
|
44
44
|
declarations: [NimbleMappingUserDirective],
|
|
@@ -17,10 +17,10 @@ class DiacriticInsensitivePipe {
|
|
|
17
17
|
transform(value) {
|
|
18
18
|
return diacriticInsensitiveStringNormalizer(value);
|
|
19
19
|
}
|
|
20
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
21
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
20
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DiacriticInsensitivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
21
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: DiacriticInsensitivePipe, isStandalone: true, name: "diacritic-insensitive" }); }
|
|
22
22
|
}
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DiacriticInsensitivePipe, decorators: [{
|
|
24
24
|
type: Pipe,
|
|
25
25
|
args: [{
|
|
26
26
|
name: 'diacritic-insensitive',
|
|
@@ -42,10 +42,10 @@ class DurationPipe {
|
|
|
42
42
|
parseDuration(duration) {
|
|
43
43
|
return typeof duration === 'string' ? parseFloat(duration) : duration;
|
|
44
44
|
}
|
|
45
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
46
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
45
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DurationPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
46
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: DurationPipe, isStandalone: true, name: "duration" }); }
|
|
47
47
|
}
|
|
48
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DurationPipe, decorators: [{
|
|
49
49
|
type: Pipe,
|
|
50
50
|
args: [{
|
|
51
51
|
name: 'duration',
|
|
@@ -69,10 +69,10 @@ class NumberTextPipe {
|
|
|
69
69
|
}
|
|
70
70
|
return this.unitFormatNumberText.format(value);
|
|
71
71
|
}
|
|
72
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
73
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
72
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NumberTextPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
73
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: NumberTextPipe, isStandalone: true, name: "numberText" }); }
|
|
74
74
|
}
|
|
75
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
75
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: NumberTextPipe, decorators: [{
|
|
76
76
|
type: Pipe,
|
|
77
77
|
args: [{
|
|
78
78
|
name: 'numberText',
|