ados-rcm 1.0.562 → 1.0.563
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.
@@ -148,6 +148,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
148
148
|
* Description : decides whether the input is focused or not
|
149
149
|
*/
|
150
150
|
autoFocus?: boolean;
|
151
|
+
/**
|
152
|
+
* maxLength? : number
|
153
|
+
*
|
154
|
+
* Description : maxLength of the String filter
|
155
|
+
*/
|
156
|
+
maxLength?: number;
|
151
157
|
};
|
152
158
|
Select: {
|
153
159
|
/**
|
@@ -10,6 +10,7 @@ interface IATreeSearchProps<T extends IATreeItem<T>> {
|
|
10
10
|
isLoading?: boolean;
|
11
11
|
resources: typeof Resources.ATree;
|
12
12
|
maxLength?: number;
|
13
|
+
autoFocus?: boolean;
|
13
14
|
}
|
14
15
|
export declare const ATreeSearch: <T extends IATreeItem<T>>(props: IATreeSearchProps<T>) => React.ReactNode;
|
15
16
|
export {};
|