ados-rcm 1.0.235 → 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
  *
@@ -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
  *