@rlucan/ui 20.0.10 → 20.0.12
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 +117 -111
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/index.d.ts +8 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -541,6 +541,7 @@ declare class CheckboxComponent extends UiSimpleComponent implements OnInit {
|
|
|
541
541
|
|
|
542
542
|
declare class AvatarComponent {
|
|
543
543
|
user: Partial<{
|
|
544
|
+
anonymous: boolean;
|
|
544
545
|
avatar: any;
|
|
545
546
|
shortName: string;
|
|
546
547
|
shortColour: string;
|
|
@@ -618,14 +619,17 @@ interface TableColumn {
|
|
|
618
619
|
sortable?: boolean | ((row: any, direction?: SortDirection) => number | string);
|
|
619
620
|
sticky?: boolean;
|
|
620
621
|
label?: string;
|
|
622
|
+
footerLabel?: string;
|
|
621
623
|
colSpan?: (row: any) => number;
|
|
622
624
|
formatter?: (row: any) => string;
|
|
623
625
|
cellClass?: (row: any, c?: TableColumn) => string;
|
|
624
626
|
headerTemplate?: (c: TableColumn) => TemplateRef<any>;
|
|
627
|
+
footerTemplate?: (c: TableColumn) => TemplateRef<any>;
|
|
625
628
|
cellTemplate?: (row: any, c: TableColumn) => TemplateRef<any>;
|
|
626
629
|
}
|
|
627
630
|
interface TableOptions {
|
|
628
|
-
|
|
631
|
+
headerSticky?: boolean;
|
|
632
|
+
footerSticky?: boolean;
|
|
629
633
|
}
|
|
630
634
|
declare class TableComponent implements OnInit, AfterViewInit {
|
|
631
635
|
private domSanitizer;
|
|
@@ -634,8 +638,10 @@ declare class TableComponent implements OnInit, AfterViewInit {
|
|
|
634
638
|
options: TableOptions | undefined;
|
|
635
639
|
rowTemplates: any;
|
|
636
640
|
headerTemplates: any;
|
|
641
|
+
footerTemplates: any;
|
|
637
642
|
stateStoreKey: string;
|
|
638
643
|
rowAction: (row: any) => void;
|
|
644
|
+
hasFooter: boolean;
|
|
639
645
|
matSortActive: any;
|
|
640
646
|
matSortDirection: any;
|
|
641
647
|
matSort: MatSort | undefined;
|
|
@@ -646,7 +652,7 @@ declare class TableComponent implements OnInit, AfterViewInit {
|
|
|
646
652
|
display(row: any, col: TableColumn): any;
|
|
647
653
|
rowClicked(row: any): void;
|
|
648
654
|
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>;
|
|
655
|
+
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
656
|
}
|
|
651
657
|
|
|
652
658
|
declare class BurgerComponent implements OnInit {
|