@pixpilot/shadcn 0.1.10 → 0.1.11

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 (50) hide show
  1. package/dist/components/ui/OrContinueWithSeparator.d.cts +2 -2
  2. package/dist/components/ui/OrContinueWithSeparator.d.ts +2 -2
  3. package/dist/components/ui/alert-dialog.d.cts +12 -12
  4. package/dist/components/ui/alert-dialog.d.ts +12 -12
  5. package/dist/components/ui/avatar.d.cts +4 -4
  6. package/dist/components/ui/badge.d.cts +4 -4
  7. package/dist/components/ui/badge.d.ts +2 -2
  8. package/dist/components/ui/button.d.cts +4 -4
  9. package/dist/components/ui/button.d.ts +2 -2
  10. package/dist/components/ui/calendar.d.cts +3 -3
  11. package/dist/components/ui/calendar.d.ts +3 -3
  12. package/dist/components/ui/card.d.ts +8 -8
  13. package/dist/components/ui/checkbox.d.cts +2 -2
  14. package/dist/components/ui/checkbox.d.ts +2 -2
  15. package/dist/components/ui/command.d.cts +10 -10
  16. package/dist/components/ui/command.d.ts +10 -10
  17. package/dist/components/ui/dialog.d.cts +11 -11
  18. package/dist/components/ui/dialog.d.ts +11 -11
  19. package/dist/components/ui/dropdown-menu.d.cts +16 -16
  20. package/dist/components/ui/dropdown-menu.d.ts +16 -16
  21. package/dist/components/ui/file-upload.d.cts +11 -11
  22. package/dist/components/ui/file-upload.d.ts +11 -11
  23. package/dist/components/ui/form.d.cts +7 -7
  24. package/dist/components/ui/form.d.ts +7 -7
  25. package/dist/components/ui/input.d.cts +2 -2
  26. package/dist/components/ui/input.d.ts +2 -2
  27. package/dist/components/ui/label.d.cts +2 -2
  28. package/dist/components/ui/label.d.ts +2 -2
  29. package/dist/components/ui/pagination.d.cts +8 -8
  30. package/dist/components/ui/pagination.d.ts +8 -8
  31. package/dist/components/ui/popover.d.cts +5 -5
  32. package/dist/components/ui/popover.d.ts +5 -5
  33. package/dist/components/ui/radio-group.d.cts +3 -3
  34. package/dist/components/ui/radio-group.d.ts +3 -3
  35. package/dist/components/ui/select.d.ts +11 -11
  36. package/dist/components/ui/separator.d.ts +2 -2
  37. package/dist/components/ui/shadcn-io/tags/index.d.cts +9 -9
  38. package/dist/components/ui/shadcn-io/tags/index.d.ts +9 -9
  39. package/dist/components/ui/shadcn-io/tags-input-inline/index.d.cts +7 -7
  40. package/dist/components/ui/sheet.d.cts +9 -9
  41. package/dist/components/ui/slider.d.cts +2 -2
  42. package/dist/components/ui/slider.d.ts +2 -2
  43. package/dist/components/ui/switch.d.cts +2 -2
  44. package/dist/components/ui/switch.d.ts +2 -2
  45. package/dist/components/ui/tabs.d.cts +5 -5
  46. package/dist/components/ui/tabs.d.ts +5 -5
  47. package/dist/components/ui/textarea.d.cts +2 -2
  48. package/dist/components/ui/tooltip.d.cts +5 -5
  49. package/dist/dist/components/ui/button.d.cts +2 -2
  50. package/package.json +3 -3
