@nova-design-system/nova-angular 3.0.0-beta.38 → 3.0.0-beta.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +177 -38
- package/dist/nova-components/esm2022/lib/nova-components.module.mjs +3 -4
- package/dist/nova-components/esm2022/lib/stencil-generated/components.mjs +84 -244
- package/dist/nova-components/esm2022/lib/stencil-generated/index.mjs +2 -9
- package/dist/nova-components/esm2022/public-api.mjs +1 -2
- package/dist/nova-components/fesm2022/nova-components.mjs +86 -247
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/nova-components.module.d.ts +1 -1
- package/dist/nova-components/lib/stencil-generated/components.d.ts +95 -141
- package/dist/nova-components/lib/stencil-generated/index.d.ts +1 -1
- package/dist/nova-components/public-api.d.ts +0 -1
- package/package.json +9 -3
- package/dist/nova-components/package.json +0 -25
|
@@ -71,11 +71,11 @@ let NvAlert = class NvAlert {
|
|
|
71
71
|
proxyOutputs(this, this.el, ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked']);
|
|
72
72
|
}
|
|
73
73
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
75
75
|
};
|
|
76
76
|
NvAlert = __decorate([
|
|
77
77
|
ProxyCmp({
|
|
78
|
-
inputs: ['color', 'dismissible', 'feedback', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose']
|
|
78
|
+
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose']
|
|
79
79
|
})
|
|
80
80
|
], NvAlert);
|
|
81
81
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvAlert, decorators: [{
|
|
@@ -85,7 +85,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
85
85
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
86
86
|
template: '<ng-content></ng-content>',
|
|
87
87
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
88
|
-
inputs: ['color', 'dismissible', 'feedback', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose'],
|
|
88
|
+
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose'],
|
|
89
89
|
}]
|
|
90
90
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
91
91
|
let NvAvatar = class NvAvatar {
|
|
@@ -212,11 +212,11 @@ let NvButton = class NvButton {
|
|
|
212
212
|
this.el = r.nativeElement;
|
|
213
213
|
}
|
|
214
214
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
215
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvButton, selector: "nv-button", inputs: { active: "active", danger: "danger", disabled: "disabled", emphasis: "emphasis", fluid: "fluid", loading: "loading", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
215
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvButton, selector: "nv-button", inputs: { active: "active", danger: "danger", disabled: "disabled", emphasis: "emphasis", fluid: "fluid", form: "form", loading: "loading", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
216
216
|
};
|
|
217
217
|
NvButton = __decorate([
|
|
218
218
|
ProxyCmp({
|
|
219
|
-
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'loading', 'size', 'type']
|
|
219
|
+
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'form', 'loading', 'size', 'type']
|
|
220
220
|
})
|
|
221
221
|
], NvButton);
|
|
222
222
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvButton, decorators: [{
|
|
@@ -226,7 +226,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
226
226
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
227
227
|
template: '<ng-content></ng-content>',
|
|
228
228
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
229
|
-
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'loading', 'size', 'type'],
|
|
229
|
+
inputs: ['active', 'danger', 'disabled', 'emphasis', 'fluid', 'form', 'loading', 'size', 'type'],
|
|
230
|
+
}]
|
|
231
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
232
|
+
let NvCalendar = class NvCalendar {
|
|
233
|
+
constructor(c, r, z) {
|
|
234
|
+
this.z = z;
|
|
235
|
+
c.detach();
|
|
236
|
+
this.el = r.nativeElement;
|
|
237
|
+
proxyOutputs(this, this.el, ['singleDateChange', 'rangeDateChange']);
|
|
238
|
+
}
|
|
239
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
240
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvCalendar, selector: "nv-calendar", inputs: { dateFormat: "dateFormat", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", rangeValue: "rangeValue", selectionType: "selectionType", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", singleValue: "singleValue" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
241
|
+
};
|
|
242
|
+
NvCalendar = __decorate([
|
|
243
|
+
ProxyCmp({
|
|
244
|
+
inputs: ['dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue']
|
|
245
|
+
})
|
|
246
|
+
], NvCalendar);
|
|
247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvCalendar, decorators: [{
|
|
248
|
+
type: Component,
|
|
249
|
+
args: [{
|
|
250
|
+
selector: 'nv-calendar',
|
|
251
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
252
|
+
template: '<ng-content></ng-content>',
|
|
253
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
254
|
+
inputs: ['dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue'],
|
|
230
255
|
}]
|
|
231
256
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
232
257
|
let NvCol = class NvCol {
|
|
@@ -258,13 +283,14 @@ let NvDatagrid = class NvDatagrid {
|
|
|
258
283
|
this.z = z;
|
|
259
284
|
c.detach();
|
|
260
285
|
this.el = r.nativeElement;
|
|
286
|
+
proxyOutputs(this, this.el, ['action']);
|
|
261
287
|
}
|
|
262
288
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagrid, 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: "17.3.9", type: NvDatagrid, selector: "nv-datagrid", inputs: { columns: "columns", columnsJson: "columnsJson", data: "data", dataJson: "dataJson", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
289
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagrid, selector: "nv-datagrid", inputs: { columns: "columns", columnsJson: "columnsJson", data: "data", dataJson: "dataJson", fallbackValue: "fallbackValue", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
264
290
|
};
|
|
265
291
|
NvDatagrid = __decorate([
|
|
266
292
|
ProxyCmp({
|
|
267
|
-
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
293
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
268
294
|
})
|
|
269
295
|
], NvDatagrid);
|
|
270
296
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagrid, decorators: [{
|
|
@@ -274,29 +300,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
274
300
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
275
301
|
template: '<ng-content></ng-content>',
|
|
276
302
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
277
|
-
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
278
|
-
}]
|
|
279
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
280
|
-
let NvDatagridbody = class NvDatagridbody {
|
|
281
|
-
constructor(c, r, z) {
|
|
282
|
-
this.z = z;
|
|
283
|
-
c.detach();
|
|
284
|
-
this.el = r.nativeElement;
|
|
285
|
-
}
|
|
286
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridbody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
287
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridbody, selector: "nv-datagridbody", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
288
|
-
};
|
|
289
|
-
NvDatagridbody = __decorate([
|
|
290
|
-
ProxyCmp({})
|
|
291
|
-
], NvDatagridbody);
|
|
292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridbody, decorators: [{
|
|
293
|
-
type: Component,
|
|
294
|
-
args: [{
|
|
295
|
-
selector: 'nv-datagridbody',
|
|
296
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
297
|
-
template: '<ng-content></ng-content>',
|
|
298
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
299
|
-
inputs: [],
|
|
303
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
300
304
|
}]
|
|
301
305
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
302
306
|
let NvDatagridcolumn = class NvDatagridcolumn {
|
|
@@ -323,74 +327,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
323
327
|
inputs: ['accessor', 'header'],
|
|
324
328
|
}]
|
|
325
329
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
326
|
-
let NvDatagriddatacell = class NvDatagriddatacell {
|
|
327
|
-
constructor(c, r, z) {
|
|
328
|
-
this.z = z;
|
|
329
|
-
c.detach();
|
|
330
|
-
this.el = r.nativeElement;
|
|
331
|
-
}
|
|
332
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagriddatacell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
333
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagriddatacell, selector: "nv-datagriddatacell", inputs: { accessor: "accessor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
334
|
-
};
|
|
335
|
-
NvDatagriddatacell = __decorate([
|
|
336
|
-
ProxyCmp({
|
|
337
|
-
inputs: ['accessor']
|
|
338
|
-
})
|
|
339
|
-
], NvDatagriddatacell);
|
|
340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagriddatacell, decorators: [{
|
|
341
|
-
type: Component,
|
|
342
|
-
args: [{
|
|
343
|
-
selector: 'nv-datagriddatacell',
|
|
344
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
345
|
-
template: '<ng-content></ng-content>',
|
|
346
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
347
|
-
inputs: ['accessor'],
|
|
348
|
-
}]
|
|
349
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
350
|
-
let NvDatagridhead = class NvDatagridhead {
|
|
351
|
-
constructor(c, r, z) {
|
|
352
|
-
this.z = z;
|
|
353
|
-
c.detach();
|
|
354
|
-
this.el = r.nativeElement;
|
|
355
|
-
}
|
|
356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridhead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
357
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridhead, selector: "nv-datagridhead", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
358
|
-
};
|
|
359
|
-
NvDatagridhead = __decorate([
|
|
360
|
-
ProxyCmp({})
|
|
361
|
-
], NvDatagridhead);
|
|
362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridhead, decorators: [{
|
|
363
|
-
type: Component,
|
|
364
|
-
args: [{
|
|
365
|
-
selector: 'nv-datagridhead',
|
|
366
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
367
|
-
template: '<ng-content></ng-content>',
|
|
368
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
369
|
-
inputs: [],
|
|
370
|
-
}]
|
|
371
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
372
|
-
let NvDatagridrow = class NvDatagridrow {
|
|
373
|
-
constructor(c, r, z) {
|
|
374
|
-
this.z = z;
|
|
375
|
-
c.detach();
|
|
376
|
-
this.el = r.nativeElement;
|
|
377
|
-
}
|
|
378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridrow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
379
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridrow, selector: "nv-datagridrow", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
380
|
-
};
|
|
381
|
-
NvDatagridrow = __decorate([
|
|
382
|
-
ProxyCmp({})
|
|
383
|
-
], NvDatagridrow);
|
|
384
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridrow, decorators: [{
|
|
385
|
-
type: Component,
|
|
386
|
-
args: [{
|
|
387
|
-
selector: 'nv-datagridrow',
|
|
388
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
389
|
-
template: '<ng-content></ng-content>',
|
|
390
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
391
|
-
inputs: [],
|
|
392
|
-
}]
|
|
393
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
394
330
|
let NvDialog = class NvDialog {
|
|
395
331
|
constructor(c, r, z) {
|
|
396
332
|
this.z = z;
|
|
@@ -399,11 +335,11 @@ let NvDialog = class NvDialog {
|
|
|
399
335
|
proxyOutputs(this, this.el, ['close']);
|
|
400
336
|
}
|
|
401
337
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
402
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDialog, selector: "nv-dialog", inputs: { clickOutside: "clickOutside", controlled: "controlled", full: "full",
|
|
338
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDialog, selector: "nv-dialog", inputs: { clickOutside: "clickOutside", controlled: "controlled", full: "full", open: "open", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
403
339
|
};
|
|
404
340
|
NvDialog = __decorate([
|
|
405
341
|
ProxyCmp({
|
|
406
|
-
inputs: ['clickOutside', 'controlled', 'full', '
|
|
342
|
+
inputs: ['clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
407
343
|
methods: ['show', 'hide']
|
|
408
344
|
})
|
|
409
345
|
], NvDialog);
|
|
@@ -414,7 +350,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
414
350
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
415
351
|
template: '<ng-content></ng-content>',
|
|
416
352
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
417
|
-
inputs: ['clickOutside', 'controlled', 'full', '
|
|
353
|
+
inputs: ['clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
418
354
|
}]
|
|
419
355
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
420
356
|
let NvDialogfooter = class NvDialogfooter {
|
|
@@ -422,14 +358,14 @@ let NvDialogfooter = class NvDialogfooter {
|
|
|
422
358
|
this.z = z;
|
|
423
359
|
c.detach();
|
|
424
360
|
this.el = r.nativeElement;
|
|
425
|
-
proxyOutputs(this, this.el, ['nvDialogCanceled', '
|
|
361
|
+
proxyOutputs(this, this.el, ['nvDialogCanceled', 'nvDialogPrimaryClicked']);
|
|
426
362
|
}
|
|
427
363
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDialogfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
428
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", leadingIcon: "leadingIcon",
|
|
364
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
429
365
|
};
|
|
430
366
|
NvDialogfooter = __decorate([
|
|
431
367
|
ProxyCmp({
|
|
432
|
-
inputs: ['cancelLabel', 'danger', 'disabled', 'leadingIcon', '
|
|
368
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable']
|
|
433
369
|
})
|
|
434
370
|
], NvDialogfooter);
|
|
435
371
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDialogfooter, decorators: [{
|
|
@@ -439,7 +375,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
439
375
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
440
376
|
template: '<ng-content></ng-content>',
|
|
441
377
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
442
|
-
inputs: ['cancelLabel', 'danger', 'disabled', 'leadingIcon', '
|
|
378
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
|
|
443
379
|
}]
|
|
444
380
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
445
381
|
let NvDialogheader = class NvDialogheader {
|
|
@@ -474,11 +410,11 @@ let NvFieldcheckbox = class NvFieldcheckbox {
|
|
|
474
410
|
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
475
411
|
}
|
|
476
412
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
477
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hideLabel: "hideLabel", indeterminate: "indeterminate", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", readonly: "readonly", required: "required", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
413
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hideLabel: "hideLabel", indeterminate: "indeterminate", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", readonly: "readonly", required: "required", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
478
414
|
};
|
|
479
415
|
NvFieldcheckbox = __decorate([
|
|
480
416
|
ProxyCmp({
|
|
481
|
-
inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
417
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
482
418
|
})
|
|
483
419
|
], NvFieldcheckbox);
|
|
484
420
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, decorators: [{
|
|
@@ -488,7 +424,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
488
424
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
489
425
|
template: '<ng-content></ng-content>',
|
|
490
426
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
491
|
-
inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
427
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
492
428
|
}]
|
|
493
429
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
494
430
|
let NvFielddropdown = class NvFielddropdown {
|
|
@@ -496,14 +432,14 @@ let NvFielddropdown = class NvFielddropdown {
|
|
|
496
432
|
this.z = z;
|
|
497
433
|
c.detach();
|
|
498
434
|
this.el = r.nativeElement;
|
|
499
|
-
proxyOutputs(this, this.el, ['
|
|
435
|
+
proxyOutputs(this, this.el, ['valueChanged', 'dropdownItemSelected']);
|
|
500
436
|
}
|
|
501
437
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFielddropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
502
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFielddropdown, selector: "nv-fielddropdown", inputs: { autocomplete: "autocomplete", description: "description", disabled: "disabled",
|
|
438
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFielddropdown, selector: "nv-fielddropdown", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterable: "filterable", inputId: "inputId", label: "label", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
503
439
|
};
|
|
504
440
|
NvFielddropdown = __decorate([
|
|
505
441
|
ProxyCmp({
|
|
506
|
-
inputs: ['autocomplete', 'description', 'disabled', '
|
|
442
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
507
443
|
methods: ['getFilterText']
|
|
508
444
|
})
|
|
509
445
|
], NvFielddropdown);
|
|
@@ -514,7 +450,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
514
450
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
515
451
|
template: '<ng-content></ng-content>',
|
|
516
452
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
517
|
-
inputs: ['autocomplete', 'description', 'disabled', '
|
|
453
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
518
454
|
}]
|
|
519
455
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
520
456
|
let NvFielddropdownitem = class NvFielddropdownitem {
|
|
@@ -522,7 +458,7 @@ let NvFielddropdownitem = class NvFielddropdownitem {
|
|
|
522
458
|
this.z = z;
|
|
523
459
|
c.detach();
|
|
524
460
|
this.el = r.nativeElement;
|
|
525
|
-
proxyOutputs(this, this.el, ['
|
|
461
|
+
proxyOutputs(this, this.el, ['dropdownItemSelected']);
|
|
526
462
|
}
|
|
527
463
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFielddropdownitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
528
464
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFielddropdownitem, selector: "nv-fielddropdownitem", inputs: { disabled: "disabled", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -572,14 +508,14 @@ let NvFieldmultiselect = class NvFieldmultiselect {
|
|
|
572
508
|
this.z = z;
|
|
573
509
|
c.detach();
|
|
574
510
|
this.el = r.nativeElement;
|
|
575
|
-
proxyOutputs(this, this.el, ['
|
|
511
|
+
proxyOutputs(this, this.el, ['valueChanged', 'multiselectChange']);
|
|
576
512
|
}
|
|
577
513
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldmultiselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
578
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldmultiselect, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", disabled: "disabled",
|
|
514
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldmultiselect, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterable: "filterable", inputId: "inputId", label: "label", maxHeight: "maxHeight", mode: "mode", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
579
515
|
};
|
|
580
516
|
NvFieldmultiselect = __decorate([
|
|
581
517
|
ProxyCmp({
|
|
582
|
-
inputs: ['autocomplete', 'badgeLabel', 'debounceDelay', 'description', 'disabled', '
|
|
518
|
+
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'maxHeight', 'mode', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
583
519
|
methods: ['getFilterText', 'resetFilter', 'getSelectedValues']
|
|
584
520
|
})
|
|
585
521
|
], NvFieldmultiselect);
|
|
@@ -590,7 +526,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
590
526
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
591
527
|
template: '<ng-content></ng-content>',
|
|
592
528
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
593
|
-
inputs: ['autocomplete', 'badgeLabel', 'debounceDelay', 'description', 'disabled', '
|
|
529
|
+
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'inputId', 'label', 'maxHeight', 'mode', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
594
530
|
}]
|
|
595
531
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
596
532
|
let NvFieldnumber = class NvFieldnumber {
|
|
@@ -601,11 +537,11 @@ let NvFieldnumber = class NvFieldnumber {
|
|
|
601
537
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
602
538
|
}
|
|
603
539
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
604
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", max: "max", message: "message", min: "min", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
605
541
|
};
|
|
606
542
|
NvFieldnumber = __decorate([
|
|
607
543
|
ProxyCmp({
|
|
608
|
-
inputs: ['description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
544
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
609
545
|
})
|
|
610
546
|
], NvFieldnumber);
|
|
611
547
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, decorators: [{
|
|
@@ -615,7 +551,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
615
551
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
616
552
|
template: '<ng-content></ng-content>',
|
|
617
553
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
618
|
-
inputs: ['description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
554
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
619
555
|
}]
|
|
620
556
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
621
557
|
let NvFieldpassword = class NvFieldpassword {
|
|
@@ -626,11 +562,11 @@ let NvFieldpassword = class NvFieldpassword {
|
|
|
626
562
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
627
563
|
}
|
|
628
564
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
629
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hidePasswordIcon: "hidePasswordIcon", inputId: "inputId", label: "label", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showPassword: "showPassword", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
565
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hidePasswordIcon: "hidePasswordIcon", inputId: "inputId", label: "label", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showPassword: "showPassword", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
630
566
|
};
|
|
631
567
|
NvFieldpassword = __decorate([
|
|
632
568
|
ProxyCmp({
|
|
633
|
-
inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
569
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
634
570
|
})
|
|
635
571
|
], NvFieldpassword);
|
|
636
572
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, decorators: [{
|
|
@@ -640,7 +576,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
640
576
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
641
577
|
template: '<ng-content></ng-content>',
|
|
642
578
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
643
|
-
inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
579
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
644
580
|
}]
|
|
645
581
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
646
582
|
let NvFieldradio = class NvFieldradio {
|
|
@@ -651,11 +587,11 @@ let NvFieldradio = class NvFieldradio {
|
|
|
651
587
|
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
652
588
|
}
|
|
653
589
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
654
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradio, selector: "nv-fieldradio", inputs: { checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
590
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
655
591
|
};
|
|
656
592
|
NvFieldradio = __decorate([
|
|
657
593
|
ProxyCmp({
|
|
658
|
-
inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value']
|
|
594
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value']
|
|
659
595
|
})
|
|
660
596
|
], NvFieldradio);
|
|
661
597
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradio, decorators: [{
|
|
@@ -665,7 +601,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
665
601
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
666
602
|
template: '<ng-content></ng-content>',
|
|
667
603
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
668
|
-
inputs: ['checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
|
|
604
|
+
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
|
|
669
605
|
}]
|
|
670
606
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
671
607
|
let NvFieldselect = class NvFieldselect {
|
|
@@ -676,11 +612,11 @@ let NvFieldselect = class NvFieldselect {
|
|
|
676
612
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
677
613
|
}
|
|
678
614
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
679
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldselect, selector: "nv-fieldselect", inputs: { description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", 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
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldselect, selector: "nv-fieldselect", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", message: "message", multiple: "multiple", name: "name", options: "options", readonly: "readonly", required: "required", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
680
616
|
};
|
|
681
617
|
NvFieldselect = __decorate([
|
|
682
618
|
ProxyCmp({
|
|
683
|
-
inputs: ['description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
619
|
+
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
684
620
|
})
|
|
685
621
|
], NvFieldselect);
|
|
686
622
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, decorators: [{
|
|
@@ -690,7 +626,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
690
626
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
691
627
|
template: '<ng-content></ng-content>',
|
|
692
628
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
693
|
-
inputs: ['description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
629
|
+
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
694
630
|
}]
|
|
695
631
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
696
632
|
let NvFieldtext = class NvFieldtext {
|
|
@@ -701,11 +637,11 @@ let NvFieldtext = class NvFieldtext {
|
|
|
701
637
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
702
638
|
}
|
|
703
639
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
704
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", success: "success", textInputType: "textInputType", type: "type", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", success: "success", textInputType: "textInputType", type: "type", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
705
641
|
};
|
|
706
642
|
NvFieldtext = __decorate([
|
|
707
643
|
ProxyCmp({
|
|
708
|
-
inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
644
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
709
645
|
})
|
|
710
646
|
], NvFieldtext);
|
|
711
647
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, decorators: [{
|
|
@@ -715,7 +651,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
715
651
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
716
652
|
template: '<ng-content></ng-content>',
|
|
717
653
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
718
|
-
inputs: ['autocomplete', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
654
|
+
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
719
655
|
}]
|
|
720
656
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
721
657
|
let NvFieldtextarea = class NvFieldtextarea {
|
|
@@ -726,11 +662,11 @@ let NvFieldtextarea = class NvFieldtextarea {
|
|
|
726
662
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
727
663
|
}
|
|
728
664
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
729
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", maxlength: "maxlength", message: "message", minlength: "minlength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resize: "resize", rows: "rows", success: "success", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
730
666
|
};
|
|
731
667
|
NvFieldtextarea = __decorate([
|
|
732
668
|
ProxyCmp({
|
|
733
|
-
inputs: ['autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
669
|
+
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
734
670
|
})
|
|
735
671
|
], NvFieldtextarea);
|
|
736
672
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, decorators: [{
|
|
@@ -740,7 +676,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
740
676
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
741
677
|
template: '<ng-content></ng-content>',
|
|
742
678
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
743
|
-
inputs: ['autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
679
|
+
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
744
680
|
}]
|
|
745
681
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
746
682
|
let NvFieldtime = class NvFieldtime {
|
|
@@ -751,11 +687,11 @@ let NvFieldtime = class NvFieldtime {
|
|
|
751
687
|
proxyOutputs(this, this.el, ['valueChanged']);
|
|
752
688
|
}
|
|
753
689
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
754
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtime, selector: "nv-fieldtime", inputs: { 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
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtime, selector: "nv-fieldtime", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", format: "format", inputId: "inputId", label: "label", max: "max", min: "min", name: "name", open: "open", readonly: "readonly", required: "required", step: "step", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
755
691
|
};
|
|
756
692
|
NvFieldtime = __decorate([
|
|
757
693
|
ProxyCmp({
|
|
758
|
-
inputs: ['description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
694
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
759
695
|
})
|
|
760
696
|
], NvFieldtime);
|
|
761
697
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtime, decorators: [{
|
|
@@ -765,7 +701,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
765
701
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
766
702
|
template: '<ng-content></ng-content>',
|
|
767
703
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
768
|
-
inputs: ['description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
704
|
+
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
769
705
|
}]
|
|
770
706
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
771
707
|
let NvIcon = class NvIcon {
|
|
@@ -968,13 +904,14 @@ let NvTable = class NvTable {
|
|
|
968
904
|
this.z = z;
|
|
969
905
|
c.detach();
|
|
970
906
|
this.el = r.nativeElement;
|
|
907
|
+
proxyOutputs(this, this.el, ['action']);
|
|
971
908
|
}
|
|
972
909
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
973
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTable, selector: "nv-table", inputs: {
|
|
910
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTable, selector: "nv-table", inputs: { columnsConfig: "columnsConfig", columnsConfigJson: "columnsConfigJson", data: "data", dataJson: "dataJson", fallbackValue: "fallbackValue", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
974
911
|
};
|
|
975
912
|
NvTable = __decorate([
|
|
976
913
|
ProxyCmp({
|
|
977
|
-
inputs: ['
|
|
914
|
+
inputs: ['columnsConfig', 'columnsConfigJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
978
915
|
})
|
|
979
916
|
], NvTable);
|
|
980
917
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTable, decorators: [{
|
|
@@ -984,29 +921,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
984
921
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
985
922
|
template: '<ng-content></ng-content>',
|
|
986
923
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
987
|
-
inputs: ['
|
|
988
|
-
}]
|
|
989
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
990
|
-
let NvTablebody = class NvTablebody {
|
|
991
|
-
constructor(c, r, z) {
|
|
992
|
-
this.z = z;
|
|
993
|
-
c.detach();
|
|
994
|
-
this.el = r.nativeElement;
|
|
995
|
-
}
|
|
996
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablebody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
997
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablebody, selector: "nv-tablebody", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
998
|
-
};
|
|
999
|
-
NvTablebody = __decorate([
|
|
1000
|
-
ProxyCmp({})
|
|
1001
|
-
], NvTablebody);
|
|
1002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablebody, decorators: [{
|
|
1003
|
-
type: Component,
|
|
1004
|
-
args: [{
|
|
1005
|
-
selector: 'nv-tablebody',
|
|
1006
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1007
|
-
template: '<ng-content></ng-content>',
|
|
1008
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1009
|
-
inputs: [],
|
|
924
|
+
inputs: ['columnsConfig', 'columnsConfigJson', 'data', 'dataJson', 'fallbackValue', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
1010
925
|
}]
|
|
1011
926
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1012
927
|
let NvTablecolumn = class NvTablecolumn {
|
|
@@ -1016,11 +931,11 @@ let NvTablecolumn = class NvTablecolumn {
|
|
|
1016
931
|
this.el = r.nativeElement;
|
|
1017
932
|
}
|
|
1018
933
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablecolumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1019
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablecolumn, selector: "nv-tablecolumn", inputs: {
|
|
934
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablecolumn, selector: "nv-tablecolumn", inputs: { header: "header", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1020
935
|
};
|
|
1021
936
|
NvTablecolumn = __decorate([
|
|
1022
937
|
ProxyCmp({
|
|
1023
|
-
inputs: ['
|
|
938
|
+
inputs: ['header', 'name']
|
|
1024
939
|
})
|
|
1025
940
|
], NvTablecolumn);
|
|
1026
941
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablecolumn, decorators: [{
|
|
@@ -1030,75 +945,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
1030
945
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1031
946
|
template: '<ng-content></ng-content>',
|
|
1032
947
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1033
|
-
inputs: ['
|
|
1034
|
-
}]
|
|
1035
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1036
|
-
let NvTabledatacell = class NvTabledatacell {
|
|
1037
|
-
constructor(c, r, z) {
|
|
1038
|
-
this.z = z;
|
|
1039
|
-
c.detach();
|
|
1040
|
-
this.el = r.nativeElement;
|
|
1041
|
-
}
|
|
1042
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTabledatacell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1043
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTabledatacell, selector: "nv-tabledatacell", inputs: { colspan: "colspan", headers: "headers", rowspan: "rowspan" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1044
|
-
};
|
|
1045
|
-
NvTabledatacell = __decorate([
|
|
1046
|
-
ProxyCmp({
|
|
1047
|
-
inputs: ['colspan', 'headers', 'rowspan']
|
|
1048
|
-
})
|
|
1049
|
-
], NvTabledatacell);
|
|
1050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTabledatacell, decorators: [{
|
|
1051
|
-
type: Component,
|
|
1052
|
-
args: [{
|
|
1053
|
-
selector: 'nv-tabledatacell',
|
|
1054
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1055
|
-
template: '<ng-content></ng-content>',
|
|
1056
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1057
|
-
inputs: ['colspan', 'headers', 'rowspan'],
|
|
1058
|
-
}]
|
|
1059
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1060
|
-
let NvTablehead = class NvTablehead {
|
|
1061
|
-
constructor(c, r, z) {
|
|
1062
|
-
this.z = z;
|
|
1063
|
-
c.detach();
|
|
1064
|
-
this.el = r.nativeElement;
|
|
1065
|
-
}
|
|
1066
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablehead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1067
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablehead, selector: "nv-tablehead", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1068
|
-
};
|
|
1069
|
-
NvTablehead = __decorate([
|
|
1070
|
-
ProxyCmp({})
|
|
1071
|
-
], NvTablehead);
|
|
1072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablehead, decorators: [{
|
|
1073
|
-
type: Component,
|
|
1074
|
-
args: [{
|
|
1075
|
-
selector: 'nv-tablehead',
|
|
1076
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1077
|
-
template: '<ng-content></ng-content>',
|
|
1078
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1079
|
-
inputs: [],
|
|
1080
|
-
}]
|
|
1081
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1082
|
-
let NvTablerow = class NvTablerow {
|
|
1083
|
-
constructor(c, r, z) {
|
|
1084
|
-
this.z = z;
|
|
1085
|
-
c.detach();
|
|
1086
|
-
this.el = r.nativeElement;
|
|
1087
|
-
}
|
|
1088
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablerow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1089
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablerow, selector: "nv-tablerow", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1090
|
-
};
|
|
1091
|
-
NvTablerow = __decorate([
|
|
1092
|
-
ProxyCmp({})
|
|
1093
|
-
], NvTablerow);
|
|
1094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablerow, decorators: [{
|
|
1095
|
-
type: Component,
|
|
1096
|
-
args: [{
|
|
1097
|
-
selector: 'nv-tablerow',
|
|
1098
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1099
|
-
template: '<ng-content></ng-content>',
|
|
1100
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1101
|
-
inputs: [],
|
|
948
|
+
inputs: ['header', 'name'],
|
|
1102
949
|
}]
|
|
1103
950
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1104
951
|
let NvToggle = class NvToggle {
|
|
@@ -1159,13 +1006,10 @@ const DIRECTIVES = [
|
|
|
1159
1006
|
NvBreadcrumb,
|
|
1160
1007
|
NvBreadcrumbs,
|
|
1161
1008
|
NvButton,
|
|
1009
|
+
NvCalendar,
|
|
1162
1010
|
NvCol,
|
|
1163
1011
|
NvDatagrid,
|
|
1164
|
-
NvDatagridbody,
|
|
1165
1012
|
NvDatagridcolumn,
|
|
1166
|
-
NvDatagriddatacell,
|
|
1167
|
-
NvDatagridhead,
|
|
1168
|
-
NvDatagridrow,
|
|
1169
1013
|
NvDialog,
|
|
1170
1014
|
NvDialogfooter,
|
|
1171
1015
|
NvDialogheader,
|
|
@@ -1190,11 +1034,7 @@ const DIRECTIVES = [
|
|
|
1190
1034
|
NvRow,
|
|
1191
1035
|
NvStack,
|
|
1192
1036
|
NvTable,
|
|
1193
|
-
NvTablebody,
|
|
1194
1037
|
NvTablecolumn,
|
|
1195
|
-
NvTabledatacell,
|
|
1196
|
-
NvTablehead,
|
|
1197
|
-
NvTablerow,
|
|
1198
1038
|
NvToggle,
|
|
1199
1039
|
NvTooltip
|
|
1200
1040
|
];
|
|
@@ -1687,15 +1527,14 @@ function provideNovaComponents() {
|
|
|
1687
1527
|
}
|
|
1688
1528
|
class NovaComponentsModule {
|
|
1689
1529
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1690
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCol, NvDatagrid,
|
|
1691
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule
|
|
1530
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvTooltip], exports: [NvAlert, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvTooltip] }); }
|
|
1531
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule }); }
|
|
1692
1532
|
}
|
|
1693
1533
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
1694
1534
|
type: NgModule,
|
|
1695
1535
|
args: [{
|
|
1696
1536
|
declarations: [...DIRECTIVES],
|
|
1697
1537
|
exports: [...DIRECTIVES],
|
|
1698
|
-
providers: [provideNovaComponents()],
|
|
1699
1538
|
}]
|
|
1700
1539
|
}] });
|
|
1701
1540
|
class NovaComponentsValueAccessorModule {
|
|
@@ -1719,5 +1558,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
1719
1558
|
* Generated bundle index. Do not edit.
|
|
1720
1559
|
*/
|
|
1721
1560
|
|
|
1722
|
-
export {
|
|
1561
|
+
export { NovaComponentsModule, NovaComponentsValueAccessorModule, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBase, NvBreadcrumb, NvBreadcrumbs, NvButton, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvPopoverValueAccessor, NvRow, NvStack, NvTable, NvTablecolumn, NvToggle, NvToggleValueAccessor, NvTooltip, VALUE_ACCESSORS, provideNovaComponents };
|
|
1723
1562
|
//# sourceMappingURL=nova-components.mjs.map
|