@databricks/appkit-ui 0.0.2 → 0.1.2

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 (71) hide show
  1. package/NOTICE.md +3 -1
  2. package/dist/react/charts/area/index.d.ts +2 -2
  3. package/dist/react/charts/bar/index.d.ts +2 -2
  4. package/dist/react/charts/base.d.ts +2 -2
  5. package/dist/react/charts/create-chart.d.ts +2 -2
  6. package/dist/react/charts/heatmap/index.d.ts +2 -2
  7. package/dist/react/charts/line/index.d.ts +2 -2
  8. package/dist/react/charts/pie/index.d.ts +3 -3
  9. package/dist/react/charts/radar/index.d.ts +2 -2
  10. package/dist/react/charts/scatter/index.d.ts +2 -2
  11. package/dist/react/charts/wrapper.d.ts +2 -2
  12. package/dist/react/table/data-table.d.ts +2 -2
  13. package/dist/react/table/data-table.d.ts.map +1 -1
  14. package/dist/react/ui/accordion.d.ts +5 -5
  15. package/dist/react/ui/alert-dialog.d.ts +12 -12
  16. package/dist/react/ui/alert-dialog.d.ts.map +1 -1
  17. package/dist/react/ui/alert.d.ts +4 -4
  18. package/dist/react/ui/aspect-ratio.d.ts +2 -2
  19. package/dist/react/ui/aspect-ratio.d.ts.map +1 -1
  20. package/dist/react/ui/avatar.d.ts +4 -4
  21. package/dist/react/ui/badge.d.ts +2 -2
  22. package/dist/react/ui/breadcrumb.d.ts +8 -8
  23. package/dist/react/ui/button-group.d.ts +6 -6
  24. package/dist/react/ui/button.d.ts +2 -2
  25. package/dist/react/ui/calendar.d.ts +3 -3
  26. package/dist/react/ui/card.d.ts +8 -8
  27. package/dist/react/ui/carousel.d.ts +6 -6
  28. package/dist/react/ui/chart.d.ts +5 -5
  29. package/dist/react/ui/checkbox.d.ts +2 -2
  30. package/dist/react/ui/collapsible.d.ts +4 -4
  31. package/dist/react/ui/command.d.ts +10 -10
  32. package/dist/react/ui/context-menu.d.ts +16 -16
  33. package/dist/react/ui/dialog.d.ts +11 -11
  34. package/dist/react/ui/drawer.d.ts +11 -11
  35. package/dist/react/ui/dropdown-menu.d.ts +16 -16
  36. package/dist/react/ui/empty.d.ts +9 -9
  37. package/dist/react/ui/field.d.ts +13 -13
  38. package/dist/react/ui/form.d.ts +7 -7
  39. package/dist/react/ui/hover-card.d.ts +4 -4
  40. package/dist/react/ui/input-group.d.ts +7 -7
  41. package/dist/react/ui/input-otp.d.ts +5 -5
  42. package/dist/react/ui/input.d.ts +2 -2
  43. package/dist/react/ui/item.d.ts +14 -14
  44. package/dist/react/ui/kbd.d.ts +3 -3
  45. package/dist/react/ui/label.d.ts +2 -2
  46. package/dist/react/ui/menubar.d.ts +17 -17
  47. package/dist/react/ui/navigation-menu.d.ts +11 -11
  48. package/dist/react/ui/pagination.d.ts +8 -8
  49. package/dist/react/ui/popover.d.ts +5 -5
  50. package/dist/react/ui/progress.d.ts +2 -2
  51. package/dist/react/ui/radio-group.d.ts +3 -3
  52. package/dist/react/ui/resizable.d.ts +4 -4
  53. package/dist/react/ui/scroll-area.d.ts +3 -3
  54. package/dist/react/ui/select.d.ts +11 -11
  55. package/dist/react/ui/separator.d.ts +2 -2
  56. package/dist/react/ui/sheet.d.ts +9 -9
  57. package/dist/react/ui/sidebar.d.ts +24 -24
  58. package/dist/react/ui/skeleton.d.ts +2 -2
  59. package/dist/react/ui/slider.d.ts +2 -2
  60. package/dist/react/ui/sonner.d.ts +2 -2
  61. package/dist/react/ui/spinner.d.ts +2 -2
  62. package/dist/react/ui/switch.d.ts +2 -2
  63. package/dist/react/ui/table.d.ts +9 -9
  64. package/dist/react/ui/tabs.d.ts +5 -5
  65. package/dist/react/ui/textarea.d.ts +2 -2
  66. package/dist/react/ui/toggle-group.d.ts +3 -3
  67. package/dist/react/ui/toggle.d.ts +2 -2
  68. package/dist/react/ui/tooltip.d.ts +5 -5
  69. package/dist/react/ui/tooltip.d.ts.map +1 -1
  70. package/llms.txt +1027 -143
  71. package/package.json +5 -1
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime48 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime51 from "react/jsx-runtime";
3
3
  import * as RechartsPrimitive from "recharts";
