@nova-design-system/nova-angular-19 3.22.0 → 3.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nova-components/fesm2022/nova-components.mjs +759 -180
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/components/nv-datatable.component.d.ts +15 -7
- package/dist/nova-components/lib/nova-components.module.d.ts +2 -2
- package/dist/nova-components/lib/stencil-generated/component-value-accessors.d.ts +14 -0
- package/dist/nova-components/lib/stencil-generated/components.d.ts +264 -36
- package/dist/nova-components/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Directive, Input, untracked, computed, InjectionToken, inject, reflectComponentType, ViewContainerRef, Injectable, KeyValueDiffers, ChangeDetectorRef, OutputEmitterRef, TemplateRef, Type, Injector, runInInjectionContext, effect, Inject, signal, input, viewChild, CUSTOM_ELEMENTS_SCHEMA, ContentChild, ContentChildren, HostListener, NgModule, ElementRef, ViewChildren } from '@angular/core';
|
|
2
|
+
import { EventEmitter, Component, ChangeDetectionStrategy, Output, Directive, Input, untracked, computed, InjectionToken, inject, reflectComponentType, ViewContainerRef, Injectable, KeyValueDiffers, ChangeDetectorRef, OutputEmitterRef, TemplateRef, Type, Injector, runInInjectionContext, effect, Inject, signal, input, viewChild, CUSTOM_ELEMENTS_SCHEMA, ContentChild, ContentChildren, HostListener, NgModule, ElementRef, ViewChildren } from '@angular/core';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import { fromEvent, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
6
6
|
import { CommonModule } from '@angular/common';
|
|
7
7
|
import { memo, createTable, getCoreRowModel, getSortedRowModel, getPaginationRowModel } from '@tanstack/table-core';
|
|
8
8
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
9
|
+
import { v4 } from 'uuid';
|
|
9
10
|
export * from '@nova-design-system/nova-webcomponents/constants';
|
|
10
11
|
|
|
11
12
|
/* eslint-disable */
|
|
@@ -69,12 +70,12 @@ function ProxyCmp(opts) {
|
|
|
69
70
|
let NvAccordion = class NvAccordion {
|
|
70
71
|
constructor(c, r, z) {
|
|
71
72
|
this.z = z;
|
|
73
|
+
this.openIndexesChanged = new EventEmitter();
|
|
72
74
|
c.detach();
|
|
73
75
|
this.el = r.nativeElement;
|
|
74
|
-
proxyOutputs(this, this.el, ['openIndexesChanged']);
|
|
75
76
|
}
|
|
76
77
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
77
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAccordion, isStandalone: false, selector: "nv-accordion", inputs: { data: "data", mode: "mode", openIndexes: "openIndexes" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
78
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAccordion, isStandalone: false, selector: "nv-accordion", inputs: { data: "data", mode: "mode", openIndexes: "openIndexes" }, outputs: { openIndexesChanged: "openIndexesChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
78
79
|
};
|
|
79
80
|
NvAccordion = __decorate([
|
|
80
81
|
ProxyCmp({
|
|
@@ -90,18 +91,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
90
91
|
template: '<ng-content></ng-content>',
|
|
91
92
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
92
93
|
inputs: ['data', 'mode', 'openIndexes'],
|
|
94
|
+
outputs: ['openIndexesChanged'],
|
|
93
95
|
standalone: false
|
|
94
96
|
}]
|
|
95
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
97
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openIndexesChanged: [{
|
|
98
|
+
type: Output
|
|
99
|
+
}] } });
|
|
96
100
|
let NvAccordionItem = class NvAccordionItem {
|
|
97
101
|
constructor(c, r, z) {
|
|
98
102
|
this.z = z;
|
|
103
|
+
this.itemToggle = new EventEmitter();
|
|
99
104
|
c.detach();
|
|
100
105
|
this.el = r.nativeElement;
|
|
101
|
-
proxyOutputs(this, this.el, ['itemToggle']);
|
|
102
106
|
}
|
|
103
107
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
104
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAccordionItem, isStandalone: false, selector: "nv-accordion-item", inputs: { disabled: "disabled", itemTitle: "itemTitle", maxContentHeight: "maxContentHeight", mode: "mode", open: "open", subtitle: "subtitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
108
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAccordionItem, isStandalone: false, selector: "nv-accordion-item", inputs: { disabled: "disabled", itemTitle: "itemTitle", maxContentHeight: "maxContentHeight", mode: "mode", open: "open", subtitle: "subtitle" }, outputs: { itemToggle: "itemToggle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
105
109
|
};
|
|
106
110
|
NvAccordionItem = __decorate([
|
|
107
111
|
ProxyCmp({
|
|
@@ -117,18 +121,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
117
121
|
template: '<ng-content></ng-content>',
|
|
118
122
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
119
123
|
inputs: ['disabled', 'itemTitle', 'maxContentHeight', 'mode', 'open', 'subtitle'],
|
|
124
|
+
outputs: ['itemToggle'],
|
|
120
125
|
standalone: false
|
|
121
126
|
}]
|
|
122
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
127
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemToggle: [{
|
|
128
|
+
type: Output
|
|
129
|
+
}] } });
|
|
123
130
|
let NvAlert = class NvAlert {
|
|
124
131
|
constructor(c, r, z) {
|
|
125
132
|
this.z = z;
|
|
133
|
+
this.hiddenChanged = new EventEmitter();
|
|
134
|
+
this.hiddenChangedComplete = new EventEmitter();
|
|
135
|
+
this.closeClicked = new EventEmitter();
|
|
126
136
|
c.detach();
|
|
127
137
|
this.el = r.nativeElement;
|
|
128
|
-
proxyOutputs(this, this.el, ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked']);
|
|
129
138
|
}
|
|
130
139
|
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 }); }
|
|
131
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAlert, isStandalone: false, 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 }); }
|
|
140
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvAlert, isStandalone: false, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, outputs: { hiddenChanged: "hiddenChanged", hiddenChangedComplete: "hiddenChangedComplete", closeClicked: "closeClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
132
141
|
};
|
|
133
142
|
NvAlert = __decorate([
|
|
134
143
|
ProxyCmp({
|
|
@@ -143,9 +152,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
143
152
|
template: '<ng-content></ng-content>',
|
|
144
153
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
145
154
|
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose'],
|
|
155
|
+
outputs: ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked'],
|
|
146
156
|
standalone: false
|
|
147
157
|
}]
|
|
148
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
158
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { hiddenChanged: [{
|
|
159
|
+
type: Output
|
|
160
|
+
}], hiddenChangedComplete: [{
|
|
161
|
+
type: Output
|
|
162
|
+
}], closeClicked: [{
|
|
163
|
+
type: Output
|
|
164
|
+
}] } });
|
|
149
165
|
let NvAvatar = class NvAvatar {
|
|
150
166
|
constructor(c, r, z) {
|
|
151
167
|
this.z = z;
|
|
@@ -174,12 +190,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
174
190
|
let NvBadge = class NvBadge {
|
|
175
191
|
constructor(c, r, z) {
|
|
176
192
|
this.z = z;
|
|
193
|
+
this.closeClicked = new EventEmitter();
|
|
194
|
+
this.hiddenChanged = new EventEmitter();
|
|
195
|
+
this.hiddenChangedComplete = new EventEmitter();
|
|
177
196
|
c.detach();
|
|
178
197
|
this.el = r.nativeElement;
|
|
179
|
-
proxyOutputs(this, this.el, ['closeClicked', 'hiddenChanged', 'hiddenChangedComplete']);
|
|
180
198
|
}
|
|
181
199
|
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 }); }
|
|
182
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvBadge, isStandalone: false, selector: "nv-badge", inputs: { color: "color", dismissal: "dismissal", dismissible: "dismissible", hidden: "hidden", icon: "icon", iconLocation: "iconLocation", isIconOnly: "isIconOnly", label: "label", leadIcon: "leadIcon", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
200
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvBadge, isStandalone: false, selector: "nv-badge", inputs: { color: "color", dismissal: "dismissal", dismissible: "dismissible", hidden: "hidden", icon: "icon", iconLocation: "iconLocation", isIconOnly: "isIconOnly", label: "label", leadIcon: "leadIcon", preventAutoClose: "preventAutoClose" }, outputs: { closeClicked: "closeClicked", hiddenChanged: "hiddenChanged", hiddenChangedComplete: "hiddenChangedComplete" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
183
201
|
};
|
|
184
202
|
NvBadge = __decorate([
|
|
185
203
|
ProxyCmp({
|
|
@@ -194,9 +212,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
194
212
|
template: '<ng-content></ng-content>',
|
|
195
213
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
196
214
|
inputs: ['color', 'dismissal', 'dismissible', 'hidden', 'icon', 'iconLocation', 'isIconOnly', 'label', 'leadIcon', 'preventAutoClose'],
|
|
215
|
+
outputs: ['closeClicked', 'hiddenChanged', 'hiddenChangedComplete'],
|
|
197
216
|
standalone: false
|
|
198
217
|
}]
|
|
199
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
218
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { closeClicked: [{
|
|
219
|
+
type: Output
|
|
220
|
+
}], hiddenChanged: [{
|
|
221
|
+
type: Output
|
|
222
|
+
}], hiddenChangedComplete: [{
|
|
223
|
+
type: Output
|
|
224
|
+
}] } });
|
|
200
225
|
let NvBreadcrumb = class NvBreadcrumb {
|
|
201
226
|
constructor(c, r, z) {
|
|
202
227
|
this.z = z;
|
|
@@ -298,12 +323,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
298
323
|
let NvCalendar = class NvCalendar {
|
|
299
324
|
constructor(c, r, z) {
|
|
300
325
|
this.z = z;
|
|
326
|
+
this.singleDateChange = new EventEmitter();
|
|
327
|
+
this.rangeDateChange = new EventEmitter();
|
|
328
|
+
this.valueChanged = new EventEmitter();
|
|
301
329
|
c.detach();
|
|
302
330
|
this.el = r.nativeElement;
|
|
303
|
-
proxyOutputs(this, this.el, ['singleDateChange', 'rangeDateChange', 'valueChanged']);
|
|
304
331
|
}
|
|
305
332
|
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 }); }
|
|
306
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvCalendar, isStandalone: false, selector: "nv-calendar", inputs: { cancelLabel: "cancelLabel", dateFormat: "dateFormat", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", primaryLabel: "primaryLabel", rangeValue: "rangeValue", selectionType: "selectionType", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", singleValue: "singleValue", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
333
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvCalendar, isStandalone: false, selector: "nv-calendar", inputs: { cancelLabel: "cancelLabel", dateFormat: "dateFormat", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", primaryLabel: "primaryLabel", rangeValue: "rangeValue", selectionType: "selectionType", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", singleValue: "singleValue", value: "value" }, outputs: { singleDateChange: "singleDateChange", rangeDateChange: "rangeDateChange", valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
307
334
|
};
|
|
308
335
|
NvCalendar = __decorate([
|
|
309
336
|
ProxyCmp({
|
|
@@ -319,9 +346,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
319
346
|
template: '<ng-content></ng-content>',
|
|
320
347
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
321
348
|
inputs: ['cancelLabel', 'dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'primaryLabel', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue', 'value'],
|
|
349
|
+
outputs: ['singleDateChange', 'rangeDateChange', 'valueChanged'],
|
|
322
350
|
standalone: false
|
|
323
351
|
}]
|
|
324
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
352
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { singleDateChange: [{
|
|
353
|
+
type: Output
|
|
354
|
+
}], rangeDateChange: [{
|
|
355
|
+
type: Output
|
|
356
|
+
}], valueChanged: [{
|
|
357
|
+
type: Output
|
|
358
|
+
}] } });
|
|
325
359
|
let NvCol = class NvCol {
|
|
326
360
|
constructor(c, r, z) {
|
|
327
361
|
this.z = z;
|
|
@@ -350,12 +384,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
350
384
|
let NvDatagrid = class NvDatagrid {
|
|
351
385
|
constructor(c, r, z) {
|
|
352
386
|
this.z = z;
|
|
387
|
+
this.action = new EventEmitter();
|
|
388
|
+
this.selectedRows = new EventEmitter();
|
|
389
|
+
this.stateChanged = new EventEmitter();
|
|
353
390
|
c.detach();
|
|
354
391
|
this.el = r.nativeElement;
|
|
355
|
-
proxyOutputs(this, this.el, ['action', 'selectedRows', 'stateChanged']);
|
|
356
392
|
}
|
|
357
393
|
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 }); }
|
|
358
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDatagrid, isStandalone: false, selector: "nv-datagrid", inputs: { autoGenerateColumns: "autoGenerateColumns", columns: "columns", data: "data", enableGlobalFilter: "enableGlobalFilter", enablePagination: "enablePagination", enableRowSelection: "enableRowSelection", enableSorting: "enableSorting", fallbackValue: "fallbackValue", globalFilterPosition: "globalFilterPosition", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage", pageSize: "pageSize", pageSizes: "pageSizes", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
394
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDatagrid, isStandalone: false, selector: "nv-datagrid", inputs: { autoGenerateColumns: "autoGenerateColumns", columns: "columns", data: "data", enableGlobalFilter: "enableGlobalFilter", enablePagination: "enablePagination", enableRowSelection: "enableRowSelection", enableSorting: "enableSorting", fallbackValue: "fallbackValue", globalFilterPosition: "globalFilterPosition", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage", pageSize: "pageSize", pageSizes: "pageSizes", state: "state" }, outputs: { action: "action", selectedRows: "selectedRows", stateChanged: "stateChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
359
395
|
};
|
|
360
396
|
NvDatagrid = __decorate([
|
|
361
397
|
ProxyCmp({
|
|
@@ -370,9 +406,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
370
406
|
template: '<ng-content></ng-content>',
|
|
371
407
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
372
408
|
inputs: ['autoGenerateColumns', 'columns', 'data', 'enableGlobalFilter', 'enablePagination', 'enableRowSelection', 'enableSorting', 'fallbackValue', 'globalFilterPosition', 'noColumnsNoDataMessage', 'noDataMessage', 'pageSize', 'pageSizes', 'state'],
|
|
409
|
+
outputs: ['action', 'selectedRows', 'stateChanged'],
|
|
373
410
|
standalone: false
|
|
374
411
|
}]
|
|
375
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
412
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { action: [{
|
|
413
|
+
type: Output
|
|
414
|
+
}], selectedRows: [{
|
|
415
|
+
type: Output
|
|
416
|
+
}], stateChanged: [{
|
|
417
|
+
type: Output
|
|
418
|
+
}] } });
|
|
376
419
|
let NvDatagridcolumn = class NvDatagridcolumn {
|
|
377
420
|
constructor(c, r, z) {
|
|
378
421
|
this.z = z;
|
|
@@ -401,12 +444,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
401
444
|
let NvDialog = class NvDialog {
|
|
402
445
|
constructor(c, r, z) {
|
|
403
446
|
this.z = z;
|
|
447
|
+
this.openChanged = new EventEmitter();
|
|
404
448
|
c.detach();
|
|
405
449
|
this.el = r.nativeElement;
|
|
406
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
407
450
|
}
|
|
408
451
|
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 }); }
|
|
409
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDialog, isStandalone: false, selector: "nv-dialog", inputs: { autofocus: "autofocus", clickOutside: "clickOutside", controlled: "controlled", full: "full", open: "open", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
452
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDialog, isStandalone: false, selector: "nv-dialog", inputs: { autofocus: "autofocus", clickOutside: "clickOutside", controlled: "controlled", full: "full", open: "open", undismissable: "undismissable" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
410
453
|
};
|
|
411
454
|
NvDialog = __decorate([
|
|
412
455
|
ProxyCmp({
|
|
@@ -422,18 +465,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
422
465
|
template: '<ng-content></ng-content>',
|
|
423
466
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
424
467
|
inputs: ['autofocus', 'clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
468
|
+
outputs: ['openChanged'],
|
|
425
469
|
standalone: false
|
|
426
470
|
}]
|
|
427
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
471
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
472
|
+
type: Output
|
|
473
|
+
}] } });
|
|
428
474
|
let NvDialogfooter = class NvDialogfooter {
|
|
429
475
|
constructor(c, r, z) {
|
|
430
476
|
this.z = z;
|
|
477
|
+
this.dialogCanceled = new EventEmitter();
|
|
478
|
+
this.dialogPrimaryClicked = new EventEmitter();
|
|
431
479
|
c.detach();
|
|
432
480
|
this.el = r.nativeElement;
|
|
433
|
-
proxyOutputs(this, this.el, ['dialogCanceled', 'dialogPrimaryClicked']);
|
|
434
481
|
}
|
|
435
482
|
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 }); }
|
|
436
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDialogfooter, isStandalone: false, 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 }); }
|
|
483
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDialogfooter, isStandalone: false, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, outputs: { dialogCanceled: "dialogCanceled", dialogPrimaryClicked: "dialogPrimaryClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
437
484
|
};
|
|
438
485
|
NvDialogfooter = __decorate([
|
|
439
486
|
ProxyCmp({
|
|
@@ -448,9 +495,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
448
495
|
template: '<ng-content></ng-content>',
|
|
449
496
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
450
497
|
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
|
|
498
|
+
outputs: ['dialogCanceled', 'dialogPrimaryClicked'],
|
|
451
499
|
standalone: false
|
|
452
500
|
}]
|
|
453
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
501
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dialogCanceled: [{
|
|
502
|
+
type: Output
|
|
503
|
+
}], dialogPrimaryClicked: [{
|
|
504
|
+
type: Output
|
|
505
|
+
}] } });
|
|
454
506
|
let NvDialogheader = class NvDialogheader {
|
|
455
507
|
constructor(c, r, z) {
|
|
456
508
|
this.z = z;
|
|
@@ -476,19 +528,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
476
528
|
standalone: false
|
|
477
529
|
}]
|
|
478
530
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
531
|
+
let NvDrawer = class NvDrawer {
|
|
532
|
+
constructor(c, r, z) {
|
|
533
|
+
this.z = z;
|
|
534
|
+
this.openChanged = new EventEmitter();
|
|
535
|
+
c.detach();
|
|
536
|
+
this.el = r.nativeElement;
|
|
537
|
+
}
|
|
538
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawer, 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: NvDrawer, isStandalone: false, selector: "nv-drawer", inputs: { autofocus: "autofocus", clickOutside: "clickOutside", controlled: "controlled", open: "open", side: "side", size: "size", swipeToOpen: "swipeToOpen", undismissable: "undismissable", width: "width" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
540
|
+
};
|
|
541
|
+
NvDrawer = __decorate([
|
|
542
|
+
ProxyCmp({
|
|
543
|
+
inputs: ['autofocus', 'clickOutside', 'controlled', 'open', 'side', 'size', 'swipeToOpen', 'undismissable', 'width'],
|
|
544
|
+
methods: ['show', 'close']
|
|
545
|
+
})
|
|
546
|
+
], NvDrawer);
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawer, decorators: [{
|
|
548
|
+
type: Component,
|
|
549
|
+
args: [{
|
|
550
|
+
selector: 'nv-drawer',
|
|
551
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
552
|
+
template: '<ng-content></ng-content>',
|
|
553
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
554
|
+
inputs: ['autofocus', 'clickOutside', 'controlled', 'open', 'side', 'size', 'swipeToOpen', 'undismissable', 'width'],
|
|
555
|
+
outputs: ['openChanged'],
|
|
556
|
+
standalone: false
|
|
557
|
+
}]
|
|
558
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
559
|
+
type: Output
|
|
560
|
+
}] } });
|
|
561
|
+
let NvDrawerfooter = class NvDrawerfooter {
|
|
562
|
+
constructor(c, r, z) {
|
|
563
|
+
this.z = z;
|
|
564
|
+
this.drawerCanceled = new EventEmitter();
|
|
565
|
+
this.drawerPrimaryClicked = new EventEmitter();
|
|
566
|
+
c.detach();
|
|
567
|
+
this.el = r.nativeElement;
|
|
568
|
+
}
|
|
569
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
570
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDrawerfooter, isStandalone: false, selector: "nv-drawerfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, outputs: { drawerCanceled: "drawerCanceled", drawerPrimaryClicked: "drawerPrimaryClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
571
|
+
};
|
|
572
|
+
NvDrawerfooter = __decorate([
|
|
573
|
+
ProxyCmp({
|
|
574
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable']
|
|
575
|
+
})
|
|
576
|
+
], NvDrawerfooter);
|
|
577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerfooter, decorators: [{
|
|
578
|
+
type: Component,
|
|
579
|
+
args: [{
|
|
580
|
+
selector: 'nv-drawerfooter',
|
|
581
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
582
|
+
template: '<ng-content></ng-content>',
|
|
583
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
584
|
+
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
|
|
585
|
+
outputs: ['drawerCanceled', 'drawerPrimaryClicked'],
|
|
586
|
+
standalone: false
|
|
587
|
+
}]
|
|
588
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { drawerCanceled: [{
|
|
589
|
+
type: Output
|
|
590
|
+
}], drawerPrimaryClicked: [{
|
|
591
|
+
type: Output
|
|
592
|
+
}] } });
|
|
593
|
+
let NvDrawerheader = class NvDrawerheader {
|
|
594
|
+
constructor(c, r, z) {
|
|
595
|
+
this.z = z;
|
|
596
|
+
c.detach();
|
|
597
|
+
this.el = r.nativeElement;
|
|
598
|
+
}
|
|
599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDrawerheader, isStandalone: false, selector: "nv-drawerheader", inputs: { heading: "heading", subheading: "subheading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
601
|
+
};
|
|
602
|
+
NvDrawerheader = __decorate([
|
|
603
|
+
ProxyCmp({
|
|
604
|
+
inputs: ['heading', 'subheading']
|
|
605
|
+
})
|
|
606
|
+
], NvDrawerheader);
|
|
607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerheader, decorators: [{
|
|
608
|
+
type: Component,
|
|
609
|
+
args: [{
|
|
610
|
+
selector: 'nv-drawerheader',
|
|
611
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
|
+
template: '<ng-content></ng-content>',
|
|
613
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
614
|
+
inputs: ['heading', 'subheading'],
|
|
615
|
+
standalone: false
|
|
616
|
+
}]
|
|
617
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
479
618
|
let NvFieldcheckbox = class NvFieldcheckbox {
|
|
480
619
|
constructor(c, r, z) {
|
|
481
620
|
this.z = z;
|
|
621
|
+
this.checkedChanged = new EventEmitter();
|
|
482
622
|
c.detach();
|
|
483
623
|
this.el = r.nativeElement;
|
|
484
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
485
624
|
}
|
|
486
625
|
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 }); }
|
|
487
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldcheckbox, isStandalone: false, 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 }); }
|
|
626
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldcheckbox, isStandalone: false, selector: "nv-fieldcheckbox", inputs: { ariaRequiredAttr: "ariaRequiredAttr", 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" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
488
627
|
};
|
|
489
628
|
NvFieldcheckbox = __decorate([
|
|
490
629
|
ProxyCmp({
|
|
491
|
-
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
630
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
492
631
|
})
|
|
493
632
|
], NvFieldcheckbox);
|
|
494
633
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldcheckbox, decorators: [{
|
|
@@ -498,23 +637,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
498
637
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
499
638
|
template: '<ng-content></ng-content>',
|
|
500
639
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
501
|
-
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
640
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
641
|
+
outputs: ['checkedChanged'],
|
|
502
642
|
standalone: false
|
|
503
643
|
}]
|
|
504
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
644
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
645
|
+
type: Output
|
|
646
|
+
}] } });
|
|
505
647
|
let NvFielddate = class NvFielddate {
|
|
506
648
|
constructor(c, r, z) {
|
|
507
649
|
this.z = z;
|
|
650
|
+
this.valueChanged = new EventEmitter();
|
|
508
651
|
c.detach();
|
|
509
652
|
this.el = r.nativeElement;
|
|
510
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
511
653
|
}
|
|
512
654
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFielddate, 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: NvFielddate, isStandalone: false, selector: "nv-fielddate", inputs: { autofocus: "autofocus", dateFormat: "dateFormat", description: "description", disabled: "disabled", disabledDates: "disabledDates", error: "error", errorDescription: "errorDescription", firstDayOfWeek: "firstDayOfWeek", fluid: "fluid", inputId: "inputId", label: "label", locale: "locale", max: "max", min: "min", name: "name", numberOfCalendars: "numberOfCalendars", placeholder: "placeholder", readonly: "readonly", required: "required", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
655
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddate, isStandalone: false, selector: "nv-fielddate", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", dateFormat: "dateFormat", description: "description", disabled: "disabled", disabledDates: "disabledDates", error: "error", errorDescription: "errorDescription", firstDayOfWeek: "firstDayOfWeek", fluid: "fluid", inputId: "inputId", label: "label", locale: "locale", max: "max", min: "min", name: "name", numberOfCalendars: "numberOfCalendars", placeholder: "placeholder", readonly: "readonly", required: "required", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", success: "success", value: "value" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
514
656
|
};
|
|
515
657
|
NvFielddate = __decorate([
|
|
516
658
|
ProxyCmp({
|
|
517
|
-
inputs: ['autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'inputId', 'label', 'locale', 'max', 'min', 'name', 'numberOfCalendars', 'placeholder', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'success', 'value'],
|
|
659
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'inputId', 'label', 'locale', 'max', 'min', 'name', 'numberOfCalendars', 'placeholder', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'success', 'value'],
|
|
518
660
|
methods: ['clear']
|
|
519
661
|
})
|
|
520
662
|
], NvFielddate);
|
|
@@ -525,23 +667,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
525
667
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
526
668
|
template: '<ng-content></ng-content>',
|
|
527
669
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
528
|
-
inputs: ['autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'inputId', 'label', 'locale', 'max', 'min', 'name', 'numberOfCalendars', 'placeholder', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'success', 'value'],
|
|
670
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'inputId', 'label', 'locale', 'max', 'min', 'name', 'numberOfCalendars', 'placeholder', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'success', 'value'],
|
|
671
|
+
outputs: ['valueChanged'],
|
|
529
672
|
standalone: false
|
|
530
673
|
}]
|
|
531
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
674
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
675
|
+
type: Output
|
|
676
|
+
}] } });
|
|
532
677
|
let NvFielddaterange = class NvFielddaterange {
|
|
533
678
|
constructor(c, r, z) {
|
|
534
679
|
this.z = z;
|
|
680
|
+
this.dateRangeChange = new EventEmitter();
|
|
681
|
+
this.valueChanged = new EventEmitter();
|
|
535
682
|
c.detach();
|
|
536
683
|
this.el = r.nativeElement;
|
|
537
|
-
proxyOutputs(this, this.el, ['dateRangeChange', 'valueChanged']);
|
|
538
684
|
}
|
|
539
685
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFielddaterange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
540
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddaterange, isStandalone: false, selector: "nv-fielddaterange", inputs: { autofocus: "autofocus", dateFormat: "dateFormat", description: "description", disabled: "disabled", disabledDates: "disabledDates", endInputId: "endInputId", endName: "endName", endPlaceholder: "endPlaceholder", error: "error", errorDescription: "errorDescription", firstDayOfWeek: "firstDayOfWeek", fluid: "fluid", label: "label", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", readonly: "readonly", required: "required", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", startInputId: "startInputId", startName: "startName", startPlaceholder: "startPlaceholder", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
686
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddaterange, isStandalone: false, selector: "nv-fielddaterange", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", dateFormat: "dateFormat", description: "description", disabled: "disabled", disabledDates: "disabledDates", endInputId: "endInputId", endName: "endName", endPlaceholder: "endPlaceholder", error: "error", errorDescription: "errorDescription", firstDayOfWeek: "firstDayOfWeek", fluid: "fluid", label: "label", locale: "locale", max: "max", min: "min", numberOfCalendars: "numberOfCalendars", readonly: "readonly", required: "required", shortcuts: "shortcuts", shortcutsPlacement: "shortcutsPlacement", showActions: "showActions", showWeekNumbers: "showWeekNumbers", startInputId: "startInputId", startName: "startName", startPlaceholder: "startPlaceholder", success: "success", value: "value" }, outputs: { dateRangeChange: "dateRangeChange", valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
541
687
|
};
|
|
542
688
|
NvFielddaterange = __decorate([
|
|
543
689
|
ProxyCmp({
|
|
544
|
-
inputs: ['autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'endInputId', 'endName', 'endPlaceholder', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'label', 'locale', 'max', 'min', 'numberOfCalendars', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'startInputId', 'startName', 'startPlaceholder', 'success', 'value'],
|
|
690
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'endInputId', 'endName', 'endPlaceholder', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'label', 'locale', 'max', 'min', 'numberOfCalendars', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'startInputId', 'startName', 'startPlaceholder', 'success', 'value'],
|
|
545
691
|
methods: ['clear']
|
|
546
692
|
})
|
|
547
693
|
], NvFielddaterange);
|
|
@@ -552,23 +698,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
552
698
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
553
699
|
template: '<ng-content></ng-content>',
|
|
554
700
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
555
|
-
inputs: ['autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'endInputId', 'endName', 'endPlaceholder', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'label', 'locale', 'max', 'min', 'numberOfCalendars', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'startInputId', 'startName', 'startPlaceholder', 'success', 'value'],
|
|
701
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'dateFormat', 'description', 'disabled', 'disabledDates', 'endInputId', 'endName', 'endPlaceholder', 'error', 'errorDescription', 'firstDayOfWeek', 'fluid', 'label', 'locale', 'max', 'min', 'numberOfCalendars', 'readonly', 'required', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'startInputId', 'startName', 'startPlaceholder', 'success', 'value'],
|
|
702
|
+
outputs: ['dateRangeChange', 'valueChanged'],
|
|
556
703
|
standalone: false
|
|
557
704
|
}]
|
|
558
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
705
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dateRangeChange: [{
|
|
706
|
+
type: Output
|
|
707
|
+
}], valueChanged: [{
|
|
708
|
+
type: Output
|
|
709
|
+
}] } });
|
|
559
710
|
let NvFielddropdown = class NvFielddropdown {
|
|
560
711
|
constructor(c, r, z) {
|
|
561
712
|
this.z = z;
|
|
713
|
+
this.valueChanged = new EventEmitter();
|
|
714
|
+
this.filterTextChanged = new EventEmitter();
|
|
715
|
+
this.openChanged = new EventEmitter();
|
|
716
|
+
this.dropdownItemSelected = new EventEmitter();
|
|
562
717
|
c.detach();
|
|
563
718
|
this.el = r.nativeElement;
|
|
564
|
-
proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected']);
|
|
565
719
|
}
|
|
566
720
|
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 }); }
|
|
567
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdown, isStandalone: false, selector: "nv-fielddropdown", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", controlledFilter: "controlledFilter", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterable: "filterable", fluid: "fluid", inputId: "inputId", label: "label", maxHeight: "maxHeight", name: "name", openOnSelect: "openOnSelect", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
721
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdown, isStandalone: false, selector: "nv-fielddropdown", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", controlledFilter: "controlledFilter", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterMode: "filterMode", filterable: "filterable", fluid: "fluid", fuzzyThreshold: "fuzzyThreshold", inputId: "inputId", label: "label", locale: "locale", maxHeight: "maxHeight", maxResults: "maxResults", name: "name", openOnSelect: "openOnSelect", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", startFilterAt: "startFilterAt", truncatedResultsText: "truncatedResultsText", value: "value", workerThreshold: "workerThreshold" }, outputs: { valueChanged: "valueChanged", filterTextChanged: "filterTextChanged", openChanged: "openChanged", dropdownItemSelected: "dropdownItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
568
722
|
};
|
|
569
723
|
NvFielddropdown = __decorate([
|
|
570
724
|
ProxyCmp({
|
|
571
|
-
inputs: ['autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
725
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
572
726
|
methods: ['clearFilter', 'toggleDropdown']
|
|
573
727
|
})
|
|
574
728
|
], NvFielddropdown);
|
|
@@ -579,19 +733,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
579
733
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
580
734
|
template: '<ng-content></ng-content>',
|
|
581
735
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
582
|
-
inputs: ['autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
736
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
737
|
+
outputs: ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected'],
|
|
583
738
|
standalone: false
|
|
584
739
|
}]
|
|
585
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
740
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
741
|
+
type: Output
|
|
742
|
+
}], filterTextChanged: [{
|
|
743
|
+
type: Output
|
|
744
|
+
}], openChanged: [{
|
|
745
|
+
type: Output
|
|
746
|
+
}], dropdownItemSelected: [{
|
|
747
|
+
type: Output
|
|
748
|
+
}] } });
|
|
586
749
|
let NvFielddropdownitem = class NvFielddropdownitem {
|
|
587
750
|
constructor(c, r, z) {
|
|
588
751
|
this.z = z;
|
|
752
|
+
this.dropdownItemSelected = new EventEmitter();
|
|
589
753
|
c.detach();
|
|
590
754
|
this.el = r.nativeElement;
|
|
591
|
-
proxyOutputs(this, this.el, ['dropdownItemSelected']);
|
|
592
755
|
}
|
|
593
756
|
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 }); }
|
|
594
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdownitem, isStandalone: false, selector: "nv-fielddropdownitem", inputs: { detached: "detached", disabled: "disabled", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
757
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdownitem, isStandalone: false, selector: "nv-fielddropdownitem", inputs: { detached: "detached", disabled: "disabled", label: "label", selected: "selected", value: "value" }, outputs: { dropdownItemSelected: "dropdownItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
595
758
|
};
|
|
596
759
|
NvFielddropdownitem = __decorate([
|
|
597
760
|
ProxyCmp({
|
|
@@ -606,18 +769,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
606
769
|
template: '<ng-content></ng-content>',
|
|
607
770
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
608
771
|
inputs: ['detached', 'disabled', 'label', 'selected', 'value'],
|
|
772
|
+
outputs: ['dropdownItemSelected'],
|
|
609
773
|
standalone: false
|
|
610
774
|
}]
|
|
611
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
775
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dropdownItemSelected: [{
|
|
776
|
+
type: Output
|
|
777
|
+
}] } });
|
|
612
778
|
let NvFielddropdownitemcheck = class NvFielddropdownitemcheck {
|
|
613
779
|
constructor(c, r, z) {
|
|
614
780
|
this.z = z;
|
|
781
|
+
this.itemChecked = new EventEmitter();
|
|
615
782
|
c.detach();
|
|
616
783
|
this.el = r.nativeElement;
|
|
617
|
-
proxyOutputs(this, this.el, ['itemChecked']);
|
|
618
784
|
}
|
|
619
785
|
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 }); }
|
|
620
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdownitemcheck, isStandalone: false, 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 }); }
|
|
786
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdownitemcheck, isStandalone: false, selector: "nv-fielddropdownitemcheck", inputs: { checked: "checked", description: "description", disabled: "disabled", group: "group", label: "label", value: "value" }, outputs: { itemChecked: "itemChecked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
621
787
|
};
|
|
622
788
|
NvFielddropdownitemcheck = __decorate([
|
|
623
789
|
ProxyCmp({
|
|
@@ -632,22 +798,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
632
798
|
template: '<ng-content></ng-content>',
|
|
633
799
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
634
800
|
inputs: ['checked', 'description', 'disabled', 'group', 'label', 'value'],
|
|
801
|
+
outputs: ['itemChecked'],
|
|
635
802
|
standalone: false
|
|
636
803
|
}]
|
|
637
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
804
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemChecked: [{
|
|
805
|
+
type: Output
|
|
806
|
+
}] } });
|
|
638
807
|
let NvFieldmultiselect = class NvFieldmultiselect {
|
|
639
808
|
constructor(c, r, z) {
|
|
640
809
|
this.z = z;
|
|
810
|
+
this.valueChanged = new EventEmitter();
|
|
811
|
+
this.filterTextChanged = new EventEmitter();
|
|
641
812
|
c.detach();
|
|
642
813
|
this.el = r.nativeElement;
|
|
643
|
-
proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged']);
|
|
644
814
|
}
|
|
645
815
|
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 }); }
|
|
646
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldmultiselect, isStandalone: false, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", deselectAllLabel: "deselectAllLabel", disabled: "disabled", emptyResult: "emptyResult", enableSelectAll: "enableSelectAll", error: "error", errorDescription: "errorDescription", filterText: "filterText", filterable: "filterable", fluid: "fluid", inputId: "inputId", label: "label", maxHeight: "maxHeight", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", selectAllLabel: "selectAllLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
816
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldmultiselect, isStandalone: false, selector: "nv-fieldmultiselect", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", deselectAllLabel: "deselectAllLabel", disabled: "disabled", emptyResult: "emptyResult", enableSelectAll: "enableSelectAll", error: "error", errorDescription: "errorDescription", filterMode: "filterMode", filterText: "filterText", filterable: "filterable", fluid: "fluid", fuzzyThreshold: "fuzzyThreshold", inputId: "inputId", label: "label", locale: "locale", maxHeight: "maxHeight", maxResults: "maxResults", name: "name", open: "open", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", selectAllLabel: "selectAllLabel", startFilterAt: "startFilterAt", truncatedResultsText: "truncatedResultsText", value: "value", workerThreshold: "workerThreshold" }, outputs: { valueChanged: "valueChanged", filterTextChanged: "filterTextChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
647
817
|
};
|
|
648
818
|
NvFieldmultiselect = __decorate([
|
|
649
819
|
ProxyCmp({
|
|
650
|
-
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'deselectAllLabel', 'disabled', 'emptyResult', 'enableSelectAll', 'error', 'errorDescription', 'filterText', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'selectAllLabel', 'value'],
|
|
820
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'deselectAllLabel', 'disabled', 'emptyResult', 'enableSelectAll', 'error', 'errorDescription', 'filterMode', 'filterText', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'selectAllLabel', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
651
821
|
methods: ['getFilterText', 'resetFilter', 'getSelectedValues', 'selectAll', 'deselectAll', 'toggleSelectAll']
|
|
652
822
|
})
|
|
653
823
|
], NvFieldmultiselect);
|
|
@@ -658,23 +828,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
658
828
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
659
829
|
template: '<ng-content></ng-content>',
|
|
660
830
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
661
|
-
inputs: ['autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'deselectAllLabel', 'disabled', 'emptyResult', 'enableSelectAll', 'error', 'errorDescription', 'filterText', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'selectAllLabel', 'value'],
|
|
831
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'badgeLabel', 'debounceDelay', 'description', 'deselectAllLabel', 'disabled', 'emptyResult', 'enableSelectAll', 'error', 'errorDescription', 'filterMode', 'filterText', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'open', 'options', 'placeholder', 'readonly', 'required', 'selectAllLabel', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
832
|
+
outputs: ['valueChanged', 'filterTextChanged'],
|
|
662
833
|
standalone: false
|
|
663
834
|
}]
|
|
664
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
835
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
836
|
+
type: Output
|
|
837
|
+
}], filterTextChanged: [{
|
|
838
|
+
type: Output
|
|
839
|
+
}] } });
|
|
665
840
|
let NvFieldnumber = class NvFieldnumber {
|
|
666
841
|
constructor(c, r, z) {
|
|
667
842
|
this.z = z;
|
|
843
|
+
this.valueChanged = new EventEmitter();
|
|
668
844
|
c.detach();
|
|
669
845
|
this.el = r.nativeElement;
|
|
670
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
671
846
|
}
|
|
672
847
|
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 }); }
|
|
673
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldnumber, isStandalone: false, selector: "nv-fieldnumber", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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 }); }
|
|
848
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldnumber, isStandalone: false, selector: "nv-fieldnumber", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
674
849
|
};
|
|
675
850
|
NvFieldnumber = __decorate([
|
|
676
851
|
ProxyCmp({
|
|
677
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
852
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
678
853
|
})
|
|
679
854
|
], NvFieldnumber);
|
|
680
855
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldnumber, decorators: [{
|
|
@@ -684,23 +859,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
684
859
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
685
860
|
template: '<ng-content></ng-content>',
|
|
686
861
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
687
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
862
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
863
|
+
outputs: ['valueChanged'],
|
|
688
864
|
standalone: false
|
|
689
865
|
}]
|
|
690
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
866
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
867
|
+
type: Output
|
|
868
|
+
}] } });
|
|
691
869
|
let NvFieldpassword = class NvFieldpassword {
|
|
692
870
|
constructor(c, r, z) {
|
|
693
871
|
this.z = z;
|
|
872
|
+
this.valueChanged = new EventEmitter();
|
|
694
873
|
c.detach();
|
|
695
874
|
this.el = r.nativeElement;
|
|
696
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
697
875
|
}
|
|
698
876
|
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 }); }
|
|
699
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldpassword, isStandalone: false, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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 }); }
|
|
877
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldpassword, isStandalone: false, selector: "nv-fieldpassword", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
700
878
|
};
|
|
701
879
|
NvFieldpassword = __decorate([
|
|
702
880
|
ProxyCmp({
|
|
703
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
881
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
704
882
|
})
|
|
705
883
|
], NvFieldpassword);
|
|
706
884
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldpassword, decorators: [{
|
|
@@ -710,19 +888,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
710
888
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
711
889
|
template: '<ng-content></ng-content>',
|
|
712
890
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
713
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
891
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
892
|
+
outputs: ['valueChanged'],
|
|
714
893
|
standalone: false
|
|
715
894
|
}]
|
|
716
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
895
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
896
|
+
type: Output
|
|
897
|
+
}] } });
|
|
717
898
|
let NvFieldradio = class NvFieldradio {
|
|
718
899
|
constructor(c, r, z) {
|
|
719
900
|
this.z = z;
|
|
901
|
+
this.checkedChanged = new EventEmitter();
|
|
720
902
|
c.detach();
|
|
721
903
|
this.el = r.nativeElement;
|
|
722
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
723
904
|
}
|
|
724
905
|
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 }); }
|
|
725
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldradio, isStandalone: false, 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 }); }
|
|
906
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldradio, isStandalone: false, 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" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
726
907
|
};
|
|
727
908
|
NvFieldradio = __decorate([
|
|
728
909
|
ProxyCmp({
|
|
@@ -737,22 +918,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
737
918
|
template: '<ng-content></ng-content>',
|
|
738
919
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
739
920
|
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
|
|
921
|
+
outputs: ['checkedChanged'],
|
|
740
922
|
standalone: false
|
|
741
923
|
}]
|
|
742
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
924
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
925
|
+
type: Output
|
|
926
|
+
}] } });
|
|
743
927
|
let NvFieldselect = class NvFieldselect {
|
|
744
928
|
constructor(c, r, z) {
|
|
745
929
|
this.z = z;
|
|
930
|
+
this.valueChanged = new EventEmitter();
|
|
746
931
|
c.detach();
|
|
747
932
|
this.el = r.nativeElement;
|
|
748
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
749
933
|
}
|
|
750
934
|
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 }); }
|
|
751
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldselect, isStandalone: false, selector: "nv-fieldselect", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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 }); }
|
|
935
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldselect, isStandalone: false, selector: "nv-fieldselect", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", fluid: "fluid", inputId: "inputId", label: "label", message: "message", multiple: "multiple", name: "name", options: "options", readonly: "readonly", required: "required", success: "success", validation: "validation", value: "value" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
752
936
|
};
|
|
753
937
|
NvFieldselect = __decorate([
|
|
754
938
|
ProxyCmp({
|
|
755
|
-
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
939
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
756
940
|
})
|
|
757
941
|
], NvFieldselect);
|
|
758
942
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldselect, decorators: [{
|
|
@@ -762,19 +946,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
762
946
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
763
947
|
template: '<ng-content></ng-content>',
|
|
764
948
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
765
|
-
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
949
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
950
|
+
outputs: ['valueChanged'],
|
|
766
951
|
standalone: false
|
|
767
952
|
}]
|
|
768
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
953
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
954
|
+
type: Output
|
|
955
|
+
}] } });
|
|
769
956
|
let NvFieldslider = class NvFieldslider {
|
|
770
957
|
constructor(c, r, z) {
|
|
771
958
|
this.z = z;
|
|
959
|
+
this.valueChanged = new EventEmitter();
|
|
772
960
|
c.detach();
|
|
773
961
|
this.el = r.nativeElement;
|
|
774
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
775
962
|
}
|
|
776
963
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldslider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
777
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldslider, isStandalone: false, selector: "nv-fieldslider", inputs: { description: "description", disabled: "disabled", endInputId: "endInputId", endName: "endName", error: "error", errorDescription: "errorDescription", fluid: "fluid", hasField: "hasField", hideLabel: "hideLabel", label: "label", labelAfterValue: "labelAfterValue", labelBeforeValue: "labelBeforeValue", max: "max", min: "min", name: "name", range: "range", readonly: "readonly", showTicks: "showTicks", snap: "snap", snapTicks: "snapTicks", startInputId: "startInputId", step: "step", success: "success", ticks: "ticks", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
964
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldslider, isStandalone: false, selector: "nv-fieldslider", inputs: { description: "description", disabled: "disabled", endInputId: "endInputId", endName: "endName", error: "error", errorDescription: "errorDescription", fluid: "fluid", hasField: "hasField", hideLabel: "hideLabel", label: "label", labelAfterValue: "labelAfterValue", labelBeforeValue: "labelBeforeValue", max: "max", min: "min", name: "name", range: "range", readonly: "readonly", showTicks: "showTicks", snap: "snap", snapTicks: "snapTicks", startInputId: "startInputId", step: "step", success: "success", ticks: "ticks", value: "value" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
778
965
|
};
|
|
779
966
|
NvFieldslider = __decorate([
|
|
780
967
|
ProxyCmp({
|
|
@@ -789,22 +976,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
789
976
|
template: '<ng-content></ng-content>',
|
|
790
977
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
791
978
|
inputs: ['description', 'disabled', 'endInputId', 'endName', 'error', 'errorDescription', 'fluid', 'hasField', 'hideLabel', 'label', 'labelAfterValue', 'labelBeforeValue', 'max', 'min', 'name', 'range', 'readonly', 'showTicks', 'snap', 'snapTicks', 'startInputId', 'step', 'success', 'ticks', 'value'],
|
|
979
|
+
outputs: ['valueChanged'],
|
|
792
980
|
standalone: false
|
|
793
981
|
}]
|
|
794
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
982
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
983
|
+
type: Output
|
|
984
|
+
}] } });
|
|
795
985
|
let NvFieldtext = class NvFieldtext {
|
|
796
986
|
constructor(c, r, z) {
|
|
797
987
|
this.z = z;
|
|
988
|
+
this.valueChanged = new EventEmitter();
|
|
798
989
|
c.detach();
|
|
799
990
|
this.el = r.nativeElement;
|
|
800
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
801
991
|
}
|
|
802
992
|
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 }); }
|
|
803
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtext, isStandalone: false, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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 }); }
|
|
993
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtext, isStandalone: false, selector: "nv-fieldtext", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
804
994
|
};
|
|
805
995
|
NvFieldtext = __decorate([
|
|
806
996
|
ProxyCmp({
|
|
807
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
997
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
808
998
|
})
|
|
809
999
|
], NvFieldtext);
|
|
810
1000
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldtext, decorators: [{
|
|
@@ -814,23 +1004,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
814
1004
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
815
1005
|
template: '<ng-content></ng-content>',
|
|
816
1006
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
817
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
1007
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
1008
|
+
outputs: ['valueChanged'],
|
|
818
1009
|
standalone: false
|
|
819
1010
|
}]
|
|
820
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1011
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1012
|
+
type: Output
|
|
1013
|
+
}] } });
|
|
821
1014
|
let NvFieldtextarea = class NvFieldtextarea {
|
|
822
1015
|
constructor(c, r, z) {
|
|
823
1016
|
this.z = z;
|
|
1017
|
+
this.valueChanged = new EventEmitter();
|
|
824
1018
|
c.detach();
|
|
825
1019
|
this.el = r.nativeElement;
|
|
826
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
827
1020
|
}
|
|
828
1021
|
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 }); }
|
|
829
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtextarea, isStandalone: false, selector: "nv-fieldtextarea", inputs: { autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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 }); }
|
|
1022
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtextarea, isStandalone: false, selector: "nv-fieldtextarea", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", fluid: "fluid", 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" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
830
1023
|
};
|
|
831
1024
|
NvFieldtextarea = __decorate([
|
|
832
1025
|
ProxyCmp({
|
|
833
|
-
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
1026
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
834
1027
|
})
|
|
835
1028
|
], NvFieldtextarea);
|
|
836
1029
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldtextarea, decorators: [{
|
|
@@ -840,23 +1033,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
840
1033
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
841
1034
|
template: '<ng-content></ng-content>',
|
|
842
1035
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
843
|
-
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
1036
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
1037
|
+
outputs: ['valueChanged'],
|
|
844
1038
|
standalone: false
|
|
845
1039
|
}]
|
|
846
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1040
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1041
|
+
type: Output
|
|
1042
|
+
}] } });
|
|
847
1043
|
let NvFieldtime = class NvFieldtime {
|
|
848
1044
|
constructor(c, r, z) {
|
|
849
1045
|
this.z = z;
|
|
1046
|
+
this.valueChanged = new EventEmitter();
|
|
850
1047
|
c.detach();
|
|
851
1048
|
this.el = r.nativeElement;
|
|
852
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
853
1049
|
}
|
|
854
1050
|
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 }); }
|
|
855
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtime, isStandalone: false, 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 }); }
|
|
1051
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldtime, isStandalone: false, selector: "nv-fieldtime", inputs: { ariaRequiredAttr: "ariaRequiredAttr", 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" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
856
1052
|
};
|
|
857
1053
|
NvFieldtime = __decorate([
|
|
858
1054
|
ProxyCmp({
|
|
859
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
1055
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
860
1056
|
})
|
|
861
1057
|
], NvFieldtime);
|
|
862
1058
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldtime, decorators: [{
|
|
@@ -866,10 +1062,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
866
1062
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
867
1063
|
template: '<ng-content></ng-content>',
|
|
868
1064
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
869
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
1065
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
1066
|
+
outputs: ['valueChanged'],
|
|
870
1067
|
standalone: false
|
|
871
1068
|
}]
|
|
872
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1069
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1070
|
+
type: Output
|
|
1071
|
+
}] } });
|
|
873
1072
|
let NvIcon = class NvIcon {
|
|
874
1073
|
constructor(c, r, z) {
|
|
875
1074
|
this.z = z;
|
|
@@ -948,12 +1147,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
948
1147
|
let NvMenu = class NvMenu {
|
|
949
1148
|
constructor(c, r, z) {
|
|
950
1149
|
this.z = z;
|
|
1150
|
+
this.menuitemSelected = new EventEmitter();
|
|
951
1151
|
c.detach();
|
|
952
1152
|
this.el = r.nativeElement;
|
|
953
|
-
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
954
1153
|
}
|
|
955
1154
|
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 }); }
|
|
956
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvMenu, isStandalone: false, 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 }); }
|
|
1155
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvMenu, isStandalone: false, selector: "nv-menu", inputs: { disableCloseOnSelect: "disableCloseOnSelect", items: "items", nested: "nested", open: "open", placement: "placement" }, outputs: { menuitemSelected: "menuitemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
957
1156
|
};
|
|
958
1157
|
NvMenu = __decorate([
|
|
959
1158
|
ProxyCmp({
|
|
@@ -969,18 +1168,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
969
1168
|
template: '<ng-content></ng-content>',
|
|
970
1169
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
971
1170
|
inputs: ['disableCloseOnSelect', 'items', 'nested', 'open', 'placement'],
|
|
1171
|
+
outputs: ['menuitemSelected'],
|
|
972
1172
|
standalone: false
|
|
973
1173
|
}]
|
|
974
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1174
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
|
|
1175
|
+
type: Output
|
|
1176
|
+
}] } });
|
|
975
1177
|
let NvMenuitem = class NvMenuitem {
|
|
976
1178
|
constructor(c, r, z) {
|
|
977
1179
|
this.z = z;
|
|
1180
|
+
this.menuitemSelected = new EventEmitter();
|
|
978
1181
|
c.detach();
|
|
979
1182
|
this.el = r.nativeElement;
|
|
980
|
-
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
981
1183
|
}
|
|
982
1184
|
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 }); }
|
|
983
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvMenuitem, isStandalone: false, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1185
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvMenuitem, isStandalone: false, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, outputs: { menuitemSelected: "menuitemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
984
1186
|
};
|
|
985
1187
|
NvMenuitem = __decorate([
|
|
986
1188
|
ProxyCmp({
|
|
@@ -995,18 +1197,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
995
1197
|
template: '<ng-content></ng-content>',
|
|
996
1198
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
997
1199
|
inputs: ['disabled', 'hasSubmenu', 'icon', 'label', 'name', 'shortcut'],
|
|
1200
|
+
outputs: ['menuitemSelected'],
|
|
998
1201
|
standalone: false
|
|
999
1202
|
}]
|
|
1000
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1203
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
|
|
1204
|
+
type: Output
|
|
1205
|
+
}] } });
|
|
1001
1206
|
let NvNotification = class NvNotification {
|
|
1002
1207
|
constructor(c, r, z) {
|
|
1003
1208
|
this.z = z;
|
|
1209
|
+
this.hiddenChanged = new EventEmitter();
|
|
1004
1210
|
c.detach();
|
|
1005
1211
|
this.el = r.nativeElement;
|
|
1006
|
-
proxyOutputs(this, this.el, ['hiddenChanged']);
|
|
1007
1212
|
}
|
|
1008
1213
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1009
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvNotification, isStandalone: false, selector: "nv-notification", inputs: { dismissible: "dismissible", emphasis: "emphasis", feedback: "feedback", heading: "heading", hidden: "hidden", icon: "icon", initiallyHidden: "initiallyHidden", message: "message", uid: "uid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1214
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvNotification, isStandalone: false, selector: "nv-notification", inputs: { dismissible: "dismissible", emphasis: "emphasis", feedback: "feedback", heading: "heading", hidden: "hidden", icon: "icon", initiallyHidden: "initiallyHidden", message: "message", uid: "uid" }, outputs: { hiddenChanged: "hiddenChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1010
1215
|
};
|
|
1011
1216
|
NvNotification = __decorate([
|
|
1012
1217
|
ProxyCmp({
|
|
@@ -1022,6 +1227,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1022
1227
|
template: '<ng-content></ng-content>',
|
|
1023
1228
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1024
1229
|
inputs: ['dismissible', 'emphasis', 'feedback', 'heading', 'hidden', 'icon', 'initiallyHidden', 'message', 'uid'],
|
|
1230
|
+
outputs: ['hiddenChanged'],
|
|
1231
|
+
standalone: false
|
|
1232
|
+
}]
|
|
1233
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { hiddenChanged: [{
|
|
1234
|
+
type: Output
|
|
1235
|
+
}] } });
|
|
1236
|
+
let NvNotificationBullet = class NvNotificationBullet {
|
|
1237
|
+
constructor(c, r, z) {
|
|
1238
|
+
this.z = z;
|
|
1239
|
+
c.detach();
|
|
1240
|
+
this.el = r.nativeElement;
|
|
1241
|
+
}
|
|
1242
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvNotificationBullet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1243
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvNotificationBullet, isStandalone: false, selector: "nv-notification-bullet", inputs: { contrastingBorder: "contrastingBorder", count: "count", emphasis: "emphasis", intention: "intention", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1244
|
+
};
|
|
1245
|
+
NvNotificationBullet = __decorate([
|
|
1246
|
+
ProxyCmp({
|
|
1247
|
+
inputs: ['contrastingBorder', 'count', 'emphasis', 'intention', 'size']
|
|
1248
|
+
})
|
|
1249
|
+
], NvNotificationBullet);
|
|
1250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvNotificationBullet, decorators: [{
|
|
1251
|
+
type: Component,
|
|
1252
|
+
args: [{
|
|
1253
|
+
selector: 'nv-notification-bullet',
|
|
1254
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1255
|
+
template: '<ng-content></ng-content>',
|
|
1256
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1257
|
+
inputs: ['contrastingBorder', 'count', 'emphasis', 'intention', 'size'],
|
|
1025
1258
|
standalone: false
|
|
1026
1259
|
}]
|
|
1027
1260
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
@@ -1053,12 +1286,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1053
1286
|
let NvPopover = class NvPopover {
|
|
1054
1287
|
constructor(c, r, z) {
|
|
1055
1288
|
this.z = z;
|
|
1289
|
+
this.openChanged = new EventEmitter();
|
|
1056
1290
|
c.detach();
|
|
1057
1291
|
this.el = r.nativeElement;
|
|
1058
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
1059
1292
|
}
|
|
1060
1293
|
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 }); }
|
|
1061
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvPopover, isStandalone: false, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1294
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvPopover, isStandalone: false, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1062
1295
|
};
|
|
1063
1296
|
NvPopover = __decorate([
|
|
1064
1297
|
ProxyCmp({
|
|
@@ -1074,9 +1307,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1074
1307
|
template: '<ng-content></ng-content>',
|
|
1075
1308
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1076
1309
|
inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'strategy', 'triggerMode'],
|
|
1310
|
+
outputs: ['openChanged'],
|
|
1077
1311
|
standalone: false
|
|
1078
1312
|
}]
|
|
1079
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1313
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1314
|
+
type: Output
|
|
1315
|
+
}] } });
|
|
1080
1316
|
let NvRow = class NvRow {
|
|
1081
1317
|
constructor(c, r, z) {
|
|
1082
1318
|
this.z = z;
|
|
@@ -1100,15 +1336,236 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1100
1336
|
standalone: false
|
|
1101
1337
|
}]
|
|
1102
1338
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1339
|
+
let NvSidebar = class NvSidebar {
|
|
1340
|
+
constructor(c, r, z) {
|
|
1341
|
+
this.z = z;
|
|
1342
|
+
this.openChanged = new EventEmitter();
|
|
1343
|
+
c.detach();
|
|
1344
|
+
this.el = r.nativeElement;
|
|
1345
|
+
}
|
|
1346
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1347
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebar, isStandalone: false, selector: "nv-sidebar", inputs: { activePath: "activePath", notificationEmphasis: "notificationEmphasis", notificationIntention: "notificationIntention", open: "open", type: "type" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1348
|
+
};
|
|
1349
|
+
NvSidebar = __decorate([
|
|
1350
|
+
ProxyCmp({
|
|
1351
|
+
inputs: ['activePath', 'notificationEmphasis', 'notificationIntention', 'open', 'type']
|
|
1352
|
+
})
|
|
1353
|
+
], NvSidebar);
|
|
1354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebar, decorators: [{
|
|
1355
|
+
type: Component,
|
|
1356
|
+
args: [{
|
|
1357
|
+
selector: 'nv-sidebar',
|
|
1358
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1359
|
+
template: '<ng-content></ng-content>',
|
|
1360
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1361
|
+
inputs: ['activePath', 'notificationEmphasis', 'notificationIntention', 'open', 'type'],
|
|
1362
|
+
outputs: ['openChanged'],
|
|
1363
|
+
standalone: false
|
|
1364
|
+
}]
|
|
1365
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1366
|
+
type: Output
|
|
1367
|
+
}] } });
|
|
1368
|
+
let NvSidebarcontent = class NvSidebarcontent {
|
|
1369
|
+
constructor(c, r, z) {
|
|
1370
|
+
this.z = z;
|
|
1371
|
+
c.detach();
|
|
1372
|
+
this.el = r.nativeElement;
|
|
1373
|
+
}
|
|
1374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarcontent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarcontent, isStandalone: false, selector: "nv-sidebarcontent", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1376
|
+
};
|
|
1377
|
+
NvSidebarcontent = __decorate([
|
|
1378
|
+
ProxyCmp({})
|
|
1379
|
+
], NvSidebarcontent);
|
|
1380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarcontent, decorators: [{
|
|
1381
|
+
type: Component,
|
|
1382
|
+
args: [{
|
|
1383
|
+
selector: 'nv-sidebarcontent',
|
|
1384
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1385
|
+
template: '<ng-content></ng-content>',
|
|
1386
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1387
|
+
inputs: [],
|
|
1388
|
+
standalone: false
|
|
1389
|
+
}]
|
|
1390
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1391
|
+
let NvSidebardivider = class NvSidebardivider {
|
|
1392
|
+
constructor(c, r, z) {
|
|
1393
|
+
this.z = z;
|
|
1394
|
+
c.detach();
|
|
1395
|
+
this.el = r.nativeElement;
|
|
1396
|
+
}
|
|
1397
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebardivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1398
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebardivider, isStandalone: false, selector: "nv-sidebardivider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1399
|
+
};
|
|
1400
|
+
NvSidebardivider = __decorate([
|
|
1401
|
+
ProxyCmp({})
|
|
1402
|
+
], NvSidebardivider);
|
|
1403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebardivider, decorators: [{
|
|
1404
|
+
type: Component,
|
|
1405
|
+
args: [{
|
|
1406
|
+
selector: 'nv-sidebardivider',
|
|
1407
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1408
|
+
template: '<ng-content></ng-content>',
|
|
1409
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1410
|
+
inputs: [],
|
|
1411
|
+
standalone: false
|
|
1412
|
+
}]
|
|
1413
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1414
|
+
let NvSidebarfooter = class NvSidebarfooter {
|
|
1415
|
+
constructor(c, r, z) {
|
|
1416
|
+
this.z = z;
|
|
1417
|
+
c.detach();
|
|
1418
|
+
this.el = r.nativeElement;
|
|
1419
|
+
}
|
|
1420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1421
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarfooter, isStandalone: false, selector: "nv-sidebarfooter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1422
|
+
};
|
|
1423
|
+
NvSidebarfooter = __decorate([
|
|
1424
|
+
ProxyCmp({})
|
|
1425
|
+
], NvSidebarfooter);
|
|
1426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarfooter, decorators: [{
|
|
1427
|
+
type: Component,
|
|
1428
|
+
args: [{
|
|
1429
|
+
selector: 'nv-sidebarfooter',
|
|
1430
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1431
|
+
template: '<ng-content></ng-content>',
|
|
1432
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1433
|
+
inputs: [],
|
|
1434
|
+
standalone: false
|
|
1435
|
+
}]
|
|
1436
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1437
|
+
let NvSidebargroup = class NvSidebargroup {
|
|
1438
|
+
constructor(c, r, z) {
|
|
1439
|
+
this.z = z;
|
|
1440
|
+
c.detach();
|
|
1441
|
+
this.el = r.nativeElement;
|
|
1442
|
+
}
|
|
1443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebargroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1444
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebargroup, isStandalone: false, selector: "nv-sidebargroup", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1445
|
+
};
|
|
1446
|
+
NvSidebargroup = __decorate([
|
|
1447
|
+
ProxyCmp({
|
|
1448
|
+
inputs: ['label']
|
|
1449
|
+
})
|
|
1450
|
+
], NvSidebargroup);
|
|
1451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebargroup, decorators: [{
|
|
1452
|
+
type: Component,
|
|
1453
|
+
args: [{
|
|
1454
|
+
selector: 'nv-sidebargroup',
|
|
1455
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1456
|
+
template: '<ng-content></ng-content>',
|
|
1457
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1458
|
+
inputs: ['label'],
|
|
1459
|
+
standalone: false
|
|
1460
|
+
}]
|
|
1461
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1462
|
+
let NvSidebarheader = class NvSidebarheader {
|
|
1463
|
+
constructor(c, r, z) {
|
|
1464
|
+
this.z = z;
|
|
1465
|
+
c.detach();
|
|
1466
|
+
this.el = r.nativeElement;
|
|
1467
|
+
}
|
|
1468
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1469
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarheader, isStandalone: false, selector: "nv-sidebarheader", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1470
|
+
};
|
|
1471
|
+
NvSidebarheader = __decorate([
|
|
1472
|
+
ProxyCmp({})
|
|
1473
|
+
], NvSidebarheader);
|
|
1474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarheader, decorators: [{
|
|
1475
|
+
type: Component,
|
|
1476
|
+
args: [{
|
|
1477
|
+
selector: 'nv-sidebarheader',
|
|
1478
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1479
|
+
template: '<ng-content></ng-content>',
|
|
1480
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1481
|
+
inputs: [],
|
|
1482
|
+
standalone: false
|
|
1483
|
+
}]
|
|
1484
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1485
|
+
let NvSidebarlogo = class NvSidebarlogo {
|
|
1486
|
+
constructor(c, r, z) {
|
|
1487
|
+
this.z = z;
|
|
1488
|
+
c.detach();
|
|
1489
|
+
this.el = r.nativeElement;
|
|
1490
|
+
}
|
|
1491
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarlogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1492
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarlogo, isStandalone: false, selector: "nv-sidebarlogo", inputs: { collapsedLogo: "collapsedLogo", label: "label", logo: "logo" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1493
|
+
};
|
|
1494
|
+
NvSidebarlogo = __decorate([
|
|
1495
|
+
ProxyCmp({
|
|
1496
|
+
inputs: ['collapsedLogo', 'label', 'logo']
|
|
1497
|
+
})
|
|
1498
|
+
], NvSidebarlogo);
|
|
1499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarlogo, decorators: [{
|
|
1500
|
+
type: Component,
|
|
1501
|
+
args: [{
|
|
1502
|
+
selector: 'nv-sidebarlogo',
|
|
1503
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1504
|
+
template: '<ng-content></ng-content>',
|
|
1505
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1506
|
+
inputs: ['collapsedLogo', 'label', 'logo'],
|
|
1507
|
+
standalone: false
|
|
1508
|
+
}]
|
|
1509
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1510
|
+
let NvSidebarnavitem = class NvSidebarnavitem {
|
|
1511
|
+
constructor(c, r, z) {
|
|
1512
|
+
this.z = z;
|
|
1513
|
+
c.detach();
|
|
1514
|
+
this.el = r.nativeElement;
|
|
1515
|
+
}
|
|
1516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarnavitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1517
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarnavitem, isStandalone: false, selector: "nv-sidebarnavitem", inputs: { active: "active", collapsible: "collapsible", icon: "icon", notificationCount: "notificationCount", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1518
|
+
};
|
|
1519
|
+
NvSidebarnavitem = __decorate([
|
|
1520
|
+
ProxyCmp({
|
|
1521
|
+
inputs: ['active', 'collapsible', 'icon', 'notificationCount', 'open']
|
|
1522
|
+
})
|
|
1523
|
+
], NvSidebarnavitem);
|
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarnavitem, decorators: [{
|
|
1525
|
+
type: Component,
|
|
1526
|
+
args: [{
|
|
1527
|
+
selector: 'nv-sidebarnavitem',
|
|
1528
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1529
|
+
template: '<ng-content></ng-content>',
|
|
1530
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1531
|
+
inputs: ['active', 'collapsible', 'icon', 'notificationCount', 'open'],
|
|
1532
|
+
standalone: false
|
|
1533
|
+
}]
|
|
1534
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1535
|
+
let NvSidebarnavsubitem = class NvSidebarnavsubitem {
|
|
1536
|
+
constructor(c, r, z) {
|
|
1537
|
+
this.z = z;
|
|
1538
|
+
c.detach();
|
|
1539
|
+
this.el = r.nativeElement;
|
|
1540
|
+
}
|
|
1541
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarnavsubitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1542
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarnavsubitem, isStandalone: false, selector: "nv-sidebarnavsubitem", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1543
|
+
};
|
|
1544
|
+
NvSidebarnavsubitem = __decorate([
|
|
1545
|
+
ProxyCmp({
|
|
1546
|
+
inputs: ['active']
|
|
1547
|
+
})
|
|
1548
|
+
], NvSidebarnavsubitem);
|
|
1549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarnavsubitem, decorators: [{
|
|
1550
|
+
type: Component,
|
|
1551
|
+
args: [{
|
|
1552
|
+
selector: 'nv-sidebarnavsubitem',
|
|
1553
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1554
|
+
template: '<ng-content></ng-content>',
|
|
1555
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1556
|
+
inputs: ['active'],
|
|
1557
|
+
standalone: false
|
|
1558
|
+
}]
|
|
1559
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1103
1560
|
let NvSplit = class NvSplit {
|
|
1104
1561
|
constructor(c, r, z) {
|
|
1105
1562
|
this.z = z;
|
|
1563
|
+
this.sizesChanged = new EventEmitter();
|
|
1106
1564
|
c.detach();
|
|
1107
1565
|
this.el = r.nativeElement;
|
|
1108
|
-
proxyOutputs(this, this.el, ['sizesChanged']);
|
|
1109
1566
|
}
|
|
1110
1567
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSplit, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1111
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSplit, isStandalone: false, selector: "nv-split", inputs: { direction: "direction", gutterSize: "gutterSize", minSizes: "minSizes", sizes: "sizes" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1568
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvSplit, isStandalone: false, selector: "nv-split", inputs: { direction: "direction", gutterSize: "gutterSize", minSizes: "minSizes", sizes: "sizes" }, outputs: { sizesChanged: "sizesChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1112
1569
|
};
|
|
1113
1570
|
NvSplit = __decorate([
|
|
1114
1571
|
ProxyCmp({
|
|
@@ -1124,9 +1581,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1124
1581
|
template: '<ng-content></ng-content>',
|
|
1125
1582
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1126
1583
|
inputs: ['direction', 'gutterSize', 'minSizes', 'sizes'],
|
|
1584
|
+
outputs: ['sizesChanged'],
|
|
1127
1585
|
standalone: false
|
|
1128
1586
|
}]
|
|
1129
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1587
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sizesChanged: [{
|
|
1588
|
+
type: Output
|
|
1589
|
+
}] } });
|
|
1130
1590
|
let NvStack = class NvStack {
|
|
1131
1591
|
constructor(c, r, z) {
|
|
1132
1592
|
this.z = z;
|
|
@@ -1178,12 +1638,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1178
1638
|
let NvTableheader = class NvTableheader {
|
|
1179
1639
|
constructor(c, r, z) {
|
|
1180
1640
|
this.z = z;
|
|
1641
|
+
this.sortDirectionChanged = new EventEmitter();
|
|
1181
1642
|
c.detach();
|
|
1182
1643
|
this.el = r.nativeElement;
|
|
1183
|
-
proxyOutputs(this, this.el, ['sortDirectionChanged']);
|
|
1184
1644
|
}
|
|
1185
1645
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTableheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1186
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTableheader, isStandalone: false, selector: "nv-tableheader", inputs: { sortDirection: "sortDirection", sortable: "sortable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1646
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTableheader, isStandalone: false, selector: "nv-tableheader", inputs: { sortDirection: "sortDirection", sortable: "sortable" }, outputs: { sortDirectionChanged: "sortDirectionChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1187
1647
|
};
|
|
1188
1648
|
NvTableheader = __decorate([
|
|
1189
1649
|
ProxyCmp({
|
|
@@ -1198,18 +1658,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1198
1658
|
template: '<ng-content></ng-content>',
|
|
1199
1659
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1200
1660
|
inputs: ['sortDirection', 'sortable'],
|
|
1661
|
+
outputs: ['sortDirectionChanged'],
|
|
1201
1662
|
standalone: false
|
|
1202
1663
|
}]
|
|
1203
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1664
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sortDirectionChanged: [{
|
|
1665
|
+
type: Output
|
|
1666
|
+
}] } });
|
|
1204
1667
|
let NvToggle = class NvToggle {
|
|
1205
1668
|
constructor(c, r, z) {
|
|
1206
1669
|
this.z = z;
|
|
1670
|
+
this.checkedChanged = new EventEmitter();
|
|
1207
1671
|
c.detach();
|
|
1208
1672
|
this.el = r.nativeElement;
|
|
1209
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
1210
1673
|
}
|
|
1211
1674
|
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 }); }
|
|
1212
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvToggle, isStandalone: false, 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 }); }
|
|
1675
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvToggle, isStandalone: false, selector: "nv-toggle", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", label: "label", labelPlacement: "labelPlacement", name: "name", readonly: "readonly", value: "value" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1213
1676
|
};
|
|
1214
1677
|
NvToggle = __decorate([
|
|
1215
1678
|
ProxyCmp({
|
|
@@ -1224,18 +1687,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1224
1687
|
template: '<ng-content></ng-content>',
|
|
1225
1688
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1226
1689
|
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value'],
|
|
1690
|
+
outputs: ['checkedChanged'],
|
|
1227
1691
|
standalone: false
|
|
1228
1692
|
}]
|
|
1229
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1693
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
1694
|
+
type: Output
|
|
1695
|
+
}] } });
|
|
1230
1696
|
let NvTogglebutton = class NvTogglebutton {
|
|
1231
1697
|
constructor(c, r, z) {
|
|
1232
1698
|
this.z = z;
|
|
1699
|
+
this.toggled = new EventEmitter();
|
|
1233
1700
|
c.detach();
|
|
1234
1701
|
this.el = r.nativeElement;
|
|
1235
|
-
proxyOutputs(this, this.el, ['toggled']);
|
|
1236
1702
|
}
|
|
1237
1703
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTogglebutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1238
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTogglebutton, isStandalone: false, selector: "nv-togglebutton", inputs: { active: "active", disabled: "disabled", emphasis: "emphasis", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1704
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTogglebutton, isStandalone: false, selector: "nv-togglebutton", inputs: { active: "active", disabled: "disabled", emphasis: "emphasis", size: "size", value: "value" }, outputs: { toggled: "toggled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1239
1705
|
};
|
|
1240
1706
|
NvTogglebutton = __decorate([
|
|
1241
1707
|
ProxyCmp({
|
|
@@ -1250,18 +1716,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1250
1716
|
template: '<ng-content></ng-content>',
|
|
1251
1717
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1252
1718
|
inputs: ['active', 'disabled', 'emphasis', 'size', 'value'],
|
|
1719
|
+
outputs: ['toggled'],
|
|
1253
1720
|
standalone: false
|
|
1254
1721
|
}]
|
|
1255
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1722
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { toggled: [{
|
|
1723
|
+
type: Output
|
|
1724
|
+
}] } });
|
|
1256
1725
|
let NvTogglebuttongroup = class NvTogglebuttongroup {
|
|
1257
1726
|
constructor(c, r, z) {
|
|
1258
1727
|
this.z = z;
|
|
1728
|
+
this.valueChanged = new EventEmitter();
|
|
1259
1729
|
c.detach();
|
|
1260
1730
|
this.el = r.nativeElement;
|
|
1261
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
1262
1731
|
}
|
|
1263
1732
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTogglebuttongroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1264
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTogglebuttongroup, isStandalone: false, selector: "nv-togglebuttongroup", inputs: { emphasis: "emphasis", enforceValue: "enforceValue", exclusive: "exclusive", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1733
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTogglebuttongroup, isStandalone: false, selector: "nv-togglebuttongroup", inputs: { emphasis: "emphasis", enforceValue: "enforceValue", exclusive: "exclusive", size: "size", value: "value" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1265
1734
|
};
|
|
1266
1735
|
NvTogglebuttongroup = __decorate([
|
|
1267
1736
|
ProxyCmp({
|
|
@@ -1276,18 +1745,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1276
1745
|
template: '<ng-content></ng-content>',
|
|
1277
1746
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1278
1747
|
inputs: ['emphasis', 'enforceValue', 'exclusive', 'size', 'value'],
|
|
1748
|
+
outputs: ['valueChanged'],
|
|
1279
1749
|
standalone: false
|
|
1280
1750
|
}]
|
|
1281
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1751
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1752
|
+
type: Output
|
|
1753
|
+
}] } });
|
|
1282
1754
|
let NvTooltip = class NvTooltip {
|
|
1283
1755
|
constructor(c, r, z) {
|
|
1284
1756
|
this.z = z;
|
|
1757
|
+
this.openChanged = new EventEmitter();
|
|
1285
1758
|
c.detach();
|
|
1286
1759
|
this.el = r.nativeElement;
|
|
1287
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
1288
1760
|
}
|
|
1289
1761
|
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 }); }
|
|
1290
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTooltip, isStandalone: false, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1762
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTooltip, isStandalone: false, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1291
1763
|
};
|
|
1292
1764
|
NvTooltip = __decorate([
|
|
1293
1765
|
ProxyCmp({
|
|
@@ -1302,9 +1774,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1302
1774
|
template: '<ng-content></ng-content>',
|
|
1303
1775
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1304
1776
|
inputs: ['enterDelay', 'message', 'placement', 'strategy'],
|
|
1777
|
+
outputs: ['openChanged'],
|
|
1305
1778
|
standalone: false
|
|
1306
1779
|
}]
|
|
1307
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1780
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1781
|
+
type: Output
|
|
1782
|
+
}] } });
|
|
1308
1783
|
|
|
1309
1784
|
const DIRECTIVES = [
|
|
1310
1785
|
NvAccordion,
|
|
@@ -1323,6 +1798,9 @@ const DIRECTIVES = [
|
|
|
1323
1798
|
NvDialog,
|
|
1324
1799
|
NvDialogfooter,
|
|
1325
1800
|
NvDialogheader,
|
|
1801
|
+
NvDrawer,
|
|
1802
|
+
NvDrawerfooter,
|
|
1803
|
+
NvDrawerheader,
|
|
1326
1804
|
NvFieldcheckbox,
|
|
1327
1805
|
NvFielddate,
|
|
1328
1806
|
NvFielddaterange,
|
|
@@ -1344,9 +1822,19 @@ const DIRECTIVES = [
|
|
|
1344
1822
|
NvMenu,
|
|
1345
1823
|
NvMenuitem,
|
|
1346
1824
|
NvNotification,
|
|
1825
|
+
NvNotificationBullet,
|
|
1347
1826
|
NvNotificationcontainer,
|
|
1348
1827
|
NvPopover,
|
|
1349
1828
|
NvRow,
|
|
1829
|
+
NvSidebar,
|
|
1830
|
+
NvSidebarcontent,
|
|
1831
|
+
NvSidebardivider,
|
|
1832
|
+
NvSidebarfooter,
|
|
1833
|
+
NvSidebargroup,
|
|
1834
|
+
NvSidebarheader,
|
|
1835
|
+
NvSidebarlogo,
|
|
1836
|
+
NvSidebarnavitem,
|
|
1837
|
+
NvSidebarnavsubitem,
|
|
1350
1838
|
NvSplit,
|
|
1351
1839
|
NvStack,
|
|
1352
1840
|
NvTable,
|
|
@@ -2165,6 +2653,12 @@ class NvDatatable {
|
|
|
2165
2653
|
this.columns = input([]);
|
|
2166
2654
|
/** Row data */
|
|
2167
2655
|
this.rows = input([]);
|
|
2656
|
+
/**
|
|
2657
|
+
* Data handling mode for sorting and filtering operations.
|
|
2658
|
+
* - 'client': All operations handled in browser (default)
|
|
2659
|
+
* - 'server': Operations trigger callbacks for server-side handling
|
|
2660
|
+
*/
|
|
2661
|
+
this.mode = input('client');
|
|
2168
2662
|
/** Optional pagination configuration */
|
|
2169
2663
|
this.pagination = input(undefined);
|
|
2170
2664
|
/** Optional sorting configuration */
|
|
@@ -2193,7 +2687,7 @@ class NvDatatable {
|
|
|
2193
2687
|
/** Intersection observer for infinite scroll */
|
|
2194
2688
|
this.observer = null;
|
|
2195
2689
|
/** Helper to check if using infinite scroll */
|
|
2196
|
-
this.isInfiniteScroll = computed(() => this.pagination()?.
|
|
2690
|
+
this.isInfiniteScroll = computed(() => this.pagination()?.infinite === true);
|
|
2197
2691
|
/** Computed table columns with proper typing and filtering. */
|
|
2198
2692
|
this.tableColumns = computed(() => {
|
|
2199
2693
|
const templateMap = this.cellTemplateMap();
|
|
@@ -2256,21 +2750,24 @@ class NvDatatable {
|
|
|
2256
2750
|
this.tableInstance = createAngularTable(() => {
|
|
2257
2751
|
const paginationConfig = this.pagination();
|
|
2258
2752
|
const sortingConfig = this.sorting();
|
|
2753
|
+
const componentMode = this.mode();
|
|
2754
|
+
const isServerMode = componentMode === 'server';
|
|
2755
|
+
const isInfinite = paginationConfig?.infinite === true;
|
|
2259
2756
|
// Determine base table configuration with sorting
|
|
2260
2757
|
const getBaseTableConfig = () => {
|
|
2261
2758
|
const baseConfig = {
|
|
2262
2759
|
data: this.rows(),
|
|
2263
2760
|
columns: this.tableColumns(),
|
|
2264
2761
|
getCoreRowModel: getCoreRowModel(),
|
|
2265
|
-
// Sorting configuration
|
|
2762
|
+
// Sorting configuration - uses top-level mode
|
|
2266
2763
|
...(sortingConfig && {
|
|
2267
2764
|
state: {
|
|
2268
|
-
sorting:
|
|
2765
|
+
sorting: isServerMode && sortingConfig.sortState
|
|
2269
2766
|
? sortingConfig.sortState
|
|
2270
2767
|
: this.sortingState(),
|
|
2271
2768
|
},
|
|
2272
2769
|
onSortingChange: (updaterOrValue) => {
|
|
2273
|
-
const currentSort =
|
|
2770
|
+
const currentSort = isServerMode && sortingConfig.sortState
|
|
2274
2771
|
? sortingConfig.sortState
|
|
2275
2772
|
: this.sortingState();
|
|
2276
2773
|
const newSort = typeof updaterOrValue === 'function'
|
|
@@ -2279,12 +2776,11 @@ class NvDatatable {
|
|
|
2279
2776
|
// Always update internal state for reactivity
|
|
2280
2777
|
this.sortingState.set(newSort);
|
|
2281
2778
|
// For server-side sorting, also call the callback
|
|
2282
|
-
if (
|
|
2283
|
-
sortingConfig.onSortingChange) {
|
|
2779
|
+
if (isServerMode && sortingConfig.onSortingChange) {
|
|
2284
2780
|
sortingConfig.onSortingChange(newSort);
|
|
2285
2781
|
}
|
|
2286
2782
|
},
|
|
2287
|
-
manualSorting:
|
|
2783
|
+
manualSorting: isServerMode,
|
|
2288
2784
|
enableSorting: true,
|
|
2289
2785
|
enableMultiSort: sortingConfig.enableMultiSort ?? false,
|
|
2290
2786
|
enableSortingRemoval: sortingConfig.enableSortingRemoval ?? true,
|
|
@@ -2294,17 +2790,22 @@ class NvDatatable {
|
|
|
2294
2790
|
isMultiSortEvent: sortingConfig.enableMultiSort
|
|
2295
2791
|
? () => true
|
|
2296
2792
|
: undefined,
|
|
2297
|
-
getSortedRowModel:
|
|
2793
|
+
getSortedRowModel: !isServerMode ? getSortedRowModel() : undefined,
|
|
2298
2794
|
}),
|
|
2299
2795
|
};
|
|
2300
2796
|
return baseConfig;
|
|
2301
2797
|
};
|
|
2302
|
-
|
|
2303
|
-
|
|
2798
|
+
// Infinite scroll mode (requires server mode)
|
|
2799
|
+
if (isInfinite) {
|
|
2800
|
+
// No pagination row model for infinite scroll - simple config
|
|
2801
|
+
return getBaseTableConfig();
|
|
2802
|
+
}
|
|
2803
|
+
// No pagination configured
|
|
2804
|
+
if (!paginationConfig) {
|
|
2304
2805
|
return getBaseTableConfig();
|
|
2305
2806
|
}
|
|
2306
|
-
|
|
2307
|
-
|
|
2807
|
+
// Client-side pagination
|
|
2808
|
+
if (!isServerMode) {
|
|
2308
2809
|
return {
|
|
2309
2810
|
...getBaseTableConfig(),
|
|
2310
2811
|
getPaginationRowModel: getPaginationRowModel(),
|
|
@@ -2316,37 +2817,35 @@ class NvDatatable {
|
|
|
2316
2817
|
},
|
|
2317
2818
|
};
|
|
2318
2819
|
}
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
};
|
|
2349
|
-
}
|
|
2820
|
+
// Server-side pagination - manual pagination with reactive state
|
|
2821
|
+
const baseConfig = getBaseTableConfig();
|
|
2822
|
+
const pageSize = this.paginationState().pageSize;
|
|
2823
|
+
return {
|
|
2824
|
+
...baseConfig,
|
|
2825
|
+
manualPagination: true,
|
|
2826
|
+
pageCount: paginationConfig.totalPageCount !== undefined
|
|
2827
|
+
? paginationConfig.totalPageCount
|
|
2828
|
+
: paginationConfig.totalRowCount !== undefined
|
|
2829
|
+
? Math.ceil(paginationConfig.totalRowCount / pageSize)
|
|
2830
|
+
: -1,
|
|
2831
|
+
state: {
|
|
2832
|
+
pagination: this.paginationState(),
|
|
2833
|
+
...(baseConfig.state && { sorting: baseConfig.state.sorting }),
|
|
2834
|
+
},
|
|
2835
|
+
onPaginationChange: (updaterOrValue) => {
|
|
2836
|
+
const newState = typeof updaterOrValue === 'function'
|
|
2837
|
+
? updaterOrValue(this.paginationState())
|
|
2838
|
+
: updaterOrValue;
|
|
2839
|
+
this.paginationState.set(newState);
|
|
2840
|
+
// Call user's callback for server-side pagination
|
|
2841
|
+
if (paginationConfig.onPaginationChange) {
|
|
2842
|
+
paginationConfig.onPaginationChange({
|
|
2843
|
+
pageIndex: newState.pageIndex,
|
|
2844
|
+
pageSize: newState.pageSize,
|
|
2845
|
+
});
|
|
2846
|
+
}
|
|
2847
|
+
},
|
|
2848
|
+
};
|
|
2350
2849
|
});
|
|
2351
2850
|
/** Build pagination API for template */
|
|
2352
2851
|
this.paginationAPI = computed(() => {
|
|
@@ -2354,10 +2853,13 @@ class NvDatatable {
|
|
|
2354
2853
|
if (!paginationConfig) {
|
|
2355
2854
|
return null;
|
|
2356
2855
|
}
|
|
2856
|
+
const componentMode = this.mode();
|
|
2857
|
+
const isServerMode = componentMode === 'server';
|
|
2858
|
+
const isInfinite = paginationConfig.infinite === true;
|
|
2357
2859
|
const table = this.table();
|
|
2358
2860
|
const tablePaginationState = table.getState().pagination;
|
|
2359
2861
|
const pageCount = table.getPageCount();
|
|
2360
|
-
const rowCount =
|
|
2862
|
+
const rowCount = isServerMode
|
|
2361
2863
|
? paginationConfig.totalRowCount || this.rows().length
|
|
2362
2864
|
: this.rows().length;
|
|
2363
2865
|
return {
|
|
@@ -2373,25 +2875,31 @@ class NvDatatable {
|
|
|
2373
2875
|
setPageSize: (size) => table.setPageSize(size),
|
|
2374
2876
|
canPreviousPage: table.getCanPreviousPage(),
|
|
2375
2877
|
canNextPage: table.getCanNextPage(),
|
|
2376
|
-
isLoading: paginationConfig.
|
|
2377
|
-
|
|
2378
|
-
: undefined,
|
|
2379
|
-
hasMore: paginationConfig.mode === 'infinite'
|
|
2380
|
-
? paginationConfig.hasMore
|
|
2381
|
-
: undefined,
|
|
2878
|
+
isLoading: isInfinite ? paginationConfig.isLoading : undefined,
|
|
2879
|
+
hasMore: isInfinite ? paginationConfig.hasMore : undefined,
|
|
2382
2880
|
};
|
|
2383
2881
|
});
|
|
2882
|
+
// Validate infinite scroll requires server mode
|
|
2883
|
+
effect(() => {
|
|
2884
|
+
const paginationConfig = this.pagination();
|
|
2885
|
+
const componentMode = this.mode();
|
|
2886
|
+
if (paginationConfig?.infinite === true && componentMode !== 'server') {
|
|
2887
|
+
console.warn('[NvDatatable] pagination.infinite=true requires mode="server". ' +
|
|
2888
|
+
'Infinite scroll relies on server-side data loading.');
|
|
2889
|
+
}
|
|
2890
|
+
});
|
|
2384
2891
|
// Set up intersection observer for infinite scroll
|
|
2385
2892
|
effect(() => {
|
|
2386
2893
|
const paginationConfig = this.pagination();
|
|
2387
2894
|
const rows = this.rows(); // Track rows changes
|
|
2895
|
+
const isInfinite = paginationConfig?.infinite === true;
|
|
2388
2896
|
// Clean up existing observer
|
|
2389
2897
|
if (this.observer) {
|
|
2390
2898
|
this.observer.disconnect();
|
|
2391
2899
|
this.observer = null;
|
|
2392
2900
|
}
|
|
2393
2901
|
// Only set up observer for infinite scroll mode
|
|
2394
|
-
if (
|
|
2902
|
+
if (!isInfinite || rows.length === 0) {
|
|
2395
2903
|
return;
|
|
2396
2904
|
}
|
|
2397
2905
|
// Use setTimeout to ensure DOM is updated
|
|
@@ -2406,7 +2914,6 @@ class NvDatatable {
|
|
|
2406
2914
|
this.observer = new IntersectionObserver((entries) => {
|
|
2407
2915
|
const entry = entries[0];
|
|
2408
2916
|
if (entry.isIntersecting &&
|
|
2409
|
-
paginationConfig.mode === 'infinite' &&
|
|
2410
2917
|
paginationConfig.hasMore &&
|
|
2411
2918
|
!paginationConfig.isLoading &&
|
|
2412
2919
|
paginationConfig.onLoadMore) {
|
|
@@ -2439,7 +2946,7 @@ class NvDatatable {
|
|
|
2439
2946
|
}
|
|
2440
2947
|
}
|
|
2441
2948
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatatable, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2442
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.1.5", type: NvDatatable, isStandalone: true, selector: "nv-datatable", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, pagination: { classPropertyName: "pagination", publicName: "pagination", isSignal: true, isRequired: false, transformFunction: null }, sorting: { classPropertyName: "sorting", publicName: "sorting", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "paginationTemplate", first: true, predicate: ["paginationTemplate"], descendants: true, read: TemplateRef }, { propertyName: "cellTemplates", predicate: NvDatatableCellDirective }], viewQueries: [{ propertyName: "tableRows", first: true, predicate: ["tableRow"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
2949
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.1.5", type: NvDatatable, isStandalone: true, selector: "nv-datatable", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, mode: { classPropertyName: "mode", publicName: "mode", isSignal: true, isRequired: false, transformFunction: null }, pagination: { classPropertyName: "pagination", publicName: "pagination", isSignal: true, isRequired: false, transformFunction: null }, sorting: { classPropertyName: "sorting", publicName: "sorting", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "paginationTemplate", first: true, predicate: ["paginationTemplate"], descendants: true, read: TemplateRef }, { propertyName: "cellTemplates", predicate: NvDatatableCellDirective }], viewQueries: [{ propertyName: "tableRows", first: true, predicate: ["tableRow"], descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
2443
2950
|
<nv-table>
|
|
2444
2951
|
<table>
|
|
2445
2952
|
<thead [attr.data-sticky-top]="stickyHeader() ? 'true' : null">
|
|
@@ -2853,6 +3360,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
2853
3360
|
type: HostListener,
|
|
2854
3361
|
args: ['openChanged', ['$event']]
|
|
2855
3362
|
}] } });
|
|
3363
|
+
class NvDrawerValueAccessor extends ValueAccessor {
|
|
3364
|
+
constructor(el) {
|
|
3365
|
+
super(el);
|
|
3366
|
+
}
|
|
3367
|
+
handleOpenChanged(event) {
|
|
3368
|
+
this.handleChangeEvent(event.target.open);
|
|
3369
|
+
}
|
|
3370
|
+
writeValue(value) {
|
|
3371
|
+
this.el.nativeElement.open = this.lastValue = value;
|
|
3372
|
+
}
|
|
3373
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3374
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvDrawerValueAccessor, isStandalone: true, selector: "nv-drawer", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
|
|
3375
|
+
{
|
|
3376
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3377
|
+
useExisting: NvDrawerValueAccessor,
|
|
3378
|
+
multi: true,
|
|
3379
|
+
},
|
|
3380
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3381
|
+
}
|
|
3382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDrawerValueAccessor, decorators: [{
|
|
3383
|
+
type: Directive,
|
|
3384
|
+
args: [{
|
|
3385
|
+
selector: 'nv-drawer',
|
|
3386
|
+
providers: [
|
|
3387
|
+
{
|
|
3388
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3389
|
+
useExisting: NvDrawerValueAccessor,
|
|
3390
|
+
multi: true,
|
|
3391
|
+
},
|
|
3392
|
+
],
|
|
3393
|
+
}]
|
|
3394
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
|
|
3395
|
+
type: HostListener,
|
|
3396
|
+
args: ['openChanged', ['$event']]
|
|
3397
|
+
}] } });
|
|
2856
3398
|
class NvFieldcheckboxValueAccessor extends ValueAccessor {
|
|
2857
3399
|
constructor(el) {
|
|
2858
3400
|
super(el);
|
|
@@ -3378,6 +3920,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3378
3920
|
type: HostListener,
|
|
3379
3921
|
args: ['openChanged', ['$event']]
|
|
3380
3922
|
}] } });
|
|
3923
|
+
class NvSidebarValueAccessor extends ValueAccessor {
|
|
3924
|
+
constructor(el) {
|
|
3925
|
+
super(el);
|
|
3926
|
+
}
|
|
3927
|
+
handleOpenChanged(event) {
|
|
3928
|
+
this.handleChangeEvent(event.target.open);
|
|
3929
|
+
}
|
|
3930
|
+
writeValue(value) {
|
|
3931
|
+
this.el.nativeElement.open = this.lastValue = value;
|
|
3932
|
+
}
|
|
3933
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3934
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvSidebarValueAccessor, isStandalone: true, selector: "nv-sidebar", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
|
|
3935
|
+
{
|
|
3936
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3937
|
+
useExisting: NvSidebarValueAccessor,
|
|
3938
|
+
multi: true,
|
|
3939
|
+
},
|
|
3940
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3941
|
+
}
|
|
3942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvSidebarValueAccessor, decorators: [{
|
|
3943
|
+
type: Directive,
|
|
3944
|
+
args: [{
|
|
3945
|
+
selector: 'nv-sidebar',
|
|
3946
|
+
providers: [
|
|
3947
|
+
{
|
|
3948
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3949
|
+
useExisting: NvSidebarValueAccessor,
|
|
3950
|
+
multi: true,
|
|
3951
|
+
},
|
|
3952
|
+
],
|
|
3953
|
+
}]
|
|
3954
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
|
|
3955
|
+
type: HostListener,
|
|
3956
|
+
args: ['openChanged', ['$event']]
|
|
3957
|
+
}] } });
|
|
3381
3958
|
class NvSplitValueAccessor extends ValueAccessor {
|
|
3382
3959
|
constructor(el) {
|
|
3383
3960
|
super(el);
|
|
@@ -3489,6 +4066,7 @@ const VALUE_ACCESSORS = [
|
|
|
3489
4066
|
NvCalendarValueAccessor,
|
|
3490
4067
|
NvDatagridValueAccessor,
|
|
3491
4068
|
NvDialogValueAccessor,
|
|
4069
|
+
NvDrawerValueAccessor,
|
|
3492
4070
|
NvFieldcheckboxValueAccessor,
|
|
3493
4071
|
NvFielddateValueAccessor,
|
|
3494
4072
|
NvFielddaterangeValueAccessor,
|
|
@@ -3504,6 +4082,7 @@ const VALUE_ACCESSORS = [
|
|
|
3504
4082
|
NvFieldtimeValueAccessor,
|
|
3505
4083
|
NvNotificationValueAccessor,
|
|
3506
4084
|
NvPopoverValueAccessor,
|
|
4085
|
+
NvSidebarValueAccessor,
|
|
3507
4086
|
NvSplitValueAccessor,
|
|
3508
4087
|
NvToggleValueAccessor,
|
|
3509
4088
|
NvTogglebuttongroupValueAccessor,
|
|
@@ -3511,7 +4090,7 @@ const VALUE_ACCESSORS = [
|
|
|
3511
4090
|
|
|
3512
4091
|
class NovaComponentsModule {
|
|
3513
4092
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3514
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationcontainer, NvPopover, NvRow, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip], imports: [NvDatatable], exports: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationcontainer, NvPopover, NvRow, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
|
|
4093
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationcontainer, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip], imports: [NvDatatable], exports: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationcontainer, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
|
|
3515
4094
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, imports: [NvDatatable] }); }
|
|
3516
4095
|
}
|
|
3517
4096
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
@@ -3524,7 +4103,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3524
4103
|
}] });
|
|
3525
4104
|
class NovaComponentsValueAccessorModule {
|
|
3526
4105
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3527
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, imports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor], exports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
|
|
4106
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, imports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor], exports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
|
|
3528
4107
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
|
|
3529
4108
|
}
|
|
3530
4109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
|
|
@@ -3541,9 +4120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3541
4120
|
* @returns {string} A unique identifier string
|
|
3542
4121
|
*/
|
|
3543
4122
|
const generateId = () => {
|
|
3544
|
-
return `notification-${
|
|
3545
|
-
.toString(36)
|
|
3546
|
-
.substr(2, 9)}`;
|
|
4123
|
+
return `notification-${v4()}`;
|
|
3547
4124
|
};
|
|
3548
4125
|
/**
|
|
3549
4126
|
* Angular service for managing notifications.
|
|
@@ -3777,6 +4354,7 @@ class NotificationServiceComponent {
|
|
|
3777
4354
|
"
|
|
3778
4355
|
#notificationEl
|
|
3779
4356
|
[attr.data-id]="notification.id"
|
|
4357
|
+
[uid]="notification.id"
|
|
3780
4358
|
[heading]="notification.heading"
|
|
3781
4359
|
[message]="notification.message"
|
|
3782
4360
|
[dismissible]="notification.dismissible"
|
|
@@ -3832,6 +4410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3832
4410
|
"
|
|
3833
4411
|
#notificationEl
|
|
3834
4412
|
[attr.data-id]="notification.id"
|
|
4413
|
+
[uid]="notification.id"
|
|
3835
4414
|
[heading]="notification.heading"
|
|
3836
4415
|
[message]="notification.message"
|
|
3837
4416
|
[dismissible]="notification.dismissible"
|
|
@@ -3884,5 +4463,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3884
4463
|
* Generated bundle index. Do not edit.
|
|
3885
4464
|
*/
|
|
3886
4465
|
|
|
3887
|
-
export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDialog, NvDialogValueAccessor, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddate, NvFielddateValueAccessor, NvFielddaterange, NvFielddaterangeValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldslider, NvFieldsliderValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvFieldtimeValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationValueAccessor, NvNotificationcontainer, NvPopover, NvPopoverValueAccessor, NvRow, NvSplit, NvSplitValueAccessor, NvStack, NvTable, NvTableheader, NvToggle, NvToggleValueAccessor, NvTogglebutton, NvTogglebuttongroup, NvTogglebuttongroupValueAccessor, NvTooltip, VALUE_ACCESSORS, makeColumn, flexRenderComponent as nvDatatableRenderComponent };
|
|
4466
|
+
export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDialog, NvDialogValueAccessor, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerValueAccessor, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddate, NvFielddateValueAccessor, NvFielddaterange, NvFielddaterangeValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldslider, NvFieldsliderValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvFieldtimeValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationValueAccessor, NvNotificationcontainer, NvPopover, NvPopoverValueAccessor, NvRow, NvSidebar, NvSidebarValueAccessor, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvSplitValueAccessor, NvStack, NvTable, NvTableheader, NvToggle, NvToggleValueAccessor, NvTogglebutton, NvTogglebuttongroup, NvTogglebuttongroupValueAccessor, NvTooltip, VALUE_ACCESSORS, makeColumn, flexRenderComponent as nvDatatableRenderComponent };
|
|
3888
4467
|
//# sourceMappingURL=nova-components.mjs.map
|