auxalia-ui-kit 1.3.9 → 1.4.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.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -16,7 +16,7 @@ import 'tailwindcss';
|
|
|
16
16
|
|
|
17
17
|
declare const buttonVariants: (props?: {
|
|
18
18
|
variant?: "default" | "outline" | "ghost" | "link";
|
|
19
|
-
color?: "
|
|
19
|
+
color?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
20
20
|
size?: "default" | "sm" | "lg" | "icon";
|
|
21
21
|
} & class_variance_authority_types.ClassProp) => string;
|
|
22
22
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -30,7 +30,7 @@ declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Co
|
|
|
30
30
|
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof Collapsible.Content>): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const dropdownMenuItemVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
36
36
|
|
|
@@ -105,7 +105,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
105
105
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
106
106
|
|
|
107
107
|
declare const cardVariants: (props?: {
|
|
108
|
-
variant?: "
|
|
108
|
+
variant?: "default" | "primary" | "accent" | "outlined" | "elevated" | "success";
|
|
109
109
|
} & class_variance_authority_types.ClassProp) => string;
|
|
110
110
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
111
111
|
|
|
@@ -121,11 +121,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
121
121
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
declare const selectTriggerVariants: (props?: {
|
|
124
|
-
variant?: "
|
|
124
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive" | "error";
|
|
125
125
|
size?: "sm" | "lg" | "md";
|
|
126
126
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
127
|
declare const selectItemVariants: (props?: {
|
|
128
|
-
variant?: "
|
|
128
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
129
129
|
} & class_variance_authority_types.ClassProp) => string;
|
|
130
130
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
131
131
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import 'tailwindcss';
|
|
|
16
16
|
|
|
17
17
|
declare const buttonVariants: (props?: {
|
|
18
18
|
variant?: "default" | "outline" | "ghost" | "link";
|
|
19
|
-
color?: "
|
|
19
|
+
color?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
20
20
|
size?: "default" | "sm" | "lg" | "icon";
|
|
21
21
|
} & class_variance_authority_types.ClassProp) => string;
|
|
22
22
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -30,7 +30,7 @@ declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Co
|
|
|
30
30
|
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof Collapsible.Content>): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const dropdownMenuItemVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
36
36
|
|
|
@@ -105,7 +105,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
105
105
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
106
106
|
|
|
107
107
|
declare const cardVariants: (props?: {
|
|
108
|
-
variant?: "
|
|
108
|
+
variant?: "default" | "primary" | "accent" | "outlined" | "elevated" | "success";
|
|
109
109
|
} & class_variance_authority_types.ClassProp) => string;
|
|
110
110
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
111
111
|
|
|
@@ -121,11 +121,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
121
121
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
declare const selectTriggerVariants: (props?: {
|
|
124
|
-
variant?: "
|
|
124
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive" | "error";
|
|
125
125
|
size?: "sm" | "lg" | "md";
|
|
126
126
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
127
|
declare const selectItemVariants: (props?: {
|
|
128
|
-
variant?: "
|
|
128
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
129
129
|
} & class_variance_authority_types.ClassProp) => string;
|
|
130
130
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
131
131
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxalia-ui-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "A React component library built with Radix UI and Tailwind CSS, designed to provide accessible and customizable UI components for modern web applications.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": {
|