@nova-design-system/nova-angular 3.22.0 → 3.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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, ElementRef, ViewChildren, APP_INITIALIZER, NgModule } 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, ElementRef, ViewChildren, APP_INITIALIZER, NgModule } 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
141
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvAlert, selector: "nv-alert", inputs: { color: "color", dismissible: "dismissible", feedback: "feedback", hasNoAnimations: "hasNoAnimations", heading: "heading", hidden: "hidden", icon: "icon", message: "message", preventAutoClose: "preventAutoClose" }, 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: "17.3.9", ngImpor
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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", 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: "17.3.9", 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: "17.3.9", ngImpor
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: "17.3.9", 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: "17.3.9", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
484
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDialogfooter, selector: "nv-dialogfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, 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: "17.3.9", ngImpor
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;
@@ -477,19 +529,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
477
529
  standalone: false
478
530
  }]
479
531
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
532
+ let NvDrawer = class NvDrawer {
533
+ constructor(c, r, z) {
534
+ this.z = z;
535
+ this.openChanged = new EventEmitter();
536
+ c.detach();
537
+ this.el = r.nativeElement;
538
+ }
539
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
540
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDrawer, selector: "nv-drawer", inputs: { autofocus: "autofocus", clickOutside: "clickOutside", controlled: "controlled", open: "open", side: "side", size: "size", swipeToOpen: "swipeToOpen", undismissable: "undismissable", width: "width" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
541
+ };
542
+ NvDrawer = __decorate([
543
+ ProxyCmp({
544
+ inputs: ['autofocus', 'clickOutside', 'controlled', 'open', 'side', 'size', 'swipeToOpen', 'undismissable', 'width'],
545
+ methods: ['show', 'close']
546
+ })
547
+ ], NvDrawer);
548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawer, decorators: [{
549
+ type: Component,
550
+ args: [{
551
+ selector: 'nv-drawer',
552
+ changeDetection: ChangeDetectionStrategy.OnPush,
553
+ template: '<ng-content></ng-content>',
554
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
555
+ inputs: ['autofocus', 'clickOutside', 'controlled', 'open', 'side', 'size', 'swipeToOpen', 'undismissable', 'width'],
556
+ outputs: ['openChanged'],
557
+ standalone: false
558
+ }]
559
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
560
+ type: Output
561
+ }] } });
562
+ let NvDrawerfooter = class NvDrawerfooter {
563
+ constructor(c, r, z) {
564
+ this.z = z;
565
+ this.drawerCanceled = new EventEmitter();
566
+ this.drawerPrimaryClicked = new EventEmitter();
567
+ c.detach();
568
+ this.el = r.nativeElement;
569
+ }
570
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
571
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDrawerfooter, selector: "nv-drawerfooter", inputs: { cancelLabel: "cancelLabel", danger: "danger", disabled: "disabled", form: "form", leadingIcon: "leadingIcon", primaryButtonType: "primaryButtonType", primaryLabel: "primaryLabel", trailingIcon: "trailingIcon", undismissable: "undismissable" }, outputs: { drawerCanceled: "drawerCanceled", drawerPrimaryClicked: "drawerPrimaryClicked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
572
+ };
573
+ NvDrawerfooter = __decorate([
574
+ ProxyCmp({
575
+ inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable']
576
+ })
577
+ ], NvDrawerfooter);
578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerfooter, decorators: [{
579
+ type: Component,
580
+ args: [{
581
+ selector: 'nv-drawerfooter',
582
+ changeDetection: ChangeDetectionStrategy.OnPush,
583
+ template: '<ng-content></ng-content>',
584
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
585
+ inputs: ['cancelLabel', 'danger', 'disabled', 'form', 'leadingIcon', 'primaryButtonType', 'primaryLabel', 'trailingIcon', 'undismissable'],
586
+ outputs: ['drawerCanceled', 'drawerPrimaryClicked'],
587
+ standalone: false
588
+ }]
589
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { drawerCanceled: [{
590
+ type: Output
591
+ }], drawerPrimaryClicked: [{
592
+ type: Output
593
+ }] } });
594
+ let NvDrawerheader = class NvDrawerheader {
595
+ constructor(c, r, z) {
596
+ this.z = z;
597
+ c.detach();
598
+ this.el = r.nativeElement;
599
+ }
600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
601
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDrawerheader, selector: "nv-drawerheader", inputs: { heading: "heading", subheading: "subheading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
602
+ };
603
+ NvDrawerheader = __decorate([
604
+ ProxyCmp({
605
+ inputs: ['heading', 'subheading']
606
+ })
607
+ ], NvDrawerheader);
608
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerheader, decorators: [{
609
+ type: Component,
610
+ args: [{
611
+ selector: 'nv-drawerheader',
612
+ changeDetection: ChangeDetectionStrategy.OnPush,
613
+ template: '<ng-content></ng-content>',
614
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
615
+ inputs: ['heading', 'subheading'],
616
+ standalone: false
617
+ }]
618
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
480
619
  let NvFieldcheckbox = class NvFieldcheckbox {
481
620
  constructor(c, r, z) {
482
621
  this.z = z;
622
+ this.checkedChanged = new EventEmitter();
483
623
  c.detach();
484
624
  this.el = r.nativeElement;
485
- proxyOutputs(this, this.el, ['checkedChanged']);
486
625
  }
487
626
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
488
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldcheckbox, selector: "nv-fieldcheckbox", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", hideLabel: "hideLabel", indeterminate: "indeterminate", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", readonly: "readonly", required: "required", validation: "validation", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
627
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
628
  };
490
629
  NvFieldcheckbox = __decorate([
491
630
  ProxyCmp({
492
- inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
631
+ inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value']
493
632
  })
494
633
  ], NvFieldcheckbox);
495
634
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldcheckbox, decorators: [{
@@ -499,23 +638,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
499
638
  changeDetection: ChangeDetectionStrategy.OnPush,
500
639
  template: '<ng-content></ng-content>',
501
640
  // 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'],
641
+ inputs: ['ariaRequiredAttr', 'autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'hideLabel', 'indeterminate', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'readonly', 'required', 'validation', 'value'],
642
+ outputs: ['checkedChanged'],
503
643
  standalone: false
504
644
  }]
505
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
645
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
646
+ type: Output
647
+ }] } });
506
648
  let NvFielddate = class NvFielddate {
507
649
  constructor(c, r, z) {
508
650
  this.z = z;
651
+ this.valueChanged = new EventEmitter();
509
652
  c.detach();
510
653
  this.el = r.nativeElement;
511
- proxyOutputs(this, this.el, ['valueChanged']);
512
654
  }
513
655
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", 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: "17.3.9", 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 }); }
656
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
657
  };
516
658
  NvFielddate = __decorate([
517
659
  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'],
660
+ 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
661
  methods: ['clear']
520
662
  })
521
663
  ], NvFielddate);
@@ -526,23 +668,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
526
668
  changeDetection: ChangeDetectionStrategy.OnPush,
527
669
  template: '<ng-content></ng-content>',
528
670
  // 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'],
671
+ 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'],
672
+ outputs: ['valueChanged'],
530
673
  standalone: false
531
674
  }]
532
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
675
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
676
+ type: Output
677
+ }] } });
533
678
  let NvFielddaterange = class NvFielddaterange {
534
679
  constructor(c, r, z) {
535
680
  this.z = z;
681
+ this.dateRangeChange = new EventEmitter();
682
+ this.valueChanged = new EventEmitter();
536
683
  c.detach();
537
684
  this.el = r.nativeElement;
538
- proxyOutputs(this, this.el, ['dateRangeChange', 'valueChanged']);
539
685
  }
540
686
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", 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: "17.3.9", 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 }); }
687
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
688
  };
543
689
  NvFielddaterange = __decorate([
544
690
  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'],
691
+ 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
692
  methods: ['clear']
547
693
  })
548
694
  ], NvFielddaterange);
@@ -553,23 +699,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
553
699
  changeDetection: ChangeDetectionStrategy.OnPush,
554
700
  template: '<ng-content></ng-content>',
555
701
  // 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'],
