auxalia-ui-kit 1.5.2 → 1.5.3
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 +2 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6487,7 +6487,8 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
|
|
|
6487
6487
|
Viewport,
|
|
6488
6488
|
{
|
|
6489
6489
|
className: cn(
|
|
6490
|
-
|
|
6490
|
+
"p-1",
|
|
6491
|
+
position === "popper" && "max-h-(--radix-select-content-available-height) w-full min-w-(--radix-select-trigger-width)"
|
|
6491
6492
|
),
|
|
6492
6493
|
children
|
|
6493
6494
|
}
|
package/dist/index.d.cts
CHANGED
|
@@ -15,7 +15,7 @@ import { ClassValue } from 'clsx';
|
|
|
15
15
|
import 'tailwindcss';
|
|
16
16
|
|
|
17
17
|
declare const Alert: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: {
|
|
18
|
-
variant?: "
|
|
18
|
+
variant?: "default" | "primary" | "destructive" | "success" | "warning" | "info";
|
|
19
19
|
} & class_variance_authority_types.ClassProp) => string> & React.RefAttributes<HTMLDivElement>>;
|
|
20
20
|
declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
21
21
|
declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -30,7 +30,7 @@ declare const AvatarImage: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarI
|
|
|
30
30
|
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
31
31
|
|
|
32
32
|
declare const badgeVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "destructive" | "success" | "secondary" | "accent" | "outline" | "solid";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
36
36
|
}
|
|
@@ -38,7 +38,7 @@ declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_
|
|
|
38
38
|
|
|
39
39
|
declare const buttonVariants: (props?: {
|
|
40
40
|
variant?: "default" | "link" | "outline" | "ghost";
|
|
41
|
-
color?: "
|
|
41
|
+
color?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
42
42
|
size?: "default" | "sm" | "lg" | "icon";
|
|
43
43
|
} & class_variance_authority_types.ClassProp) => string;
|
|
44
44
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -70,7 +70,7 @@ declare function SkeletonAvatar({ className, ...props }: React.HTMLAttributes<HT
|
|
|
70
70
|
declare function SkeletonCard({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
71
71
|
|
|
72
72
|
declare const switchVariants: (props?: {
|
|
73
|
-
color?: "primary" | "
|
|
73
|
+
color?: "primary" | "destructive" | "secondary" | "accent";
|
|
74
74
|
size?: "sm" | "md" | "lg";
|
|
75
75
|
} & class_variance_authority_types.ClassProp) => string;
|
|
76
76
|
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$1.Root>, 'color' | 'size'>, VariantProps<typeof switchVariants> {
|
|
@@ -78,7 +78,7 @@ interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$
|
|
|
78
78
|
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
79
79
|
|
|
80
80
|
declare const dropdownMenuItemVariants: (props?: {
|
|
81
|
-
variant?: "
|
|
81
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
82
82
|
} & class_variance_authority_types.ClassProp) => string;
|
|
83
83
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
84
84
|
|
|
@@ -153,7 +153,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
153
153
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
154
154
|
|
|
155
155
|
declare const cardVariants: (props?: {
|
|
156
|
-
variant?: "
|
|
156
|
+
variant?: "default" | "primary" | "success" | "accent" | "outlined" | "elevated";
|
|
157
157
|
} & class_variance_authority_types.ClassProp) => string;
|
|
158
158
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
159
159
|
|
|
@@ -169,11 +169,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
169
169
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
170
170
|
|
|
171
171
|
declare const selectTriggerVariants: (props?: {
|
|
172
|
-
variant?: "
|
|
172
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent" | "error";
|
|
173
173
|
size?: "sm" | "md" | "lg";
|
|
174
174
|
} & class_variance_authority_types.ClassProp) => string;
|
|
175
175
|
declare const selectItemVariants: (props?: {
|
|
176
|
-
variant?: "
|
|
176
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
177
177
|
} & class_variance_authority_types.ClassProp) => string;
|
|
178
178
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
179
179
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import { ClassValue } from 'clsx';
|
|
|
15
15
|
import 'tailwindcss';
|
|
16
16
|
|
|
17
17
|
declare const Alert: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: {
|
|
18
|
-
variant?: "
|
|
18
|
+
variant?: "default" | "primary" | "destructive" | "success" | "warning" | "info";
|
|
19
19
|
} & class_variance_authority_types.ClassProp) => string> & React.RefAttributes<HTMLDivElement>>;
|
|
20
20
|
declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
21
21
|
declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -30,7 +30,7 @@ declare const AvatarImage: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarI
|
|
|
30
30
|
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
31
31
|
|
|
32
32
|
declare const badgeVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "destructive" | "success" | "secondary" | "accent" | "outline" | "solid";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
36
36
|
}
|
|
@@ -38,7 +38,7 @@ declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_
|
|
|
38
38
|
|
|
39
39
|
declare const buttonVariants: (props?: {
|
|
40
40
|
variant?: "default" | "link" | "outline" | "ghost";
|
|
41
|
-
color?: "
|
|
41
|
+
color?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
42
42
|
size?: "default" | "sm" | "lg" | "icon";
|
|
43
43
|
} & class_variance_authority_types.ClassProp) => string;
|
|
44
44
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -70,7 +70,7 @@ declare function SkeletonAvatar({ className, ...props }: React.HTMLAttributes<HT
|
|
|
70
70
|
declare function SkeletonCard({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
71
71
|
|
|
72
72
|
declare const switchVariants: (props?: {
|
|
73
|
-
color?: "primary" | "
|
|
73
|
+
color?: "primary" | "destructive" | "secondary" | "accent";
|
|
74
74
|
size?: "sm" | "md" | "lg";
|
|
75
75
|
} & class_variance_authority_types.ClassProp) => string;
|
|
76
76
|
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$1.Root>, 'color' | 'size'>, VariantProps<typeof switchVariants> {
|
|
@@ -78,7 +78,7 @@ interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$
|
|
|
78
78
|
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
79
79
|
|
|
80
80
|
declare const dropdownMenuItemVariants: (props?: {
|
|
81
|
-
variant?: "
|
|
81
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
82
82
|
} & class_variance_authority_types.ClassProp) => string;
|
|
83
83
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
84
84
|
|
|
@@ -153,7 +153,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
153
153
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
154
154
|
|
|
155
155
|
declare const cardVariants: (props?: {
|
|
156
|
-
variant?: "
|
|
156
|
+
variant?: "default" | "primary" | "success" | "accent" | "outlined" | "elevated";
|
|
157
157
|
} & class_variance_authority_types.ClassProp) => string;
|
|
158
158
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
159
159
|
|
|
@@ -169,11 +169,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
169
169
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
170
170
|
|
|
171
171
|
declare const selectTriggerVariants: (props?: {
|
|
172
|
-
variant?: "
|
|
172
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent" | "error";
|
|
173
173
|
size?: "sm" | "md" | "lg";
|
|
174
174
|
} & class_variance_authority_types.ClassProp) => string;
|
|
175
175
|
declare const selectItemVariants: (props?: {
|
|
176
|
-
variant?: "
|
|
176
|
+
variant?: "default" | "primary" | "destructive" | "secondary" | "accent";
|
|
177
177
|
} & class_variance_authority_types.ClassProp) => string;
|
|
178
178
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
179
179
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/dist/index.js
CHANGED
|
@@ -6371,7 +6371,8 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
|
|
|
6371
6371
|
Viewport,
|
|
6372
6372
|
{
|
|
6373
6373
|
className: cn(
|
|
6374
|
-
|
|
6374
|
+
"p-1",
|
|
6375
|
+
position === "popper" && "max-h-(--radix-select-content-available-height) w-full min-w-(--radix-select-trigger-width)"
|
|
6375
6376
|
),
|
|
6376
6377
|
children
|
|
6377
6378
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxalia-ui-kit",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
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": {
|