@pixpilot/shadcn 1.4.1 → 2.1.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.
@@ -14,6 +14,7 @@ import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
14
14
  import { ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerProps, ColorPickerSwatch, ColorPickerTrigger, colorUtils, useStore } from "./ui/color-picker.js";
15
15
  import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./ui/dialog.js";
16
16
  import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./ui/command.js";
17
+ import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./ui/drawer.js";
17
18
  import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./ui/dropdown-menu.js";
18
19
  import { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore as useStore$1 } from "./ui/file-upload.js";
19
20
  import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea } from "./ui/input-group.js";
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime103 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime113 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/components/ui/OrContinueWithSeparator.d.ts
4
4
 
@@ -6,6 +6,6 @@ import * as react_jsx_runtime103 from "react/jsx-runtime";
6
6
  * A separator with a label for alternative sign-in methods.
7
7
  * Used in authentication forms to visually separate sections.
8
8
  */
9
- declare function OrContinueWithSeparator(): react_jsx_runtime103.JSX.Element;
9
+ declare function OrContinueWithSeparator(): react_jsx_runtime113.JSX.Element;
10
10
  //#endregion
11
11
  export { OrContinueWithSeparator };
@@ -0,0 +1,54 @@
1
+ import * as React from "react";
2
+ import * as react_jsx_runtime70 from "react/jsx-runtime";
3
+ import { Drawer } from "vaul";
4
+
5
+ //#region src/components/ui/drawer.d.ts
6
+
7
+ /**
8
+ * A drawer that slides in from an edge of the viewport.
9
+ *
10
+ * Pulled from the shadcn registry — built on `vaul` (which wraps the Radix
11
+ * Dialog primitive), so it keeps the smooth spring animation and drag-to-dismiss
12
+ * behavior. The edge is controlled by the `direction` prop on the root
13
+ * (`top | bottom | left | right`, default `bottom`).
14
+ */
15
+ declare function Drawer$1({
16
+ direction,
17
+ ...props
18
+ }: React.ComponentProps<typeof Drawer.Root>): react_jsx_runtime70.JSX.Element;
19
+ declare function DrawerTrigger({
20
+ ...props
21
+ }: React.ComponentProps<typeof Drawer.Trigger>): react_jsx_runtime70.JSX.Element;
22
+ declare function DrawerPortal({
23
+ ...props
24
+ }: React.ComponentProps<typeof Drawer.Portal>): react_jsx_runtime70.JSX.Element;
25
+ declare function DrawerClose({
26
+ ...props
27
+ }: React.ComponentProps<typeof Drawer.Close>): react_jsx_runtime70.JSX.Element;
28
+ declare function DrawerOverlay({
29
+ className,
30
+ ...props
31
+ }: React.ComponentProps<typeof Drawer.Overlay>): react_jsx_runtime70.JSX.Element;
32
+ declare function DrawerContent({
33
+ className,
34
+ children,
35
+ ...props
36
+ }: React.ComponentProps<typeof Drawer.Content>): react_jsx_runtime70.JSX.Element;
37
+ declare function DrawerHeader({
38
+ className,
39
+ ...props
40
+ }: React.ComponentProps<'div'>): react_jsx_runtime70.JSX.Element;
41
+ declare function DrawerFooter({
42
+ className,
43
+ ...props
44
+ }: React.ComponentProps<'div'>): react_jsx_runtime70.JSX.Element;
45
+ declare function DrawerTitle({
46
+ className,
47
+ ...props
48
+ }: React.ComponentProps<typeof Drawer.Title>): react_jsx_runtime70.JSX.Element;
49
+ declare function DrawerDescription({
50
+ className,
51
+ ...props
52
+ }: React.ComponentProps<typeof Drawer.Description>): react_jsx_runtime70.JSX.Element;
53
+ //#endregion
54
+ export { Drawer$1 as Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger };
@@ -0,0 +1,91 @@
1
+ 'use client';
2
+
3
+
4
+ import { cn } from "../../lib/utils.js";
5
+ import "react";
6
+ import { jsx, jsxs } from "react/jsx-runtime";
7
+ import { Drawer } from "vaul";
8
+
9
+ //#region src/components/ui/drawer.tsx
10
+ /**
11
+ * A drawer that slides in from an edge of the viewport.
12
+ *
13
+ * Pulled from the shadcn registry — built on `vaul` (which wraps the Radix
14
+ * Dialog primitive), so it keeps the smooth spring animation and drag-to-dismiss
15
+ * behavior. The edge is controlled by the `direction` prop on the root
16
+ * (`top | bottom | left | right`, default `bottom`).
17
+ */
18
+ function Drawer$1({ direction = "right",...props }) {
19
+ return /* @__PURE__ */ jsx(Drawer.Root, {
20
+ "data-slot": "drawer",
21
+ ...props,
22
+ direction
23
+ });
24
+ }
25
+ function DrawerTrigger({ ...props }) {
26
+ return /* @__PURE__ */ jsx(Drawer.Trigger, {
27
+ "data-slot": "drawer-trigger",
28
+ ...props
29
+ });
30
+ }
31
+ function DrawerPortal({ ...props }) {
32
+ return /* @__PURE__ */ jsx(Drawer.Portal, {
33
+ "data-slot": "drawer-portal",
34
+ ...props
35
+ });
36
+ }
37
+ function DrawerClose({ ...props }) {
38
+ return /* @__PURE__ */ jsx(Drawer.Close, {
39
+ "data-slot": "drawer-close",
40
+ ...props
41
+ });
42
+ }
43
+ function DrawerOverlay({ className,...props }) {
44
+ return /* @__PURE__ */ jsx(Drawer.Overlay, {
45
+ "data-slot": "drawer-overlay",
46
+ className: cn("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50 backdrop-blur-sm", className),
47
+ ...props
48
+ });
49
+ }
50
+ function DrawerContent({ className, children,...props }) {
51
+ return /* @__PURE__ */ jsxs(DrawerPortal, {
52
+ "data-slot": "drawer-portal",
53
+ children: [/* @__PURE__ */ jsx(DrawerOverlay, {}), /* @__PURE__ */ jsxs(Drawer.Content, {
54
+ "data-slot": "drawer-content",
55
+ className: cn("py-5", "group/drawer-content bg-background fixed z-50 flex h-auto flex-col", "data-[vaul-drawer-direction=top]:inset-x-0 data-[vaul-drawer-direction=top]:top-0 data-[vaul-drawer-direction=top]:mb-24 data-[vaul-drawer-direction=top]:max-h-[80vh] data-[vaul-drawer-direction=top]:rounded-b-lg data-[vaul-drawer-direction=top]:border-b", "data-[vaul-drawer-direction=bottom]:inset-x-0 data-[vaul-drawer-direction=bottom]:bottom-0 data-[vaul-drawer-direction=bottom]:mt-24 data-[vaul-drawer-direction=bottom]:max-h-[80vh] data-[vaul-drawer-direction=bottom]:rounded-t-lg data-[vaul-drawer-direction=bottom]:border-t", "data-[vaul-drawer-direction=right]:inset-y-0 data-[vaul-drawer-direction=right]:right-0 data-[vaul-drawer-direction=right]:w-[95vw] data-[vaul-drawer-direction=right]:border-l data-[vaul-drawer-direction=right]:sm:max-w-sm", "data-[vaul-drawer-direction=left]:inset-y-0 data-[vaul-drawer-direction=left]:left-0 data-[vaul-drawer-direction=left]:w-[95vw] data-[vaul-drawer-direction=left]:border-r data-[vaul-drawer-direction=left]:sm:max-w-sm", className),
56
+ ...props,
57
+ children: [/* @__PURE__ */ jsx("div", { className: "bg-muted mx-auto mt-4 hidden h-2 w-[100px] shrink-0 rounded-full group-data-[vaul-drawer-direction=bottom]/drawer-content:block" }), children]
58
+ })]
59
+ });
60
+ }
61
+ function DrawerHeader({ className,...props }) {
62
+ return /* @__PURE__ */ jsx("div", {
63
+ "data-slot": "drawer-header",
64
+ className: cn("flex flex-col gap-0.5 p-4 group-data-[vaul-drawer-direction=bottom]/drawer-content:text-center group-data-[vaul-drawer-direction=top]/drawer-content:text-center md:gap-1.5 md:text-left", className),
65
+ ...props
66
+ });
67
+ }
68
+ function DrawerFooter({ className,...props }) {
69
+ return /* @__PURE__ */ jsx("div", {
70
+ "data-slot": "drawer-footer",
71
+ className: cn("mt-auto flex flex-col gap-2 p-4", className),
72
+ ...props
73
+ });
74
+ }
75
+ function DrawerTitle({ className,...props }) {
76
+ return /* @__PURE__ */ jsx(Drawer.Title, {
77
+ "data-slot": "drawer-title",
78
+ className: cn("text-lg leading-none font-semibold", className),
79
+ ...props
80
+ });
81
+ }
82
+ function DrawerDescription({ className,...props }) {
83
+ return /* @__PURE__ */ jsx(Drawer.Description, {
84
+ "data-slot": "drawer-description",
85
+ className: cn("text-muted-foreground text-sm", className),
86
+ ...props
87
+ });
88
+ }
89
+
90
+ //#endregion
91
+ export { Drawer$1 as Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger };
@@ -1,25 +1,25 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime70 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime80 from "react/jsx-runtime";
3
3
  import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
