beth-clarity 1.1.29 → 1.1.30
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.
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
type SystemVariant = 'primary' | 'secondary';
|
|
3
|
-
type ProductVariant = 'elisa-primary' | 'elisa-secondary' | 'dora-primary' | 'dora-secondary' | 'hub-primary' | 'hub-secondary' | 'selena-primary' | 'selena-secondary' | 'duda-primary' | 'duda-secondary';
|
|
4
3
|
export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
5
4
|
/** Variante de cor */
|
|
6
|
-
variant?: SystemVariant
|
|
5
|
+
variant?: SystemVariant;
|
|
7
6
|
/** Tamanho do input */
|
|
8
7
|
size?: 'small' | 'medium' | 'large';
|
|
9
8
|
/** Label do input */
|
|
@@ -20,5 +19,5 @@ export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElem
|
|
|
20
19
|
endIcon?: React.ReactNode;
|
|
21
20
|
}
|
|
22
21
|
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
23
|
-
export {};
|
|
24
|
-
//# sourceMappingURL=Input.d.ts.map
|
|
22
|
+
export { };
|
|
23
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
type SystemVariant = 'primary' | 'secondary';
|
|
3
|
-
type ProductVariant = 'elisa-primary' | 'elisa-secondary' | 'dora-primary' | 'dora-secondary' | 'hub-primary' | 'hub-secondary' | 'selena-primary' | 'selena-secondary' | 'duda-primary' | 'duda-secondary';
|
|
4
3
|
export interface SelectOption {
|
|
5
4
|
value: string | number;
|
|
6
5
|
label: string;
|
|
@@ -8,7 +7,7 @@ export interface SelectOption {
|
|
|
8
7
|
}
|
|
9
8
|
export interface SelectProps {
|
|
10
9
|
/** Variante de cor */
|
|
11
|
-
variant?: SystemVariant
|
|
10
|
+
variant?: SystemVariant;
|
|
12
11
|
/** Tamanho do select */
|
|
13
12
|
size?: 'small' | 'medium' | 'large';
|
|
14
13
|
/** Label do select */
|
|
@@ -47,5 +46,5 @@ export interface SelectProps {
|
|
|
47
46
|
className?: string;
|
|
48
47
|
}
|
|
49
48
|
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLDivElement>>;
|
|
50
|
-
export {};
|
|
51
|
-
//# sourceMappingURL=Select.d.ts.map
|
|
49
|
+
export { };
|
|
50
|
+
//# sourceMappingURL=Select.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
// import './Textarea.css';
|
|
2
3
|
type SystemVariant = 'primary' | 'secondary';
|
|
3
|
-
type ProductVariant = 'elisa-primary' | 'elisa-secondary' | 'dora-primary' | 'dora-secondary' | 'hub-primary' | 'hub-secondary' | 'selena-primary' | 'selena-secondary' | 'duda-primary' | 'duda-secondary';
|
|
4
4
|
export interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'size'> {
|
|
5
5
|
/** Variante de cor */
|
|
6
|
-
variant?: SystemVariant
|
|
6
|
+
variant?: SystemVariant;
|
|
7
7
|
/** Tamanho do textarea */
|
|
8
8
|
size?: 'small' | 'medium' | 'large';
|
|
9
9
|
/** Label do textarea */
|
|
@@ -26,5 +26,5 @@ export interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTex
|
|
|
26
26
|
resizable?: boolean;
|
|
27
27
|
}
|
|
28
28
|
export declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
29
|
-
export {};
|
|
30
|
-
//# sourceMappingURL=Textarea.d.ts.map
|
|
29
|
+
export { };
|
|
30
|
+
//# sourceMappingURL=Textarea.d.ts.map
|