@databricks/appkit-ui 0.2.0 → 0.3.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 (76) hide show
  1. package/AGENTS.md +5 -2
  2. package/CLAUDE.md +5 -2
  3. package/dist/react/charts/create-chart.js +1 -2
  4. package/dist/react/charts/create-chart.js.map +1 -1
  5. package/dist/react/charts/types.d.ts +0 -5
  6. package/dist/react/charts/types.d.ts.map +1 -1
  7. package/dist/react/charts/types.js.map +1 -1
  8. package/dist/react/charts/wrapper.d.ts +0 -2
  9. package/dist/react/charts/wrapper.d.ts.map +1 -1
  10. package/dist/react/charts/wrapper.js +2 -4
  11. package/dist/react/charts/wrapper.js.map +1 -1
  12. package/dist/react/hooks/types.d.ts +0 -2
  13. package/dist/react/hooks/types.d.ts.map +1 -1
  14. package/dist/react/hooks/use-analytics-query.d.ts +4 -0
  15. package/dist/react/hooks/use-analytics-query.d.ts.map +1 -1
  16. package/dist/react/hooks/use-analytics-query.js +5 -2
  17. package/dist/react/hooks/use-analytics-query.js.map +1 -1
  18. package/dist/react/hooks/use-chart-data.d.ts +0 -2
  19. package/dist/react/hooks/use-chart-data.d.ts.map +1 -1
  20. package/dist/react/hooks/use-chart-data.js +2 -3
  21. package/dist/react/hooks/use-chart-data.js.map +1 -1
  22. package/dist/react/table/table-wrapper.js +2 -3
  23. package/dist/react/table/table-wrapper.js.map +1 -1
  24. package/dist/react/table/types.d.ts.map +1 -1
  25. package/dist/react/ui/accordion.d.ts +5 -5
  26. package/dist/react/ui/alert-dialog.d.ts +12 -12
  27. package/dist/react/ui/alert.d.ts +4 -4
  28. package/dist/react/ui/aspect-ratio.d.ts +2 -2
  29. package/dist/react/ui/avatar.d.ts +4 -4
  30. package/dist/react/ui/avatar.d.ts.map +1 -1
  31. package/dist/react/ui/badge.d.ts +4 -4
  32. package/dist/react/ui/breadcrumb.d.ts +8 -8
  33. package/dist/react/ui/button-group.d.ts +6 -6
  34. package/dist/react/ui/button.d.ts +4 -4
  35. package/dist/react/ui/calendar.d.ts +3 -3
  36. package/dist/react/ui/card.d.ts +8 -8
  37. package/dist/react/ui/carousel.d.ts +6 -6
  38. package/dist/react/ui/chart.d.ts +5 -5
  39. package/dist/react/ui/checkbox.d.ts +2 -2
  40. package/dist/react/ui/collapsible.d.ts +4 -4
  41. package/dist/react/ui/command.d.ts +10 -10
  42. package/dist/react/ui/context-menu.d.ts +16 -16
  43. package/dist/react/ui/dialog.d.ts +11 -11
  44. package/dist/react/ui/drawer.d.ts +11 -11
  45. package/dist/react/ui/dropdown-menu.d.ts +16 -16
  46. package/dist/react/ui/empty.d.ts +7 -7
  47. package/dist/react/ui/field.d.ts +11 -11
  48. package/dist/react/ui/form.d.ts +7 -7
  49. package/dist/react/ui/form.d.ts.map +1 -1
  50. package/dist/react/ui/hover-card.d.ts +4 -4
  51. package/dist/react/ui/input-group.d.ts +10 -10
  52. package/dist/react/ui/input-otp.d.ts +5 -5
  53. package/dist/react/ui/input.d.ts +2 -2
  54. package/dist/react/ui/item.d.ts +14 -14
  55. package/dist/react/ui/popover.d.ts +5 -5
  56. package/dist/react/ui/progress.d.ts +2 -2
  57. package/dist/react/ui/radio-group.d.ts +3 -3
  58. package/dist/react/ui/resizable.d.ts +4 -4
  59. package/dist/react/ui/scroll-area.d.ts +3 -3
  60. package/dist/react/ui/select.d.ts +11 -11
  61. package/dist/react/ui/separator.d.ts +2 -2
  62. package/dist/react/ui/sheet.d.ts +9 -9
  63. package/dist/react/ui/sidebar.d.ts +24 -24
  64. package/dist/react/ui/skeleton.d.ts +2 -2
  65. package/dist/react/ui/slider.d.ts +2 -2
  66. package/dist/react/ui/sonner.d.ts +2 -2
  67. package/dist/react/ui/spinner.d.ts +2 -2
  68. package/dist/react/ui/switch.d.ts +2 -2
  69. package/dist/react/ui/tabs.d.ts +5 -5
  70. package/dist/react/ui/textarea.d.ts +2 -2
  71. package/dist/react/ui/toggle-group.d.ts +3 -3
  72. package/dist/react/ui/toggle.d.ts +2 -2
  73. package/dist/react/ui/tooltip.d.ts +5 -5
  74. package/dist/react/ui/tooltip.d.ts.map +1 -1
  75. package/llms.txt +5 -2
  76. package/package.json +1 -1
