@banhosdev/moldsoft-ui 1.5.0 → 1.6.0
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.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/styles.css +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -50,8 +50,8 @@ declare function Logo({ size, className, ...props }: LogoProps): react_jsx_runti
|
|
|
50
50
|
declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
51
51
|
|
|
52
52
|
declare const buttonVariants: (props?: ({
|
|
53
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" |
|
|
54
|
-
size?: "
|
|
53
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
54
|
+
size?: "icon" | "default" | "sm" | "lg" | null | undefined;
|
|
55
55
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
56
56
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
57
57
|
asChild?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -50,8 +50,8 @@ declare function Logo({ size, className, ...props }: LogoProps): react_jsx_runti
|
|
|
50
50
|
declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
51
51
|
|
|
52
52
|
declare const buttonVariants: (props?: ({
|
|
53
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" |
|
|
54
|
-
size?: "
|
|
53
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
54
|
+
size?: "icon" | "default" | "sm" | "lg" | null | undefined;
|
|
55
55
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
56
56
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
57
57
|
asChild?: boolean;
|
package/dist/styles.css
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
--color-ring: hsl(var(--ring));
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
@layer base {
|
|
48
|
+
@layer ms-base {
|
|
49
49
|
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
50
50
|
box-sizing: border-box;
|
|
51
51
|
margin: 0;
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
display: none !important;
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
|
-
@layer utilities {
|
|
196
|
+
@layer ms-utilities {
|
|
197
197
|
.pointer-events-auto {
|
|
198
198
|
pointer-events: auto;
|
|
199
199
|
}
|