ados-rcm 1.0.234 → 1.0.236
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,6 +76,18 @@ 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
|
+
/**
|
|
86
|
+
* inputProps? : React.InputHTMLAttributes<HTMLInputElement>
|
|
87
|
+
*
|
|
88
|
+
* Description : inputProps of AInput
|
|
89
|
+
*/
|
|
90
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
79
91
|
/**
|
|
80
92
|
* LeftAddon? : React.ReactNode
|
|
81
93
|
*
|
|
@@ -88,12 +100,6 @@ export interface IAInputProps extends IABaseProps, IAWrapProps {
|
|
|
88
100
|
* Description : RightAddon of AInput
|
|
89
101
|
*/
|
|
90
102
|
RightAddon?: React.ReactNode;
|
|
91
|
-
/**
|
|
92
|
-
* inputProps? : React.InputHTMLAttributes<HTMLInputElement>
|
|
93
|
-
*
|
|
94
|
-
* Description : inputProps of AInput
|
|
95
|
-
*/
|
|
96
|
-
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
97
103
|
}
|
|
98
104
|
/**
|
|
99
105
|
* AComponent : AInput
|
|
@@ -70,6 +70,12 @@ 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;
|
|
73
79
|
/**
|
|
74
80
|
* textAreaProps? : React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
|
75
81
|
*
|