ados-rcm 1.1.166 → 1.1.168
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +12 -12
- package/dist/index.cjs.js +29 -29
- package/dist/index.es.js +4287 -4299
- package/package.json +1 -1
@@ -131,11 +131,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
131
131
|
*/
|
132
132
|
value?: string;
|
133
133
|
/**
|
134
|
-
*
|
134
|
+
* clearValue? : string
|
135
135
|
*
|
136
|
-
* Description :
|
136
|
+
* Description : value will be set to clearValue when the clear button is clicked.
|
137
137
|
*/
|
138
|
-
|
138
|
+
clearValue?: string;
|
139
139
|
/**
|
140
140
|
* filterKey? : keyof K = [key of this filter]
|
141
141
|
*
|
@@ -187,11 +187,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
187
187
|
*/
|
188
188
|
value?: string | number | null;
|
189
189
|
/**
|
190
|
-
*
|
190
|
+
* clearValue? : string | number | null
|
191
191
|
*
|
192
|
-
* Description :
|
192
|
+
* Description : value will be set to clearValue when the clear button is clicked.
|
193
193
|
*/
|
194
|
-
|
194
|
+
clearValue?: string | number | null;
|
195
195
|
/**
|
196
196
|
* filterKey? : keyof K = [key of this filter]
|
197
197
|
*
|
@@ -239,11 +239,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
239
239
|
*/
|
240
240
|
value?: Date;
|
241
241
|
/**
|
242
|
-
*
|
242
|
+
* clearValue? : Date
|
243
243
|
*
|
244
|
-
* Description :
|
244
|
+
* Description : value will be set to clearValue when the clear button is clicked.
|
245
245
|
*/
|
246
|
-
|
246
|
+
clearValue?: Date;
|
247
247
|
/**
|
248
248
|
* filterKey? : keyof K = [key of this filter]
|
249
249
|
*
|
@@ -283,11 +283,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
283
283
|
*/
|
284
284
|
value?: IDateRange;
|
285
285
|
/**
|
286
|
-
*
|
286
|
+
* clearValue? : IDateRange
|
287
287
|
*
|
288
|
-
* Description :
|
288
|
+
* Description : value will be set to clearValue when the clear button is clicked.
|
289
289
|
*/
|
290
|
-
|
290
|
+
clearValue?: IDateRange;
|
291
291
|
/**
|
292
292
|
* sFilterKey : keyof K
|
293
293
|
*
|