@databricks/appkit-ui 0.13.0 → 0.14.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 (44) hide show
  1. package/dist/cli/commands/setup.js +16 -0
  2. package/dist/cli/commands/setup.js.map +1 -1
  3. package/dist/react/charts/options.d.ts.map +1 -1
  4. package/dist/react/table/data-table.d.ts +2 -2
  5. package/dist/react/table/data-table.d.ts.map +1 -1
  6. package/dist/react/ui/collapsible.d.ts +4 -4
  7. package/dist/react/ui/command.d.ts +10 -10
  8. package/dist/react/ui/context-menu.d.ts +16 -16
  9. package/dist/react/ui/dialog.d.ts +11 -11
  10. package/dist/react/ui/drawer.d.ts +11 -11
  11. package/dist/react/ui/dropdown-menu.d.ts +16 -16
  12. package/dist/react/ui/empty.d.ts +7 -7
  13. package/dist/react/ui/field.d.ts +11 -11
  14. package/dist/react/ui/form.d.ts +7 -7
  15. package/dist/react/ui/hover-card.d.ts +4 -4
  16. package/dist/react/ui/input-group.d.ts +7 -7
  17. package/dist/react/ui/input-otp.d.ts +5 -5
  18. package/dist/react/ui/input.d.ts +2 -2
  19. package/dist/react/ui/item.d.ts +11 -11
  20. package/dist/react/ui/kbd.d.ts +3 -3
  21. package/dist/react/ui/label.d.ts +2 -2
  22. package/dist/react/ui/menubar.d.ts +17 -17
  23. package/dist/react/ui/navigation-menu.d.ts +9 -9
  24. package/dist/react/ui/pagination.d.ts +8 -8
  25. package/dist/react/ui/popover.d.ts +5 -5
  26. package/dist/react/ui/progress.d.ts +2 -2
  27. package/dist/react/ui/radio-group.d.ts +3 -3
  28. package/dist/react/ui/resizable.d.ts +4 -4
  29. package/dist/react/ui/scroll-area.d.ts +3 -3
  30. package/dist/react/ui/select.d.ts +11 -11
  31. package/dist/react/ui/separator.d.ts +2 -2
  32. package/dist/react/ui/sheet.d.ts +9 -9
  33. package/dist/react/ui/sidebar.d.ts +24 -24
  34. package/dist/react/ui/skeleton.d.ts +2 -2
  35. package/dist/react/ui/slider.d.ts +2 -2
  36. package/dist/react/ui/sonner.d.ts +2 -2
  37. package/dist/react/ui/spinner.d.ts +2 -2
  38. package/dist/react/ui/switch.d.ts +2 -2
  39. package/dist/react/ui/table.d.ts +9 -9
  40. package/dist/react/ui/tabs.d.ts +5 -5
  41. package/dist/react/ui/textarea.d.ts +2 -2
  42. package/dist/react/ui/toggle-group.d.ts +3 -3
  43. package/dist/react/ui/toggle.d.ts +2 -2
  44. package/package.json +1 -1
@@ -1,18 +1,18 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime222 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime223 from "react/jsx-runtime";
3
3
  import * as SelectPrimitive from "@radix-ui/react-select";
4
4
 
5
5
  //#region src/react/ui/select.d.ts
6
6
  /** Dropdown control for selecting a value from a list */