@@ -1,25 +1,25 @@
1
- import * as react_jsx_runtime37 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime47 from "react/jsx-runtime";
2
2
  import * as React from "react";
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_runtime37.JSX.Element;
8
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime47.JSX.Element;
9
9
  declare function DropdownMenuPortal({
10
10
  ...props
11
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime37.JSX.Element;
11
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime47.JSX.Element;
12
12
  declare function DropdownMenuTrigger({
13
13
  ...props
14
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime37.JSX.Element;
14
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime47.JSX.Element;
15
15
  declare function DropdownMenuContent({
16
16
  className,
17
17
  sideOffset,
18
18
  ...props
19
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime37.JSX.Element;
19
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime47.JSX.Element;
20
20
  declare function DropdownMenuGroup({
21
21
  ...props
22
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime37.JSX.Element;
22
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime47.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_runtime37.JSX.Element;
31
+ }): react_jsx_runtime47.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_runtime37.JSX.Element;
37
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime47.JSX.Element;
38
38
  declare function DropdownMenuRadioGroup({
39
39
  ...props
40
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime37.JSX.Element;
40
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime47.JSX.Element;
41
41
  declare function DropdownMenuRadioItem({
42
42
  className,
43
43
  children,
44
44
  ...props
45
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime37.JSX.Element;
45
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime47.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_runtime37.JSX.Element;
52
+ }): react_jsx_runtime47.JSX.Element;
53
53
  declare function DropdownMenuSeparator({
54
54
  className,
55
55
  ...props
56
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime37.JSX.Element;
56
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime47.JSX.Element;
57
57
  declare function DropdownMenuShortcut({
58
58
  className,
59
59
  ...props
60
- }: React.ComponentProps<'span'>): react_jsx_runtime37.JSX.Element;
60
+ }: React.ComponentProps<'span'>): react_jsx_runtime47.JSX.Element;
61
61
  declare function DropdownMenuSub({
62
62
  ...props
63
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime37.JSX.Element;
63
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime47.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_runtime37.JSX.Element;
71
+ }): react_jsx_runtime47.JSX.Element;
72
72
  declare function DropdownMenuSubContent({
73
73
  className,
74
74
  ...props
75
- }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime37.JSX.Element;
75
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime47.JSX.Element;
76
76
  //#endregion
77
77
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
@@ -1,25 +1,25 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime56 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime46 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_runtime56.JSX.Element;
8
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime46.JSX.Element;
9
9
  declare function DropdownMenuPortal({
10
10
  ...props
11
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime56.JSX.Element;
11
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime46.JSX.Element;
12
12
  declare function DropdownMenuTrigger({
13
13
  ...props
14
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime56.JSX.Element;
14
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime46.JSX.Element;
15
15
  declare function DropdownMenuContent({
16
16
  className,
17
17
  sideOffset,
18
18
  ...props
19
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime56.JSX.Element;
19
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime46.JSX.Element;
20
20
  declare function DropdownMenuGroup({
21
21
  ...props
22
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime56.JSX.Element;
22
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime46.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_runtime56.JSX.Element;
31
+ }): react_jsx_runtime46.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_runtime56.JSX.Element;
37
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime46.JSX.Element;
38
38
  declare function DropdownMenuRadioGroup({
39
39
  ...props
40
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime56.JSX.Element;
40
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime46.JSX.Element;
41
41
  declare function DropdownMenuRadioItem({
42
42
  className,
43
43
  children,
44
44
  ...props
45
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime56.JSX.Element;
45
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime46.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_runtime56.JSX.Element;
52
+ }): react_jsx_runtime46.JSX.Element;
53
53
  declare function DropdownMenuSeparator({
54
54
  className,
55
55
  ...props
56
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime56.JSX.Element;
56
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime46.JSX.Element;
57
57
  declare function DropdownMenuShortcut({
58
58
  className,
59
59
  ...props
60
- }: React.ComponentProps<'span'>): react_jsx_runtime56.JSX.Element;
60
+ }: React.ComponentProps<'span'>): react_jsx_runtime46.JSX.Element;
61
61
  declare function DropdownMenuSub({
62
62
  ...props
63
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime56.JSX.Element;
63
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime46.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_runtime56.JSX.Element;
71
+ }): react_jsx_runtime46.JSX.Element;
72
72
  declare function DropdownMenuSubContent({
73
73
  className,
74
74
  ...props
75
- }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime56.JSX.Element;
75
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime46.JSX.Element;
76
76
  //#endregion
77
77
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime52 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime62 from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
 
4
4
  //#region src/components/ui/file-upload.d.ts
@@ -44,51 +44,51 @@ interface FileUploadRootProps extends Omit<React.ComponentProps<'div'>, 'default
44
44
  multiple?: boolean;
45
45
  required?: boolean;
46
46
  }
47
- declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime52.JSX.Element;
47
+ declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime62.JSX.Element;
48
48
  interface FileUploadDropzoneProps extends React.ComponentProps<'div'> {
49
49
  asChild?: boolean;
50
50
  }
51
- declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime52.JSX.Element;
51
+ declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime62.JSX.Element;
52
52
  interface FileUploadTriggerProps extends React.ComponentProps<'button'> {
53
53
  asChild?: boolean;
54
54
  }
55
- declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime52.JSX.Element;
55
+ declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime62.JSX.Element;
56
56
  interface FileUploadListProps extends React.ComponentProps<'div'> {
57
57
  orientation?: 'horizontal' | 'vertical';
58
58
  asChild?: boolean;
59
59
  forceMount?: boolean;
60
60
  }
61
- declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime52.JSX.Element | null;
61
+ declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime62.JSX.Element | null;
62
62
  interface FileUploadItemProps extends React.ComponentProps<'div'> {
63
63
  value: File;
64
64
  asChild?: boolean;
65
65
  }
66
- declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime52.JSX.Element | null;
66
+ declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime62.JSX.Element | null;
67
67
  interface FileUploadItemPreviewProps extends React.ComponentProps<'div'> {
68
68
  render?: (file: File, fallback: () => React.ReactNode) => React.ReactNode;
69
69
  asChild?: boolean;
70
70
  }
71
- declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime52.JSX.Element | null;
71
+ declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime62.JSX.Element | null;
72
72
  interface FileUploadItemMetadataProps extends React.ComponentProps<'div'> {
73
73
  asChild?: boolean;
74
74
  size?: 'default' | 'sm';
75
75
  }
76
- declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime52.JSX.Element | null;
76
+ declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime62.JSX.Element | null;
77
77
  interface FileUploadItemProgressProps extends React.ComponentProps<'div'> {
78
78
  variant?: 'linear' | 'circular' | 'fill';
79
79
  size?: number;
80
80
  asChild?: boolean;
81
81
  forceMount?: boolean;
82
82
  }
83
- declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime52.JSX.Element | null;
83
+ declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime62.JSX.Element | null;
84
84
  interface FileUploadItemDeleteProps extends React.ComponentProps<'button'> {
85
85
  asChild?: boolean;
86
86
  }
87
- declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime52.JSX.Element | null;
87
+ declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime62.JSX.Element | null;
88
88
  interface FileUploadClearProps extends React.ComponentProps<'button'> {
89
89
  forceMount?: boolean;
90
90
  asChild?: boolean;
91
91
  }
92
- declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime52.JSX.Element | null;
92
+ declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime62.JSX.Element | null;
93
93
  //#endregion
94
94
  export { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime14 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime75 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ui/file-upload.d.ts
5
5
  type Direction = 'ltr' | 'rtl';
@@ -44,51 +44,51 @@ interface FileUploadRootProps extends Omit<React.ComponentProps<'div'>, 'default
44
44
  multiple?: boolean;
45
45
  required?: boolean;
46
46
  }
47
- declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime14.JSX.Element;
47
+ declare function FileUploadRoot(props: FileUploadRootProps): react_jsx_runtime75.JSX.Element;
48
48
  interface FileUploadDropzoneProps extends React.ComponentProps<'div'> {
49
49
  asChild?: boolean;
50
50
  }
51
- declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime14.JSX.Element;
51
+ declare function FileUploadDropzone(props: FileUploadDropzoneProps): react_jsx_runtime75.JSX.Element;
52
52
  interface FileUploadTriggerProps extends React.ComponentProps<'button'> {
53
53
  asChild?: boolean;
54
54
  }
55
- declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime14.JSX.Element;
55
+ declare function FileUploadTrigger(props: FileUploadTriggerProps): react_jsx_runtime75.JSX.Element;
56
56
  interface FileUploadListProps extends React.ComponentProps<'div'> {
57
57
  orientation?: 'horizontal' | 'vertical';
58
58
  asChild?: boolean;
59
59
  forceMount?: boolean;
60
60
  }
61
- declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime14.JSX.Element | null;
61
+ declare function FileUploadList(props: FileUploadListProps): react_jsx_runtime75.JSX.Element | null;
62
62
  interface FileUploadItemProps extends React.ComponentProps<'div'> {
63
63
  value: File;
64
64
  asChild?: boolean;
65
65
  }
66
- declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime14.JSX.Element | null;
66
+ declare function FileUploadItem(props: FileUploadItemProps): react_jsx_runtime75.JSX.Element | null;
67
67
  interface FileUploadItemPreviewProps extends React.ComponentProps<'div'> {
68
68
  render?: (file: File, fallback: () => React.ReactNode) => React.ReactNode;
69
69
  asChild?: boolean;
70
70
  }
71
- declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime14.JSX.Element | null;
71
+ declare function FileUploadItemPreview(props: FileUploadItemPreviewProps): react_jsx_runtime75.JSX.Element | null;
72
72
  interface FileUploadItemMetadataProps extends React.ComponentProps<'div'> {
73
73
  asChild?: boolean;
74
74
  size?: 'default' | 'sm';
75
75
  }
76
- declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime14.JSX.Element | null;
76
+ declare function FileUploadItemMetadata(props: FileUploadItemMetadataProps): react_jsx_runtime75.JSX.Element | null;
77
77
  interface FileUploadItemProgressProps extends React.ComponentProps<'div'> {
78
78
  variant?: 'linear' | 'circular' | 'fill';
79
79
  size?: number;
80
80
  asChild?: boolean;
81
81
  forceMount?: boolean;
82
82
  }
83
- declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime14.JSX.Element | null;
83
+ declare function FileUploadItemProgress(props: FileUploadItemProgressProps): react_jsx_runtime75.JSX.Element | null;
84
84
  interface FileUploadItemDeleteProps extends React.ComponentProps<'button'> {
85
85
  asChild?: boolean;
86
86
  }
87
- declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime14.JSX.Element | null;
87
+ declare function FileUploadItemDelete(props: FileUploadItemDeleteProps): react_jsx_runtime75.JSX.Element | null;
88
88
  interface FileUploadClearProps extends React.ComponentProps<'button'> {
89
89
  forceMount?: boolean;
90
90
  asChild?: boolean;
91
91
  }
92
- declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime14.JSX.Element | null;
92
+ declare function FileUploadClear(props: FileUploadClearProps): react_jsx_runtime75.JSX.Element | null;
93
93
  //#endregion
94
94
  export { FileUploadClear, FileUploadDropzone, FileUploadItem, FileUploadItemDelete, FileUploadItemMetadata, FileUploadItemPreview, FileUploadItemProgress, FileUploadList, FileUploadRoot, FileUploadRootProps, FileUploadTrigger, useStore };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime62 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime72 from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
  import * as react_hook_form0 from "react-hook-form";
4
4
  import { ControllerProps, FieldPath, FieldValues } from "react-hook-form";
@@ -9,7 +9,7 @@ import { Slot } from "@radix-ui/react-slot";
9
9
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
10
10
  declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
11
11
  ...props
12
- }: ControllerProps<TFieldValues, TName>): react_jsx_runtime62.JSX.Element;
12
+ }: ControllerProps<TFieldValues, TName>): react_jsx_runtime72.JSX.Element;
13
13
  declare function useFormField(): {
14
14
  invalid: boolean;
15
15
  isDirty: boolean;
@@ -25,21 +25,21 @@ declare function useFormField(): {
25
25
  declare function FormItem({
26
26
  className,
27
27
  ...props
28
- }: React.ComponentProps<'div'>): react_jsx_runtime62.JSX.Element;
28
+ }: React.ComponentProps<'div'>): react_jsx_runtime72.JSX.Element;
29
29
  declare function FormLabel({
30
30
  className,
31
31
  ...props
32
- }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime62.JSX.Element;
32
+ }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime72.JSX.Element;
33
33
  declare function FormControl({
34
34
  ...props
35
- }: React.ComponentProps<typeof Slot>): react_jsx_runtime62.JSX.Element;
35
+ }: React.ComponentProps<typeof Slot>): react_jsx_runtime72.JSX.Element;
36
36
  declare function FormDescription({
37
37
  className,
38
38
  ...props
39
- }: React.ComponentProps<'p'>): react_jsx_runtime62.JSX.Element;
39
+ }: React.ComponentProps<'p'>): react_jsx_runtime72.JSX.Element;
40
40
  declare function FormMessage({
41
41
  className,
42
42
  ...props
43
- }: React.ComponentProps<'p'>): react_jsx_runtime62.JSX.Element | null;
43
+ }: React.ComponentProps<'p'>): react_jsx_runtime72.JSX.Element | null;
44
44
  //#endregion
45
45
  export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField };
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime80 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime61 from "react/jsx-runtime";
3
3
  import { Slot } from "@radix-ui/react-slot";
4
4
  import * as react_hook_form0 from "react-hook-form";
5
5
  import { ControllerProps, FieldPath, FieldValues } from "react-hook-form";
@@ -9,7 +9,7 @@ import * as LabelPrimitive from "@radix-ui/react-label";
9
9
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
10
10
  declare function FormField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
11
11
  ...props
12
- }: ControllerProps<TFieldValues, TName>): react_jsx_runtime80.JSX.Element;
12
+ }: ControllerProps<TFieldValues, TName>): react_jsx_runtime61.JSX.Element;
13
13
  declare function useFormField(): {
14
14
  invalid: boolean;
15
15
  isDirty: boolean;
@@ -25,21 +25,21 @@ declare function useFormField(): {
25
25
  declare function FormItem({
26
26
  className,
27
27
  ...props
28
- }: React.ComponentProps<'div'>): react_jsx_runtime80.JSX.Element;
28
+ }: React.ComponentProps<'div'>): react_jsx_runtime61.JSX.Element;
29
29
  declare function FormLabel({
30
30
  className,
31
31
  ...props
32
- }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime80.JSX.Element;
32
+ }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime61.JSX.Element;
33
33
  declare function FormControl({
34
34
  ...props
35
- }: React.ComponentProps<typeof Slot>): react_jsx_runtime80.JSX.Element;
35
+ }: React.ComponentProps<typeof Slot>): react_jsx_runtime61.JSX.Element;
36
36
  declare function FormDescription({
37
37
  className,
38
38
  ...props
39
- }: React.ComponentProps<'p'>): react_jsx_runtime80.JSX.Element;
39
+ }: React.ComponentProps<'p'>): react_jsx_runtime61.JSX.Element;
40
40
  declare function FormMessage({
41
41
  className,
42
42
  ...props
43
- }: React.ComponentProps<'p'>): react_jsx_runtime80.JSX.Element | null;
43
+ }: React.ComponentProps<'p'>): react_jsx_runtime61.JSX.Element | null;
44
44
  //#endregion
