ados-rcm 1.0.554 → 1.0.556
Sign up to get free protection for your applications and to get access to all the features.
@@ -186,6 +186,12 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
186
186
|
* Description : resources of ATree
|
187
187
|
*/
|
188
188
|
resources?: Partial<typeof Resources.ATree>;
|
189
|
+
/**
|
190
|
+
* maxLength? : number
|
191
|
+
*
|
192
|
+
* Description : maxLength of ATreeSearch
|
193
|
+
*/
|
194
|
+
maxLength?: number;
|
189
195
|
}
|
190
196
|
/**
|
191
197
|
* AComponent : ATree
|
@@ -9,6 +9,7 @@ interface IATreeSearchProps<T extends IATreeItem<T>> {
|
|
9
9
|
isDisabled?: boolean | string;
|
10
10
|
isLoading?: boolean;
|
11
11
|
resources: typeof Resources.ATree;
|
12
|
+
maxLength?: number;
|
12
13
|
}
|
13
14
|
export declare const ATreeSearch: <T extends IATreeItem<T>>(props: IATreeSearchProps<T>) => React.ReactNode;
|
14
15
|
export {};
|