7
7
  declare function Select({
8
8
  ...props
9
- }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime222.JSX.Element;
9
+ }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime223.JSX.Element;
10
10
  declare function SelectGroup({
11
11
  ...props
12
- }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime222.JSX.Element;
12
+ }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime223.JSX.Element;
13
13
  declare function SelectValue({
14
14
  ...props
15
- }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime222.JSX.Element;
15
+ }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime223.JSX.Element;
16
16
  declare function SelectTrigger({
17
17
  className,
18
18
  size,
@@ -20,18 +20,18 @@ declare function SelectTrigger({
20
20
  ...props
21
21
  }: React$1.ComponentProps<typeof SelectPrimitive.Trigger> & {
22
22
  size?: "sm" | "default";
23
- }): react_jsx_runtime222.JSX.Element;
23
+ }): react_jsx_runtime223.JSX.Element;
24
24
  declare function SelectContent({
25
25
  className,
26
26
  children,
27
27
  position,
28
28
  align,
29
29
  ...props
30
- }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime222.JSX.Element;
30
+ }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime223.JSX.Element;
31
31
  declare function SelectLabel({
32
32
  className,
33
33
  ...props
34
- }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime222.JSX.Element;
34
+ }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime223.JSX.Element;
35
35
  /**
36
36
  * Select item component for individual options in a dropdown.
37
37
  *
@@ -47,19 +47,19 @@ declare function SelectItem({
47
47
  className,
48
48
  children,
49
49
  ...props
50
- }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime222.JSX.Element;
50
+ }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime223.JSX.Element;
51
51
  declare function SelectSeparator({
52
52
  className,
53
53
  ...props
54
- }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime222.JSX.Element;
54
+ }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime223.JSX.Element;
55
55
  declare function SelectScrollUpButton({
56
56
  className,
57
57
  ...props
58
- }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime222.JSX.Element;
58
+ }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime223.JSX.Element;
59
59
  declare function SelectScrollDownButton({
60
60
  className,
61
61
  ...props
62
- }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime222.JSX.Element;
62
+ }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime223.JSX.Element;
63
63
  //#endregion
64
64
  export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue };
65
65
  //# sourceMappingURL=select.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime232 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime233 from "react/jsx-runtime";
3
3
  import * as SeparatorPrimitive from "@radix-ui/react-separator";
4
4
 
5
5
  //#region src/react/ui/separator.d.ts
@@ -9,7 +9,7 @@ declare function Separator({
9
9
  orientation,
10
10
  decorative,
11
11
  ...props
12
- }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime232.JSX.Element;
12
+ }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime233.JSX.Element;
13
13
  //#endregion
14
14
  export { Separator };
15
15
  //# sourceMappingURL=separator.d.ts.map
@@ -1,20 +1,20 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime233 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime234 from "react/jsx-runtime";
3
3
  import * as SheetPrimitive from "@radix-ui/react-dialog";
4
4
 
5
5
  //#region src/react/ui/sheet.d.ts
6
6
  /** Sliding panel that overlays content from screen edges */
7
7
  declare function Sheet({
8
8
  ...props
9
- }: React$1.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime233.JSX.Element;
9
+ }: React$1.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime234.JSX.Element;
10
10
  /** Button that opens the sheet */
11
11
  declare function SheetTrigger({
12
12
  ...props
13
- }: React$1.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime233.JSX.Element;
13
+ }: React$1.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime234.JSX.Element;
14
14
  /** Button that closes the sheet */
15
15
  declare function SheetClose({
16
16
  ...props
17
- }: React$1.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime233.JSX.Element;
17
+ }: React$1.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime234.JSX.Element;
18
18
  /** Main content area of the sheet */
19
19
  declare function SheetContent({
20
20
  className,
@@ -23,27 +23,27 @@ declare function SheetContent({
23
23
  ...props
24
24
  }: React$1.ComponentProps<typeof SheetPrimitive.Content> & {
25
25
  side?: "top" | "right" | "bottom" | "left";
26
- }): react_jsx_runtime233.JSX.Element;
26
+ }): react_jsx_runtime234.JSX.Element;
27
27
  /** Header section of the sheet */
28
28
  declare function SheetHeader({
29
29
  className,
30
30
  ...props
31
- }: React$1.ComponentProps<"div">): react_jsx_runtime233.JSX.Element;
31
+ }: React$1.ComponentProps<"div">): react_jsx_runtime234.JSX.Element;
32
32
  /** Footer section of the sheet */
33
33
  declare function SheetFooter({
34
34
  className,
35
35
  ...props
36
- }: React$1.ComponentProps<"div">): react_jsx_runtime233.JSX.Element;
36
+ }: React$1.ComponentProps<"div">): react_jsx_runtime234.JSX.Element;
37
37
  /** Title text for the sheet */
38
38
  declare function SheetTitle({
39
39
  className,
40
40
  ...props
41
- }: React$1.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime233.JSX.Element;
41
+ }: React$1.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime234.JSX.Element;
42
42
  /** Description text for the sheet */
43
43
  declare function SheetDescription({
44
44
  className,
45
45
  ...props
46
- }: React$1.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime233.JSX.Element;
46
+ }: React$1.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime234.JSX.Element;
47
47
  //#endregion
48
48
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };
49
49
  //# sourceMappingURL=sheet.d.ts.map
