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.
@@ -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 state
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
  /**