4
4
 
5
5
  //#region src/components/ui/dropdown-menu.d.ts
6
6
  declare function DropdownMenu({
7
7
  ...props
8
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime70.JSX.Element;
8
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime80.JSX.Element;
9
9
  declare function DropdownMenuPortal({
10
10
  ...props
11
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime70.JSX.Element;
11
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime80.JSX.Element;
12
12
  declare function DropdownMenuTrigger({
13
13
  ...props
14
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime70.JSX.Element;
14
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime80.JSX.Element;
15
15
  declare function DropdownMenuContent({
16
16
  className,
17
17
  sideOffset,
18
18
  ...props
19
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime70.JSX.Element;
19
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime80.JSX.Element;
20
20
  declare function DropdownMenuGroup({
21
21
  ...props
22
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime70.JSX.Element;
22
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime80.JSX.Element;
23
23
  declare function DropdownMenuItem({
24
24
  className,
25
25
  inset,
@@ -28,39 +28,39 @@ declare function DropdownMenuItem({
28
28
  }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
29
29
  inset?: boolean;
30
30
  variant?: 'default' | 'destructive';
31
- }): react_jsx_runtime70.JSX.Element;
31
+ }): react_jsx_runtime80.JSX.Element;
32
32
  declare function DropdownMenuCheckboxItem({
33
33
  className,
34
34
  children,
35
35
  checked,
36
36
  ...props
37
- }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime70.JSX.Element;
37
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime80.JSX.Element;
38
38
  declare function DropdownMenuRadioGroup({
39
39
  ...props
40
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime70.JSX.Element;
40
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime80.JSX.Element;
41
41
  declare function DropdownMenuRadioItem({
42
42
  className,
43
43
  children,
44
44
  ...props
45
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime70.JSX.Element;
45
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime80.JSX.Element;
46
46
  declare function DropdownMenuLabel({
47
47
  className,
48
48
  inset,
49
49
  ...props
50
50
  }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
51
51
  inset?: boolean;
52
- }): react_jsx_runtime70.JSX.Element;
52
+ }): react_jsx_runtime80.JSX.Element;
53
53
  declare function DropdownMenuSeparator({
54
54
  className,
55
55
  ...props
56
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime70.JSX.Element;
56
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime80.JSX.Element;
57
57
  declare function DropdownMenuShortcut({
58
58
  className,
59
59
  ...props
60
- }: React.ComponentProps<'span'>): react_jsx_runtime70.JSX.Element;
60
+ }: React.ComponentProps<'span'>): react_jsx_runtime80.JSX.Element;
61
61
  declare function DropdownMenuSub({
62
62
  ...props
63
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime70.JSX.Element;
63
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime80.JSX.Element;
64
64
  declare function DropdownMenuSubTrigger({
65
65
  className,
66
66
  inset,
@@ -68,10 +68,10 @@ declare function DropdownMenuSubTrigger({
68
68
  ...props
69
69
  }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
70
70
  inset?: boolean;
71
- }): react_jsx_runtime70.JSX.Element;
71
+ }): react_jsx_runtime80.JSX.Element;
72
72
  declare function DropdownMenuSubContent({
73
73
  className,
74
74
  ...props
75
- }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime70.JSX.Element;
75
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime80.JSX.Element;
76
76
  //#endregion
77
77
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime85 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime95 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ui/file-upload.d.ts
5
5
  type Direction = 'ltr' | 'rtl';
@@ -52,36 +52,36 @@ interface FileUploadRootProps extends Omit<React.ComponentProps<'div'>, 'default
52
52
  multiple?: boolean;
53
53
  required?: boolean;
54
54
  }
55
- declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime85.JSX.Element;
55
+ declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime95.JSX.Element;
56
56
  interface FileUploadDropzoneProps extends React.ComponentProps<'div'> {
57
57
  asChild?: boolean;
58
58
  }
59
- declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime85.JSX.Element;
59
+ declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime95.JSX.Element;
60
60
  interface FileUploadTriggerProps extends React.ComponentProps<'button'> {
61
61
  asChild?: boolean;
62
62
  }
63
- declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime85.JSX.Element;
63
+ declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime95.JSX.Element;
64
64
  interface FileUploadListProps extends React.ComponentProps<'div'> {
65
65
  orientation?: 'horizontal' | 'vertical';
66
66
  asChild?: boolean;
67
67
  forceMount?: boolean;
68
68
  }
69
- declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime85.JSX.Element | null;
69
+ declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime95.JSX.Element | null;
70
70
  interface FileUploadItemProps extends React.ComponentProps<'div'> {
71
71
  value: File;
72
72
  asChild?: boolean;
73
73
  }
74
- declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime85.JSX.Element | null;
74
+ declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime95.JSX.Element | null;
75
75
  interface FileUploadItemPreviewProps extends React.ComponentProps<'div'> {
76
76
  render?: (file: File, fallback: () => React.ReactNode) => React.ReactNode;
77
77
  asChild?: boolean;
78
78
  }
79
- declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime85.JSX.Element | null;
79
+ declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime95.JSX.Element | null;
80
80
  interface FileUploadItemMetadataProps extends React.ComponentProps<'div'> {
81
81
  asChild?: boolean;
82
82
  size?: 'default' | 'sm';
83
83
  }
84
- declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime85.JSX.Element | null;
84
+ declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime95.JSX.Element | null;
85
85
  interface FileUploadItemProgressProps extends React.ComponentProps<'div'> {
86
86
  variant?: 'linear' | 'circular' | 'fill';
87
87
  size?: number;
@@ -89,15 +89,15 @@ interface FileUploadItemProgressProps extends React.ComponentProps<'div'> {
89
89
  asChild?: boolean;
90
90
  forceMount?: boolean;
91
91
  }
92
- declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime85.JSX.Element | null;
92
+ declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime95.JSX.Element | null;
93
93
  interface FileUploadItemDeleteProps extends React.ComponentProps<'button'> {
94
94
  asChild?: boolean;
95
95
  }
96
- declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime85.JSX.Element | null;
96
+ declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime95.JSX.Element | null;
97
97
  interface FileUploadClearProps extends React.ComponentProps<'button'> {
98
98
  forceMount?: boolean;
99
99
  asChild?: boolean;
100
100
  }
101
- declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime85.JSX.Element | null;
101
+ declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime95.JSX.Element | null;
102
102
  //#endregion
103
103
  export { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore };
@@ -14,6 +14,7 @@ import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
14
14
  import { ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerProps, ColorPickerSwatch, ColorPickerTrigger, colorUtils, useStore } from "./color-picker.js";
15
15
  import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./dialog.js";
16
16
  import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./command.js";
17
+ import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./drawer.js";
17
18
  import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./dropdown-menu.js";
18
19
  import { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore as useStore$1 } from "./file-upload.js";
19
20
  import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea } from "./input-group.js";
@@ -1,14 +1,14 @@
1
1
  import { Button } from "./button.js";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  import * as React from "react";
4
- import * as react_jsx_runtime96 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime106 from "react/jsx-runtime";
5
5
  import * as class_variance_authority_types3 from "class-variance-authority/types";
6
6
 
7
7
  //#region src/components/ui/input-group.d.ts
8
8
  declare function InputGroup({
9
9
  className,
10
10
  ...props
11
- }: React.ComponentProps<'div'>): react_jsx_runtime96.JSX.Element;
11
+ }: React.ComponentProps<'div'>): react_jsx_runtime106.JSX.Element;
12
12
  declare const inputGroupAddonVariants: (props?: ({
13
13
  align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
14
14
  } & class_variance_authority_types3.ClassProp) | undefined) => string;
@@ -16,7 +16,7 @@ declare function InputGroupAddon({
16
16
  className,
17
17
  align,
18
18
  ...props
19
- }: React.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime96.JSX.Element;
19
+ }: React.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime106.JSX.Element;
20
20
  declare const inputGroupButtonVariants: (props?: ({
21
21
  size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
22
22
  } & class_variance_authority_types3.ClassProp) | undefined) => string;
@@ -26,18 +26,18 @@ declare function InputGroupButton({
26
26
  variant,
27
27
  size,
28
28
  ...props
29
- }: Omit<React.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime96.JSX.Element;
29
+ }: Omit<React.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime106.JSX.Element;
30
30
  declare function InputGroupText({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<'span'>): react_jsx_runtime96.JSX.Element;
33
+ }: React.ComponentProps<'span'>): react_jsx_runtime106.JSX.Element;
34
34
  declare function InputGroupInput({
35
35
  className,
36
36
  ...props
37
- }: React.ComponentProps<'input'>): react_jsx_runtime96.JSX.Element;
37
+ }: React.ComponentProps<'input'>): react_jsx_runtime106.JSX.Element;
38
38
  declare function InputGroupTextarea({
39
39
  className,
40
40
  ...props
41
- }: React.ComponentProps<'textarea'>): react_jsx_runtime96.JSX.Element;
41
+ }: React.ComponentProps<'textarea'>): react_jsx_runtime106.JSX.Element;
42
42
  //#endregion
43
43
  export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime95 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime105 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ui/input.d.ts
5
5
  type InputProps = React.ComponentProps<'input'>;
@@ -7,6 +7,6 @@ declare function Input({
7
7
  className,
8
8
  type,
9
9
  ...props
10
- }: InputProps): react_jsx_runtime95.JSX.Element;
10
+ }: InputProps): react_jsx_runtime105.JSX.Element;
11
11
  //#endregion
12
12
  export { Input, InputProps };
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime102 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime112 from "react/jsx-runtime";
3
3
  import * as LabelPrimitive from "@radix-ui/react-label";
4
4
 
5
5
  //#region src/components/ui/label.d.ts
6
6
  declare function Label({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime102.JSX.Element;
9
+ }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime112.JSX.Element;
10
10
  //#endregion
11
11
  export { Label };
@@ -1,20 +1,20 @@
1
1
  import { Button } from "./button.js";
2
2
  import "../../index.js";
3
3
  import * as React from "react";
4
- import * as react_jsx_runtime104 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime114 from "react/jsx-runtime";
5
5
 
6
6
  //#region src/components/ui/pagination.d.ts
7
7
  declare function Pagination({
8
8
  className,
9
9
  ...props
10
- }: React.ComponentProps<'nav'>): react_jsx_runtime104.JSX.Element;
10
+ }: React.ComponentProps<'nav'>): react_jsx_runtime114.JSX.Element;
11
11
  declare function PaginationContent({
12
12
  className,
13
13
  ...props
14
- }: React.ComponentProps<'ul'>): react_jsx_runtime104.JSX.Element;
14
+ }: React.ComponentProps<'ul'>): react_jsx_runtime114.JSX.Element;
15
15
  declare function PaginationItem({
16
16
  ...props
17
- }: React.ComponentProps<'li'>): react_jsx_runtime104.JSX.Element;
17
+ }: React.ComponentProps<'li'>): react_jsx_runtime114.JSX.Element;
18
18
  type PaginationLinkProps = {
19
19
  isActive?: boolean;
20
20
  } & Pick<React.ComponentProps<typeof Button>, 'size'> & React.ComponentProps<'a'>;