@@ -1,46 +1,46 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime97 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime95 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$1.ComponentProps<typeof Drawer.Root>): react_jsx_runtime97.JSX.Element;
8
+ }: React$1.ComponentProps<typeof Drawer.Root>): react_jsx_runtime95.JSX.Element;
9
9
  declare function DrawerTrigger({
10
10
  ...props
11
- }: React$1.ComponentProps<typeof Drawer.Trigger>): react_jsx_runtime97.JSX.Element;
11
+ }: React$1.ComponentProps<typeof Drawer.Trigger>): react_jsx_runtime95.JSX.Element;
12
12
  declare function DrawerPortal({
13
13
  container,
14
14
  ...props
15
- }: React$1.ComponentProps<typeof Drawer.Portal>): react_jsx_runtime97.JSX.Element;
15
+ }: React$1.ComponentProps<typeof Drawer.Portal>): react_jsx_runtime95.JSX.Element;
16
16
  declare function DrawerClose({
17
17
  ...props
18
- }: React$1.ComponentProps<typeof Drawer.Close>): react_jsx_runtime97.JSX.Element;
18
+ }: React$1.ComponentProps<typeof Drawer.Close>): react_jsx_runtime95.JSX.Element;
19
19
  declare function DrawerOverlay({
20
20
  className,
21
21
  ...props
22
- }: React$1.ComponentProps<typeof Drawer.Overlay>): react_jsx_runtime97.JSX.Element;
22
+ }: React$1.ComponentProps<typeof Drawer.Overlay>): react_jsx_runtime95.JSX.Element;
23
23
  declare function DrawerContent({
24
24
  className,
25
25
  children,
26
26
  ...props
27
- }: React$1.ComponentProps<typeof Drawer.Content>): react_jsx_runtime97.JSX.Element;
27
+ }: React$1.ComponentProps<typeof Drawer.Content>): react_jsx_runtime95.JSX.Element;
28
28
  declare function DrawerHeader({
29
29
  className,
30
30
  ...props
31
- }: React$1.ComponentProps<"div">): react_jsx_runtime97.JSX.Element;
31
+ }: React$1.ComponentProps<"div">): react_jsx_runtime95.JSX.Element;
32
32
  declare function DrawerFooter({
33
33
  className,
34
34
  ...props
35
- }: React$1.ComponentProps<"div">): react_jsx_runtime97.JSX.Element;
35
+ }: React$1.ComponentProps<"div">): react_jsx_runtime95.JSX.Element;
36
36
  declare function DrawerTitle({
37
37
  className,
38
38
  ...props
39
- }: React$1.ComponentProps<typeof Drawer.Title>): react_jsx_runtime97.JSX.Element;
39
+ }: React$1.ComponentProps<typeof Drawer.Title>): react_jsx_runtime95.JSX.Element;
40
40
  declare function DrawerDescription({
41
41
  className,
42
42
  ...props
43
- }: React$1.ComponentProps<typeof Drawer.Description>): react_jsx_runtime97.JSX.Element;
43
+ }: React$1.ComponentProps<typeof Drawer.Description>): react_jsx_runtime95.JSX.Element;
44
44
  //#endregion
45
45
  export { Drawer$1 as Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger };
46
46
  //# sourceMappingURL=drawer.d.ts.map
