@nova-design-system/nova-angular-19 3.26.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 +291 -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 +29 -1
- package/dist/nova-components/lib/stencil-generated/components.d.ts +152 -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;
|
|
@@ -1283,6 +1356,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1283
1356
|
standalone: false
|
|
1284
1357
|
}]
|
|
1285
1358
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1359
|
+
let NvPaginationNav = class NvPaginationNav {
|
|
1360
|
+
constructor(c, r, z) {
|
|
1361
|
+
this.z = z;
|
|
1362
|
+
this.currentPageChanged = new EventEmitter();
|
|
1363
|
+
c.detach();
|
|
1364
|
+
this.el = r.nativeElement;
|
|
1365
|
+
}
|
|
1366
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvPaginationNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1367
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvPaginationNav, isStandalone: false, selector: "nv-pagination-nav", inputs: { currentPage: "currentPage", isOnlyIcon: "isOnlyIcon", nextButtonLabel: "nextButtonLabel", numEndZoneButtons: "numEndZoneButtons", numMiddleButtons: "numMiddleButtons", numStartZoneButtons: "numStartZoneButtons", pageSize: "pageSize", previousButtonLabel: "previousButtonLabel", showMiddleZone: "showMiddleZone", totalCount: "totalCount" }, outputs: { currentPageChanged: "currentPageChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1368
|
+
};
|
|
1369
|
+
NvPaginationNav = __decorate([
|
|
1370
|
+
ProxyCmp({
|
|
1371
|
+
inputs: ['currentPage', 'isOnlyIcon', 'nextButtonLabel', 'numEndZoneButtons', 'numMiddleButtons', 'numStartZoneButtons', 'pageSize', 'previousButtonLabel', 'showMiddleZone', 'totalCount']
|
|
1372
|
+
})
|
|
1373
|
+
], NvPaginationNav);
|
|
1374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvPaginationNav, decorators: [{
|
|
1375
|
+
type: Component,
|
|
1376
|
+
args: [{
|
|
1377
|
+
selector: 'nv-pagination-nav',
|
|
1378
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1379
|
+
template: '<ng-content></ng-content>',
|
|
1380
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1381
|
+
inputs: ['currentPage', 'isOnlyIcon', 'nextButtonLabel', 'numEndZoneButtons', 'numMiddleButtons', 'numStartZoneButtons', 'pageSize', 'previousButtonLabel', 'showMiddleZone', 'totalCount'],
|
|
1382
|
+
outputs: ['currentPageChanged'],
|
|
1383
|
+
standalone: false
|
|
1384
|
+
}]
|
|
1385
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { currentPageChanged: [{
|
|
1386
|
+
type: Output
|
|
1387
|
+
}] } });
|
|
1286
1388
|
let NvPaginationtable = class NvPaginationtable {
|
|
1287
1389
|
constructor(c, r, z) {
|
|
1288
1390
|
this.z = z;
|
|
@@ -1697,6 +1799,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1697
1799
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sortDirectionChanged: [{
|
|
1698
1800
|
type: Output
|
|
1699
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
|
+
}] } });
|
|
1700
1840
|
let NvToggle = class NvToggle {
|
|
1701
1841
|
constructor(c, r, z) {
|
|
1702
1842
|
this.z = z;
|
|
@@ -1828,6 +1968,8 @@ const DIRECTIVES = [
|
|
|
1828
1968
|
NvCol,
|
|
1829
1969
|
NvDatagrid,
|
|
1830
1970
|
NvDatagridcolumn,
|
|
1971
|
+
NvDatetest,
|
|
1972
|
+
NvDatetimetest,
|
|
1831
1973
|
NvDialog,
|
|
1832
1974
|
NvDialogfooter,
|
|
1833
1975
|
NvDialogheader,
|
|
@@ -1857,6 +1999,7 @@ const DIRECTIVES = [
|
|
|
1857
1999
|
NvNotification,
|
|
1858
2000
|
NvNotificationBullet,
|
|
1859
2001
|
NvNotificationcontainer,
|
|
2002
|
+
NvPaginationNav,
|
|
1860
2003
|
NvPaginationtable,
|
|
1861
2004
|
NvPopover,
|
|
1862
2005
|
NvRow,
|
|
@@ -1873,6 +2016,7 @@ const DIRECTIVES = [
|
|
|
1873
2016
|
NvStack,
|
|
1874
2017
|
NvTable,
|
|
1875
2018
|
NvTableheader,
|
|
2019
|
+
NvTimetest,
|
|
1876
2020
|
NvToggle,
|
|
1877
2021
|
NvTogglebutton,
|
|
1878
2022
|
NvTogglebuttongroup,
|
|
@@ -3390,6 +3534,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3390
3534
|
type: HostListener,
|
|
3391
3535
|
args: ['stateChanged', ['$event']]
|
|
3392
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
|
+
}] } });
|
|
3393
3607
|
class NvDialogValueAccessor extends ValueAccessor {
|
|
3394
3608
|
constructor(el) {
|
|
3395
3609
|
super(el);
|
|
@@ -3950,6 +4164,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
3950
4164
|
type: HostListener,
|
|
3951
4165
|
args: ['hiddenChanged', ['$event']]
|
|
3952
4166
|
}] } });
|
|
4167
|
+
class NvPaginationNavValueAccessor extends ValueAccessor {
|
|
4168
|
+
constructor(el) {
|
|
4169
|
+
super(el);
|
|
4170
|
+
}
|
|
4171
|
+
handleCurrentPageChanged(event) {
|
|
4172
|
+
this.handleChangeEvent(event.target.currentPage);
|
|
4173
|
+
}
|
|
4174
|
+
writeValue(value) {
|
|
4175
|
+
this.el.nativeElement.currentPage = this.lastValue = value;
|
|
4176
|
+
}
|
|
4177
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvPaginationNavValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4178
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: NvPaginationNavValueAccessor, isStandalone: true, selector: "nv-pagination-nav", host: { listeners: { "currentPageChanged": "handleCurrentPageChanged($event)" } }, providers: [
|
|
4179
|
+
{
|
|
4180
|
+
provide: NG_VALUE_ACCESSOR,
|
|
4181
|
+
useExisting: NvPaginationNavValueAccessor,
|
|
4182
|
+
multi: true,
|
|
4183
|
+
},
|
|
4184
|
+
], usesInheritance: true, ngImport: i0 }); }
|
|
4185
|
+
}
|
|
4186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvPaginationNavValueAccessor, decorators: [{
|
|
4187
|
+
type: Directive,
|
|
4188
|
+
args: [{
|
|
4189
|
+
selector: 'nv-pagination-nav',
|
|
4190
|
+
providers: [
|
|
4191
|
+
{
|
|
4192
|
+
provide: NG_VALUE_ACCESSOR,
|
|
4193
|
+
useExisting: NvPaginationNavValueAccessor,
|
|
4194
|
+
multi: true,
|
|
4195
|
+
},
|
|
4196
|
+
],
|
|
4197
|
+
}]
|
|
4198
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { handleCurrentPageChanged: [{
|
|
4199
|
+
type: HostListener,
|
|
4200
|
+
args: ['currentPageChanged', ['$event']]
|
|
4201
|
+
}] } });
|
|
3953
4202
|
class NvPaginationtableValueAccessor extends ValueAccessor {
|
|
3954
4203
|
constructor(el) {
|
|
3955
4204
|
super(el);
|
|
@@ -4090,6 +4339,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4090
4339
|
type: HostListener,
|
|
4091
4340
|
args: ['sizesChanged', ['$event']]
|
|
4092
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
|
+
}] } });
|
|
4093
4377
|
class NvToggleValueAccessor extends ValueAccessor {
|
|
4094
4378
|
constructor(el) {
|
|
4095
4379
|
super(el);
|
|
@@ -4165,6 +4449,8 @@ const VALUE_ACCESSORS = [
|
|
|
4165
4449
|
NvAlertValueAccessor,
|
|
4166
4450
|
NvCalendarValueAccessor,
|
|
4167
4451
|
NvDatagridValueAccessor,
|
|
4452
|
+
NvDatetestValueAccessor,
|
|
4453
|
+
NvDatetimetestValueAccessor,
|
|
4168
4454
|
NvDialogValueAccessor,
|
|
4169
4455
|
NvDrawerValueAccessor,
|
|
4170
4456
|
NvFieldcheckboxValueAccessor,
|
|
@@ -4181,17 +4467,19 @@ const VALUE_ACCESSORS = [
|
|
|
4181
4467
|
NvFieldtextareaValueAccessor,
|
|
4182
4468
|
NvFieldtimeValueAccessor,
|
|
4183
4469
|
NvNotificationValueAccessor,
|
|
4470
|
+
NvPaginationNavValueAccessor,
|
|
4184
4471
|
NvPaginationtableValueAccessor,
|
|
4185
4472
|
NvPopoverValueAccessor,
|
|
4186
4473
|
NvSidebarValueAccessor,
|
|
4187
4474
|
NvSplitValueAccessor,
|
|
4475
|
+
NvTimetestValueAccessor,
|
|
4188
4476
|
NvToggleValueAccessor,
|
|
4189
4477
|
NvTogglebuttongroupValueAccessor,
|
|
4190
4478
|
];
|
|
4191
4479
|
|
|
4192
4480
|
class NovaComponentsModule {
|
|
4193
4481
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4194
|
-
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, 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, 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] }); }
|
|
4195
4483
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, imports: [NvDatatable] }); }
|
|
4196
4484
|
}
|
|
4197
4485
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
@@ -4204,7 +4492,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4204
4492
|
}] });
|
|
4205
4493
|
class NovaComponentsValueAccessorModule {
|
|
4206
4494
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4207
|
-
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, 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, 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] }); }
|
|
4208
4496
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule }); }
|
|
4209
4497
|
}
|
|
4210
4498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NovaComponentsValueAccessorModule, decorators: [{
|
|
@@ -4564,5 +4852,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
4564
4852
|
* Generated bundle index. Do not edit.
|
|
4565
4853
|
*/
|
|
4566
4854
|
|
|
4567
|
-
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, 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 };
|
|
4568
4856
|
//# sourceMappingURL=nova-components.mjs.map
|