ados-rcm 1.1.117 → 1.1.119
Sign up to get free protection for your applications and to get access to all the features.
@@ -53,6 +53,12 @@ export interface IATabProps<T> {
|
|
53
53
|
* Description : OptionRenderer of ATab
|
54
54
|
*/
|
55
55
|
OptionRenderer?: (props: IATabOptionRendererProps<T>) => React.ReactNode;
|
56
|
+
/**
|
57
|
+
* RightAddon? : React.ReactNode
|
58
|
+
*
|
59
|
+
* Description : RightAddon of ATab
|
60
|
+
*/
|
61
|
+
RightAddon?: React.ReactNode;
|
56
62
|
}
|
57
63
|
/**
|
58
64
|
* AComponent : ATab
|
@@ -239,11 +239,17 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
239
239
|
*/
|
240
240
|
insertBorder?: boolean;
|
241
241
|
/**
|
242
|
-
*
|
242
|
+
* width? : number
|
243
243
|
*
|
244
|
-
* Description :
|
244
|
+
* Description : width of ATree
|
245
245
|
*/
|
246
246
|
width?: number;
|
247
|
+
/**
|
248
|
+
* searchItemClassName? : string
|
249
|
+
*
|
250
|
+
* Description : className of search item
|
251
|
+
*/
|
252
|
+
searchItemClassName?: string;
|
247
253
|
}
|
248
254
|
/**
|
249
255
|
* AComponent : ATree
|
@@ -40,8 +40,9 @@ export interface IATreeItemProps<T> {
|
|
40
40
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|
41
41
|
resources: typeof Resources.ATree;
|
42
42
|
containerRef: React.RefObject<HTMLDivElement>;
|
43
|
-
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
44
43
|
TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
44
|
+
TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
|
45
|
+
searchItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
|
45
46
|
}
|
46
47
|
declare enum EIndentState {
|
47
48
|
Collapsed = "Collapsed",
|