@nova-design-system/nova-angular-18 3.0.0-beta.39
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/LICENSE.MD +110 -0
- package/README.md +359 -0
- package/dist/nova-components/README.md +24 -0
- package/dist/nova-components/esm2022/lib/nova-components.module.mjs +45 -0
- package/dist/nova-components/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/dist/nova-components/esm2022/lib/stencil-generated/component-value-accessors.mjs +439 -0
- package/dist/nova-components/esm2022/lib/stencil-generated/components.mjs +979 -0
- package/dist/nova-components/esm2022/lib/stencil-generated/index.mjs +42 -0
- package/dist/nova-components/esm2022/lib/value-accessor.mjs +41 -0
- package/dist/nova-components/esm2022/nova-components.mjs +5 -0
- package/dist/nova-components/esm2022/public-api.mjs +7 -0
- package/dist/nova-components/fesm2022/nova-components.mjs +1563 -0
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -0
- package/dist/nova-components/index.d.ts +5 -0
- package/dist/nova-components/lib/nova-components.module.d.ts +20 -0
- package/dist/nova-components/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/dist/nova-components/lib/stencil-generated/component-value-accessors.d.ts +88 -0
- package/dist/nova-components/lib/stencil-generated/components.d.ts +491 -0
- package/dist/nova-components/lib/stencil-generated/index.d.ts +2 -0
- package/dist/nova-components/lib/value-accessor.d.ts +18 -0
- package/dist/nova-components/public-api.d.ts +3 -0
- package/package.json +74 -0
|
@@ -0,0 +1,1563 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, HostListener, Directive, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
+
import { defineCustomElements } from '@nova-design-system/nova-webcomponents/loader';
|
|
4
|
+
import { __decorate } from 'tslib';
|
|
5
|
+
import { fromEvent } from 'rxjs';
|
|
6
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
7
|
+
|
|
8
|
+
/* eslint-disable */
|
|
9
|
+
/* tslint:disable */
|
|
10
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
11
|
+
const Prototype = Cmp.prototype;
|
|
12
|
+
inputs.forEach((item) => {
|
|
13
|
+
Object.defineProperty(Prototype, item, {
|
|
14
|
+
get() {
|
|
15
|
+
return this.el[item];
|
|
16
|
+
},
|
|
17
|
+
set(val) {
|
|
18
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
19
|
+
},
|
|
20
|
+
/**
|
|
21
|
+
* In the event that proxyInputs is called
|
|
22
|
+
* multiple times re-defining these inputs
|
|
23
|
+
* will cause an error to be thrown. As a result
|
|
24
|
+
* we set configurable: true to indicate these
|
|
25
|
+
* properties can be changed.
|
|
26
|
+
*/
|
|
27
|
+
configurable: true,
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
const proxyMethods = (Cmp, methods) => {
|
|
32
|
+
const Prototype = Cmp.prototype;
|
|
33
|
+
methods.forEach((methodName) => {
|
|
34
|
+
Prototype[methodName] = function () {
|
|
35
|
+
const args = arguments;
|
|
36
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
37
|
+
};
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
const proxyOutputs = (instance, el, events) => {
|
|
41
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
42
|
+
};
|
|
43
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
44
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
45
|
+
customElements.define(tagName, customElement);
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
49
|
+
function ProxyCmp(opts) {
|
|
50
|
+
const decorator = function (cls) {
|
|
51
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
52
|
+
if (defineCustomElementFn !== undefined) {
|
|
53
|
+
defineCustomElementFn();
|
|
54
|
+
}
|
|
55
|
+
if (inputs) {
|
|
56
|
+
proxyInputs(cls, inputs);
|
|
57
|
+
}
|
|
58
|
+
if (methods) {
|
|
59
|
+
proxyMethods(cls, methods);
|
|
60
|
+
}
|
|
61
|
+
return cls;
|
|
62
|
+
};
|
|
63
|
+
return decorator;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
let NvAlert = class NvAlert {
|
|
67
|
+
constructor(c, r, z) {
|
|
68
|
+
this.z = z;
|
|
69
|
+
c.detach();
|
|
70
|
+
this.el = r.nativeElement;
|
|
71
|
+
proxyOutputs(this, this.el, ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked']);
|
|
72
|
+
}
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
75
|
+
};
|
|
76
|
+
NvAlert = __decorate([
|
|
77
|
+
ProxyCmp({
|
|
78
|
+
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose']
|
|
79
|
+
})
|
|
80
|
+
], NvAlert);
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAlert, decorators: [{
|
|
82
|
+
type: Component,
|
|
83
|
+
args: [{
|
|
84
|
+
selector: 'nv-alert',
|
|
85
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
86
|
+
template: '<ng-content></ng-content>',
|
|
87
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
88
|
+
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose'],
|
|
89
|
+
}]
|
|
90
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
91
|
+
let NvAvatar = class NvAvatar {
|
|
92
|
+
constructor(c, r, z) {
|
|
93
|
+
this.z = z;
|
|
94
|
+
c.detach();
|
|
95
|
+
this.el = r.nativeElement;
|
|
96
|
+
}
|
|
97
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
98
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAvatar, selector: "nv-avatar", inputs: { alt: "alt", color: "color", initials: "initials", large: "large", medium: "medium", size: "size", small: "small", src: "src", text: "text", url: "url", xlarge: "xlarge", xsmall: "xsmall" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
99
|
+
};
|
|
100
|
+
NvAvatar = __decorate([
|
|
101
|
+
ProxyCmp({
|
|
102
|
+
inputs: ['alt', 'color', 'initials', 'large', 'medium', 'size', 'small', 'src', 'text', 'url', 'xlarge', 'xsmall']
|
|
103
|
+
})
|
|
104
|
+
], NvAvatar);
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAvatar, decorators: [{
|
|
106
|
+
type: Component,
|
|
107
|
+
args: [{
|
|
108
|
+
selector: 'nv-avatar',
|
|
109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
110
|
+
template: '<ng-content></ng-content>',
|
|
111
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
112
|
+
inputs: ['alt', 'color', 'initials', 'large', 'medium', 'size', 'small', 'src', 'text', 'url', 'xlarge', 'xsmall'],
|
|
113
|
+
}]
|
|
114
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
115
|
+
let NvBadge = class NvBadge {
|
|
116
|
+
constructor(c, r, z) {
|
|
117
|
+
this.z = z;
|
|
118
|
+
c.detach();
|
|
119
|
+
this.el = r.nativeElement;
|
|
120
|
+
proxyOutputs(this, this.el, ['closeClicked', 'hiddenChanged', 'hiddenChangedComplete']);
|
|
121
|
+
}
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
123
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBadge, selector: "nv-badge", inputs: { color: "color", dismissal: "dismissal", dismissible: "dismissible", hidden: "hidden", icon: "icon", iconLocation: "iconLocation", label: "label", leadIcon: "leadIcon", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
124
|
+
};
|
|
125
|
+
NvBadge = __decorate([
|
|
126
|
+
ProxyCmp({
|
|
127
|
+
inputs: ['color', 'dismissal', 'dismissible', 'hidden', 'icon', 'iconLocation', 'label', 'leadIcon', 'preventAutoClose']
|
|
128
|
+
})
|
|
129
|
+
], NvBadge);
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBadge, decorators: [{
|
|
131
|
+
type: Component,
|
|
132
|
+
args: [{
|
|
133
|
+
selector: 'nv-badge',
|
|
134
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
135
|
+
template: '<ng-content></ng-content>',
|
|
136
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
137
|
+
inputs: ['color', 'dismissal', 'dismissible', 'hidden', 'icon', 'iconLocation', 'label', 'leadIcon', 'preventAutoClose'],
|
|
138
|
+
}]
|
|
139
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
140
|
+
let NvBase = class NvBase {
|
|
141
|
+
constructor(c, r, z) {
|
|
142
|
+
this.z = z;
|
|
143
|
+
c.detach();
|
|
144
|
+
this.el = r.nativeElement;
|
|
145
|
+
}
|
|
146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBase, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
147
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBase, selector: "nv-base", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
148
|
+
};
|
|
149
|
+
NvBase = __decorate([
|
|
150
|
+
ProxyCmp({})
|
|
151
|
+
], NvBase);
|
|
152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBase, decorators: [{
|
|
153
|
+
type: Component,
|
|
154
|
+
args: [{
|
|
155
|
+
selector: 'nv-base',
|
|
156
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
157
|
+
template: '<ng-content></ng-content>',
|
|
158
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
159
|
+
inputs: [],
|
|
160
|
+
}]
|
|
161
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
162
|
+
let NvBreadcrumb = class NvBreadcrumb {
|
|
163
|
+
constructor(c, r, z) {
|
|
164
|
+
this.z = z;
|
|
165
|
+
c.detach();
|
|
166
|
+
this.el = r.nativeElement;
|
|
167
|
+
}
|
|
168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
169
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBreadcrumb, selector: "nv-breadcrumb", inputs: { current: "current", tooltip: "tooltip", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
170
|
+
};
|
|
171
|
+
NvBreadcrumb = __decorate([
|
|
172
|
+
ProxyCmp({
|
|
173
|
+
inputs: ['current', 'tooltip', 'type']
|
|
174
|
+
})
|
|
175
|
+
], NvBreadcrumb);
|
|
176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBreadcrumb, decorators: [{
|
|
177
|
+
type: Component,
|
|
178
|
+
args: [{
|
|
179
|
+
selector: 'nv-breadcrumb',
|
|
180
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
181
|
+
template: '<ng-content></ng-content>',
|
|
182
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
183
|
+
inputs: ['current', 'tooltip', 'type'],
|
|
184
|
+
}]
|
|
185
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
186
|
+
let NvBreadcrumbs = class NvBreadcrumbs {
|
|
187
|
+
constructor(c, r, z) {
|
|
188
|
+
this.z = z;
|
|
189
|
+
c.detach();
|
|
190
|
+
this.el = r.nativeElement;
|
|
191
|
+
}
|
|
192
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
193
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBreadcrumbs, selector: "nv-breadcrumbs", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
194
|
+
};
|
|
195
|
+
NvBreadcrumbs = __decorate([
|
|
196
|
+
ProxyCmp({})
|
|
197
|
+
], NvBreadcrumbs);
|
|
198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBreadcrumbs, decorators: [{
|
|
199
|
+
type: Component,
|
|
200
|
+
args: [{
|
|
201
|
+
selector: 'nv-breadcrumbs',
|
|
202
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
203
|
+
template: '<ng-content></ng-content>',
|
|
204
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
205
|
+
inputs: [],
|
|
206
|
+
}]
|
|
207
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
208
|
+
let NvButton = class NvButton {
|
|
209
|
+
constructor(c, r, z) {
|
|
210
|
+
this.z = z;
|
|
211
|
+
c.detach();
|
|
212
|
+
this.el = r.nativeElement;
|
|
213
|
+
}
|
|
214
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
215
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvButton, selector: "nv-button", inputs: { active: "active", danger: "danger", disabled: "disabled", emphasis: "emphasis", fluid: "fluid", form: "form", loading: "loading", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
216
|
+
};
|
|
217
|
+
NvButton = __decorate([
|
|
218
|
+
ProxyCmp({
|
|
219
|
+
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'form', 'loading', 'size', 'type']
|
|
220
|
+
})
|
|
221
|
+
], NvButton);
|
|
222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvButton, decorators: [{
|
|
223
|
+
type: Component,
|
|
224
|
+
args: [{
|
|
225
|
+
selector: 'nv-button',
|
|
226
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
227
|
+
template: '<ng-content></ng-content>',
|
|
228
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
229
|
+
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'form', 'loading', 'size', 'type'],
|
|
230
|
+
}]
|
|
231
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
232
|
+
let NvCalendar = class NvCalendar {
|
|
233
|
+
constructor(c, r, z) {
|
|
234
|
+
this.z = z;
|
|
235
|
+
c.detach();
|
|
236
|
+
this.el = r.nativeElement;
|
|
237
|
+
proxyOutputs(this, this.el, ['singleDateChange', 'rangeDateChange']);
|
|
238
|
+
}
|
|
239
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
240
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvCalendar, selector: "nv-calendar", inputs: { dateFormat: "dateFormat", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", rangeValue: "rangeValue", selectionType: "selectionType", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", singleValue: "singleValue" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
241
|
+
};
|
|
242
|
+
NvCalendar = __decorate([
|
|
243
|
+
ProxyCmp({
|
|
244
|
+
inputs: ['dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue']
|
|
245
|
+
})
|
|
246
|
+
], NvCalendar);
|
|
247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvCalendar, decorators: [{
|
|
248
|
+
type: Component,
|
|
249
|
+
args: [{
|
|
250
|
+
selector: 'nv-calendar',
|
|
251
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
252
|
+
template: '<ng-content></ng-content>',
|
|
253
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
254
|
+
inputs: ['dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue'],
|
|
255
|
+
}]
|
|
256
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
257
|
+
let NvCol = class NvCol {
|
|
258
|
+
constructor(c, r, z) {
|
|
259
|
+
this.z = z;
|
|
260
|
+
c.detach();
|
|
261
|
+
this.el = r.nativeElement;
|
|
262
|
+
}
|
|
263
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
264
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvCol, selector: "nv-col", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
265
|
+
};
|
|
266
|
+
NvCol = __decorate([
|
|
267
|
+
ProxyCmp({
|
|
268
|
+
inputs: ['size']
|
|
269
|
+
})
|
|
270
|
+
], NvCol);
|
|
271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvCol, decorators: [{
|
|
272
|
+
type: Component,
|
|
273
|
+
args: [{
|
|
274
|
+
selector: 'nv-col',
|
|
275
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
276
|
+
template: '<ng-content></ng-content>',
|
|
277
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
278
|
+
inputs: ['size'],
|
|
279
|
+
}]
|
|
280
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
281
|
+
let NvDatagrid = class NvDatagrid {
|
|
282
|
+
constructor(c, r, z) {
|
|
283
|
+
this.z = z;
|
|
284
|
+
c.detach();
|
|
285
|
+
this.el = r.nativeElement;
|
|
286
|
+
proxyOutputs(this, this.el, ['action']);
|
|
287
|
+
}
|
|
288
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDatagrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
289
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDatagrid, selector: "nv-datagrid", inputs: { columns: "columns", columnsJson: "columnsJson", data: "data", dataJson: "dataJson", fallbackValue: "fallbackValue", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
290
|
+
};
|
|
291
|
+
NvDatagrid = __decorate([
|
|
292
|
+
ProxyCmp({
|
|
293
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
294
|
+
})
|
|
295
|
+
], NvDatagrid);
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDatagrid, decorators: [{
|
|
297
|
+
type: Component,
|
|
298
|
+
args: [{
|
|
299
|
+
selector: 'nv-datagrid',
|
|
300
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
301
|
+
template: '<ng-content></ng-content>',
|
|
302
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
303
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
304
|
+
}]
|
|
305
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
306
|
+
let NvDatagridcolumn = class NvDatagridcolumn {
|
|
307
|
+
constructor(c, r, z) {
|
|
308
|
+
this.z = z;
|
|
309
|
+
c.detach();
|
|
310
|
+
this.el = r.nativeElement;
|
|
311
|
+
}
|
|
312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDatagridcolumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
313
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDatagridcolumn, selector: "nv-datagridcolumn", inputs: { accessor: "accessor", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
314
|
+
};
|
|
315
|
+
NvDatagridcolumn = __decorate([
|
|
316
|
+
ProxyCmp({
|
|
317
|
+
inputs: ['accessor', 'header']
|
|
318
|
+
})
|
|
319
|
+
], NvDatagridcolumn);
|
|
320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDatagridcolumn, decorators: [{
|
|
321
|
+
type: Component,
|
|
322
|
+
args: [{
|
|
323
|
+
selector: 'nv-datagridcolumn',
|
|
324
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
325
|
+
template: '<ng-content></ng-content>',
|
|
326
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
327
|
+
inputs: ['accessor', 'header'],
|
|
328
|
+
}]
|
|
329
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
330
|
+
let NvDialog = class NvDialog {
|
|
331
|
+
constructor(c, r, z) {
|
|
332
|
+
this.z = z;
|
|
333
|
+
c.detach();
|
|
334
|
+
this.el = r.nativeElement;
|
|
335
|
+
proxyOutputs(this, this.el, ['close']);
|
|
336
|
+
}
|
|
337
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
338
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialog, selector: "nv-dialog", inputs: { clickOutside: "clickOutside", controlled: "controlled", full: "full", open: "open", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
339
|
+
};
|
|
340
|
+
NvDialog = __decorate([
|
|
341
|
+
ProxyCmp({
|
|
342
|
+
inputs: ['clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
343
|
+
methods: ['show', 'hide']
|
|
344
|
+
})
|
|
345
|
+
], NvDialog);
|
|
346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialog, decorators: [{
|
|
347
|
+
type: Component,
|
|
348
|
+
args: [{
|
|
349
|
+
selector: 'nv-dialog',
|
|
350
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
351
|
+
template: '<ng-content></ng-content>',
|
|
352
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
353
|
+
inputs: ['clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
354
|
+
}]
|
|
355
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
356
|
+
let NvDialogfooter = class NvDialogfooter {
|
|
357
|
+
constructor(c, r, z) {
|
|
358
|
+
this.z = z;
|
|
359
|
+
c.detach();
|
|
360
|
+
this.el = r.nativeElement;
|
|
361
|
+
proxyOutputs(this, this.el, ['nvDialogCanceled', 'nvDialogPrimaryClicked']);
|
|
362
|
+
}
|
|
363
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialogfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
364
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
365
|
+
};
|
|
366
|
+
NvDialogfooter = __decorate([
|
|
367
|
+
ProxyCmp({
|
|
368
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable']
|
|
369
|
+
})
|
|
370
|
+
], NvDialogfooter);
|
|
371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialogfooter, decorators: [{
|
|
372
|
+
type: Component,
|
|
373
|
+
args: [{
|
|
374
|
+
selector: 'nv-dialogfooter',
|
|
375
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
376
|
+
template: '<ng-content></ng-content>',
|
|
377
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
378
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
|
|
379
|
+
}]
|
|
380
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
381
|
+
let NvDialogheader = class NvDialogheader {
|
|
382
|
+
constructor(c, r, z) {
|
|
383
|
+
this.z = z;
|
|
384
|
+
c.detach();
|
|
385
|
+
this.el = r.nativeElement;
|
|
386
|
+
}
|
|
387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialogheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
388
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialogheader, selector: "nv-dialogheader", inputs: { heading: "heading", subheading: "subheading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
389
|
+
};
|
|
390
|
+
NvDialogheader = __decorate([
|
|
391
|
+
ProxyCmp({
|
|
392
|
+
inputs: ['heading', 'subheading']
|
|
393
|
+
})
|
|
394
|
+
], NvDialogheader);
|
|
395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialogheader, decorators: [{
|
|
396
|
+
type: Component,
|
|
397
|
+
args: [{
|
|
398
|
+
selector: 'nv-dialogheader',
|
|
399
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
400
|
+
template: '<ng-content></ng-content>',
|
|
401
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
402
|
+
inputs: ['heading', 'subheading'],
|
|
403
|
+
}]
|
|
404
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
405
|
+
let NvFieldcheckbox = class NvFieldcheckbox {
|
|
406
|
+
constructor(c, r, z) {
|
|
407
|
+
this.z = z;
|
|
408
|
+
c.detach();
|
|
409
|
+
this.el = r.nativeElement;
|
|
410
|
+
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
411
|
+
}
|
|
412
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
413
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hideLabel: "hideLabel", indeterminate: "indeterminate", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", readonly: "readonly", required: "required", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
414
|
+
};
|
|
415
|
+
NvFieldcheckbox = __decorate([
|
|
416
|
+
ProxyCmp({
|
|
417
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
418
|
+
})
|
|
419
|
+
], NvFieldcheckbox);
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckbox, decorators: [{
|
|
421
|
+
type: Component,
|
|
422
|
+
args: [{
|
|
423
|
+
selector: 'nv-fieldcheckbox',
|
|
424
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
425
|
+
template: '<ng-content></ng-content>',
|
|
426
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
427
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
428
|
+
}]
|
|
429
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
430
|
+
let NvFielddropdown = class NvFielddropdown {
|
|
431
|
+
constructor(c, r, z) {
|
|
432
|
+
this.z = z;
|
|
433
|
+
c.detach();
|
|
434
|
+
this.el = r.nativeElement;
|
|
435
|
+
proxyOutputs(this, this.el, ['valueChanged', 'dropdownItemSelected']);
|
|
436
|
+
}
|
|
437
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
438
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdown, selector: "nv-fielddropdown", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterable: "filterable", inputId: "inputId", label: "label", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
439
|
+
};
|
|
440
|
+
NvFielddropdown = __decorate([
|
|
441
|
+
ProxyCmp({
|
|
442
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
443
|
+
methods: ['getFilterText']
|
|
444
|
+
})
|
|
445
|
+
], NvFielddropdown);
|
|
446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdown, decorators: [{
|
|
447
|
+
type: Component,
|
|
448
|
+
args: [{
|
|
449
|
+
selector: 'nv-fielddropdown',
|
|
450
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
451
|
+
template: '<ng-content></ng-content>',
|
|
452
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
453
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
454
|
+
}]
|
|
455
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
456
|
+
let NvFielddropdownitem = class NvFielddropdownitem {
|
|
457
|
+
constructor(c, r, z) {
|
|
458
|
+
this.z = z;
|
|
459
|
+
c.detach();
|
|
460
|
+
this.el = r.nativeElement;
|
|
461
|
+
proxyOutputs(this, this.el, ['dropdownItemSelected']);
|
|
462
|
+
}
|
|
463
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
464
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitem, selector: "nv-fielddropdownitem", inputs: { disabled: "disabled", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
465
|
+
};
|
|
466
|
+
NvFielddropdownitem = __decorate([
|
|
467
|
+
ProxyCmp({
|
|
468
|
+
inputs: ['disabled', 'label', 'selected', 'value']
|
|
469
|
+
})
|
|
470
|
+
], NvFielddropdownitem);
|
|
471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitem, decorators: [{
|
|
472
|
+
type: Component,
|
|
473
|
+
args: [{
|
|
474
|
+
selector: 'nv-fielddropdownitem',
|
|
475
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
476
|
+
template: '<ng-content></ng-content>',
|
|
477
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
478
|
+
inputs: ['disabled', 'label', 'selected', 'value'],
|
|
479
|
+
}]
|
|
480
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
481
|
+
let NvFielddropdownitemcheck = class NvFielddropdownitemcheck {
|
|
482
|
+
constructor(c, r, z) {
|
|
483
|
+
this.z = z;
|
|
484
|
+
c.detach();
|
|
485
|
+
this.el = r.nativeElement;
|
|
486
|
+
proxyOutputs(this, this.el, ['itemChecked']);
|
|
487
|
+
}
|
|
488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitemcheck, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
489
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitemcheck, selector: "nv-fielddropdownitemcheck", inputs: { checked: "checked", description: "description", disabled: "disabled", group: "group", label: "label", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
490
|
+
};
|
|
491
|
+
NvFielddropdownitemcheck = __decorate([
|
|
492
|
+
ProxyCmp({
|
|
493
|
+
inputs: ['checked', 'description', 'disabled', 'group', 'label', 'value']
|
|
494
|
+
})
|
|
495
|
+
], NvFielddropdownitemcheck);
|
|
496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitemcheck, decorators: [{
|
|
497
|
+
type: Component,
|
|
498
|
+
args: [{
|
|
499
|
+
selector: 'nv-fielddropdownitemcheck',
|
|
500
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
501
|
+
template: '<ng-content></ng-content>',
|
|
502
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
503
|
+
inputs: ['checked', 'description', 'disabled', 'group', 'label', 'value'],
|
|
504
|
+
}]
|
|
505
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
506
|
+
let NvFieldmultiselect = class NvFieldmultiselect {
|
|
507
|
+
constructor(c, r, z) {
|
|
508
|
+
this.z = z;
|
|
509
|
+
c.detach();
|
|
510
|
+
this.el = r.nativeElement;
|
|
511
|
+
proxyOutputs(this, this.el, ['valueChanged', 'multiselectChange']);
|
|
512
|
+
}
|
|
513
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldmultiselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
514
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldmultiselect, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterable: "filterable", inputId: "inputId", label: "label", maxHeight: "maxHeight", mode: "mode", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
515
|
+
};
|
|
516
|
+
NvFieldmultiselect = __decorate([
|
|
517
|
+
ProxyCmp({
|
|
518
|
+
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'maxHeight', 'mode', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
519
|
+
methods: ['getFilterText', 'resetFilter', 'getSelectedValues']
|
|
520
|
+
})
|
|
521
|
+
], NvFieldmultiselect);
|
|
522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldmultiselect, decorators: [{
|
|
523
|
+
type: Component,
|
|
524
|
+
args: [{
|
|
525
|
+
selector: 'nv-fieldmultiselect',
|
|
526
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
527
|
+
template: '<ng-content></ng-content>',
|
|
528
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
529
|
+
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'maxHeight', 'mode', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
530
|
+
}]
|
|
531
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
532
|
+
let NvFieldnumber = class NvFieldnumber {
|
|
533
|
+
constructor(c, r, z) {
|
|
534
|
+
this.z = z;
|
|
535
|
+
c.detach();
|
|
536
|
+
this.el = r.nativeElement;
|
|
537
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
538
|
+
}
|
|
539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
541
|
+
};
|
|
542
|
+
NvFieldnumber = __decorate([
|
|
543
|
+
ProxyCmp({
|
|
544
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
545
|
+
})
|
|
546
|
+
], NvFieldnumber);
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumber, decorators: [{
|
|
548
|
+
type: Component,
|
|
549
|
+
args: [{
|
|
550
|
+
selector: 'nv-fieldnumber',
|
|
551
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
552
|
+
template: '<ng-content></ng-content>',
|
|
553
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
554
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
555
|
+
}]
|
|
556
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
557
|
+
let NvFieldpassword = class NvFieldpassword {
|
|
558
|
+
constructor(c, r, z) {
|
|
559
|
+
this.z = z;
|
|
560
|
+
c.detach();
|
|
561
|
+
this.el = r.nativeElement;
|
|
562
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
563
|
+
}
|
|
564
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpassword, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
565
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hidePasswordIcon: "hidePasswordIcon", inputId: "inputId", label: "label", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showPassword: "showPassword", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
566
|
+
};
|
|
567
|
+
NvFieldpassword = __decorate([
|
|
568
|
+
ProxyCmp({
|
|
569
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
570
|
+
})
|
|
571
|
+
], NvFieldpassword);
|
|
572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpassword, decorators: [{
|
|
573
|
+
type: Component,
|
|
574
|
+
args: [{
|
|
575
|
+
selector: 'nv-fieldpassword',
|
|
576
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
577
|
+
template: '<ng-content></ng-content>',
|
|
578
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
579
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
580
|
+
}]
|
|
581
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
582
|
+
let NvFieldradio = class NvFieldradio {
|
|
583
|
+
constructor(c, r, z) {
|
|
584
|
+
this.z = z;
|
|
585
|
+
c.detach();
|
|
586
|
+
this.el = r.nativeElement;
|
|
587
|
+
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
588
|
+
}
|
|
589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldradio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
590
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
591
|
+
};
|
|
592
|
+
NvFieldradio = __decorate([
|
|
593
|
+
ProxyCmp({
|
|
594
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value']
|
|
595
|
+
})
|
|
596
|
+
], NvFieldradio);
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldradio, decorators: [{
|
|
598
|
+
type: Component,
|
|
599
|
+
args: [{
|
|
600
|
+
selector: 'nv-fieldradio',
|
|
601
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
602
|
+
template: '<ng-content></ng-content>',
|
|
603
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
604
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
|
|
605
|
+
}]
|
|
606
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
607
|
+
let NvFieldselect = class NvFieldselect {
|
|
608
|
+
constructor(c, r, z) {
|
|
609
|
+
this.z = z;
|
|
610
|
+
c.detach();
|
|
611
|
+
this.el = r.nativeElement;
|
|
612
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
613
|
+
}
|
|
614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
615
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldselect, selector: "nv-fieldselect", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", message: "message", multiple: "multiple", name: "name", options: "options", readonly: "readonly", required: "required", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
616
|
+
};
|
|
617
|
+
NvFieldselect = __decorate([
|
|
618
|
+
ProxyCmp({
|
|
619
|
+
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
620
|
+
})
|
|
621
|
+
], NvFieldselect);
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselect, decorators: [{
|
|
623
|
+
type: Component,
|
|
624
|
+
args: [{
|
|
625
|
+
selector: 'nv-fieldselect',
|
|
626
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
627
|
+
template: '<ng-content></ng-content>',
|
|
628
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
629
|
+
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
630
|
+
}]
|
|
631
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
632
|
+
let NvFieldtext = class NvFieldtext {
|
|
633
|
+
constructor(c, r, z) {
|
|
634
|
+
this.z = z;
|
|
635
|
+
c.detach();
|
|
636
|
+
this.el = r.nativeElement;
|
|
637
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
638
|
+
}
|
|
639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", success: "success", textInputType: "textInputType", type: "type", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
641
|
+
};
|
|
642
|
+
NvFieldtext = __decorate([
|
|
643
|
+
ProxyCmp({
|
|
644
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
645
|
+
})
|
|
646
|
+
], NvFieldtext);
|
|
647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtext, decorators: [{
|
|
648
|
+
type: Component,
|
|
649
|
+
args: [{
|
|
650
|
+
selector: 'nv-fieldtext',
|
|
651
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
652
|
+
template: '<ng-content></ng-content>',
|
|
653
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
654
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
655
|
+
}]
|
|
656
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
657
|
+
let NvFieldtextarea = class NvFieldtextarea {
|
|
658
|
+
constructor(c, r, z) {
|
|
659
|
+
this.z = z;
|
|
660
|
+
c.detach();
|
|
661
|
+
this.el = r.nativeElement;
|
|
662
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
663
|
+
}
|
|
664
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
665
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
666
|
+
};
|
|
667
|
+
NvFieldtextarea = __decorate([
|
|
668
|
+
ProxyCmp({
|
|
669
|
+
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
670
|
+
})
|
|
671
|
+
], NvFieldtextarea);
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextarea, decorators: [{
|
|
673
|
+
type: Component,
|
|
674
|
+
args: [{
|
|
675
|
+
selector: 'nv-fieldtextarea',
|
|
676
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
677
|
+
template: '<ng-content></ng-content>',
|
|
678
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
679
|
+
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
680
|
+
}]
|
|
681
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
682
|
+
let NvFieldtime = class NvFieldtime {
|
|
683
|
+
constructor(c, r, z) {
|
|
684
|
+
this.z = z;
|
|
685
|
+
c.detach();
|
|
686
|
+
this.el = r.nativeElement;
|
|
687
|
+
proxyOutputs(this, this.el, ['valueChanged']);
|
|
688
|
+
}
|
|
689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtime, selector: "nv-fieldtime", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", format: "format", inputId: "inputId", label: "label", max: "max", min: "min", name: "name", open: "open", readonly: "readonly", required: "required", step: "step", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
691
|
+
};
|
|
692
|
+
NvFieldtime = __decorate([
|
|
693
|
+
ProxyCmp({
|
|
694
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
695
|
+
})
|
|
696
|
+
], NvFieldtime);
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtime, decorators: [{
|
|
698
|
+
type: Component,
|
|
699
|
+
args: [{
|
|
700
|
+
selector: 'nv-fieldtime',
|
|
701
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
702
|
+
template: '<ng-content></ng-content>',
|
|
703
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
704
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
705
|
+
}]
|
|
706
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
707
|
+
let NvIcon = class NvIcon {
|
|
708
|
+
constructor(c, r, z) {
|
|
709
|
+
this.z = z;
|
|
710
|
+
c.detach();
|
|
711
|
+
this.el = r.nativeElement;
|
|
712
|
+
}
|
|
713
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
714
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvIcon, selector: "nv-icon", inputs: { color: "color", large: "large", medium: "medium", name: "name", size: "size", small: "small", xlarge: "xlarge", xsmall: "xsmall" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
715
|
+
};
|
|
716
|
+
NvIcon = __decorate([
|
|
717
|
+
ProxyCmp({
|
|
718
|
+
inputs: ['color', 'large', 'medium', 'name', 'size', 'small', 'xlarge', 'xsmall']
|
|
719
|
+
})
|
|
720
|
+
], NvIcon);
|
|
721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvIcon, decorators: [{
|
|
722
|
+
type: Component,
|
|
723
|
+
args: [{
|
|
724
|
+
selector: 'nv-icon',
|
|
725
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
726
|
+
template: '<ng-content></ng-content>',
|
|
727
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
728
|
+
inputs: ['color', 'large', 'medium', 'name', 'size', 'small', 'xlarge', 'xsmall'],
|
|
729
|
+
}]
|
|
730
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
731
|
+
let NvIconbutton = class NvIconbutton {
|
|
732
|
+
constructor(c, r, z) {
|
|
733
|
+
this.z = z;
|
|
734
|
+
c.detach();
|
|
735
|
+
this.el = r.nativeElement;
|
|
736
|
+
}
|
|
737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvIconbutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
738
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvIconbutton, selector: "nv-iconbutton", inputs: { active: "active", disabled: "disabled", emphasis: "emphasis", loading: "loading", name: "name", shape: "shape", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
739
|
+
};
|
|
740
|
+
NvIconbutton = __decorate([
|
|
741
|
+
ProxyCmp({
|
|
742
|
+
inputs: ['active', 'disabled', 'emphasis', 'loading', 'name', 'shape', 'size', 'type']
|
|
743
|
+
})
|
|
744
|
+
], NvIconbutton);
|
|
745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvIconbutton, decorators: [{
|
|
746
|
+
type: Component,
|
|
747
|
+
args: [{
|
|
748
|
+
selector: 'nv-iconbutton',
|
|
749
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
750
|
+
template: '<ng-content></ng-content>',
|
|
751
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
752
|
+
inputs: ['active', 'disabled', 'emphasis', 'loading', 'name', 'shape', 'size', 'type'],
|
|
753
|
+
}]
|
|
754
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
755
|
+
let NvLoader = class NvLoader {
|
|
756
|
+
constructor(c, r, z) {
|
|
757
|
+
this.z = z;
|
|
758
|
+
c.detach();
|
|
759
|
+
this.el = r.nativeElement;
|
|
760
|
+
}
|
|
761
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
762
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvLoader, selector: "nv-loader", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
763
|
+
};
|
|
764
|
+
NvLoader = __decorate([
|
|
765
|
+
ProxyCmp({
|
|
766
|
+
inputs: ['color', 'size']
|
|
767
|
+
})
|
|
768
|
+
], NvLoader);
|
|
769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvLoader, decorators: [{
|
|
770
|
+
type: Component,
|
|
771
|
+
args: [{
|
|
772
|
+
selector: 'nv-loader',
|
|
773
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
774
|
+
template: '<ng-content></ng-content>',
|
|
775
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
776
|
+
inputs: ['color', 'size'],
|
|
777
|
+
}]
|
|
778
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
779
|
+
let NvMenu = class NvMenu {
|
|
780
|
+
constructor(c, r, z) {
|
|
781
|
+
this.z = z;
|
|
782
|
+
c.detach();
|
|
783
|
+
this.el = r.nativeElement;
|
|
784
|
+
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
785
|
+
}
|
|
786
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
787
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenu, selector: "nv-menu", inputs: { disableCloseOnSelect: "disableCloseOnSelect", items: "items", nested: "nested", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
788
|
+
};
|
|
789
|
+
NvMenu = __decorate([
|
|
790
|
+
ProxyCmp({
|
|
791
|
+
inputs: ['disableCloseOnSelect', 'items', 'nested', 'open', 'placement'],
|
|
792
|
+
methods: ['show', 'close']
|
|
793
|
+
})
|
|
794
|
+
], NvMenu);
|
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenu, decorators: [{
|
|
796
|
+
type: Component,
|
|
797
|
+
args: [{
|
|
798
|
+
selector: 'nv-menu',
|
|
799
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
800
|
+
template: '<ng-content></ng-content>',
|
|
801
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
802
|
+
inputs: ['disableCloseOnSelect', 'items', 'nested', 'open', 'placement'],
|
|
803
|
+
}]
|
|
804
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
805
|
+
let NvMenuitem = class NvMenuitem {
|
|
806
|
+
constructor(c, r, z) {
|
|
807
|
+
this.z = z;
|
|
808
|
+
c.detach();
|
|
809
|
+
this.el = r.nativeElement;
|
|
810
|
+
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
811
|
+
}
|
|
812
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenuitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
813
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", name: "name", shortcut: "shortcut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
814
|
+
};
|
|
815
|
+
NvMenuitem = __decorate([
|
|
816
|
+
ProxyCmp({
|
|
817
|
+
inputs: ['disabled', 'hasSubmenu', 'icon', 'name', 'shortcut']
|
|
818
|
+
})
|
|
819
|
+
], NvMenuitem);
|
|
820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenuitem, decorators: [{
|
|
821
|
+
type: Component,
|
|
822
|
+
args: [{
|
|
823
|
+
selector: 'nv-menuitem',
|
|
824
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
825
|
+
template: '<ng-content></ng-content>',
|
|
826
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
827
|
+
inputs: ['disabled', 'hasSubmenu', 'icon', 'name', 'shortcut'],
|
|
828
|
+
}]
|
|
829
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
830
|
+
let NvPopover = class NvPopover {
|
|
831
|
+
constructor(c, r, z) {
|
|
832
|
+
this.z = z;
|
|
833
|
+
c.detach();
|
|
834
|
+
this.el = r.nativeElement;
|
|
835
|
+
proxyOutputs(this, this.el, ['openChanged']);
|
|
836
|
+
}
|
|
837
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
838
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvPopover, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", triggerMode: "triggerMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
839
|
+
};
|
|
840
|
+
NvPopover = __decorate([
|
|
841
|
+
ProxyCmp({
|
|
842
|
+
inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'triggerMode'],
|
|
843
|
+
methods: ['show', 'hide', 'toggle']
|
|
844
|
+
})
|
|
845
|
+
], NvPopover);
|
|
846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvPopover, decorators: [{
|
|
847
|
+
type: Component,
|
|
848
|
+
args: [{
|
|
849
|
+
selector: 'nv-popover',
|
|
850
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
851
|
+
template: '<ng-content></ng-content>',
|
|
852
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
853
|
+
inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'triggerMode'],
|
|
854
|
+
}]
|
|
855
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
856
|
+
let NvRow = class NvRow {
|
|
857
|
+
constructor(c, r, z) {
|
|
858
|
+
this.z = z;
|
|
859
|
+
c.detach();
|
|
860
|
+
this.el = r.nativeElement;
|
|
861
|
+
}
|
|
862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
863
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvRow, selector: "nv-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
864
|
+
};
|
|
865
|
+
NvRow = __decorate([
|
|
866
|
+
ProxyCmp({})
|
|
867
|
+
], NvRow);
|
|
868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvRow, decorators: [{
|
|
869
|
+
type: Component,
|
|
870
|
+
args: [{
|
|
871
|
+
selector: 'nv-row',
|
|
872
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
873
|
+
template: '<ng-content></ng-content>',
|
|
874
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
875
|
+
inputs: [],
|
|
876
|
+
}]
|
|
877
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
878
|
+
let NvStack = class NvStack {
|
|
879
|
+
constructor(c, r, z) {
|
|
880
|
+
this.z = z;
|
|
881
|
+
c.detach();
|
|
882
|
+
this.el = r.nativeElement;
|
|
883
|
+
}
|
|
884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvStack, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
885
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvStack, selector: "nv-stack", inputs: { fill: "fill", flex: "flex", full: "full", gutter: "gutter", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
886
|
+
};
|
|
887
|
+
NvStack = __decorate([
|
|
888
|
+
ProxyCmp({
|
|
889
|
+
inputs: ['fill', 'flex', 'full', 'gutter', 'vertical']
|
|
890
|
+
})
|
|
891
|
+
], NvStack);
|
|
892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvStack, decorators: [{
|
|
893
|
+
type: Component,
|
|
894
|
+
args: [{
|
|
895
|
+
selector: 'nv-stack',
|
|
896
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
897
|
+
template: '<ng-content></ng-content>',
|
|
898
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
899
|
+
inputs: ['fill', 'flex', 'full', 'gutter', 'vertical'],
|
|
900
|
+
}]
|
|
901
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
902
|
+
let NvTable = class NvTable {
|
|
903
|
+
constructor(c, r, z) {
|
|
904
|
+
this.z = z;
|
|
905
|
+
c.detach();
|
|
906
|
+
this.el = r.nativeElement;
|
|
907
|
+
proxyOutputs(this, this.el, ['action']);
|
|
908
|
+
}
|
|
909
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
910
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTable, selector: "nv-table", inputs: { columnsConfig: "columnsConfig", columnsConfigJson: "columnsConfigJson", data: "data", dataJson: "dataJson", fallbackValue: "fallbackValue", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
911
|
+
};
|
|
912
|
+
NvTable = __decorate([
|
|
913
|
+
ProxyCmp({
|
|
914
|
+
inputs: ['columnsConfig', 'columnsConfigJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
915
|
+
})
|
|
916
|
+
], NvTable);
|
|
917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTable, decorators: [{
|
|
918
|
+
type: Component,
|
|
919
|
+
args: [{
|
|
920
|
+
selector: 'nv-table',
|
|
921
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
922
|
+
template: '<ng-content></ng-content>',
|
|
923
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
924
|
+
inputs: ['columnsConfig', 'columnsConfigJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
925
|
+
}]
|
|
926
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
927
|
+
let NvTablecolumn = class NvTablecolumn {
|
|
928
|
+
constructor(c, r, z) {
|
|
929
|
+
this.z = z;
|
|
930
|
+
c.detach();
|
|
931
|
+
this.el = r.nativeElement;
|
|
932
|
+
}
|
|
933
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTablecolumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
934
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTablecolumn, selector: "nv-tablecolumn", inputs: { header: "header", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
935
|
+
};
|
|
936
|
+
NvTablecolumn = __decorate([
|
|
937
|
+
ProxyCmp({
|
|
938
|
+
inputs: ['header', 'name']
|
|
939
|
+
})
|
|
940
|
+
], NvTablecolumn);
|
|
941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTablecolumn, decorators: [{
|
|
942
|
+
type: Component,
|
|
943
|
+
args: [{
|
|
944
|
+
selector: 'nv-tablecolumn',
|
|
945
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
946
|
+
template: '<ng-content></ng-content>',
|
|
947
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
948
|
+
inputs: ['header', 'name'],
|
|
949
|
+
}]
|
|
950
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
951
|
+
let NvToggle = class NvToggle {
|
|
952
|
+
constructor(c, r, z) {
|
|
953
|
+
this.z = z;
|
|
954
|
+
c.detach();
|
|
955
|
+
this.el = r.nativeElement;
|
|
956
|
+
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
957
|
+
}
|
|
958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
959
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvToggle, selector: "nv-toggle", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", label: "label", labelPlacement: "labelPlacement", name: "name", readonly: "readonly", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
960
|
+
};
|
|
961
|
+
NvToggle = __decorate([
|
|
962
|
+
ProxyCmp({
|
|
963
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value']
|
|
964
|
+
})
|
|
965
|
+
], NvToggle);
|
|
966
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvToggle, decorators: [{
|
|
967
|
+
type: Component,
|
|
968
|
+
args: [{
|
|
969
|
+
selector: 'nv-toggle',
|
|
970
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
971
|
+
template: '<ng-content></ng-content>',
|
|
972
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
973
|
+
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value'],
|
|
974
|
+
}]
|
|
975
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
976
|
+
let NvTooltip = class NvTooltip {
|
|
977
|
+
constructor(c, r, z) {
|
|
978
|
+
this.z = z;
|
|
979
|
+
c.detach();
|
|
980
|
+
this.el = r.nativeElement;
|
|
981
|
+
}
|
|
982
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
983
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTooltip, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
984
|
+
};
|
|
985
|
+
NvTooltip = __decorate([
|
|
986
|
+
ProxyCmp({
|
|
987
|
+
inputs: ['enterDelay', 'message', 'placement']
|
|
988
|
+
})
|
|
989
|
+
], NvTooltip);
|
|
990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTooltip, decorators: [{
|
|
991
|
+
type: Component,
|
|
992
|
+
args: [{
|
|
993
|
+
selector: 'nv-tooltip',
|
|
994
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
995
|
+
template: '<ng-content></ng-content>',
|
|
996
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
997
|
+
inputs: ['enterDelay', 'message', 'placement'],
|
|
998
|
+
}]
|
|
999
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1000
|
+
|
|
1001
|
+
const DIRECTIVES = [
|
|
1002
|
+
NvAlert,
|
|
1003
|
+
NvAvatar,
|
|
1004
|
+
NvBadge,
|
|
1005
|
+
NvBase,
|
|
1006
|
+
NvBreadcrumb,
|
|
1007
|
+
NvBreadcrumbs,
|
|
1008
|
+
NvButton,
|
|
1009
|
+
NvCalendar,
|
|
1010
|
+
NvCol,
|
|
1011
|
+
NvDatagrid,
|
|
1012
|
+
NvDatagridcolumn,
|
|
1013
|
+
NvDialog,
|
|
1014
|
+
NvDialogfooter,
|
|
1015
|
+
NvDialogheader,
|
|
1016
|
+
NvFieldcheckbox,
|
|
1017
|
+
NvFielddropdown,
|
|
1018
|
+
NvFielddropdownitem,
|
|
1019
|
+
NvFielddropdownitemcheck,
|
|
1020
|
+
NvFieldmultiselect,
|
|
1021
|
+
NvFieldnumber,
|
|
1022
|
+
NvFieldpassword,
|
|
1023
|
+
NvFieldradio,
|
|
1024
|
+
NvFieldselect,
|
|
1025
|
+
NvFieldtext,
|
|
1026
|
+
NvFieldtextarea,
|
|
1027
|
+
NvFieldtime,
|
|
1028
|
+
NvIcon,
|
|
1029
|
+
NvIconbutton,
|
|
1030
|
+
NvLoader,
|
|
1031
|
+
NvMenu,
|
|
1032
|
+
NvMenuitem,
|
|
1033
|
+
NvPopover,
|
|
1034
|
+
NvRow,
|
|
1035
|
+
NvStack,
|
|
1036
|
+
NvTable,
|
|
1037
|
+
NvTablecolumn,
|
|
1038
|
+
NvToggle,
|
|
1039
|
+
NvTooltip
|
|
1040
|
+
];
|
|
1041
|
+
|
|
1042
|
+
class ValueAccessor {
|
|
1043
|
+
constructor(el) {
|
|
1044
|
+
this.el = el;
|
|
1045
|
+
this.onChange = () => { };
|
|
1046
|
+
this.onTouched = () => { };
|
|
1047
|
+
this.lastValue = null;
|
|
1048
|
+
}
|
|
1049
|
+
writeValue(value) {
|
|
1050
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1051
|
+
}
|
|
1052
|
+
handleChangeEvent(value) {
|
|
1053
|
+
if (value !== this.lastValue) {
|
|
1054
|
+
this.lastValue = value;
|
|
1055
|
+
this.onChange(value);
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
_handleBlurEvent() {
|
|
1059
|
+
this.onTouched();
|
|
1060
|
+
}
|
|
1061
|
+
registerOnChange(fn) {
|
|
1062
|
+
this.onChange = fn;
|
|
1063
|
+
}
|
|
1064
|
+
registerOnTouched(fn) {
|
|
1065
|
+
this.onTouched = fn;
|
|
1066
|
+
}
|
|
1067
|
+
setDisabledState(isDisabled) {
|
|
1068
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
1069
|
+
}
|
|
1070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1071
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
|
|
1072
|
+
}
|
|
1073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
1074
|
+
type: Directive,
|
|
1075
|
+
args: [{}]
|
|
1076
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
|
|
1077
|
+
type: HostListener,
|
|
1078
|
+
args: ['focusout']
|
|
1079
|
+
}] } });
|
|
1080
|
+
|
|
1081
|
+
class NvAlertValueAccessor extends ValueAccessor {
|
|
1082
|
+
constructor(el) {
|
|
1083
|
+
super(el);
|
|
1084
|
+
}
|
|
1085
|
+
handleHiddenChanged(event) {
|
|
1086
|
+
this.handleChangeEvent(event.target.hidden);
|
|
1087
|
+
}
|
|
1088
|
+
writeValue(value) {
|
|
1089
|
+
this.el.nativeElement.hidden = this.lastValue = value;
|
|
1090
|
+
}
|
|
1091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAlertValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1092
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvAlertValueAccessor, selector: "nv-alert", host: { listeners: { "hiddenChanged": "handleHiddenChanged($event)" } }, providers: [
|
|
1093
|
+
{
|
|
1094
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1095
|
+
useExisting: NvAlertValueAccessor,
|
|
1096
|
+
multi: true,
|
|
1097
|
+
},
|
|
1098
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1099
|
+
}
|
|
1100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAlertValueAccessor, decorators: [{
|
|
1101
|
+
type: Directive,
|
|
1102
|
+
args: [{
|
|
1103
|
+
selector: 'nv-alert',
|
|
1104
|
+
providers: [
|
|
1105
|
+
{
|
|
1106
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1107
|
+
useExisting: NvAlertValueAccessor,
|
|
1108
|
+
multi: true,
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
}]
|
|
1112
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleHiddenChanged: [{
|
|
1113
|
+
type: HostListener,
|
|
1114
|
+
args: ['hiddenChanged', ['$event']]
|
|
1115
|
+
}] } });
|
|
1116
|
+
class NvFieldcheckboxValueAccessor extends ValueAccessor {
|
|
1117
|
+
constructor(el) {
|
|
1118
|
+
super(el);
|
|
1119
|
+
}
|
|
1120
|
+
handleCheckedChanged(event) {
|
|
1121
|
+
this.handleChangeEvent(event.target.checked);
|
|
1122
|
+
}
|
|
1123
|
+
writeValue(value) {
|
|
1124
|
+
this.el.nativeElement.checked = this.lastValue = value;
|
|
1125
|
+
}
|
|
1126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckboxValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1127
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldcheckboxValueAccessor, selector: "nv-fieldcheckbox", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
|
|
1128
|
+
{
|
|
1129
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1130
|
+
useExisting: NvFieldcheckboxValueAccessor,
|
|
1131
|
+
multi: true,
|
|
1132
|
+
},
|
|
1133
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1134
|
+
}
|
|
1135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckboxValueAccessor, decorators: [{
|
|
1136
|
+
type: Directive,
|
|
1137
|
+
args: [{
|
|
1138
|
+
selector: 'nv-fieldcheckbox',
|
|
1139
|
+
providers: [
|
|
1140
|
+
{
|
|
1141
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1142
|
+
useExisting: NvFieldcheckboxValueAccessor,
|
|
1143
|
+
multi: true,
|
|
1144
|
+
},
|
|
1145
|
+
],
|
|
1146
|
+
}]
|
|
1147
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
|
|
1148
|
+
type: HostListener,
|
|
1149
|
+
args: ['checkedChanged', ['$event']]
|
|
1150
|
+
}] } });
|
|
1151
|
+
class NvFielddropdownValueAccessor extends ValueAccessor {
|
|
1152
|
+
constructor(el) {
|
|
1153
|
+
super(el);
|
|
1154
|
+
}
|
|
1155
|
+
handleValueChanged(event) {
|
|
1156
|
+
this.handleChangeEvent(event.target.value);
|
|
1157
|
+
}
|
|
1158
|
+
writeValue(value) {
|
|
1159
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1160
|
+
}
|
|
1161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1162
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownValueAccessor, selector: "nv-fielddropdown", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1163
|
+
{
|
|
1164
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1165
|
+
useExisting: NvFielddropdownValueAccessor,
|
|
1166
|
+
multi: true,
|
|
1167
|
+
},
|
|
1168
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1169
|
+
}
|
|
1170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownValueAccessor, decorators: [{
|
|
1171
|
+
type: Directive,
|
|
1172
|
+
args: [{
|
|
1173
|
+
selector: 'nv-fielddropdown',
|
|
1174
|
+
providers: [
|
|
1175
|
+
{
|
|
1176
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1177
|
+
useExisting: NvFielddropdownValueAccessor,
|
|
1178
|
+
multi: true,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
}]
|
|
1182
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1183
|
+
type: HostListener,
|
|
1184
|
+
args: ['valueChanged', ['$event']]
|
|
1185
|
+
}] } });
|
|
1186
|
+
class NvFieldmultiselectValueAccessor extends ValueAccessor {
|
|
1187
|
+
constructor(el) {
|
|
1188
|
+
super(el);
|
|
1189
|
+
}
|
|
1190
|
+
handleValueChanged(event) {
|
|
1191
|
+
this.handleChangeEvent(event.target.value);
|
|
1192
|
+
}
|
|
1193
|
+
writeValue(value) {
|
|
1194
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1195
|
+
}
|
|
1196
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldmultiselectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1197
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldmultiselectValueAccessor, selector: "nv-fieldmultiselect", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1198
|
+
{
|
|
1199
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1200
|
+
useExisting: NvFieldmultiselectValueAccessor,
|
|
1201
|
+
multi: true,
|
|
1202
|
+
},
|
|
1203
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1204
|
+
}
|
|
1205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldmultiselectValueAccessor, decorators: [{
|
|
1206
|
+
type: Directive,
|
|
1207
|
+
args: [{
|
|
1208
|
+
selector: 'nv-fieldmultiselect',
|
|
1209
|
+
providers: [
|
|
1210
|
+
{
|
|
1211
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1212
|
+
useExisting: NvFieldmultiselectValueAccessor,
|
|
1213
|
+
multi: true,
|
|
1214
|
+
},
|
|
1215
|
+
],
|
|
1216
|
+
}]
|
|
1217
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1218
|
+
type: HostListener,
|
|
1219
|
+
args: ['valueChanged', ['$event']]
|
|
1220
|
+
}] } });
|
|
1221
|
+
class NvFieldnumberValueAccessor extends ValueAccessor {
|
|
1222
|
+
constructor(el) {
|
|
1223
|
+
super(el);
|
|
1224
|
+
}
|
|
1225
|
+
handleValueChanged(event) {
|
|
1226
|
+
this.handleChangeEvent(event.target.value);
|
|
1227
|
+
}
|
|
1228
|
+
writeValue(value) {
|
|
1229
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1230
|
+
}
|
|
1231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumberValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1232
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldnumberValueAccessor, selector: "nv-fieldnumber", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1233
|
+
{
|
|
1234
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1235
|
+
useExisting: NvFieldnumberValueAccessor,
|
|
1236
|
+
multi: true,
|
|
1237
|
+
},
|
|
1238
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1239
|
+
}
|
|
1240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumberValueAccessor, decorators: [{
|
|
1241
|
+
type: Directive,
|
|
1242
|
+
args: [{
|
|
1243
|
+
selector: 'nv-fieldnumber',
|
|
1244
|
+
providers: [
|
|
1245
|
+
{
|
|
1246
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1247
|
+
useExisting: NvFieldnumberValueAccessor,
|
|
1248
|
+
multi: true,
|
|
1249
|
+
},
|
|
1250
|
+
],
|
|
1251
|
+
}]
|
|
1252
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1253
|
+
type: HostListener,
|
|
1254
|
+
args: ['valueChanged', ['$event']]
|
|
1255
|
+
}] } });
|
|
1256
|
+
class NvFieldpasswordValueAccessor extends ValueAccessor {
|
|
1257
|
+
constructor(el) {
|
|
1258
|
+
super(el);
|
|
1259
|
+
}
|
|
1260
|
+
handleValueChanged(event) {
|
|
1261
|
+
this.handleChangeEvent(event.target.value);
|
|
1262
|
+
}
|
|
1263
|
+
writeValue(value) {
|
|
1264
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1265
|
+
}
|
|
1266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpasswordValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1267
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldpasswordValueAccessor, selector: "nv-fieldpassword", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1268
|
+
{
|
|
1269
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1270
|
+
useExisting: NvFieldpasswordValueAccessor,
|
|
1271
|
+
multi: true,
|
|
1272
|
+
},
|
|
1273
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1274
|
+
}
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpasswordValueAccessor, decorators: [{
|
|
1276
|
+
type: Directive,
|
|
1277
|
+
args: [{
|
|
1278
|
+
selector: 'nv-fieldpassword',
|
|
1279
|
+
providers: [
|
|
1280
|
+
{
|
|
1281
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1282
|
+
useExisting: NvFieldpasswordValueAccessor,
|
|
1283
|
+
multi: true,
|
|
1284
|
+
},
|
|
1285
|
+
],
|
|
1286
|
+
}]
|
|
1287
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1288
|
+
type: HostListener,
|
|
1289
|
+
args: ['valueChanged', ['$event']]
|
|
1290
|
+
}] } });
|
|
1291
|
+
class NvFieldradioValueAccessor extends ValueAccessor {
|
|
1292
|
+
constructor(el) {
|
|
1293
|
+
super(el);
|
|
1294
|
+
}
|
|
1295
|
+
handleCheckedChanged(event) {
|
|
1296
|
+
this.handleChangeEvent(event.target.checked);
|
|
1297
|
+
}
|
|
1298
|
+
writeValue(value) {
|
|
1299
|
+
this.el.nativeElement.checked = this.lastValue = value;
|
|
1300
|
+
}
|
|
1301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldradioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1302
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldradioValueAccessor, selector: "nv-fieldradio", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
|
|
1303
|
+
{
|
|
1304
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1305
|
+
useExisting: NvFieldradioValueAccessor,
|
|
1306
|
+
multi: true,
|
|
1307
|
+
},
|
|
1308
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1309
|
+
}
|
|
1310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldradioValueAccessor, decorators: [{
|
|
1311
|
+
type: Directive,
|
|
1312
|
+
args: [{
|
|
1313
|
+
selector: 'nv-fieldradio',
|
|
1314
|
+
providers: [
|
|
1315
|
+
{
|
|
1316
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1317
|
+
useExisting: NvFieldradioValueAccessor,
|
|
1318
|
+
multi: true,
|
|
1319
|
+
},
|
|
1320
|
+
],
|
|
1321
|
+
}]
|
|
1322
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
|
|
1323
|
+
type: HostListener,
|
|
1324
|
+
args: ['checkedChanged', ['$event']]
|
|
1325
|
+
}] } });
|
|
1326
|
+
class NvFieldselectValueAccessor extends ValueAccessor {
|
|
1327
|
+
constructor(el) {
|
|
1328
|
+
super(el);
|
|
1329
|
+
}
|
|
1330
|
+
handleValueChanged(event) {
|
|
1331
|
+
this.handleChangeEvent(event.target.value);
|
|
1332
|
+
}
|
|
1333
|
+
writeValue(value) {
|
|
1334
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1335
|
+
}
|
|
1336
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1337
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldselectValueAccessor, selector: "nv-fieldselect", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1338
|
+
{
|
|
1339
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1340
|
+
useExisting: NvFieldselectValueAccessor,
|
|
1341
|
+
multi: true,
|
|
1342
|
+
},
|
|
1343
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1344
|
+
}
|
|
1345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselectValueAccessor, decorators: [{
|
|
1346
|
+
type: Directive,
|
|
1347
|
+
args: [{
|
|
1348
|
+
selector: 'nv-fieldselect',
|
|
1349
|
+
providers: [
|
|
1350
|
+
{
|
|
1351
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1352
|
+
useExisting: NvFieldselectValueAccessor,
|
|
1353
|
+
multi: true,
|
|
1354
|
+
},
|
|
1355
|
+
],
|
|
1356
|
+
}]
|
|
1357
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1358
|
+
type: HostListener,
|
|
1359
|
+
args: ['valueChanged', ['$event']]
|
|
1360
|
+
}] } });
|
|
1361
|
+
class NvFieldtextValueAccessor extends ValueAccessor {
|
|
1362
|
+
constructor(el) {
|
|
1363
|
+
super(el);
|
|
1364
|
+
}
|
|
1365
|
+
handleValueChanged(event) {
|
|
1366
|
+
this.handleChangeEvent(event.target.value);
|
|
1367
|
+
}
|
|
1368
|
+
writeValue(value) {
|
|
1369
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1370
|
+
}
|
|
1371
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1372
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtextValueAccessor, selector: "nv-fieldtext", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1373
|
+
{
|
|
1374
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1375
|
+
useExisting: NvFieldtextValueAccessor,
|
|
1376
|
+
multi: true,
|
|
1377
|
+
},
|
|
1378
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1379
|
+
}
|
|
1380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextValueAccessor, decorators: [{
|
|
1381
|
+
type: Directive,
|
|
1382
|
+
args: [{
|
|
1383
|
+
selector: 'nv-fieldtext',
|
|
1384
|
+
providers: [
|
|
1385
|
+
{
|
|
1386
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1387
|
+
useExisting: NvFieldtextValueAccessor,
|
|
1388
|
+
multi: true,
|
|
1389
|
+
},
|
|
1390
|
+
],
|
|
1391
|
+
}]
|
|
1392
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1393
|
+
type: HostListener,
|
|
1394
|
+
args: ['valueChanged', ['$event']]
|
|
1395
|
+
}] } });
|
|
1396
|
+
class NvFieldtextareaValueAccessor extends ValueAccessor {
|
|
1397
|
+
constructor(el) {
|
|
1398
|
+
super(el);
|
|
1399
|
+
}
|
|
1400
|
+
handleValueChanged(event) {
|
|
1401
|
+
this.handleChangeEvent(event.target.value);
|
|
1402
|
+
}
|
|
1403
|
+
writeValue(value) {
|
|
1404
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
1405
|
+
}
|
|
1406
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextareaValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1407
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtextareaValueAccessor, selector: "nv-fieldtextarea", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
1408
|
+
{
|
|
1409
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1410
|
+
useExisting: NvFieldtextareaValueAccessor,
|
|
1411
|
+
multi: true,
|
|
1412
|
+
},
|
|
1413
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1414
|
+
}
|
|
1415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextareaValueAccessor, decorators: [{
|
|
1416
|
+
type: Directive,
|
|
1417
|
+
args: [{
|
|
1418
|
+
selector: 'nv-fieldtextarea',
|
|
1419
|
+
providers: [
|
|
1420
|
+
{
|
|
1421
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1422
|
+
useExisting: NvFieldtextareaValueAccessor,
|
|
1423
|
+
multi: true,
|
|
1424
|
+
},
|
|
1425
|
+
],
|
|
1426
|
+
}]
|
|
1427
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
1428
|
+
type: HostListener,
|
|
1429
|
+
args: ['valueChanged', ['$event']]
|
|
1430
|
+
}] } });
|
|
1431
|
+
class NvPopoverValueAccessor extends ValueAccessor {
|
|
1432
|
+
constructor(el) {
|
|
1433
|
+
super(el);
|
|
1434
|
+
}
|
|
1435
|
+
handleOpenChanged(event) {
|
|
1436
|
+
this.handleChangeEvent(event.target.open);
|
|
1437
|
+
}
|
|
1438
|
+
writeValue(value) {
|
|
1439
|
+
this.el.nativeElement.open = this.lastValue = value;
|
|
1440
|
+
}
|
|
1441
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvPopoverValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1442
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvPopoverValueAccessor, selector: "nv-popover", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
|
|
1443
|
+
{
|
|
1444
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1445
|
+
useExisting: NvPopoverValueAccessor,
|
|
1446
|
+
multi: true,
|
|
1447
|
+
},
|
|
1448
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1449
|
+
}
|
|
1450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvPopoverValueAccessor, decorators: [{
|
|
1451
|
+
type: Directive,
|
|
1452
|
+
args: [{
|
|
1453
|
+
selector: 'nv-popover',
|
|
1454
|
+
providers: [
|
|
1455
|
+
{
|
|
1456
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1457
|
+
useExisting: NvPopoverValueAccessor,
|
|
1458
|
+
multi: true,
|
|
1459
|
+
},
|
|
1460
|
+
],
|
|
1461
|
+
}]
|
|
1462
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
|
|
1463
|
+
type: HostListener,
|
|
1464
|
+
args: ['openChanged', ['$event']]
|
|
1465
|
+
}] } });
|
|
1466
|
+
class NvToggleValueAccessor extends ValueAccessor {
|
|
1467
|
+
constructor(el) {
|
|
1468
|
+
super(el);
|
|
1469
|
+
}
|
|
1470
|
+
handleCheckedChanged(event) {
|
|
1471
|
+
this.handleChangeEvent(event.target.checked);
|
|
1472
|
+
}
|
|
1473
|
+
writeValue(value) {
|
|
1474
|
+
this.el.nativeElement.checked = this.lastValue = value;
|
|
1475
|
+
}
|
|
1476
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvToggleValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1477
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NvToggleValueAccessor, selector: "nv-toggle", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
|
|
1478
|
+
{
|
|
1479
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1480
|
+
useExisting: NvToggleValueAccessor,
|
|
1481
|
+
multi: true,
|
|
1482
|
+
},
|
|
1483
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
1484
|
+
}
|
|
1485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvToggleValueAccessor, decorators: [{
|
|
1486
|
+
type: Directive,
|
|
1487
|
+
args: [{
|
|
1488
|
+
selector: 'nv-toggle',
|
|
1489
|
+
providers: [
|
|
1490
|
+
{
|
|
1491
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1492
|
+
useExisting: NvToggleValueAccessor,
|
|
1493
|
+
multi: true,
|
|
1494
|
+
},
|
|
1495
|
+
],
|
|
1496
|
+
}]
|
|
1497
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
|
|
1498
|
+
type: HostListener,
|
|
1499
|
+
args: ['checkedChanged', ['$event']]
|
|
1500
|
+
}] } });
|
|
1501
|
+
const VALUE_ACCESSORS = [
|
|
1502
|
+
NvAlertValueAccessor,
|
|
1503
|
+
NvFieldcheckboxValueAccessor,
|
|
1504
|
+
NvFielddropdownValueAccessor,
|
|
1505
|
+
NvFieldmultiselectValueAccessor,
|
|
1506
|
+
NvFieldnumberValueAccessor,
|
|
1507
|
+
NvFieldpasswordValueAccessor,
|
|
1508
|
+
NvFieldradioValueAccessor,
|
|
1509
|
+
NvFieldselectValueAccessor,
|
|
1510
|
+
NvFieldtextValueAccessor,
|
|
1511
|
+
NvFieldtextareaValueAccessor,
|
|
1512
|
+
NvPopoverValueAccessor,
|
|
1513
|
+
NvToggleValueAccessor,
|
|
1514
|
+
];
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Initialize the Nova Components
|
|
1518
|
+
*
|
|
1519
|
+
* @returns {Provider} - The provider to be used for nova components
|
|
1520
|
+
*/
|
|
1521
|
+
function provideNovaComponents() {
|
|
1522
|
+
return {
|
|
1523
|
+
provide: APP_INITIALIZER,
|
|
1524
|
+
useFactory: () => defineCustomElements,
|
|
1525
|
+
multi: true,
|
|
1526
|
+
};
|
|
1527
|
+
}
|
|
1528
|
+
class NovaComponentsModule {
|
|
1529
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1530
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvTooltip], exports: [NvAlert, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvTooltip] }); }
|
|
1531
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsModule, providers: [provideNovaComponents()] }); }
|
|
1532
|
+
}
|
|
1533
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
1534
|
+
type: NgModule,
|
|
1535
|
+
args: [{
|
|
1536
|
+
declarations: [...DIRECTIVES],
|
|
1537
|
+
exports: [...DIRECTIVES],
|
|
1538
|
+
providers: [provideNovaComponents()],
|
|
1539
|
+
}]
|
|
1540
|
+
}] });
|
|
1541
|
+
class NovaComponentsValueAccessorModule {
|
|
1542
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1543
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsValueAccessorModule, declarations: [NvAlertValueAccessor, NvFieldcheckboxValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvPopoverValueAccessor, NvToggleValueAccessor], exports: [NvAlertValueAccessor, NvFieldcheckboxValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvPopoverValueAccessor, NvToggleValueAccessor] }); }
|
|
1544
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
|
|
1545
|
+
}
|
|
1546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
|
|
1547
|
+
type: NgModule,
|
|
1548
|
+
args: [{
|
|
1549
|
+
declarations: [...VALUE_ACCESSORS],
|
|
1550
|
+
exports: [...VALUE_ACCESSORS],
|
|
1551
|
+
}]
|
|
1552
|
+
}] });
|
|
1553
|
+
|
|
1554
|
+
/*
|
|
1555
|
+
* Public API Surface of nova-components
|
|
1556
|
+
*/
|
|
1557
|
+
|
|
1558
|
+
/**
|
|
1559
|
+
* Generated bundle index. Do not edit.
|
|
1560
|
+
*/
|
|
1561
|
+
|
|
1562
|
+
export { NovaComponentsModule, NovaComponentsValueAccessorModule, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvPopoverValueAccessor, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvToggleValueAccessor, NvTooltip, VALUE_ACCESSORS, provideNovaComponents };
|
|
1563
|
+
//# sourceMappingURL=nova-components.mjs.map
|