45
45
  export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime93 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime78 from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
 
4
4
  //#region src/components/ui/input.d.ts
@@ -6,6 +6,6 @@ declare function Input({
6
6
  className,
7
7
  type,
8
8
  ...props
9
- }: React.ComponentProps<'input'>): react_jsx_runtime93.JSX.Element;
9
+ }: React.ComponentProps<'input'>): react_jsx_runtime78.JSX.Element;
10
10
  //#endregion
11
11
  export { Input };
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime53 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime67 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/ui/input.d.ts
5
5
  declare function Input({
6
6
  className,
7
7
  type,
8
8
  ...props
9
- }: React.ComponentProps<'input'>): react_jsx_runtime53.JSX.Element;
9
+ }: React.ComponentProps<'input'>): react_jsx_runtime67.JSX.Element;
10
10
  //#endregion
11
11
  export { Input };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime78 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime79 from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
  import * as LabelPrimitive from "@radix-ui/react-label";
4
4
 
@@ -6,6 +6,6 @@ import * as LabelPrimitive from "@radix-ui/react-label";
6
6
  declare function Label({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime78.JSX.Element;
9
+ }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime79.JSX.Element;
10
10
  //#endregion
11
11
  export { Label };
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime55 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime68 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_runtime55.JSX.Element;
9
+ }: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime68.JSX.Element;
10
10
  //#endregion