@@ -23,18 +23,18 @@ declare function PaginationLink({
23
23
  isActive,
24
24
  size,
25
25
  ...props
26
- }: PaginationLinkProps): react_jsx_runtime104.JSX.Element;
26
+ }: PaginationLinkProps): react_jsx_runtime114.JSX.Element;
27
27
  declare function PaginationPrevious({
28
28
  className,
29
29
  ...props
30
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime104.JSX.Element;
30
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime114.JSX.Element;
31
31
  declare function PaginationNext({
32
32
  className,
33
33
  ...props
34
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime104.JSX.Element;
34
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime114.JSX.Element;
35
35
  declare function PaginationEllipsis({
36
36
  className,
37
37
  ...props
38
- }: React.ComponentProps<'span'>): react_jsx_runtime104.JSX.Element;
38
+ }: React.ComponentProps<'span'>): react_jsx_runtime114.JSX.Element;
39
39
  //#endregion
40
40
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious };
@@ -1,22 +1,22 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime111 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime121 from "react/jsx-runtime";
3
3
  import * as PopoverPrimitive from "@radix-ui/react-popover";
4
4
 
5
5
  //#region src/components/ui/popover.d.ts
6
6
  declare function Popover({
7
7
  ...props
8
- }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime111.JSX.Element;
8
+ }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime121.JSX.Element;
9
9
  declare function PopoverTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime111.JSX.Element;
11
+ }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime121.JSX.Element;
12
12
  declare function PopoverContent({
13
13
  className,
14
14
  align,
15
15
  sideOffset,
16
16
  ...props
17
- }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime111.JSX.Element;
17
+ }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime121.JSX.Element;
18
18
  declare function PopoverAnchor({
19
19
  ...props
20
- }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime111.JSX.Element;
20
+ }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime121.JSX.Element;
21
21
  //#endregion