702
+ 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'],
703
+ outputs: ['dateRangeChange', 'valueChanged'],
557
704
  standalone: false
558
705
  }]
559
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
706
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dateRangeChange: [{
707
+ type: Output
708
+ }], valueChanged: [{
709
+ type: Output
710
+ }] } });
560
711
  let NvFielddropdown = class NvFielddropdown {
561
712
  constructor(c, r, z) {
562
713
  this.z = z;
714
+ this.valueChanged = new EventEmitter();
715
+ this.filterTextChanged = new EventEmitter();
716
+ this.openChanged = new EventEmitter();
717
+ this.dropdownItemSelected = new EventEmitter();
563
718
  c.detach();
564
719
  this.el = r.nativeElement;
565
- proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected']);
566
720
  }
567
721
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFielddropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
568
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
722
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
723
  };
570
724
  NvFielddropdown = __decorate([
571
725
  ProxyCmp({
572
- inputs: ['autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterable', 'fluid', 'inputId', 'label', 'maxHeight', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'value'],
726
+ 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
727
  methods: ['clearFilter', 'toggleDropdown']
574
728
  })
575
729
  ], NvFielddropdown);
@@ -580,19 +734,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
580
734
  changeDetection: ChangeDetectionStrategy.OnPush,
581
735
  template: '<ng-content></ng-content>',
582
736
  // 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'],
737
+ 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'],
738
+ outputs: ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected'],
584
739
  standalone: false
585
740
  }]
586
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
741
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
742
+ type: Output
743
+ }], filterTextChanged: [{
744
+ type: Output
745
+ }], openChanged: [{
746
+ type: Output
747
+ }], dropdownItemSelected: [{
748
+ type: Output
749
+ }] } });
587
750
  let NvFielddropdownitem = class NvFielddropdownitem {
588
751
  constructor(c, r, z) {
589
752
  this.z = z;
753
+ this.dropdownItemSelected = new EventEmitter();
590
754
  c.detach();
591
755
  this.el = r.nativeElement;
592
- proxyOutputs(this, this.el, ['dropdownItemSelected']);
593
756
  }
594
757
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFielddropdownitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
595
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
758
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
759
  };
597
760
  NvFielddropdownitem = __decorate([
598
761
  ProxyCmp({
@@ -607,18 +770,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
607
770
  template: '<ng-content></ng-content>',
608
771
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
609
772
  inputs: ['detached', 'disabled', 'label', 'selected', 'value'],
773
+ outputs: ['dropdownItemSelected'],
610
774
  standalone: false
611
775
  }]
612
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
776
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dropdownItemSelected: [{
777
+ type: Output
778
+ }] } });
613
779
  let NvFielddropdownitemcheck = class NvFielddropdownitemcheck {
614
780
  constructor(c, r, z) {
615
781
  this.z = z;
782
+ this.itemChecked = new EventEmitter();
616
783
  c.detach();
617
784
  this.el = r.nativeElement;
618
- proxyOutputs(this, this.el, ['itemChecked']);
619
785
  }
620
786
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", 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: "17.3.9", 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 }); }
787
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
788
  };
623
789
  NvFielddropdownitemcheck = __decorate([
624
790
  ProxyCmp({
@@ -633,22 +799,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
633
799
  template: '<ng-content></ng-content>',
634
800
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
635
801
  inputs: ['checked', 'description', 'disabled', 'group', 'label', 'value'],
802
+ outputs: ['itemChecked'],
636
803
  standalone: false
637
804
  }]
638
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
805
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemChecked: [{
806
+ type: Output
807
+ }] } });
639
808
  let NvFieldmultiselect = class NvFieldmultiselect {
640
809
  constructor(c, r, z) {
641
810
  this.z = z;
811
+ this.valueChanged = new EventEmitter();
812
+ this.filterTextChanged = new EventEmitter();
642
813
  c.detach();
643
814
  this.el = r.nativeElement;
644
- proxyOutputs(this, this.el, ['valueChanged', 'filterTextChanged']);
645
815
  }
646
816
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldmultiselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
647
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldmultiselect, selector: "nv-fieldmultiselect", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", badgeLabel: "badgeLabel", debounceDelay: "debounceDelay", description: "description", 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 }); }
817
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
818
  };
649
819
  NvFieldmultiselect = __decorate([
650
820
  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'],
821
+ 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
822
  methods: ['getFilterText', 'resetFilter', 'getSelectedValues', 'selectAll', 'deselectAll', 'toggleSelectAll']
653
823
  })
654
824
  ], NvFieldmultiselect);
@@ -659,23 +829,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
659
829
  changeDetection: ChangeDetectionStrategy.OnPush,
660
830
  template: '<ng-content></ng-content>',
661
831
  // 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'],
832
+ 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'],
833
+ outputs: ['valueChanged', 'filterTextChanged'],
663
834
  standalone: false
664
835
  }]
665
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
836
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
837
+ type: Output
838
+ }], filterTextChanged: [{
839
+ type: Output
840
+ }] } });
666
841
  let NvFieldnumber = class NvFieldnumber {
667
842
  constructor(c, r, z) {
668
843
  this.z = z;
844
+ this.valueChanged = new EventEmitter();
669
845
  c.detach();
670
846
  this.el = r.nativeElement;
671
- proxyOutputs(this, this.el, ['valueChanged']);
672
847
  }
673
848
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
674
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldnumber, selector: "nv-fieldnumber", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
849
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
850
  };
676
851
  NvFieldnumber = __decorate([
677
852
  ProxyCmp({
678
- inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
853
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value']
679
854
  })
680
855
  ], NvFieldnumber);
681
856
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldnumber, decorators: [{
@@ -685,23 +860,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
685
860
  changeDetection: ChangeDetectionStrategy.OnPush,
686
861
  template: '<ng-content></ng-content>',
687
862
  // 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'],
863
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'max', 'message', 'min', 'name', 'placeholder', 'readonly', 'required', 'step', 'success', 'validation', 'value'],
864
+ outputs: ['valueChanged'],
689
865
  standalone: false
690
866
  }]
691
- }], 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
+ }] } });
692
870
  let NvFieldpassword = class NvFieldpassword {
693
871
  constructor(c, r, z) {
694
872
  this.z = z;
873
+ this.valueChanged = new EventEmitter();
695
874
  c.detach();
696
875
  this.el = r.nativeElement;
697
- proxyOutputs(this, this.el, ['valueChanged']);
698
876
  }
699
877
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
700
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldpassword, selector: "nv-fieldpassword", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
878
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
879
  };
702
880
  NvFieldpassword = __decorate([
703
881
  ProxyCmp({
704
- inputs: ['autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
882
+ inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value']
705
883
  })
706
884
  ], NvFieldpassword);
707
885
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldpassword, decorators: [{
@@ -711,19 +889,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
711
889
  changeDetection: ChangeDetectionStrategy.OnPush,
712
890
  template: '<ng-content></ng-content>',
713
891
  // 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'],
892
+ inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'hidePasswordIcon', 'inputId', 'label', 'maxlength', 'minlength', 'mode', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showPassword', 'success', 'value'],
893
+ outputs: ['valueChanged'],
715
894
  standalone: false
716
895
  }]
717
- }], 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
+ }] } });
718
899
  let NvFieldradio = class NvFieldradio {
719
900
  constructor(c, r, z) {
720
901
  this.z = z;
902
+ this.checkedChanged = new EventEmitter();
721
903
  c.detach();
722
904
  this.el = r.nativeElement;
723
- proxyOutputs(this, this.el, ['checkedChanged']);
724
905
  }
725
906
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldradio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
726
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
907
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldradio, selector: "nv-fieldradio", inputs: { autofocus: "autofocus", checked: "checked", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", inputId: "inputId", label: "label", labelBefore: "labelBefore", labelPlacement: "labelPlacement", message: "message", name: "name", value: "value" }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
727
908
  };
728
909
  NvFieldradio = __decorate([
729
910
  ProxyCmp({
@@ -738,22 +919,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
738
919
  template: '<ng-content></ng-content>',
739
920
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
740
921
  inputs: ['autofocus', 'checked', 'description', 'disabled', 'error', 'errorDescription', 'inputId', 'label', 'labelBefore', 'labelPlacement', 'message', 'name', 'value'],
922
+ outputs: ['checkedChanged'],
741
923
  standalone: false
742
924
  }]
743
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
925
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
926
+ type: Output
927
+ }] } });
744
928
  let NvFieldselect = class NvFieldselect {
745
929
  constructor(c, r, z) {
746
930
  this.z = z;
931
+ this.valueChanged = new EventEmitter();
747
932
  c.detach();
748
933
  this.el = r.nativeElement;
749
- proxyOutputs(this, this.el, ['valueChanged']);
750
934
  }
751
935
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
752
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldselect, selector: "nv-fieldselect", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", 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 }); }
936
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
937
  };