@@ -1,26 +1,26 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime107 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime105 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$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime107.JSX.Element;
8
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime105.JSX.Element;
9
9
  declare function DropdownMenuPortal({
10
10
  container,
11
11
  ...props
12
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime107.JSX.Element;
12
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime105.JSX.Element;
13
13
  declare function DropdownMenuTrigger({
14
14
  ...props
15
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime107.JSX.Element;
15
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime105.JSX.Element;
16
16
  declare function DropdownMenuContent({
17
17
  className,
18
18
  sideOffset,
19
19
  ...props
20
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime107.JSX.Element;
20
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime105.JSX.Element;
21
21
  declare function DropdownMenuGroup({
22
22
  ...props
23
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime107.JSX.Element;
23
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime105.JSX.Element;
24
24
  declare function DropdownMenuItem({
25
25
  className,
26
26
  inset,
@@ -29,39 +29,39 @@ declare function DropdownMenuItem({
29
29
  }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
30
30
  inset?: boolean;
31
31
  variant?: "default" | "destructive";
32
- }): react_jsx_runtime107.JSX.Element;
32
+ }): react_jsx_runtime105.JSX.Element;
33
33
  declare function DropdownMenuCheckboxItem({
34
34
  className,
35
35
  children,
36
36
  checked,
37
37
  ...props
38
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime107.JSX.Element;
38
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime105.JSX.Element;
39
39
  declare function DropdownMenuRadioGroup({
40
40
  ...props
41
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime107.JSX.Element;
41
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime105.JSX.Element;
42
42
  declare function DropdownMenuRadioItem({
43
43
  className,
44
44
  children,
45
45
  ...props
46
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime107.JSX.Element;
46
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime105.JSX.Element;
47
47
  declare function DropdownMenuLabel({
48
48
  className,
49
49
  inset,
50
50
  ...props
51
51
  }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
52
52
  inset?: boolean;
53
- }): react_jsx_runtime107.JSX.Element;
53
+ }): react_jsx_runtime105.JSX.Element;
54
54
  declare function DropdownMenuSeparator({
55
55
  className,
56
56
  ...props
57
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime107.JSX.Element;
57
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime105.JSX.Element;
58
58
  declare function DropdownMenuShortcut({
59
59
  className,
60
60
  ...props
61
- }: React$1.ComponentProps<"span">): react_jsx_runtime107.JSX.Element;
61
+ }: React$1.ComponentProps<"span">): react_jsx_runtime105.JSX.Element;
62
62
  declare function DropdownMenuSub({
63
63
  ...props
64
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime107.JSX.Element;
64
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime105.JSX.Element;
65
65
  declare function DropdownMenuSubTrigger({
66
66
  className,
67
67
  inset,
@@ -69,11 +69,11 @@ declare function DropdownMenuSubTrigger({
69
69
  ...props
70
70
  }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
71
71
  inset?: boolean;
72
- }): react_jsx_runtime107.JSX.Element;
72
+ }): react_jsx_runtime105.JSX.Element;
73
73
  declare function DropdownMenuSubContent({
74
74
  className,
75
75
  ...props
76
- }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime107.JSX.Element;
76
+ }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime105.JSX.Element;
77
77
  //#endregion
78
78
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
79
79
  //# sourceMappingURL=dropdown-menu.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime122 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime120 from "react/jsx-runtime";
2
2
  import { VariantProps } from "class-variance-authority";
3
3
  import * as class_variance_authority_types3 from "class-variance-authority/types";
4
4
 
@@ -6,11 +6,11 @@ import * as class_variance_authority_types3 from "class-variance-authority/types
6
6
  declare function Empty({
7
7
  className,
8
8
  ...props
9
- }: React.ComponentProps<"div">): react_jsx_runtime122.JSX.Element;
9
+ }: React.ComponentProps<"div">): react_jsx_runtime120.JSX.Element;
10
10
  declare function EmptyHeader({
11
11
  className,
12
12
  ...props
13
- }: React.ComponentProps<"div">): react_jsx_runtime122.JSX.Element;
13
+ }: React.ComponentProps<"div">): react_jsx_runtime120.JSX.Element;
14
14
  declare const emptyMediaVariants: (props?: ({
15
15
  variant?: "default" | "icon" | null | undefined;
16
16
  } & class_variance_authority_types3.ClassProp) | undefined) => string;
@@ -18,19 +18,19 @@ declare function EmptyMedia({
18
18
  className,
19
19
  variant,
20
20
  ...props
21
- }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime122.JSX.Element;
21
+ }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime120.JSX.Element;
22
22
  declare function EmptyTitle({
23
23
  className,
24
24
  ...props
25
- }: React.ComponentProps<"div">): react_jsx_runtime122.JSX.Element;
25
+ }: React.ComponentProps<"div">): react_jsx_runtime120.JSX.Element;
26
26
  declare function EmptyDescription({
27
27
  className,
28
28
  ...props
29
- }: React.ComponentProps<"p">): react_jsx_runtime122.JSX.Element;
29
+ }: React.ComponentProps<"p">): react_jsx_runtime120.JSX.Element;
30
30
  declare function EmptyContent({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<"div">): react_jsx_runtime122.JSX.Element;
33
+ }: React.ComponentProps<"div">): react_jsx_runtime120.JSX.Element;
34
34
  //#endregion
35
35
  export { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle };
36
36
  //# sourceMappingURL=empty.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { Label } from "./label.js";
2
- import * as react_jsx_runtime128 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime126 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import * as class_variance_authority_types4 from "class-variance-authority/types";
5
5
 
@@ -7,18 +7,18 @@ import * as class_variance_authority_types4 from "class-variance-authority/types
7
7
  declare function FieldSet({
8
8
  className,
9
9
  ...props
10
- }: React.ComponentProps<"fieldset">): react_jsx_runtime128.JSX.Element;
10
+ }: React.ComponentProps<"fieldset">): react_jsx_runtime126.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_runtime128.JSX.Element;
17
+ }): react_jsx_runtime126.JSX.Element;
18
18
  declare function FieldGroup({
19
19
  className,
20
20
  ...props
21
- }: React.ComponentProps<"div">): react_jsx_runtime128.JSX.Element;
21
+ }: React.ComponentProps<"div">): react_jsx_runtime126.JSX.Element;
22
22
  declare const fieldVariants: (props?: ({
23
23
  orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
24
24
  } & class_variance_authority_types4.ClassProp) | undefined) => string;