11
11
  export { Label };
@@ -1,20 +1,20 @@
1
1
  import { Button } from "../../dist/components/ui/button.cjs";
2
2
  import "../../dist/index.cjs";
3
- import * as react_jsx_runtime80 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime81 from "react/jsx-runtime";
4
4
  import * as React from "react";
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_runtime80.JSX.Element;
10
+ }: React.ComponentProps<'nav'>): react_jsx_runtime81.JSX.Element;
11
11
  declare function PaginationContent({
12
12
  className,
13
13
  ...props
14
- }: React.ComponentProps<'ul'>): react_jsx_runtime80.JSX.Element;
14
+ }: React.ComponentProps<'ul'>): react_jsx_runtime81.JSX.Element;
15
15
  declare function PaginationItem({
16
16
  ...props
17
- }: React.ComponentProps<'li'>): react_jsx_runtime80.JSX.Element;
17
+ }: React.ComponentProps<'li'>): react_jsx_runtime81.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_runtime80.JSX.Element;
26
+ }: PaginationLinkProps): react_jsx_runtime81.JSX.Element;
27
27
  declare function PaginationPrevious({
28
28
  className,
29
29
  ...props
30
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime80.JSX.Element;
30
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime81.JSX.Element;
31
31
  declare function PaginationNext({
32
32
  className,
33
33
  ...props
34
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime80.JSX.Element;
34
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime81.JSX.Element;
35
35
  declare function PaginationEllipsis({
36
36
  className,
37
37
  ...props
38
- }: React.ComponentProps<'span'>): react_jsx_runtime80.JSX.Element;
38
+ }: React.ComponentProps<'span'>): react_jsx_runtime81.JSX.Element;
39
39
  //#endregion
40
40
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious };
@@ -1,19 +1,19 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime73 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime95 from "react/jsx-runtime";
3
3
  import { Button } from "@pixpilot/shadcn";
4
4
 
5
5
  //#region src/components/ui/pagination.d.ts
6
6
  declare function Pagination({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<'nav'>): react_jsx_runtime73.JSX.Element;
9
+ }: React.ComponentProps<'nav'>): react_jsx_runtime95.JSX.Element;
10
10
  declare function PaginationContent({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<'ul'>): react_jsx_runtime73.JSX.Element;
13
+ }: React.ComponentProps<'ul'>): react_jsx_runtime95.JSX.Element;
14
14
  declare function PaginationItem({
15
15
  ...props
16
- }: React.ComponentProps<'li'>): react_jsx_runtime73.JSX.Element;
16
+ }: React.ComponentProps<'li'>): react_jsx_runtime95.JSX.Element;
17
17
  type PaginationLinkProps = {
18
18
  isActive?: boolean;
19
19
  } & Pick<React.ComponentProps<typeof Button>, 'size'> & React.ComponentProps<'a'>;