4
4
 
5
5
  //#region src/react/ui/chart.d.ts
@@ -26,14 +26,14 @@ declare function ChartContainer({
26
26
  }: React.ComponentProps<"div"> & {
27
27
  config: ChartConfig;
28
28
  children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
29
- }): react_jsx_runtime48.JSX.Element;
29
+ }): react_jsx_runtime51.JSX.Element;
30
30
  declare const ChartStyle: ({
31
31
  id,
32
32
  config
33
33
  }: {
34
34
  id: string;
35
35
  config: ChartConfig;
36
- }) => react_jsx_runtime48.JSX.Element | null;
36
+ }) => react_jsx_runtime51.JSX.Element | null;
37
37
  declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
38
38
  declare function ChartTooltipContent({
39
39
  active,
@@ -62,7 +62,7 @@ declare function ChartTooltipContent({
62
62
  labelClassName?: string;
63
63
  nameKey?: string;
64
64
  labelKey?: string;
65
- }): react_jsx_runtime48.JSX.Element | null;
65
+ }): react_jsx_runtime51.JSX.Element | null;
66
66
  declare const ChartLegend: typeof RechartsPrimitive.Legend;
67
67
  declare function ChartLegendContent({
68
68
  className,
@@ -74,7 +74,7 @@ declare function ChartLegendContent({
74
74
  payload?: any[];
75
75
  hideIcon?: boolean;
76
76
  nameKey?: string;
77
- }): react_jsx_runtime48.JSX.Element | null;
77
+ }): react_jsx_runtime51.JSX.Element | null;
78
78
  //#endregion
79
79
  export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent };
80
80
  //# sourceMappingURL=chart.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime64 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime55 from "react/jsx-runtime";
3
3
  import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
4
4
 
5
5
  //#region src/react/ui/checkbox.d.ts
