lsp-uikit 1.4.15 → 1.4.16
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.
|
@@ -4,7 +4,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
|
|
6
6
|
declare const alertVariants: (props?: ({
|
|
7
|
-
variant?: "default" | "
|
|
7
|
+
variant?: "default" | "success" | "destructive" | "warning" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
declare function Alert({ className, variant, hideDefaultIcon, children, ...props }: React.ComponentProps<'div'> & VariantProps<typeof alertVariants> & {
|
|
10
10
|
hideDefaultIcon?: boolean;
|
|
@@ -4,7 +4,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
|
|
6
6
|
declare const badgeVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
7
|
+
variant?: "primary" | "primary_ghost" | "primary_outline" | "success" | "success_ghost" | "success_outline" | "purple" | "purple_ghost" | "purple_outline" | "secondary" | "destructive" | "destructive_ghost" | "destructive_outline" | "outline" | null | undefined;
|
|
8
8
|
rounded?: "sm" | "md" | "full" | null | undefined;
|
|
9
9
|
textOverflow?: "default" | "hidden" | null | undefined;
|
|
10
10
|
hover?: boolean | null | undefined;
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const buttonVariants: (props?: ({
|
|
7
|
-
variant?: "default" | "
|
|
7
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "default_invert" | "destructive_invert" | "ghost" | "link" | "clear" | null | undefined;
|
|
8
8
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10
10
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
package/dist/variables.css
CHANGED
|
@@ -265,18 +265,18 @@
|
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
::-webkit-scrollbar {
|
|
268
|
+
:not(.no-scroll-style)::-webkit-scrollbar {
|
|
269
269
|
@apply h-[5px] w-[6px] cursor-pointer bg-transparent;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
::-webkit-scrollbar-track {
|
|
272
|
+
:not(.no-scroll-style)::-webkit-scrollbar-track {
|
|
273
273
|
@apply bg-transparent;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
-
:hover::-webkit-scrollbar-thumb {
|
|
276
|
+
:not(.no-scroll-style):hover::-webkit-scrollbar-thumb {
|
|
277
277
|
@apply bg-scrollbar rounded-[4px];
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
::-webkit-scrollbar-thumb {
|
|
280
|
+
:not(.no-scroll-style)::-webkit-scrollbar-thumb {
|
|
281
281
|
@apply bg-scrollbar rounded-[4px];
|
|
282
282
|
}
|