@nova-design-system/nova-angular-19 3.27.0 → 3.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nova-components/fesm2022/nova-components.mjs +225 -3
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/nova-components.module.d.ts +2 -2
- package/dist/nova-components/lib/stencil-generated/component-value-accessors.d.ts +21 -0
- package/dist/nova-components/lib/stencil-generated/components.d.ts +138 -0
- package/dist/nova-components/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +5 -5
|
@@ -441,6 +441,79 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
441
441
|
standalone: false
|
|
442
442
|
}]
|
|
443
443
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
444
|
+
let NvDatetest = class NvDatetest {
|
|
445
|
+
constructor(c, r, z) {
|
|
446
|
+
this.z = z;
|
|
447
|
+
this.valueChanged = new EventEmitter();
|
|
448
|
+
this.lastChanged = new EventEmitter();
|
|
449
|
+
this.historyChanged = new EventEmitter();
|
|
450
|
+
this.valueDateChanged = new EventEmitter();
|
|
451
|
+
c.detach();
|
|
452
|
+
this.el = r.nativeElement;
|
|
453
|
+
}
|
|
454
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
455
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDatetest, isStandalone: false, selector: "nv-datetest", inputs: { history: "history", lastChange: "lastChange", value: "value" }, outputs: { valueChanged: "valueChanged", lastChanged: "lastChanged", historyChanged: "historyChanged", valueDateChanged: "valueDateChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
456
|
+
};
|
|
457
|
+
NvDatetest = __decorate([
|
|
458
|
+
ProxyCmp({
|
|
459
|
+
inputs: ['history', 'lastChange', 'value']
|
|
460
|
+
})
|
|
461
|
+
], NvDatetest);
|
|
462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetest, decorators: [{
|
|
463
|
+
type: Component,
|
|
464
|
+
args: [{
|
|
465
|
+
selector: 'nv-datetest',
|
|
466
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
467
|
+
template: '<ng-content></ng-content>',
|
|
468
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
469
|
+
inputs: ['history', 'lastChange', 'value'],
|
|
470
|
+
outputs: ['valueChanged', 'lastChanged', 'historyChanged', 'valueDateChanged'],
|
|
471
|
+
standalone: false
|
|
472
|
+
}]
|
|
473
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
474
|
+
type: Output
|
|
475
|
+
}], lastChanged: [{
|
|
476
|
+
type: Output
|
|
477
|
+
}], historyChanged: [{
|
|
478
|
+
type: Output
|
|
479
|
+
}], valueDateChanged: [{
|
|
480
|
+
type: Output
|
|
481
|
+
}] } });
|
|
482
|
+
let NvDatetimetest = class NvDatetimetest {
|
|
483
|
+
constructor(c, r, z) {
|
|
484
|
+
this.z = z;
|
|
485
|
+
this.valueChanged = new EventEmitter();
|
|
486
|
+
this.lastChanged = new EventEmitter();
|
|
487
|
+
this.historyChanged = new EventEmitter();
|
|
488
|
+
c.detach();
|
|
489
|
+
this.el = r.nativeElement;
|
|
490
|
+
}
|
|
491
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetimetest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
492
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvDatetimetest, isStandalone: false, selector: "nv-datetimetest", inputs: { history: "history", lastChange: "lastChange", value: "value" }, outputs: { valueChanged: "valueChanged", lastChanged: "lastChanged", historyChanged: "historyChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
493
|
+
};
|
|
494
|
+
NvDatetimetest = __decorate([
|
|
495
|
+
ProxyCmp({
|
|
496
|
+
inputs: ['history', 'lastChange', 'value']
|
|
497
|
+
})
|
|
498
|
+
], NvDatetimetest);
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetimetest, decorators: [{
|
|
500
|
+
type: Component,
|
|
501
|
+
args: [{
|
|
502
|
+
selector: 'nv-datetimetest',
|
|
503
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
504
|
+
template: '<ng-content></ng-content>',
|
|
505
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
506
|
+
inputs: ['history', 'lastChange', 'value'],
|
|
507
|
+
outputs: ['valueChanged', 'lastChanged', 'historyChanged'],
|
|
508
|
+
standalone: false
|
|
509
|
+
}]
|
|
510
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
511
|
+
type: Output
|
|
512
|
+
}], lastChanged: [{
|
|
513
|
+
type: Output
|
|
514
|
+
}], historyChanged: [{
|
|
515
|
+
type: Output
|
|
516
|
+
}] } });
|
|
444
517
|
let NvDialog = class NvDialog {
|
|
445
518
|
constructor(c, r, z) {
|
|
446
519
|
this.z = z;
|
|
@@ -1726,6 +1799,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1726
1799
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sortDirectionChanged: [{
|
|
1727
1800
|
type: Output
|
|
1728
1801
|
}] } });
|
|
1802
|
+
let NvTimetest = class NvTimetest {
|
|
1803
|
+
constructor(c, r, z) {
|
|
1804
|
+
this.z = z;
|
|
1805
|
+
this.valueChanged = new EventEmitter();
|
|
1806
|
+
this.lastChanged = new EventEmitter();
|
|
1807
|
+
this.historyChanged = new EventEmitter();
|
|
1808
|
+
this.valueDateChanged = new EventEmitter();
|
|
1809
|
+
c.detach();
|
|
1810
|
+
this.el = r.nativeElement;
|
|
1811
|
+
}
|
|
1812
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTimetest, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1813
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvTimetest, isStandalone: false, selector: "nv-timetest", inputs: { history: "history", lastChange: "lastChange", value: "value" }, outputs: { valueChanged: "valueChanged", lastChanged: "lastChanged", historyChanged: "historyChanged", valueDateChanged: "valueDateChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1814
|
+
};
|
|
1815
|
+
NvTimetest = __decorate([
|
|
1816
|
+
ProxyCmp({
|
|
1817
|
+
inputs: ['history', 'lastChange', 'value']
|
|
1818
|
+
})
|
|
1819
|
+
], NvTimetest);
|
|
1820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTimetest, decorators: [{
|
|
1821
|
+
type: Component,
|
|
1822
|
+
args: [{
|
|
1823
|
+
selector: 'nv-timetest',
|
|
1824
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1825
|
+
template: '<ng-content></ng-content>',
|
|
1826
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1827
|
+
inputs: ['history', 'lastChange', 'value'],
|
|
1828
|
+
outputs: ['valueChanged', 'lastChanged', 'historyChanged', 'valueDateChanged'],
|
|
1829
|
+
standalone: false
|
|
1830
|
+
}]
|
|
1831
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1832
|
+
type: Output
|
|
1833
|
+
}], lastChanged: [{
|
|
1834
|
+
type: Output
|
|
1835
|
+
}], historyChanged: [{
|
|
1836
|
+
type: Output
|
|
1837
|
+
}], valueDateChanged: [{
|
|
1838
|
+
type: Output
|
|
1839
|
+
}] } });
|
|
1729
1840
|
let NvToggle = class NvToggle {
|
|
1730
1841
|
constructor(c, r, z) {
|
|
1731
1842
|
this.z = z;
|
|
@@ -1857,6 +1968,8 @@ const DIRECTIVES = [
|
|
|
1857
1968
|
NvCol,
|
|
1858
1969
|
NvDatagrid,
|
|
1859
1970
|
NvDatagridcolumn,
|
|
1971
|
+
NvDatetest,
|
|
1972
|
+
NvDatetimetest,
|
|
1860
1973
|
NvDialog,
|
|
1861
1974
|
NvDialogfooter,
|
|
1862
1975
|
NvDialogheader,
|
|
@@ -1903,6 +2016,7 @@ const DIRECTIVES = [
|
|
|
1903
2016
|
NvStack,
|
|
1904
2017
|
NvTable,
|
|
1905
2018
|
NvTableheader,
|
|
2019
|
+
NvTimetest,
|
|
1906
2020
|
NvToggle,
|
|
1907
2021
|
NvTogglebutton,
|
|
1908
2022
|
NvTogglebuttongroup,
|
|
@@ -3420,6 +3534,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3420
3534
|
type: HostListener,
|
|
3421
3535
|
args: ['stateChanged', ['$event']]
|
|
3422
3536
|
}] } });
|
|
3537
|
+
class NvDatetestValueAccessor extends ValueAccessor {
|
|
3538
|
+
constructor(el) {
|
|
3539
|
+
super(el);
|
|
3540
|
+
}
|
|
3541
|
+
handleValueChanged(event) {
|
|
3542
|
+
this.handleChangeEvent(event.target.value);
|
|
3543
|
+
}
|
|
3544
|
+
writeValue(value) {
|
|
3545
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
3546
|
+
}
|
|
3547
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetestValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3548
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvDatetestValueAccessor, isStandalone: true, selector: "nv-datetest", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
3549
|
+
{
|
|
3550
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3551
|
+
useExisting: NvDatetestValueAccessor,
|
|
3552
|
+
multi: true,
|
|
3553
|
+
},
|
|
3554
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3555
|
+
}
|
|
3556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetestValueAccessor, decorators: [{
|
|
3557
|
+
type: Directive,
|
|
3558
|
+
args: [{
|
|
3559
|
+
selector: 'nv-datetest',
|
|
3560
|
+
providers: [
|
|
3561
|
+
{
|
|
3562
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3563
|
+
useExisting: NvDatetestValueAccessor,
|
|
3564
|
+
multi: true,
|
|
3565
|
+
},
|
|
3566
|
+
],
|
|
3567
|
+
}]
|
|
3568
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
3569
|
+
type: HostListener,
|
|
3570
|
+
args: ['valueChanged', ['$event']]
|
|
3571
|
+
}] } });
|
|
3572
|
+
class NvDatetimetestValueAccessor extends ValueAccessor {
|
|
3573
|
+
constructor(el) {
|
|
3574
|
+
super(el);
|
|
3575
|
+
}
|
|
3576
|
+
handleValueChanged(event) {
|
|
3577
|
+
this.handleChangeEvent(event.target.value);
|
|
3578
|
+
}
|
|
3579
|
+
writeValue(value) {
|
|
3580
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
3581
|
+
}
|
|
3582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetimetestValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3583
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvDatetimetestValueAccessor, isStandalone: true, selector: "nv-datetimetest", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
3584
|
+
{
|
|
3585
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3586
|
+
useExisting: NvDatetimetestValueAccessor,
|
|
3587
|
+
multi: true,
|
|
3588
|
+
},
|
|
3589
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
3590
|
+
}
|
|
3591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvDatetimetestValueAccessor, decorators: [{
|
|
3592
|
+
type: Directive,
|
|
3593
|
+
args: [{
|
|
3594
|
+
selector: 'nv-datetimetest',
|
|
3595
|
+
providers: [
|
|
3596
|
+
{
|
|
3597
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3598
|
+
useExisting: NvDatetimetestValueAccessor,
|
|
3599
|
+
multi: true,
|
|
3600
|
+
},
|
|
3601
|
+
],
|
|
3602
|
+
}]
|
|
3603
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
3604
|
+
type: HostListener,
|
|
3605
|
+
args: ['valueChanged', ['$event']]
|
|
3606
|
+
}] } });
|
|
3423
3607
|
class NvDialogValueAccessor extends ValueAccessor {
|
|
3424
3608
|
constructor(el) {
|
|
3425
3609
|
super(el);
|
|
@@ -4155,6 +4339,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4155
4339
|
type: HostListener,
|
|
4156
4340
|
args: ['sizesChanged', ['$event']]
|
|
4157
4341
|
}] } });
|
|
4342
|
+
class NvTimetestValueAccessor extends ValueAccessor {
|
|
4343
|
+
constructor(el) {
|
|
4344
|
+
super(el);
|
|
4345
|
+
}
|
|
4346
|
+
handleValueChanged(event) {
|
|
4347
|
+
this.handleChangeEvent(event.target.value);
|
|
4348
|
+
}
|
|
4349
|
+
writeValue(value) {
|
|
4350
|
+
this.el.nativeElement.value = this.lastValue = value;
|
|
4351
|
+
}
|
|
4352
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTimetestValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4353
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvTimetestValueAccessor, isStandalone: true, selector: "nv-timetest", host: { listeners: { "valueChanged": "handleValueChanged($event)" } }, providers: [
|
|
4354
|
+
{
|
|
4355
|
+
provide: NG_VALUE_ACCESSOR,
|
|
4356
|
+
useExisting: NvTimetestValueAccessor,
|
|
4357
|
+
multi: true,
|
|
4358
|
+
},
|
|
4359
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
4360
|
+
}
|
|
4361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvTimetestValueAccessor, decorators: [{
|
|
4362
|
+
type: Directive,
|
|
4363
|
+
args: [{
|
|
4364
|
+
selector: 'nv-timetest',
|
|
4365
|
+
providers: [
|
|
4366
|
+
{
|
|
4367
|
+
provide: NG_VALUE_ACCESSOR,
|
|
4368
|
+
useExisting: NvTimetestValueAccessor,
|
|
4369
|
+
multi: true,
|
|
4370
|
+
},
|
|
4371
|
+
],
|
|
4372
|
+
}]
|
|
4373
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleValueChanged: [{
|
|
4374
|
+
type: HostListener,
|
|
4375
|
+
args: ['valueChanged', ['$event']]
|
|
4376
|
+
}] } });
|
|
4158
4377
|
class NvToggleValueAccessor extends ValueAccessor {
|
|
4159
4378
|
constructor(el) {
|
|
4160
4379
|
super(el);
|
|
@@ -4230,6 +4449,8 @@ const VALUE_ACCESSORS = [
|
|
|
4230
4449
|
NvAlertValueAccessor,
|
|
4231
4450
|
NvCalendarValueAccessor,
|
|
4232
4451
|
NvDatagridValueAccessor,
|
|
4452
|
+
NvDatetestValueAccessor,
|
|
4453
|
+
NvDatetimetestValueAccessor,
|
|
4233
4454
|
NvDialogValueAccessor,
|
|
4234
4455
|
NvDrawerValueAccessor,
|
|
4235
4456
|
NvFieldcheckboxValueAccessor,
|
|
@@ -4251,13 +4472,14 @@ const VALUE_ACCESSORS = [
|
|
|
4251
4472
|
NvPopoverValueAccessor,
|
|
4252
4473
|
NvSidebarValueAccessor,
|
|
4253
4474
|
NvSplitValueAccessor,
|
|
4475
|
+
NvTimetestValueAccessor,
|
|
4254
4476
|
NvToggleValueAccessor,
|
|
4255
4477
|
NvTogglebuttongroupValueAccessor,
|
|
4256
4478
|
];
|
|
4257
4479
|
|
|
4258
4480
|
class NovaComponentsModule {
|
|
4259
4481
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4260
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDialog, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFielddate, NvFielddaterange, NvFielddropdown, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldslider, NvFieldtext, NvFieldtextarea, NvFieldtime, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationcontainer, NvPaginationNav, NvPaginationtable, 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, NvPaginationNav, NvPaginationtable, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
|
|
4482
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, declarations: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDatetest, NvDatetimetest, 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, NvPaginationNav, NvPaginationtable, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvTimetest, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip], imports: [NvDatatable], exports: [NvAccordion, NvAccordionItem, NvAlert, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCol, NvDatagrid, NvDatagridcolumn, NvDatetest, NvDatetimetest, 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, NvPaginationNav, NvPaginationtable, NvPopover, NvRow, NvSidebar, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvStack, NvTable, NvTableheader, NvTimetest, NvToggle, NvTogglebutton, NvTogglebuttongroup, NvTooltip, NvDatatable] }); }
|
|
4261
4483
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, imports: [NvDatatable] }); }
|
|
4262
4484
|
}
|
|
4263
4485
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
@@ -4270,7 +4492,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4270
4492
|
}] });
|
|
4271
4493
|
class NovaComponentsValueAccessorModule {
|
|
4272
4494
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4273
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, imports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPaginationNavValueAccessor, NvPaginationtableValueAccessor, 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, NvPaginationNavValueAccessor, NvPaginationtableValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
|
|
4495
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, imports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDatetestValueAccessor, NvDatetimetestValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPaginationNavValueAccessor, NvPaginationtableValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvTimetestValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor], exports: [NvAccordionValueAccessor, NvAlertValueAccessor, NvCalendarValueAccessor, NvDatagridValueAccessor, NvDatetestValueAccessor, NvDatetimetestValueAccessor, NvDialogValueAccessor, NvDrawerValueAccessor, NvFieldcheckboxValueAccessor, NvFielddateValueAccessor, NvFielddaterangeValueAccessor, NvFielddropdownValueAccessor, NvFieldmultiselectValueAccessor, NvFieldnumberValueAccessor, NvFieldpasswordValueAccessor, NvFieldradioValueAccessor, NvFieldselectValueAccessor, NvFieldsliderValueAccessor, NvFieldtextValueAccessor, NvFieldtextareaValueAccessor, NvFieldtimeValueAccessor, NvNotificationValueAccessor, NvPaginationNavValueAccessor, NvPaginationtableValueAccessor, NvPopoverValueAccessor, NvSidebarValueAccessor, NvSplitValueAccessor, NvTimetestValueAccessor, NvToggleValueAccessor, NvTogglebuttongroupValueAccessor] }); }
|
|
4274
4496
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
|
|
4275
4497
|
}
|
|
4276
4498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
|
|
@@ -4630,5 +4852,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4630
4852
|
* Generated bundle index. Do not edit.
|
|
4631
4853
|
*/
|
|
4632
4854
|
|
|
4633
|
-
export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDialog, NvDialogValueAccessor, NvDialogfooter, NvDialogheader, NvDrawer, NvDrawerValueAccessor, NvDrawerfooter, NvDrawerheader, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddate, NvFielddateValueAccessor, NvFielddaterange, NvFielddaterangeValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFielddropdownitemcheck, NvFieldmultiselect, NvFieldmultiselectValueAccessor, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldslider, NvFieldsliderValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtime, NvFieldtimeValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvNotification, NvNotificationBullet, NvNotificationValueAccessor, NvNotificationcontainer, NvPaginationNav, NvPaginationNavValueAccessor, NvPaginationtable, NvPaginationtableValueAccessor, 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 };
|
|
4855
|
+
export { NotificationService, NotificationServiceComponent, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAccordion, NvAccordionItem, NvAccordionValueAccessor, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBreadcrumb, NvBreadcrumbs, NvButton, NvButtongroup, NvCalendar, NvCalendarValueAccessor, NvCol, NvDatagrid, NvDatagridValueAccessor, NvDatagridcolumn, NvDatatable, NvDatatableCellDirective, NvDatetest, NvDatetestValueAccessor, NvDatetimetest, NvDatetimetestValueAccessor, 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, NvPaginationNav, NvPaginationNavValueAccessor, NvPaginationtable, NvPaginationtableValueAccessor, NvPopover, NvPopoverValueAccessor, NvRow, NvSidebar, NvSidebarValueAccessor, NvSidebarcontent, NvSidebardivider, NvSidebarfooter, NvSidebargroup, NvSidebarheader, NvSidebarlogo, NvSidebarnavitem, NvSidebarnavsubitem, NvSplit, NvSplitValueAccessor, NvStack, NvTable, NvTableheader, NvTimetest, NvTimetestValueAccessor, NvToggle, NvToggleValueAccessor, NvTogglebutton, NvTogglebuttongroup, NvTogglebuttongroupValueAccessor, NvTooltip, VALUE_ACCESSORS, makeColumn, flexRenderComponent as nvDatatableRenderComponent };
|
|
4634
4856
|
//# sourceMappingURL=nova-components.mjs.map
|