6
6
  declare function Checkbox({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime64.JSX.Element;
9
+ }: React.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime55.JSX.Element;
10
10
  //#endregion
11
11
  export { Checkbox };
12
12
  //# sourceMappingURL=checkbox.d.ts.map
@@ -1,16 +1,16 @@
1
- import * as react_jsx_runtime52 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime56 from "react/jsx-runtime";
2
2
  import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
3
3
 
4
4
  //#region src/react/ui/collapsible.d.ts
5
5
  declare function Collapsible({
6
6
  ...props
7
- }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime52.JSX.Element;
7
+ }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime56.JSX.Element;
8
8
  declare function CollapsibleTrigger({
9
9
  ...props
10
- }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime52.JSX.Element;
10
+ }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime56.JSX.Element;
11
11
  declare function CollapsibleContent({
12
12
  ...props
13
- }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime52.JSX.Element;
13
+ }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime56.JSX.Element;
14
14
  //#endregion
15
15
  export { Collapsible, CollapsibleContent, CollapsibleTrigger };
16
16
  //# sourceMappingURL=collapsible.d.ts.map
@@ -1,13 +1,13 @@
1
1
  import { Dialog } from "./dialog.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime55 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime59 from "react/jsx-runtime";
4
4
  import { Command } from "cmdk";
5
5
 
6
6
  //#region src/react/ui/command.d.ts
7
7
  declare function Command$1({
8
8
  className,
9
9
  ...props
10
- }: React.ComponentProps<typeof Command>): react_jsx_runtime55.JSX.Element;
10
+ }: React.ComponentProps<typeof Command>): react_jsx_runtime59.JSX.Element;
11
11
  declare function CommandDialog({
12
12
  title,
13
13
  description,
@@ -20,34 +20,34 @@ declare function CommandDialog({
20
20
  description?: string;
21
21
  className?: string;
22
22
  showCloseButton?: boolean;
23
- }): react_jsx_runtime55.JSX.Element;
23
+ }): react_jsx_runtime59.JSX.Element;
24
24
  declare function CommandInput({
25
25
  className,
26
26
  ...props
27
- }: React.ComponentProps<typeof Command.Input>): react_jsx_runtime55.JSX.Element;
27
+ }: React.ComponentProps<typeof Command.Input>): react_jsx_runtime59.JSX.Element;
28
28
  declare function CommandList({
29
29
  className,
30
30
  ...props
31
- }: React.ComponentProps<typeof Command.List>): react_jsx_runtime55.JSX.Element;
31
+ }: React.ComponentProps<typeof Command.List>): react_jsx_runtime59.JSX.Element;
32
32
  declare function CommandEmpty({
33
33
  ...props
34
- }: React.ComponentProps<typeof Command.Empty>): react_jsx_runtime55.JSX.Element;
34
+ }: React.ComponentProps<typeof Command.Empty>): react_jsx_runtime59.JSX.Element;
35
35
  declare function CommandGroup({
36
36
  className,
37
37
  ...props
38
- }: React.ComponentProps<typeof Command.Group>): react_jsx_runtime55.JSX.Element;
38
+ }: React.ComponentProps<typeof Command.Group>): react_jsx_runtime59.JSX.Element;
39
39
  declare function CommandSeparator({
40
40
  className,
41
41
  ...props
42
- }: React.ComponentProps<typeof Command.Separator>): react_jsx_runtime55.JSX.Element;
42
+ }: React.ComponentProps<typeof Command.Separator>): react_jsx_runtime59.JSX.Element;
43
43
  declare function CommandItem({
44
44
  className,
45
45
  ...props
46
- }: React.ComponentProps<typeof Command.Item>): react_jsx_runtime55.JSX.Element;
46
+ }: React.ComponentProps<typeof Command.Item>): react_jsx_runtime59.JSX.Element;
47
47
  declare function CommandShortcut({
48
48
  className,
49
49
  ...props
50
- }: React.ComponentProps<"span">): react_jsx_runtime55.JSX.Element;
50
+ }: React.ComponentProps<"span">): react_jsx_runtime59.JSX.Element;
51
51
  //#endregion
52
52
  export { Command$1 as Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut };
53
53
  //# sourceMappingURL=command.d.ts.map
@@ -1,26 +1,26 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime75 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime68 from "react/jsx-runtime";
3
3
  import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
4
4
 
5
5
  //#region src/react/ui/context-menu.d.ts
