@nova-design-system/nova-angular 3.0.0-beta.25 → 3.0.0-beta.28
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/LICENSE.MD +60 -101
- package/dist/nova-components/esm2022/lib/nova-components.module.mjs +1 -1
- package/dist/nova-components/esm2022/lib/stencil-generated/components.mjs +289 -1
- package/dist/nova-components/esm2022/lib/stencil-generated/index.mjs +13 -1
- package/dist/nova-components/fesm2022/nova-components.mjs +290 -2
- package/dist/nova-components/fesm2022/nova-components.mjs.map +1 -1
- package/dist/nova-components/lib/nova-components.module.d.ts +1 -1
- package/dist/nova-components/lib/stencil-generated/components.d.ts +108 -0
- package/dist/nova-components/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -207,6 +207,144 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
207
207
|
inputs: ['size'],
|
|
208
208
|
}]
|
|
209
209
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
210
|
+
let NvDatagrid = class NvDatagrid {
|
|
211
|
+
constructor(c, r, z) {
|
|
212
|
+
this.z = z;
|
|
213
|
+
c.detach();
|
|
214
|
+
this.el = r.nativeElement;
|
|
215
|
+
}
|
|
216
|
+
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 }); }
|
|
217
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagrid, selector: "nv-datagrid", inputs: { columns: "columns", columnsJson: "columnsJson", data: "data", dataJson: "dataJson", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
218
|
+
};
|
|
219
|
+
NvDatagrid = __decorate([
|
|
220
|
+
ProxyCmp({
|
|
221
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
222
|
+
})
|
|
223
|
+
], NvDatagrid);
|
|
224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagrid, decorators: [{
|
|
225
|
+
type: Component,
|
|
226
|
+
args: [{
|
|
227
|
+
selector: 'nv-datagrid',
|
|
228
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
229
|
+
template: '<ng-content></ng-content>',
|
|
230
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
231
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
232
|
+
}]
|
|
233
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
234
|
+
let NvDatagridbody = class NvDatagridbody {
|
|
235
|
+
constructor(c, r, z) {
|
|
236
|
+
this.z = z;
|
|
237
|
+
c.detach();
|
|
238
|
+
this.el = r.nativeElement;
|
|
239
|
+
}
|
|
240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridbody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
241
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridbody, selector: "nv-datagridbody", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
242
|
+
};
|
|
243
|
+
NvDatagridbody = __decorate([
|
|
244
|
+
ProxyCmp({})
|
|
245
|
+
], NvDatagridbody);
|
|
246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridbody, decorators: [{
|
|
247
|
+
type: Component,
|
|
248
|
+
args: [{
|
|
249
|
+
selector: 'nv-datagridbody',
|
|
250
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
251
|
+
template: '<ng-content></ng-content>',
|
|
252
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
253
|
+
inputs: [],
|
|
254
|
+
}]
|
|
255
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
256
|
+
let NvDatagridcolumn = class NvDatagridcolumn {
|
|
257
|
+
constructor(c, r, z) {
|
|
258
|
+
this.z = z;
|
|
259
|
+
c.detach();
|
|
260
|
+
this.el = r.nativeElement;
|
|
261
|
+
}
|
|
262
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridcolumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
263
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridcolumn, selector: "nv-datagridcolumn", inputs: { accessor: "accessor", header: "header" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
264
|
+
};
|
|
265
|
+
NvDatagridcolumn = __decorate([
|
|
266
|
+
ProxyCmp({
|
|
267
|
+
inputs: ['accessor', 'header']
|
|
268
|
+
})
|
|
269
|
+
], NvDatagridcolumn);
|
|
270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridcolumn, decorators: [{
|
|
271
|
+
type: Component,
|
|
272
|
+
args: [{
|
|
273
|
+
selector: 'nv-datagridcolumn',
|
|
274
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
275
|
+
template: '<ng-content></ng-content>',
|
|
276
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
277
|
+
inputs: ['accessor', 'header'],
|
|
278
|
+
}]
|
|
279
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
280
|
+
let NvDatagriddatacell = class NvDatagriddatacell {
|
|
281
|
+
constructor(c, r, z) {
|
|
282
|
+
this.z = z;
|
|
283
|
+
c.detach();
|
|
284
|
+
this.el = r.nativeElement;
|
|
285
|
+
}
|
|
286
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagriddatacell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
287
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagriddatacell, selector: "nv-datagriddatacell", inputs: { accessor: "accessor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
288
|
+
};
|
|
289
|
+
NvDatagriddatacell = __decorate([
|
|
290
|
+
ProxyCmp({
|
|
291
|
+
inputs: ['accessor']
|
|
292
|
+
})
|
|
293
|
+
], NvDatagriddatacell);
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagriddatacell, decorators: [{
|
|
295
|
+
type: Component,
|
|
296
|
+
args: [{
|
|
297
|
+
selector: 'nv-datagriddatacell',
|
|
298
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
299
|
+
template: '<ng-content></ng-content>',
|
|
300
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
301
|
+
inputs: ['accessor'],
|
|
302
|
+
}]
|
|
303
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
304
|
+
let NvDatagridhead = class NvDatagridhead {
|
|
305
|
+
constructor(c, r, z) {
|
|
306
|
+
this.z = z;
|
|
307
|
+
c.detach();
|
|
308
|
+
this.el = r.nativeElement;
|
|
309
|
+
}
|
|
310
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridhead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
311
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridhead, selector: "nv-datagridhead", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
312
|
+
};
|
|
313
|
+
NvDatagridhead = __decorate([
|
|
314
|
+
ProxyCmp({})
|
|
315
|
+
], NvDatagridhead);
|
|
316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridhead, decorators: [{
|
|
317
|
+
type: Component,
|
|
318
|
+
args: [{
|
|
319
|
+
selector: 'nv-datagridhead',
|
|
320
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
321
|
+
template: '<ng-content></ng-content>',
|
|
322
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
323
|
+
inputs: [],
|
|
324
|
+
}]
|
|
325
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
326
|
+
let NvDatagridrow = class NvDatagridrow {
|
|
327
|
+
constructor(c, r, z) {
|
|
328
|
+
this.z = z;
|
|
329
|
+
c.detach();
|
|
330
|
+
this.el = r.nativeElement;
|
|
331
|
+
}
|
|
332
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridrow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
333
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvDatagridrow, selector: "nv-datagridrow", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
334
|
+
};
|
|
335
|
+
NvDatagridrow = __decorate([
|
|
336
|
+
ProxyCmp({})
|
|
337
|
+
], NvDatagridrow);
|
|
338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvDatagridrow, decorators: [{
|
|
339
|
+
type: Component,
|
|
340
|
+
args: [{
|
|
341
|
+
selector: 'nv-datagridrow',
|
|
342
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
343
|
+
template: '<ng-content></ng-content>',
|
|
344
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
345
|
+
inputs: [],
|
|
346
|
+
}]
|
|
347
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
210
348
|
let NvFieldcheckbox = class NvFieldcheckbox {
|
|
211
349
|
constructor(c, r, z) {
|
|
212
350
|
this.z = z;
|
|
@@ -652,6 +790,144 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
652
790
|
inputs: ['fill', 'flex', 'full', 'gutter', 'vertical'],
|
|
653
791
|
}]
|
|
654
792
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
793
|
+
let NvTable = class NvTable {
|
|
794
|
+
constructor(c, r, z) {
|
|
795
|
+
this.z = z;
|
|
796
|
+
c.detach();
|
|
797
|
+
this.el = r.nativeElement;
|
|
798
|
+
}
|
|
799
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
800
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTable, selector: "nv-table", inputs: { columns: "columns", columnsJson: "columnsJson", data: "data", dataJson: "dataJson", noColumnsNoDataMessage: "noColumnsNoDataMessage", noDataMessage: "noDataMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
801
|
+
};
|
|
802
|
+
NvTable = __decorate([
|
|
803
|
+
ProxyCmp({
|
|
804
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage']
|
|
805
|
+
})
|
|
806
|
+
], NvTable);
|
|
807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTable, decorators: [{
|
|
808
|
+
type: Component,
|
|
809
|
+
args: [{
|
|
810
|
+
selector: 'nv-table',
|
|
811
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
812
|
+
template: '<ng-content></ng-content>',
|
|
813
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
814
|
+
inputs: ['columns', 'columnsJson', 'data', 'dataJson', 'noColumnsNoDataMessage', 'noDataMessage'],
|
|
815
|
+
}]
|
|
816
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
817
|
+
let NvTablebody = class NvTablebody {
|
|
818
|
+
constructor(c, r, z) {
|
|
819
|
+
this.z = z;
|
|
820
|
+
c.detach();
|
|
821
|
+
this.el = r.nativeElement;
|
|
822
|
+
}
|
|
823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablebody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
824
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablebody, selector: "nv-tablebody", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
825
|
+
};
|
|
826
|
+
NvTablebody = __decorate([
|
|
827
|
+
ProxyCmp({})
|
|
828
|
+
], NvTablebody);
|
|
829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablebody, decorators: [{
|
|
830
|
+
type: Component,
|
|
831
|
+
args: [{
|
|
832
|
+
selector: 'nv-tablebody',
|
|
833
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
834
|
+
template: '<ng-content></ng-content>',
|
|
835
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
836
|
+
inputs: [],
|
|
837
|
+
}]
|
|
838
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
839
|
+
let NvTablecolumn = class NvTablecolumn {
|
|
840
|
+
constructor(c, r, z) {
|
|
841
|
+
this.z = z;
|
|
842
|
+
c.detach();
|
|
843
|
+
this.el = r.nativeElement;
|
|
844
|
+
}
|
|
845
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablecolumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
846
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablecolumn, selector: "nv-tablecolumn", inputs: { abbr: "abbr", colspan: "colspan", headers: "headers", rowspan: "rowspan", scope: "scope" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
847
|
+
};
|
|
848
|
+
NvTablecolumn = __decorate([
|
|
849
|
+
ProxyCmp({
|
|
850
|
+
inputs: ['abbr', 'colspan', 'headers', 'rowspan', 'scope']
|
|
851
|
+
})
|
|
852
|
+
], NvTablecolumn);
|
|
853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablecolumn, decorators: [{
|
|
854
|
+
type: Component,
|
|
855
|
+
args: [{
|
|
856
|
+
selector: 'nv-tablecolumn',
|
|
857
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
858
|
+
template: '<ng-content></ng-content>',
|
|
859
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
860
|
+
inputs: ['abbr', 'colspan', 'headers', 'rowspan', 'scope'],
|
|
861
|
+
}]
|
|
862
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
863
|
+
let NvTabledatacell = class NvTabledatacell {
|
|
864
|
+
constructor(c, r, z) {
|
|
865
|
+
this.z = z;
|
|
866
|
+
c.detach();
|
|
867
|
+
this.el = r.nativeElement;
|
|
868
|
+
}
|
|
869
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTabledatacell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
870
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTabledatacell, selector: "nv-tabledatacell", inputs: { colspan: "colspan", headers: "headers", rowspan: "rowspan" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
871
|
+
};
|
|
872
|
+
NvTabledatacell = __decorate([
|
|
873
|
+
ProxyCmp({
|
|
874
|
+
inputs: ['colspan', 'headers', 'rowspan']
|
|
875
|
+
})
|
|
876
|
+
], NvTabledatacell);
|
|
877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTabledatacell, decorators: [{
|
|
878
|
+
type: Component,
|
|
879
|
+
args: [{
|
|
880
|
+
selector: 'nv-tabledatacell',
|
|
881
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
882
|
+
template: '<ng-content></ng-content>',
|
|
883
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
884
|
+
inputs: ['colspan', 'headers', 'rowspan'],
|
|
885
|
+
}]
|
|
886
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
887
|
+
let NvTablehead = class NvTablehead {
|
|
888
|
+
constructor(c, r, z) {
|
|
889
|
+
this.z = z;
|
|
890
|
+
c.detach();
|
|
891
|
+
this.el = r.nativeElement;
|
|
892
|
+
}
|
|
893
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablehead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
894
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablehead, selector: "nv-tablehead", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
895
|
+
};
|
|
896
|
+
NvTablehead = __decorate([
|
|
897
|
+
ProxyCmp({})
|
|
898
|
+
], NvTablehead);
|
|
899
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablehead, decorators: [{
|
|
900
|
+
type: Component,
|
|
901
|
+
args: [{
|
|
902
|
+
selector: 'nv-tablehead',
|
|
903
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
904
|
+
template: '<ng-content></ng-content>',
|
|
905
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
906
|
+
inputs: [],
|
|
907
|
+
}]
|
|
908
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
909
|
+
let NvTablerow = class NvTablerow {
|
|
910
|
+
constructor(c, r, z) {
|
|
911
|
+
this.z = z;
|
|
912
|
+
c.detach();
|
|
913
|
+
this.el = r.nativeElement;
|
|
914
|
+
}
|
|
915
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablerow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
916
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.9", type: NvTablerow, selector: "nv-tablerow", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
917
|
+
};
|
|
918
|
+
NvTablerow = __decorate([
|
|
919
|
+
ProxyCmp({})
|
|
920
|
+
], NvTablerow);
|
|
921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NvTablerow, decorators: [{
|
|
922
|
+
type: Component,
|
|
923
|
+
args: [{
|
|
924
|
+
selector: 'nv-tablerow',
|
|
925
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
926
|
+
template: '<ng-content></ng-content>',
|
|
927
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
928
|
+
inputs: [],
|
|
929
|
+
}]
|
|
930
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
655
931
|
let NvTooltip = class NvTooltip {
|
|
656
932
|
constructor(c, r, z) {
|
|
657
933
|
this.z = z;
|
|
@@ -684,6 +960,12 @@ const DIRECTIVES = [
|
|
|
684
960
|
NvBase,
|
|
685
961
|
NvButton,
|
|
686
962
|
NvCol,
|
|
963
|
+
NvDatagrid,
|
|
964
|
+
NvDatagridbody,
|
|
965
|
+
NvDatagridcolumn,
|
|
966
|
+
NvDatagriddatacell,
|
|
967
|
+
NvDatagridhead,
|
|
968
|
+
NvDatagridrow,
|
|
687
969
|
NvFieldcheckbox,
|
|
688
970
|
NvFielddropdown,
|
|
689
971
|
NvFielddropdownitem,
|
|
@@ -702,6 +984,12 @@ const DIRECTIVES = [
|
|
|
702
984
|
NvPopover,
|
|
703
985
|
NvRow,
|
|
704
986
|
NvStack,
|
|
987
|
+
NvTable,
|
|
988
|
+
NvTablebody,
|
|
989
|
+
NvTablecolumn,
|
|
990
|
+
NvTabledatacell,
|
|
991
|
+
NvTablehead,
|
|
992
|
+
NvTablerow,
|
|
705
993
|
NvTooltip
|
|
706
994
|
];
|
|
707
995
|
|
|
@@ -1157,7 +1445,7 @@ function provideNovaComponents() {
|
|
|
1157
1445
|
}
|
|
1158
1446
|
class NovaComponentsModule {
|
|
1159
1447
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1160
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTooltip], exports: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTooltip] }); }
|
|
1448
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, declarations: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvDatagrid, NvDatagridbody, NvDatagridcolumn, NvDatagriddatacell, NvDatagridhead, NvDatagridrow, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablebody, NvTablecolumn, NvTabledatacell, NvTablehead, NvTablerow, NvTooltip], exports: [NvAlert, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvDatagrid, NvDatagridbody, NvDatagridcolumn, NvDatagriddatacell, NvDatagridhead, NvDatagridrow, NvFieldcheckbox, NvFielddropdown, NvFielddropdownitem, NvFieldnumber, NvFieldpassword, NvFieldradio, NvFieldselect, NvFieldtext, NvFieldtextarea, NvFieldtoggle, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvRow, NvStack, NvTable, NvTablebody, NvTablecolumn, NvTabledatacell, NvTablehead, NvTablerow, NvTooltip] }); }
|
|
1161
1449
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, providers: [provideNovaComponents()] }); }
|
|
1162
1450
|
}
|
|
1163
1451
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImport: i0, type: NovaComponentsModule, decorators: [{
|
|
@@ -1189,5 +1477,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.9", ngImpor
|
|
|
1189
1477
|
* Generated bundle index. Do not edit.
|
|
1190
1478
|
*/
|
|
1191
1479
|
|
|
1192
|
-
export { DIRECTIVES, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtoggle, NvFieldtoggleValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvPopoverValueAccessor, NvRow, NvStack, NvTooltip, VALUE_ACCESSORS, provideNovaComponents };
|
|
1480
|
+
export { DIRECTIVES, NovaComponentsModule, NovaComponentsValueAccessorModule, NvAlert, NvAlertValueAccessor, NvAvatar, NvBadge, NvBase, NvButton, NvCol, NvDatagrid, NvDatagridbody, NvDatagridcolumn, NvDatagriddatacell, NvDatagridhead, NvDatagridrow, NvFieldcheckbox, NvFieldcheckboxValueAccessor, NvFielddropdown, NvFielddropdownValueAccessor, NvFielddropdownitem, NvFieldnumber, NvFieldnumberValueAccessor, NvFieldpassword, NvFieldpasswordValueAccessor, NvFieldradio, NvFieldradioValueAccessor, NvFieldselect, NvFieldselectValueAccessor, NvFieldtext, NvFieldtextValueAccessor, NvFieldtextarea, NvFieldtextareaValueAccessor, NvFieldtoggle, NvFieldtoggleValueAccessor, NvIcon, NvIconbutton, NvLoader, NvMenu, NvMenuitem, NvPopover, NvPopoverValueAccessor, NvRow, NvStack, NvTable, NvTablebody, NvTablecolumn, NvTabledatacell, NvTablehead, NvTablerow, NvTooltip, VALUE_ACCESSORS, provideNovaComponents };
|
|
1193
1481
|
//# sourceMappingURL=nova-components.mjs.map
|