@@ -3,7 +3,7 @@ import { Separator } from "./separator.js";
3
3
  import { Input } from "./input.js";
4
4
  import { TooltipContent } from "./tooltip.js";
5
5
  import * as React$1 from "react";
6
- import * as react_jsx_runtime241 from "react/jsx-runtime";
6
+ import * as react_jsx_runtime242 from "react/jsx-runtime";
7
7
  import { VariantProps } from "class-variance-authority";
8
8
  import * as class_variance_authority_types10 from "class-variance-authority/types";
9
9
 
@@ -34,7 +34,7 @@ declare function SidebarProvider({
34
34
  open?: boolean;
35
35
  /** Callback when open state changes */
36
36
  onOpenChange?: (open: boolean) => void;
37
- }): react_jsx_runtime241.JSX.Element;
37
+ }): react_jsx_runtime242.JSX.Element;
38
38
  /** Collapsible navigation sidebar with mobile support */
39
39
  declare function Sidebar({
40
40
  side,
@@ -50,53 +50,53 @@ declare function Sidebar({
50
50
  variant?: "sidebar" | "floating" | "inset";
51
51
  /** Collapse behavior: `"offcanvas"` (slides off-screen), `"icon"` (collapses to icon width), or `"none"` (always expanded) */
52
52
  collapsible?: "offcanvas" | "icon" | "none";
53
- }): react_jsx_runtime241.JSX.Element;
53
+ }): react_jsx_runtime242.JSX.Element;
54
54
  /** Button that toggles the sidebar open and closed */
55
55
  declare function SidebarTrigger({
56
56
  className,
57
57
  onClick,
58
58
  ...props
59
- }: React$1.ComponentProps<typeof Button>): react_jsx_runtime241.JSX.Element;
59
+ }: React$1.ComponentProps<typeof Button>): react_jsx_runtime242.JSX.Element;
60
60
  /** Clickable rail element for toggling sidebar visibility */
61
61
  declare function SidebarRail({
62
62
  className,
63
63
  ...props
64
- }: React$1.ComponentProps<"button">): react_jsx_runtime241.JSX.Element;
64
+ }: React$1.ComponentProps<"button">): react_jsx_runtime242.JSX.Element;
65
65
  /** Main content area that adapts to sidebar state */
66
66
  declare function SidebarInset({
67
67
  className,
68
68
  ...props
69
- }: React$1.ComponentProps<"main">): react_jsx_runtime241.JSX.Element;
69
+ }: React$1.ComponentProps<"main">): react_jsx_runtime242.JSX.Element;
70
70
  /** Input field styled for use within the sidebar */
71
71
  declare function SidebarInput({
72
72
  className,
73
73
  ...props
74
- }: React$1.ComponentProps<typeof Input>): react_jsx_runtime241.JSX.Element;
74
+ }: React$1.ComponentProps<typeof Input>): react_jsx_runtime242.JSX.Element;
75
75
  /** Header section at the top of the sidebar */
