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