ados-rcm 1.0.580 → 1.0.582
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATree/ATree.d.ts +6 -0
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -0
- package/dist/index.cjs.js +31 -31
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2735 -2728
- package/package.json +1 -1
@@ -198,6 +198,12 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
198
198
|
* Description : autoFocus of ATreeSearch
|
199
199
|
*/
|
200
200
|
autoFocus?: boolean;
|
201
|
+
/**
|
202
|
+
* treeItemStyle? : React.CSSProperties
|
203
|
+
*
|
204
|
+
* Description : style of ATreeItem
|
205
|
+
*/
|
206
|
+
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
201
207
|
}
|
202
208
|
/**
|
203
209
|
* AComponent : ATree
|
@@ -31,6 +31,7 @@ export interface IATreeItemProps<T> {
|
|
31
31
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|
32
32
|
resources: typeof Resources.ATree;
|
33
33
|
containerRef: React.RefObject<HTMLDivElement>;
|
34
|
+
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
34
35
|
}
|
35
36
|
declare enum EIndentState {
|
36
37
|
Collapsed = "Collapsed",
|