22
22
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
@@ -1,15 +1,15 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime115 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime125 from "react/jsx-runtime";
3
3
  import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
4
4
 
5
5
  //#region src/components/ui/radio-group.d.ts
6
6
  declare function RadioGroup({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime115.JSX.Element;
9
+ }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime125.JSX.Element;
10
10
  declare function RadioGroupItem({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime115.JSX.Element;
13
+ }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime125.JSX.Element;
14
14
  //#endregion
15
15
  export { RadioGroup, RadioGroupItem };
@@ -1,17 +1,17 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime117 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime127 from "react/jsx-runtime";
3
3
  import * as SelectPrimitive from "@radix-ui/react-select";
4
4
 
5
5
  //#region src/components/ui/select.d.ts
6
6
  declare function Select({
7
7
  ...props
8
- }: React.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime117.JSX.Element;
8
+ }: React.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime127.JSX.Element;
9
9
  declare function SelectGroup({
10
10
  ...props
11
- }: React.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime117.JSX.Element;
11
+ }: React.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime127.JSX.Element;
12
12
  declare function SelectValue({
13
13
  ...props
14
- }: React.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime117.JSX.Element;
14
+ }: React.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime127.JSX.Element;
15
15
  declare function SelectTrigger({
16
16
  className,
17
17
  size,
@@ -19,34 +19,34 @@ declare function SelectTrigger({
19
19
  ...props
20
20
  }: React.ComponentProps<typeof SelectPrimitive.Trigger> & {
21
21
  size?: 'sm' | 'default';
22
- }): react_jsx_runtime117.JSX.Element;
22
+ }): react_jsx_runtime127.JSX.Element;
23
23
  declare function SelectContent({
24
24
  className,
25
25
  children,
26
26
  position,
27
27
  align,
28
28
  ...props
29
- }: React.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime117.JSX.Element;
29
+ }: React.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime127.JSX.Element;
30
30
  declare function SelectLabel({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime117.JSX.Element;
33
+ }: React.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime127.JSX.Element;
34
34
  declare function SelectItem({
35
35
  className,
36
36
  children,
37
37
  ...props
38
- }: React.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime117.JSX.Element;
38
+ }: React.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime127.JSX.Element;
39
39
  declare function SelectSeparator({
40
40
  className,
41
41
  ...props
42
- }: React.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime117.JSX.Element;
42
+ }: React.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime127.JSX.Element;
43
43
  declare function SelectScrollUpButton({
44
44
  className,
45
45
  ...props
46
- }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime117.JSX.Element;
46
+ }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime127.JSX.Element;
47
47
  declare function SelectScrollDownButton({
48
48
  className,
49
49
  ...props
50
- }: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime117.JSX.Element;
50
+ }: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime127.JSX.Element;
51
51
  //#endregion
52
52
  export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime127 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime137 from "react/jsx-runtime";
3
3
  import * as SeparatorPrimitive from "@radix-ui/react-separator";
4
4
 
5
5
  //#region src/components/ui/separator.d.ts
@@ -8,6 +8,6 @@ declare function Separator({
8
8
  orientation,
9
9
  decorative,
10
10
  ...props
11
- }: React.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime127.JSX.Element;
11
+ }: React.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime137.JSX.Element;
12
12
  //#endregion
13
13
  export { Separator };
@@ -3,7 +3,7 @@ import { Button } from "../../button.js";
3
3
  import { PopoverContent } from "../../popover.js";
4
4
  import { CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from "../../command.js";
5
5
  import { ComponentProps, ReactNode } from "react";
6
- import * as react_jsx_runtime128 from "react/jsx-runtime";
6
+ import * as react_jsx_runtime138 from "react/jsx-runtime";
7
7
 
8
8
  //#region src/components/ui/shadcn-io/tags/index.d.ts
9
9
  interface TagsProps {
@@ -21,13 +21,13 @@ declare function Tags({
21
21
  onOpenChange: controlledOnOpenChange,
22
22
  children,
23
23
  className
24
- }: TagsProps): react_jsx_runtime128.JSX.Element;
24
+ }: TagsProps): react_jsx_runtime138.JSX.Element;
25
25
  type TagsTriggerProps = ComponentProps<typeof Button>;
26
26
  declare function TagsTrigger({
27
27
  className,
28
28
  children,
29
29
  ...props
30
- }: TagsTriggerProps): react_jsx_runtime128.JSX.Element;
30
+ }: TagsTriggerProps): react_jsx_runtime138.JSX.Element;
31
31
  type TagsValueProps = ComponentProps<typeof Badge>;
32
32
  declare function TagsValue({
33
33
  className,
@@ -36,35 +36,35 @@ declare function TagsValue({
36
36
  ...props
37
37
  }: TagsValueProps & {
38
38
  onRemove?: () => void;
39
- }): react_jsx_runtime128.JSX.Element;
39
+ }): react_jsx_runtime138.JSX.Element;
40
40
  type TagsContentProps = ComponentProps<typeof PopoverContent>;
41
41
  declare function TagsContent({
42
42
  className,
43
43
  children,
44
44
  ...props
45
- }: TagsContentProps): react_jsx_runtime128.JSX.Element;
45
+ }: TagsContentProps): react_jsx_runtime138.JSX.Element;
46
46
  type TagsInputProps = ComponentProps<typeof CommandInput>;
