@indigina/ui-kit 1.1.86 → 1.1.87
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/esm2022/lib/components/kit-grid/kit-grid.component.mjs +17 -3
- package/esm2022/lib/components/kit-search-bar/kit-search-bar.component.mjs +3 -3
- package/fesm2022/indigina-ui-kit.mjs +18 -4
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-grid/kit-grid.component.d.ts +13 -1
- package/package.json +1 -1
|
@@ -38,6 +38,18 @@ export declare class KitGridComponent<T> {
|
|
|
38
38
|
* Function to determine if the detail template should be visible
|
|
39
39
|
*/
|
|
40
40
|
detailTemplateShowIf: (dataItem: T) => boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Flag to show or hide the footer row
|
|
43
|
+
*/
|
|
44
|
+
showFooter: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Title to display in the first column of the footer row
|
|
47
|
+
*/
|
|
48
|
+
footerTitle: string;
|
|
49
|
+
/**
|
|
50
|
+
* Data to display in the footer row
|
|
51
|
+
*/
|
|
52
|
+
footerData?: Partial<Record<keyof T, T[keyof T]>>;
|
|
41
53
|
/**
|
|
42
54
|
* An action which is emitted when the page of the grid is changed
|
|
43
55
|
*/
|
|
@@ -79,5 +91,5 @@ export declare class KitGridComponent<T> {
|
|
|
79
91
|
getPagerSettings(): boolean | PagerSettings;
|
|
80
92
|
private collapseAllRows;
|
|
81
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridComponent<any>, never>;
|
|
82
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "gridDataBinding": { "alias": "gridDataBinding"; "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"; "cellClicked": "cellClicked"; }, ["kitGridDetailTemplate", "columns"], never, false, never>;
|
|
94
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "gridDataBinding": { "alias": "gridDataBinding"; "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; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTitle": { "alias": "footerTitle"; "required": false; }; "footerData": { "alias": "footerData"; "required": false; }; }, { "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; "cellClicked": "cellClicked"; }, ["kitGridDetailTemplate", "columns"], never, false, never>;
|
|
83
95
|
}
|