ados-rcm 1.1.118 → 1.1.119
Sign up to get free protection for your applications and to get access to all the features.
@@ -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",
|