76
76
  declare function SidebarHeader({
77
77
  className,
78
78
  ...props
79
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
79
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
80
80
  /** Footer section at the bottom of the sidebar */
81
81
  declare function SidebarFooter({
82
82
  className,
83
83
  ...props
84
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
84
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
85
85
  /** Visual separator between sidebar sections */
86
86
  declare function SidebarSeparator({
87
87
  className,
88
88
  ...props
89
- }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime241.JSX.Element;
89
+ }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime242.JSX.Element;
90
90
  /** Scrollable content area within the sidebar */
91
91
  declare function SidebarContent({
92
92
  className,
93
93
  ...props
94
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
94
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
95
95
  /** Container for grouping related sidebar items */
96
96
  declare function SidebarGroup({
97
97
  className,
98
98
  ...props
99
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
99
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
100
100
  /** Label heading for a sidebar group */
101
101
  declare function SidebarGroupLabel({
102
102
  className,
@@ -105,7 +105,7 @@ declare function SidebarGroupLabel({
105
105
  }: React$1.ComponentProps<"div"> & {
106
106
  /** Render as child element instead of default tag */
107
107
  asChild?: boolean;
108
- }): react_jsx_runtime241.JSX.Element;
108
+ }): react_jsx_runtime242.JSX.Element;
109
109
  /** Action button displayed next to a sidebar group label */
110
110
  declare function SidebarGroupAction({
111
111
  className,
@@ -114,22 +114,22 @@ declare function SidebarGroupAction({
114
114
  }: React$1.ComponentProps<"button"> & {
115
115
  /** Render as child element instead of default tag */
116
116
  asChild?: boolean;
117
- }): react_jsx_runtime241.JSX.Element;
117
+ }): react_jsx_runtime242.JSX.Element;
118
118
  /** Content container for sidebar group items */
119
119
  declare function SidebarGroupContent({
120
120
  className,
121
121
  ...props
122
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
122
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
123
123
  /** Navigation menu list within the sidebar */
124
124
  declare function SidebarMenu({
125
125
  className,
126
126
  ...props
127
- }: React$1.ComponentProps<"ul">): react_jsx_runtime241.JSX.Element;
127
+ }: React$1.ComponentProps<"ul">): react_jsx_runtime242.JSX.Element;
128
128
  /** Individual menu item within the sidebar */
129
129
  declare function SidebarMenuItem({
130
130
  className,
131
131
  ...props
132
- }: React$1.ComponentProps<"li">): react_jsx_runtime241.JSX.Element;
132
+ }: React$1.ComponentProps<"li">): react_jsx_runtime242.JSX.Element;
133
133
  declare const sidebarMenuButtonVariants: (props?: ({
134
134
  variant?: "default" | "outline" | null | undefined;
135
135
  size?: "default" | "sm" | "lg" | null | undefined;
@@ -149,7 +149,7 @@ declare function SidebarMenuButton({
149
149
  isActive?: boolean;
150
150
  /** Tooltip shown when sidebar is collapsed to icon mode */
151
151
  tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
152
- } & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime241.JSX.Element;
152
+ } & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime242.JSX.Element;
153
153
  /** Action button displayed alongside a menu item */
154
154
  declare function SidebarMenuAction({
155
155
  className,
@@ -161,12 +161,12 @@ declare function SidebarMenuAction({
161
161
  asChild?: boolean;
162
162
  /** Only show when parent menu item is hovered */
163
163
  showOnHover?: boolean;
164
- }): react_jsx_runtime241.JSX.Element;
164
+ }): react_jsx_runtime242.JSX.Element;
165
165
  /** Badge for displaying counts or status on menu items */
166
166
  declare function SidebarMenuBadge({
167
167
  className,
168
168
  ...props
169
- }: React$1.ComponentProps<"div">): react_jsx_runtime241.JSX.Element;
169
+ }: React$1.ComponentProps<"div">): react_jsx_runtime242.JSX.Element;
170
170
  /** Loading skeleton placeholder for menu items */
171
171
  declare function SidebarMenuSkeleton({
172
172
  className,
@@ -175,17 +175,17 @@ declare function SidebarMenuSkeleton({
175
175
  }: React$1.ComponentProps<"div"> & {
176
176
  /** Show a circular icon placeholder alongside the text skeleton */
177
177
  showIcon?: boolean;
178
- }): react_jsx_runtime241.JSX.Element;
178
+ }): react_jsx_runtime242.JSX.Element;
179
179
  /** Submenu list for nested navigation items */
180
180
  declare function SidebarMenuSub({
181
181
  className,
182
182
  ...props
183
- }: React$1.ComponentProps<"ul">): react_jsx_runtime241.JSX.Element;
183
+ }: React$1.ComponentProps<"ul">): react_jsx_runtime242.JSX.Element;
184
184
  /** Individual item within a sidebar submenu */
185
185
  declare function SidebarMenuSubItem({
186
186
  className,
187
187
  ...props
188
- }: React$1.ComponentProps<"li">): react_jsx_runtime241.JSX.Element;
188
+ }: React$1.ComponentProps<"li">): react_jsx_runtime242.JSX.Element;
189
189
  /** Button for submenu items */
190
190
  declare function SidebarMenuSubButton({
191
191
  asChild,
@@ -200,7 +200,7 @@ declare function SidebarMenuSubButton({
200
200
  size?: "sm" | "md";
201
201
  /** Whether this submenu item is currently active/selected */
202
202
  isActive?: boolean;
203
- }): react_jsx_runtime241.JSX.Element;
203
+ }): react_jsx_runtime242.JSX.Element;
204
204
  //#endregion
205
205
  export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar };
206
206
  //# sourceMappingURL=sidebar.d.ts.map
@@ -1,11 +1,11 @@
1
- import * as react_jsx_runtime264 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime265 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/react/ui/skeleton.d.ts
4
4
  /** Loading placeholder with pulsing animation */
5
5
  declare function Skeleton({
6
6
  className,
7
7
  ...props
8
- }: React.ComponentProps<"div">): react_jsx_runtime264.JSX.Element;
8
+ }: React.ComponentProps<"div">): react_jsx_runtime265.JSX.Element;
9
9
  //#endregion
