ados-rcm 1.1.601 → 1.1.603
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.
- package/dist/AModule/AComponents/AListView/AListView.d.ts +3 -15
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +1377 -1377
- package/package.json +1 -1
@@ -57,29 +57,17 @@ export interface IAListViewDef<T extends IObject> {
|
|
57
57
|
*/
|
58
58
|
content?: TCanCallback<IAListViewContentProps<T>, React.ReactNode>;
|
59
59
|
/**
|
60
|
-
*
|
60
|
+
* fixedHeight? : boolean
|
61
61
|
*
|
62
|
-
* Description : height
|
62
|
+
* Description : set row height to fixed or not
|
63
63
|
*/
|
64
|
-
|
64
|
+
fixedHeight?: boolean;
|
65
65
|
/**
|
66
66
|
* label? : TCanCallback<IAListViewLabelProps<T>, React.ReactNode>
|
67
67
|
*
|
68
68
|
* Description : label of AListView
|
69
69
|
*/
|
70
70
|
label?: TCanCallback<IAListViewLabelProps<T>, React.ReactNode>;
|
71
|
-
/**
|
72
|
-
* maxHeight? : number | string
|
73
|
-
*
|
74
|
-
* Description : maxHeight of AListView
|
75
|
-
*/
|
76
|
-
maxHeight?: number | string;
|
77
|
-
/**
|
78
|
-
* minHeight? : number | string
|
79
|
-
*
|
80
|
-
* Description : minHeight of AListView
|
81
|
-
*/
|
82
|
-
minHeight?: number | string;
|
83
71
|
}
|
84
72
|
export type TAListViewDefs<T extends IObject> = {
|
85
73
|
[key in Exclude<keyof T, symbol>]?: IAListViewDef<T>;
|