@databricks/appkit-ui 0.13.0 → 0.14.1
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.
- package/dist/cli/commands/setup.js +16 -0
- package/dist/cli/commands/setup.js.map +1 -1
- package/dist/react/charts/area/index.d.ts +2 -2
- package/dist/react/charts/bar/index.d.ts +2 -2
- package/dist/react/charts/base.d.ts +2 -2
- package/dist/react/charts/base.d.ts.map +1 -1
- package/dist/react/charts/create-chart.d.ts +2 -2
- package/dist/react/charts/create-chart.d.ts.map +1 -1
- package/dist/react/charts/heatmap/index.d.ts +2 -2
- package/dist/react/charts/line/index.d.ts +2 -2
- package/dist/react/charts/options.d.ts.map +1 -1
- package/dist/react/charts/pie/index.d.ts +3 -3
- package/dist/react/charts/radar/index.d.ts +2 -2
- package/dist/react/charts/scatter/index.d.ts +2 -2
- package/dist/react/charts/wrapper.d.ts +2 -2
- package/dist/react/charts/wrapper.d.ts.map +1 -1
- package/dist/react/table/data-table.d.ts +2 -2
- package/dist/react/ui/accordion.d.ts +5 -5
- package/dist/react/ui/accordion.d.ts.map +1 -1
- package/dist/react/ui/alert-dialog.d.ts +12 -12
- package/dist/react/ui/alert.d.ts +4 -4
- package/dist/react/ui/alert.d.ts.map +1 -1
- package/dist/react/ui/aspect-ratio.d.ts +2 -2
- package/dist/react/ui/avatar.d.ts +4 -4
- package/dist/react/ui/badge.d.ts +2 -2
- package/dist/react/ui/breadcrumb.d.ts +8 -8
- package/dist/react/ui/button-group.d.ts +4 -4
- package/dist/react/ui/button.d.ts +2 -2
- package/dist/react/ui/calendar.d.ts +3 -3
- package/dist/react/ui/card.d.ts +8 -8
- package/dist/react/ui/carousel.d.ts +6 -6
- package/dist/react/ui/chart.d.ts +5 -5
- package/dist/react/ui/checkbox.d.ts +2 -2
- package/dist/react/ui/collapsible.d.ts +4 -4
- package/dist/react/ui/command.d.ts +10 -10
- package/dist/react/ui/context-menu.d.ts +16 -16
- package/dist/react/ui/dialog.d.ts +11 -11
- package/dist/react/ui/drawer.d.ts +11 -11
- package/dist/react/ui/drawer.d.ts.map +1 -1
- package/dist/react/ui/dropdown-menu.d.ts +16 -16
- package/dist/react/ui/empty.d.ts +7 -7
- package/dist/react/ui/field.d.ts +11 -11
- package/dist/react/ui/form.d.ts +7 -7
- package/dist/react/ui/hover-card.d.ts +4 -4
- package/dist/react/ui/input-group.d.ts +7 -7
- package/dist/react/ui/input-otp.d.ts +5 -5
- package/dist/react/ui/input.d.ts +2 -2
- package/dist/react/ui/item.d.ts +11 -11
- package/dist/react/ui/kbd.d.ts +3 -3
- package/dist/react/ui/label.d.ts +2 -2
- package/dist/react/ui/menubar.d.ts +17 -17
- package/dist/react/ui/navigation-menu.d.ts +9 -9
- package/dist/react/ui/pagination.d.ts +8 -8
- package/dist/react/ui/popover.d.ts +5 -5
- package/dist/react/ui/progress.d.ts +2 -2
- package/dist/react/ui/radio-group.d.ts +3 -3
- package/dist/react/ui/resizable.d.ts +4 -4
- package/dist/react/ui/scroll-area.d.ts +3 -3
- package/dist/react/ui/select.d.ts +11 -11
- package/dist/react/ui/separator.d.ts +2 -2
- package/dist/react/ui/sheet.d.ts +9 -9
- package/dist/react/ui/sidebar.d.ts +24 -24
- package/dist/react/ui/skeleton.d.ts +2 -2
- package/dist/react/ui/slider.d.ts +2 -2
- package/dist/react/ui/sonner.d.ts +2 -2
- package/dist/react/ui/spinner.d.ts +2 -2
- package/dist/react/ui/switch.d.ts +2 -2
- package/dist/react/ui/table.d.ts +9 -9
- package/dist/react/ui/tabs.d.ts +5 -5
- package/dist/react/ui/textarea.d.ts +2 -2
- package/dist/react/ui/toggle-group.d.ts +3 -3
- package/dist/react/ui/toggle.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime199 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
|
/** Floating content panel anchored to a trigger element */
|
|
7
7
|
declare function Popover({
|
|
8
8
|
...props
|
|
9
|
-
}: React$1.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
9
|
+
}: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime199.JSX.Element;
|
|
10
10
|
declare function PopoverTrigger({
|
|
11
11
|
...props
|
|
12
|
-
}: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
12
|
+
}: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime199.JSX.Element;
|
|
13
13
|
declare function PopoverContent({
|
|
14
14
|
className,
|
|
15
15
|
align,
|
|
16
16
|
sideOffset,
|
|
17
17
|
...props
|
|
18
|
-
}: React$1.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
18
|
+
}: React$1.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime199.JSX.Element;
|
|
19
19
|
declare function PopoverAnchor({
|
|
20
20
|
...props
|
|
21
|
-
}: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
21
|
+
}: React$1.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime199.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
|
|
24
24
|
//# sourceMappingURL=popover.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime203 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
|
|
@@ -8,7 +8,7 @@ declare function Progress({
|
|
|
8
8
|
className,
|
|
9
9
|
value,
|
|
10
10
|
...props
|
|
11
|
-
}: React$1.ComponentProps<typeof ProgressPrimitive.Root>):
|
|
11
|
+
}: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime203.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { Progress };
|
|
14
14
|
//# sourceMappingURL=progress.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime204 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
|
|
@@ -7,11 +7,11 @@ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
|
7
7
|
declare function RadioGroup({
|
|
8
8
|
className,
|
|
9
9
|
...props
|
|
10
|
-
}: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
10
|
+
}: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime204.JSX.Element;
|
|
11
11
|
declare function RadioGroupItem({
|
|
12
12
|
className,
|
|
13
13
|
...props
|
|
14
|
-
}: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
14
|
+
}: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime204.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { RadioGroup, RadioGroupItem };
|
|
17
17
|
//# sourceMappingURL=radio-group.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime206 from "react/jsx-runtime";
|
|
3
3
|
import * as ResizablePrimitive from "react-resizable-panels";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/resizable.d.ts
|
|
@@ -7,11 +7,11 @@ import * as ResizablePrimitive from "react-resizable-panels";
|
|
|
7
7
|
declare function ResizablePanelGroup({
|
|
8
8
|
className,
|
|
9
9
|
...props
|
|
10
|
-
}: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>):
|
|
10
|
+
}: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime206.JSX.Element;
|
|
11
11
|
/** Individual resizable panel within a panel group */
|
|
12
12
|
declare function ResizablePanel({
|
|
13
13
|
...props
|
|
14
|
-
}: React$1.ComponentProps<typeof ResizablePrimitive.Panel>):
|
|
14
|
+
}: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime206.JSX.Element;
|
|
15
15
|
/** Draggable handle for resizing panels */
|
|
16
16
|
declare function ResizableHandle({
|
|
17
17
|
withHandle,
|
|
@@ -19,7 +19,7 @@ declare function ResizableHandle({
|
|
|
19
19
|
...props
|
|
20
20
|
}: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
21
21
|
withHandle?: boolean;
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime206.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
25
25
|
//# sourceMappingURL=resizable.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime209 from "react/jsx-runtime";
|
|
3
3
|
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/scroll-area.d.ts
|
|
@@ -8,13 +8,13 @@ declare function ScrollArea({
|
|
|
8
8
|
className,
|
|
9
9
|
children,
|
|
10
10
|
...props
|
|
11
|
-
}: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
11
|
+
}: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime209.JSX.Element;
|
|
12
12
|
/** Scrollbar component for the scroll area */
|
|
13
13
|
declare function ScrollBar({
|
|
14
14
|
className,
|
|
15
15
|
orientation,
|
|
16
16
|
...props
|
|
17
|
-
}: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
17
|
+
}: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime209.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { ScrollArea, ScrollBar };
|
|
20
20
|
//# sourceMappingURL=scroll-area.d.ts.map
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime211 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>):
|
|
9
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime211.JSX.Element;
|
|
10
10
|
declare function SelectGroup({
|
|
11
11
|
...props
|
|
12
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.Group>):
|
|
12
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime211.JSX.Element;
|
|
13
13
|
declare function SelectValue({
|
|
14
14
|
...props
|
|
15
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.Value>):
|
|
15
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime211.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
|
-
}):
|
|
23
|
+
}): react_jsx_runtime211.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>):
|
|
30
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime211.JSX.Element;
|
|
31
31
|
declare function SelectLabel({
|
|
32
32
|
className,
|
|
33
33
|
...props
|
|
34
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.Label>):
|
|
34
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime211.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>):
|
|
50
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime211.JSX.Element;
|
|
51
51
|
declare function SelectSeparator({
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
54
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime211.JSX.Element;
|
|
55
55
|
declare function SelectScrollUpButton({
|
|
56
56
|
className,
|
|
57
57
|
...props
|
|
58
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>):
|
|
58
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime211.JSX.Element;
|
|
59
59
|
declare function SelectScrollDownButton({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>):
|
|
62
|
+
}: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime211.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
|
|
2
|
+
import * as react_jsx_runtime221 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>):
|
|
12
|
+
}: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime221.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { Separator };
|
|
15
15
|
//# sourceMappingURL=separator.d.ts.map
|
package/dist/react/ui/sheet.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime222 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>):
|
|
9
|
+
}: React$1.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime222.JSX.Element;
|
|
10
10
|
/** Button that opens the sheet */
|
|
11
11
|
declare function SheetTrigger({
|
|
12
12
|
...props
|
|
13
|
-
}: React$1.ComponentProps<typeof SheetPrimitive.Trigger>):
|
|
13
|
+
}: React$1.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime222.JSX.Element;
|
|
14
14
|
/** Button that closes the sheet */
|
|
15
15
|
declare function SheetClose({
|
|
16
16
|
...props
|
|
17
|
-
}: React$1.ComponentProps<typeof SheetPrimitive.Close>):
|
|
17
|
+
}: React$1.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime222.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
|
-
}):
|
|
26
|
+
}): react_jsx_runtime222.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">):
|
|
31
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime222.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">):
|
|
36
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime222.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>):
|
|
41
|
+
}: React$1.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime222.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>):
|
|
46
|
+
}: React$1.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime222.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
|
|
6
|
+
import * as react_jsx_runtime230 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
|
-
}):
|
|
37
|
+
}): react_jsx_runtime230.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
|
-
}):
|
|
53
|
+
}): react_jsx_runtime230.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>):
|
|
59
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime230.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">):
|
|
64
|
+
}: React$1.ComponentProps<"button">): react_jsx_runtime230.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">):
|
|
69
|
+
}: React$1.ComponentProps<"main">): react_jsx_runtime230.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>):
|
|
74
|
+
}: React$1.ComponentProps<typeof Input>): react_jsx_runtime230.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">):
|
|
79
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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">):
|
|
84
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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>):
|
|
89
|
+
}: React$1.ComponentProps<typeof Separator>): react_jsx_runtime230.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">):
|
|
94
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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">):
|
|
99
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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
|
-
}):
|
|
108
|
+
}): react_jsx_runtime230.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
|
-
}):
|
|
117
|
+
}): react_jsx_runtime230.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">):
|
|
122
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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">):
|
|
127
|
+
}: React$1.ComponentProps<"ul">): react_jsx_runtime230.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">):
|
|
132
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime230.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>):
|
|
152
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime230.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
|
-
}):
|
|
164
|
+
}): react_jsx_runtime230.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">):
|
|
169
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime230.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
|
-
}):
|
|
178
|
+
}): react_jsx_runtime230.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">):
|
|
183
|
+
}: React$1.ComponentProps<"ul">): react_jsx_runtime230.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">):
|
|
188
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime230.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
|
-
}):
|
|
203
|
+
}): react_jsx_runtime230.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
|
|
1
|
+
import * as react_jsx_runtime253 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">):
|
|
8
|
+
}: React.ComponentProps<"div">): react_jsx_runtime253.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
|
|
2
|
+
import * as react_jsx_runtime254 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>):
|
|
14
|
+
}: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime254.JSX.Element;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { Slider };
|
|
17
17
|
//# sourceMappingURL=slider.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime255 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) =>
|
|
8
|
+
}: ToasterProps) => react_jsx_runtime255.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
|
|
1
|
+
import * as react_jsx_runtime256 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">):
|
|
8
|
+
}: React.ComponentProps<"svg">): react_jsx_runtime256.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
|
|
2
|
+
import * as react_jsx_runtime257 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>):
|
|
10
|
+
}: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime257.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { Switch };
|
|
13
13
|
//# sourceMappingURL=switch.d.ts.map
|
package/dist/react/ui/table.d.ts
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime258 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">):
|
|
9
|
+
}: React$1.ComponentProps<"table">): react_jsx_runtime258.JSX.Element;
|
|
10
10
|
declare function TableHeader({
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: React$1.ComponentProps<"thead">):
|
|
13
|
+
}: React$1.ComponentProps<"thead">): react_jsx_runtime258.JSX.Element;
|
|
14
14
|
declare function TableBody({
|
|
15
15
|
className,
|
|
16
16
|
...props
|
|
17
|
-
}: React$1.ComponentProps<"tbody">):
|
|
17
|
+
}: React$1.ComponentProps<"tbody">): react_jsx_runtime258.JSX.Element;
|
|
18
18
|
declare function TableFooter({
|
|
19
19
|
className,
|
|
20
20
|
...props
|
|
21
|
-
}: React$1.ComponentProps<"tfoot">):
|
|
21
|
+
}: React$1.ComponentProps<"tfoot">): react_jsx_runtime258.JSX.Element;
|
|
22
22
|
declare function TableRow({
|
|
23
23
|
className,
|
|
24
24
|
...props
|
|
25
|
-
}: React$1.ComponentProps<"tr">):
|
|
25
|
+
}: React$1.ComponentProps<"tr">): react_jsx_runtime258.JSX.Element;
|
|
26
26
|
declare function TableHead({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: React$1.ComponentProps<"th">):
|
|
29
|
+
}: React$1.ComponentProps<"th">): react_jsx_runtime258.JSX.Element;
|
|
30
30
|
declare function TableCell({
|
|
31
31
|
className,
|
|
32
32
|
...props
|
|
33
|
-
}: React$1.ComponentProps<"td">):
|
|
33
|
+
}: React$1.ComponentProps<"td">): react_jsx_runtime258.JSX.Element;
|
|
34
34
|
declare function TableCaption({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: React$1.ComponentProps<"caption">):
|
|
37
|
+
}: React$1.ComponentProps<"caption">): react_jsx_runtime258.JSX.Element;
|
|
38
38
|
//#endregion
|
|
39
39
|
export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow };
|
|
40
40
|
//# sourceMappingURL=table.d.ts.map
|
package/dist/react/ui/tabs.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime266 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>):
|
|
10
|
+
}: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime266.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>):
|
|
15
|
+
}: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime266.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>):
|
|
20
|
+
}: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime266.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>):
|
|
25
|
+
}: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime266.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
|
|
2
|
+
import * as react_jsx_runtime270 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">):
|
|
9
|
+
}: React$1.ComponentProps<"textarea">): react_jsx_runtime270.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
|
|
3
|
+
import * as react_jsx_runtime272 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
|
-
}):
|
|
18
|
+
}): react_jsx_runtime272.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>):
|
|
25
|
+
}: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime272.JSX.Element;
|
|
26
26
|
//#endregion
|
|
27
27
|
export { ToggleGroup, ToggleGroupItem };
|
|
28
28
|
//# sourceMappingURL=toggle-group.d.ts.map
|