6
6
  declare function ContextMenu({
7
7
  ...props
8
- }: React.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime75.JSX.Element;
8
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime68.JSX.Element;
9
9
  declare function ContextMenuTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime75.JSX.Element;
11
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime68.JSX.Element;
12
12
  declare function ContextMenuGroup({
13
13
  ...props
14
- }: React.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime75.JSX.Element;
14
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime68.JSX.Element;
15
15
  declare function ContextMenuPortal({
16
16
  ...props
17
- }: React.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime75.JSX.Element;
17
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime68.JSX.Element;
18
18
  declare function ContextMenuSub({
19
19
  ...props
20
- }: React.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime75.JSX.Element;
20
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime68.JSX.Element;
21
21
  declare function ContextMenuRadioGroup({
22
22
  ...props
23
- }: React.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime75.JSX.Element;
23
+ }: React.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime68.JSX.Element;
24
24
  declare function ContextMenuSubTrigger({
25
25
  className,
26
26
  inset,
@@ -28,15 +28,15 @@ declare function ContextMenuSubTrigger({
28
28
  ...props
29
29
  }: React.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
30
30
  inset?: boolean;
31
- }): react_jsx_runtime75.JSX.Element;
31
+ }): react_jsx_runtime68.JSX.Element;
32
32
  declare function ContextMenuSubContent({
33
33
  className,
34
34
  ...props
35
- }: React.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime75.JSX.Element;
35
+ }: React.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime68.JSX.Element;
36
36
  declare function ContextMenuContent({
37
37
  className,
38
38
  ...props
39
- }: React.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime75.JSX.Element;
39
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime68.JSX.Element;
40
40
  declare function ContextMenuItem({
41
41
  className,
42
42
  inset,
@@ -45,33 +45,33 @@ declare function ContextMenuItem({
45
45
  }: React.ComponentProps<typeof ContextMenuPrimitive.Item> & {
46
46
  inset?: boolean;
47
47
  variant?: "default" | "destructive";
48
- }): react_jsx_runtime75.JSX.Element;
48
+ }): react_jsx_runtime68.JSX.Element;
49
49
  declare function ContextMenuCheckboxItem({
50
50
  className,
51
51
  children,
52
52
  checked,
53
53
  ...props
54
- }: React.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime75.JSX.Element;
54
+ }: React.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime68.JSX.Element;
55
55
  declare function ContextMenuRadioItem({
56
56
  className,
57
57
  children,
58
58
  ...props
59
- }: React.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime75.JSX.Element;
59
+ }: React.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime68.JSX.Element;
60
60
  declare function ContextMenuLabel({
61
61
  className,
62
62
  inset,
63
63
  ...props
64
64
  }: React.ComponentProps<typeof ContextMenuPrimitive.Label> & {
65
65
  inset?: boolean;
66
- }): react_jsx_runtime75.JSX.Element;
66
+ }): react_jsx_runtime68.JSX.Element;
67
67
  declare function ContextMenuSeparator({
68
68
  className,
69
69
  ...props
70
- }: React.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime75.JSX.Element;
70
+ }: React.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime68.JSX.Element;
71
71
  declare function ContextMenuShortcut({
72
72
  className,
73
73
  ...props
74
- }: React.ComponentProps<"span">): react_jsx_runtime75.JSX.Element;
74
+ }: React.ComponentProps<"span">): react_jsx_runtime68.JSX.Element;
75
75
  //#endregion
76
76
  export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger };
77
77
  //# sourceMappingURL=context-menu.d.ts.map
@@ -1,24 +1,24 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime65 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime83 from "react/jsx-runtime";
3
3
  import * as DialogPrimitive from "@radix-ui/react-dialog";
4
4
 
5
5
  //#region src/react/ui/dialog.d.ts
6
6
  declare function Dialog({
7
7
  ...props
8
- }: React.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime65.JSX.Element;
8
+ }: React.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime83.JSX.Element;
9
9
  declare function DialogTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime65.JSX.Element;
