@pixpilot/shadcn 1.4.1 → 2.0.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.
Files changed (39) hide show
  1. package/dist/components/index.d.ts +1 -0
  2. package/dist/components/ui/OrContinueWithSeparator.d.ts +2 -2
  3. package/dist/components/ui/alert-dialog.d.ts +12 -12
  4. package/dist/components/ui/alert.d.ts +4 -4
  5. package/dist/components/ui/avatar.d.ts +4 -4
  6. package/dist/components/ui/badge.d.ts +2 -2
  7. package/dist/components/ui/button-group.d.ts +4 -4
  8. package/dist/components/ui/button.d.ts +2 -2
  9. package/dist/components/ui/calendar.d.ts +3 -3
  10. package/dist/components/ui/card.d.ts +8 -8
  11. package/dist/components/ui/checkbox.d.ts +2 -2
  12. package/dist/components/ui/color-picker.d.ts +11 -11
  13. package/dist/components/ui/command.d.ts +10 -10
  14. package/dist/components/ui/dialog.d.ts +11 -11
  15. package/dist/components/ui/drawer.d.ts +54 -0
  16. package/dist/components/ui/drawer.js +91 -0
  17. package/dist/components/ui/dropdown-menu.d.ts +16 -16
  18. package/dist/components/ui/file-upload.d.ts +11 -11
  19. package/dist/components/ui/index.d.ts +1 -0
  20. package/dist/components/ui/input-group.d.ts +7 -7
  21. package/dist/components/ui/input.d.ts +2 -2
  22. package/dist/components/ui/label.d.ts +2 -2
  23. package/dist/components/ui/pagination.d.ts +8 -8
  24. package/dist/components/ui/popover.d.ts +5 -5
  25. package/dist/components/ui/radio-group.d.ts +3 -3
  26. package/dist/components/ui/select.d.ts +11 -11
  27. package/dist/components/ui/separator.d.ts +2 -2
  28. package/dist/components/ui/shadcn-io/tags/index.d.ts +9 -9
  29. package/dist/components/ui/shadcn-io/tags-input-inline/index.d.ts +7 -7
  30. package/dist/components/ui/slider.d.ts +2 -2
  31. package/dist/components/ui/switch.d.ts +2 -2
  32. package/dist/components/ui/tabs.d.ts +5 -5
  33. package/dist/components/ui/textarea.d.ts +2 -2
  34. package/dist/components/ui/toggle-group.d.ts +3 -3
  35. package/dist/components/ui/toggle.d.ts +2 -2
  36. package/dist/components/ui/tooltip.d.ts +5 -5
  37. package/dist/index.d.ts +2 -1
  38. package/dist/index.js +2 -1
  39. package/package.json +2 -1
@@ -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_runtime82 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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime82.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_runtime97 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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime97.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_runtime66 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_runtime66.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_runtime66.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_runtime66.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_runtime66.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_runtime66.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_runtime66.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_runtime107 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_runtime107.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_runtime108 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_runtime108.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_runtime108.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_runtime108.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_runtime108.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_runtime129 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_runtime129.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_runtime129.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_runtime131 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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime131.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_runtime141 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_runtime141.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_runtime121 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_runtime121.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_runtime121.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_runtime121.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_runtime121.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_runtime121.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_runtime121.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_runtime121.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_runtime121.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_runtime150 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_runtime150.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_runtime150.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_runtime150.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_runtime150.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_runtime150.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_runtime150.JSX.Element;
30
30
  //#endregion
31
31
  export { TagsInputInLineClear, TagsInputInLineInput, TagsInputInLineItem, TagsInputInLineLabel, TagsInputInLineList, TagsInputInLineRoot };
@@ -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_runtime156 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_runtime156.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_runtime157 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_runtime157.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_runtime158 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_runtime158.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_runtime158.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_runtime158.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_runtime158.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_runtime162 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_runtime162.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 };