@@ -26,30 +26,30 @@ declare function Field({
26
26
  className,
27
27
  orientation,
28
28
  ...props
29
- }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime128.JSX.Element;
29
+ }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime126.JSX.Element;
30
30
  declare function FieldContent({
31
31
  className,
32
32
  ...props
33
- }: React.ComponentProps<"div">): react_jsx_runtime128.JSX.Element;
33
+ }: React.ComponentProps<"div">): react_jsx_runtime126.JSX.Element;
34
34
  declare function FieldLabel({
35
35
  className,
36
36
  ...props
37
- }: React.ComponentProps<typeof Label>): react_jsx_runtime128.JSX.Element;
37
+ }: React.ComponentProps<typeof Label>): react_jsx_runtime126.JSX.Element;
38
38
  declare function FieldTitle({
39
39
  className,
40
40
  ...props
41
- }: React.ComponentProps<"div">): react_jsx_runtime128.JSX.Element;
41
+ }: React.ComponentProps<"div">): react_jsx_runtime126.JSX.Element;
42
42
  declare function FieldDescription({
43
43
  className,
44
44
  ...props
45
- }: React.ComponentProps<"p">): react_jsx_runtime128.JSX.Element;
45
+ }: React.ComponentProps<"p">): react_jsx_runtime126.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_runtime128.JSX.Element;
52
+ }): react_jsx_runtime126.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_runtime128.JSX.Element | null;
62
+ }): react_jsx_runtime126.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 react2 from "react";
2
- import * as react_jsx_runtime91 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime136 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>) => react2.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_runtime91.JSX.Element;
12
+ }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime136.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
- }: react2.ComponentProps<"div">): react_jsx_runtime91.JSX.Element;
28
+ }: react2.ComponentProps<"div">): react_jsx_runtime136.JSX.Element;
29
29
  declare function FormLabel({
30
30
  className,
31
31
  ...props
32
- }: react2.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime91.JSX.Element;
32
+ }: react2.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime136.JSX.Element;
33
33
  declare function FormControl({
34
34
  ...props
35
- }: react2.ComponentProps<typeof Slot>): react_jsx_runtime91.JSX.Element;
35
+ }: react2.ComponentProps<typeof Slot>): react_jsx_runtime136.JSX.Element;
36
36
  declare function FormDescription({
37
37
  className,
38
38
  ...props
39
- }: react2.ComponentProps<"p">): react_jsx_runtime91.JSX.Element;
39
+ }: react2.ComponentProps<"p">): react_jsx_runtime136.JSX.Element;
40
40
  declare function FormMessage({
41
41
  className,
42
42
  ...props
43
- }: react2.ComponentProps<"p">): react_jsx_runtime91.JSX.Element | null;
43
+ }: react2.ComponentProps<"p">): react_jsx_runtime136.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 +1 @@
1
- {"version":3,"file":"form.d.ts","names":[],"sources":["../../../src/react/ui/form.tsx"],"sourcesContent":[],"mappings":";;;;;;;;cAkBM,4BAAI,kDAAA,qBAAA,gBAAA,CAAA,kBAAA,cAAA,UAAA,wBAAA,MAAA,CAAA,GAAA,CAAA;cAaJ,iCACiB,cAAc,2BACrB,UAAU,gBAAgB,UAAU;;GAGjD,gBAAgB,cAAc,WAAM,mBAAA,CAAA,GAAA,CAAA;cAQjC;;EA1BA,OAAmB,EAAA,OAAA;EAAA,SAAA,EAAA,OAAA;cAAf,EAAA,OAAA;OAAA,CAAA,EA+CT,gBAAA,CAAA,UA/CS;MAAA,MAAA;MAAA,EAAA,MAAA;YAAA,EAAA,MAAA;mBAAA,EAAA,MAAA;eAAA,EAAA,MAAA;CAAe;AAAA,iBAyDhB,QAAA,CAjCR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAiC0C,MAAA,CAAM,cAjChD,CAAA,KAAA,CAAA,CAAA,EAiCqE,mBAAA,CAAA,GAAA,CAAA,OAjCrE;iBA+CQ,SAAA,CA/CR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAkDE,MAAA,CAAM,cAlDR,CAAA,OAkD8B,cAAA,CAAe,IAlD7C,CAAA,CAAA,EAkDkD,mBAAA,CAAA,GAAA,CAAA,OAlDlD;iBAgEQ,WAAA,CA1Ec;EAAA,GAAA;AAAA,CAAA,EA0EY,MAAA,CAAM,cA1ElB,CAAA,OA0EwC,IA1ExC,CAAA,CAAA,EA0E6C,mBAAA,CAAA,GAAA,CAAA,OA1E7C;iBA6Fd,eAAA,CA7F4B;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EA6Fa,MAAA,CAAM,cA7FnB,CAAA,GAAA,CAAA,CAAA,EA6FsC,mBAAA,CAAA,GAAA,CAAA,OA7FtC;iBA0G5B,WAAA,CAzGiB;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAyGoB,MAAA,CAAM,cAzG1B,CAAA,GAAA,CAAA,CAAA,EAyG6C,mBAAA,CAAA,GAAA,CAAA,OAAA,GAzG7C,IAAA"}
1
+ {"version":3,"file":"form.d.ts","names":[],"sources":["../../../src/react/ui/form.tsx"],"sourcesContent":[],"mappings":";;;;;;;;cAkBM,4BAAI,kDAAA,qBAAA,gBAAA,CAAA,kBAAA,cAAA,UAAA,wBAAA,MAAA,CAAA,GAAA,CAAA;cAaJ,iCACiB,cAAc,2BACrB,UAAU,gBAAgB,UAAU;;GAGjD,gBAAgB,cAAc,WAAM,oBAAA,CAAA,GAAA,CAAA;cAQjC;;EA1BA,OAAmB,EAAA,OAAA;EAAA,SAAA,EAAA,OAAA;cAAf,EAAA,OAAA;OAAA,CAAA,EA+CT,gBAAA,CAAA,UA/CS;MAAA,MAAA;MAAA,EAAA,MAAA;YAAA,EAAA,MAAA;mBAAA,EAAA,MAAA;eAAA,EAAA,MAAA;CAAe;AAAA,iBAyDhB,QAAA,CAjCR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAiC0C,MAAA,CAAM,cAjChD,CAAA,KAAA,CAAA,CAAA,EAiCqE,oBAAA,CAAA,GAAA,CAAA,OAjCrE;iBA+CQ,SAAA,CA/CR;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAkDE,MAAA,CAAM,cAlDR,CAAA,OAkD8B,cAAA,CAAe,IAlD7C,CAAA,CAAA,EAkDkD,oBAAA,CAAA,GAAA,CAAA,OAlDlD;iBAgEQ,WAAA,CA1Ec;EAAA,GAAA;AAAA,CAAA,EA0EY,MAAA,CAAM,cA1ElB,CAAA,OA0EwC,IA1ExC,CAAA,CAAA,EA0E6C,oBAAA,CAAA,GAAA,CAAA,OA1E7C;iBA6Fd,eAAA,CA7F4B;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EA6Fa,MAAA,CAAM,cA7FnB,CAAA,GAAA,CAAA,CAAA,EA6FsC,oBAAA,CAAA,GAAA,CAAA,OA7FtC;iBA0G5B,WAAA,CAzGiB;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAyGoB,MAAA,CAAM,cAzG1B,CAAA,GAAA,CAAA,CAAA,EAyG6C,oBAAA,CAAA,GAAA,CAAA,OAAA,GAzG7C,IAAA"}
@@ -1,20 +1,20 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime148 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime142 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$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime148.JSX.Element;
8
+ }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime142.JSX.Element;
9
9
  declare function HoverCardTrigger({
10
10
  ...props
11
- }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime148.JSX.Element;
11
+ }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime142.JSX.Element;
12
12
  declare function HoverCardContent({
13
13
  className,
14
14
  align,
15
15
  sideOffset,
16
16
  ...props
17
- }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime148.JSX.Element;
17
+ }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime142.JSX.Element;
18
18
  //#endregion