47
47
  declare function TagsInput({
48
48
  className,
49
49
  ...props
50
- }: TagsInputProps): react_jsx_runtime128.JSX.Element;
50
+ }: TagsInputProps): react_jsx_runtime138.JSX.Element;
51
51
  type TagsListProps = ComponentProps<typeof CommandList>;
52
52
  declare function TagsList({
53
53
  className,
54
54
  ...props
55
- }: TagsListProps): react_jsx_runtime128.JSX.Element;
55
+ }: TagsListProps): react_jsx_runtime138.JSX.Element;
56
56
  type TagsEmptyProps = ComponentProps<typeof CommandEmpty>;
57
57
  declare function TagsEmpty({
58
58
  children,
59
59
  className,
60
60
  ...props
61
- }: TagsEmptyProps): react_jsx_runtime128.JSX.Element;
61
+ }: TagsEmptyProps): react_jsx_runtime138.JSX.Element;
62
62
  type TagsGroupProps = ComponentProps<typeof CommandGroup>;
63
63
  declare const TagsGroup: typeof CommandGroup;
64
64
  type TagsItemProps = ComponentProps<typeof CommandItem>;
65
65
  declare function TagsItem({
66
66
  className,
67
67
  ...props
68
- }: TagsItemProps): react_jsx_runtime128.JSX.Element;
68
+ }: TagsItemProps): react_jsx_runtime138.JSX.Element;
69
69
  //#endregion