11
+ }: React.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime83.JSX.Element;
12
12
  declare function DialogPortal({
13
13
  ...props
14
- }: React.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime65.JSX.Element;
14
+ }: React.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime83.JSX.Element;
15
15
  declare function DialogClose({
16
16
  ...props
17
- }: React.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime65.JSX.Element;
17
+ }: React.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime83.JSX.Element;
18
18
  declare function DialogOverlay({
19
19
  className,
20
20
  ...props
21
- }: React.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime65.JSX.Element;
21
+ }: React.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime83.JSX.Element;
22
22
  declare function DialogContent({
23
23
  className,
24
24
  children,
@@ -26,23 +26,23 @@ declare function DialogContent({
26
26
  ...props
27
27
  }: React.ComponentProps<typeof DialogPrimitive.Content> & {
28
28
  showCloseButton?: boolean;
29
- }): react_jsx_runtime65.JSX.Element;
29
+ }): react_jsx_runtime83.JSX.Element;
30
30
  declare function DialogHeader({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<"div">): react_jsx_runtime65.JSX.Element;
33
+ }: React.ComponentProps<"div">): react_jsx_runtime83.JSX.Element;
34
34
  declare function DialogFooter({
35
35
  className,
36
36
  ...props
37
- }: React.ComponentProps<"div">): react_jsx_runtime65.JSX.Element;
37
+ }: React.ComponentProps<"div">): react_jsx_runtime83.JSX.Element;
38
38
  declare function DialogTitle({
39
39
  className,
40
40
  ...props
41
- }: React.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime65.JSX.Element;
41
+ }: React.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime83.JSX.Element;
42
42
  declare function DialogDescription({
43
43
  className,
44
44
  ...props
45
- }: React.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime65.JSX.Element;
45
+ }: React.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime83.JSX.Element;
46
46
  //#endregion
47
47
  export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger };
48
48
  //# sourceMappingURL=dialog.d.ts.map
@@ -1,45 +1,45 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime90 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime93 from "react/jsx-runtime";
3
3
  import { Drawer } from "vaul";
4
4
 
5
5
  //#region src/react/ui/drawer.d.ts
6
6
  declare function Drawer$1({
7
7
  ...props
8
- }: React.ComponentProps<typeof Drawer.Root>): react_jsx_runtime90.JSX.Element;
8
+ }: React.ComponentProps<typeof Drawer.Root>): react_jsx_runtime93.JSX.Element;
9
9
  declare function DrawerTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof Drawer.Trigger>): react_jsx_runtime90.JSX.Element;
11
+ }: React.ComponentProps<typeof Drawer.Trigger>): react_jsx_runtime93.JSX.Element;
12
12
  declare function DrawerPortal({
13
13
  ...props
14
- }: React.ComponentProps<typeof Drawer.Portal>): react_jsx_runtime90.JSX.Element;
14
+ }: React.ComponentProps<typeof Drawer.Portal>): react_jsx_runtime93.JSX.Element;
15
15
  declare function DrawerClose({
16
16
  ...props
17
- }: React.ComponentProps<typeof Drawer.Close>): react_jsx_runtime90.JSX.Element;
17
+ }: React.ComponentProps<typeof Drawer.Close>): react_jsx_runtime93.JSX.Element;
18
18
  declare function DrawerOverlay({
19
19
  className,
20
20
  ...props
21
- }: React.ComponentProps<typeof Drawer.Overlay>): react_jsx_runtime90.JSX.Element;
21
+ }: React.ComponentProps<typeof Drawer.Overlay>): react_jsx_runtime93.JSX.Element;
22
22
  declare function DrawerContent({
23
23
  className,
24
24
  children,
25
25
  ...props
26
- }: React.ComponentProps<typeof Drawer.Content>): react_jsx_runtime90.JSX.Element;
26
+ }: React.ComponentProps<typeof Drawer.Content>): react_jsx_runtime93.JSX.Element;
27
27
  declare function DrawerHeader({
28
28
  className,
29
29
  ...props
30
- }: React.ComponentProps<"div">): react_jsx_runtime90.JSX.Element;
30
+ }: React.ComponentProps<"div">): react_jsx_runtime93.JSX.Element;
31
31
  declare function DrawerFooter({
32
32
  className,
33
33
  ...props
34
- }: React.ComponentProps<"div">): react_jsx_runtime90.JSX.Element;
34
+ }: React.ComponentProps<"div">): react_jsx_runtime93.JSX.Element;
35
35
  declare function DrawerTitle({
36
36
  className,
37
37
  ...props
38
- }: React.ComponentProps<typeof Drawer.Title>): react_jsx_runtime90.JSX.Element;
38
+ }: React.ComponentProps<typeof Drawer.Title>): react_jsx_runtime93.JSX.Element;
39
39
  declare function DrawerDescription({
40
40
  className,
41
41
  ...props
42
- }: React.ComponentProps<typeof Drawer.Description>): react_jsx_runtime90.JSX.Element;
42
+ }: React.ComponentProps<typeof Drawer.Description>): react_jsx_runtime93.JSX.Element;
43
43
  //#endregion
