@nova-design-system/nova-angular 3.0.0-beta.16

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.
@@ -0,0 +1,1104 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Directive, HostListener, 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: "17.3.9", 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: "17.3.9", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", 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', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose']
79
+ })
80
+ ], NvAlert);
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", 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', '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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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 NvButton = class NvButton {
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: "17.3.9", ngImport: i0, type: NvButton, 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: "17.3.9", type: NvButton, selector: "nv-button", inputs: { danger: "danger", disabled: "disabled", emphasis: "emphasis", fluid: "fluid", loading: "loading", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
170
+ };
171
+ NvButton = __decorate([
172
+ ProxyCmp({
173
+ inputs: ['danger', 'disabled', 'emphasis', 'fluid', 'loading', 'size', 'type']
174
+ })
175
+ ], NvButton);
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvButton, decorators: [{
177
+ type: Component,
178
+ args: [{
179
+ selector: 'nv-button',
180
+ changeDetection: ChangeDetectionStrategy.OnPush,
181
+ template: '<ng-content></ng-content>',
182
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
183
+ inputs: ['danger', 'disabled', 'emphasis', 'fluid', 'loading', 'size', 'type'],
184
+ }]
185
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
186
+ let NvCol = class NvCol {
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: "17.3.9", ngImport: i0, type: NvCol, 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: "17.3.9", type: NvCol, selector: "nv-col", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
194
+ };
195
+ NvCol = __decorate([
196
+ ProxyCmp({
197
+ inputs: ['size']
198
+ })
199
+ ], NvCol);
200
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvCol, decorators: [{
201
+ type: Component,
202
+ args: [{
203
+ selector: 'nv-col',
204
+ changeDetection: ChangeDetectionStrategy.OnPush,
205
+ template: '<ng-content></ng-content>',
206
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
207
+ inputs: ['size'],
208
+ }]
209
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
210
+ let NvFieldcheckbox = class NvFieldcheckbox {
211
+ constructor(c, r, z) {
212
+ this.z = z;
213
+ c.detach();
214
+ this.el = r.nativeElement;
215
+ proxyOutputs(this, this.el, ['checkedChanged']);
216
+ }
217
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
218
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { 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 }); }
219
+ };
220
+ NvFieldcheckbox = __decorate([
221
+ ProxyCmp({
222
+ inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
223
+ })
224
+ ], NvFieldcheckbox);
225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, decorators: [{
226
+ type: Component,
227
+ args: [{
228
+ selector: 'nv-fieldcheckbox',
229
+ changeDetection: ChangeDetectionStrategy.OnPush,
230
+ template: '<ng-content></ng-content>',
231
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
232
+ inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
233
+ }]
234
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
235
+ let NvFieldnumber = class NvFieldnumber {
236
+ constructor(c, r, z) {
237
+ this.z = z;
238
+ c.detach();
239
+ this.el = r.nativeElement;
240
+ proxyOutputs(this, this.el, ['valueChanged']);
241
+ }
242
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
243
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { 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 }); }
244
+ };
245
+ NvFieldnumber = __decorate([
246
+ ProxyCmp({
247
+ inputs: ['description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
248
+ })
249
+ ], NvFieldnumber);
250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, decorators: [{
251
+ type: Component,
252
+ args: [{
253
+ selector: 'nv-fieldnumber',
254
+ changeDetection: ChangeDetectionStrategy.OnPush,
255
+ template: '<ng-content></ng-content>',
256
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
257
+ inputs: ['description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
258
+ }]
259
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
260
+ let NvFieldpassword = class NvFieldpassword {
261
+ constructor(c, r, z) {
262
+ this.z = z;
263
+ c.detach();
264
+ this.el = r.nativeElement;
265
+ proxyOutputs(this, this.el, ['valueChanged']);
266
+ }
267
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
268
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", 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 }); }
269
+ };
270
+ NvFieldpassword = __decorate([
271
+ ProxyCmp({
272
+ inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
273
+ })
274
+ ], NvFieldpassword);
275
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, decorators: [{
276
+ type: Component,
277
+ args: [{
278
+ selector: 'nv-fieldpassword',
279
+ changeDetection: ChangeDetectionStrategy.OnPush,
280
+ template: '<ng-content></ng-content>',
281
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
282
+ inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
283
+ }]
284
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
285
+ let NvFieldradio = class NvFieldradio {
286
+ constructor(c, r, z) {
287
+ this.z = z;
288
+ c.detach();
289
+ this.el = r.nativeElement;
290
+ proxyOutputs(this, this.el, ['checkedChanged']);
291
+ }
292
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
293
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradio, selector: "nv-fieldradio", inputs: { 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 }); }
294
+ };
295
+ NvFieldradio = __decorate([
296
+ ProxyCmp({
297
+ inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value']
298
+ })
299
+ ], NvFieldradio);
300
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradio, decorators: [{
301
+ type: Component,
302
+ args: [{
303
+ selector: 'nv-fieldradio',
304
+ changeDetection: ChangeDetectionStrategy.OnPush,
305
+ template: '<ng-content></ng-content>',
306
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
307
+ inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
308
+ }]
309
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
310
+ let NvFieldselect = class NvFieldselect {
311
+ constructor(c, r, z) {
312
+ this.z = z;
313
+ c.detach();
314
+ this.el = r.nativeElement;
315
+ proxyOutputs(this, this.el, ['valueChanged']);
316
+ }
317
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
318
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldselect, selector: "nv-fieldselect", inputs: { description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", label: "label", message: "message", multiple: "multiple", name: "name", readonly: "readonly", required: "required", selectId: "selectId", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
319
+ };
320
+ NvFieldselect = __decorate([
321
+ ProxyCmp({
322
+ inputs: ['description', 'disabled', 'displayValue', 'error', 'errorDescription', 'label', 'message', 'multiple', 'name', 'readonly', 'required', 'selectId', 'success', 'validation', 'value']
323
+ })
324
+ ], NvFieldselect);
325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, decorators: [{
326
+ type: Component,
327
+ args: [{
328
+ selector: 'nv-fieldselect',
329
+ changeDetection: ChangeDetectionStrategy.OnPush,
330
+ template: '<ng-content></ng-content>',
331
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
332
+ inputs: ['description', 'disabled', 'displayValue', 'error', 'errorDescription', 'label', 'message', 'multiple', 'name', 'readonly', 'required', 'selectId', 'success', 'validation', 'value'],
333
+ }]
334
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
335
+ let NvFieldtext = class NvFieldtext {
336
+ constructor(c, r, z) {
337
+ this.z = z;
338
+ c.detach();
339
+ this.el = r.nativeElement;
340
+ proxyOutputs(this, this.el, ['valueChanged']);
341
+ }
342
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
343
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", 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 }); }
344
+ };
345
+ NvFieldtext = __decorate([
346
+ ProxyCmp({
347
+ inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
348
+ })
349
+ ], NvFieldtext);
350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, decorators: [{
351
+ type: Component,
352
+ args: [{
353
+ selector: 'nv-fieldtext',
354
+ changeDetection: ChangeDetectionStrategy.OnPush,
355
+ template: '<ng-content></ng-content>',
356
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
357
+ inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
358
+ }]
359
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
360
+ let NvFieldtextarea = class NvFieldtextarea {
361
+ constructor(c, r, z) {
362
+ this.z = z;
363
+ c.detach();
364
+ this.el = r.nativeElement;
365
+ proxyOutputs(this, this.el, ['valueChanged']);
366
+ }
367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
368
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", success: "success", textareaId: "textareaId", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
369
+ };
370
+ NvFieldtextarea = __decorate([
371
+ ProxyCmp({
372
+ inputs: ['autosize', 'description', 'disabled', 'error', 'errorDescription', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'textareaId', 'validation', 'value']
373
+ })
374
+ ], NvFieldtextarea);
375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, decorators: [{
376
+ type: Component,
377
+ args: [{
378
+ selector: 'nv-fieldtextarea',
379
+ changeDetection: ChangeDetectionStrategy.OnPush,
380
+ template: '<ng-content></ng-content>',
381
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
382
+ inputs: ['autosize', 'description', 'disabled', 'error', 'errorDescription', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'textareaId', 'validation', 'value'],
383
+ }]
384
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
385
+ let NvFieldtoggle = class NvFieldtoggle {
386
+ constructor(c, r, z) {
387
+ this.z = z;
388
+ c.detach();
389
+ this.el = r.nativeElement;
390
+ proxyOutputs(this, this.el, ['checkedChanged']);
391
+ }
392
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtoggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
393
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtoggle, selector: "nv-fieldtoggle", 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 }); }
394
+ };
395
+ NvFieldtoggle = __decorate([
396
+ ProxyCmp({
397
+ inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value']
398
+ })
399
+ ], NvFieldtoggle);
400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtoggle, decorators: [{
401
+ type: Component,
402
+ args: [{
403
+ selector: 'nv-fieldtoggle',
404
+ changeDetection: ChangeDetectionStrategy.OnPush,
405
+ template: '<ng-content></ng-content>',
406
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
407
+ inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value'],
408
+ }]
409
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
410
+ let NvIcon = class NvIcon {
411
+ constructor(c, r, z) {
412
+ this.z = z;
413
+ c.detach();
414
+ this.el = r.nativeElement;
415
+ }
416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
417
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
418
+ };
419
+ NvIcon = __decorate([
420
+ ProxyCmp({
421
+ inputs: ['color', 'large', 'medium', 'name', 'size', 'small', 'xlarge', 'xsmall']
422
+ })
423
+ ], NvIcon);
424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvIcon, decorators: [{
425
+ type: Component,
426
+ args: [{
427
+ selector: 'nv-icon',
428
+ changeDetection: ChangeDetectionStrategy.OnPush,
429
+ template: '<ng-content></ng-content>',
430
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
431
+ inputs: ['color', 'large', 'medium', 'name', 'size', 'small', 'xlarge', 'xsmall'],
432
+ }]
433
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
434
+ let NvIconbutton = class NvIconbutton {
435
+ constructor(c, r, z) {
436
+ this.z = z;
437
+ c.detach();
438
+ this.el = r.nativeElement;
439
+ }
440
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvIconbutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
441
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
442
+ };
443
+ NvIconbutton = __decorate([
444
+ ProxyCmp({
445
+ inputs: ['active', 'disabled', 'emphasis', 'loading', 'name', 'shape', 'size', 'type']
446
+ })
447
+ ], NvIconbutton);
448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvIconbutton, decorators: [{
449
+ type: Component,
450
+ args: [{
451
+ selector: 'nv-iconbutton',
452
+ changeDetection: ChangeDetectionStrategy.OnPush,
453
+ template: '<ng-content></ng-content>',
454
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
455
+ inputs: ['active', 'disabled', 'emphasis', 'loading', 'name', 'shape', 'size', 'type'],
456
+ }]
457
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
458
+ let NvLoader = class NvLoader {
459
+ constructor(c, r, z) {
460
+ this.z = z;
461
+ c.detach();
462
+ this.el = r.nativeElement;
463
+ }
464
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
465
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvLoader, selector: "nv-loader", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
466
+ };
467
+ NvLoader = __decorate([
468
+ ProxyCmp({
469
+ inputs: ['color', 'size']
470
+ })
471
+ ], NvLoader);
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvLoader, decorators: [{
473
+ type: Component,
474
+ args: [{
475
+ selector: 'nv-loader',
476
+ changeDetection: ChangeDetectionStrategy.OnPush,
477
+ template: '<ng-content></ng-content>',
478
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
479
+ inputs: ['color', 'size'],
480
+ }]
481
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
482
+ let NvMenu = class NvMenu {
483
+ constructor(c, r, z) {
484
+ this.z = z;
485
+ c.detach();
486
+ this.el = r.nativeElement;
487
+ proxyOutputs(this, this.el, ['menuitemSelected']);
488
+ }
489
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
490
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvMenu, selector: "nv-menu", inputs: { disableCloseOnSelect: "disableCloseOnSelect", nested: "nested", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
491
+ };
492
+ NvMenu = __decorate([
493
+ ProxyCmp({
494
+ inputs: ['disableCloseOnSelect', 'nested', 'open', 'placement'],
495
+ methods: ['show', 'close']
496
+ })
497
+ ], NvMenu);
498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenu, decorators: [{
499
+ type: Component,
500
+ args: [{
501
+ selector: 'nv-menu',
502
+ changeDetection: ChangeDetectionStrategy.OnPush,
503
+ template: '<ng-content></ng-content>',
504
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
505
+ inputs: ['disableCloseOnSelect', 'nested', 'open', 'placement'],
506
+ }]
507
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
508
+ let NvMenuitem = class NvMenuitem {
509
+ constructor(c, r, z) {
510
+ this.z = z;
511
+ c.detach();
512
+ this.el = r.nativeElement;
513
+ }
514
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenuitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
515
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", shortcut: "shortcut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
516
+ };
517
+ NvMenuitem = __decorate([
518
+ ProxyCmp({
519
+ inputs: ['disabled', 'hasSubmenu', 'icon', 'shortcut']
520
+ })
521
+ ], NvMenuitem);
522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenuitem, decorators: [{
523
+ type: Component,
524
+ args: [{
525
+ selector: 'nv-menuitem',
526
+ changeDetection: ChangeDetectionStrategy.OnPush,
527
+ template: '<ng-content></ng-content>',
528
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
529
+ inputs: ['disabled', 'hasSubmenu', 'icon', 'shortcut'],
530
+ }]
531
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
532
+ let NvPopover = class NvPopover {
533
+ constructor(c, r, z) {
534
+ this.z = z;
535
+ c.detach();
536
+ this.el = r.nativeElement;
537
+ proxyOutputs(this, this.el, ['openChanged']);
538
+ }
539
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvPopover, 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: "17.3.9", 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 }); }
541
+ };
542
+ NvPopover = __decorate([
543
+ ProxyCmp({
544
+ inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'triggerMode'],
545
+ methods: ['show', 'hide', 'toggle']
546
+ })
547
+ ], NvPopover);
548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvPopover, decorators: [{
549
+ type: Component,
550
+ args: [{
551
+ selector: 'nv-popover',
552
+ changeDetection: ChangeDetectionStrategy.OnPush,
553
+ template: '<ng-content></ng-content>',
554
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
555
+ inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'triggerMode'],
556
+ }]
557
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
558
+ let NvRow = class NvRow {
559
+ constructor(c, r, z) {
560
+ this.z = z;
561
+ c.detach();
562
+ this.el = r.nativeElement;
563
+ }
564
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvRow, 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: "17.3.9", type: NvRow, selector: "nv-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
566
+ };
567
+ NvRow = __decorate([
568
+ ProxyCmp({})
569
+ ], NvRow);
570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvRow, decorators: [{
571
+ type: Component,
572
+ args: [{
573
+ selector: 'nv-row',
574
+ changeDetection: ChangeDetectionStrategy.OnPush,
575
+ template: '<ng-content></ng-content>',
576
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
577
+ inputs: [],
578
+ }]
579
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
580
+ let NvStack = class NvStack {
581
+ constructor(c, r, z) {
582
+ this.z = z;
583
+ c.detach();
584
+ this.el = r.nativeElement;
585
+ }
586
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvStack, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
587
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
588
+ };
589
+ NvStack = __decorate([
590
+ ProxyCmp({
591
+ inputs: ['fill', 'flex', 'full', 'gutter', 'vertical']
592
+ })
593
+ ], NvStack);
594
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvStack, decorators: [{
595
+ type: Component,
596
+ args: [{
597
+ selector: 'nv-stack',
598
+ changeDetection: ChangeDetectionStrategy.OnPush,
599
+ template: '<ng-content></ng-content>',
600
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
601
+ inputs: ['fill', 'flex', 'full', 'gutter', 'vertical'],
602
+ }]
603
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
604
+ let NvTooltip = class NvTooltip {
605
+ constructor(c, r, z) {
606
+ this.z = z;
607
+ c.detach();
608
+ this.el = r.nativeElement;
609
+ }
610
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
611
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
612
+ };
613
+ NvTooltip = __decorate([
614
+ ProxyCmp({
615
+ inputs: ['enterDelay', 'message', 'placement']
616
+ })
617
+ ], NvTooltip);
618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTooltip, decorators: [{
619
+ type: Component,
620
+ args: [{
621
+ selector: 'nv-tooltip',
622
+ changeDetection: ChangeDetectionStrategy.OnPush,
623
+ template: '<ng-content></ng-content>',
624
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
625
+ inputs: ['enterDelay', 'message', 'placement'],
626
+ }]
627
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
628
+
629
+ const DIRECTIVES = [
630
+ NvAlert,
631
+ NvAvatar,
632
+ NvBadge,
633
+ NvBase,
634
+ NvButton,
635
+ NvCol,
636
+ NvFieldcheckbox,
637
+ NvFieldnumber,
638
+ NvFieldpassword,
639
+ NvFieldradio,
640
+ NvFieldselect,
641
+ NvFieldtext,
642
+ NvFieldtextarea,
643
+ NvFieldtoggle,
644
+ NvIcon,
645
+ NvIconbutton,
646
+ NvLoader,
647
+ NvMenu,
648
+ NvMenuitem,
649
+ NvPopover,
650
+ NvRow,
651
+ NvStack,
652
+ NvTooltip
653
+ ];
654
+
655
+ class ValueAccessor {
656
+ constructor(el) {
657
+ this.el = el;
658
+ this.onChange = () => { };
659
+ this.onTouched = () => { };
660
+ this.lastValue = null;
661
+ }
662
+ writeValue(value) {
663
+ this.el.nativeElement.value = this.lastValue = value;
664
+ }
665
+ handleChangeEvent(value) {
666
+ if (value !== this.lastValue) {
667
+ this.lastValue = value;
668
+ this.onChange(value);
669
+ }
670
+ }
671
+ _handleBlurEvent() {
672
+ this.onTouched();
673
+ }
674
+ registerOnChange(fn) {
675
+ this.onChange = fn;
676
+ }
677
+ registerOnTouched(fn) {
678
+ this.onTouched = fn;
679
+ }
680
+ setDisabledState(isDisabled) {
681
+ this.el.nativeElement.disabled = isDisabled;
682
+ }
683
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
684
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
685
+ }
686
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: ValueAccessor, decorators: [{
687
+ type: Directive,
688
+ args: [{}]
689
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
690
+ type: HostListener,
691
+ args: ['focusout']
692
+ }] } });
693
+
694
+ class NvAlertValueAccessor extends ValueAccessor {
695
+ constructor(el) {
696
+ super(el);
697
+ }
698
+ handleHiddenChanged(event) {
699
+ this.handleChangeEvent(event.target.hidden);
700
+ }
701
+ writeValue(value) {
702
+ this.el.nativeElement.hidden = this.lastValue = value;
703
+ }
704
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvAlertValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
705
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvAlertValueAccessor, selector: "nv-alert", host: { listeners: { "hiddenChanged": "handleHiddenChanged($event)" } }, providers: [
706
+ {
707
+ provide: NG_VALUE_ACCESSOR,
708
+ useExisting: NvAlertValueAccessor,
709
+ multi: true,
710
+ },
711
+ ], usesInheritance: true, ngImport: i0 }); }
712
+ }
713
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvAlertValueAccessor, decorators: [{
714
+ type: Directive,
715
+ args: [{
716
+ selector: 'nv-alert',
717
+ providers: [
718
+ {
719
+ provide: NG_VALUE_ACCESSOR,
720
+ useExisting: NvAlertValueAccessor,
721
+ multi: true,
722
+ },
723
+ ],
724
+ }]
725
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleHiddenChanged: [{
726
+ type: HostListener,
727
+ args: ['hiddenChanged', ['$event']]
728
+ }] } });
729
+ class NvFieldcheckboxValueAccessor extends ValueAccessor {
730
+ constructor(el) {
731
+ super(el);
732
+ }
733
+ handleCheckedChanged(event) {
734
+ this.handleChangeEvent(event.target.checked);
735
+ }
736
+ writeValue(value) {
737
+ this.el.nativeElement.checked = this.lastValue = value;
738
+ }
739
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckboxValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
740
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldcheckboxValueAccessor, selector: "nv-fieldcheckbox", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
741
+ {
742
+ provide: NG_VALUE_ACCESSOR,
743
+ useExisting: NvFieldcheckboxValueAccessor,
744
+ multi: true,
745
+ },
746
+ ], usesInheritance: true, ngImport: i0 }); }
747
+ }
748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckboxValueAccessor, decorators: [{
749
+ type: Directive,
750
+ args: [{
751
+ selector: 'nv-fieldcheckbox',
752
+ providers: [
753
+ {
754
+ provide: NG_VALUE_ACCESSOR,
755
+ useExisting: NvFieldcheckboxValueAccessor,
756
+ multi: true,
757
+ },
758
+ ],
759
+ }]
760
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
761
+ type: HostListener,
762
+ args: ['checkedChanged', ['$event']]
763
+ }] } });
764
+ class NvFieldnumberValueAccessor extends ValueAccessor {
765
+ constructor(el) {
766
+ super(el);
767
+ }
768
+ handleValueChanged(event) {
769
+ this.handleChangeEvent(event.target.value);
770
+ }
771
+ writeValue(value) {
772
+ this.el.nativeElement.value = this.lastValue = value;
773
+ }
774
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumberValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
775
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldnumberValueAccessor, selector: "nv-fieldnumber", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
776
+ {
777
+ provide: NG_VALUE_ACCESSOR,
778
+ useExisting: NvFieldnumberValueAccessor,
779
+ multi: true,
780
+ },
781
+ ], usesInheritance: true, ngImport: i0 }); }
782
+ }
783
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumberValueAccessor, decorators: [{
784
+ type: Directive,
785
+ args: [{
786
+ selector: 'nv-fieldnumber',
787
+ providers: [
788
+ {
789
+ provide: NG_VALUE_ACCESSOR,
790
+ useExisting: NvFieldnumberValueAccessor,
791
+ multi: true,
792
+ },
793
+ ],
794
+ }]
795
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
796
+ type: HostListener,
797
+ args: ['valueChanged', ['$event']]
798
+ }] } });
799
+ class NvFieldpasswordValueAccessor extends ValueAccessor {
800
+ constructor(el) {
801
+ super(el);
802
+ }
803
+ handleValueChanged(event) {
804
+ this.handleChangeEvent(event.target.value);
805
+ }
806
+ writeValue(value) {
807
+ this.el.nativeElement.value = this.lastValue = value;
808
+ }
809
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpasswordValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
810
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldpasswordValueAccessor, selector: "nv-fieldpassword", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
811
+ {
812
+ provide: NG_VALUE_ACCESSOR,
813
+ useExisting: NvFieldpasswordValueAccessor,
814
+ multi: true,
815
+ },
816
+ ], usesInheritance: true, ngImport: i0 }); }
817
+ }
818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpasswordValueAccessor, decorators: [{
819
+ type: Directive,
820
+ args: [{
821
+ selector: 'nv-fieldpassword',
822
+ providers: [
823
+ {
824
+ provide: NG_VALUE_ACCESSOR,
825
+ useExisting: NvFieldpasswordValueAccessor,
826
+ multi: true,
827
+ },
828
+ ],
829
+ }]
830
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
831
+ type: HostListener,
832
+ args: ['valueChanged', ['$event']]
833
+ }] } });
834
+ class NvFieldradioValueAccessor extends ValueAccessor {
835
+ constructor(el) {
836
+ super(el);
837
+ }
838
+ handleCheckedChanged(event) {
839
+ this.handleChangeEvent(event.target.checked);
840
+ }
841
+ writeValue(value) {
842
+ this.el.nativeElement.checked = this.lastValue = value;
843
+ }
844
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradioValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
845
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradioValueAccessor, selector: "nv-fieldradio", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
846
+ {
847
+ provide: NG_VALUE_ACCESSOR,
848
+ useExisting: NvFieldradioValueAccessor,
849
+ multi: true,
850
+ },
851
+ ], usesInheritance: true, ngImport: i0 }); }
852
+ }
853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradioValueAccessor, decorators: [{
854
+ type: Directive,
855
+ args: [{
856
+ selector: 'nv-fieldradio',
857
+ providers: [
858
+ {
859
+ provide: NG_VALUE_ACCESSOR,
860
+ useExisting: NvFieldradioValueAccessor,
861
+ multi: true,
862
+ },
863
+ ],
864
+ }]
865
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
866
+ type: HostListener,
867
+ args: ['checkedChanged', ['$event']]
868
+ }] } });
869
+ class NvFieldselectValueAccessor extends ValueAccessor {
870
+ constructor(el) {
871
+ super(el);
872
+ }
873
+ handleValueChanged(event) {
874
+ this.handleChangeEvent(event.target.value);
875
+ }
876
+ writeValue(value) {
877
+ this.el.nativeElement.value = this.lastValue = value;
878
+ }
879
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
880
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldselectValueAccessor, selector: "nv-fieldselect", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
881
+ {
882
+ provide: NG_VALUE_ACCESSOR,
883
+ useExisting: NvFieldselectValueAccessor,
884
+ multi: true,
885
+ },
886
+ ], usesInheritance: true, ngImport: i0 }); }
887
+ }
888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselectValueAccessor, decorators: [{
889
+ type: Directive,
890
+ args: [{
891
+ selector: 'nv-fieldselect',
892
+ providers: [
893
+ {
894
+ provide: NG_VALUE_ACCESSOR,
895
+ useExisting: NvFieldselectValueAccessor,
896
+ multi: true,
897
+ },
898
+ ],
899
+ }]
900
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
901
+ type: HostListener,
902
+ args: ['valueChanged', ['$event']]
903
+ }] } });
904
+ class NvFieldtextValueAccessor extends ValueAccessor {
905
+ constructor(el) {
906
+ super(el);
907
+ }
908
+ handleValueChanged(event) {
909
+ this.handleChangeEvent(event.target.value);
910
+ }
911
+ writeValue(value) {
912
+ this.el.nativeElement.value = this.lastValue = value;
913
+ }
914
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
915
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextValueAccessor, selector: "nv-fieldtext", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
916
+ {
917
+ provide: NG_VALUE_ACCESSOR,
918
+ useExisting: NvFieldtextValueAccessor,
919
+ multi: true,
920
+ },
921
+ ], usesInheritance: true, ngImport: i0 }); }
922
+ }
923
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextValueAccessor, decorators: [{
924
+ type: Directive,
925
+ args: [{
926
+ selector: 'nv-fieldtext',
927
+ providers: [
928
+ {
929
+ provide: NG_VALUE_ACCESSOR,
930
+ useExisting: NvFieldtextValueAccessor,
931
+ multi: true,
932
+ },
933
+ ],
934
+ }]
935
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
936
+ type: HostListener,
937
+ args: ['valueChanged', ['$event']]
938
+ }] } });
939
+ class NvFieldtextareaValueAccessor extends ValueAccessor {
940
+ constructor(el) {
941
+ super(el);
942
+ }
943
+ handleValueChanged(event) {
944
+ this.handleChangeEvent(event.target.value);
945
+ }
946
+ writeValue(value) {
947
+ this.el.nativeElement.value = this.lastValue = value;
948
+ }
949
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextareaValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
950
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextareaValueAccessor, selector: "nv-fieldtextarea", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
951
+ {
952
+ provide: NG_VALUE_ACCESSOR,
953
+ useExisting: NvFieldtextareaValueAccessor,
954
+ multi: true,
955
+ },
956
+ ], usesInheritance: true, ngImport: i0 }); }
957
+ }
958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextareaValueAccessor, decorators: [{
959
+ type: Directive,
960
+ args: [{
961
+ selector: 'nv-fieldtextarea',
962
+ providers: [
963
+ {
964
+ provide: NG_VALUE_ACCESSOR,
965
+ useExisting: NvFieldtextareaValueAccessor,
966
+ multi: true,
967
+ },
968
+ ],
969
+ }]
970
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
971
+ type: HostListener,
972
+ args: ['valueChanged', ['$event']]
973
+ }] } });
974
+ class NvFieldtoggleValueAccessor extends ValueAccessor {
975
+ constructor(el) {
976
+ super(el);
977
+ }
978
+ handleCheckedChanged(event) {
979
+ this.handleChangeEvent(event.target.checked);
980
+ }
981
+ writeValue(value) {
982
+ this.el.nativeElement.checked = this.lastValue = value;
983
+ }
984
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtoggleValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
985
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtoggleValueAccessor, selector: "nv-fieldtoggle", host: { listeners: { "checkedChanged": "handleCheckedChanged($event)" } }, providers: [
986
+ {
987
+ provide: NG_VALUE_ACCESSOR,
988
+ useExisting: NvFieldtoggleValueAccessor,
989
+ multi: true,
990
+ },
991
+ ], usesInheritance: true, ngImport: i0 }); }
992
+ }
993
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtoggleValueAccessor, decorators: [{
994
+ type: Directive,
995
+ args: [{
996
+ selector: 'nv-fieldtoggle',
997
+ providers: [
998
+ {
999
+ provide: NG_VALUE_ACCESSOR,
1000
+ useExisting: NvFieldtoggleValueAccessor,
1001
+ multi: true,
1002
+ },
1003
+ ],
1004
+ }]
1005
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCheckedChanged: [{
1006
+ type: HostListener,
1007
+ args: ['checkedChanged', ['$event']]
1008
+ }] } });
1009
+ class NvPopoverValueAccessor extends ValueAccessor {
1010
+ constructor(el) {
1011
+ super(el);
1012
+ }
1013
+ handleOpenChanged(event) {
1014
+ this.handleChangeEvent(event.target.open);
1015
+ }
1016
+ writeValue(value) {
1017
+ this.el.nativeElement.open = this.lastValue = value;
1018
+ }
1019
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvPopoverValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1020
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvPopoverValueAccessor, selector: "nv-popover", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
1021
+ {
1022
+ provide: NG_VALUE_ACCESSOR,
1023
+ useExisting: NvPopoverValueAccessor,
1024
+ multi: true,
1025
+ },
1026
+ ], usesInheritance: true, ngImport: i0 }); }
1027
+ }
1028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvPopoverValueAccessor, decorators: [{
1029
+ type: Directive,
1030
+ args: [{
1031
+ selector: 'nv-popover',
1032
+ providers: [
1033
+ {
1034
+ provide: NG_VALUE_ACCESSOR,
1035
+ useExisting: NvPopoverValueAccessor,
1036
+ multi: true,
1037
+ },
1038
+ ],
1039
+ }]
1040
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
1041
+ type: HostListener,
1042
+ args: ['openChanged', ['$event']]
1043
+ }] } });
1044
+ const VALUE_ACCESSORS = [
1045
+ NvAlertValueAccessor,
1046
+ NvFieldcheckboxValueAccessor,
1047
+ NvFieldnumberValueAccessor,
1048
+ NvFieldpasswordValueAccessor,
1049
+ NvFieldradioValueAccessor,
1050
+ NvFieldselectValueAccessor,
1051
+ NvFieldtextValueAccessor,
1052
+ NvFieldtextareaValueAccessor,
1053
+ NvFieldtoggleValueAccessor,
1054
+ NvPopoverValueAccessor,
1055
+ ];
1056
+
1057
+ /**
1058
+ * Initialize the Nova Components
1059
+ *
1060
+ * @returns {Provider} - The provider to be used for nova components
1061
+ */
1062
+ function provideNovaComponents() {
1063
+ return {
1064
+ provide: APP_INITIALIZER,
1065
+ useFactory: () => defineCustomElements,
1066
+ multi: true,
1067
+ };
1068
+ }
1069
+ class NovaComponentsModule {
1070
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1071
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTooltip], exports: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTooltip] }); }
1072
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, providers: [provideNovaComponents()] }); }
1073
+ }
1074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, decorators: [{
1075
+ type: NgModule,
1076
+ args: [{
1077
+ declarations: [...DIRECTIVES],
1078
+ exports: [...DIRECTIVES],
1079
+ providers: [provideNovaComponents()],
1080
+ }]
1081
+ }] });
1082
+ class NovaComponentsValueAccessorModule {
1083
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1084
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, declarations: [NvAlertValueAccessor, NvFieldcheckboxValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtoggleValueAccessor, NvPopoverValueAccessor], exports: [NvAlertValueAccessor, NvFieldcheckboxValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtoggleValueAccessor, NvPopoverValueAccessor] }); }
1085
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
1086
+ }
1087
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
1088
+ type: NgModule,
1089
+ args: [{
1090
+ declarations: [...VALUE_ACCESSORS],
1091
+ exports: [...VALUE_ACCESSORS],
1092
+ }]
1093
+ }] });
1094
+
1095
+ /*
1096
+ * Public API Surface of nova-components
1097
+ */
1098
+
1099
+ /**
1100
+ * Generated bundle index. Do not edit.
1101
+ */
1102
+
1103
+ export { DIRECTIVES, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtoggle, NvFieldtoggleValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvPopoverValueAccessor, NvRow, NvStack, NvTooltip, VALUE_ACCESSORS, provideNovaComponents };
1104
+ //# sourceMappingURL=nova-components.mjs.map