ados-rcm 1.0.235 → 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.
- package/dist/AModule/AComponents/ATextArea/ATextArea.d.ts +6 -0
- package/dist/index.cjs.js +15 -15
- package/dist/index.es.js +1564 -1563
- package/package.json +1 -1
|
@@ -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
|
*
|