cat-qw-lib 2.1.23 → 2.1.25
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.
|
@@ -94,6 +94,7 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
|
|
|
94
94
|
* @param {number} id - The ID of the record to edit.
|
|
95
95
|
*/
|
|
96
96
|
handleEditClick(id: number): void;
|
|
97
|
+
get isAllCurrentPageSelected(): boolean;
|
|
97
98
|
handleSelectAllRowData(checked: boolean): void;
|
|
98
99
|
/**
|
|
99
100
|
* Logs row data intended for editing.
|
|
@@ -153,6 +154,8 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
|
|
|
153
154
|
onSort(event: any): void;
|
|
154
155
|
/**
|
|
155
156
|
* Utility: Check if value is array (for template use)
|
|
157
|
+
* @param {any} val - The value to check if it is an array.
|
|
158
|
+
* @returns {boolean} True if the value is an array, otherwise false.
|
|
156
159
|
*/
|
|
157
160
|
isArray(val: any): boolean;
|
|
158
161
|
shouldShowValue(col: any, rowData: any): boolean;
|