70
70
  export { Tags, TagsContent, TagsContentProps, TagsEmpty, TagsEmptyProps, TagsGroup, TagsGroupProps, TagsInput, TagsInputProps, TagsItem, TagsItemProps, TagsList, TagsListProps, TagsProps, TagsTrigger, TagsTriggerProps, TagsValue, TagsValueProps };
@@ -1,31 +1,31 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime136 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime146 from "react/jsx-runtime";
3
3
  import * as TagsInputPrimitive from "@diceui/tags-input";
4
4
 
5
5
  //#region src/components/ui/shadcn-io/tags-input-inline/index.d.ts
6
6
  declare function TagsInputInLineRoot({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof TagsInputPrimitive.Root>): react_jsx_runtime136.JSX.Element;
9
+ }: React.ComponentProps<typeof TagsInputPrimitive.Root>): react_jsx_runtime146.JSX.Element;
10
10
  declare function TagsInputInLineLabel({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<typeof TagsInputPrimitive.Label>): react_jsx_runtime136.JSX.Element;
13
+ }: React.ComponentProps<typeof TagsInputPrimitive.Label>): react_jsx_runtime146.JSX.Element;
14
14
  declare function TagsInputInLineList({
15
15
  className,
16
16
  ...props
17
- }: React.ComponentProps<'div'>): react_jsx_runtime136.JSX.Element;
17
+ }: React.ComponentProps<'div'>): react_jsx_runtime146.JSX.Element;
18
18
  declare function TagsInputInLineInput({
19
19
  className,
20
20
  ...props
21
- }: React.ComponentProps<typeof TagsInputPrimitive.Input>): react_jsx_runtime136.JSX.Element;
21
+ }: React.ComponentProps<typeof TagsInputPrimitive.Input>): react_jsx_runtime146.JSX.Element;
22
22
  declare function TagsInputInLineItem({
23
23
  className,
24
24
  children,
25
25
  ...props
26
- }: React.ComponentProps<typeof TagsInputPrimitive.Item>): react_jsx_runtime136.JSX.Element;
26
+ }: React.ComponentProps<typeof TagsInputPrimitive.Item>): react_jsx_runtime146.JSX.Element;
27
27
  declare function TagsInputInLineClear({
28
28
  ...props
29
- }: React.ComponentProps<typeof TagsInputPrimitive.Clear>): react_jsx_runtime136.JSX.Element;
29
+ }: React.ComponentProps<typeof TagsInputPrimitive.Clear>): react_jsx_runtime146.JSX.Element;
30
30
  //#endregion
31
31
  export { TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot };
@@ -1,17 +1,17 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime142 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime152 from "react/jsx-runtime";
3
3
  import * as SheetPrimitive from "@radix-ui/react-dialog";
4
4
 
5
5
  //#region src/components/ui/sheet.d.ts
6
6
  declare function Sheet({
7
7
  ...props
8
- }: React.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime142.JSX.Element;
8
+ }: React.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime152.JSX.Element;
9
9
  declare function SheetTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime142.JSX.Element;
11
+ }: React.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime152.JSX.Element;
12
12
  declare function SheetClose({
13
13
  ...props
14
- }: React.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime142.JSX.Element;
14
+ }: React.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime152.JSX.Element;
15
15
  declare function SheetContent({
16
16
  className,
17
17
  children,
@@ -19,22 +19,22 @@ declare function SheetContent({
19
19
  ...props
20
20
  }: React.ComponentProps<typeof SheetPrimitive.Content> & {
21
21
  side?: 'top' | 'right' | 'bottom' | 'left';
22
- }): react_jsx_runtime142.JSX.Element;
22
+ }): react_jsx_runtime152.JSX.Element;
23
23
  declare function SheetHeader({
24
24
  className,
25
25
  ...props
26
- }: React.ComponentProps<'div'>): react_jsx_runtime142.JSX.Element;
26
+ }: React.ComponentProps<'div'>): react_jsx_runtime152.JSX.Element;
27
27
  declare function SheetFooter({
28
28
  className,
29
29
  ...props
30
- }: React.ComponentProps<'div'>): react_jsx_runtime142.JSX.Element;
30
+ }: React.ComponentProps<'div'>): react_jsx_runtime152.JSX.Element;
31
31
  declare function SheetTitle({
32
32
  className,
33
33
  ...props
34
- }: React.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime142.JSX.Element;
34
+ }: React.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime152.JSX.Element;
35
35
  declare function SheetDescription({
36
36
  className,
37
37
  ...props
38
- }: React.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime142.JSX.Element;
38
+ }: React.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime152.JSX.Element;
39
39
  //#endregion
40
40
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime150 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime160 from "react/jsx-runtime";
3
3
  import * as SliderPrimitive from "@radix-ui/react-slider";