@@ -22,18 +22,18 @@ declare function PaginationLink({
22
22
  isActive,
23
23
  size,
24
24
  ...props
25
- }: PaginationLinkProps): react_jsx_runtime73.JSX.Element;
25
+ }: PaginationLinkProps): react_jsx_runtime95.JSX.Element;
26
26
  declare function PaginationPrevious({
27
27
  className,
28
28
  ...props
29
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime73.JSX.Element;
29
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime95.JSX.Element;
30
30
  declare function PaginationNext({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime73.JSX.Element;
33
+ }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime95.JSX.Element;
34
34
  declare function PaginationEllipsis({
35
35
  className,
36
36
  ...props
37
- }: React.ComponentProps<'span'>): react_jsx_runtime73.JSX.Element;
37
+ }: React.ComponentProps<'span'>): react_jsx_runtime95.JSX.Element;
38
38
  //#endregion
39
39
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious };
@@ -1,22 +1,22 @@
1
- import * as react_jsx_runtime89 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime88 from "react/jsx-runtime";
2
2
  import * as React from "react";
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_runtime89.JSX.Element;
8
+ }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime88.JSX.Element;
9
9
  declare function PopoverTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime89.JSX.Element;
11
+ }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime88.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_runtime89.JSX.Element;
17
+ }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime88.JSX.Element;
18
18
  declare function PopoverAnchor({
19
19
  ...props
20
- }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime89.JSX.Element;
20
+ }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime88.JSX.Element;
21
21
  //#endregion
22
22
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
@@ -1,22 +1,22 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime109 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime71 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_runtime109.JSX.Element;
8
+ }: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime71.JSX.Element;
9
9
  declare function PopoverTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime109.JSX.Element;
11
+ }: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime71.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_runtime109.JSX.Element;
17
+ }: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime71.JSX.Element;
18
18
  declare function PopoverAnchor({
19
19
  ...props
20
- }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime109.JSX.Element;
20
+ }: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime71.JSX.Element;
21
21
  //#endregion
22
22
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime87 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime92 from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
  import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
4
4
 
@@ -6,10 +6,10 @@ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
6
6
  declare function RadioGroup({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime87.JSX.Element;
9
+ }: React.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime92.JSX.Element;
10
10
  declare function RadioGroupItem({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime87.JSX.Element;
13
+ }: React.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime92.JSX.Element;
14
14
  //#endregion
15
15
  export { RadioGroup, RadioGroupItem };