auxalia-ui-kit 1.6.7 → 1.6.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 +11 -11
- package/dist/index.d.ts +11 -11
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7000,7 +7000,7 @@ var ControlledPagination = ({
|
|
|
7000
7000
|
}
|
|
7001
7001
|
return pages;
|
|
7002
7002
|
};
|
|
7003
|
-
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex w-full items-center justify-between", children: [
|
|
7003
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex w-full items-center justify-between text-content", children: [
|
|
7004
7004
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "flex items-center gap-2 text-base", children: [
|
|
7005
7005
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("span", { children: [
|
|
7006
7006
|
rowsPerPageLabel,
|
package/dist/index.d.cts
CHANGED
|
@@ -15,20 +15,20 @@ 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?: "primary" | "destructive" | "success" | "warning" | "info" | "default";
|
|
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>>;
|
|
22
22
|
|
|
23
23
|
declare const checkboxVariants: (props?: {
|
|
24
|
-
color?: "primary" | "
|
|
24
|
+
color?: "primary" | "secondary" | "destructive";
|
|
25
25
|
} & class_variance_authority_types.ClassProp) => string;
|
|
26
26
|
interface CheckboxProps extends Omit<React.ComponentPropsWithoutRef<typeof Checkbox$1.Root>, 'color'>, VariantProps<typeof checkboxVariants> {
|
|
27
27
|
}
|
|
28
28
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;
|
|
29
29
|
|
|
30
30
|
declare const radioItemVariants: (props?: {
|
|
31
|
-
color?: "primary" | "
|
|
31
|
+
color?: "primary" | "secondary" | "destructive";
|
|
32
32
|
} & class_variance_authority_types.ClassProp) => string;
|
|
33
33
|
interface RadioGroupItemProps extends Omit<React.ComponentPropsWithoutRef<typeof RadioGroup$1.Item>, 'color'>, VariantProps<typeof radioItemVariants> {
|
|
34
34
|
}
|
|
@@ -45,7 +45,7 @@ declare const AvatarImage: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarI
|
|
|
45
45
|
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
46
46
|
|
|
47
47
|
declare const badgeVariants: (props?: {
|
|
48
|
-
variant?: "
|
|
48
|
+
variant?: "secondary" | "accent" | "destructive" | "success" | "warning" | "info" | "default" | "outline" | "solid";
|
|
49
49
|
} & class_variance_authority_types.ClassProp) => string;
|
|
50
50
|
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
51
51
|
}
|
|
@@ -53,8 +53,8 @@ declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_
|
|
|
53
53
|
|
|
54
54
|
declare const buttonVariants: (props?: {
|
|
55
55
|
variant?: "default" | "link" | "outline" | "ghost";
|
|
56
|
-
color?: "
|
|
57
|
-
size?: "
|
|
56
|
+
color?: "primary" | "secondary" | "accent" | "surface" | "destructive" | "default";
|
|
57
|
+
size?: "sm" | "lg" | "default" | "icon";
|
|
58
58
|
} & class_variance_authority_types.ClassProp) => string;
|
|
59
59
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
60
60
|
asChild?: boolean;
|
|
@@ -85,7 +85,7 @@ declare function SkeletonAvatar({ className, ...props }: React.HTMLAttributes<HT
|
|
|
85
85
|
declare function SkeletonCard({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
86
86
|
|
|
87
87
|
declare const switchVariants: (props?: {
|
|
88
|
-
color?: "primary" | "
|
|
88
|
+
color?: "primary" | "secondary" | "accent" | "destructive";
|
|
89
89
|
size?: "sm" | "md" | "lg";
|
|
90
90
|
} & class_variance_authority_types.ClassProp) => string;
|
|
91
91
|
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$1.Root>, 'color' | 'size'>, VariantProps<typeof switchVariants> {
|
|
@@ -93,7 +93,7 @@ interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$
|
|
|
93
93
|
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
94
94
|
|
|
95
95
|
declare const dropdownMenuItemVariants: (props?: {
|
|
96
|
-
variant?: "
|
|
96
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
97
97
|
} & class_variance_authority_types.ClassProp) => string;
|
|
98
98
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
99
99
|
|
|
@@ -168,7 +168,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
168
168
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
169
169
|
|
|
170
170
|
declare const cardVariants: (props?: {
|
|
171
|
-
variant?: "
|
|
171
|
+
variant?: "primary" | "accent" | "success" | "default" | "outlined" | "elevated";
|
|
172
172
|
} & class_variance_authority_types.ClassProp) => string;
|
|
173
173
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
174
174
|
|
|
@@ -184,11 +184,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
184
184
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
185
185
|
|
|
186
186
|
declare const selectTriggerVariants: (props?: {
|
|
187
|
-
variant?: "
|
|
187
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "error";
|
|
188
188
|
size?: "sm" | "md" | "lg";
|
|
189
189
|
} & class_variance_authority_types.ClassProp) => string;
|
|
190
190
|
declare const selectItemVariants: (props?: {
|
|
191
|
-
variant?: "
|
|
191
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "error";
|
|
192
192
|
} & class_variance_authority_types.ClassProp) => string;
|
|
193
193
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
194
194
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,20 +15,20 @@ 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?: "primary" | "destructive" | "success" | "warning" | "info" | "default";
|
|
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>>;
|
|
22
22
|
|
|
23
23
|
declare const checkboxVariants: (props?: {
|
|
24
|
-
color?: "primary" | "
|
|
24
|
+
color?: "primary" | "secondary" | "destructive";
|
|
25
25
|
} & class_variance_authority_types.ClassProp) => string;
|
|
26
26
|
interface CheckboxProps extends Omit<React.ComponentPropsWithoutRef<typeof Checkbox$1.Root>, 'color'>, VariantProps<typeof checkboxVariants> {
|
|
27
27
|
}
|
|
28
28
|
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;
|
|
29
29
|
|
|
30
30
|
declare const radioItemVariants: (props?: {
|
|
31
|
-
color?: "primary" | "
|
|
31
|
+
color?: "primary" | "secondary" | "destructive";
|
|
32
32
|
} & class_variance_authority_types.ClassProp) => string;
|
|
33
33
|
interface RadioGroupItemProps extends Omit<React.ComponentPropsWithoutRef<typeof RadioGroup$1.Item>, 'color'>, VariantProps<typeof radioItemVariants> {
|
|
34
34
|
}
|
|
@@ -45,7 +45,7 @@ declare const AvatarImage: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarI
|
|
|
45
45
|
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<Avatar$1.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
46
46
|
|
|
47
47
|
declare const badgeVariants: (props?: {
|
|
48
|
-
variant?: "
|
|
48
|
+
variant?: "secondary" | "accent" | "destructive" | "success" | "warning" | "info" | "default" | "outline" | "solid";
|
|
49
49
|
} & class_variance_authority_types.ClassProp) => string;
|
|
50
50
|
interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
51
51
|
}
|
|
@@ -53,8 +53,8 @@ declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_
|
|
|
53
53
|
|
|
54
54
|
declare const buttonVariants: (props?: {
|
|
55
55
|
variant?: "default" | "link" | "outline" | "ghost";
|
|
56
|
-
color?: "
|
|
57
|
-
size?: "
|
|
56
|
+
color?: "primary" | "secondary" | "accent" | "surface" | "destructive" | "default";
|
|
57
|
+
size?: "sm" | "lg" | "default" | "icon";
|
|
58
58
|
} & class_variance_authority_types.ClassProp) => string;
|
|
59
59
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
60
60
|
asChild?: boolean;
|
|
@@ -85,7 +85,7 @@ declare function SkeletonAvatar({ className, ...props }: React.HTMLAttributes<HT
|
|
|
85
85
|
declare function SkeletonCard({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
86
86
|
|
|
87
87
|
declare const switchVariants: (props?: {
|
|
88
|
-
color?: "primary" | "
|
|
88
|
+
color?: "primary" | "secondary" | "accent" | "destructive";
|
|
89
89
|
size?: "sm" | "md" | "lg";
|
|
90
90
|
} & class_variance_authority_types.ClassProp) => string;
|
|
91
91
|
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$1.Root>, 'color' | 'size'>, VariantProps<typeof switchVariants> {
|
|
@@ -93,7 +93,7 @@ interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof Switch$
|
|
|
93
93
|
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
94
94
|
|
|
95
95
|
declare const dropdownMenuItemVariants: (props?: {
|
|
96
|
-
variant?: "
|
|
96
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default";
|
|
97
97
|
} & class_variance_authority_types.ClassProp) => string;
|
|
98
98
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
99
99
|
|
|
@@ -168,7 +168,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
168
168
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
169
169
|
|
|
170
170
|
declare const cardVariants: (props?: {
|
|
171
|
-
variant?: "
|
|
171
|
+
variant?: "primary" | "accent" | "success" | "default" | "outlined" | "elevated";
|
|
172
172
|
} & class_variance_authority_types.ClassProp) => string;
|
|
173
173
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
174
174
|
|
|
@@ -184,11 +184,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
184
184
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
185
185
|
|
|
186
186
|
declare const selectTriggerVariants: (props?: {
|
|
187
|
-
variant?: "
|
|
187
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "error";
|
|
188
188
|
size?: "sm" | "md" | "lg";
|
|
189
189
|
} & class_variance_authority_types.ClassProp) => string;
|
|
190
190
|
declare const selectItemVariants: (props?: {
|
|
191
|
-
variant?: "
|
|
191
|
+
variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "error";
|
|
192
192
|
} & class_variance_authority_types.ClassProp) => string;
|
|
193
193
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
194
194
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
package/dist/index.js
CHANGED
|
@@ -6902,7 +6902,7 @@ var ControlledPagination = ({
|
|
|
6902
6902
|
}
|
|
6903
6903
|
return pages;
|
|
6904
6904
|
};
|
|
6905
|
-
return /* @__PURE__ */ jsxs12("div", { className: "flex w-full items-center justify-between", children: [
|
|
6905
|
+
return /* @__PURE__ */ jsxs12("div", { className: "flex w-full items-center justify-between text-content", children: [
|
|
6906
6906
|
/* @__PURE__ */ jsxs12("div", { className: "flex items-center gap-2 text-base", children: [
|
|
6907
6907
|
/* @__PURE__ */ jsxs12("span", { children: [
|
|
6908
6908
|
rowsPerPageLabel,
|