cats-data-grid 2.0.81 → 2.0.82
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/cats-data-grid.mjs +33 -25
- package/fesm2022/cats-data-grid.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -189,6 +189,7 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
189
189
|
* @returns {any[]} - Updated column definitions with filter/menu
|
|
190
190
|
*/
|
|
191
191
|
getUpdatedColDefs(colDefs: any[]): any[];
|
|
192
|
+
getSetFilterOptions(col: any): any[];
|
|
192
193
|
normalizeSetFilterType(value: any, key: string): any[] | undefined;
|
|
193
194
|
/**
|
|
194
195
|
* @description - Evaluates a text-based filter condition on a given field value.
|
|
@@ -425,7 +426,7 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
425
426
|
* @param col
|
|
426
427
|
* @returns {object}
|
|
427
428
|
*/
|
|
428
|
-
getStyle(col: any, type?: string): object;
|
|
429
|
+
getStyle(col: any, type?: string, tag?: string): object;
|
|
429
430
|
onClickOutside(): void;
|
|
430
431
|
infinityScroll(event: any): void;
|
|
431
432
|
checkAllSelected(): boolean;
|