19
19
  export { HoverCard, HoverCardContent, HoverCardTrigger };
20
20
  //# sourceMappingURL=hover-card.d.ts.map
@@ -1,44 +1,44 @@
1
1
  import { Button } from "./button.js";
2
2
  import * as React$1 from "react";
3
- import * as react_jsx_runtime152 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime146 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
- import * as class_variance_authority_types7 from "class-variance-authority/types";
5
+ import * as class_variance_authority_types5 from "class-variance-authority/types";
6
6
 
7
7
  //#region src/react/ui/input-group.d.ts
8
8
  declare function InputGroup({
9
9
  className,
10
10
  ...props
11
- }: React$1.ComponentProps<"div">): react_jsx_runtime152.JSX.Element;
11
+ }: React$1.ComponentProps<"div">): react_jsx_runtime146.JSX.Element;
12
12
  declare const inputGroupAddonVariants: (props?: ({
13
13
  align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
14
- } & class_variance_authority_types7.ClassProp) | undefined) => string;
14
+ } & class_variance_authority_types5.ClassProp) | undefined) => string;
15
15
  declare function InputGroupAddon({
16
16
  className,
17
17
  align,
18
18
  ...props
19
- }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime152.JSX.Element;
19
+ }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime146.JSX.Element;
20
20
  declare const inputGroupButtonVariants: (props?: ({
21
21
  size?: "sm" | "icon-sm" | "xs" | "icon-xs" | null | undefined;
22
- } & class_variance_authority_types7.ClassProp) | undefined) => string;
22
+ } & class_variance_authority_types5.ClassProp) | undefined) => string;
23
23
  declare function InputGroupButton({
24
24
  className,
25
25
  type,
26
26
  variant,
27
27
  size,
28
28
  ...props
29
- }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime152.JSX.Element;
29
+ }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime146.JSX.Element;
30
30
  declare function InputGroupText({
31
31
  className,
32
32
  ...props
33
- }: React$1.ComponentProps<"span">): react_jsx_runtime152.JSX.Element;
33
+ }: React$1.ComponentProps<"span">): react_jsx_runtime146.JSX.Element;
34
34
  declare function InputGroupInput({
35
35
  className,
36
36
  ...props
37
- }: React$1.ComponentProps<"input">): react_jsx_runtime152.JSX.Element;
37
+ }: React$1.ComponentProps<"input">): react_jsx_runtime146.JSX.Element;
38
38
  declare function InputGroupTextarea({
39
39
  className,
40
40
  ...props
41
- }: React$1.ComponentProps<"textarea">): react_jsx_runtime152.JSX.Element;
41
+ }: React$1.ComponentProps<"textarea">): react_jsx_runtime146.JSX.Element;
42
42
  //#endregion
