@rlucan/ui 20.0.10 → 20.0.11
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/fesm2022/rlucan-ui.mjs +116 -110
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/index.d.ts +7 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -618,14 +618,17 @@ interface TableColumn {
|
|
|
618
618
|
sortable?: boolean | ((row: any, direction?: SortDirection) => number | string);
|
|
619
619
|
sticky?: boolean;
|
|
620
620
|
label?: string;
|
|
621
|
+
footerLabel?: string;
|
|
621
622
|
colSpan?: (row: any) => number;
|
|
622
623
|
formatter?: (row: any) => string;
|
|
623
624
|
cellClass?: (row: any, c?: TableColumn) => string;
|
|
624
625
|
headerTemplate?: (c: TableColumn) => TemplateRef<any>;
|
|
626
|
+
footerTemplate?: (c: TableColumn) => TemplateRef<any>;
|
|
625
627
|
cellTemplate?: (row: any, c: TableColumn) => TemplateRef<any>;
|
|
626
628
|
}
|
|
627
629
|
interface TableOptions {
|
|
628
|
-
|
|
630
|
+
headerSticky?: boolean;
|
|
631
|
+
footerSticky?: boolean;
|
|
629
632
|
}
|
|
630
633
|
declare class TableComponent implements OnInit, AfterViewInit {
|
|
631
634
|
private domSanitizer;
|
|
@@ -634,8 +637,10 @@ declare class TableComponent implements OnInit, AfterViewInit {
|
|
|
634
637
|
options: TableOptions | undefined;
|
|
635
638
|
rowTemplates: any;
|
|
636
639
|
headerTemplates: any;
|
|
640
|
+
footerTemplates: any;
|
|
637
641
|
stateStoreKey: string;
|
|
638
642
|
rowAction: (row: any) => void;
|
|
643
|
+
hasFooter: boolean;
|
|
639
644
|
matSortActive: any;
|
|
640
645
|
matSortDirection: any;
|
|
641
646
|
matSort: MatSort | undefined;
|
|
@@ -646,7 +651,7 @@ declare class TableComponent implements OnInit, AfterViewInit {
|
|
|
646
651
|
display(row: any, col: TableColumn): any;
|
|
647
652
|
rowClicked(row: any): void;
|
|
648
653
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
649
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "options": { "alias": "options"; "required": false; }; "rowTemplates": { "alias": "rowTemplates"; "required": false; }; "headerTemplates": { "alias": "headerTemplates"; "required": false; }; "stateStoreKey": { "alias": "stateStoreKey"; "required": false; }; "rowAction": { "alias": "rowAction"; "required": false; }; "matSortActive": { "alias": "matSortActive"; "required": false; }; "matSortDirection": { "alias": "matSortDirection"; "required": false; }; }, {}, never, never, false, never>;
|
|
654
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "options": { "alias": "options"; "required": false; }; "rowTemplates": { "alias": "rowTemplates"; "required": false; }; "headerTemplates": { "alias": "headerTemplates"; "required": false; }; "footerTemplates": { "alias": "footerTemplates"; "required": false; }; "stateStoreKey": { "alias": "stateStoreKey"; "required": false; }; "rowAction": { "alias": "rowAction"; "required": false; }; "hasFooter": { "alias": "hasFooter"; "required": false; }; "matSortActive": { "alias": "matSortActive"; "required": false; }; "matSortDirection": { "alias": "matSortDirection"; "required": false; }; }, {}, never, never, false, never>;
|
|
650
655
|
}
|
|
651
656
|
|
|
652
657
|
declare class BurgerComponent implements OnInit {
|