@indigina/ui-kit 1.1.53 → 1.1.54
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.
|
@@ -58,7 +58,7 @@ export declare class KitGridComponent<T> {
|
|
|
58
58
|
kitGridDetailTemplate: TemplateRef<HTMLElement> | null;
|
|
59
59
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
60
60
|
readonly KitGridSortDirection: typeof KitGridSortDirection;
|
|
61
|
-
|
|
61
|
+
expandedRows: T[];
|
|
62
62
|
onDataStateChange(event: KitGridDataStateChangeEvent): void;
|
|
63
63
|
onSortChange(event: KitGridSortDescriptor[]): void;
|
|
64
64
|
getSortingDirection(columnField: string): string | null;
|
|
@@ -68,6 +68,7 @@ export declare class KitGridComponent<T> {
|
|
|
68
68
|
onPageChange(event: KitGridPageChangeEvent): void;
|
|
69
69
|
getCssRowClass: (context: RowClassArgs) => Record<string, boolean>;
|
|
70
70
|
getPagerSettings(): boolean | PagerSettings;
|
|
71
|
+
private collapseAllRows;
|
|
71
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridComponent<any>, never>;
|
|
72
73
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "detailTemplateShowIf": { "alias": "detailTemplateShowIf"; "required": false; }; }, { "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; }, ["kitGridDetailTemplate", "columns"], never, false, never>;
|
|
73
74
|
}
|