43
43
  export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea };
44
44
  //# sourceMappingURL=input-group.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime158 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime152 from "react/jsx-runtime";
3
3
  import { OTPInput } from "input-otp";
4
4
 
5
5
  //#region src/react/ui/input-otp.d.ts
@@ -9,21 +9,21 @@ declare function InputOTP({
9
9
  ...props
10
10
  }: React$1.ComponentProps<typeof OTPInput> & {
11
11
  containerClassName?: string;
12
- }): react_jsx_runtime158.JSX.Element;
12
+ }): react_jsx_runtime152.JSX.Element;
13
13
  declare function InputOTPGroup({
14
14
  className,
15
15
  ...props
16
- }: React$1.ComponentProps<"div">): react_jsx_runtime158.JSX.Element;
16
+ }: React$1.ComponentProps<"div">): react_jsx_runtime152.JSX.Element;
17
17
  declare function InputOTPSlot({
18
18
  index,
19
19
  className,
20
20
  ...props
21
21
  }: React$1.ComponentProps<"div"> & {
22
22
  index: number;
23
- }): react_jsx_runtime158.JSX.Element;
23
+ }): react_jsx_runtime152.JSX.Element;
24
24
  declare function InputOTPSeparator({
25
25
  ...props
26
- }: React$1.ComponentProps<"div">): react_jsx_runtime158.JSX.Element;
26
+ }: React$1.ComponentProps<"div">): react_jsx_runtime152.JSX.Element;
27
27
  //#endregion