10
10
  export { Skeleton };
11
11
  //# sourceMappingURL=skeleton.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime265 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime266 from "react/jsx-runtime";
3
3
  import * as SliderPrimitive from "@radix-ui/react-slider";
4
4
 
5
5
  //#region src/react/ui/slider.d.ts
@@ -11,7 +11,7 @@ declare function Slider({
11
11
  min,
12
12
  max,
13
13
  ...props
14
- }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime265.JSX.Element;
14
+ }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime266.JSX.Element;
15
15
  //#endregion
16
16
  export { Slider };
17
17
  //# sourceMappingURL=slider.d.ts.map
@@ -1,11 +1,11 @@
1
- import * as react_jsx_runtime266 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime267 from "react/jsx-runtime";
2
2
  import { ToasterProps } from "sonner";
3
3
 
4
4
  //#region src/react/ui/sonner.d.ts
5
5
  /** Toast notification system for displaying temporary messages */
6
6
  declare const Toaster$1: ({
7
7
  ...props
8
- }: ToasterProps) => react_jsx_runtime266.JSX.Element;
8
+ }: ToasterProps) => react_jsx_runtime267.JSX.Element;
9
9
  //#endregion
10
10
  export { Toaster$1 as Toaster };
11
11
  //# sourceMappingURL=sonner.d.ts.map
@@ -1,11 +1,11 @@
1
- import * as react_jsx_runtime267 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime268 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/react/ui/spinner.d.ts
4
4
  /** Animated loading indicator */
5
5
  declare function Spinner({
6
6
  className,
7
7
  ...props
8
- }: React.ComponentProps<"svg">): react_jsx_runtime267.JSX.Element;
8
+ }: React.ComponentProps<"svg">): react_jsx_runtime268.JSX.Element;
9
9
  //#endregion
10
10
  export { Spinner };
11
11
  //# sourceMappingURL=spinner.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime268 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime269 from "react/jsx-runtime";
3
3
  import * as SwitchPrimitive from "@radix-ui/react-switch";
4
4
 
5
5
  //#region src/react/ui/switch.d.ts
@@ -7,7 +7,7 @@ import * as SwitchPrimitive from "@radix-ui/react-switch";
7
7
  declare function Switch({
8
8
  className,
9
9
  ...props
10
- }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime268.JSX.Element;
10
+ }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime269.JSX.Element;
11
11
  //#endregion
12
12
  export { Switch };
13
13
  //# sourceMappingURL=switch.d.ts.map
@@ -1,40 +1,40 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime269 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime270 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/react/ui/table.d.ts
5
5
  /** Structured data display with rows and columns */
6
6
  declare function Table({
7
7
  className,
8
8
  ...props
9
- }: React$1.ComponentProps<"table">): react_jsx_runtime269.JSX.Element;
9
+ }: React$1.ComponentProps<"table">): react_jsx_runtime270.JSX.Element;
10
10
  declare function TableHeader({
11
11
  className,
12
12
  ...props
13
- }: React$1.ComponentProps<"thead">): react_jsx_runtime269.JSX.Element;
13
+ }: React$1.ComponentProps<"thead">): react_jsx_runtime270.JSX.Element;
14
14
  declare function TableBody({
15
15
  className,
16
16
  ...props
17
- }: React$1.ComponentProps<"tbody">): react_jsx_runtime269.JSX.Element;
17
+ }: React$1.ComponentProps<"tbody">): react_jsx_runtime270.JSX.Element;
18
18
  declare function TableFooter({
19
19
  className,
20
20
  ...props
21
- }: React$1.ComponentProps<"tfoot">): react_jsx_runtime269.JSX.Element;
21
+ }: React$1.ComponentProps<"tfoot">): react_jsx_runtime270.JSX.Element;
22
22
  declare function TableRow({
23
23
  className,
24
24
  ...props
25
- }: React$1.ComponentProps<"tr">): react_jsx_runtime269.JSX.Element;
25
+ }: React$1.ComponentProps<"tr">): react_jsx_runtime270.JSX.Element;
26
26
  declare function TableHead({
27
27
  className,
28
28
  ...props
29
- }: React$1.ComponentProps<"th">): react_jsx_runtime269.JSX.Element;
29
+ }: React$1.ComponentProps<"th">): react_jsx_runtime270.JSX.Element;
30
30
  declare function TableCell({
31
31
  className,
32
32
  ...props
33
- }: React$1.ComponentProps<"td">): react_jsx_runtime269.JSX.Element;
33
+ }: React$1.ComponentProps<"td">): react_jsx_runtime270.JSX.Element;
34
34
  declare function TableCaption({
35
35
  className,
36
36
  ...props
37
- }: React$1.ComponentProps<"caption">): react_jsx_runtime269.JSX.Element;
37
+ }: React$1.ComponentProps<"caption">): react_jsx_runtime270.JSX.Element;
38
38
  //#endregion
