ados-rcm 1.1.136 → 1.1.138

Sign up to get free protection for your applications and to get access to all the features.
@@ -160,6 +160,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
160
160
  * Description : maxLength of the String filter
161
161
  */
162
162
  maxLength?: number;
163
+ /**
164
+ * validation? : (value?: string) => string | undefined
165
+ *
166
+ * Description : validation of the String filter
167
+ */
168
+ validation?: (value?: string) => string;
163
169
  };
164
170
  Select: {
165
171
  /**