@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.
@@ -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
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.86",
10
+ "version": "1.1.87",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^18.2.6",
13
13
  "@angular/core": "^18.2.6"