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.
@@ -131,11 +131,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
131
131
  */
132
132
  value?: string;
133
133
  /**
134
- * defaultValue? : string
134
+ * clearValue? : string
135
135
  *
136
- * Description : defaultValue of the String filter
136
+ * Description : value will be set to clearValue when the clear button is clicked.
137
137
  */
138
- defaultValue?: string;
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
- * defaultValue? : string | number | null
190
+ * clearValue? : string | number | null
191
191
  *
192
- * Description : defaultValue of the Select filter
192
+ * Description : value will be set to clearValue when the clear button is clicked.
193
193
  */
194
- defaultValue?: string | number | null;
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
- * defaultValue? : Date
242
+ * clearValue? : Date
243
243
  *
244
- * Description : defaultValue of the Date filter
244
+ * Description : value will be set to clearValue when the clear button is clicked.
245
245
  */
246
- defaultValue?: Date;
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
- * defaultValue? : IDateRange
286
+ * clearValue? : IDateRange
287
287
  *
288
- * Description : defaultValue of the DateRange filter
288
+ * Description : value will be set to clearValue when the clear button is clicked.
289
289
  */
290
- defaultValue?: IDateRange;
290
+ clearValue?: IDateRange;
291
291
  /**
292
292
  * sFilterKey : keyof K
293
293
  *