ados-rcm 1.1.503 → 1.1.506
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.
@@ -95,6 +95,12 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
|
|
95
95
|
* Description : useValue of AInput
|
96
96
|
*/
|
97
97
|
useValue?: TUseValues<string | number | readonly string[], string>;
|
98
|
+
/**
|
99
|
+
* dataList? : string[] | readonly string[]
|
100
|
+
*
|
101
|
+
* Description : dataList of AInput
|
102
|
+
*/
|
103
|
+
dataList?: string[] | readonly string[];
|
98
104
|
}
|
99
105
|
/**
|
100
106
|
* AComponent : AInput
|
@@ -34,10 +34,10 @@ export interface IATableTDProps<T extends IItem> extends IATableTHProps<T>, IATa
|
|
34
34
|
}
|
35
35
|
export interface IATableDef<T extends IItem> {
|
36
36
|
/**
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
37
|
+
* align? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
|
38
|
+
*
|
39
|
+
* Description : align of the column. type of justifyContent
|
40
|
+
*/
|
41
41
|
align?: TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>;
|
42
42
|
/**
|
43
43
|
* asText? : TCanCallback<IATableTDProps<T>, string | number>
|
@@ -52,10 +52,10 @@ export interface IATableDef<T extends IItem> {
|
|
52
52
|
*/
|
53
53
|
colSpan?: TCanCallback<IATableTHProps<T>, number>;
|
54
54
|
/**
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
55
|
+
* content? : TCanCallback<IATableTDProps<T>, React.ReactNode>
|
56
|
+
*
|
57
|
+
* Description : content of the td
|
58
|
+
*/
|
59
59
|
content?: TCanCallback<IATableTDProps<T>, React.ReactNode>;
|
60
60
|
/**
|
61
61
|
* hAlign? : TCanCallback<IATableTHProps<T>, React.CSSProperties['justifyContent']>
|
@@ -115,10 +115,10 @@ export interface IATableDef<T extends IItem> {
|
|
115
115
|
*/
|
116
116
|
style?: TCanCallback<IATableTDProps<T>, React.CSSProperties>;
|
117
117
|
/**
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
118
|
+
* width? : number = 80
|
119
|
+
*
|
120
|
+
* Description : width of the column
|
121
|
+
*/
|
122
122
|
width?: number;
|
123
123
|
}
|
124
124
|
export type TATableDefs<T extends IItem> = {
|
@@ -384,6 +384,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
384
384
|
* Description : value of the String filter
|
385
385
|
*/
|
386
386
|
value?: string;
|
387
|
+
/**
|
388
|
+
* dataList? : string[] | readonly string[]
|
389
|
+
*
|
390
|
+
* Description : dataList of the String filter
|
391
|
+
*/
|
392
|
+
dataList?: string[] | readonly string[];
|
387
393
|
};
|
388
394
|
}
|
389
395
|
export type TATableSomeFilter<T extends IItem, K extends IItem = any> = IATableFilter<T, K>[TATableFilterType];
|