ados-rcm 1.1.653 → 1.1.654
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.
|
@@ -77,6 +77,12 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
|
|
|
77
77
|
* Description : onEnterPress of AInput
|
|
78
78
|
*/
|
|
79
79
|
onEnterPress?: (value: string) => void;
|
|
80
|
+
/**
|
|
81
|
+
* pattern? : string
|
|
82
|
+
*
|
|
83
|
+
* Description : pattern of AInput
|
|
84
|
+
*/
|
|
85
|
+
pattern?: string;
|
|
80
86
|
/**
|
|
81
87
|
* placeholder? : string
|
|
82
88
|
*
|
|
@@ -359,6 +359,12 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
|
359
359
|
* Description : maxLength of the String filter
|
|
360
360
|
*/
|
|
361
361
|
maxLength?: number;
|
|
362
|
+
/**
|
|
363
|
+
* pattern? : string
|
|
364
|
+
*
|
|
365
|
+
* Description : pattern attribute for input validation
|
|
366
|
+
*/
|
|
367
|
+
pattern?: string;
|
|
362
368
|
/**
|
|
363
369
|
* placeholder? : string = def.Name
|
|
364
370
|
*
|