39
39
  export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow };
40
40
  //# sourceMappingURL=table.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime277 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime278 from "react/jsx-runtime";
3
3
  import * as TabsPrimitive from "@radix-ui/react-tabs";
4
4
 
5
5
  //#region src/react/ui/tabs.d.ts
@@ -7,22 +7,22 @@ import * as TabsPrimitive from "@radix-ui/react-tabs";
7
7
  declare function Tabs({
8
8
  className,
9
9
  ...props
10
- }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime277.JSX.Element;
10
+ }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime278.JSX.Element;
11
11
  /** Container for tab trigger buttons */
12
12
  declare function TabsList({
13
13
  className,
14
14
  ...props
15
- }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime277.JSX.Element;
15
+ }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime278.JSX.Element;
16
16
  /** Button that activates a tab panel */
17
17
  declare function TabsTrigger({
18
18
  className,
19
19
  ...props
20
- }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime277.JSX.Element;
20
+ }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime278.JSX.Element;
21
21
  /** Content panel associated with a tab */
22
22
  declare function TabsContent({
23
23
  className,
24
24
  ...props
25
- }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime277.JSX.Element;
25
+ }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime278.JSX.Element;
26
26
  //#endregion
27
27
  export { Tabs, TabsContent, TabsList, TabsTrigger };
28
28
  //# sourceMappingURL=tabs.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime281 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime282 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/react/ui/textarea.d.ts
5
5
  /** Multi-line text input field */
6
6
  declare function Textarea({
7
7
  className,
8
8
  ...props
9
- }: React$1.ComponentProps<"textarea">): react_jsx_runtime281.JSX.Element;
9
+ }: React$1.ComponentProps<"textarea">): react_jsx_runtime282.JSX.Element;
10
10
  //#endregion
11
11
  export { Textarea };
12
12
  //# sourceMappingURL=textarea.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { toggleVariants } from "./toggle.js";
2
2
  import * as React$1 from "react";
3
- import * as react_jsx_runtime283 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime284 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
5
  import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
6
6
 
@@ -15,14 +15,14 @@ declare function ToggleGroup({
15
15
  ...props
16
16
  }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
17
17
  spacing?: number;
18
- }): react_jsx_runtime283.JSX.Element;
18
+ }): react_jsx_runtime284.JSX.Element;
19
19
  declare function ToggleGroupItem({
20
20
  className,
21
21
  children,
22
22
  variant,
23
23
  size,
24
24
  ...props
25
- }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime283.JSX.Element;
25
+ }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime284.JSX.Element;
26
26
  //#endregion
27
27
  export { ToggleGroup, ToggleGroupItem };
28
28
  //# sourceMappingURL=toggle-group.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from "react";
2
- import * as react_jsx_runtime282 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime283 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import * as TogglePrimitive from "@radix-ui/react-toggle";
5
5
  import * as class_variance_authority_types11 from "class-variance-authority/types";
@@ -15,7 +15,7 @@ declare function Toggle({
15
15
  variant,
16
16
  size,
17
17
  ...props
18
- }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime282.JSX.Element;
18
+ }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime283.JSX.Element;
19
19
  //#endregion
20
20
  export { Toggle, toggleVariants };
21
21
  //# sourceMappingURL=toggle.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@databricks/appkit-ui",
3
3
  "type": "module",
4
- "version": "0.13.0",
4
+ "version": "0.14.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/databricks/appkit.git"