44
44
  export { Drawer$1 as Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger };
45
45
  //# sourceMappingURL=drawer.d.ts.map
@@ -1,25 +1,25 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime110 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime103 from "react/jsx-runtime";
3
3
  import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
4
4
 
5
5
  //#region src/react/ui/dropdown-menu.d.ts
6
6
  declare function DropdownMenu({
7
7
  ...props
8
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime110.JSX.Element;
8
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime103.JSX.Element;
9
9
  declare function DropdownMenuPortal({
10
10
  ...props
11
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime110.JSX.Element;
11
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime103.JSX.Element;
12
12
  declare function DropdownMenuTrigger({
13
13
  ...props
14
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime110.JSX.Element;
14
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime103.JSX.Element;
15
15
  declare function DropdownMenuContent({
16
16
  className,
17
17
  sideOffset,
18
18
  ...props
19
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime110.JSX.Element;
19
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime103.JSX.Element;
20
20
  declare function DropdownMenuGroup({
21
21
  ...props
22
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime110.JSX.Element;
22
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime103.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_runtime110.JSX.Element;
31
+ }): react_jsx_runtime103.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_runtime110.JSX.Element;
37
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime103.JSX.Element;
38
38
  declare function DropdownMenuRadioGroup({
39
39
  ...props
40
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime110.JSX.Element;
40
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime103.JSX.Element;
41
41
  declare function DropdownMenuRadioItem({
42
42
  className,
43
43
  children,
44
44
  ...props
45
- }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime110.JSX.Element;
45
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime103.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_runtime110.JSX.Element;
52
+ }): react_jsx_runtime103.JSX.Element;
53
53
  declare function DropdownMenuSeparator({
54
54
  className,
55
55
  ...props
56
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime110.JSX.Element;
56
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime103.JSX.Element;
57
57
  declare function DropdownMenuShortcut({
58
58
  className,
59
59
  ...props
60
- }: React.ComponentProps<"span">): react_jsx_runtime110.JSX.Element;
60
+ }: React.ComponentProps<"span">): react_jsx_runtime103.JSX.Element;
61
61
  declare function DropdownMenuSub({
62
62
  ...props
63
- }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime110.JSX.Element;
63
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime103.JSX.Element;
64
64
  declare function DropdownMenuSubTrigger({
65
65
  className,
66
66
  inset,
@@ -68,11 +68,11 @@ declare function DropdownMenuSubTrigger({
68
68
  ...props
69
69
  }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
70
70
  inset?: boolean;
71
- }): react_jsx_runtime110.JSX.Element;
71
+ }): react_jsx_runtime103.JSX.Element;
72
72
  declare function DropdownMenuSubContent({
73
73
  className,
74
74
  ...props
75
- }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime110.JSX.Element;
75
+ }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime103.JSX.Element;
76
76
  //#endregion
77
77
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
78
78
  //# sourceMappingURL=dropdown-menu.d.ts.map
@@ -1,36 +1,36 @@
1
- import * as react_jsx_runtime125 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime118 from "react/jsx-runtime";
2
2
  import { VariantProps } from "class-variance-authority";
3
- import * as class_variance_authority_types4 from "class-variance-authority/types";
3
+ import * as class_variance_authority_types3 from "class-variance-authority/types";
4
4
 
5
5
  //#region src/react/ui/empty.d.ts
6
6
  declare function Empty({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<"div">): react_jsx_runtime125.JSX.Element;
9
+ }: React.ComponentProps<"div">): react_jsx_runtime118.JSX.Element;
10
10
  declare function EmptyHeader({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<"div">): react_jsx_runtime125.JSX.Element;
13
+ }: React.ComponentProps<"div">): react_jsx_runtime118.JSX.Element;
14
14
  declare const emptyMediaVariants: (props?: ({
15
15
  variant?: "default" | "icon" | null | undefined;
16
- } & class_variance_authority_types4.ClassProp) | undefined) => string;
16
+ } & class_variance_authority_types3.ClassProp) | undefined) => string;
17
17
  declare function EmptyMedia({
18
18
  className,
19
19
  variant,
20
20
  ...props
21
- }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime125.JSX.Element;
21
+ }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime118.JSX.Element;
22
22
  declare function EmptyTitle({
23
23
  className,
24
24
  ...props
25
- }: React.ComponentProps<"div">): react_jsx_runtime125.JSX.Element;
25
+ }: React.ComponentProps<"div">): react_jsx_runtime118.JSX.Element;
26
26
  declare function EmptyDescription({
27
27
  className,
28
28
  ...props
29
- }: React.ComponentProps<"p">): react_jsx_runtime125.JSX.Element;
29
+ }: React.ComponentProps<"p">): react_jsx_runtime118.JSX.Element;
30
30
  declare function EmptyContent({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<"div">): react_jsx_runtime125.JSX.Element;
33
+ }: React.ComponentProps<"div">): react_jsx_runtime118.JSX.Element;
34
34
  //#endregion
