auxalia-ui-kit 1.4.8 → 1.4.9
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
CHANGED
|
@@ -139,7 +139,7 @@ var compoundVariants = [
|
|
|
139
139
|
{
|
|
140
140
|
variant: "outline",
|
|
141
141
|
color: "primary",
|
|
142
|
-
class: "border-2 border-primary text-primary hover:bg-primary hover:text-primary-foreground dark:border-primary dark:text-primary"
|
|
142
|
+
class: "border-2 border-primary text-primary hover:bg-primary hover:text-primary-foreground dark:border-primary dark:text-primary dark:hover:bg-primary dark:hover:text-primary-foreground"
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
variant: "outline",
|
|
@@ -7024,11 +7024,11 @@ var preset = {
|
|
|
7024
7024
|
},
|
|
7025
7025
|
colors: {
|
|
7026
7026
|
primary: "var(--color-primary)",
|
|
7027
|
-
"primary-foreground": "var(--color-primary-foreground)",
|
|
7028
7027
|
"primary-hover": "var(--color-primary-hover)",
|
|
7028
|
+
"primary-foreground": "var(--color-primary-foreground)",
|
|
7029
7029
|
secondary: "var(--color-secondary)",
|
|
7030
|
-
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
7031
7030
|
"secondary-hover": "var(--color-secondary-hover)",
|
|
7031
|
+
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
7032
7032
|
accent: "var(--color-accent)",
|
|
7033
7033
|
"accent-foreground": "var(--color-accent-foreground)",
|
|
7034
7034
|
surface: "var(--color-surface)",
|
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/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
tailwind_preset_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UV6KVN3I.js";
|
|
4
4
|
|
|
5
5
|
// src/components/Button.tsx
|
|
6
6
|
import * as React from "react";
|
|
@@ -42,7 +42,7 @@ var compoundVariants = [
|
|
|
42
42
|
{
|
|
43
43
|
variant: "outline",
|
|
44
44
|
color: "primary",
|
|
45
|
-
class: "border-2 border-primary text-primary hover:bg-primary hover:text-primary-foreground dark:border-primary dark:text-primary"
|
|
45
|
+
class: "border-2 border-primary text-primary hover:bg-primary hover:text-primary-foreground dark:border-primary dark:text-primary dark:hover:bg-primary dark:hover:text-primary-foreground"
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
variant: "outline",
|
package/dist/tailwind.preset.cjs
CHANGED
|
@@ -81,11 +81,11 @@ var preset = {
|
|
|
81
81
|
},
|
|
82
82
|
colors: {
|
|
83
83
|
primary: "var(--color-primary)",
|
|
84
|
-
"primary-foreground": "var(--color-primary-foreground)",
|
|
85
84
|
"primary-hover": "var(--color-primary-hover)",
|
|
85
|
+
"primary-foreground": "var(--color-primary-foreground)",
|
|
86
86
|
secondary: "var(--color-secondary)",
|
|
87
|
-
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
88
87
|
"secondary-hover": "var(--color-secondary-hover)",
|
|
88
|
+
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
89
89
|
accent: "var(--color-accent)",
|
|
90
90
|
"accent-foreground": "var(--color-accent-foreground)",
|
|
91
91
|
surface: "var(--color-surface)",
|
package/dist/tailwind.preset.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxalia-ui-kit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
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": {
|
|
@@ -58,11 +58,11 @@ var preset = {
|
|
|
58
58
|
},
|
|
59
59
|
colors: {
|
|
60
60
|
primary: "var(--color-primary)",
|
|
61
|
-
"primary-foreground": "var(--color-primary-foreground)",
|
|
62
61
|
"primary-hover": "var(--color-primary-hover)",
|
|
62
|
+
"primary-foreground": "var(--color-primary-foreground)",
|
|
63
63
|
secondary: "var(--color-secondary)",
|
|
64
|
-
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
65
64
|
"secondary-hover": "var(--color-secondary-hover)",
|
|
65
|
+
"secondary-foreground": "var(--color-secondary-foreground)",
|
|
66
66
|
accent: "var(--color-accent)",
|
|
67
67
|
"accent-foreground": "var(--color-accent-foreground)",
|
|
68
68
|
surface: "var(--color-surface)",
|