ados-rcm 1.0.233 → 1.0.235

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