luaniverse 4.2.4 → 4.2.6
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 +632 -256
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +632 -256
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +469 -52
- package/dist/safelist.txt +397 -54
- package/dist/styles.css +100 -118
- package/dist/tailwind.preset.js +2 -2
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -71,7 +71,7 @@ interface InputProps extends React.ComponentProps<'input'> {
|
|
|
71
71
|
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
72
72
|
|
|
73
73
|
declare const badgeVariants: (props?: ({
|
|
74
|
-
variant?: "default" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
74
|
+
variant?: "default" | "primary" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
75
75
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
76
76
|
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
77
77
|
asChild?: boolean;
|
|
@@ -177,7 +177,7 @@ declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
|
|
|
177
177
|
declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
178
178
|
declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
179
179
|
declare const sheetVariants: (props?: ({
|
|
180
|
-
side?: "left" | "right" | "
|
|
180
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
181
181
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
182
182
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
183
183
|
showClose?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ interface InputProps extends React.ComponentProps<'input'> {
|
|
|
71
71
|
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
72
72
|
|
|
73
73
|
declare const badgeVariants: (props?: ({
|
|
74
|
-
variant?: "default" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
74
|
+
variant?: "default" | "primary" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
75
75
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
76
76
|
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
77
77
|
asChild?: boolean;
|
|
@@ -177,7 +177,7 @@ declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
|
|
|
177
177
|
declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
178
178
|
declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
179
179
|
declare const sheetVariants: (props?: ({
|
|
180
|
-
side?: "left" | "right" | "
|
|
180
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
181
181
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
182
182
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
183
183
|
showClose?: boolean;
|