754
938
  NvFieldselect = __decorate([
755
939
  ProxyCmp({
756
- inputs: ['autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
940
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
757
941
  })
758
942
  ], NvFieldselect);
759
943
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldselect, decorators: [{
@@ -763,19 +947,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
763
947
  changeDetection: ChangeDetectionStrategy.OnPush,
764
948
  template: '<ng-content></ng-content>',
765
949
  // 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'],
950
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
951
+ outputs: ['valueChanged'],
767
952
  standalone: false
768
953
  }]
769
- }], 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
+ }] } });
770
957
  let NvFieldslider = class NvFieldslider {
771
958
  constructor(c, r, z) {
772
959
  this.z = z;
960
+ this.valueChanged = new EventEmitter();
773
961
  c.detach();
774
962
  this.el = r.nativeElement;
775
- proxyOutputs(this, this.el, ['valueChanged']);
776
963
  }
777
964
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", 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: "17.3.9", 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 }); }
965
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
966
  };
780
967
  NvFieldslider = __decorate([
781
968
  ProxyCmp({
@@ -790,22 +977,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
790
977
  template: '<ng-content></ng-content>',
791
978
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
792
979
  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'],
980
+ outputs: ['valueChanged'],
793
981
  standalone: false
794
982
  }]
795
- }], 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
+ }] } });
796
986
  let NvFieldtext = class NvFieldtext {
797
987
  constructor(c, r, z) {
798
988
  this.z = z;
989
+ this.valueChanged = new EventEmitter();
799
990
  c.detach();
800
991
  this.el = r.nativeElement;
801
- proxyOutputs(this, this.el, ['valueChanged']);
802
992
  }
803
993
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
804
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtext, selector: "nv-fieldtext", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
994
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
995
  };
806
996
  NvFieldtext = __decorate([
807
997
  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']
998
+ 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
999
  })
810
1000
  ], NvFieldtext);
811
1001
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtext, decorators: [{
@@ -815,23 +1005,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
815
1005
  changeDetection: ChangeDetectionStrategy.OnPush,
816
1006
  template: '<ng-content></ng-content>',
817
1007
  // 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'],
1008
+ 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'],
1009
+ outputs: ['valueChanged'],
819
1010
  standalone: false
820
1011
  }]
821
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1012
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
1013
+ type: Output
1014
+ }] } });
822
1015
  let NvFieldtextarea = class NvFieldtextarea {
823
1016
  constructor(c, r, z) {
824
1017
  this.z = z;
1018
+ this.valueChanged = new EventEmitter();
825
1019
  c.detach();
826
1020
  this.el = r.nativeElement;
827
- proxyOutputs(this, this.el, ['valueChanged']);
828
1021
  }
829
1022
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
830
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtextarea, selector: "nv-fieldtextarea", inputs: { autofocus: "autofocus", autosize: "autosize", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", 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 }); }
1023
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
1024
  };
832
1025
  NvFieldtextarea = __decorate([
833
1026
  ProxyCmp({
834
- inputs: ['autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
1027
+ inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value']
835
1028
  })
836
1029
  ], NvFieldtextarea);
837
1030
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtextarea, decorators: [{
@@ -841,23 +1034,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
841
1034
  changeDetection: ChangeDetectionStrategy.OnPush,
842
1035
  template: '<ng-content></ng-content>',
843
1036
  // 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'],
1037
+ inputs: ['ariaRequiredAttr', 'autofocus', 'autosize', 'description', 'disabled', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'maxlength', 'message', 'minlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'success', 'validation', 'value'],
1038
+ outputs: ['valueChanged'],
845
1039
  standalone: false
846
1040
  }]
847
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1041
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
1042
+ type: Output
1043
+ }] } });
848
1044
  let NvFieldtime = class NvFieldtime {
849
1045
  constructor(c, r, z) {
850
1046
  this.z = z;
1047
+ this.valueChanged = new EventEmitter();
851
1048
  c.detach();
852
1049
  this.el = r.nativeElement;
853
- proxyOutputs(this, this.el, ['valueChanged']);
854
1050
  }
855
1051
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
856
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvFieldtime, selector: "nv-fieldtime", inputs: { autofocus: "autofocus", description: "description", disabled: "disabled", error: "error", errorDescription: "errorDescription", format: "format", inputId: "inputId", label: "label", max: "max", min: "min", name: "name", open: "open", readonly: "readonly", required: "required", step: "step", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1052
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
1053
  };
858
1054
  NvFieldtime = __decorate([
859
1055
  ProxyCmp({
860
- inputs: ['autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
1056
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value']
861
1057
  })
862
1058
  ], NvFieldtime);
863
1059
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvFieldtime, decorators: [{
@@ -867,10 +1063,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
867
1063
  changeDetection: ChangeDetectionStrategy.OnPush,
868
1064
  template: '<ng-content></ng-content>',
869
1065
  // 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'],
1066
+ inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'error', 'errorDescription', 'format', 'inputId', 'label', 'max', 'min', 'name', 'open', 'readonly', 'required', 'step', 'success', 'value'],
1067
+ outputs: ['valueChanged'],
871
1068
  standalone: false
872
1069
  }]
873
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1070
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
1071
+ type: Output
1072
+ }] } });
874
1073
  let NvIcon = class NvIcon {
875
1074
  constructor(c, r, z) {
876
1075
  this.z = z;
@@ -949,12 +1148,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
949
1148
  let NvMenu = class NvMenu {
950
1149
  constructor(c, r, z) {
951
1150
  this.z = z;
1151
+ this.menuitemSelected = new EventEmitter();
952
1152
  c.detach();
953
1153
  this.el = r.nativeElement;
954
- proxyOutputs(this, this.el, ['menuitemSelected']);
955
1154
  }
956
1155
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
957
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
1157
  };
959
1158
  NvMenu = __decorate([
960
1159
  ProxyCmp({
@@ -970,18 +1169,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
970
1169
  template: '<ng-content></ng-content>',
971
1170
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
972
1171
  inputs: ['disableCloseOnSelect', 'items', 'nested', 'open', 'placement'],
1172
+ outputs: ['menuitemSelected'],
973
1173
  standalone: false
974
1174
  }]
975
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1175
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
1176
+ type: Output
1177
+ }] } });
976
1178
  let NvMenuitem = class NvMenuitem {
977
1179
  constructor(c, r, z) {
978
1180
  this.z = z;
1181
+ this.menuitemSelected = new EventEmitter();
979
1182
  c.detach();
980
1183
  this.el = r.nativeElement;
981
- proxyOutputs(this, this.el, ['menuitemSelected']);
982
1184
  }
983
1185
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvMenuitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
984
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1186
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvMenuitem, selector: "nv-menuitem", inputs: { disabled: "disabled", hasSubmenu: "hasSubmenu", icon: "icon", label: "label", name: "name", shortcut: "shortcut" }, outputs: { menuitemSelected: "menuitemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
985
1187
  };
986
1188
  NvMenuitem = __decorate([
987
1189
  ProxyCmp({
@@ -996,18 +1198,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
996
1198
  template: '<ng-content></ng-content>',
997
1199
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
998
1200
  inputs: ['disabled', 'hasSubmenu', 'icon', 'label', 'name', 'shortcut'],
1201
+ outputs: ['menuitemSelected'],
999
1202
  standalone: false
1000
1203
  }]
1001
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1204
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuitemSelected: [{
1205
+ type: Output
1206
+ }] } });
1002
1207
  let NvNotification = class NvNotification {
1003
1208
  constructor(c, r, z) {
1004
1209
  this.z = z;
1210
+ this.hiddenChanged = new EventEmitter();
1005
1211
  c.detach();
1006
1212
  this.el = r.nativeElement;
1007
- proxyOutputs(this, this.el, ['hiddenChanged']);
1008
1213
  }
1009
1214
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", 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: "17.3.9", 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 }); }
1215
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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
1216
  };