35
35
  export { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle };
36
36
  //# sourceMappingURL=empty.d.ts.map
@@ -1,55 +1,55 @@
1
1
  import { Label } from "./label.js";
2
- import * as react_jsx_runtime100 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime124 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
- import * as class_variance_authority_types3 from "class-variance-authority/types";
4
+ import * as class_variance_authority_types4 from "class-variance-authority/types";
5
5
 
6
6
  //#region src/react/ui/field.d.ts
7
7
  declare function FieldSet({
8
8
  className,
9
9
  ...props
10
- }: React.ComponentProps<"fieldset">): react_jsx_runtime100.JSX.Element;
10
+ }: React.ComponentProps<"fieldset">): react_jsx_runtime124.JSX.Element;
11
11
  declare function FieldLegend({
12
12
  className,
13
13
  variant,
14
14
  ...props
15
15
  }: React.ComponentProps<"legend"> & {
16
16
  variant?: "legend" | "label";
17
- }): react_jsx_runtime100.JSX.Element;
17
+ }): react_jsx_runtime124.JSX.Element;
18
18
  declare function FieldGroup({
19
19
  className,
20
20
  ...props
21
- }: React.ComponentProps<"div">): react_jsx_runtime100.JSX.Element;
21
+ }: React.ComponentProps<"div">): react_jsx_runtime124.JSX.Element;
22
22
  declare const fieldVariants: (props?: ({
23
23
  orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
24
- } & class_variance_authority_types3.ClassProp) | undefined) => string;
24
+ } & class_variance_authority_types4.ClassProp) | undefined) => string;
25
25
  declare function Field({
26
26
  className,
27
27
  orientation,
28
28
  ...props
29
- }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime100.JSX.Element;
29
+ }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime124.JSX.Element;
30
30
  declare function FieldContent({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<"div">): react_jsx_runtime100.JSX.Element;
33
+ }: React.ComponentProps<"div">): react_jsx_runtime124.JSX.Element;
34
34
  declare function FieldLabel({
35
35
  className,
36
36
  ...props
37
- }: React.ComponentProps<typeof Label>): react_jsx_runtime100.JSX.Element;
37
+ }: React.ComponentProps<typeof Label>): react_jsx_runtime124.JSX.Element;
38
38
  declare function FieldTitle({
39
39
  className,
40
40
  ...props
41
- }: React.ComponentProps<"div">): react_jsx_runtime100.JSX.Element;
41
+ }: React.ComponentProps<"div">): react_jsx_runtime124.JSX.Element;
42
42
  declare function FieldDescription({
43
43
  className,
44
44
  ...props
45
- }: React.ComponentProps<"p">): react_jsx_runtime100.JSX.Element;
45
+ }: React.ComponentProps<"p">): react_jsx_runtime124.JSX.Element;
46
46
  declare function FieldSeparator({
47
47
  children,
48
48
  className,
49
49
  ...props
50
50
  }: React.ComponentProps<"div"> & {
51
51
  children?: React.ReactNode;
52
- }): react_jsx_runtime100.JSX.Element;
52
+ }): react_jsx_runtime124.JSX.Element;
53
53
  declare function FieldError({
54
54
  className,
55
55
  children,
@@ -59,7 +59,7 @@ declare function FieldError({
59
59
  errors?: Array<{
60
60
  message?: string;
61
61
  } | undefined>;
62
- }): react_jsx_runtime100.JSX.Element | null;
62
+ }): react_jsx_runtime124.JSX.Element | null;
63
63
  //#endregion
