@kayord/ui 0.13.8 → 0.13.10
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/components/ui/accordion/accordion-trigger.svelte.d.ts +4 -3
- package/dist/components/ui/alert/alert-title.svelte.d.ts +4 -4
- package/dist/components/ui/alert/alert.svelte.d.ts +4 -4
- package/dist/components/ui/alert-dialog/alert-dialog-content.svelte.d.ts +4 -3
- package/dist/components/ui/card/card-title.svelte.d.ts +4 -4
- package/dist/components/ui/command/command-dialog.svelte.d.ts +4 -3
- package/dist/components/ui/command/command-group.svelte.d.ts +4 -12
- package/dist/components/ui/context-menu/context-menu-checkbox-item.svelte.d.ts +4 -3
- package/dist/components/ui/context-menu/context-menu-content.svelte.d.ts +3 -2
- package/dist/components/ui/context-menu/context-menu-group-heading.svelte.d.ts +4 -9
- package/dist/components/ui/context-menu/context-menu-item.svelte.d.ts +4 -16
- package/dist/components/ui/context-menu/context-menu-sub-trigger.svelte.d.ts +4 -3
- package/dist/components/ui/dialog/dialog-content.svelte.d.ts +4 -3
- package/dist/components/ui/drawer/drawer-content.svelte.d.ts +7 -0
- package/dist/components/ui/dropdown-menu/dropdown-menu-checkbox-item.svelte.d.ts +4 -3
- package/dist/components/ui/dropdown-menu/dropdown-menu-content.svelte.d.ts +3 -68
- package/dist/components/ui/dropdown-menu/dropdown-menu-group-heading.svelte.d.ts +4 -9
- package/dist/components/ui/dropdown-menu/dropdown-menu-item.svelte.d.ts +4 -16
- package/dist/components/ui/dropdown-menu/dropdown-menu-label.svelte.d.ts +4 -4
- package/dist/components/ui/dropdown-menu/dropdown-menu-sub-trigger.svelte.d.ts +4 -16
- package/dist/components/ui/form/form-field-errors.svelte.d.ts +4 -2
- package/dist/components/ui/hover-card/hover-card-content.svelte.d.ts +3 -11
- package/dist/components/ui/menubar/menubar-checkbox-item.svelte.d.ts +4 -3
- package/dist/components/ui/menubar/menubar-content.svelte.d.ts +3 -68
- package/dist/components/ui/menubar/menubar-group-heading.svelte.d.ts +4 -9
- package/dist/components/ui/menubar/menubar-item.svelte.d.ts +4 -16
- package/dist/components/ui/menubar/menubar-sub-trigger.svelte.d.ts +4 -3
- package/dist/components/ui/pagination/pagination-link.svelte.d.ts +5 -16
- package/dist/components/ui/popover/popover-content.svelte.d.ts +3 -9
- package/dist/components/ui/resizable/resizable-handle.svelte.d.ts +4 -2
- package/dist/components/ui/resizable/resizable-pane-group.svelte.d.ts +3 -15
- package/dist/components/ui/scroll-area/scroll-area.svelte.d.ts +4 -3
- package/dist/components/ui/select/select-content.svelte.d.ts +4 -3
- package/dist/components/ui/sheet/sheet-content.svelte.d.ts +4 -3
- package/dist/components/ui/sidebar/sidebar-group-action.svelte.d.ts +4 -4
- package/dist/components/ui/sidebar/sidebar-group-label.svelte.d.ts +4 -4
- package/dist/components/ui/sidebar/sidebar-menu-action.svelte.d.ts +4 -4
- package/dist/components/ui/sidebar/sidebar-menu-button.svelte.d.ts +4 -5
- package/dist/components/ui/sidebar/sidebar-menu-skeleton.svelte.d.ts +4 -4
- package/dist/components/ui/sidebar/sidebar-menu-sub-button.svelte.d.ts +4 -4
- package/dist/components/ui/sidebar/sidebar-provider.svelte +2 -8
- package/dist/components/ui/sidebar/sidebar-provider.svelte.d.ts +4 -5
- package/dist/components/ui/sidebar/sidebar-trigger.svelte.d.ts +5 -7
- package/dist/components/ui/sidebar/sidebar.svelte +1 -1
- package/dist/components/ui/sidebar/sidebar.svelte.d.ts +4 -4
- package/dist/components/ui/slider/slider.svelte +6 -2
- package/dist/components/ui/slider/slider.svelte.d.ts +2 -2
- package/dist/components/ui/toggle/toggle.svelte.d.ts +4 -14
- package/dist/components/ui/toggle-group/toggle-group-item.svelte.d.ts +3 -11
- package/dist/components/ui/toggle-group/toggle-group.svelte.d.ts +2 -1
- package/package.json +12 -12
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { Accordion as AccordionPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { Accordion as AccordionPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<AccordionPrimitive.TriggerProps> & {
|
|
3
3
|
level?: AccordionPrimitive.HeaderProps["level"];
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const AccordionTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type AccordionTrigger = ReturnType<typeof AccordionTrigger>;
|
|
6
7
|
export default AccordionTrigger;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} & {
|
|
2
|
+
import type { WithElementRef } from "bits-ui";
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
4
|
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
6
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const AlertTitle: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
7
|
type AlertTitle = ReturnType<typeof AlertTitle>;
|
|
8
8
|
export default AlertTitle;
|
|
@@ -37,10 +37,10 @@ export declare const alertVariants: import("tailwind-variants").TVReturnType<{
|
|
|
37
37
|
}>, unknown, unknown, undefined>>;
|
|
38
38
|
export type AlertVariant = VariantProps<typeof alertVariants>["variant"];
|
|
39
39
|
import type { HTMLAttributes } from "svelte/elements";
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
} & {
|
|
40
|
+
import type { WithElementRef } from "bits-ui";
|
|
41
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
43
42
|
variant?: AlertVariant;
|
|
44
|
-
}
|
|
43
|
+
};
|
|
44
|
+
declare const Alert: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
45
45
|
type Alert = ReturnType<typeof Alert>;
|
|
46
46
|
export default Alert;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { AlertDialog as AlertDialogPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<AlertDialogPrimitive.ContentProps> & {
|
|
3
3
|
portalProps?: AlertDialogPrimitive.PortalProps;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const AlertDialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type AlertDialogContent = ReturnType<typeof AlertDialogContent>;
|
|
6
7
|
export default AlertDialogContent;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
ref?: HTMLElement | null | undefined;
|
|
4
|
-
} & {
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
4
|
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
6
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const CardTitle: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
7
|
type CardTitle = ReturnType<typeof CardTitle>;
|
|
8
8
|
export default CardTitle;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import type { Command as CommandPrimitive, Dialog as DialogPrimitive } from "bits-ui";
|
|
1
|
+
import type { Command as CommandPrimitive, Dialog as DialogPrimitive, WithoutChildrenOrChild } from "bits-ui";
|
|
2
2
|
import type { Snippet } from "svelte";
|
|
3
|
-
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.RootProps> & WithoutChildrenOrChild<CommandPrimitive.RootProps> & {
|
|
4
4
|
portalProps?: DialogPrimitive.PortalProps;
|
|
5
5
|
children: Snippet;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const CommandDialog: import("svelte").Component<$$ComponentProps, {}, "ref" | "value" | "open">;
|
|
7
8
|
type CommandDialog = ReturnType<typeof CommandDialog>;
|
|
8
9
|
export default CommandDialog;
|
|
@@ -1,15 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
forceMount?: boolean;
|
|
4
|
-
}, "child" | "children"> & {
|
|
5
|
-
child?: import("svelte").Snippet<[{
|
|
6
|
-
props: Record<string, unknown>;
|
|
7
|
-
}]> | undefined;
|
|
8
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
9
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
10
|
-
ref?: HTMLElement | null | undefined;
|
|
11
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").CommandGroupPropsWithoutHTML> & {
|
|
1
|
+
import { Command as CommandPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = CommandPrimitive.GroupProps & {
|
|
12
3
|
heading?: string;
|
|
13
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const CommandGroup: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
14
6
|
type CommandGroup = ReturnType<typeof CommandGroup>;
|
|
15
7
|
export default CommandGroup;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
1
|
+
import { ContextMenu as ContextMenuPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
2
2
|
import type { Snippet } from "svelte";
|
|
3
|
-
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<ContextMenuPrimitive.CheckboxItemProps> & {
|
|
4
4
|
children?: Snippet;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const ContextMenuCheckboxItem: import("svelte").Component<$$ComponentProps, {}, "ref" | "checked" | "indeterminate">;
|
|
6
7
|
type ContextMenuCheckboxItem = ReturnType<typeof ContextMenuCheckboxItem>;
|
|
7
8
|
export default ContextMenuCheckboxItem;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
2
|
-
|
|
2
|
+
type $$ComponentProps = ContextMenuPrimitive.ContentProps & {
|
|
3
3
|
portalProps?: ContextMenuPrimitive.PortalProps;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const ContextMenuContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type ContextMenuContent = ReturnType<typeof ContextMenuContent>;
|
|
6
7
|
export default ContextMenuContent;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
props: Record<string, unknown>;
|
|
4
|
-
}]> | undefined;
|
|
5
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
6
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
7
|
-
ref?: HTMLElement | null | undefined;
|
|
8
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuGroupHeadingPropsWithoutHTML> & {
|
|
1
|
+
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = ContextMenuPrimitive.GroupHeadingProps & {
|
|
9
3
|
inset?: boolean;
|
|
10
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const ContextMenuGroupHeading: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
11
6
|
type ContextMenuGroupHeading = ReturnType<typeof ContextMenuGroupHeading>;
|
|
12
7
|
export default ContextMenuGroupHeading;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
textValue?: string;
|
|
4
|
-
onSelect?: (event: Event) => void;
|
|
5
|
-
closeOnSelect?: boolean;
|
|
6
|
-
}, "child" | "children"> & {
|
|
7
|
-
child?: import("svelte").Snippet<[{
|
|
8
|
-
props: Record<string, unknown>;
|
|
9
|
-
}]> | undefined;
|
|
10
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
11
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
12
|
-
ref?: HTMLElement | null | undefined;
|
|
13
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuItemPropsWithoutHTML<{
|
|
14
|
-
_default: never;
|
|
15
|
-
}>> & {
|
|
1
|
+
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = ContextMenuPrimitive.ItemProps & {
|
|
16
3
|
inset?: boolean;
|
|
17
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const ContextMenuItem: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
18
6
|
type ContextMenuItem = ReturnType<typeof ContextMenuItem>;
|
|
19
7
|
export default ContextMenuItem;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { ContextMenu as ContextMenuPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<ContextMenuPrimitive.SubTriggerProps> & {
|
|
3
3
|
inset?: boolean;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const ContextMenuSubTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type ContextMenuSubTrigger = ReturnType<typeof ContextMenuSubTrigger>;
|
|
6
7
|
export default ContextMenuSubTrigger;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { Dialog as DialogPrimitive } from "bits-ui";
|
|
1
|
+
import { Dialog as DialogPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
2
2
|
import type { Snippet } from "svelte";
|
|
3
|
-
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.ContentProps> & {
|
|
4
4
|
portalProps?: DialogPrimitive.PortalProps;
|
|
5
5
|
children: Snippet;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const DialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
8
|
type DialogContent = ReturnType<typeof DialogContent>;
|
|
8
9
|
export default DialogContent;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Drawer as DrawerPrimitive } from "vaul-svelte";
|
|
2
|
+
type $$ComponentProps = DrawerPrimitive.ContentProps & {
|
|
3
|
+
portalProps?: DrawerPrimitive.PortalProps;
|
|
4
|
+
};
|
|
5
|
+
declare const DrawerContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
6
|
+
type DrawerContent = ReturnType<typeof DrawerContent>;
|
|
7
|
+
export default DrawerContent;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
1
|
+
import { DropdownMenu as DropdownMenuPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
2
2
|
import type { Snippet } from "svelte";
|
|
3
|
-
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<DropdownMenuPrimitive.CheckboxItemProps> & {
|
|
4
4
|
children?: Snippet;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const DropdownMenuCheckboxItem: import("svelte").Component<$$ComponentProps, {}, "ref" | "checked" | "indeterminate">;
|
|
6
7
|
type DropdownMenuCheckboxItem = ReturnType<typeof DropdownMenuCheckboxItem>;
|
|
7
8
|
export default DropdownMenuCheckboxItem;
|
|
@@ -1,72 +1,7 @@
|
|
|
1
1
|
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
2
|
-
|
|
3
|
-
forceMount?: boolean | undefined;
|
|
4
|
-
dir?: import("bits-ui").Direction | undefined;
|
|
5
|
-
loop?: boolean | undefined;
|
|
6
|
-
onInteractOutside?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideEventHandler | undefined;
|
|
7
|
-
interactOutsideBehavior?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideBehaviorType | undefined;
|
|
8
|
-
onFocusOutside?: ((event: FocusEvent) => void) | undefined;
|
|
9
|
-
onEscapeKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
10
|
-
escapeKeydownBehavior?: import("bits-ui/dist/bits/utilities/escape-layer/types").EscapeBehaviorType | undefined;
|
|
11
|
-
onOpenAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
12
|
-
onCloseAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
13
|
-
trapFocus?: boolean | undefined;
|
|
14
|
-
preventOverflowTextSelection?: boolean | undefined;
|
|
15
|
-
preventScroll?: boolean | undefined;
|
|
16
|
-
align?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Align | undefined;
|
|
17
|
-
side?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side | undefined;
|
|
18
|
-
sideOffset?: number | undefined;
|
|
19
|
-
alignOffset?: number | undefined | undefined;
|
|
20
|
-
arrowPadding?: number | undefined;
|
|
21
|
-
avoidCollisions?: boolean | undefined | undefined;
|
|
22
|
-
collisionBoundary?: import("bits-ui/dist/internal/types").Arrayable<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Boundary> | undefined;
|
|
23
|
-
collisionPadding?: (number | Partial<Record<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side, number>>) | undefined;
|
|
24
|
-
sticky?: "partial" | "always" | undefined;
|
|
25
|
-
hideWhenDetached?: boolean | undefined;
|
|
26
|
-
updatePositionStrategy?: "optimized" | "always" | undefined;
|
|
27
|
-
strategy?: "absolute" | "fixed" | undefined | undefined;
|
|
28
|
-
customAnchor?: (string | HTMLElement | import("bits-ui/dist/internal/floating-svelte/types").Measurable | null) | undefined;
|
|
29
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
30
|
-
props: Record<string, unknown>;
|
|
31
|
-
}]> | undefined;
|
|
32
|
-
children?: import("svelte").Snippet | undefined;
|
|
33
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
34
|
-
ref?: HTMLElement | null | undefined;
|
|
35
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, {
|
|
36
|
-
forceMount?: boolean | undefined;
|
|
37
|
-
dir?: import("bits-ui").Direction | undefined;
|
|
38
|
-
loop?: boolean | undefined;
|
|
39
|
-
onInteractOutside?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideEventHandler | undefined;
|
|
40
|
-
interactOutsideBehavior?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideBehaviorType | undefined;
|
|
41
|
-
onFocusOutside?: ((event: FocusEvent) => void) | undefined;
|
|
42
|
-
onEscapeKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
43
|
-
escapeKeydownBehavior?: import("bits-ui/dist/bits/utilities/escape-layer/types").EscapeBehaviorType | undefined;
|
|
44
|
-
onOpenAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
45
|
-
onCloseAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
46
|
-
trapFocus?: boolean | undefined;
|
|
47
|
-
preventOverflowTextSelection?: boolean | undefined;
|
|
48
|
-
preventScroll?: boolean | undefined;
|
|
49
|
-
align?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Align | undefined;
|
|
50
|
-
side?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side | undefined;
|
|
51
|
-
sideOffset?: number | undefined;
|
|
52
|
-
alignOffset?: number | undefined | undefined;
|
|
53
|
-
arrowPadding?: number | undefined;
|
|
54
|
-
avoidCollisions?: boolean | undefined | undefined;
|
|
55
|
-
collisionBoundary?: import("bits-ui/dist/internal/types").Arrayable<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Boundary> | undefined;
|
|
56
|
-
collisionPadding?: (number | Partial<Record<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side, number>>) | undefined;
|
|
57
|
-
sticky?: "partial" | "always" | undefined;
|
|
58
|
-
hideWhenDetached?: boolean | undefined;
|
|
59
|
-
updatePositionStrategy?: "optimized" | "always" | undefined;
|
|
60
|
-
strategy?: "absolute" | "fixed" | undefined | undefined;
|
|
61
|
-
customAnchor?: (string | HTMLElement | import("bits-ui/dist/internal/floating-svelte/types").Measurable | null) | undefined;
|
|
62
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
63
|
-
props: Record<string, unknown>;
|
|
64
|
-
}]> | undefined;
|
|
65
|
-
children?: import("svelte").Snippet | undefined;
|
|
66
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
67
|
-
ref?: HTMLElement | null | undefined;
|
|
68
|
-
}> & {
|
|
2
|
+
type $$ComponentProps = DropdownMenuPrimitive.ContentProps & {
|
|
69
3
|
portalProps?: DropdownMenuPrimitive.PortalProps;
|
|
70
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const DropdownMenuContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
71
6
|
type DropdownMenuContent = ReturnType<typeof DropdownMenuContent>;
|
|
72
7
|
export default DropdownMenuContent;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
props: Record<string, unknown>;
|
|
4
|
-
}]> | undefined;
|
|
5
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
6
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
7
|
-
ref?: HTMLElement | null | undefined;
|
|
8
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuGroupHeadingPropsWithoutHTML> & {
|
|
1
|
+
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = DropdownMenuPrimitive.GroupHeadingProps & {
|
|
9
3
|
inset?: boolean;
|
|
10
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const DropdownMenuGroupHeading: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
11
6
|
type DropdownMenuGroupHeading = ReturnType<typeof DropdownMenuGroupHeading>;
|
|
12
7
|
export default DropdownMenuGroupHeading;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
textValue?: string;
|
|
4
|
-
onSelect?: (event: Event) => void;
|
|
5
|
-
closeOnSelect?: boolean;
|
|
6
|
-
}, "child" | "children"> & {
|
|
7
|
-
child?: import("svelte").Snippet<[{
|
|
8
|
-
props: Record<string, unknown>;
|
|
9
|
-
}]> | undefined;
|
|
10
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
11
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
12
|
-
ref?: HTMLElement | null | undefined;
|
|
13
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuItemPropsWithoutHTML<{
|
|
14
|
-
_default: never;
|
|
15
|
-
}>> & {
|
|
1
|
+
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = DropdownMenuPrimitive.ItemProps & {
|
|
16
3
|
inset?: boolean;
|
|
17
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const DropdownMenuItem: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
18
6
|
type DropdownMenuItem = ReturnType<typeof DropdownMenuItem>;
|
|
19
7
|
export default DropdownMenuItem;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { type WithElementRef } from "bits-ui";
|
|
1
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
ref?: HTMLElement | null | undefined;
|
|
4
|
-
} & {
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
4
|
inset?: boolean;
|
|
6
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const DropdownMenuLabel: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
7
|
type DropdownMenuLabel = ReturnType<typeof DropdownMenuLabel>;
|
|
8
8
|
export default DropdownMenuLabel;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
textValue?: string;
|
|
4
|
-
onSelect?: (event: Event) => void;
|
|
5
|
-
closeOnSelect?: boolean;
|
|
6
|
-
}, "child" | "children"> & {
|
|
7
|
-
child?: import("svelte").Snippet<[{
|
|
8
|
-
props: Record<string, unknown>;
|
|
9
|
-
}]> | undefined;
|
|
10
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
11
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
12
|
-
ref?: HTMLElement | null | undefined;
|
|
13
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuItemPropsWithoutHTML<{
|
|
14
|
-
_default: never;
|
|
15
|
-
}>> & {
|
|
1
|
+
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = DropdownMenuPrimitive.SubTriggerProps & {
|
|
16
3
|
inset?: boolean;
|
|
17
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const DropdownMenuSubTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
18
6
|
type DropdownMenuSubTrigger = ReturnType<typeof DropdownMenuSubTrigger>;
|
|
19
7
|
export default DropdownMenuSubTrigger;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as FormPrimitive from "formsnap";
|
|
2
|
-
|
|
2
|
+
import type { WithoutChild } from "bits-ui";
|
|
3
|
+
type $$ComponentProps = WithoutChild<FormPrimitive.FieldErrorsProps> & {
|
|
3
4
|
errorClasses?: string | undefined | null;
|
|
4
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const FormFieldErrors: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
7
|
type FormFieldErrors = ReturnType<typeof FormFieldErrors>;
|
|
6
8
|
export default FormFieldErrors;
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
import { LinkPreview as HoverCardPrimitive } from "bits-ui";
|
|
2
|
-
|
|
3
|
-
forceMount?: boolean;
|
|
4
|
-
}, "child" | "children"> & {
|
|
5
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
6
|
-
props: Record<string, unknown>;
|
|
7
|
-
}]> | undefined;
|
|
8
|
-
children?: import("svelte").Snippet;
|
|
9
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
10
|
-
ref?: HTMLElement | null | undefined;
|
|
11
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").LinkPreviewContentPropsWithoutHTML> & {
|
|
2
|
+
type $$ComponentProps = HoverCardPrimitive.ContentProps & {
|
|
12
3
|
portalProps?: HoverCardPrimitive.PortalProps;
|
|
13
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const HoverCardContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
14
6
|
type HoverCardContent = ReturnType<typeof HoverCardContent>;
|
|
15
7
|
export default HoverCardContent;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
1
|
+
import { Menubar as MenubarPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
2
2
|
import type { Snippet } from "svelte";
|
|
3
|
-
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<MenubarPrimitive.CheckboxItemProps> & {
|
|
4
4
|
children?: Snippet;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const MenubarCheckboxItem: import("svelte").Component<$$ComponentProps, {}, "ref" | "checked" | "indeterminate">;
|
|
6
7
|
type MenubarCheckboxItem = ReturnType<typeof MenubarCheckboxItem>;
|
|
7
8
|
export default MenubarCheckboxItem;
|
|
@@ -1,72 +1,7 @@
|
|
|
1
1
|
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
2
|
-
|
|
3
|
-
forceMount?: boolean | undefined;
|
|
4
|
-
dir?: import("bits-ui").Direction | undefined;
|
|
5
|
-
loop?: boolean | undefined;
|
|
6
|
-
onInteractOutside?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideEventHandler | undefined;
|
|
7
|
-
interactOutsideBehavior?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideBehaviorType | undefined;
|
|
8
|
-
onFocusOutside?: ((event: FocusEvent) => void) | undefined;
|
|
9
|
-
onEscapeKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
10
|
-
escapeKeydownBehavior?: import("bits-ui/dist/bits/utilities/escape-layer/types").EscapeBehaviorType | undefined;
|
|
11
|
-
onOpenAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
12
|
-
onCloseAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
13
|
-
trapFocus?: boolean | undefined;
|
|
14
|
-
preventOverflowTextSelection?: boolean | undefined;
|
|
15
|
-
preventScroll?: boolean | undefined;
|
|
16
|
-
align?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Align | undefined;
|
|
17
|
-
side?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side | undefined;
|
|
18
|
-
sideOffset?: number | undefined;
|
|
19
|
-
alignOffset?: number | undefined | undefined;
|
|
20
|
-
arrowPadding?: number | undefined;
|
|
21
|
-
avoidCollisions?: boolean | undefined | undefined;
|
|
22
|
-
collisionBoundary?: import("bits-ui/dist/internal/types").Arrayable<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Boundary> | undefined;
|
|
23
|
-
collisionPadding?: (number | Partial<Record<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side, number>>) | undefined;
|
|
24
|
-
sticky?: "partial" | "always" | undefined;
|
|
25
|
-
hideWhenDetached?: boolean | undefined;
|
|
26
|
-
updatePositionStrategy?: "optimized" | "always" | undefined;
|
|
27
|
-
strategy?: "absolute" | "fixed" | undefined | undefined;
|
|
28
|
-
customAnchor?: (string | HTMLElement | import("bits-ui/dist/internal/floating-svelte/types").Measurable | null) | undefined;
|
|
29
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
30
|
-
props: Record<string, unknown>;
|
|
31
|
-
}]> | undefined;
|
|
32
|
-
children?: import("svelte").Snippet | undefined;
|
|
33
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
34
|
-
ref?: HTMLElement | null | undefined;
|
|
35
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, {
|
|
36
|
-
forceMount?: boolean | undefined;
|
|
37
|
-
dir?: import("bits-ui").Direction | undefined;
|
|
38
|
-
loop?: boolean | undefined;
|
|
39
|
-
onInteractOutside?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideEventHandler | undefined;
|
|
40
|
-
interactOutsideBehavior?: import("bits-ui/dist/bits/utilities/dismissible-layer/types").InteractOutsideBehaviorType | undefined;
|
|
41
|
-
onFocusOutside?: ((event: FocusEvent) => void) | undefined;
|
|
42
|
-
onEscapeKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
43
|
-
escapeKeydownBehavior?: import("bits-ui/dist/bits/utilities/escape-layer/types").EscapeBehaviorType | undefined;
|
|
44
|
-
onOpenAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
45
|
-
onCloseAutoFocus?: import("bits-ui/dist/internal/events").EventCallback | undefined;
|
|
46
|
-
trapFocus?: boolean | undefined;
|
|
47
|
-
preventOverflowTextSelection?: boolean | undefined;
|
|
48
|
-
preventScroll?: boolean | undefined;
|
|
49
|
-
align?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Align | undefined;
|
|
50
|
-
side?: import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side | undefined;
|
|
51
|
-
sideOffset?: number | undefined;
|
|
52
|
-
alignOffset?: number | undefined | undefined;
|
|
53
|
-
arrowPadding?: number | undefined;
|
|
54
|
-
avoidCollisions?: boolean | undefined | undefined;
|
|
55
|
-
collisionBoundary?: import("bits-ui/dist/internal/types").Arrayable<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Boundary> | undefined;
|
|
56
|
-
collisionPadding?: (number | Partial<Record<import("bits-ui/dist/bits/utilities/floating-layer/useFloatingLayer.svelte").Side, number>>) | undefined;
|
|
57
|
-
sticky?: "partial" | "always" | undefined;
|
|
58
|
-
hideWhenDetached?: boolean | undefined;
|
|
59
|
-
updatePositionStrategy?: "optimized" | "always" | undefined;
|
|
60
|
-
strategy?: "absolute" | "fixed" | undefined | undefined;
|
|
61
|
-
customAnchor?: (string | HTMLElement | import("bits-ui/dist/internal/floating-svelte/types").Measurable | null) | undefined;
|
|
62
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
63
|
-
props: Record<string, unknown>;
|
|
64
|
-
}]> | undefined;
|
|
65
|
-
children?: import("svelte").Snippet | undefined;
|
|
66
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
67
|
-
ref?: HTMLElement | null | undefined;
|
|
68
|
-
}> & {
|
|
2
|
+
type $$ComponentProps = MenubarPrimitive.ContentProps & {
|
|
69
3
|
portalProps?: MenubarPrimitive.PortalProps;
|
|
70
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const MenubarContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
71
6
|
type MenubarContent = ReturnType<typeof MenubarContent>;
|
|
72
7
|
export default MenubarContent;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
props: Record<string, unknown>;
|
|
4
|
-
}]> | undefined;
|
|
5
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
6
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
7
|
-
ref?: HTMLElement | null | undefined;
|
|
8
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuGroupHeadingPropsWithoutHTML> & {
|
|
1
|
+
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = MenubarPrimitive.GroupHeadingProps & {
|
|
9
3
|
inset?: boolean;
|
|
10
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const MenubarGroupHeading: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
11
6
|
type MenubarGroupHeading = ReturnType<typeof MenubarGroupHeading>;
|
|
12
7
|
export default MenubarGroupHeading;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
textValue?: string;
|
|
4
|
-
onSelect?: (event: Event) => void;
|
|
5
|
-
closeOnSelect?: boolean;
|
|
6
|
-
}, "child" | "children"> & {
|
|
7
|
-
child?: import("svelte").Snippet<[{
|
|
8
|
-
props: Record<string, unknown>;
|
|
9
|
-
}]> | undefined;
|
|
10
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
11
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
12
|
-
ref?: HTMLElement | null | undefined;
|
|
13
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").ContextMenuItemPropsWithoutHTML<{
|
|
14
|
-
_default: never;
|
|
15
|
-
}>> & {
|
|
1
|
+
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = MenubarPrimitive.ItemProps & {
|
|
16
3
|
inset?: boolean;
|
|
17
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const MenubarItem: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
18
6
|
type MenubarItem = ReturnType<typeof MenubarItem>;
|
|
19
7
|
export default MenubarItem;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { Menubar as MenubarPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<MenubarPrimitive.SubTriggerProps> & {
|
|
3
3
|
inset?: boolean;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const MenubarSubTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type MenubarSubTrigger = ReturnType<typeof MenubarSubTrigger>;
|
|
6
7
|
export default MenubarSubTrigger;
|
|
@@ -1,19 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
child?: import("svelte").Snippet<[{
|
|
5
|
-
props: Record<string, unknown>;
|
|
6
|
-
}]> | undefined;
|
|
7
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
8
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
9
|
-
ref?: HTMLElement | null | undefined;
|
|
10
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveButtonAttributes, import("bits-ui").PaginationPagePropsWithoutHTML> & import("svelte/elements").HTMLButtonAttributes & {
|
|
11
|
-
ref?: HTMLElement | null | undefined;
|
|
12
|
-
} & import("svelte/elements").HTMLAnchorAttributes & {
|
|
13
|
-
variant?: import("../button/index.js").ButtonVariant;
|
|
14
|
-
size?: import("../button/index.js").ButtonSize;
|
|
15
|
-
} & {
|
|
1
|
+
import { Pagination as PaginationPrimitive } from "bits-ui";
|
|
2
|
+
import { type Props } from "../button/index.js";
|
|
3
|
+
type $$ComponentProps = PaginationPrimitive.PageProps & Props & {
|
|
16
4
|
isActive: boolean;
|
|
17
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const PaginationLink: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
18
7
|
type PaginationLink = ReturnType<typeof PaginationLink>;
|
|
19
8
|
export default PaginationLink;
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
import { Popover as PopoverPrimitive } from "bits-ui";
|
|
2
|
-
|
|
3
|
-
child?: import("svelte").Snippet<[import("bits-ui").FloatingContentSnippetProps & {
|
|
4
|
-
props: Record<string, unknown>;
|
|
5
|
-
}]> | undefined;
|
|
6
|
-
children?: import("svelte").Snippet;
|
|
7
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
8
|
-
ref?: HTMLElement | null | undefined;
|
|
9
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveDivAttributes, import("bits-ui").DatePickerContentPropsWithoutHTML> & {
|
|
2
|
+
type $$ComponentProps = PopoverPrimitive.ContentProps & {
|
|
10
3
|
portalProps?: PopoverPrimitive.PortalProps;
|
|
11
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const PopoverContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
12
6
|
type PopoverContent = ReturnType<typeof PopoverContent>;
|
|
13
7
|
export default PopoverContent;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as ResizablePrimitive from "paneforge";
|
|
2
|
-
|
|
2
|
+
import type { WithoutChildrenOrChild } from "bits-ui";
|
|
3
|
+
type $$ComponentProps = WithoutChildrenOrChild<ResizablePrimitive.PaneResizerProps> & {
|
|
3
4
|
withHandle?: boolean;
|
|
4
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const ResizableHandle: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
7
|
type ResizableHandle = ReturnType<typeof ResizableHandle>;
|
|
6
8
|
export default ResizableHandle;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
import * as ResizablePrimitive from "paneforge";
|
|
2
|
-
|
|
3
|
-
autoSaveId?: string | null;
|
|
4
|
-
direction: import("paneforge/dist/internal/types").Direction;
|
|
5
|
-
keyboardResizeBy?: number | null;
|
|
6
|
-
onLayoutChange?: (layout: number[]) => void | null;
|
|
7
|
-
storage?: ResizablePrimitive.PaneGroupStorage;
|
|
8
|
-
}, "child" | "children"> & {
|
|
9
|
-
child?: import("svelte").Snippet<[{
|
|
10
|
-
props: Record<string, unknown>;
|
|
11
|
-
}]> | undefined;
|
|
12
|
-
children?: import("svelte").Snippet<[]> | undefined;
|
|
13
|
-
style?: string | null | undefined;
|
|
14
|
-
ref?: HTMLElement | null | undefined;
|
|
15
|
-
} & ResizablePrimitive.Without<ResizablePrimitive.PaneForgePrimitiveDivAttributes, ResizablePrimitive.PaneGroupPropsWithoutHTML> & {
|
|
2
|
+
type $$ComponentProps = ResizablePrimitive.PaneGroupProps & {
|
|
16
3
|
this?: ResizablePrimitive.PaneGroup;
|
|
17
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const ResizablePaneGroup: import("svelte").Component<$$ComponentProps, {}, "ref" | "this">;
|
|
18
6
|
type ResizablePaneGroup = ReturnType<typeof ResizablePaneGroup>;
|
|
19
7
|
export default ResizablePaneGroup;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ScrollArea as ScrollAreaPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { ScrollArea as ScrollAreaPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<ScrollAreaPrimitive.RootProps> & {
|
|
3
3
|
orientation?: "vertical" | "horizontal" | "both" | undefined;
|
|
4
4
|
scrollbarXClasses?: string | undefined;
|
|
5
5
|
scrollbarYClasses?: string | undefined;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const ScrollArea: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
8
|
type ScrollArea = ReturnType<typeof ScrollArea>;
|
|
8
9
|
export default ScrollArea;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { Select as SelectPrimitive } from "bits-ui";
|
|
2
|
-
|
|
1
|
+
import { Select as SelectPrimitive, type WithoutChild } from "bits-ui";
|
|
2
|
+
type $$ComponentProps = WithoutChild<SelectPrimitive.ContentProps> & {
|
|
3
3
|
portalProps?: SelectPrimitive.PortalProps;
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
|
+
declare const SelectContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
5
6
|
type SelectContent = ReturnType<typeof SelectContent>;
|
|
6
7
|
export default SelectContent;
|
|
@@ -50,12 +50,13 @@ export declare const sheetVariants: import("tailwind-variants").TVReturnType<{
|
|
|
50
50
|
};
|
|
51
51
|
}>, unknown, unknown, undefined>>;
|
|
52
52
|
export type Side = VariantProps<typeof sheetVariants>["side"];
|
|
53
|
-
import { Dialog as SheetPrimitive } from "bits-ui";
|
|
53
|
+
import { Dialog as SheetPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
54
54
|
import type { Snippet } from "svelte";
|
|
55
|
-
|
|
55
|
+
type $$ComponentProps = WithoutChildrenOrChild<SheetPrimitive.ContentProps> & {
|
|
56
56
|
portalProps?: SheetPrimitive.PortalProps;
|
|
57
57
|
side?: Side;
|
|
58
58
|
children: Snippet;
|
|
59
|
-
}
|
|
59
|
+
};
|
|
60
|
+
declare const SheetContent: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
60
61
|
type SheetContent = ReturnType<typeof SheetContent>;
|
|
61
62
|
export default SheetContent;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { Snippet } from "svelte";
|
|
2
3
|
import type { HTMLButtonAttributes } from "svelte/elements";
|
|
3
|
-
|
|
4
|
-
ref?: HTMLElement | null | undefined;
|
|
5
|
-
} & {
|
|
4
|
+
type $$ComponentProps = WithElementRef<HTMLButtonAttributes> & {
|
|
6
5
|
child?: Snippet<[{
|
|
7
6
|
props: Record<string, unknown>;
|
|
8
7
|
}]>;
|
|
9
|
-
}
|
|
8
|
+
};
|
|
9
|
+
declare const SidebarGroupAction: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
10
10
|
type SidebarGroupAction = ReturnType<typeof SidebarGroupAction>;
|
|
11
11
|
export default SidebarGroupAction;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { Snippet } from "svelte";
|
|
2
3
|
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
-
|
|
4
|
-
ref?: HTMLElement | null | undefined;
|
|
5
|
-
} & {
|
|
4
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLElement>> & {
|
|
6
5
|
child?: Snippet<[{
|
|
7
6
|
props: Record<string, unknown>;
|
|
8
7
|
}]>;
|
|
9
|
-
}
|
|
8
|
+
};
|
|
9
|
+
declare const SidebarGroupLabel: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
10
10
|
type SidebarGroupLabel = ReturnType<typeof SidebarGroupLabel>;
|
|
11
11
|
export default SidebarGroupLabel;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { Snippet } from "svelte";
|
|
2
3
|
import type { HTMLButtonAttributes } from "svelte/elements";
|
|
3
|
-
|
|
4
|
-
ref?: HTMLElement | null | undefined;
|
|
5
|
-
} & {
|
|
4
|
+
type $$ComponentProps = WithElementRef<HTMLButtonAttributes> & {
|
|
6
5
|
child?: Snippet<[{
|
|
7
6
|
props: Record<string, unknown>;
|
|
8
7
|
}]>;
|
|
9
8
|
showOnHover?: boolean;
|
|
10
|
-
}
|
|
9
|
+
};
|
|
10
|
+
declare const SidebarMenuAction: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
11
11
|
type SidebarMenuAction = ReturnType<typeof SidebarMenuAction>;
|
|
12
12
|
export default SidebarMenuAction;
|
|
@@ -73,12 +73,10 @@ export declare const sidebarMenuButtonVariants: import("tailwind-variants").TVRe
|
|
|
73
73
|
export type SidebarMenuButtonVariant = VariantProps<typeof sidebarMenuButtonVariants>["variant"];
|
|
74
74
|
export type SidebarMenuButtonSize = VariantProps<typeof sidebarMenuButtonVariants>["size"];
|
|
75
75
|
import * as Tooltip from "../tooltip/index.js";
|
|
76
|
-
import { type WithoutChildrenOrChild } from "bits-ui";
|
|
76
|
+
import { type WithElementRef, type WithoutChildrenOrChild } from "bits-ui";
|
|
77
77
|
import type { ComponentProps, Snippet } from "svelte";
|
|
78
78
|
import type { HTMLAttributes } from "svelte/elements";
|
|
79
|
-
|
|
80
|
-
ref?: HTMLButtonElement | null | undefined;
|
|
81
|
-
} & {
|
|
79
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & {
|
|
82
80
|
isActive?: boolean;
|
|
83
81
|
variant?: SidebarMenuButtonVariant;
|
|
84
82
|
size?: SidebarMenuButtonSize;
|
|
@@ -87,6 +85,7 @@ declare const SidebarMenuButton: import("svelte").Component<HTMLAttributes<HTMLB
|
|
|
87
85
|
child?: Snippet<[{
|
|
88
86
|
props: Record<string, unknown>;
|
|
89
87
|
}]>;
|
|
90
|
-
}
|
|
88
|
+
};
|
|
89
|
+
declare const SidebarMenuButton: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
91
90
|
type SidebarMenuButton = ReturnType<typeof SidebarMenuButton>;
|
|
92
91
|
export default SidebarMenuButton;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
ref?: HTMLElement | null | undefined;
|
|
4
|
-
} & {
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLElement>> & {
|
|
5
4
|
showIcon?: boolean;
|
|
6
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const SidebarMenuSkeleton: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
7
7
|
type SidebarMenuSkeleton = ReturnType<typeof SidebarMenuSkeleton>;
|
|
8
8
|
export default SidebarMenuSkeleton;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { Snippet } from "svelte";
|
|
2
3
|
import type { HTMLAnchorAttributes } from "svelte/elements";
|
|
3
|
-
|
|
4
|
-
ref?: HTMLElement | null | undefined;
|
|
5
|
-
} & {
|
|
4
|
+
type $$ComponentProps = WithElementRef<HTMLAnchorAttributes> & {
|
|
6
5
|
child?: Snippet<[{
|
|
7
6
|
props: Record<string, unknown>;
|
|
8
7
|
}]>;
|
|
9
8
|
size?: "sm" | "md";
|
|
10
9
|
isActive?: boolean;
|
|
11
|
-
}
|
|
10
|
+
};
|
|
11
|
+
declare const SidebarMenuSubButton: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
12
12
|
type SidebarMenuSubButton = ReturnType<typeof SidebarMenuSubButton>;
|
|
13
13
|
export default SidebarMenuSubButton;
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
ref = $bindable(null),
|
|
11
11
|
open = $bindable(true),
|
|
12
12
|
onOpenChange = () => {},
|
|
13
|
-
controlledOpen = false,
|
|
14
13
|
class: className,
|
|
15
14
|
style,
|
|
16
15
|
children,
|
|
@@ -18,18 +17,13 @@
|
|
|
18
17
|
}: WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
19
18
|
open?: boolean;
|
|
20
19
|
onOpenChange?: (open: boolean) => void;
|
|
21
|
-
controlledOpen?: boolean;
|
|
22
20
|
} = $props();
|
|
23
21
|
|
|
24
22
|
const sidebar = setSidebar({
|
|
25
23
|
open: () => open,
|
|
26
24
|
setOpen: (value: boolean) => {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
} else {
|
|
30
|
-
open = value;
|
|
31
|
-
onOpenChange(value);
|
|
32
|
-
}
|
|
25
|
+
open = value;
|
|
26
|
+
onOpenChange(value);
|
|
33
27
|
|
|
34
28
|
// This sets the cookie to keep the sidebar state.
|
|
35
29
|
document.cookie = `${SIDEBAR_COOKIE_NAME}=${open}; path=/; max-age=${SIDEBAR_COOKIE_MAX_AGE}`;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
ref?: HTMLElement | null | undefined;
|
|
4
|
-
} & {
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
4
|
open?: boolean;
|
|
6
5
|
onOpenChange?: (open: boolean) => void;
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
};
|
|
7
|
+
declare const SidebarProvider: import("svelte").Component<$$ComponentProps, {}, "ref" | "open">;
|
|
9
8
|
type SidebarProvider = ReturnType<typeof SidebarProvider>;
|
|
10
9
|
export default SidebarProvider;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
variant?: import("../button/index.js").ButtonVariant;
|
|
5
|
-
size?: import("../button/index.js").ButtonSize;
|
|
6
|
-
} & {
|
|
1
|
+
import { Button } from "../button/index.js";
|
|
2
|
+
import type { ComponentProps } from "svelte";
|
|
3
|
+
type $$ComponentProps = ComponentProps<typeof Button> & {
|
|
7
4
|
onclick?: (e: MouseEvent) => void;
|
|
8
|
-
}
|
|
5
|
+
};
|
|
6
|
+
declare const SidebarTrigger: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
9
7
|
type SidebarTrigger = ReturnType<typeof SidebarTrigger>;
|
|
10
8
|
export default SidebarTrigger;
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
{@render children?.()}
|
|
33
33
|
</div>
|
|
34
34
|
{:else if sidebar.isMobile}
|
|
35
|
-
<Sheet.Root
|
|
35
|
+
<Sheet.Root bind:open={() => sidebar.openMobile, (v) => sidebar.setOpenMobile(v)} {...restProps}>
|
|
36
36
|
<Sheet.Content
|
|
37
37
|
data-sidebar="sidebar"
|
|
38
38
|
data-mobile="true"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import type { WithElementRef } from "bits-ui";
|
|
1
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
2
|
-
|
|
3
|
-
ref?: HTMLElement | null | undefined;
|
|
4
|
-
} & {
|
|
3
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
5
4
|
side?: "left" | "right";
|
|
6
5
|
variant?: "sidebar" | "floating" | "inset";
|
|
7
6
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
8
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const Sidebar: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
9
9
|
type Sidebar = ReturnType<typeof Sidebar>;
|
|
10
10
|
export default Sidebar;
|
|
@@ -4,15 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
let {
|
|
6
6
|
ref = $bindable(null),
|
|
7
|
-
value = $bindable(
|
|
7
|
+
value = $bindable(),
|
|
8
8
|
class: className,
|
|
9
9
|
...restProps
|
|
10
10
|
}: WithoutChildrenOrChild<SliderPrimitive.RootProps> = $props();
|
|
11
11
|
</script>
|
|
12
12
|
|
|
13
|
+
<!--
|
|
14
|
+
Discriminated Unions + Destructing (required for bindable) do not
|
|
15
|
+
get along, so we shut typescript up by casting `value` to `never`.
|
|
16
|
+
-->
|
|
13
17
|
<SliderPrimitive.Root
|
|
18
|
+
bind:value={value as never}
|
|
14
19
|
bind:ref
|
|
15
|
-
bind:value
|
|
16
20
|
class={cn("relative flex w-full touch-none select-none items-center", className)}
|
|
17
21
|
{...restProps}
|
|
18
22
|
>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Slider as SliderPrimitive } from "bits-ui";
|
|
2
|
-
declare const Slider: import("svelte").Component<
|
|
1
|
+
import { Slider as SliderPrimitive, type WithoutChildrenOrChild } from "bits-ui";
|
|
2
|
+
declare const Slider: import("svelte").Component<WithoutChildrenOrChild<SliderPrimitive.RootProps>, {}, "ref" | "value">;
|
|
3
3
|
type Slider = ReturnType<typeof Slider>;
|
|
4
4
|
export default Slider;
|
|
@@ -73,21 +73,11 @@ export declare const toggleVariants: import("tailwind-variants").TVReturnType<{
|
|
|
73
73
|
export type ToggleVariant = VariantProps<typeof toggleVariants>["variant"];
|
|
74
74
|
export type ToggleSize = VariantProps<typeof toggleVariants>["size"];
|
|
75
75
|
export type ToggleVariants = VariantProps<typeof toggleVariants>;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
onPressedChange?: import("bits-ui/dist/internal/types").OnChangeFn<boolean>;
|
|
79
|
-
disabled?: boolean | null | undefined;
|
|
80
|
-
controlledPressed?: boolean;
|
|
81
|
-
}, "child" | "children"> & {
|
|
82
|
-
child?: import("svelte").Snippet<[import("bits-ui").ToggleRootSnippetProps & {
|
|
83
|
-
props: Record<string, unknown>;
|
|
84
|
-
}]> | undefined;
|
|
85
|
-
children?: import("svelte").Snippet<[import("bits-ui").ToggleRootSnippetProps]> | undefined;
|
|
86
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
87
|
-
ref?: HTMLElement | null | undefined;
|
|
88
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveButtonAttributes, import("bits-ui").ToggleRootPropsWithoutHTML> & {
|
|
76
|
+
import { Toggle as TogglePrimitive } from "bits-ui";
|
|
77
|
+
type $$ComponentProps = TogglePrimitive.RootProps & {
|
|
89
78
|
variant?: ToggleVariant;
|
|
90
79
|
size?: ToggleSize;
|
|
91
|
-
}
|
|
80
|
+
};
|
|
81
|
+
declare const Toggle: import("svelte").Component<$$ComponentProps, {}, "ref" | "pressed">;
|
|
92
82
|
type Toggle = ReturnType<typeof Toggle>;
|
|
93
83
|
export default Toggle;
|
|
@@ -1,14 +1,6 @@
|
|
|
1
|
+
import { ToggleGroup as ToggleGroupPrimitive } from "bits-ui";
|
|
1
2
|
import { type ToggleVariants } from "../toggle/index.js";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
value: string;
|
|
5
|
-
}, "child" | "children"> & {
|
|
6
|
-
child?: import("svelte").Snippet<[import("bits-ui").ToggleGroupItemSnippetProps & {
|
|
7
|
-
props: Record<string, unknown>;
|
|
8
|
-
}]> | undefined;
|
|
9
|
-
children?: import("svelte").Snippet<[import("bits-ui").ToggleGroupItemSnippetProps]> | undefined;
|
|
10
|
-
style?: import("bits-ui").StyleProperties | string | null | undefined;
|
|
11
|
-
ref?: HTMLElement | null | undefined;
|
|
12
|
-
} & import("bits-ui").Without<import("bits-ui").BitsPrimitiveButtonAttributes, import("bits-ui").ToggleGroupItemPropsWithoutHTML> & ToggleVariants, {}, "ref" | "value">;
|
|
3
|
+
type $$ComponentProps = ToggleGroupPrimitive.ItemProps & ToggleVariants;
|
|
4
|
+
declare const ToggleGroupItem: import("svelte").Component<$$ComponentProps, {}, "ref" | "value">;
|
|
13
5
|
type ToggleGroupItem = ReturnType<typeof ToggleGroupItem>;
|
|
14
6
|
export default ToggleGroupItem;
|
|
@@ -2,6 +2,7 @@ import type { ToggleVariants } from "../toggle/index.js";
|
|
|
2
2
|
export declare function setToggleGroupCtx(props: ToggleVariants): void;
|
|
3
3
|
export declare function getToggleGroupCtx(): ToggleVariants;
|
|
4
4
|
import { ToggleGroup as ToggleGroupPrimitive } from "bits-ui";
|
|
5
|
-
|
|
5
|
+
type $$ComponentProps = ToggleGroupPrimitive.RootProps & ToggleVariants;
|
|
6
|
+
declare const ToggleGroup: import("svelte").Component<$$ComponentProps, {}, "ref" | "value">;
|
|
6
7
|
type ToggleGroup = ReturnType<typeof ToggleGroup>;
|
|
7
8
|
export default ToggleGroup;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayord/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.13.
|
|
4
|
+
"version": "0.13.10",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@internationalized/date": "^3.6.0",
|
|
37
|
-
"bits-ui": "1.0.0-next.
|
|
37
|
+
"bits-ui": "1.0.0-next.77",
|
|
38
38
|
"clsx": "^2.1.1",
|
|
39
|
-
"embla-carousel-svelte": "8.5.
|
|
39
|
+
"embla-carousel-svelte": "8.5.2",
|
|
40
40
|
"formsnap": "2.0.0",
|
|
41
41
|
"mode-watcher": "^0.5.0",
|
|
42
42
|
"paneforge": "1.0.0-next.2",
|
|
@@ -48,31 +48,31 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@kayord/tw-plugin": "^1.0.3",
|
|
50
50
|
"@sveltejs/adapter-auto": "^3.3.1",
|
|
51
|
-
"@sveltejs/kit": "^2.15.
|
|
51
|
+
"@sveltejs/kit": "^2.15.2",
|
|
52
52
|
"@sveltejs/package": "^2.3.7",
|
|
53
53
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
54
54
|
"@testing-library/jest-dom": "^6.6.3",
|
|
55
55
|
"@testing-library/svelte": "^5.2.6",
|
|
56
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
57
|
-
"@typescript-eslint/parser": "^8.
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
57
|
+
"@typescript-eslint/parser": "^8.19.1",
|
|
58
58
|
"autoprefixer": "^10.4.20",
|
|
59
59
|
"eslint": "^9.17.0",
|
|
60
60
|
"eslint-config-prettier": "^9.1.0",
|
|
61
61
|
"eslint-plugin-svelte": "^2.46.1",
|
|
62
|
-
"happy-dom": "^16.
|
|
62
|
+
"happy-dom": "^16.5.3",
|
|
63
63
|
"lucide-svelte": "^0.469.0",
|
|
64
64
|
"postcss": "^8.4.49",
|
|
65
65
|
"prettier": "^3.4.2",
|
|
66
66
|
"prettier-plugin-svelte": "^3.3.2",
|
|
67
67
|
"prettier-plugin-tailwindcss": "^0.6.9",
|
|
68
|
-
"publint": "^0.
|
|
69
|
-
"svelte": "^5.
|
|
70
|
-
"svelte-check": "^4.1.
|
|
68
|
+
"publint": "^0.3.0",
|
|
69
|
+
"svelte": "^5.17.3",
|
|
70
|
+
"svelte-check": "^4.1.3",
|
|
71
71
|
"tailwindcss": "^3.4.17",
|
|
72
72
|
"tailwindcss-animate": "^1.0.7",
|
|
73
73
|
"tslib": "^2.8.1",
|
|
74
|
-
"typescript": "^5.7.
|
|
75
|
-
"vite": "^6.0.
|
|
74
|
+
"typescript": "^5.7.3",
|
|
75
|
+
"vite": "^6.0.7",
|
|
76
76
|
"vitest": "^2.1.8",
|
|
77
77
|
"zod": "^3.24.1"
|
|
78
78
|
},
|