1012
1217
  NvNotification = __decorate([
1013
1218
  ProxyCmp({
@@ -1023,6 +1228,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1023
1228
  template: '<ng-content></ng-content>',
1024
1229
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1025
1230
  inputs: ['dismissible', 'emphasis', 'feedback', 'heading', 'hidden', 'icon', 'initiallyHidden', 'message', 'uid'],
1231
+ outputs: ['hiddenChanged'],
1232
+ standalone: false
1233
+ }]
1234
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { hiddenChanged: [{
1235
+ type: Output
1236
+ }] } });
1237
+ let NvNotificationBullet = class NvNotificationBullet {
1238
+ constructor(c, r, z) {
1239
+ this.z = z;
1240
+ c.detach();
1241
+ this.el = r.nativeElement;
1242
+ }
1243
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvNotificationBullet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1244
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvNotificationBullet, selector: "nv-notification-bullet", inputs: { contrastingBorder: "contrastingBorder", count: "count", emphasis: "emphasis", intention: "intention", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1245
+ };
1246
+ NvNotificationBullet = __decorate([
1247
+ ProxyCmp({
1248
+ inputs: ['contrastingBorder', 'count', 'emphasis', 'intention', 'size']
1249
+ })
1250
+ ], NvNotificationBullet);
1251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvNotificationBullet, decorators: [{
1252
+ type: Component,
1253
+ args: [{
1254
+ selector: 'nv-notification-bullet',
1255
+ changeDetection: ChangeDetectionStrategy.OnPush,
1256
+ template: '<ng-content></ng-content>',
1257
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1258
+ inputs: ['contrastingBorder', 'count', 'emphasis', 'intention', 'size'],
1026
1259
  standalone: false
1027
1260
  }]
1028
1261
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
@@ -1054,12 +1287,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1054
1287
  let NvPopover = class NvPopover {
1055
1288
  constructor(c, r, z) {
1056
1289
  this.z = z;
1290
+ this.openChanged = new EventEmitter();
1057
1291
  c.detach();
1058
1292
  this.el = r.nativeElement;
1059
- proxyOutputs(this, this.el, ['openChanged']);
1060
1293
  }
1061
1294
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1062
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvPopover, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1295
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvPopover, selector: "nv-popover", inputs: { disableFlip: "disableFlip", enterDelay: "enterDelay", groupName: "groupName", hasArrow: "hasArrow", nested: "nested", offset: "offset", open: "open", placement: "placement", shiftPadding: "shiftPadding", strategy: "strategy", triggerMode: "triggerMode" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1063
1296
  };
1064
1297
  NvPopover = __decorate([
1065
1298
  ProxyCmp({
@@ -1075,9 +1308,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1075
1308
  template: '<ng-content></ng-content>',
1076
1309
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1077
1310
  inputs: ['disableFlip', 'enterDelay', 'groupName', 'hasArrow', 'nested', 'offset', 'open', 'placement', 'shiftPadding', 'strategy', 'triggerMode'],
1311
+ outputs: ['openChanged'],
1078
1312
  standalone: false
1079
1313
  }]
1080
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1314
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
1315
+ type: Output
1316
+ }] } });
1081
1317
  let NvRow = class NvRow {
1082
1318
  constructor(c, r, z) {
1083
1319
  this.z = z;
@@ -1101,15 +1337,236 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1101
1337
  standalone: false
1102
1338
  }]
1103
1339
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1340
+ let NvSidebar = class NvSidebar {
1341
+ constructor(c, r, z) {
1342
+ this.z = z;
1343
+ this.openChanged = new EventEmitter();
1344
+ c.detach();
1345
+ this.el = r.nativeElement;
1346
+ }
1347
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1348
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1349
+ };
1350
+ NvSidebar = __decorate([
1351
+ ProxyCmp({
1352
+ inputs: ['activePath', 'notificationEmphasis', 'notificationIntention', 'open', 'type']
1353
+ })
1354
+ ], NvSidebar);
1355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebar, decorators: [{
1356
+ type: Component,
1357
+ args: [{
1358
+ selector: 'nv-sidebar',
1359
+ changeDetection: ChangeDetectionStrategy.OnPush,
1360
+ template: '<ng-content></ng-content>',
1361
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1362
+ inputs: ['activePath', 'notificationEmphasis', 'notificationIntention', 'open', 'type'],
1363
+ outputs: ['openChanged'],
1364
+ standalone: false
1365
+ }]
1366
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
1367
+ type: Output
1368
+ }] } });
1369
+ let NvSidebarcontent = class NvSidebarcontent {
1370
+ constructor(c, r, z) {
1371
+ this.z = z;
1372
+ c.detach();
1373
+ this.el = r.nativeElement;
1374
+ }
1375
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarcontent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1376
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarcontent, selector: "nv-sidebarcontent", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1377
+ };
1378
+ NvSidebarcontent = __decorate([
1379
+ ProxyCmp({})
1380
+ ], NvSidebarcontent);
1381
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarcontent, decorators: [{
1382
+ type: Component,
1383
+ args: [{
1384
+ selector: 'nv-sidebarcontent',
1385
+ changeDetection: ChangeDetectionStrategy.OnPush,
1386
+ template: '<ng-content></ng-content>',
1387
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1388
+ inputs: [],
1389
+ standalone: false
1390
+ }]
1391
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1392
+ let NvSidebardivider = class NvSidebardivider {
1393
+ constructor(c, r, z) {
1394
+ this.z = z;
1395
+ c.detach();
1396
+ this.el = r.nativeElement;
1397
+ }
1398
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebardivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1399
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebardivider, selector: "nv-sidebardivider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1400
+ };
1401
+ NvSidebardivider = __decorate([
1402
+ ProxyCmp({})
1403
+ ], NvSidebardivider);
1404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebardivider, decorators: [{
1405
+ type: Component,
1406
+ args: [{
1407
+ selector: 'nv-sidebardivider',
1408
+ changeDetection: ChangeDetectionStrategy.OnPush,
1409
+ template: '<ng-content></ng-content>',
1410
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1411
+ inputs: [],
1412
+ standalone: false
1413
+ }]
1414
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1415
+ let NvSidebarfooter = class NvSidebarfooter {
1416
+ constructor(c, r, z) {
1417
+ this.z = z;
1418
+ c.detach();
1419
+ this.el = r.nativeElement;
1420
+ }
1421
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarfooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1422
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarfooter, selector: "nv-sidebarfooter", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1423
+ };
1424
+ NvSidebarfooter = __decorate([
1425
+ ProxyCmp({})
1426
+ ], NvSidebarfooter);
1427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarfooter, decorators: [{
1428
+ type: Component,
1429
+ args: [{
1430
+ selector: 'nv-sidebarfooter',
1431
+ changeDetection: ChangeDetectionStrategy.OnPush,
1432
+ template: '<ng-content></ng-content>',
1433
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1434
+ inputs: [],
1435
+ standalone: false
1436
+ }]
1437
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1438
+ let NvSidebargroup = class NvSidebargroup {
1439
+ constructor(c, r, z) {
1440
+ this.z = z;
1441
+ c.detach();
1442
+ this.el = r.nativeElement;
1443
+ }
1444
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebargroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1445
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebargroup, selector: "nv-sidebargroup", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1446
+ };
1447
+ NvSidebargroup = __decorate([
1448
+ ProxyCmp({
1449
+ inputs: ['label']
1450
+ })
1451
+ ], NvSidebargroup);
1452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebargroup, decorators: [{
1453
+ type: Component,
1454
+ args: [{
1455
+ selector: 'nv-sidebargroup',
1456
+ changeDetection: ChangeDetectionStrategy.OnPush,
1457
+ template: '<ng-content></ng-content>',
1458
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1459
+ inputs: ['label'],
1460
+ standalone: false
1461
+ }]
1462
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1463
+ let NvSidebarheader = class NvSidebarheader {
1464
+ constructor(c, r, z) {
1465
+ this.z = z;
1466
+ c.detach();
1467
+ this.el = r.nativeElement;
1468
+ }
1469
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1470
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarheader, selector: "nv-sidebarheader", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1471
+ };
1472
+ NvSidebarheader = __decorate([
1473
+ ProxyCmp({})
1474
+ ], NvSidebarheader);
1475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarheader, decorators: [{
1476
+ type: Component,
1477
+ args: [{
1478
+ selector: 'nv-sidebarheader',
1479
+ changeDetection: ChangeDetectionStrategy.OnPush,
1480
+ template: '<ng-content></ng-content>',
1481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1482
+ inputs: [],
1483
+ standalone: false
1484
+ }]
1485
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1486
+ let NvSidebarlogo = class NvSidebarlogo {
1487
+ constructor(c, r, z) {
1488
+ this.z = z;
1489
+ c.detach();
1490
+ this.el = r.nativeElement;
1491
+ }
1492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarlogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1493
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarlogo, selector: "nv-sidebarlogo", inputs: { collapsedLogo: "collapsedLogo", label: "label", logo: "logo" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1494
+ };
1495
+ NvSidebarlogo = __decorate([
1496
+ ProxyCmp({
1497
+ inputs: ['collapsedLogo', 'label', 'logo']
1498
+ })
1499
+ ], NvSidebarlogo);
1500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarlogo, decorators: [{
1501
+ type: Component,
1502
+ args: [{
1503
+ selector: 'nv-sidebarlogo',
1504
+ changeDetection: ChangeDetectionStrategy.OnPush,
1505
+ template: '<ng-content></ng-content>',
1506
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1507
+ inputs: ['collapsedLogo', 'label', 'logo'],
1508
+ standalone: false
1509
+ }]
1510
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1511
+ let NvSidebarnavitem = class NvSidebarnavitem {
1512
+ constructor(c, r, z) {
1513
+ this.z = z;
1514
+ c.detach();
1515
+ this.el = r.nativeElement;
1516
+ }
1517
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarnavitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1518
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarnavitem, selector: "nv-sidebarnavitem", inputs: { active: "active", collapsible: "collapsible", icon: "icon", notificationCount: "notificationCount", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1519
+ };
1520
+ NvSidebarnavitem = __decorate([
1521
+ ProxyCmp({
1522
+ inputs: ['active', 'collapsible', 'icon', 'notificationCount', 'open']
1523
+ })
1524
+ ], NvSidebarnavitem);
1525
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarnavitem, decorators: [{
1526
+ type: Component,
1527
+ args: [{
1528
+ selector: 'nv-sidebarnavitem',
1529
+ changeDetection: ChangeDetectionStrategy.OnPush,
1530
+ template: '<ng-content></ng-content>',
1531
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1532
+ inputs: ['active', 'collapsible', 'icon', 'notificationCount', 'open'],
1533
+ standalone: false
1534
+ }]
1535
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1536
+ let NvSidebarnavsubitem = class NvSidebarnavsubitem {
1537
+ constructor(c, r, z) {
1538
+ this.z = z;
1539
+ c.detach();
1540
+ this.el = r.nativeElement;
1541
+ }
1542
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarnavsubitem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1543
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarnavsubitem, selector: "nv-sidebarnavsubitem", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1544
+ };
1545
+ NvSidebarnavsubitem = __decorate([
1546
+ ProxyCmp({
1547
+ inputs: ['active']
1548
+ })
1549
+ ], NvSidebarnavsubitem);
1550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarnavsubitem, decorators: [{
1551
+ type: Component,
1552
+ args: [{
1553
+ selector: 'nv-sidebarnavsubitem',
1554
+ changeDetection: ChangeDetectionStrategy.OnPush,
1555
+ template: '<ng-content></ng-content>',
1556
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1557
+ inputs: ['active'],
1558
+ standalone: false
1559
+ }]
1560
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1104
1561
  let NvSplit = class NvSplit {
1105
1562
  constructor(c, r, z) {
1106
1563
  this.z = z;
1564
+ this.sizesChanged = new EventEmitter();
1107
1565
  c.detach();
1108
1566
  this.el = r.nativeElement;
1109
- proxyOutputs(this, this.el, ['sizesChanged']);
1110
1567
  }
1111
1568
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSplit, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1112
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1569
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1113
1570
  };
1114
1571
  NvSplit = __decorate([
1115
1572
  ProxyCmp({
@@ -1125,9 +1582,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1125
1582
  template: '<ng-content></ng-content>',
1126
1583
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1127
1584
  inputs: ['direction', 'gutterSize', 'minSizes', 'sizes'],
1585
+ outputs: ['sizesChanged'],
1128
1586
  standalone: false
1129
1587
  }]
1130
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1588
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sizesChanged: [{
1589
+ type: Output
1590
+ }] } });
1131
1591
  let NvStack = class NvStack {
1132
1592
  constructor(c, r, z) {
1133
1593
  this.z = z;
@@ -1179,12 +1639,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1179
1639
  let NvTableheader = class NvTableheader {
1180
1640
  constructor(c, r, z) {
1181
1641
  this.z = z;
1642
+ this.sortDirectionChanged = new EventEmitter();
1182
1643
  c.detach();
1183
1644
  this.el = r.nativeElement;
1184
- proxyOutputs(this, this.el, ['sortDirectionChanged']);
1185
1645
  }
1186
1646
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTableheader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1187
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTableheader, selector: "nv-tableheader", inputs: { sortDirection: "sortDirection", sortable: "sortable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1647
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1188
1648
  };
1189
1649
  NvTableheader = __decorate([
1190
1650
  ProxyCmp({
@@ -1199,18 +1659,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1199
1659
  template: '<ng-content></ng-content>',
1200
1660
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1201
1661
  inputs: ['sortDirection', 'sortable'],
1662
+ outputs: ['sortDirectionChanged'],
1202
1663
  standalone: false
1203
1664
  }]
1204
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1665
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sortDirectionChanged: [{
1666
+ type: Output
1667
+ }] } });
1205
1668
  let NvToggle = class NvToggle {
1206
1669
  constructor(c, r, z) {
1207
1670
  this.z = z;
1671
+ this.checkedChanged = new EventEmitter();
1208
1672
  c.detach();
1209
1673
  this.el = r.nativeElement;
1210
- proxyOutputs(this, this.el, ['checkedChanged']);
1211
1674
  }
1212
1675
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1213
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1676
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1214
1677
  };
1215
1678
  NvToggle = __decorate([
1216
1679
  ProxyCmp({
@@ -1225,18 +1688,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1225
1688
  template: '<ng-content></ng-content>',
1226
1689
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1227
1690
  inputs: ['checked', 'description', 'disabled', 'hideLabel', 'inputId', 'label', 'labelPlacement', 'name', 'readonly', 'value'],
1691
+ outputs: ['checkedChanged'],
1228
1692
  standalone: false
1229
1693
  }]
1230
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1694
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { checkedChanged: [{
1695
+ type: Output
1696
+ }] } });
1231
1697
  let NvTogglebutton = class NvTogglebutton {
1232
1698
  constructor(c, r, z) {
1233
1699
  this.z = z;
1700
+ this.toggled = new EventEmitter();
1234
1701
  c.detach();
1235
1702
  this.el = r.nativeElement;
1236
- proxyOutputs(this, this.el, ['toggled']);
1237
1703
  }
1238
1704
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTogglebutton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1239
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1705
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1240
1706
  };
1241
1707
  NvTogglebutton = __decorate([
1242
1708
  ProxyCmp({
@@ -1251,18 +1717,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1251
1717
  template: '<ng-content></ng-content>',
1252
1718
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1253
1719
  inputs: ['active', 'disabled', 'emphasis', 'size', 'value'],
1720
+ outputs: ['toggled'],
1254
1721
  standalone: false
1255
1722
  }]
1256
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1723
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { toggled: [{
1724
+ type: Output
1725
+ }] } });
1257
1726
  let NvTogglebuttongroup = class NvTogglebuttongroup {
1258
1727
  constructor(c, r, z) {
1259
1728
  this.z = z;
1729
+ this.valueChanged = new EventEmitter();
1260
1730
  c.detach();
1261
1731
  this.el = r.nativeElement;
1262
- proxyOutputs(this, this.el, ['valueChanged']);
1263
1732
  }
1264
1733
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTogglebuttongroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1265
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1734
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", 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 }); }
1266
1735
  };
1267
1736
  NvTogglebuttongroup = __decorate([
1268
1737
  ProxyCmp({
@@ -1277,18 +1746,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1277
1746
  template: '<ng-content></ng-content>',
1278
1747
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1279
1748
  inputs: ['emphasis', 'enforceValue', 'exclusive', 'size', 'value'],
1749
+ outputs: ['valueChanged'],
1280
1750
  standalone: false
1281
1751
  }]
1282
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1752
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
1753
+ type: Output
1754
+ }] } });
1283
1755
  let NvTooltip = class NvTooltip {
1284
1756
  constructor(c, r, z) {
1285
1757
  this.z = z;
1758
+ this.openChanged = new EventEmitter();
1286
1759
  c.detach();
1287
1760
  this.el = r.nativeElement;
1288
- proxyOutputs(this, this.el, ['openChanged']);
1289
1761
  }
1290
1762
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1291
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTooltip, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1763
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTooltip, selector: "nv-tooltip", inputs: { enterDelay: "enterDelay", message: "message", placement: "placement", strategy: "strategy" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1292
1764
  };
1293
1765
  NvTooltip = __decorate([
1294
1766
  ProxyCmp({
@@ -1303,9 +1775,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
1303
1775
  template: '<ng-content></ng-content>',
1304
1776
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1305
1777
  inputs: ['enterDelay', 'message', 'placement', 'strategy'],
1778
+ outputs: ['openChanged'],
1306
1779
  standalone: false
1307
1780
  }]
1308
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1781
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
1782
+ type: Output
1783
+ }] } });
1309
1784
 
1310
1785
  const DIRECTIVES = [
1311
1786
  NvAccordion,
@@ -1324,6 +1799,9 @@ const DIRECTIVES = [
1324
1799
  NvDialog,
1325
1800
  NvDialogfooter,
1326
1801
  NvDialogheader,
1802
+ NvDrawer,
1803
+ NvDrawerfooter,
1804
+ NvDrawerheader,
1327
1805
  NvFieldcheckbox,
1328
1806
  NvFielddate,
1329
1807
  NvFielddaterange,
@@ -1345,9 +1823,19 @@ const DIRECTIVES = [
1345
1823
  NvMenu,
1346
1824
  NvMenuitem,
1347
1825
  NvNotification,
1826
+ NvNotificationBullet,
1348
1827
  NvNotificationcontainer,
1349
1828
  NvPopover,
1350
1829
  NvRow,
1830
+ NvSidebar,
1831
+ NvSidebarcontent,
1832
+ NvSidebardivider,
1833
+ NvSidebarfooter,
1834
+ NvSidebargroup,
1835
+ NvSidebarheader,
1836
+ NvSidebarlogo,
1837
+ NvSidebarnavitem,
1838
+ NvSidebarnavsubitem,
1351
1839
  NvSplit,
1352
1840
  NvStack,
1353
1841
  NvTable,
@@ -2166,6 +2654,12 @@ class NvDatatable {
2166
2654
  this.columns = input([]);
2167
2655
  /** Row data */
2168
2656
  this.rows = input([]);
2657
+ /**
2658
+ * Data handling mode for sorting and filtering operations.
2659
+ * - 'client': All operations handled in browser (default)
2660
+ * - 'server': Operations trigger callbacks for server-side handling
2661
+ */
2662
+ this.mode = input('client');
2169
2663
  /** Optional pagination configuration */
2170
2664
  this.pagination = input(undefined);
2171
2665
  /** Optional sorting configuration */
@@ -2194,7 +2688,7 @@ class NvDatatable {
2194
2688
  /** Intersection observer for infinite scroll */
2195
2689
  this.observer = null;
2196
2690
  /** Helper to check if using infinite scroll */
2197
- this.isInfiniteScroll = computed(() => this.pagination()?.mode === 'infinite');
2691
+ this.isInfiniteScroll = computed(() => this.pagination()?.infinite === true);
2198
2692
  /** Computed table columns with proper typing and filtering. */
2199
2693
  this.tableColumns = computed(() => {
2200
2694
  const templateMap = this.cellTemplateMap();
@@ -2257,21 +2751,24 @@ class NvDatatable {
2257
2751
  this.tableInstance = createAngularTable(() => {
2258
2752
  const paginationConfig = this.pagination();
2259
2753
  const sortingConfig = this.sorting();
2754
+ const componentMode = this.mode();
2755
+ const isServerMode = componentMode === 'server';
2756
+ const isInfinite = paginationConfig?.infinite === true;
2260
2757
  // Determine base table configuration with sorting
2261
2758
  const getBaseTableConfig = () => {
2262
2759
  const baseConfig = {
2263
2760
  data: this.rows(),
2264
2761
  columns: this.tableColumns(),
2265
2762
  getCoreRowModel: getCoreRowModel(),
2266
- // Sorting configuration
2763
+ // Sorting configuration - uses top-level mode
2267
2764
  ...(sortingConfig && {
2268
2765
  state: {
2269
- sorting: sortingConfig.mode === 'server' && sortingConfig.sortState
2766
+ sorting: isServerMode && sortingConfig.sortState
2270
2767
  ? sortingConfig.sortState
2271
2768
  : this.sortingState(),
2272
2769
  },
2273
2770
  onSortingChange: (updaterOrValue) => {
2274
- const currentSort = sortingConfig.mode === 'server' && sortingConfig.sortState
2771
+ const currentSort = isServerMode && sortingConfig.sortState
2275
2772
  ? sortingConfig.sortState
2276
2773
  : this.sortingState();
2277
2774
  const newSort = typeof updaterOrValue === 'function'
@@ -2280,12 +2777,11 @@ class NvDatatable {
2280
2777
  // Always update internal state for reactivity
2281
2778
  this.sortingState.set(newSort);
2282
2779
  // For server-side sorting, also call the callback
2283
- if (sortingConfig?.mode === 'server' &&
2284
- sortingConfig.onSortingChange) {
2780
+ if (isServerMode && sortingConfig.onSortingChange) {
2285
2781
  sortingConfig.onSortingChange(newSort);
2286
2782
  }
2287
2783
  },
2288
- manualSorting: sortingConfig.mode === 'server',
2784
+ manualSorting: isServerMode,
2289
2785
  enableSorting: true,
2290
2786
  enableMultiSort: sortingConfig.enableMultiSort ?? false,
2291
2787
  enableSortingRemoval: sortingConfig.enableSortingRemoval ?? true,
@@ -2295,17 +2791,22 @@ class NvDatatable {
2295
2791
  isMultiSortEvent: sortingConfig.enableMultiSort
2296
2792
  ? () => true
2297
2793
  : undefined,
2298
- getSortedRowModel: sortingConfig.mode === 'client' ? getSortedRowModel() : undefined,
2794
+ getSortedRowModel: !isServerMode ? getSortedRowModel() : undefined,
2299
2795
  }),
2300
2796
  };
2301
2797
  return baseConfig;
2302
2798
  };
2303
- if (!paginationConfig || paginationConfig.mode === 'infinite') {
2304
- // No pagination or infinite scroll - simple config
2799
+ // Infinite scroll mode (requires server mode)
2800
+ if (isInfinite) {
2801
+ // No pagination row model for infinite scroll - simple config
2802
+ return getBaseTableConfig();
2803
+ }
2804
+ // No pagination configured
2805
+ if (!paginationConfig) {
2305
2806
  return getBaseTableConfig();
2306
2807
  }
2307
- else if (paginationConfig.mode === 'client') {
2308
- // Client-side pagination
2808
+ // Client-side pagination
2809
+ if (!isServerMode) {
2309
2810
  return {
2310
2811
  ...getBaseTableConfig(),
2311
2812
  getPaginationRowModel: getPaginationRowModel(),
@@ -2317,37 +2818,35 @@ class NvDatatable {
2317
2818
  },
2318
2819
  };
2319
2820
  }
2320
- else {
2321
- // Server-side pagination - manual pagination with reactive state
2322
- const baseConfig = getBaseTableConfig();
2323
- const pageSize = this.paginationState().pageSize;
2324
- return {
2325
- ...baseConfig,
2326
- manualPagination: true,
2327
- pageCount: paginationConfig.totalPageCount !== undefined
2328
- ? paginationConfig.totalPageCount
2329
- : paginationConfig.totalRowCount !== undefined
2330
- ? Math.ceil(paginationConfig.totalRowCount / pageSize)
2331
- : -1,
2332
- state: {
2333
- pagination: this.paginationState(),
2334
- ...(baseConfig.state && { sorting: baseConfig.state.sorting }),
2335
- },
2336
- onPaginationChange: (updaterOrValue) => {
2337
- const newState = typeof updaterOrValue === 'function'
2338
- ? updaterOrValue(this.paginationState())
2339
- : updaterOrValue;
2340
- this.paginationState.set(newState);
2341
- // Call user's callback for server-side pagination
2342
- if (paginationConfig.onPaginationChange) {
2343
- paginationConfig.onPaginationChange({
2344
- pageIndex: newState.pageIndex,
2345
- pageSize: newState.pageSize,
2346
- });
2347
- }
2348
- },
2349
- };
2350
- }
2821
+ // Server-side pagination - manual pagination with reactive state
2822
+ const baseConfig = getBaseTableConfig();
2823
+ const pageSize = this.paginationState().pageSize;
2824
+ return {
2825
+ ...baseConfig,
2826
+ manualPagination: true,
2827
+ pageCount: paginationConfig.totalPageCount !== undefined
2828
+ ? paginationConfig.totalPageCount
2829
+ : paginationConfig.totalRowCount !== undefined
2830
+ ? Math.ceil(paginationConfig.totalRowCount / pageSize)
2831
+ : -1,
2832
+ state: {
2833
+ pagination: this.paginationState(),
2834
+ ...(baseConfig.state && { sorting: baseConfig.state.sorting }),
2835
+ },
2836
+ onPaginationChange: (updaterOrValue) => {
2837
+ const newState = typeof updaterOrValue === 'function'
2838
+ ? updaterOrValue(this.paginationState())
2839
+ : updaterOrValue;
2840
+ this.paginationState.set(newState);
2841
+ // Call user's callback for server-side pagination
2842
+ if (paginationConfig.onPaginationChange) {
2843
+ paginationConfig.onPaginationChange({
2844
+ pageIndex: newState.pageIndex,
2845
+ pageSize: newState.pageSize,
2846
+ });
2847
+ }
2848
+ },
2849
+ };
2351
2850
  });
2352
2851
  /** Build pagination API for template */
2353
2852
  this.paginationAPI = computed(() => {
@@ -2355,10 +2854,13 @@ class NvDatatable {
2355
2854
  if (!paginationConfig) {
2356
2855
  return null;
2357
2856
  }
2857
+ const componentMode = this.mode();
2858
+ const isServerMode = componentMode === 'server';
2859
+ const isInfinite = paginationConfig.infinite === true;
2358
2860
  const table = this.table();
2359
2861
  const tablePaginationState = table.getState().pagination;
2360
2862
  const pageCount = table.getPageCount();
2361
- const rowCount = paginationConfig.mode === 'server'
2863
+ const rowCount = isServerMode
2362
2864
  ? paginationConfig.totalRowCount || this.rows().length
2363
2865
  : this.rows().length;
2364
2866
  return {
@@ -2374,25 +2876,31 @@ class NvDatatable {
2374
2876
  setPageSize: (size) => table.setPageSize(size),
2375
2877
  canPreviousPage: table.getCanPreviousPage(),
2376
2878
  canNextPage: table.getCanNextPage(),
2377
- isLoading: paginationConfig.mode === 'infinite'
2378
- ? paginationConfig.isLoading
2379
- : undefined,
2380
- hasMore: paginationConfig.mode === 'infinite'
2381
- ? paginationConfig.hasMore
2382
- : undefined,
2879
+ isLoading: isInfinite ? paginationConfig.isLoading : undefined,
2880
+ hasMore: isInfinite ? paginationConfig.hasMore : undefined,
2383
2881
  };
2384
2882
  });
2883
+ // Validate infinite scroll requires server mode
2884
+ effect(() => {
2885
+ const paginationConfig = this.pagination();
2886
+ const componentMode = this.mode();
2887
+ if (paginationConfig?.infinite === true && componentMode !== 'server') {
2888
+ console.warn('[NvDatatable] pagination.infinite=true requires mode="server". ' +
2889
+ 'Infinite scroll relies on server-side data loading.');
2890
+ }
2891
+ });
2385
2892
  // Set up intersection observer for infinite scroll
2386
2893
  effect(() => {
2387
2894
  const paginationConfig = this.pagination();
2388
2895
  const rows = this.rows(); // Track rows changes
2896
+ const isInfinite = paginationConfig?.infinite === true;
2389
2897
  // Clean up existing observer
2390
2898
  if (this.observer) {
2391
2899
  this.observer.disconnect();
2392
2900
  this.observer = null;
2393
2901
  }
2394
2902
  // Only set up observer for infinite scroll mode
2395
- if (paginationConfig?.mode !== 'infinite' || rows.length === 0) {
2903
+ if (!isInfinite || rows.length === 0) {
2396
2904
  return;
2397
2905
  }
2398
2906
  // Use setTimeout to ensure DOM is updated
@@ -2407,7 +2915,6 @@ class NvDatatable {
2407
2915
  this.observer = new IntersectionObserver((entries) => {
2408
2916
  const entry = entries[0];
2409
2917
  if (entry.isIntersecting &&
2410
- paginationConfig.mode === 'infinite' &&
2411
2918
  paginationConfig.hasMore &&
2412
2919
  !paginationConfig.isLoading &&
2413
2920
  paginationConfig.onLoadMore) {
@@ -2440,7 +2947,7 @@ class NvDatatable {
2440
2947
  }
2441
2948
  }
2442
2949
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatatable, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2443
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.9", type: NvDatatable, isStandalone: true, selector: "nv-datatable", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, pagination: { classPropertyName: "pagination", publicName: "pagination", isSignal: true, isRequired: false, transformFunction: null }, sorting: { classPropertyName: "sorting", publicName: "sorting", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "paginationTemplate", first: true, predicate: ["paginationTemplate"], descendants: true, read: TemplateRef }, { propertyName: "cellTemplates", predicate: NvDatatableCellDirective }], viewQueries: [{ propertyName: "tableRows", first: true, predicate: ["tableRow"], descendants: true, isSignal: true }], ngImport: i0, template: `
2950
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.9", type: NvDatatable, isStandalone: true, selector: "nv-datatable", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, mode: { classPropertyName: "mode", publicName: "mode", isSignal: true, isRequired: false, transformFunction: null }, pagination: { classPropertyName: "pagination", publicName: "pagination", isSignal: true, isRequired: false, transformFunction: null }, sorting: { classPropertyName: "sorting", publicName: "sorting", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "paginationTemplate", first: true, predicate: ["paginationTemplate"], descendants: true, read: TemplateRef }, { propertyName: "cellTemplates", predicate: NvDatatableCellDirective }], viewQueries: [{ propertyName: "tableRows", first: true, predicate: ["tableRow"], descendants: true, isSignal: true }], ngImport: i0, template: `
2444
2951
  <nv-table>
2445
2952
  <table>
2446
2953
  <thead [attr.data-sticky-top]="stickyHeader() ? 'true' : null">
@@ -2854,6 +3361,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
2854
3361
  type: HostListener,
2855
3362
  args: ['openChanged', ['$event']]
2856
3363
  }] } });
3364
+ class NvDrawerValueAccessor extends ValueAccessor {
3365
+ constructor(el) {
3366
+ super(el);
3367
+ }
3368
+ handleOpenChanged(event) {
3369
+ this.handleChangeEvent(event.target.open);
3370
+ }
3371
+ writeValue(value) {
3372
+ this.el.nativeElement.open = this.lastValue = value;
3373
+ }
3374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3375
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvDrawerValueAccessor, selector: "nv-drawer", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
3376
+ {
3377
+ provide: NG_VALUE_ACCESSOR,
3378
+ useExisting: NvDrawerValueAccessor,
3379
+ multi: true,
3380
+ },
3381
+ ], usesInheritance: true, ngImport: i0 }); }
3382
+ }
3383
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDrawerValueAccessor, decorators: [{
3384
+ type: Directive,
3385
+ args: [{
3386
+ selector: 'nv-drawer',
3387
+ providers: [
3388
+ {
3389
+ provide: NG_VALUE_ACCESSOR,
3390
+ useExisting: NvDrawerValueAccessor,
3391
+ multi: true,
3392
+ },
3393
+ ],
3394
+ }]
3395
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
3396
+ type: HostListener,
3397
+ args: ['openChanged', ['$event']]
3398
+ }] } });
2857
3399
  class NvFieldcheckboxValueAccessor extends ValueAccessor {
2858
3400
  constructor(el) {
2859
3401
  super(el);
@@ -3379,6 +3921,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
3379
3921
  type: HostListener,
3380
3922
  args: ['openChanged', ['$event']]
3381
3923
  }] } });
3924
+ class NvSidebarValueAccessor extends ValueAccessor {
3925
+ constructor(el) {
3926
+ super(el);
3927
+ }
3928
+ handleOpenChanged(event) {
3929
+ this.handleChangeEvent(event.target.open);
3930
+ }
3931
+ writeValue(value) {
3932
+ this.el.nativeElement.open = this.lastValue = value;
3933
+ }
3934
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3935
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.9", type: NvSidebarValueAccessor, selector: "nv-sidebar", host: { listeners: { "openChanged": "handleOpenChanged($event)" } }, providers: [
3936
+ {
3937
+ provide: NG_VALUE_ACCESSOR,
3938
+ useExisting: NvSidebarValueAccessor,
3939
+ multi: true,
3940
+ },
3941
+ ], usesInheritance: true, ngImport: i0 }); }
3942
+ }
3943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvSidebarValueAccessor, decorators: [{
3944
+ type: Directive,
3945
+ args: [{
3946
+ selector: 'nv-sidebar',
3947
+ providers: [
3948
+ {
3949
+ provide: NG_VALUE_ACCESSOR,
3950
+ useExisting: NvSidebarValueAccessor,
3951
+ multi: true,
3952
+ },
3953
+ ],
3954
+ }]
3955
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleOpenChanged: [{
3956
+ type: HostListener,
3957
+ args: ['openChanged', ['$event']]
3958
+ }] } });
3382
3959
  class NvSplitValueAccessor extends ValueAccessor {
3383
3960
  constructor(el) {
3384
3961
  super(el);
@@ -3490,6 +4067,7 @@ const VALUE_ACCESSORS = [
3490
4067
  NvCalendarValueAccessor,
3491
4068
  NvDatagridValueAccessor,
3492
4069
  NvDialogValueAccessor,
4070
+ NvDrawerValueAccessor,
3493
4071
  NvFieldcheckboxValueAccessor,
3494
4072
  NvFielddateValueAccessor,
3495
4073
  NvFielddaterangeValueAccessor,
@@ -3505,6 +4083,7 @@ const VALUE_ACCESSORS = [
3505
4083
  NvFieldtimeValueAccessor,
3506
4084
  NvNotificationValueAccessor,
3507
4085
  NvPopoverValueAccessor,
4086
+ NvSidebarValueAccessor,
3508
4087
  NvSplitValueAccessor,
3509
4088
  NvToggleValueAccessor,
3510
4089
  NvTogglebuttongroupValueAccessor,
@@ -3516,9 +4095,7 @@ const VALUE_ACCESSORS = [
3516
4095
  * @returns {string} A unique identifier string
3517
4096
  */
3518
4097
  const generateId = () => {
3519
- return `notification-${Date.now()}-${Math.random()
3520
- .toString(36)
3521
- .substr(2, 9)}`;
4098
+ return `notification-${v4()}`;
3522
4099
  };
3523
4100
  /**
3524
4101
  * Angular service for managing notifications.
@@ -3752,6 +4329,7 @@ class NotificationServiceComponent {
3752
4329
  "
3753
4330
  #notificationEl
3754
4331
  [attr.data-id]="notification.id"
4332
+ [uid]="notification.id"
3755
4333
  [heading]="notification.heading"
3756
4334
  [message]="notification.message"
3757
4335
  [dismissible]="notification.dismissible"
@@ -3807,6 +4385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
3807
4385
  "
3808
4386
  #notificationEl
3809
4387
  [attr.data-id]="notification.id"
4388
+ [uid]="notification.id"
3810
4389
  [heading]="notification.heading"
3811
4390
  [message]="notification.message"
3812
4391
  [dismissible]="notification.dismissible"
@@ -3865,7 +4444,7 @@ function provideNovaComponents() {
3865
4444
  }
3866
4445
  class NovaComponentsModule {
3867
4446
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3868
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationcontainer, NvPopover, NvRow, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip], imports: [NvDatatable], exports: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationcontainer, NvPopover, NvRow, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
4447
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationcontainer, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip], imports: [NvDatatable], exports: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationcontainer, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
3869
4448
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, imports: [NvDatatable] }); }
3870
4449
  }
3871
4450
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, decorators: [{
@@ -3878,7 +4457,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
3878
4457
  }] });
3879
4458
  class NovaComponentsValueAccessorModule {
3880
4459
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3881
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, declarations: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor], exports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
4460
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, declarations: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor], exports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
3882
4461
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
3883
4462
  }
3884
4463
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
@@ -3909,5 +4488,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
3909
4488
  * Generated bundle index. Do not edit.
3910
4489
  */
3911
4490
 
3912
- export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsProvidersModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDialog, NvDialogValueAccessor, NvDialogfooter, NvDialogheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddate, NvFielddateValueAccessor, NvFielddaterange, NvFielddaterangeValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldslider, NvFieldsliderValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvFieldtimeValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationValueAccessor, NvNotificationcontainer, NvPopover, NvPopoverValueAccessor, NvRow, NvSplit, NvSplitValueAccessor, NvStack, NvTable, NvTableheader, NvToggle, NvToggleValueAccessor, NvTogglebutton, NvTogglebuttongroup, NvTogglebuttongroupValueAccessor, NvTooltip, VALUE_ACCESSORS, makeColumn, flexRenderComponent as nvDatatableRenderComponent, provideNovaComponents };
4491
+ export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsProvidersModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDialog, NvDialogValueAccessor, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerValueAccessor, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddate, NvFielddateValueAccessor, NvFielddaterange, NvFielddaterangeValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldslider, NvFieldsliderValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvFieldtimeValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationValueAccessor, NvNotificationcontainer, NvPopover, NvPopoverValueAccessor, NvRow, NvSidebar, NvSidebarValueAccessor, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvSplitValueAccessor, NvStack, NvTable, NvTableheader, NvToggle, NvToggleValueAccessor, NvTogglebutton, NvTogglebuttongroup, NvTogglebuttongroupValueAccessor, NvTooltip, VALUE_ACCESSORS, makeColumn, flexRenderComponent as nvDatatableRenderComponent, provideNovaComponents };
3913
4492
  //# sourceMappingURL=nova-components.mjs.map