64
64
  export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle };
65
65
  //# sourceMappingURL=field.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as react0 from "react";
2
- import * as react_jsx_runtime138 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime134 from "react/jsx-runtime";
3
3
  import { Slot } from "@radix-ui/react-slot";
4
4
  import * as LabelPrimitive from "@radix-ui/react-label";
5
5
  import * as react_hook_form0 from "react-hook-form";
@@ -9,7 +9,7 @@ import { ControllerProps, FieldPath, FieldValues } from "react-hook-form";
9
9
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => react0.JSX.Element;
10
10
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
11
11
  ...props
12
- }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime138.JSX.Element;
12
+ }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime134.JSX.Element;
13
13
  declare const useFormField: () => {
14
14
  invalid: boolean;
15
15
  isDirty: boolean;
@@ -25,22 +25,22 @@ declare const useFormField: () => {
25
25
  declare function FormItem({
26
26
  className,
27
27
  ...props
28
- }: react0.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
28
+ }: react0.ComponentProps<"div">): react_jsx_runtime134.JSX.Element;
29
29
  declare function FormLabel({
30
30
  className,
31
31
  ...props
32
- }: react0.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime138.JSX.Element;
32
+ }: react0.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime134.JSX.Element;
33
33
  declare function FormControl({
34
34
  ...props
35
- }: react0.ComponentProps<typeof Slot>): react_jsx_runtime138.JSX.Element;
35
+ }: react0.ComponentProps<typeof Slot>): react_jsx_runtime134.JSX.Element;
36
36
  declare function FormDescription({
37
37
  className,
38
38
  ...props
39
- }: react0.ComponentProps<"p">): react_jsx_runtime138.JSX.Element;
39
+ }: react0.ComponentProps<"p">): react_jsx_runtime134.JSX.Element;
40
40
  declare function FormMessage({
41
41
  className,
42
42
  ...props
43
- }: react0.ComponentProps<"p">): react_jsx_runtime138.JSX.Element | null;
43
+ }: react0.ComponentProps<"p">): react_jsx_runtime134.JSX.Element | null;
44
44
  //#endregion
45
45
  export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField };
46
46
  //# sourceMappingURL=form.d.ts.map
@@ -1,20 +1,20 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime148 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime140 from "react/jsx-runtime";
3
3
  import * as HoverCardPrimitive from "@radix-ui/react-hover-card";
4
4
 
5
5
  //#region src/react/ui/hover-card.d.ts
6
6
  declare function HoverCard({
7
7
  ...props
8
- }: React.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime148.JSX.Element;
8
+ }: React.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime140.JSX.Element;
9
9
  declare function HoverCardTrigger({
10
10
  ...props
11
- }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime148.JSX.Element;
11
+ }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime140.JSX.Element;
12
12
  declare function HoverCardContent({
13
13
  className,
14
14
  align,
15
15
  sideOffset,
16
16
  ...props
17
- }: React.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime148.JSX.Element;
17
+ }: React.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime140.JSX.Element;
18
18
  //#endregion
19
19
  export { HoverCard, HoverCardContent, HoverCardTrigger };
20
20
  //# sourceMappingURL=hover-card.d.ts.map