ados-rcm 1.1.576 → 1.1.578
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 +54 -0
- package/dist/index.cjs.js +50 -50
- package/dist/index.es.js +4026 -3995
- package/package.json +1 -1
@@ -69,6 +69,18 @@ export type TAListViewDefs<T extends IObject> = {
|
|
69
69
|
[key in TIdx]?: IAListViewDef<T>;
|
70
70
|
};
|
71
71
|
export interface IAListViewProps<T extends IObject> extends IABaseProps {
|
72
|
+
/**
|
73
|
+
* contentClassName? : string
|
74
|
+
*
|
75
|
+
* Description : contentClassName of AListView
|
76
|
+
*/
|
77
|
+
contentClassName?: string;
|
78
|
+
/**
|
79
|
+
* contentStyle? : React.CSSProperties
|
80
|
+
*
|
81
|
+
* Description : contentStyle of AListView
|
82
|
+
*/
|
83
|
+
contentStyle?: React.CSSProperties;
|
72
84
|
/**
|
73
85
|
* defaultDef? : IAListViewDef<T>
|
74
86
|
*
|
@@ -87,18 +99,60 @@ export interface IAListViewProps<T extends IObject> extends IABaseProps {
|
|
87
99
|
* Description : item of AListView
|
88
100
|
*/
|
89
101
|
item?: T;
|
102
|
+
/**
|
103
|
+
* labelClassName? : string
|
104
|
+
*
|
105
|
+
* Description : labelClassName of AListView
|
106
|
+
*/
|
107
|
+
labelClassName?: string;
|
108
|
+
/**
|
109
|
+
* noBorder? : boolean
|
110
|
+
*
|
111
|
+
* Description : noBorder of AListView
|
112
|
+
*/
|
113
|
+
labelStyle?: React.CSSProperties;
|
90
114
|
/**
|
91
115
|
* labelWidth? : number | string
|
92
116
|
*
|
93
117
|
* Description : labelWidth of AListView
|
94
118
|
*/
|
95
119
|
labelWidth?: number | string;
|
120
|
+
/**
|
121
|
+
* middleBorder? : string
|
122
|
+
*
|
123
|
+
* Description : css value for middle vertical border (e.g., '1px solid #e5e7eb')
|
124
|
+
*/
|
125
|
+
middleBorder?: string;
|
96
126
|
/**
|
97
127
|
* noBorder? : boolean
|
98
128
|
*
|
99
129
|
* Description : noBorder of AListView
|
100
130
|
*/
|
101
131
|
noBorder?: boolean;
|
132
|
+
/**
|
133
|
+
* onlyMiddleBorder? : boolean
|
134
|
+
*
|
135
|
+
* Description : when true, removes outer borders and keeps only the middle separator
|
136
|
+
*/
|
137
|
+
onlyMiddleBorder?: boolean;
|
138
|
+
/**
|
139
|
+
* outerBorder? : string
|
140
|
+
*
|
141
|
+
* Description : css value for outer thick borders (left/right of container)
|
142
|
+
*/
|
143
|
+
outerBorder?: string;
|
144
|
+
/**
|
145
|
+
* rowBottomBorder? : string
|
146
|
+
*
|
147
|
+
* Description : css value for each row bottom border when outer borders are used
|
148
|
+
*/
|
149
|
+
rowBottomBorder?: string;
|
150
|
+
/**
|
151
|
+
* rowGap? : number | string
|
152
|
+
*
|
153
|
+
* Description : gap between rows. Adds top margin for rows except the first.
|
154
|
+
*/
|
155
|
+
rowGap?: number | string;
|
102
156
|
/**
|
103
157
|
* rowHeight? : number | string
|
104
158
|
*
|