ados-rcm 1.1.160 → 1.1.162

Sign up to get free protection for your applications and to get access to all the features.
@@ -82,7 +82,7 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
82
82
  *
83
83
  * Description : decides the minimum length of each child frame. The length is the width when direction is 'Row' and the height when direction is 'Col'.
84
84
  */
85
- minLength?: number | number[];
85
+ minLength?: number;
86
86
  /**
87
87
  * children : React.ReactNode | React.ReactNode[]
88
88
  *
@@ -130,12 +130,6 @@ 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;
139
133
  /**
140
134
  * filterKey? : keyof K = [key of this filter]
141
135
  *
@@ -186,12 +180,6 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
186
180
  * Description : values of the Select filter
187
181
  */
188
182
  value?: string | number | null;
189
- /**
190
- * defaultValue? : string | number | null
191
- *
192
- * Description : defaultValue of the Select filter
193
- */
194
- defaultValue?: string | number | null;
195
183
  /**
196
184
  * filterKey? : keyof K = [key of this filter]
197
185
  *
@@ -238,12 +226,6 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
238
226
  * Description : value of the Date filter
239
227
  */
240
228
  value?: Date;
241
- /**
242
- * defaultValue? : Date
243
- *
244
- * Description : defaultValue of the Date filter
245
- */
246
- defaultValue?: Date;
247
229
  /**
248
230
  * filterKey? : keyof K = [key of this filter]
249
231
  *
@@ -282,12 +264,6 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
282
264
  * Description : value of the DateRange filter
283
265
  */
284
266
  value?: IDateRange;
285
- /**
286
- * defaultValue? : IDateRange
287
- *
288
- * Description : defaultValue of the DateRange filter
289
- */
290
- defaultValue?: IDateRange;
291
267
  /**
292
268
  * sFilterKey : keyof K
293
269
  *