ados-rcm 1.0.75 → 1.0.76

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.
@@ -23,7 +23,7 @@ import { TUseValues } from '../../AHooks/useValues';
23
23
  import { TCanCallback } from '../../AUtils/cbF';
24
24
  import { IItem } from '../../AUtils/objF';
25
25
  import { Resources } from '../AResource/AResource';
26
- import { TIdx } from '../ATypes/ATypes';
26
+ import { TIdx, TPromisable } from '../ATypes/ATypes';
27
27
  export interface IATableTHProps<T extends IItem> {
28
28
  /**
29
29
  * defKey : TIdx
@@ -597,7 +597,7 @@ export interface IATableProps<T extends IItem> {
597
597
  *
598
598
  * Description : onStateChange of ATable. will be called when filteration, sortation, and pagination changes.
599
599
  */
600
- onStateChange?: (params: IATableState<T>) => void;
600
+ onStateChange?: (params: IATableState<T>) => TPromisable<void>;
601
601
  /**
602
602
  * pagedItems? : T[]
603
603
  *