ados-rcm 1.0.531 → 1.0.533
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.
@@ -3,9 +3,9 @@ import { TUseValues } from '../../AHooks/useValues';
|
|
3
3
|
import { TCanCallback } from '../../AUtils/cbF';
|
4
4
|
import { IItem } from '../../AUtils/objF';
|
5
5
|
import { IABaseProps } from '../ABase/ABase';
|
6
|
-
import { IDateRange } from '../ADatePicker/ADateRangePicker';
|
7
6
|
import { Resources } from '../AResource/AResource';
|
8
7
|
import { TActionRef, TIdx, TPromisable } from '../ATypes/ATypes';
|
8
|
+
import { IDateRange } from '../ADatePicker/ADateRangePicker';
|
9
9
|
export interface IATableTHProps<T extends IItem> {
|
10
10
|
/**
|
11
11
|
* defKey : TIdx
|
@@ -356,8 +356,8 @@ export interface IATableState<T extends IItem, K extends IItem = any> {
|
|
356
356
|
*/
|
357
357
|
sortation: IATableSortation<T>;
|
358
358
|
}
|
359
|
-
export interface IATableActions
|
360
|
-
fireOnStateChange: (
|
359
|
+
export interface IATableActions {
|
360
|
+
fireOnStateChange: () => TPromisable<void>;
|
361
361
|
}
|
362
362
|
export interface IATableProps<T extends IItem> {
|
363
363
|
/**
|
@@ -539,7 +539,7 @@ export interface IATableProps<T extends IItem> {
|
|
539
539
|
*
|
540
540
|
* Description : actionRef of ATable
|
541
541
|
*/
|
542
|
-
actionRef?: TActionRef<IATableActions
|
542
|
+
actionRef?: TActionRef<IATableActions>;
|
543
543
|
/**
|
544
544
|
* resources? : Partial<typeof Resources.ATable>
|
545
545
|
*
|
@@ -30,6 +30,7 @@ export interface IATreeItemProps<T> {
|
|
30
30
|
TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
31
31
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|
32
32
|
resources: typeof Resources.ATree;
|
33
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
33
34
|
}
|
34
35
|
declare enum EIndentState {
|
35
36
|
Collapsed = "Collapsed",
|