4
4
 
5
5
  //#region src/components/ui/slider.d.ts
@@ -10,6 +10,6 @@ declare function Slider({
10
10
  min,
11
11
  max,
12
12
  ...props
13
- }: React.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime150.JSX.Element;
13
+ }: React.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime160.JSX.Element;
14
14
  //#endregion
15
15
  export { Slider };
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime151 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime161 from "react/jsx-runtime";
3
3
  import * as SwitchPrimitive from "@radix-ui/react-switch";
4
4
 
5
5
  //#region src/components/ui/switch.d.ts
6
6
  declare function Switch({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime151.JSX.Element;
9
+ }: React.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime161.JSX.Element;
10
10
  //#endregion
11
11
  export { Switch };
@@ -1,6 +1,6 @@
1
1
  import { VariantProps } from "class-variance-authority";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime152 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime162 from "react/jsx-runtime";
4
4
  import * as TabsPrimitive from "@radix-ui/react-tabs";
5
5
  import * as class_variance_authority_types5 from "class-variance-authority/types";
6
6
 
@@ -14,20 +14,20 @@ declare const tabsTriggerVariants: (props?: ({
14
14
  declare function Tabs({
15
15
  className,
16
16
  ...props
17
- }: React.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime152.JSX.Element;
17
+ }: React.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime162.JSX.Element;
18
18
  declare function TabsList({
19
19
  className,
20
20
  variant,
21
21
  ...props
22
- }: React.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>): react_jsx_runtime152.JSX.Element;
22
+ }: React.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>): react_jsx_runtime162.JSX.Element;
23
23
  declare function TabsTrigger({
24
24
  className,
25
25
  variant,
26
26
  ...props
27
- }: React.ComponentProps<typeof TabsPrimitive.Trigger> & VariantProps<typeof tabsTriggerVariants>): react_jsx_runtime152.JSX.Element;
27
+ }: React.ComponentProps<typeof TabsPrimitive.Trigger> & VariantProps<typeof tabsTriggerVariants>): react_jsx_runtime162.JSX.Element;
28
28
  declare function TabsContent({
29
29
  className,
30
30
  ...props
31
- }: React.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime152.JSX.Element;
31
+ }: React.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime162.JSX.Element;
32
32
  //#endregion
33
33
  export { Tabs, TabsContent, TabsList, TabsTrigger };
@@ -1,10 +1,10 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime156 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime166 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ui/textarea.d.ts
5
5
  declare function Textarea({
6
6
  className,
7
7
  ...props
8
- }: React.ComponentProps<'textarea'>): react_jsx_runtime156.JSX.Element;
8
+ }: React.ComponentProps<'textarea'>): react_jsx_runtime166.JSX.Element;
9
9
  //#endregion
10
10
  export { Textarea };
@@ -1,7 +1,7 @@
1
1
  import { toggleVariants } from "./toggle.js";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  import * as React from "react";
4
- import * as react_jsx_runtime158 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime168 from "react/jsx-runtime";
5
5
  import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
6
6
 
7
7
  //#region src/components/ui/toggle-group.d.ts
@@ -18,13 +18,13 @@ declare function ToggleGroup({
18
18
  children,
19
19
  ref,
20
20
  ...props
21
- }: ToggleGroupProps): react_jsx_runtime158.JSX.Element;
21
+ }: ToggleGroupProps): react_jsx_runtime168.JSX.Element;
22
22
  declare function ToggleGroupItem({
23
23
  className,
24
24
  children,
25
25
  variant,
26
26
  size,
27
27
  ...props
28
- }: ToggleGroupItemProps): react_jsx_runtime158.JSX.Element;
28
+ }: ToggleGroupItemProps): react_jsx_runtime168.JSX.Element;
29
29
  //#endregion
30
30
  export { ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps };
@@ -1,6 +1,6 @@
1
1
  import { VariantProps } from "class-variance-authority";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime157 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime167 from "react/jsx-runtime";
4
4
  import * as TogglePrimitive from "@radix-ui/react-toggle";
5
5
  import * as class_variance_authority_types7 from "class-variance-authority/types";
6
6
 
@@ -14,6 +14,6 @@ declare function Toggle({
14
14
  variant,
15
15
  size,
16
16
  ...props
17
- }: React.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime157.JSX.Element;
17
+ }: React.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime167.JSX.Element;
18
18
  //#endregion
19
19
  export { Toggle, toggleVariants };
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
14
14
  import { ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerProps, ColorPickerSwatch, ColorPickerTrigger, colorUtils, useStore } from "./components/ui/color-picker.js";
15
15
  import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/ui/dialog.js";
16
16
  import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./components/ui/command.js";
17
+ import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./components/ui/drawer.js";
17
18
  import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./components/ui/dropdown-menu.js";
18
19
  import { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore as useStore$1 } from "./components/ui/file-upload.js";
19
20
  import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea } from "./components/ui/input-group.js";
@@ -34,4 +35,4 @@ import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./comp
34
35
  import "./components/index.js";
35
36
  import { cn } from "./lib/utils.js";
36
37
  import "./lib/index.js";
