@nova-design-system/nova-angular-18 3.21.1-beta.0 → 3.23.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/esm2022/lib/providers/notification-service.component.mjs +3 -1
- package/dist/nova-components/esm2022/lib/providers/notification.service.mjs +3 -4
- package/dist/nova-components/esm2022/lib/stencil-generated/components.mjs +271 -127
- package/dist/nova-components/fesm2022/nova-components.mjs +273 -128
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/stencil-generated/components.d.ts +127 -36
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ChangeDetectionStrategy, Component, Input, Directive, untracked, computed, InjectionToken, inject, reflectComponentType, ViewContainerRef, Injectable, KeyValueDiffers, ChangeDetectorRef, OutputEmitterRef, TemplateRef, Type, Injector, runInInjectionContext, effect, Inject, signal, input, viewChild, ContentChildren, ContentChild, CUSTOM_ELEMENTS_SCHEMA, HostListener, APP_INITIALIZER, NgModule, ElementRef, ViewChildren } from '@angular/core';
|
|
2
|
+
import { EventEmitter, Output, ChangeDetectionStrategy, Component, Input, Directive, untracked, computed, InjectionToken, inject, reflectComponentType, ViewContainerRef, Injectable, KeyValueDiffers, ChangeDetectorRef, OutputEmitterRef, TemplateRef, Type, Injector, runInInjectionContext, effect, Inject, signal, input, viewChild, ContentChildren, ContentChild, CUSTOM_ELEMENTS_SCHEMA, HostListener, APP_INITIALIZER, NgModule, ElementRef, ViewChildren } from '@angular/core';
|
|
3
3
|
import { defineCustomElements } from '@nova-design-system/nova-webcomponents/loader';
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
5
5
|
import { fromEvent, BehaviorSubject } from 'rxjs';
|
|
@@ -7,6 +7,7 @@ import * as i2 from '@angular/common';
|
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
8
|
import { memo, createTable, getSortedRowModel, getCoreRowModel, getPaginationRowModel } from '@tanstack/table-core';
|
|
9
9
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
10
|
+
import { v4 } from 'uuid';
|
|
10
11
|
export * from '@nova-design-system/nova-webcomponents/constants';
|
|
11
12
|
|
|
12
13
|
/* eslint-disable */
|
|
@@ -70,12 +71,12 @@ function ProxyCmp(opts) {
|
|
|
70
71
|
let NvAccordion = class NvAccordion {
|
|
71
72
|
constructor(c, r, z) {
|
|
72
73
|
this.z = z;
|
|
74
|
+
this.openIndexesChanged = new EventEmitter();
|
|
73
75
|
c.detach();
|
|
74
76
|
this.el = r.nativeElement;
|
|
75
|
-
proxyOutputs(this, this.el, ['openIndexesChanged']);
|
|
76
77
|
}
|
|
77
78
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
78
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAccordion, selector: "nv-accordion", inputs: { data: "data", mode: "mode", openIndexes: "openIndexes" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
79
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAccordion, 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 }); }
|
|
79
80
|
};
|
|
80
81
|
NvAccordion = __decorate([
|
|
81
82
|
ProxyCmp({
|
|
@@ -91,18 +92,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
91
92
|
template: '<ng-content></ng-content>',
|
|
92
93
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
93
94
|
inputs: ['data', 'mode', 'openIndexes'],
|
|
95
|
+
outputs: ['openIndexesChanged'],
|
|
94
96
|
standalone: false
|
|
95
97
|
}]
|
|
96
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
98
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openIndexesChanged: [{
|
|
99
|
+
type: Output
|
|
100
|
+
}] } });
|
|
97
101
|
let NvAccordionItem = class NvAccordionItem {
|
|
98
102
|
constructor(c, r, z) {
|
|
99
103
|
this.z = z;
|
|
104
|
+
this.itemToggle = new EventEmitter();
|
|
100
105
|
c.detach();
|
|
101
106
|
this.el = r.nativeElement;
|
|
102
|
-
proxyOutputs(this, this.el, ['itemToggle']);
|
|
103
107
|
}
|
|
104
108
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
105
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAccordionItem, 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 }); }
|
|
109
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAccordionItem, 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 }); }
|
|
106
110
|
};
|
|
107
111
|
NvAccordionItem = __decorate([
|
|
108
112
|
ProxyCmp({
|
|
@@ -118,18 +122,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
118
122
|
template: '<ng-content></ng-content>',
|
|
119
123
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
120
124
|
inputs: ['disabled', 'itemTitle', 'maxContentHeight', 'mode', 'open', 'subtitle'],
|
|
125
|
+
outputs: ['itemToggle'],
|
|
121
126
|
standalone: false
|
|
122
127
|
}]
|
|
123
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
128
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemToggle: [{
|
|
129
|
+
type: Output
|
|
130
|
+
}] } });
|
|
124
131
|
let NvAlert = class NvAlert {
|
|
125
132
|
constructor(c, r, z) {
|
|
126
133
|
this.z = z;
|
|
134
|
+
this.hiddenChanged = new EventEmitter();
|
|
135
|
+
this.hiddenChangedComplete = new EventEmitter();
|
|
136
|
+
this.closeClicked = new EventEmitter();
|
|
127
137
|
c.detach();
|
|
128
138
|
this.el = r.nativeElement;
|
|
129
|
-
proxyOutputs(this, this.el, ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked']);
|
|
130
139
|
}
|
|
131
140
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
132
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
141
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, outputs: { hiddenChanged: "hiddenChanged", hiddenChangedComplete: "hiddenChangedComplete", closeClicked: "closeClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
133
142
|
};
|
|
134
143
|
NvAlert = __decorate([
|
|
135
144
|
ProxyCmp({
|
|
@@ -144,9 +153,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
144
153
|
template: '<ng-content></ng-content>',
|
|
145
154
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
146
155
|
inputs: ['color', 'dismissible', 'feedback', 'hasNoAnimations', 'heading', 'hidden', 'icon', 'message', 'preventAutoClose'],
|
|
156
|
+
outputs: ['hiddenChanged', 'hiddenChangedComplete', 'closeClicked'],
|
|
147
157
|
standalone: false
|
|
148
158
|
}]
|
|
149
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
159
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { hiddenChanged: [{
|
|
160
|
+
type: Output
|
|
161
|
+
}], hiddenChangedComplete: [{
|
|
162
|
+
type: Output
|
|
163
|
+
}], closeClicked: [{
|
|
164
|
+
type: Output
|
|
165
|
+
}] } });
|
|
150
166
|
let NvAvatar = class NvAvatar {
|
|
151
167
|
constructor(c, r, z) {
|
|
152
168
|
this.z = z;
|
|
@@ -175,12 +191,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
175
191
|
let NvBadge = class NvBadge {
|
|
176
192
|
constructor(c, r, z) {
|
|
177
193
|
this.z = z;
|
|
194
|
+
this.closeClicked = new EventEmitter();
|
|
195
|
+
this.hiddenChanged = new EventEmitter();
|
|
196
|
+
this.hiddenChangedComplete = new EventEmitter();
|
|
178
197
|
c.detach();
|
|
179
198
|
this.el = r.nativeElement;
|
|
180
|
-
proxyOutputs(this, this.el, ['closeClicked', 'hiddenChanged', 'hiddenChangedComplete']);
|
|
181
199
|
}
|
|
182
200
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
183
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBadge, selector: "nv-badge", inputs: { color: "color", dismissal: "dismissal", dismissible: "dismissible", hidden: "hidden", icon: "icon", iconLocation: "iconLocation", isIconOnly: "isIconOnly", label: "label", leadIcon: "leadIcon", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
201
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvBadge, selector: "nv-badge", inputs: { color: "color", dismissal: "dismissal", dismissible: "dismissible", hidden: "hidden", icon: "icon", iconLocation: "iconLocation", 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 }); }
|
|
184
202
|
};
|
|
185
203
|
NvBadge = __decorate([
|
|
186
204
|
ProxyCmp({
|
|
@@ -195,9 +213,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
195
213
|
template: '<ng-content></ng-content>',
|
|
196
214
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
197
215
|
inputs: ['color', 'dismissal', 'dismissible', 'hidden', 'icon', 'iconLocation', 'isIconOnly', 'label', 'leadIcon', 'preventAutoClose'],
|
|
216
|
+
outputs: ['closeClicked', 'hiddenChanged', 'hiddenChangedComplete'],
|
|
198
217
|
standalone: false
|
|
199
218
|
}]
|
|
200
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
219
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { closeClicked: [{
|
|
220
|
+
type: Output
|
|
221
|
+
}], hiddenChanged: [{
|
|
222
|
+
type: Output
|
|
223
|
+
}], hiddenChangedComplete: [{
|
|
224
|
+
type: Output
|
|
225
|
+
}] } });
|
|
201
226
|
let NvBreadcrumb = class NvBreadcrumb {
|
|
202
227
|
constructor(c, r, z) {
|
|
203
228
|
this.z = z;
|
|
@@ -299,12 +324,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
299
324
|
let NvCalendar = class NvCalendar {
|
|
300
325
|
constructor(c, r, z) {
|
|
301
326
|
this.z = z;
|
|
327
|
+
this.singleDateChange = new EventEmitter();
|
|
328
|
+
this.rangeDateChange = new EventEmitter();
|
|
329
|
+
this.valueChanged = new EventEmitter();
|
|
302
330
|
c.detach();
|
|
303
331
|
this.el = r.nativeElement;
|
|
304
|
-
proxyOutputs(this, this.el, ['singleDateChange', 'rangeDateChange', 'valueChanged']);
|
|
305
332
|
}
|
|
306
333
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
307
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvCalendar, 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 }); }
|
|
334
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvCalendar, 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 }); }
|
|
308
335
|
};
|
|
309
336
|
NvCalendar = __decorate([
|
|
310
337
|
ProxyCmp({
|
|
@@ -320,9 +347,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
320
347
|
template: '<ng-content></ng-content>',
|
|
321
348
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
322
349
|
inputs: ['cancelLabel', 'dateFormat', 'disabledDates', 'firstDayOfWeek', 'locale', 'max', 'min', 'numberOfCalendars', 'primaryLabel', 'rangeValue', 'selectionType', 'shortcuts', 'shortcutsPlacement', 'showActions', 'showWeekNumbers', 'singleValue', 'value'],
|
|
350
|
+
outputs: ['singleDateChange', 'rangeDateChange', 'valueChanged'],
|
|
323
351
|
standalone: false
|
|
324
352
|
}]
|
|
325
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
353
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { singleDateChange: [{
|
|
354
|
+
type: Output
|
|
355
|
+
}], rangeDateChange: [{
|
|
356
|
+
type: Output
|
|
357
|
+
}], valueChanged: [{
|
|
358
|
+
type: Output
|
|
359
|
+
}] } });
|
|
326
360
|
let NvCol = class NvCol {
|
|
327
361
|
constructor(c, r, z) {
|
|
328
362
|
this.z = z;
|
|
@@ -351,12 +385,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
351
385
|
let NvDatagrid = class NvDatagrid {
|
|
352
386
|
constructor(c, r, z) {
|
|
353
387
|
this.z = z;
|
|
388
|
+
this.action = new EventEmitter();
|
|
389
|
+
this.selectedRows = new EventEmitter();
|
|
390
|
+
this.stateChanged = new EventEmitter();
|
|
354
391
|
c.detach();
|
|
355
392
|
this.el = r.nativeElement;
|
|
356
|
-
proxyOutputs(this, this.el, ['action', 'selectedRows', 'stateChanged']);
|
|
357
393
|
}
|
|
358
394
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDatagrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
359
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDatagrid, 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 }); }
|
|
395
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDatagrid, 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 }); }
|
|
360
396
|
};
|
|
361
397
|
NvDatagrid = __decorate([
|
|
362
398
|
ProxyCmp({
|
|
@@ -371,9 +407,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
371
407
|
template: '<ng-content></ng-content>',
|
|
372
408
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
373
409
|
inputs: ['autoGenerateColumns', 'columns', 'data', 'enableGlobalFilter', 'enablePagination', 'enableRowSelection', 'enableSorting', 'fallbackValue', 'globalFilterPosition', 'noColumnsNoDataMessage', 'noDataMessage', 'pageSize', 'pageSizes', 'state'],
|
|
410
|
+
outputs: ['action', 'selectedRows', 'stateChanged'],
|
|
374
411
|
standalone: false
|
|
375
412
|
}]
|
|
376
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
413
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { action: [{
|
|
414
|
+
type: Output
|
|
415
|
+
}], selectedRows: [{
|
|
416
|
+
type: Output
|
|
417
|
+
}], stateChanged: [{
|
|
418
|
+
type: Output
|
|
419
|
+
}] } });
|
|
377
420
|
let NvDatagridcolumn = class NvDatagridcolumn {
|
|
378
421
|
constructor(c, r, z) {
|
|
379
422
|
this.z = z;
|
|
@@ -402,12 +445,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
402
445
|
let NvDialog = class NvDialog {
|
|
403
446
|
constructor(c, r, z) {
|
|
404
447
|
this.z = z;
|
|
448
|
+
this.openChanged = new EventEmitter();
|
|
405
449
|
c.detach();
|
|
406
450
|
this.el = r.nativeElement;
|
|
407
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
408
451
|
}
|
|
409
452
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
410
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialog, 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 }); }
|
|
453
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialog, 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 }); }
|
|
411
454
|
};
|
|
412
455
|
NvDialog = __decorate([
|
|
413
456
|
ProxyCmp({
|
|
@@ -423,18 +466,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
423
466
|
template: '<ng-content></ng-content>',
|
|
424
467
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
425
468
|
inputs: ['autofocus', 'clickOutside', 'controlled', 'full', 'open', 'undismissable'],
|
|
469
|
+
outputs: ['openChanged'],
|
|
426
470
|
standalone: false
|
|
427
471
|
}]
|
|
428
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
472
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
473
|
+
type: Output
|
|
474
|
+
}] } });
|
|
429
475
|
let NvDialogfooter = class NvDialogfooter {
|
|
430
476
|
constructor(c, r, z) {
|
|
431
477
|
this.z = z;
|
|
478
|
+
this.dialogCanceled = new EventEmitter();
|
|
479
|
+
this.dialogPrimaryClicked = new EventEmitter();
|
|
432
480
|
c.detach();
|
|
433
481
|
this.el = r.nativeElement;
|
|
434
|
-
proxyOutputs(this, this.el, ['dialogCanceled', 'dialogPrimaryClicked']);
|
|
435
482
|
}
|
|
436
483
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvDialogfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
437
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
484
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, outputs: { dialogCanceled: "dialogCanceled", dialogPrimaryClicked: "dialogPrimaryClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
438
485
|
};
|
|
439
486
|
NvDialogfooter = __decorate([
|
|
440
487
|
ProxyCmp({
|
|
@@ -449,9 +496,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
449
496
|
template: '<ng-content></ng-content>',
|
|
450
497
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
451
498
|
inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
|
|
499
|
+
outputs: ['dialogCanceled', 'dialogPrimaryClicked'],
|
|
452
500
|
standalone: false
|
|
453
501
|
}]
|
|
454
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
502
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dialogCanceled: [{
|
|
503
|
+
type: Output
|
|
504
|
+
}], dialogPrimaryClicked: [{
|
|
505
|
+
type: Output
|
|
506
|
+
}] } });
|
|
455
507
|
let NvDialogheader = class NvDialogheader {
|
|
456
508
|
constructor(c, r, z) {
|
|
457
509
|
this.z = z;
|
|
@@ -480,16 +532,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
480
532
|
let NvFieldcheckbox = class NvFieldcheckbox {
|
|
481
533
|
constructor(c, r, z) {
|
|
482
534
|
this.z = z;
|
|
535
|
+
this.checkedChanged = new EventEmitter();
|
|
483
536
|
c.detach();
|
|
484
537
|
this.el = r.nativeElement;
|
|
485
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
486
538
|
}
|
|
487
539
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
488
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hideLabel: "hideLabel", indeterminate: "indeterminate", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", readonly: "readonly", required: "required", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldcheckbox, 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 }); }
|
|
489
541
|
};
|
|
490
542
|
NvFieldcheckbox = __decorate([
|
|
491
543
|
ProxyCmp({
|
|
492
|
-
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
544
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
|
|
493
545
|
})
|
|
494
546
|
], NvFieldcheckbox);
|
|
495
547
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldcheckbox, decorators: [{
|
|
@@ -499,23 +551,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
499
551
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
500
552
|
template: '<ng-content></ng-content>',
|
|
501
553
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
502
|
-
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
554
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
|
|
555
|
+
outputs: ['checkedChanged'],
|
|
503
556
|
standalone: false
|
|
504
557
|
}]
|
|
505
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
558
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
559
|
+
type: Output
|
|
560
|
+
}] } });
|
|
506
561
|
let NvFielddate = class NvFielddate {
|
|
507
562
|
constructor(c, r, z) {
|
|
508
563
|
this.z = z;
|
|
564
|
+
this.valueChanged = new EventEmitter();
|
|
509
565
|
c.detach();
|
|
510
566
|
this.el = r.nativeElement;
|
|
511
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
512
567
|
}
|
|
513
568
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
514
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddate, 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 }); }
|
|
569
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddate, 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 }); }
|
|
515
570
|
};
|
|
516
571
|
NvFielddate = __decorate([
|
|
517
572
|
ProxyCmp({
|
|
518
|
-
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'],
|
|
573
|
+
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'],
|
|
519
574
|
methods: ['clear']
|
|
520
575
|
})
|
|
521
576
|
], NvFielddate);
|
|
@@ -526,23 +581,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
526
581
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
527
582
|
template: '<ng-content></ng-content>',
|
|
528
583
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
529
|
-
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'],
|
|
584
|
+
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'],
|
|
585
|
+
outputs: ['valueChanged'],
|
|
530
586
|
standalone: false
|
|
531
587
|
}]
|
|
532
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
588
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
589
|
+
type: Output
|
|
590
|
+
}] } });
|
|
533
591
|
let NvFielddaterange = class NvFielddaterange {
|
|
534
592
|
constructor(c, r, z) {
|
|
535
593
|
this.z = z;
|
|
594
|
+
this.dateRangeChange = new EventEmitter();
|
|
595
|
+
this.valueChanged = new EventEmitter();
|
|
536
596
|
c.detach();
|
|
537
597
|
this.el = r.nativeElement;
|
|
538
|
-
proxyOutputs(this, this.el, ['dateRangeChange', 'valueChanged']);
|
|
539
598
|
}
|
|
540
599
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddaterange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
541
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddaterange, 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 }); }
|
|
600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddaterange, 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 }); }
|
|
542
601
|
};
|
|
543
602
|
NvFielddaterange = __decorate([
|
|
544
603
|
ProxyCmp({
|
|
545
|
-
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'],
|
|
604
|
+
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'],
|
|
546
605
|
methods: ['clear']
|
|
547
606
|
})
|
|
548
607
|
], NvFielddaterange);
|
|
@@ -553,23 +612,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
553
612
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
554
613
|
template: '<ng-content></ng-content>',
|
|
555
614
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
556
|
-
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'],
|
|
615
|
+
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'],
|
|
616
|
+
outputs: ['dateRangeChange', 'valueChanged'],
|
|
557
617
|
standalone: false
|
|
558
618
|
}]
|
|
559
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
619
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dateRangeChange: [{
|
|
620
|
+
type: Output
|
|
621
|
+
}], valueChanged: [{
|
|
622
|
+
type: Output
|
|
623
|
+
}] } });
|
|
560
624
|
let NvFielddropdown = class NvFielddropdown {
|
|
561
625
|
constructor(c, r, z) {
|
|
562
626
|
this.z = z;
|
|
627
|
+
this.valueChanged = new EventEmitter();
|
|
628
|
+
this.filterTextChanged = new EventEmitter();
|
|
629
|
+
this.openChanged = new EventEmitter();
|
|
630
|
+
this.dropdownItemSelected = new EventEmitter();
|
|
563
631
|
c.detach();
|
|
564
632
|
this.el = r.nativeElement;
|
|
565
|
-
proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected']);
|
|
566
633
|
}
|
|
567
634
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
568
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdown, 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 }); }
|
|
635
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdown, 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 }); }
|
|
569
636
|
};
|
|
570
637
|
NvFielddropdown = __decorate([
|
|
571
638
|
ProxyCmp({
|
|
572
|
-
inputs: ['autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
639
|
+
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'],
|
|
573
640
|
methods: ['clearFilter', 'toggleDropdown']
|
|
574
641
|
})
|
|
575
642
|
], NvFielddropdown);
|
|
@@ -580,19 +647,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
580
647
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
581
648
|
template: '<ng-content></ng-content>',
|
|
582
649
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
583
|
-
inputs: ['autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'value'],
|
|
650
|
+
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'],
|
|
651
|
+
outputs: ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected'],
|
|
584
652
|
standalone: false
|
|
585
653
|
}]
|
|
586
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
654
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
655
|
+
type: Output
|
|
656
|
+
}], filterTextChanged: [{
|
|
657
|
+
type: Output
|
|
658
|
+
}], openChanged: [{
|
|
659
|
+
type: Output
|
|
660
|
+
}], dropdownItemSelected: [{
|
|
661
|
+
type: Output
|
|
662
|
+
}] } });
|
|
587
663
|
let NvFielddropdownitem = class NvFielddropdownitem {
|
|
588
664
|
constructor(c, r, z) {
|
|
589
665
|
this.z = z;
|
|
666
|
+
this.dropdownItemSelected = new EventEmitter();
|
|
590
667
|
c.detach();
|
|
591
668
|
this.el = r.nativeElement;
|
|
592
|
-
proxyOutputs(this, this.el, ['dropdownItemSelected']);
|
|
593
669
|
}
|
|
594
670
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
595
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitem, 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 }); }
|
|
671
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitem, 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 }); }
|
|
596
672
|
};
|
|
597
673
|
NvFielddropdownitem = __decorate([
|
|
598
674
|
ProxyCmp({
|
|
@@ -607,18 +683,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
607
683
|
template: '<ng-content></ng-content>',
|
|
608
684
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
609
685
|
inputs: ['detached', 'disabled', 'label', 'selected', 'value'],
|
|
686
|
+
outputs: ['dropdownItemSelected'],
|
|
610
687
|
standalone: false
|
|
611
688
|
}]
|
|
612
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
689
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dropdownItemSelected: [{
|
|
690
|
+
type: Output
|
|
691
|
+
}] } });
|
|
613
692
|
let NvFielddropdownitemcheck = class NvFielddropdownitemcheck {
|
|
614
693
|
constructor(c, r, z) {
|
|
615
694
|
this.z = z;
|
|
695
|
+
this.itemChecked = new EventEmitter();
|
|
616
696
|
c.detach();
|
|
617
697
|
this.el = r.nativeElement;
|
|
618
|
-
proxyOutputs(this, this.el, ['itemChecked']);
|
|
619
698
|
}
|
|
620
699
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFielddropdownitemcheck, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
621
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitemcheck, selector: "nv-fielddropdownitemcheck", inputs: { checked: "checked", description: "description", disabled: "disabled", group: "group", label: "label", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
700
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFielddropdownitemcheck, selector: "nv-fielddropdownitemcheck", inputs: { checked: "checked", description: "description", disabled: "disabled", group: "group", label: "label", value: "value" }, outputs: { itemChecked: "itemChecked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
622
701
|
};
|
|
623
702
|
NvFielddropdownitemcheck = __decorate([
|
|
624
703
|
ProxyCmp({
|
|
@@ -633,22 +712,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
633
712
|
template: '<ng-content></ng-content>',
|
|
634
713
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
635
714
|
inputs: ['checked', 'description', 'disabled', 'group', 'label', 'value'],
|
|
715
|
+
outputs: ['itemChecked'],
|
|
636
716
|
standalone: false
|
|
637
717
|
}]
|
|
638
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
718
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemChecked: [{
|
|
719
|
+
type: Output
|
|
720
|
+
}] } });
|
|
639
721
|
let NvFieldmultiselect = class NvFieldmultiselect {
|
|
640
722
|
constructor(c, r, z) {
|
|
641
723
|
this.z = z;
|
|
724
|
+
this.valueChanged = new EventEmitter();
|
|
725
|
+
this.filterTextChanged = new EventEmitter();
|
|
642
726
|
c.detach();
|
|
643
727
|
this.el = r.nativeElement;
|
|
644
|
-
proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged']);
|
|
645
728
|
}
|
|
646
729
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldmultiselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
647
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldmultiselect, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", 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 }); }
|
|
730
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldmultiselect, 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 }); }
|
|
648
731
|
};
|
|
649
732
|
NvFieldmultiselect = __decorate([
|
|
650
733
|
ProxyCmp({
|
|
651
|
-
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'],
|
|
734
|
+
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'],
|
|
652
735
|
methods: ['getFilterText', 'resetFilter', 'getSelectedValues', 'selectAll', 'deselectAll', 'toggleSelectAll']
|
|
653
736
|
})
|
|
654
737
|
], NvFieldmultiselect);
|
|
@@ -659,23 +742,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
659
742
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
660
743
|
template: '<ng-content></ng-content>',
|
|
661
744
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
662
|
-
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'],
|
|
745
|
+
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'],
|
|
746
|
+
outputs: ['valueChanged', 'filterTextChanged'],
|
|
663
747
|
standalone: false
|
|
664
748
|
}]
|
|
665
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
749
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
750
|
+
type: Output
|
|
751
|
+
}], filterTextChanged: [{
|
|
752
|
+
type: Output
|
|
753
|
+
}] } });
|
|
666
754
|
let NvFieldnumber = class NvFieldnumber {
|
|
667
755
|
constructor(c, r, z) {
|
|
668
756
|
this.z = z;
|
|
757
|
+
this.valueChanged = new EventEmitter();
|
|
669
758
|
c.detach();
|
|
670
759
|
this.el = r.nativeElement;
|
|
671
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
672
760
|
}
|
|
673
761
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
674
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
|
|
762
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldnumber, 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 }); }
|
|
675
763
|
};
|
|
676
764
|
NvFieldnumber = __decorate([
|
|
677
765
|
ProxyCmp({
|
|
678
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
766
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
|
|
679
767
|
})
|
|
680
768
|
], NvFieldnumber);
|
|
681
769
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldnumber, decorators: [{
|
|
@@ -685,23 +773,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
685
773
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
686
774
|
template: '<ng-content></ng-content>',
|
|
687
775
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
688
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
776
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
|
|
777
|
+
outputs: ['valueChanged'],
|
|
689
778
|
standalone: false
|
|
690
779
|
}]
|
|
691
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
780
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
781
|
+
type: Output
|
|
782
|
+
}] } });
|
|
692
783
|
let NvFieldpassword = class NvFieldpassword {
|
|
693
784
|
constructor(c, r, z) {
|
|
694
785
|
this.z = z;
|
|
786
|
+
this.valueChanged = new EventEmitter();
|
|
695
787
|
c.detach();
|
|
696
788
|
this.el = r.nativeElement;
|
|
697
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
698
789
|
}
|
|
699
790
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpassword, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
700
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
|
|
791
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldpassword, 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 }); }
|
|
701
792
|
};
|
|
702
793
|
NvFieldpassword = __decorate([
|
|
703
794
|
ProxyCmp({
|
|
704
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
795
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
|
|
705
796
|
})
|
|
706
797
|
], NvFieldpassword);
|
|
707
798
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldpassword, decorators: [{
|
|
@@ -711,19 +802,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
711
802
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
712
803
|
template: '<ng-content></ng-content>',
|
|
713
804
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
714
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
805
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
|
|
806
|
+
outputs: ['valueChanged'],
|
|
715
807
|
standalone: false
|
|
716
808
|
}]
|
|
717
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
809
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
810
|
+
type: Output
|
|
811
|
+
}] } });
|
|
718
812
|
let NvFieldradio = class NvFieldradio {
|
|
719
813
|
constructor(c, r, z) {
|
|
720
814
|
this.z = z;
|
|
815
|
+
this.checkedChanged = new EventEmitter();
|
|
721
816
|
c.detach();
|
|
722
817
|
this.el = r.nativeElement;
|
|
723
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
724
818
|
}
|
|
725
819
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldradio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
726
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
820
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
727
821
|
};
|
|
728
822
|
NvFieldradio = __decorate([
|
|
729
823
|
ProxyCmp({
|
|
@@ -738,22 +832,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
738
832
|
template: '<ng-content></ng-content>',
|
|
739
833
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
740
834
|
inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
|
|
835
|
+
outputs: ['checkedChanged'],
|
|
741
836
|
standalone: false
|
|
742
837
|
}]
|
|
743
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
838
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
839
|
+
type: Output
|
|
840
|
+
}] } });
|
|
744
841
|
let NvFieldselect = class NvFieldselect {
|
|
745
842
|
constructor(c, r, z) {
|
|
746
843
|
this.z = z;
|
|
844
|
+
this.valueChanged = new EventEmitter();
|
|
747
845
|
c.detach();
|
|
748
846
|
this.el = r.nativeElement;
|
|
749
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
750
847
|
}
|
|
751
848
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
752
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldselect, selector: "nv-fieldselect", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", 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 }); }
|
|
849
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldselect, 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 }); }
|
|
753
850
|
};
|
|
754
851
|
NvFieldselect = __decorate([
|
|
755
852
|
ProxyCmp({
|
|
756
|
-
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
853
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
757
854
|
})
|
|
758
855
|
], NvFieldselect);
|
|
759
856
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldselect, decorators: [{
|
|
@@ -763,19 +860,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
763
860
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
764
861
|
template: '<ng-content></ng-content>',
|
|
765
862
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
766
|
-
inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
863
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
864
|
+
outputs: ['valueChanged'],
|
|
767
865
|
standalone: false
|
|
768
866
|
}]
|
|
769
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
867
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
868
|
+
type: Output
|
|
869
|
+
}] } });
|
|
770
870
|
let NvFieldslider = class NvFieldslider {
|
|
771
871
|
constructor(c, r, z) {
|
|
772
872
|
this.z = z;
|
|
873
|
+
this.valueChanged = new EventEmitter();
|
|
773
874
|
c.detach();
|
|
774
875
|
this.el = r.nativeElement;
|
|
775
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
776
876
|
}
|
|
777
877
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldslider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
778
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldslider, 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 }); }
|
|
878
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldslider, 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 }); }
|
|
779
879
|
};
|
|
780
880
|
NvFieldslider = __decorate([
|
|
781
881
|
ProxyCmp({
|
|
@@ -790,22 +890,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
790
890
|
template: '<ng-content></ng-content>',
|
|
791
891
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
792
892
|
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'],
|
|
893
|
+
outputs: ['valueChanged'],
|
|
793
894
|
standalone: false
|
|
794
895
|
}]
|
|
795
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
896
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
897
|
+
type: Output
|
|
898
|
+
}] } });
|
|
796
899
|
let NvFieldtext = class NvFieldtext {
|
|
797
900
|
constructor(c, r, z) {
|
|
798
901
|
this.z = z;
|
|
902
|
+
this.valueChanged = new EventEmitter();
|
|
799
903
|
c.detach();
|
|
800
904
|
this.el = r.nativeElement;
|
|
801
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
802
905
|
}
|
|
803
906
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
804
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
|
|
907
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtext, 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 }); }
|
|
805
908
|
};
|
|
806
909
|
NvFieldtext = __decorate([
|
|
807
910
|
ProxyCmp({
|
|
808
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value']
|
|
911
|
+
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']
|
|
809
912
|
})
|
|
810
913
|
], NvFieldtext);
|
|
811
914
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtext, decorators: [{
|
|
@@ -815,23 +918,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
815
918
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
816
919
|
template: '<ng-content></ng-content>',
|
|
817
920
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
818
|
-
inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'success', 'textInputType', 'type', 'validation', 'value'],
|
|
921
|
+
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'],
|
|
922
|
+
outputs: ['valueChanged'],
|
|
819
923
|
standalone: false
|
|
820
924
|
}]
|
|
821
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
925
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
926
|
+
type: Output
|
|
927
|
+
}] } });
|
|
822
928
|
let NvFieldtextarea = class NvFieldtextarea {
|
|
823
929
|
constructor(c, r, z) {
|
|
824
930
|
this.z = z;
|
|
931
|
+
this.valueChanged = new EventEmitter();
|
|
825
932
|
c.detach();
|
|
826
933
|
this.el = r.nativeElement;
|
|
827
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
828
934
|
}
|
|
829
935
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
830
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
|
|
936
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtextarea, 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 }); }
|
|
831
937
|
};
|
|
832
938
|
NvFieldtextarea = __decorate([
|
|
833
939
|
ProxyCmp({
|
|
834
|
-
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
940
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
|
|
835
941
|
})
|
|
836
942
|
], NvFieldtextarea);
|
|
837
943
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtextarea, decorators: [{
|
|
@@ -841,23 +947,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
841
947
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
842
948
|
template: '<ng-content></ng-content>',
|
|
843
949
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
844
|
-
inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
950
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
|
|
951
|
+
outputs: ['valueChanged'],
|
|
845
952
|
standalone: false
|
|
846
953
|
}]
|
|
847
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
954
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
955
|
+
type: Output
|
|
956
|
+
}] } });
|
|
848
957
|
let NvFieldtime = class NvFieldtime {
|
|
849
958
|
constructor(c, r, z) {
|
|
850
959
|
this.z = z;
|
|
960
|
+
this.valueChanged = new EventEmitter();
|
|
851
961
|
c.detach();
|
|
852
962
|
this.el = r.nativeElement;
|
|
853
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
854
963
|
}
|
|
855
964
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
856
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtime, selector: "nv-fieldtime", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", format: "format", inputId: "inputId", label: "label", max: "max", min: "min", name: "name", open: "open", readonly: "readonly", required: "required", step: "step", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
965
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvFieldtime, 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 }); }
|
|
857
966
|
};
|
|
858
967
|
NvFieldtime = __decorate([
|
|
859
968
|
ProxyCmp({
|
|
860
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
969
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
|
|
861
970
|
})
|
|
862
971
|
], NvFieldtime);
|
|
863
972
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvFieldtime, decorators: [{
|
|
@@ -867,10 +976,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
867
976
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
868
977
|
template: '<ng-content></ng-content>',
|
|
869
978
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
870
|
-
inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
979
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
|
|
980
|
+
outputs: ['valueChanged'],
|
|
871
981
|
standalone: false
|
|
872
982
|
}]
|
|
873
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
983
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
984
|
+
type: Output
|
|
985
|
+
}] } });
|
|
874
986
|
let NvIcon = class NvIcon {
|
|
875
987
|
constructor(c, r, z) {
|
|
876
988
|
this.z = z;
|
|
@@ -949,12 +1061,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
949
1061
|
let NvMenu = class NvMenu {
|
|
950
1062
|
constructor(c, r, z) {
|
|
951
1063
|
this.z = z;
|
|
1064
|
+
this.menuitemSelected = new EventEmitter();
|
|
952
1065
|
c.detach();
|
|
953
1066
|
this.el = r.nativeElement;
|
|
954
|
-
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
955
1067
|
}
|
|
956
1068
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
957
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenu, selector: "nv-menu", inputs: { disableCloseOnSelect: "disableCloseOnSelect", items: "items", nested: "nested", open: "open", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1069
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenu, selector: "nv-menu", inputs: { disableCloseOnSelect: "disableCloseOnSelect", items: "items", nested: "nested", open: "open", placement: "placement" }, outputs: { menuitemSelected: "menuitemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
958
1070
|
};
|
|
959
1071
|
NvMenu = __decorate([
|
|
960
1072
|
ProxyCmp({
|
|
@@ -970,18 +1082,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
970
1082
|
template: '<ng-content></ng-content>',
|
|
971
1083
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
972
1084
|
inputs: ['disableCloseOnSelect', 'items', 'nested', 'open', 'placement'],
|
|
1085
|
+
outputs: ['menuitemSelected'],
|
|
973
1086
|
standalone: false
|
|
974
1087
|
}]
|
|
975
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1088
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
|
|
1089
|
+
type: Output
|
|
1090
|
+
}] } });
|
|
976
1091
|
let NvMenuitem = class NvMenuitem {
|
|
977
1092
|
constructor(c, r, z) {
|
|
978
1093
|
this.z = z;
|
|
1094
|
+
this.menuitemSelected = new EventEmitter();
|
|
979
1095
|
c.detach();
|
|
980
1096
|
this.el = r.nativeElement;
|
|
981
|
-
proxyOutputs(this, this.el, ['menuitemSelected']);
|
|
982
1097
|
}
|
|
983
1098
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvMenuitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
984
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1099
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, outputs: { menuitemSelected: "menuitemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
985
1100
|
};
|
|
986
1101
|
NvMenuitem = __decorate([
|
|
987
1102
|
ProxyCmp({
|
|
@@ -996,18 +1111,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
996
1111
|
template: '<ng-content></ng-content>',
|
|
997
1112
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
998
1113
|
inputs: ['disabled', 'hasSubmenu', 'icon', 'label', 'name', 'shortcut'],
|
|
1114
|
+
outputs: ['menuitemSelected'],
|
|
999
1115
|
standalone: false
|
|
1000
1116
|
}]
|
|
1001
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1117
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
|
|
1118
|
+
type: Output
|
|
1119
|
+
}] } });
|
|
1002
1120
|
let NvNotification = class NvNotification {
|
|
1003
1121
|
constructor(c, r, z) {
|
|
1004
1122
|
this.z = z;
|
|
1123
|
+
this.hiddenChanged = new EventEmitter();
|
|
1005
1124
|
c.detach();
|
|
1006
1125
|
this.el = r.nativeElement;
|
|
1007
|
-
proxyOutputs(this, this.el, ['hiddenChanged']);
|
|
1008
1126
|
}
|
|
1009
1127
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1010
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvNotification, 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 }); }
|
|
1128
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvNotification, 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 }); }
|
|
1011
1129
|
};
|
|
1012
1130
|
NvNotification = __decorate([
|
|
1013
1131
|
ProxyCmp({
|
|
@@ -1023,9 +1141,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1023
1141
|
template: '<ng-content></ng-content>',
|
|
1024
1142
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1025
1143
|
inputs: ['dismissible', 'emphasis', 'feedback', 'heading', 'hidden', 'icon', 'initiallyHidden', 'message', 'uid'],
|
|
1144
|
+
outputs: ['hiddenChanged'],
|
|
1026
1145
|
standalone: false
|
|
1027
1146
|
}]
|
|
1028
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1147
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { hiddenChanged: [{
|
|
1148
|
+
type: Output
|
|
1149
|
+
}] } });
|
|
1029
1150
|
let NvNotificationBullet = class NvNotificationBullet {
|
|
1030
1151
|
constructor(c, r, z) {
|
|
1031
1152
|
this.z = z;
|
|
@@ -1079,12 +1200,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1079
1200
|
let NvPopover = class NvPopover {
|
|
1080
1201
|
constructor(c, r, z) {
|
|
1081
1202
|
this.z = z;
|
|
1203
|
+
this.openChanged = new EventEmitter();
|
|
1082
1204
|
c.detach();
|
|
1083
1205
|
this.el = r.nativeElement;
|
|
1084
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
1085
1206
|
}
|
|
1086
1207
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1087
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvPopover, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1208
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvPopover, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1088
1209
|
};
|
|
1089
1210
|
NvPopover = __decorate([
|
|
1090
1211
|
ProxyCmp({
|
|
@@ -1100,9 +1221,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1100
1221
|
template: '<ng-content></ng-content>',
|
|
1101
1222
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1102
1223
|
inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'strategy', 'triggerMode'],
|
|
1224
|
+
outputs: ['openChanged'],
|
|
1103
1225
|
standalone: false
|
|
1104
1226
|
}]
|
|
1105
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1227
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1228
|
+
type: Output
|
|
1229
|
+
}] } });
|
|
1106
1230
|
let NvRow = class NvRow {
|
|
1107
1231
|
constructor(c, r, z) {
|
|
1108
1232
|
this.z = z;
|
|
@@ -1129,12 +1253,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1129
1253
|
let NvSidebar = class NvSidebar {
|
|
1130
1254
|
constructor(c, r, z) {
|
|
1131
1255
|
this.z = z;
|
|
1256
|
+
this.openChanged = new EventEmitter();
|
|
1132
1257
|
c.detach();
|
|
1133
1258
|
this.el = r.nativeElement;
|
|
1134
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
1135
1259
|
}
|
|
1136
1260
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1137
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvSidebar, selector: "nv-sidebar", inputs: { activePath: "activePath", notificationEmphasis: "notificationEmphasis", notificationIntention: "notificationIntention", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1261
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvSidebar, 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 }); }
|
|
1138
1262
|
};
|
|
1139
1263
|
NvSidebar = __decorate([
|
|
1140
1264
|
ProxyCmp({
|
|
@@ -1149,9 +1273,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1149
1273
|
template: '<ng-content></ng-content>',
|
|
1150
1274
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1151
1275
|
inputs: ['activePath', 'notificationEmphasis', 'notificationIntention', 'open', 'type'],
|
|
1276
|
+
outputs: ['openChanged'],
|
|
1152
1277
|
standalone: false
|
|
1153
1278
|
}]
|
|
1154
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1279
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1280
|
+
type: Output
|
|
1281
|
+
}] } });
|
|
1155
1282
|
let NvSidebarcontent = class NvSidebarcontent {
|
|
1156
1283
|
constructor(c, r, z) {
|
|
1157
1284
|
this.z = z;
|
|
@@ -1347,12 +1474,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1347
1474
|
let NvSplit = class NvSplit {
|
|
1348
1475
|
constructor(c, r, z) {
|
|
1349
1476
|
this.z = z;
|
|
1477
|
+
this.sizesChanged = new EventEmitter();
|
|
1350
1478
|
c.detach();
|
|
1351
1479
|
this.el = r.nativeElement;
|
|
1352
|
-
proxyOutputs(this, this.el, ['sizesChanged']);
|
|
1353
1480
|
}
|
|
1354
1481
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvSplit, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1355
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvSplit, 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 }); }
|
|
1482
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvSplit, 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 }); }
|
|
1356
1483
|
};
|
|
1357
1484
|
NvSplit = __decorate([
|
|
1358
1485
|
ProxyCmp({
|
|
@@ -1368,9 +1495,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1368
1495
|
template: '<ng-content></ng-content>',
|
|
1369
1496
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1370
1497
|
inputs: ['direction', 'gutterSize', 'minSizes', 'sizes'],
|
|
1498
|
+
outputs: ['sizesChanged'],
|
|
1371
1499
|
standalone: false
|
|
1372
1500
|
}]
|
|
1373
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1501
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sizesChanged: [{
|
|
1502
|
+
type: Output
|
|
1503
|
+
}] } });
|
|
1374
1504
|
let NvStack = class NvStack {
|
|
1375
1505
|
constructor(c, r, z) {
|
|
1376
1506
|
this.z = z;
|
|
@@ -1422,12 +1552,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1422
1552
|
let NvTableheader = class NvTableheader {
|
|
1423
1553
|
constructor(c, r, z) {
|
|
1424
1554
|
this.z = z;
|
|
1555
|
+
this.sortDirectionChanged = new EventEmitter();
|
|
1425
1556
|
c.detach();
|
|
1426
1557
|
this.el = r.nativeElement;
|
|
1427
|
-
proxyOutputs(this, this.el, ['sortDirectionChanged']);
|
|
1428
1558
|
}
|
|
1429
1559
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTableheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1430
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTableheader, selector: "nv-tableheader", inputs: { sortDirection: "sortDirection", sortable: "sortable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1560
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTableheader, selector: "nv-tableheader", inputs: { sortDirection: "sortDirection", sortable: "sortable" }, outputs: { sortDirectionChanged: "sortDirectionChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1431
1561
|
};
|
|
1432
1562
|
NvTableheader = __decorate([
|
|
1433
1563
|
ProxyCmp({
|
|
@@ -1442,18 +1572,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1442
1572
|
template: '<ng-content></ng-content>',
|
|
1443
1573
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1444
1574
|
inputs: ['sortDirection', 'sortable'],
|
|
1575
|
+
outputs: ['sortDirectionChanged'],
|
|
1445
1576
|
standalone: false
|
|
1446
1577
|
}]
|
|
1447
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1578
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sortDirectionChanged: [{
|
|
1579
|
+
type: Output
|
|
1580
|
+
}] } });
|
|
1448
1581
|
let NvToggle = class NvToggle {
|
|
1449
1582
|
constructor(c, r, z) {
|
|
1450
1583
|
this.z = z;
|
|
1584
|
+
this.checkedChanged = new EventEmitter();
|
|
1451
1585
|
c.detach();
|
|
1452
1586
|
this.el = r.nativeElement;
|
|
1453
|
-
proxyOutputs(this, this.el, ['checkedChanged']);
|
|
1454
1587
|
}
|
|
1455
1588
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1456
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvToggle, selector: "nv-toggle", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", label: "label", labelPlacement: "labelPlacement", name: "name", readonly: "readonly", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1589
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvToggle, selector: "nv-toggle", inputs: { checked: "checked", description: "description", disabled: "disabled", hideLabel: "hideLabel", inputId: "inputId", label: "label", labelPlacement: "labelPlacement", name: "name", readonly: "readonly", value: "value" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1457
1590
|
};
|
|
1458
1591
|
NvToggle = __decorate([
|
|
1459
1592
|
ProxyCmp({
|
|
@@ -1468,18 +1601,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1468
1601
|
template: '<ng-content></ng-content>',
|
|
1469
1602
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1470
1603
|
inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value'],
|
|
1604
|
+
outputs: ['checkedChanged'],
|
|
1471
1605
|
standalone: false
|
|
1472
1606
|
}]
|
|
1473
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1607
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
|
|
1608
|
+
type: Output
|
|
1609
|
+
}] } });
|
|
1474
1610
|
let NvTogglebutton = class NvTogglebutton {
|
|
1475
1611
|
constructor(c, r, z) {
|
|
1476
1612
|
this.z = z;
|
|
1613
|
+
this.toggled = new EventEmitter();
|
|
1477
1614
|
c.detach();
|
|
1478
1615
|
this.el = r.nativeElement;
|
|
1479
|
-
proxyOutputs(this, this.el, ['toggled']);
|
|
1480
1616
|
}
|
|
1481
1617
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTogglebutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1482
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTogglebutton, 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 }); }
|
|
1618
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTogglebutton, 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 }); }
|
|
1483
1619
|
};
|
|
1484
1620
|
NvTogglebutton = __decorate([
|
|
1485
1621
|
ProxyCmp({
|
|
@@ -1494,18 +1630,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1494
1630
|
template: '<ng-content></ng-content>',
|
|
1495
1631
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1496
1632
|
inputs: ['active', 'disabled', 'emphasis', 'size', 'value'],
|
|
1633
|
+
outputs: ['toggled'],
|
|
1497
1634
|
standalone: false
|
|
1498
1635
|
}]
|
|
1499
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1636
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { toggled: [{
|
|
1637
|
+
type: Output
|
|
1638
|
+
}] } });
|
|
1500
1639
|
let NvTogglebuttongroup = class NvTogglebuttongroup {
|
|
1501
1640
|
constructor(c, r, z) {
|
|
1502
1641
|
this.z = z;
|
|
1642
|
+
this.valueChanged = new EventEmitter();
|
|
1503
1643
|
c.detach();
|
|
1504
1644
|
this.el = r.nativeElement;
|
|
1505
|
-
proxyOutputs(this, this.el, ['valueChanged']);
|
|
1506
1645
|
}
|
|
1507
1646
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTogglebuttongroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1508
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTogglebuttongroup, 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 }); }
|
|
1647
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTogglebuttongroup, 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 }); }
|
|
1509
1648
|
};
|
|
1510
1649
|
NvTogglebuttongroup = __decorate([
|
|
1511
1650
|
ProxyCmp({
|
|
@@ -1520,18 +1659,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1520
1659
|
template: '<ng-content></ng-content>',
|
|
1521
1660
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1522
1661
|
inputs: ['emphasis', 'enforceValue', 'exclusive', 'size', 'value'],
|
|
1662
|
+
outputs: ['valueChanged'],
|
|
1523
1663
|
standalone: false
|
|
1524
1664
|
}]
|
|
1525
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1665
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1666
|
+
type: Output
|
|
1667
|
+
}] } });
|
|
1526
1668
|
let NvTooltip = class NvTooltip {
|
|
1527
1669
|
constructor(c, r, z) {
|
|
1528
1670
|
this.z = z;
|
|
1671
|
+
this.openChanged = new EventEmitter();
|
|
1529
1672
|
c.detach();
|
|
1530
1673
|
this.el = r.nativeElement;
|
|
1531
|
-
proxyOutputs(this, this.el, ['openChanged']);
|
|
1532
1674
|
}
|
|
1533
1675
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NvTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1534
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTooltip, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1676
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NvTooltip, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1535
1677
|
};
|
|
1536
1678
|
NvTooltip = __decorate([
|
|
1537
1679
|
ProxyCmp({
|
|
@@ -1546,9 +1688,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1546
1688
|
template: '<ng-content></ng-content>',
|
|
1547
1689
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1548
1690
|
inputs: ['enterDelay', 'message', 'placement', 'strategy'],
|
|
1691
|
+
outputs: ['openChanged'],
|
|
1549
1692
|
standalone: false
|
|
1550
1693
|
}]
|
|
1551
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1694
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
|
|
1695
|
+
type: Output
|
|
1696
|
+
}] } });
|
|
1552
1697
|
|
|
1553
1698
|
const DIRECTIVES = [
|
|
1554
1699
|
NvAccordion,
|
|
@@ -3844,9 +3989,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
3844
3989
|
* @returns {string} A unique identifier string
|
|
3845
3990
|
*/
|
|
3846
3991
|
const generateId = () => {
|
|
3847
|
-
return `notification-${
|
|
3848
|
-
.toString(36)
|
|
3849
|
-
.substr(2, 9)}`;
|
|
3992
|
+
return `notification-${v4()}`;
|
|
3850
3993
|
};
|
|
3851
3994
|
/**
|
|
3852
3995
|
* Angular service for managing notifications.
|
|
@@ -4080,6 +4223,7 @@ class NotificationServiceComponent {
|
|
|
4080
4223
|
"
|
|
4081
4224
|
#notificationEl
|
|
4082
4225
|
[attr.data-id]="notification.id"
|
|
4226
|
+
[uid]="notification.id"
|
|
4083
4227
|
[heading]="notification.heading"
|
|
4084
4228
|
[message]="notification.message"
|
|
4085
4229
|
[dismissible]="notification.dismissible"
|
|
@@ -4135,6 +4279,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
4135
4279
|
"
|
|
4136
4280
|
#notificationEl
|
|
4137
4281
|
[attr.data-id]="notification.id"
|
|
4282
|
+
[uid]="notification.id"
|
|
4138
4283
|
[heading]="notification.heading"
|
|
4139
4284
|
[message]="notification.message"
|
|
4140
4285
|
[dismissible]="notification.dismissible"
|