componenteshospitais 2.0.9 → 2.0.10
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/types/components/InputField.d.ts +1 -1
- package/dist/types/components/SelectField.d.ts +1 -1
- package/dist/types/components/TextArea.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/InputField.tsx +1 -1
- package/src/components/SelectField.tsx +1 -1
- package/src/components/TextArea.tsx +1 -1
|
@@ -14,7 +14,7 @@ interface TextAreaFieldProps {
|
|
|
14
14
|
onBlur?: (e: React.FocusEvent<HTMLTextAreaElement>) => void;
|
|
15
15
|
corFundo?: string;
|
|
16
16
|
corLabel?: string;
|
|
17
|
-
borderRadius?:
|
|
17
|
+
borderRadius?: string;
|
|
18
18
|
border?: string;
|
|
19
19
|
}
|
|
20
20
|
declare const TextAreaField: React.FC<TextAreaFieldProps>;
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@ interface InputFieldProps {
|
|
|
21
21
|
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void; // Adicionando onBlur como opcional
|
|
22
22
|
corFundo?: string;
|
|
23
23
|
corLabel?: string;
|
|
24
|
-
borderRadius?:
|
|
24
|
+
borderRadius?: string;
|
|
25
25
|
colorIcon?: string;
|
|
26
26
|
border?: string;
|
|
27
27
|
}
|