@koaris/bloom-ui 1.0.4 → 1.1.0
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/index.d.mts +17 -4
- package/dist/index.d.ts +17 -4
- package/dist/index.js +295 -273
- package/dist/index.mjs +292 -270
- package/dist/tailwind.css +169 -129
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import { DetailedHTMLProps, HTMLAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode, FormHTMLAttributes } from 'react';
|
|
3
|
+
import { DetailedHTMLProps, HTMLAttributes, ButtonHTMLAttributes, AnchorHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode, FormHTMLAttributes } from 'react';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Primary UI component for user interaction
|
|
@@ -28,6 +28,17 @@ interface ButtonProps extends DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonE
|
|
|
28
28
|
}
|
|
29
29
|
declare const Button: ({ className, variant, size, disabled, onClick, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
30
30
|
|
|
31
|
+
/**
|
|
32
|
+
* Primary UI component for user interaction
|
|
33
|
+
*/
|
|
34
|
+
interface LinkProps extends DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> {
|
|
35
|
+
url: string;
|
|
36
|
+
newPage: boolean;
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
children: string | JSX.Element;
|
|
39
|
+
}
|
|
40
|
+
declare const Link: ({ className, disabled, url, newPage, onClick, ...rest }: LinkProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
31
42
|
declare const options: {
|
|
32
43
|
id: number;
|
|
33
44
|
value: string;
|
|
@@ -58,7 +69,7 @@ interface InputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElem
|
|
|
58
69
|
required?: boolean;
|
|
59
70
|
type: 'text' | 'password' | 'date' | 'cpf' | 'phone' | 'cnpj' | 'cep';
|
|
60
71
|
}
|
|
61
|
-
declare const Input:
|
|
72
|
+
declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
62
73
|
|
|
63
74
|
interface TextInputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
|
|
64
75
|
disabled?: boolean;
|
|
@@ -75,14 +86,16 @@ declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "r
|
|
|
75
86
|
|
|
76
87
|
interface TextAreaProps extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> {
|
|
77
88
|
disabled?: boolean;
|
|
89
|
+
reference?: React.RefObject<HTMLTextAreaElement>;
|
|
78
90
|
placeholder?: string;
|
|
79
91
|
value?: string;
|
|
80
92
|
validated?: boolean;
|
|
81
93
|
error: boolean;
|
|
82
94
|
required?: boolean;
|
|
95
|
+
resize?: boolean;
|
|
83
96
|
type: 'text' | 'password' | 'date' | 'cpf' | 'phone' | 'cnpj' | 'cep';
|
|
84
97
|
}
|
|
85
|
-
declare const TextArea: ({ className, disabled, value, error, required, placeholder, onClick, ...rest }: TextAreaProps) => react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare const TextArea: ({ className, disabled, reference, value, error, required, placeholder, resize, onClick, ...rest }: TextAreaProps) => react_jsx_runtime.JSX.Element;
|
|
86
99
|
|
|
87
100
|
interface TextProps extends DetailedHTMLProps<HTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {
|
|
88
101
|
children: ReactNode;
|
|
@@ -129,4 +142,4 @@ interface MultiStepProps extends DetailedHTMLProps<HTMLAttributes<HTMLDivElement
|
|
|
129
142
|
}
|
|
130
143
|
declare const MultiStep: ({ className, size, currentStep }: MultiStepProps) => react_jsx_runtime.JSX.Element;
|
|
131
144
|
|
|
132
|
-
export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Form, type FormProps, Heading, type HeadingProps, Input, type InputProps, MultiStep, type MultiStepProps, RadioGroup, type RadioGroupProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
|
|
145
|
+
export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Form, type FormProps, Heading, type HeadingProps, Input, type InputProps, Link, type LinkProps, MultiStep, type MultiStepProps, RadioGroup, type RadioGroupProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import { DetailedHTMLProps, HTMLAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode, FormHTMLAttributes } from 'react';
|
|
3
|
+
import { DetailedHTMLProps, HTMLAttributes, ButtonHTMLAttributes, AnchorHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode, FormHTMLAttributes } from 'react';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Primary UI component for user interaction
|
|
@@ -28,6 +28,17 @@ interface ButtonProps extends DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonE
|
|
|
28
28
|
}
|
|
29
29
|
declare const Button: ({ className, variant, size, disabled, onClick, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
30
30
|
|
|
31
|
+
/**
|
|
32
|
+
* Primary UI component for user interaction
|
|
33
|
+
*/
|
|
34
|
+
interface LinkProps extends DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> {
|
|
35
|
+
url: string;
|
|
36
|
+
newPage: boolean;
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
children: string | JSX.Element;
|
|
39
|
+
}
|
|
40
|
+
declare const Link: ({ className, disabled, url, newPage, onClick, ...rest }: LinkProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
31
42
|
declare const options: {
|
|
32
43
|
id: number;
|
|
33
44
|
value: string;
|
|
@@ -58,7 +69,7 @@ interface InputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElem
|
|
|
58
69
|
required?: boolean;
|
|
59
70
|
type: 'text' | 'password' | 'date' | 'cpf' | 'phone' | 'cnpj' | 'cep';
|
|
60
71
|
}
|
|
61
|
-
declare const Input:
|
|
72
|
+
declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
62
73
|
|
|
63
74
|
interface TextInputProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
|
|
64
75
|
disabled?: boolean;
|
|
@@ -75,14 +86,16 @@ declare const TextInput: react.ForwardRefExoticComponent<Omit<TextInputProps, "r
|
|
|
75
86
|
|
|
76
87
|
interface TextAreaProps extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> {
|
|
77
88
|
disabled?: boolean;
|
|
89
|
+
reference?: React.RefObject<HTMLTextAreaElement>;
|
|
78
90
|
placeholder?: string;
|
|
79
91
|
value?: string;
|
|
80
92
|
validated?: boolean;
|
|
81
93
|
error: boolean;
|
|
82
94
|
required?: boolean;
|
|
95
|
+
resize?: boolean;
|
|
83
96
|
type: 'text' | 'password' | 'date' | 'cpf' | 'phone' | 'cnpj' | 'cep';
|
|
84
97
|
}
|
|
85
|
-
declare const TextArea: ({ className, disabled, value, error, required, placeholder, onClick, ...rest }: TextAreaProps) => react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare const TextArea: ({ className, disabled, reference, value, error, required, placeholder, resize, onClick, ...rest }: TextAreaProps) => react_jsx_runtime.JSX.Element;
|
|
86
99
|
|
|
87
100
|
interface TextProps extends DetailedHTMLProps<HTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {
|
|
88
101
|
children: ReactNode;
|
|
@@ -129,4 +142,4 @@ interface MultiStepProps extends DetailedHTMLProps<HTMLAttributes<HTMLDivElement
|
|
|
129
142
|
}
|
|
130
143
|
declare const MultiStep: ({ className, size, currentStep }: MultiStepProps) => react_jsx_runtime.JSX.Element;
|
|
131
144
|
|
|
132
|
-
export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Form, type FormProps, Heading, type HeadingProps, Input, type InputProps, MultiStep, type MultiStepProps, RadioGroup, type RadioGroupProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
|
|
145
|
+
export { Avatar, type AvatarProps, Box, type BoxProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Form, type FormProps, Heading, type HeadingProps, Input, type InputProps, Link, type LinkProps, MultiStep, type MultiStepProps, RadioGroup, type RadioGroupProps, Text, TextArea, type TextAreaProps, TextInput, type TextInputProps, type TextProps };
|