ados-rcm 1.0.236 → 1.0.237
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.
|
@@ -76,12 +76,6 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
|
|
|
76
76
|
* Description : autoComplete of AInput
|
|
77
77
|
*/
|
|
78
78
|
autoComplete?: string;
|
|
79
|
-
/**
|
|
80
|
-
* errorMessage? : string
|
|
81
|
-
*
|
|
82
|
-
* Description : errorMessage of AInput. if it exists, helperText and type will be overwritten.
|
|
83
|
-
*/
|
|
84
|
-
errorMessage?: string;
|
|
85
79
|
/**
|
|
86
80
|
* inputProps? : React.InputHTMLAttributes<HTMLInputElement>
|
|
87
81
|
*
|
|
@@ -70,12 +70,6 @@ export interface IATextAreaProps extends IABaseProps, IAWrapProps {
|
|
|
70
70
|
* Description : decides whether the input is focused or not
|
|
71
71
|
*/
|
|
72
72
|
autoFocus?: boolean;
|
|
73
|
-
/**
|
|
74
|
-
* errorMessage? : string
|
|
75
|
-
*
|
|
76
|
-
* Description : errorMessage of AInput. if it exists, helperText and type will be overwritten.
|
|
77
|
-
*/
|
|
78
|
-
errorMessage?: string;
|
|
79
73
|
/**
|
|
80
74
|
* textAreaProps? : React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
|
81
75
|
*
|
|
@@ -12,6 +12,12 @@ export interface IAWrapProps {
|
|
|
12
12
|
* Description : helperText of AWrap
|
|
13
13
|
*/
|
|
14
14
|
helperText?: React.ReactNode | React.ReactNode[];
|
|
15
|
+
/**
|
|
16
|
+
* errorMessage? : React.ReactNode | React.ReactNode[]
|
|
17
|
+
*
|
|
18
|
+
* Description : errorMessage of AWrap. If errorMessage is provided, helperText=errorMessage, type='Error'
|
|
19
|
+
*/
|
|
20
|
+
errorMessage?: React.ReactNode | React.ReactNode[];
|
|
15
21
|
/**
|
|
16
22
|
* wrapType? : 'Default' | 'Error' = 'Default'
|
|
17
23
|
*
|