28
28
  export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot };
29
29
  //# sourceMappingURL=input-otp.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime151 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime145 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/react/ui/input.d.ts
5
5
  declare function Input({
6
6
  className,
7
7
  type,
8
8
  ...props
9
- }: React$1.ComponentProps<"input">): react_jsx_runtime151.JSX.Element;
9
+ }: React$1.ComponentProps<"input">): react_jsx_runtime145.JSX.Element;
10
10
  //#endregion
11
11
  export { Input };
12
12
  //# sourceMappingURL=input.d.ts.map
@@ -1,22 +1,22 @@
1
1
  import { Separator } from "./separator.js";
2
2
  import * as React$1 from "react";
3
- import * as react_jsx_runtime138 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime156 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
- import * as class_variance_authority_types5 from "class-variance-authority/types";
5
+ import * as class_variance_authority_types7 from "class-variance-authority/types";
6
6
 
7
7
  //#region src/react/ui/item.d.ts
8
8
  declare function ItemGroup({
9
9
  className,
10
10
  ...props
11
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
11
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
12
12
  declare function ItemSeparator({
13
13
  className,
14
14
  ...props
15
- }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime138.JSX.Element;
15
+ }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime156.JSX.Element;
16
16
  declare const itemVariants: (props?: ({
17
17
  variant?: "default" | "outline" | "muted" | null | undefined;
18
18
  size?: "default" | "sm" | null | undefined;
19
- } & class_variance_authority_types5.ClassProp) | undefined) => string;
19
+ } & class_variance_authority_types7.ClassProp) | undefined) => string;
20
20
  declare function Item({
21
21
  className,
22
22
  variant,
@@ -25,39 +25,39 @@ declare function Item({
25
25
  ...props
26
26
  }: React$1.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
27
27
  asChild?: boolean;
28
- }): react_jsx_runtime138.JSX.Element;
28
+ }): react_jsx_runtime156.JSX.Element;
29
29
  declare const itemMediaVariants: (props?: ({
30
30
  variant?: "default" | "icon" | "image" | null | undefined;
31
- } & class_variance_authority_types5.ClassProp) | undefined) => string;
31
+ } & class_variance_authority_types7.ClassProp) | undefined) => string;
32
32
  declare function ItemMedia({
33
33
  className,
34
34
  variant,
35
35
  ...props
36
- }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime138.JSX.Element;
36
+ }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime156.JSX.Element;
37
37
  declare function ItemContent({
38
38
  className,
39
39
  ...props
40
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
40
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
41
41
  declare function ItemTitle({
42
42
  className,
43
43
  ...props
44
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
44
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
45
45
  declare function ItemDescription({
46
46
  className,
47
47
  ...props
48
- }: React$1.ComponentProps<"p">): react_jsx_runtime138.JSX.Element;
48
+ }: React$1.ComponentProps<"p">): react_jsx_runtime156.JSX.Element;
49
49
  declare function ItemActions({
50
50
  className,
51
51
  ...props
52
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
52
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
53
53
  declare function ItemHeader({
54
54
  className,
55
55
  ...props
56
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
56
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
57
57
  declare function ItemFooter({
58
58
  className,
59
59
  ...props
60
- }: React$1.ComponentProps<"div">): react_jsx_runtime138.JSX.Element;
60
+ }: React$1.ComponentProps<"div">): react_jsx_runtime156.JSX.Element;
61
61
  //#endregion
62
62
  export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle };
63
63
  //# sourceMappingURL=item.d.ts.map
@@ -1,23 +1,23 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime162 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime200 from "react/jsx-runtime";
3
3
  import * as PopoverPrimitive from "@radix-ui/react-popover";
4
4
 
5
5
  //#region src/react/ui/popover.d.ts
6
6
  declare function Popover({
7
7
  ...props
8
- }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime162.JSX.Element;
8
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime200.JSX.Element;
9
9
  declare function PopoverTrigger({
10
10
  ...props
11
- }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime162.JSX.Element;
11
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime200.JSX.Element;
12
12
  declare function PopoverContent({
13
13
  className,
14
14
  align,
15
15
  sideOffset,
16
16
  ...props
17
- }: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime162.JSX.Element;
17
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime200.JSX.Element;
18
18
  declare function PopoverAnchor({
19
19
  ...props
20
- }: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime162.JSX.Element;
20
+ }: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime200.JSX.Element;
21
21
  //#endregion
22
22
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
23
23
  //# sourceMappingURL=popover.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime201 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime204 from "react/jsx-runtime";
3
3
  import * as ProgressPrimitive from "@radix-ui/react-progress";
4
4
 
5
5
  //#region src/react/ui/progress.d.ts
@@ -7,7 +7,7 @@ declare function Progress({
7
7
  className,
8
8
  value,
9
9
  ...props
10
- }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime201.JSX.Element;
10
+ }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime204.JSX.Element;
11
11
  //#endregion
12
12
  export { Progress };
13
13
  //# sourceMappingURL=progress.d.ts.map
@@ -1,16 +1,16 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime202 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime205 from "react/jsx-runtime";
3
3
  import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
4
4
 
5
5
  //#region src/react/ui/radio-group.d.ts
6
6
  declare function RadioGroup({
7
7
  className,
8
8
  ...props
9
- }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime202.JSX.Element;
9
+ }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime205.JSX.Element;
10
10
  declare function RadioGroupItem({
11
11
  className,
12
12
  ...props
13
- }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime202.JSX.Element;
13
+ }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime205.JSX.Element;
14
14
  //#endregion
15
15
  export { RadioGroup, RadioGroupItem };
16
16
  //# sourceMappingURL=radio-group.d.ts.map
@@ -1,22 +1,22 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime204 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime207 from "react/jsx-runtime";
3
3
  import * as ResizablePrimitive from "react-resizable-panels";
4
4
 
5
5
  //#region src/react/ui/resizable.d.ts
6
6
  declare function ResizablePanelGroup({
7
7
  className,
8
8
  ...props
9
- }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime204.JSX.Element;
9
+ }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime207.JSX.Element;
10
10
  declare function ResizablePanel({
11
11
  ...props
12
- }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime204.JSX.Element;
12
+ }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime207.JSX.Element;
13
13
  declare function ResizableHandle({
14
14
  withHandle,
15
15
  className,
16
16
  ...props
17
17
  }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
18
18
  withHandle?: boolean;
19
- }): react_jsx_runtime204.JSX.Element;
19
+ }): react_jsx_runtime207.JSX.Element;
20
20
  //#endregion
21
21
  export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
22
22
  //# sourceMappingURL=resizable.d.ts.map