ados-rcm 1.1.136 → 1.1.137
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +6 -0
- package/dist/index.cjs.js +18 -18
- package/dist/index.es.js +1806 -1800
- package/package.json +1 -1
@@ -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
|
/**
|