@databricks/appkit-ui 0.0.2 → 0.1.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/NOTICE.md +3 -1
- package/dist/react/charts/area/index.d.ts +2 -2
- package/dist/react/charts/bar/index.d.ts +2 -2
- package/dist/react/table/data-table.d.ts +2 -2
- package/dist/react/table/data-table.d.ts.map +1 -1
- package/dist/react/ui/accordion.d.ts +5 -5
- package/dist/react/ui/alert-dialog.d.ts +12 -12
- package/dist/react/ui/alert-dialog.d.ts.map +1 -1
- package/dist/react/ui/alert.d.ts +4 -4
- package/dist/react/ui/aspect-ratio.d.ts +2 -2
- package/dist/react/ui/aspect-ratio.d.ts.map +1 -1
- 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 +6 -6
- 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/dropdown-menu.d.ts +16 -16
- package/dist/react/ui/empty.d.ts +9 -9
- package/dist/react/ui/field.d.ts +13 -13
- 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 +14 -14
- 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 +11 -11
- 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/dist/react/ui/tooltip.d.ts +5 -5
- package/dist/react/ui/tooltip.d.ts.map +1 -1
- package/llms.txt +1027 -143
- package/package.json +5 -1
package/dist/react/ui/item.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { Separator } from "./separator.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime154 from "react/jsx-runtime";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
|
-
import * as
|
|
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.ComponentProps<"div">):
|
|
11
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.JSX.Element;
|
|
12
12
|
declare function ItemSeparator({
|
|
13
13
|
className,
|
|
14
14
|
...props
|
|
15
|
-
}: React.ComponentProps<typeof Separator>):
|
|
15
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime154.JSX.Element;
|
|
16
16
|
declare const itemVariants: (props?: ({
|
|
17
17
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
18
18
|
size?: "default" | "sm" | null | undefined;
|
|
19
|
-
} &
|
|
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.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
|
|
27
27
|
asChild?: boolean;
|
|
28
|
-
}):
|
|
28
|
+
}): react_jsx_runtime154.JSX.Element;
|
|
29
29
|
declare const itemMediaVariants: (props?: ({
|
|
30
30
|
variant?: "default" | "icon" | "image" | null | undefined;
|
|
31
|
-
} &
|
|
31
|
+
} & class_variance_authority_types7.ClassProp) | undefined) => string;
|
|
32
32
|
declare function ItemMedia({
|
|
33
33
|
className,
|
|
34
34
|
variant,
|
|
35
35
|
...props
|
|
36
|
-
}: React.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>):
|
|
36
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime154.JSX.Element;
|
|
37
37
|
declare function ItemContent({
|
|
38
38
|
className,
|
|
39
39
|
...props
|
|
40
|
-
}: React.ComponentProps<"div">):
|
|
40
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.JSX.Element;
|
|
41
41
|
declare function ItemTitle({
|
|
42
42
|
className,
|
|
43
43
|
...props
|
|
44
|
-
}: React.ComponentProps<"div">):
|
|
44
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.JSX.Element;
|
|
45
45
|
declare function ItemDescription({
|
|
46
46
|
className,
|
|
47
47
|
...props
|
|
48
|
-
}: React.ComponentProps<"p">):
|
|
48
|
+
}: React.ComponentProps<"p">): react_jsx_runtime154.JSX.Element;
|
|
49
49
|
declare function ItemActions({
|
|
50
50
|
className,
|
|
51
51
|
...props
|
|
52
|
-
}: React.ComponentProps<"div">):
|
|
52
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.JSX.Element;
|
|
53
53
|
declare function ItemHeader({
|
|
54
54
|
className,
|
|
55
55
|
...props
|
|
56
|
-
}: React.ComponentProps<"div">):
|
|
56
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.JSX.Element;
|
|
57
57
|
declare function ItemFooter({
|
|
58
58
|
className,
|
|
59
59
|
...props
|
|
60
|
-
}: React.ComponentProps<"div">):
|
|
60
|
+
}: React.ComponentProps<"div">): react_jsx_runtime154.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
|
package/dist/react/ui/kbd.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime164 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/react/ui/kbd.d.ts
|
|
4
4
|
declare function Kbd({
|
|
5
5
|
className,
|
|
6
6
|
...props
|
|
7
|
-
}: React.ComponentProps<"kbd">):
|
|
7
|
+
}: React.ComponentProps<"kbd">): react_jsx_runtime164.JSX.Element;
|
|
8
8
|
declare function KbdGroup({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: React.ComponentProps<"div">):
|
|
11
|
+
}: React.ComponentProps<"div">): react_jsx_runtime164.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { Kbd, KbdGroup };
|
|
14
14
|
//# sourceMappingURL=kbd.d.ts.map
|
package/dist/react/ui/label.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime166 from "react/jsx-runtime";
|
|
3
3
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/label.d.ts
|
|
6
6
|
declare function Label({
|
|
7
7
|
className,
|
|
8
8
|
...props
|
|
9
|
-
}: React.ComponentProps<typeof LabelPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime166.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Label };
|
|
12
12
|
//# sourceMappingURL=label.d.ts.map
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime167 from "react/jsx-runtime";
|
|
3
3
|
import * as MenubarPrimitive from "@radix-ui/react-menubar";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/menubar.d.ts
|
|
6
6
|
declare function Menubar({
|
|
7
7
|
className,
|
|
8
8
|
...props
|
|
9
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Root>): react_jsx_runtime167.JSX.Element;
|
|
10
10
|
declare function MenubarMenu({
|
|
11
11
|
...props
|
|
12
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Menu>):
|
|
12
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime167.JSX.Element;
|
|
13
13
|
declare function MenubarGroup({
|
|
14
14
|
...props
|
|
15
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Group>):
|
|
15
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime167.JSX.Element;
|
|
16
16
|
declare function MenubarPortal({
|
|
17
17
|
...props
|
|
18
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Portal>):
|
|
18
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime167.JSX.Element;
|
|
19
19
|
declare function MenubarRadioGroup({
|
|
20
20
|
...props
|
|
21
|
-
}: React.ComponentProps<typeof MenubarPrimitive.RadioGroup>):
|
|
21
|
+
}: React.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime167.JSX.Element;
|
|
22
22
|
declare function MenubarTrigger({
|
|
23
23
|
className,
|
|
24
24
|
...props
|
|
25
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Trigger>):
|
|
25
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Trigger>): react_jsx_runtime167.JSX.Element;
|
|
26
26
|
declare function MenubarContent({
|
|
27
27
|
className,
|
|
28
28
|
align,
|
|
29
29
|
alignOffset,
|
|
30
30
|
sideOffset,
|
|
31
31
|
...props
|
|
32
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Content>):
|
|
32
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Content>): react_jsx_runtime167.JSX.Element;
|
|
33
33
|
declare function MenubarItem({
|
|
34
34
|
className,
|
|
35
35
|
inset,
|
|
@@ -38,36 +38,36 @@ declare function MenubarItem({
|
|
|
38
38
|
}: React.ComponentProps<typeof MenubarPrimitive.Item> & {
|
|
39
39
|
inset?: boolean;
|
|
40
40
|
variant?: "default" | "destructive";
|
|
41
|
-
}):
|
|
41
|
+
}): react_jsx_runtime167.JSX.Element;
|
|
42
42
|
declare function MenubarCheckboxItem({
|
|
43
43
|
className,
|
|
44
44
|
children,
|
|
45
45
|
checked,
|
|
46
46
|
...props
|
|
47
|
-
}: React.ComponentProps<typeof MenubarPrimitive.CheckboxItem>):
|
|
47
|
+
}: React.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): react_jsx_runtime167.JSX.Element;
|
|
48
48
|
declare function MenubarRadioItem({
|
|
49
49
|
className,
|
|
50
50
|
children,
|
|
51
51
|
...props
|
|
52
|
-
}: React.ComponentProps<typeof MenubarPrimitive.RadioItem>):
|
|
52
|
+
}: React.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime167.JSX.Element;
|
|
53
53
|
declare function MenubarLabel({
|
|
54
54
|
className,
|
|
55
55
|
inset,
|
|
56
56
|
...props
|
|
57
57
|
}: React.ComponentProps<typeof MenubarPrimitive.Label> & {
|
|
58
58
|
inset?: boolean;
|
|
59
|
-
}):
|
|
59
|
+
}): react_jsx_runtime167.JSX.Element;
|
|
60
60
|
declare function MenubarSeparator({
|
|
61
61
|
className,
|
|
62
62
|
...props
|
|
63
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Separator>):
|
|
63
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime167.JSX.Element;
|
|
64
64
|
declare function MenubarShortcut({
|
|
65
65
|
className,
|
|
66
66
|
...props
|
|
67
|
-
}: React.ComponentProps<"span">):
|
|
67
|
+
}: React.ComponentProps<"span">): react_jsx_runtime167.JSX.Element;
|
|
68
68
|
declare function MenubarSub({
|
|
69
69
|
...props
|
|
70
|
-
}: React.ComponentProps<typeof MenubarPrimitive.Sub>):
|
|
70
|
+
}: React.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime167.JSX.Element;
|
|
71
71
|
declare function MenubarSubTrigger({
|
|
72
72
|
className,
|
|
73
73
|
inset,
|
|
@@ -75,11 +75,11 @@ declare function MenubarSubTrigger({
|
|
|
75
75
|
...props
|
|
76
76
|
}: React.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
|
|
77
77
|
inset?: boolean;
|
|
78
|
-
}):
|
|
78
|
+
}): react_jsx_runtime167.JSX.Element;
|
|
79
79
|
declare function MenubarSubContent({
|
|
80
80
|
className,
|
|
81
81
|
...props
|
|
82
|
-
}: React.ComponentProps<typeof MenubarPrimitive.SubContent>):
|
|
82
|
+
}: React.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime167.JSX.Element;
|
|
83
83
|
//#endregion
|
|
84
84
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger };
|
|
85
85
|
//# sourceMappingURL=menubar.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime183 from "react/jsx-runtime";
|
|
3
3
|
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types9 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/navigation-menu.d.ts
|
|
7
7
|
declare function NavigationMenu({
|
|
@@ -11,37 +11,37 @@ declare function NavigationMenu({
|
|
|
11
11
|
...props
|
|
12
12
|
}: React.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
13
13
|
viewport?: boolean;
|
|
14
|
-
}):
|
|
14
|
+
}): react_jsx_runtime183.JSX.Element;
|
|
15
15
|
declare function NavigationMenuList({
|
|
16
16
|
className,
|
|
17
17
|
...props
|
|
18
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.List>):
|
|
18
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime183.JSX.Element;
|
|
19
19
|
declare function NavigationMenuItem({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Item>):
|
|
23
|
-
declare const navigationMenuTriggerStyle: (props?:
|
|
22
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime183.JSX.Element;
|
|
23
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types9.ClassProp | undefined) => string;
|
|
24
24
|
declare function NavigationMenuTrigger({
|
|
25
25
|
className,
|
|
26
26
|
children,
|
|
27
27
|
...props
|
|
28
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Trigger>):
|
|
28
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime183.JSX.Element;
|
|
29
29
|
declare function NavigationMenuContent({
|
|
30
30
|
className,
|
|
31
31
|
...props
|
|
32
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Content>):
|
|
32
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime183.JSX.Element;
|
|
33
33
|
declare function NavigationMenuViewport({
|
|
34
34
|
className,
|
|
35
35
|
...props
|
|
36
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Viewport>):
|
|
36
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime183.JSX.Element;
|
|
37
37
|
declare function NavigationMenuLink({
|
|
38
38
|
className,
|
|
39
39
|
...props
|
|
40
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Link>):
|
|
40
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime183.JSX.Element;
|
|
41
41
|
declare function NavigationMenuIndicator({
|
|
42
42
|
className,
|
|
43
43
|
...props
|
|
44
|
-
}: React.ComponentProps<typeof NavigationMenuPrimitive.Indicator>):
|
|
44
|
+
}: React.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime183.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, navigationMenuTriggerStyle };
|
|
47
47
|
//# sourceMappingURL=navigation-menu.d.ts.map
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { Button } from "./button.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime191 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/pagination.d.ts
|
|
6
6
|
declare function Pagination({
|
|
7
7
|
className,
|
|
8
8
|
...props
|
|
9
|
-
}: React.ComponentProps<"nav">):
|
|
9
|
+
}: React.ComponentProps<"nav">): react_jsx_runtime191.JSX.Element;
|
|
10
10
|
declare function PaginationContent({
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: React.ComponentProps<"ul">):
|
|
13
|
+
}: React.ComponentProps<"ul">): react_jsx_runtime191.JSX.Element;
|
|
14
14
|
declare function PaginationItem({
|
|
15
15
|
...props
|
|
16
|
-
}: React.ComponentProps<"li">):
|
|
16
|
+
}: React.ComponentProps<"li">): react_jsx_runtime191.JSX.Element;
|
|
17
17
|
type PaginationLinkProps = {
|
|
18
18
|
isActive?: boolean;
|
|
19
19
|
} & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"a">;
|
|
@@ -22,19 +22,19 @@ declare function PaginationLink({
|
|
|
22
22
|
isActive,
|
|
23
23
|
size,
|
|
24
24
|
...props
|
|
25
|
-
}: PaginationLinkProps):
|
|
25
|
+
}: PaginationLinkProps): react_jsx_runtime191.JSX.Element;
|
|
26
26
|
declare function PaginationPrevious({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: React.ComponentProps<typeof PaginationLink>):
|
|
29
|
+
}: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime191.JSX.Element;
|
|
30
30
|
declare function PaginationNext({
|
|
31
31
|
className,
|
|
32
32
|
...props
|
|
33
|
-
}: React.ComponentProps<typeof PaginationLink>):
|
|
33
|
+
}: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime191.JSX.Element;
|
|
34
34
|
declare function PaginationEllipsis({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: React.ComponentProps<"span">):
|
|
37
|
+
}: React.ComponentProps<"span">): react_jsx_runtime191.JSX.Element;
|
|
38
38
|
//#endregion
|
|
39
39
|
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious };
|
|
40
40
|
//# sourceMappingURL=pagination.d.ts.map
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime198 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.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
8
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime198.JSX.Element;
|
|
9
9
|
declare function PopoverTrigger({
|
|
10
10
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
11
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime198.JSX.Element;
|
|
12
12
|
declare function PopoverContent({
|
|
13
13
|
className,
|
|
14
14
|
align,
|
|
15
15
|
sideOffset,
|
|
16
16
|
...props
|
|
17
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
17
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime198.JSX.Element;
|
|
18
18
|
declare function PopoverAnchor({
|
|
19
19
|
...props
|
|
20
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
20
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime198.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 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime202 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.ComponentProps<typeof ProgressPrimitive.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime202.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 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime203 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.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime203.JSX.Element;
|
|
10
10
|
declare function RadioGroupItem({
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: React.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
13
|
+
}: React.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime203.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 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime205 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.ComponentProps<typeof ResizablePrimitive.PanelGroup>):
|
|
9
|
+
}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime205.JSX.Element;
|
|
10
10
|
declare function ResizablePanel({
|
|
11
11
|
...props
|
|
12
|
-
}: React.ComponentProps<typeof ResizablePrimitive.Panel>):
|
|
12
|
+
}: React.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime205.JSX.Element;
|
|
13
13
|
declare function ResizableHandle({
|
|
14
14
|
withHandle,
|
|
15
15
|
className,
|
|
16
16
|
...props
|
|
17
17
|
}: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
|
|
18
18
|
withHandle?: boolean;
|
|
19
|
-
}):
|
|
19
|
+
}): react_jsx_runtime205.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
22
22
|
//# sourceMappingURL=resizable.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime208 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
|
|
@@ -7,12 +7,12 @@ declare function ScrollArea({
|
|
|
7
7
|
className,
|
|
8
8
|
children,
|
|
9
9
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime208.JSX.Element;
|
|
11
11
|
declare function ScrollBar({
|
|
12
12
|
className,
|
|
13
13
|
orientation,
|
|
14
14
|
...props
|
|
15
|
-
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
15
|
+
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime208.JSX.Element;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { ScrollArea, ScrollBar };
|
|
18
18
|
//# sourceMappingURL=scroll-area.d.ts.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime210 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
|
declare function Select({
|
|
7
7
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof SelectPrimitive.Root>):
|
|
8
|
+
}: React.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime210.JSX.Element;
|
|
9
9
|
declare function SelectGroup({
|
|
10
10
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof SelectPrimitive.Group>):
|
|
11
|
+
}: React.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime210.JSX.Element;
|
|
12
12
|
declare function SelectValue({
|
|
13
13
|
...props
|
|
14
|
-
}: React.ComponentProps<typeof SelectPrimitive.Value>):
|
|
14
|
+
}: React.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime210.JSX.Element;
|
|
15
15
|
declare function SelectTrigger({
|
|
16
16
|
className,
|
|
17
17
|
size,
|
|
@@ -19,35 +19,35 @@ declare function SelectTrigger({
|
|
|
19
19
|
...props
|
|
20
20
|
}: React.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
21
21
|
size?: "sm" | "default";
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime210.JSX.Element;
|
|
23
23
|
declare function SelectContent({
|
|
24
24
|
className,
|
|
25
25
|
children,
|
|
26
26
|
position,
|
|
27
27
|
align,
|
|
28
28
|
...props
|
|
29
|
-
}: React.ComponentProps<typeof SelectPrimitive.Content>):
|
|
29
|
+
}: React.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime210.JSX.Element;
|
|
30
30
|
declare function SelectLabel({
|
|
31
31
|
className,
|
|
32
32
|
...props
|
|
33
|
-
}: React.ComponentProps<typeof SelectPrimitive.Label>):
|
|
33
|
+
}: React.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime210.JSX.Element;
|
|
34
34
|
declare function SelectItem({
|
|
35
35
|
className,
|
|
36
36
|
children,
|
|
37
37
|
...props
|
|
38
|
-
}: React.ComponentProps<typeof SelectPrimitive.Item>):
|
|
38
|
+
}: React.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime210.JSX.Element;
|
|
39
39
|
declare function SelectSeparator({
|
|
40
40
|
className,
|
|
41
41
|
...props
|
|
42
|
-
}: React.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
42
|
+
}: React.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime210.JSX.Element;
|
|
43
43
|
declare function SelectScrollUpButton({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>):
|
|
46
|
+
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime210.JSX.Element;
|
|
47
47
|
declare function SelectScrollDownButton({
|
|
48
48
|
className,
|
|
49
49
|
...props
|
|
50
|
-
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>):
|
|
50
|
+
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime210.JSX.Element;
|
|
51
51
|
//#endregion
|
|
52
52
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue };
|
|
53
53
|
//# sourceMappingURL=select.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime220 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
|
|
@@ -8,7 +8,7 @@ declare function Separator({
|
|
|
8
8
|
orientation,
|
|
9
9
|
decorative,
|
|
10
10
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof SeparatorPrimitive.Root>):
|
|
11
|
+
}: React.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime220.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { Separator };
|
|
14
14
|
//# sourceMappingURL=separator.d.ts.map
|
package/dist/react/ui/sheet.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime221 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
|
declare function Sheet({
|
|
7
7
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof SheetPrimitive.Root>):
|
|
8
|
+
}: React.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime221.JSX.Element;
|
|
9
9
|
declare function SheetTrigger({
|
|
10
10
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof SheetPrimitive.Trigger>):
|
|
11
|
+
}: React.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime221.JSX.Element;
|
|
12
12
|
declare function SheetClose({
|
|
13
13
|
...props
|
|
14
|
-
}: React.ComponentProps<typeof SheetPrimitive.Close>):
|
|
14
|
+
}: React.ComponentProps<typeof SheetPrimitive.Close>): react_jsx_runtime221.JSX.Element;
|
|
15
15
|
declare function SheetContent({
|
|
16
16
|
className,
|
|
17
17
|
children,
|
|
@@ -19,23 +19,23 @@ declare function SheetContent({
|
|
|
19
19
|
...props
|
|
20
20
|
}: React.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
21
21
|
side?: "top" | "right" | "bottom" | "left";
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime221.JSX.Element;
|
|
23
23
|
declare function SheetHeader({
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: React.ComponentProps<"div">):
|
|
26
|
+
}: React.ComponentProps<"div">): react_jsx_runtime221.JSX.Element;
|
|
27
27
|
declare function SheetFooter({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: React.ComponentProps<"div">):
|
|
30
|
+
}: React.ComponentProps<"div">): react_jsx_runtime221.JSX.Element;
|
|
31
31
|
declare function SheetTitle({
|
|
32
32
|
className,
|
|
33
33
|
...props
|
|
34
|
-
}: React.ComponentProps<typeof SheetPrimitive.Title>):
|
|
34
|
+
}: React.ComponentProps<typeof SheetPrimitive.Title>): react_jsx_runtime221.JSX.Element;
|
|
35
35
|
declare function SheetDescription({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: React.ComponentProps<typeof SheetPrimitive.Description>):
|
|
38
|
+
}: React.ComponentProps<typeof SheetPrimitive.Description>): react_jsx_runtime221.JSX.Element;
|
|
39
39
|
//#endregion
|
|
40
40
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };
|
|
41
41
|
//# sourceMappingURL=sheet.d.ts.map
|