auxalia-ui-kit 1.4.6 → 1.4.8
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.cjs +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -118,7 +118,7 @@ var compoundVariants = [
|
|
|
118
118
|
{
|
|
119
119
|
variant: "default",
|
|
120
120
|
color: "primary",
|
|
121
|
-
class: "bg-primary text-primary-foreground hover:bg-primary-hover shadow-sm hover:shadow-md"
|
|
121
|
+
class: "bg-primary text-primary-foreground hover:bg-primary-hover dark:bg-primary dark:text-primary-foreground dark:hover:bg-primary-hover shadow-sm hover:shadow-md"
|
|
122
122
|
},
|
|
123
123
|
{
|
|
124
124
|
variant: "default",
|
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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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?: "primary" | "accent" | "default" | "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?: "primary" | "secondary" | "accent" | "destructive" | "default" | "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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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?: "primary" | "accent" | "default" | "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?: "primary" | "secondary" | "accent" | "destructive" | "default" | "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?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
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.js
CHANGED
|
@@ -21,7 +21,7 @@ var compoundVariants = [
|
|
|
21
21
|
{
|
|
22
22
|
variant: "default",
|
|
23
23
|
color: "primary",
|
|
24
|
-
class: "bg-primary text-primary-foreground hover:bg-primary-hover shadow-sm hover:shadow-md"
|
|
24
|
+
class: "bg-primary text-primary-foreground hover:bg-primary-hover dark:bg-primary dark:text-primary-foreground dark:hover:bg-primary-hover shadow-sm hover:shadow-md"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
variant: "default",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxalia-ui-kit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
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": {
|