cats-data-grid 2.0.90 → 2.0.92
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 +13 -6
- 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
|
@@ -157,6 +157,7 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
157
157
|
originalCategorizedCols: any;
|
|
158
158
|
originalNoCategoryCols: any[];
|
|
159
159
|
isScrollPagination: boolean;
|
|
160
|
+
scrollLeft: number;
|
|
160
161
|
constructor(renderer: Renderer2, zone: NgZone, cd: ChangeDetectorRef);
|
|
161
162
|
ngOnInit(): void;
|
|
162
163
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -194,7 +195,7 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
194
195
|
*/
|
|
195
196
|
getUpdatedColDefs(colDefs: any[]): any[];
|
|
196
197
|
getSetFilterOptions(col: any): any[];
|
|
197
|
-
normalizeSetFilterType(value: any, key: string): any[]
|
|
198
|
+
normalizeSetFilterType(value: any, key: string): any[];
|
|
198
199
|
/**
|
|
199
200
|
* @description - Evaluates a text-based filter condition on a given field value.
|
|
200
201
|
* @author Anand Pandey
|