ados-rcm 1.1.162 → 1.1.164

Sign up to get free protection for your applications and to get access to all the features.
@@ -130,6 +130,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
130
130
  * Description : value of the String filter
131
131
  */
132
132
  value?: string;
133
+ /**
134
+ * defaultValue? : string
135
+ *
136
+ * Description : defaultValue of the String filter
137
+ */
138
+ defaultValue?: string;
133
139
  /**
134
140
  * filterKey? : keyof K = [key of this filter]
135
141
  *
@@ -180,6 +186,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
180
186
  * Description : values of the Select filter
181
187
  */
182
188
  value?: string | number | null;
189
+ /**
190
+ * defaultValue? : string | number | null
191
+ *
192
+ * Description : defaultValue of the Select filter
193
+ */
194
+ defaultValue?: string | number | null;
183
195
  /**
184
196
  * filterKey? : keyof K = [key of this filter]
185
197
  *
@@ -226,6 +238,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
226
238
  * Description : value of the Date filter
227
239
  */
228
240
  value?: Date;
241
+ /**
242
+ * defaultValue? : Date
243
+ *
244
+ * Description : defaultValue of the Date filter
245
+ */
246
+ defaultValue?: Date;
229
247
  /**
230
248
  * filterKey? : keyof K = [key of this filter]
231
249
  *
@@ -264,6 +282,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
264
282
  * Description : value of the DateRange filter
265
283
  */
266
284
  value?: IDateRange;
285
+ /**
286
+ * defaultValue? : IDateRange
287
+ *
288
+ * Description : defaultValue of the DateRange filter
289
+ */
290
+ defaultValue?: IDateRange;
267
291
  /**
268
292
  * sFilterKey : keyof K
269
293
  *