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.
@@ -17,7 +17,7 @@ interface InputFieldProps {
17
17
  onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
18
18
  corFundo?: string;
19
19
  corLabel?: string;
20
- borderRadius?: number;
20
+ borderRadius?: string;
21
21
  colorIcon?: string;
22
22
  border?: string;
23
23
  }
@@ -18,7 +18,7 @@ interface SelectComponentProps {
18
18
  corFundo?: string;
19
19
  corLabel?: string;
20
20
  empresa?: '1' | '2' | '3' | '4' | '5';
21
- borderRadius?: number;
21
+ borderRadius?: string;
22
22
  border?: string;
23
23
  }
24
24
  declare const SelectField: React.FC<SelectComponentProps>;
@@ -14,7 +14,7 @@ interface TextAreaFieldProps {
14
14
  onBlur?: (e: React.FocusEvent<HTMLTextAreaElement>) => void;
15
15
  corFundo?: string;
16
16
  corLabel?: string;
17
- borderRadius?: number;
17
+ borderRadius?: string;
18
18
  border?: string;
19
19
  }
20
20
  declare const TextAreaField: React.FC<TextAreaFieldProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "componenteshospitais",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -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?: number;
24
+ borderRadius?: string;
25
25
  colorIcon?: string;
26
26
  border?: string;
27
27
  }
@@ -21,7 +21,7 @@ interface SelectComponentProps {
21
21
  corFundo?: string;
22
22
  corLabel?: string;
23
23
  empresa?: '1' | '2' | '3' | '4' | '5';
24
- borderRadius?: number;
24
+ borderRadius?: string;
25
25
  border?: string;
26
26
  }
27
27
 
@@ -16,7 +16,7 @@ interface TextAreaFieldProps {
16
16
  onBlur?: (e: React.FocusEvent<HTMLTextAreaElement>) => void;
17
17
  corFundo?: string;
18
18
  corLabel?: string;
19
- borderRadius?: number;
19
+ borderRadius?: string;
20
20
  border?: string;
21
21
  }
22
22