ados-rcm 1.0.69 → 1.0.70
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.
|
@@ -22,8 +22,10 @@ export declare const Resources: {
|
|
|
22
22
|
ATable: {
|
|
23
23
|
'c/t items checked': (c: number, t: number) => string;
|
|
24
24
|
't items': (t: number) => string;
|
|
25
|
-
Search: string;
|
|
25
|
+
'Search(Placeholder)': string;
|
|
26
|
+
'Search(Button)': string;
|
|
26
27
|
Select: string;
|
|
28
|
+
'Toggle Filter': string;
|
|
27
29
|
};
|
|
28
30
|
ASelect: {
|
|
29
31
|
Select: string;
|
|
@@ -85,6 +85,12 @@ export interface IASelectProps<I, S extends (null | I) | I[]> extends IABaseProp
|
|
|
85
85
|
* Description : maxShowRows of ASelect. scrollbar will appear when overflow
|
|
86
86
|
*/
|
|
87
87
|
maxShowRows?: number;
|
|
88
|
+
/**
|
|
89
|
+
* height? : number
|
|
90
|
+
*
|
|
91
|
+
* Description : height of ASelect
|
|
92
|
+
*/
|
|
93
|
+
height?: number;
|
|
88
94
|
/**
|
|
89
95
|
* arrowProps? : React.HTMLProps<HTMLDivElement>
|
|
90
96
|
*
|