ados-rcm 1.0.90 → 1.0.92

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.
@@ -123,7 +123,7 @@ export interface IATableFilter<T extends IItem> {
123
123
  */
124
124
  defKey: keyof T | '';
125
125
  /**
126
- * value : string
126
+ * value : string = ''
127
127
  *
128
128
  * Description : value of the String filter
129
129
  */
@@ -155,7 +155,7 @@ export interface IATableFilter<T extends IItem> {
155
155
  */
156
156
  defKey: keyof T | '';
157
157
  /**
158
- * value : string | number | null
158
+ * value : string | number | null = null
159
159
  *
160
160
  * Description : values of the Select filter
161
161
  */
@@ -201,7 +201,7 @@ export interface IATableFilter<T extends IItem> {
201
201
  */
202
202
  defKey: keyof T;
203
203
  /**
204
- * value : Date
204
+ * value : Date = new Date()
205
205
  *
206
206
  * Description : value of the Date filter
207
207
  */
@@ -239,13 +239,13 @@ export interface IATableFilter<T extends IItem> {
239
239
  */
240
240
  defKey: keyof T | '';
241
241
  /**
242
- * sDate : Date
242
+ * sDate : Date = new Date()
243
243
  *
244
244
  * Description : sDate of the DateRange filter
245
245
  */
246
246
  sDate?: Date;
247
247
  /**
248
- * eDate : Date
248
+ * eDate : Date = new Date()
249
249
  *
250
250
  * Description : eDate of the DateRange filter
251
251
  */