37
- export { Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, FileUploadClear as Clear, FileUploadClear, ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerProps, ColorPickerSwatch, ColorPickerTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FileUploadDropzone as Dropzone, FileUploadDropzone, FileUploadRoot as FileUpload, FileUploadRoot as Root, FileUploadItem, FileUploadItem as Item, FileUploadItemDelete, FileUploadItemDelete as ItemDelete, FileUploadItemMetadata, FileUploadItemMetadata as ItemMetadata, FileUploadItemPreview, FileUploadItemPreview as ItemPreview, FileUploadItemProgress, FileUploadItemProgress as ItemProgress, FileUploadList, FileUploadList as List, FileUploadRootProps as FileUploadProps, FileUploadTrigger, FileUploadTrigger as Trigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputProps, Label, OrContinueWithSeparator, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Slider, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tags, TagsContent, TagsContentProps, TagsEmpty, TagsEmptyProps, TagsGroup, TagsGroupProps, TagsInput, TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot, TagsInputProps, TagsItem, TagsItemProps, TagsList, TagsListProps, TagsProps, TagsTrigger, TagsTriggerProps, TagsValue, TagsValueProps, Textarea, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, colorUtils, toggleVariants, useStore as useColorPicker, useStore$1 as useFileUpload };
38
+ export { Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, FileUploadClear as Clear, FileUploadClear, ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerProps, ColorPickerSwatch, ColorPickerTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FileUploadDropzone as Dropzone, FileUploadDropzone, FileUploadRoot as FileUpload, FileUploadRoot as Root, FileUploadItem, FileUploadItem as Item, FileUploadItemDelete, FileUploadItemDelete as ItemDelete, FileUploadItemMetadata, FileUploadItemMetadata as ItemMetadata, FileUploadItemPreview, FileUploadItemPreview as ItemPreview, FileUploadItemProgress, FileUploadItemProgress as ItemProgress, FileUploadList, FileUploadList as List, FileUploadRootProps as FileUploadProps, FileUploadTrigger, FileUploadTrigger as Trigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputProps, Label, OrContinueWithSeparator, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Slider, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tags, TagsContent, TagsContentProps, TagsEmpty, TagsEmptyProps, TagsGroup, TagsGroupProps, TagsInput, TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot, TagsInputProps, TagsItem, TagsItemProps, TagsList, TagsListProps, TagsProps, TagsTrigger, TagsTriggerProps, TagsValue, TagsValueProps, Textarea, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, colorUtils, toggleVariants, useStore as useColorPicker, useStore$1 as useFileUpload };
package/dist/index.js CHANGED
@@ -15,6 +15,7 @@ import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
15
15
  import { ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerSwatch, ColorPickerTrigger, colorUtils, useStore } from "./components/ui/color-picker.js";
16
16
  import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/ui/dialog.js";
17
17
  import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./components/ui/command.js";
18
+ import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./components/ui/drawer.js";
18
19
  import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./components/ui/dropdown-menu.js";
19
20
  import { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadTrigger, useStore as useStore$1 } from "./components/ui/file-upload.js";
20
21
  import { Textarea } from "./components/ui/textarea.js";
@@ -33,4 +34,4 @@ import { Toggle, toggleVariants } from "./components/ui/toggle.js";
33
34
  import { ToggleGroup, ToggleGroupItem } from "./components/ui/toggle-group.js";
34
35
  import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/ui/tooltip.js";
35
36
 
36
- export { Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, FileUploadClear as Clear, FileUploadClear, ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerSwatch, ColorPickerTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FileUploadDropzone as Dropzone, FileUploadDropzone, FileUploadRoot as FileUpload, FileUploadRoot as Root, FileUploadItem, FileUploadItem as Item, FileUploadItemDelete, FileUploadItemDelete as ItemDelete, FileUploadItemMetadata, FileUploadItemMetadata as ItemMetadata, FileUploadItemPreview, FileUploadItemPreview as ItemPreview, FileUploadItemProgress, FileUploadItemProgress as ItemProgress, FileUploadList, FileUploadList as List, FileUploadTrigger, FileUploadTrigger as Trigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, OrContinueWithSeparator, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Slider, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tags, TagsContent, TagsEmpty, TagsGroup, TagsInput, TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot, TagsItem, TagsList, TagsTrigger, TagsValue, Textarea, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, colorUtils, toggleVariants, useStore as useColorPicker, useStore$1 as useFileUpload };
37
+ export { Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, FileUploadClear as Clear, FileUploadClear, ColorPicker, ColorPickerAlphaSlider, ColorPickerArea, ColorPickerContent, ColorPickerEyeDropper, ColorPickerFormatSelect, ColorPickerHueSlider, ColorPickerInput, ColorPickerSwatch, ColorPickerTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FileUploadDropzone as Dropzone, FileUploadDropzone, FileUploadRoot as FileUpload, FileUploadRoot as Root, FileUploadItem, FileUploadItem as Item, FileUploadItemDelete, FileUploadItemDelete as ItemDelete, FileUploadItemMetadata, FileUploadItemMetadata as ItemMetadata, FileUploadItemPreview, FileUploadItemPreview as ItemPreview, FileUploadItemProgress, FileUploadItemProgress as ItemProgress, FileUploadList, FileUploadList as List, FileUploadTrigger, FileUploadTrigger as Trigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, OrContinueWithSeparator, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Slider, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tags, TagsContent, TagsEmpty, TagsGroup, TagsInput, TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot, TagsItem, TagsList, TagsTrigger, TagsValue, Textarea, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, colorUtils, toggleVariants, useStore as useColorPicker, useStore$1 as useFileUpload };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/shadcn",
3
3
  "type": "module",
4
- "version": "1.4.1",
4
+ "version": "2.1.0",
5
5
  "description": "A collection of reusable UI components built with shadcn/ui and Radix UI primitives.",
6
6
  "author": "m.doaie <m.doaie@hotmail.com>",
7
7
  "license": "MIT",
@@ -69,6 +69,7 @@
69
69
  "react-hook-form": "^7.55.0",
70
70
  "tailwind-merge": "^3.5.0",
71
71
  "tailwindcss-animate": "^1.0.7",
72
+ "vaul": "^1.1.2",
72
73
  "zod": "^4.3.6"
73
74
  },
74
75
  "devDependencies": {