ados-rcm 1.0.539 → 1.0.541
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +2 -1
- package/dist/index.cjs.js +18 -18
- package/dist/index.es.js +1359 -1356
- package/package.json +1 -1
@@ -340,7 +340,7 @@ export interface IATableState<T extends IItem, K extends IItem = any> {
|
|
340
340
|
/**
|
341
341
|
* filteration : TATableFilteration<T, K>
|
342
342
|
*
|
343
|
-
* Description : filteration of the
|
343
|
+
* Description : the applied filteration of the table. NOT the filteration shown in the header.
|
344
344
|
*/
|
345
345
|
filteration: TATableFilteration<T, K>;
|
346
346
|
/**
|
@@ -358,6 +358,7 @@ export interface IATableState<T extends IItem, K extends IItem = any> {
|
|
358
358
|
}
|
359
359
|
export interface IATableActions<T extends IItem> {
|
360
360
|
fireOnStateChange: (cb?: (oldState: IATableState<T>) => IATableState<T>) => TPromisable<void>;
|
361
|
+
applyFilteration: (filteration: TATableFilteration<T>) => TPromisable<void>;
|
361
362
|
}
|
362
363
|
export interface IATableProps<T extends IItem> {
|
363
364
|
/**
|