@alpic-ai/ui 0.0.0-dev.g3e02cb4 → 0.0.0-dev.g3f43f7b
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/components/accordion-card.d.mts +5 -4
- package/dist/components/accordion.d.mts +5 -4
- package/dist/components/alert.d.mts +8 -6
- package/dist/components/attachment-tile.d.mts +3 -1
- package/dist/components/avatar.d.mts +7 -5
- package/dist/components/badge.d.mts +4 -2
- package/dist/components/breadcrumb.d.mts +9 -8
- package/dist/components/button.d.mts +4 -2
- package/dist/components/card.d.mts +8 -7
- package/dist/components/checkbox.d.mts +2 -1
- package/dist/components/collapsible.d.mts +4 -3
- package/dist/components/combobox.d.mts +11 -10
- package/dist/components/command.d.mts +9 -8
- package/dist/components/copyable.d.mts +3 -2
- package/dist/components/description-list.d.mts +5 -4
- package/dist/components/dialog.d.mts +14 -12
- package/dist/components/dropdown-menu.d.mts +16 -14
- package/dist/components/form.d.mts +18 -35
- package/dist/components/github-button.d.mts +2 -1
- package/dist/components/input-group.d.mts +6 -4
- package/dist/components/input.d.mts +2 -1
- package/dist/components/label.d.mts +2 -1
- package/dist/components/page-loader.d.mts +3 -1
- package/dist/components/pagination.d.mts +2 -1
- package/dist/components/popover.d.mts +5 -4
- package/dist/components/radio-group.d.mts +3 -2
- package/dist/components/scroll-area.d.mts +3 -2
- package/dist/components/select-trigger-variants.d.mts +3 -1
- package/dist/components/select.d.mts +9 -8
- package/dist/components/separator.d.mts +2 -1
- package/dist/components/sheet.d.mts +10 -9
- package/dist/components/shimmer-text.d.mts +3 -1
- package/dist/components/sidebar.d.mts +25 -23
- package/dist/components/skeleton.d.mts +4 -2
- package/dist/components/sonner.d.mts +3 -2
- package/dist/components/spinner.d.mts +5 -3
- package/dist/components/status-dot.d.mts +4 -2
- package/dist/components/switch.d.mts +2 -1
- package/dist/components/table.d.mts +9 -8
- package/dist/components/tabs.d.mts +11 -9
- package/dist/components/tag.d.mts +5 -3
- package/dist/components/task-progress.d.mts +3 -1
- package/dist/components/textarea.d.mts +2 -1
- package/dist/components/toggle-group.d.mts +5 -3
- package/dist/components/tooltip-icon-button.d.mts +2 -1
- package/dist/components/tooltip.d.mts +5 -4
- package/dist/components/typography.d.mts +5 -4
- package/dist/components/wizard.d.mts +3 -2
- package/package.json +1 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Button } from "./button.mjs";
|
|
2
2
|
import { TooltipContent } from "./tooltip.mjs";
|
|
3
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
4
|
import { VariantProps } from "class-variance-authority";
|
|
4
5
|
import * as React from "react";
|
|
6
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
5
7
|
|
|
6
8
|
//#region src/components/sidebar.d.ts
|
|
7
9
|
type SidebarContextProps = {
|
|
@@ -26,7 +28,7 @@ declare function SidebarProvider({
|
|
|
26
28
|
defaultOpen?: boolean;
|
|
27
29
|
open?: boolean;
|
|
28
30
|
onOpenChange?: (open: boolean) => void;
|
|
29
|
-
}):
|
|
31
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
30
32
|
declare function Sidebar({
|
|
31
33
|
side,
|
|
32
34
|
variant,
|
|
@@ -38,20 +40,20 @@ declare function Sidebar({
|
|
|
38
40
|
side?: "left" | "right";
|
|
39
41
|
variant?: "sidebar" | "floating" | "inset";
|
|
40
42
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
41
|
-
}):
|
|
43
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
42
44
|
declare function SidebarTrigger({
|
|
43
45
|
className,
|
|
44
46
|
onClick,
|
|
45
47
|
...props
|
|
46
|
-
}: React.ComponentProps<typeof Button>):
|
|
48
|
+
}: React.ComponentProps<typeof Button>): _$react_jsx_runtime0.JSX.Element;
|
|
47
49
|
declare function SidebarRail({
|
|
48
50
|
className,
|
|
49
51
|
...props
|
|
50
|
-
}: React.ComponentProps<"button">):
|
|
52
|
+
}: React.ComponentProps<"button">): _$react_jsx_runtime0.JSX.Element;
|
|
51
53
|
declare function SidebarInset({
|
|
52
54
|
className,
|
|
53
55
|
...props
|
|
54
|
-
}: React.ComponentProps<"main">):
|
|
56
|
+
}: React.ComponentProps<"main">): _$react_jsx_runtime0.JSX.Element;
|
|
55
57
|
interface SidebarHeaderProps extends React.ComponentProps<"div"> {
|
|
56
58
|
icon?: React.ReactNode;
|
|
57
59
|
title?: string;
|
|
@@ -62,52 +64,52 @@ declare function SidebarHeader({
|
|
|
62
64
|
title,
|
|
63
65
|
children,
|
|
64
66
|
...props
|
|
65
|
-
}: SidebarHeaderProps):
|
|
67
|
+
}: SidebarHeaderProps): _$react_jsx_runtime0.JSX.Element;
|
|
66
68
|
declare function SidebarFooter({
|
|
67
69
|
className,
|
|
68
70
|
...props
|
|
69
|
-
}: React.ComponentProps<"div">):
|
|
71
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
70
72
|
declare function SidebarSeparator({
|
|
71
73
|
className
|
|
72
|
-
}: React.ComponentProps<"div">):
|
|
74
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
73
75
|
declare function SidebarContent({
|
|
74
76
|
className,
|
|
75
77
|
...props
|
|
76
|
-
}: React.ComponentProps<"div">):
|
|
78
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
77
79
|
declare function SidebarGroup({
|
|
78
80
|
className,
|
|
79
81
|
...props
|
|
80
|
-
}: React.ComponentProps<"div">):
|
|
82
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
81
83
|
declare function SidebarGroupLabel({
|
|
82
84
|
className,
|
|
83
85
|
asChild,
|
|
84
86
|
...props
|
|
85
87
|
}: React.ComponentProps<"div"> & {
|
|
86
88
|
asChild?: boolean;
|
|
87
|
-
}):
|
|
89
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
88
90
|
declare function SidebarGroupAction({
|
|
89
91
|
className,
|
|
90
92
|
asChild,
|
|
91
93
|
...props
|
|
92
94
|
}: React.ComponentProps<"button"> & {
|
|
93
95
|
asChild?: boolean;
|
|
94
|
-
}):
|
|
96
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
95
97
|
declare function SidebarGroupContent({
|
|
96
98
|
className,
|
|
97
99
|
...props
|
|
98
|
-
}: React.ComponentProps<"div">):
|
|
100
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
99
101
|
declare function SidebarMenu({
|
|
100
102
|
className,
|
|
101
103
|
...props
|
|
102
|
-
}: React.ComponentProps<"ul">):
|
|
104
|
+
}: React.ComponentProps<"ul">): _$react_jsx_runtime0.JSX.Element;
|
|
103
105
|
declare function SidebarMenuItem({
|
|
104
106
|
className,
|
|
105
107
|
...props
|
|
106
|
-
}: React.ComponentProps<"li">):
|
|
108
|
+
}: React.ComponentProps<"li">): _$react_jsx_runtime0.JSX.Element;
|
|
107
109
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
108
110
|
variant?: "default" | "outline" | null | undefined;
|
|
109
111
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
110
|
-
} &
|
|
112
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
111
113
|
declare function SidebarMenuButton({
|
|
112
114
|
asChild,
|
|
113
115
|
isActive,
|
|
@@ -120,7 +122,7 @@ declare function SidebarMenuButton({
|
|
|
120
122
|
asChild?: boolean;
|
|
121
123
|
isActive?: boolean;
|
|
122
124
|
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
123
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>):
|
|
125
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): _$react_jsx_runtime0.JSX.Element;
|
|
124
126
|
declare function SidebarMenuAction({
|
|
125
127
|
className,
|
|
126
128
|
asChild,
|
|
@@ -129,23 +131,23 @@ declare function SidebarMenuAction({
|
|
|
129
131
|
}: React.ComponentProps<"button"> & {
|
|
130
132
|
asChild?: boolean;
|
|
131
133
|
showOnHover?: boolean;
|
|
132
|
-
}):
|
|
134
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
133
135
|
declare function SidebarMenuBadge({
|
|
134
136
|
className,
|
|
135
137
|
...props
|
|
136
|
-
}: React.ComponentProps<"div">):
|
|
138
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
137
139
|
declare function SidebarMenuSkeleton({
|
|
138
140
|
className,
|
|
139
141
|
...props
|
|
140
|
-
}: React.ComponentProps<"div">):
|
|
142
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
141
143
|
declare function SidebarMenuSub({
|
|
142
144
|
className,
|
|
143
145
|
...props
|
|
144
|
-
}: React.ComponentProps<"ul">):
|
|
146
|
+
}: React.ComponentProps<"ul">): _$react_jsx_runtime0.JSX.Element;
|
|
145
147
|
declare function SidebarMenuSubItem({
|
|
146
148
|
className,
|
|
147
149
|
...props
|
|
148
|
-
}: React.ComponentProps<"li">):
|
|
150
|
+
}: React.ComponentProps<"li">): _$react_jsx_runtime0.JSX.Element;
|
|
149
151
|
declare function SidebarMenuSubButton({
|
|
150
152
|
asChild,
|
|
151
153
|
size,
|
|
@@ -156,6 +158,6 @@ declare function SidebarMenuSubButton({
|
|
|
156
158
|
asChild?: boolean;
|
|
157
159
|
size?: "sm" | "md";
|
|
158
160
|
isActive?: boolean;
|
|
159
|
-
}):
|
|
161
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
160
162
|
//#endregion
|
|
161
163
|
export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, sidebarMenuButtonVariants, useSidebar };
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
2
4
|
|
|
3
5
|
//#region src/components/skeleton.d.ts
|
|
4
6
|
declare const skeletonVariants: (props?: ({
|
|
5
7
|
shape?: "rectangle" | "circle" | null | undefined;
|
|
6
|
-
} &
|
|
8
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
7
9
|
interface SkeletonProps extends React.ComponentProps<"div">, VariantProps<typeof skeletonVariants> {}
|
|
8
10
|
declare function Skeleton({
|
|
9
11
|
className,
|
|
10
12
|
shape,
|
|
11
13
|
...props
|
|
12
|
-
}: SkeletonProps):
|
|
14
|
+
}: SkeletonProps): _$react_jsx_runtime0.JSX.Element;
|
|
13
15
|
//#endregion
|
|
14
16
|
export { Skeleton, skeletonVariants };
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import { Toaster as Toaster$1, toast } from "sonner";
|
|
3
4
|
|
|
4
5
|
//#region src/components/sonner.d.ts
|
|
5
6
|
type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
6
|
-
declare function Toaster(props: ToasterProps):
|
|
7
|
+
declare function Toaster(props: ToasterProps): _$react_jsx_runtime0.JSX.Element;
|
|
7
8
|
interface ActionToastProps {
|
|
8
9
|
toastId: string | number;
|
|
9
10
|
title: string;
|
|
@@ -23,6 +24,6 @@ declare function ActionToast({
|
|
|
23
24
|
description,
|
|
24
25
|
onDismiss,
|
|
25
26
|
confirm
|
|
26
|
-
}: ActionToastProps):
|
|
27
|
+
}: ActionToastProps): _$react_jsx_runtime0.JSX.Element;
|
|
27
28
|
//#endregion
|
|
28
29
|
export { ActionToast, type ActionToastProps, Toaster, type ToasterProps, toast };
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
2
4
|
|
|
3
5
|
//#region src/components/spinner.d.ts
|
|
4
6
|
declare const spinnerVariants: (props?: ({
|
|
5
7
|
variant?: "secondary" | "primary" | null | undefined;
|
|
6
8
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
7
|
-
} &
|
|
9
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
8
10
|
interface SpinnerProps extends Omit<React.ComponentProps<"svg">, "children">, VariantProps<typeof spinnerVariants> {}
|
|
9
11
|
declare function Spinner({
|
|
10
12
|
className,
|
|
11
13
|
variant,
|
|
12
14
|
size,
|
|
13
15
|
...props
|
|
14
|
-
}: SpinnerProps):
|
|
16
|
+
}: SpinnerProps): _$react_jsx_runtime0.JSX.Element;
|
|
15
17
|
interface SpinnerBlockProps extends VariantProps<typeof spinnerVariants> {
|
|
16
18
|
className?: string;
|
|
17
19
|
fullscreen?: boolean;
|
|
@@ -23,6 +25,6 @@ declare function SpinnerBlock({
|
|
|
23
25
|
size,
|
|
24
26
|
fullscreen,
|
|
25
27
|
withLabel
|
|
26
|
-
}: SpinnerBlockProps):
|
|
28
|
+
}: SpinnerBlockProps): _$react_jsx_runtime0.JSX.Element;
|
|
27
29
|
//#endregion
|
|
28
30
|
export { Spinner, SpinnerBlock, type SpinnerBlockProps, type SpinnerProps, spinnerVariants };
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
2
4
|
|
|
3
5
|
//#region src/components/status-dot.d.ts
|
|
4
6
|
declare const statusDotVariants: (props?: ({
|
|
5
7
|
variant?: "destructive" | "warning" | "success" | "muted" | null | undefined;
|
|
6
8
|
pulse?: boolean | null | undefined;
|
|
7
|
-
} &
|
|
9
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
8
10
|
interface StatusDotProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statusDotVariants> {}
|
|
9
11
|
declare function StatusDot({
|
|
10
12
|
className,
|
|
11
13
|
variant,
|
|
12
14
|
pulse,
|
|
13
15
|
...props
|
|
14
|
-
}: StatusDotProps):
|
|
16
|
+
}: StatusDotProps): _$react_jsx_runtime0.JSX.Element;
|
|
15
17
|
type StatusDotVariantProps = Required<Pick<VariantProps<typeof statusDotVariants>, "variant" | "pulse">>;
|
|
16
18
|
//#endregion
|
|
17
19
|
export { StatusDot, type StatusDotVariantProps, statusDotVariants };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
3
4
|
|
|
@@ -5,6 +6,6 @@ import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
|
5
6
|
declare function Switch({
|
|
6
7
|
className,
|
|
7
8
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof SwitchPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof SwitchPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
9
10
|
//#endregion
|
|
10
11
|
export { Switch };
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/table.d.ts
|
|
4
5
|
declare function Table({
|
|
5
6
|
className,
|
|
6
7
|
...props
|
|
7
|
-
}: React.ComponentProps<"table">):
|
|
8
|
+
}: React.ComponentProps<"table">): _$react_jsx_runtime0.JSX.Element;
|
|
8
9
|
declare function TableHeader({
|
|
9
10
|
className,
|
|
10
11
|
...props
|
|
11
|
-
}: React.ComponentProps<"thead">):
|
|
12
|
+
}: React.ComponentProps<"thead">): _$react_jsx_runtime0.JSX.Element;
|
|
12
13
|
declare function TableBody({
|
|
13
14
|
className,
|
|
14
15
|
...props
|
|
15
|
-
}: React.ComponentProps<"tbody">):
|
|
16
|
+
}: React.ComponentProps<"tbody">): _$react_jsx_runtime0.JSX.Element;
|
|
16
17
|
declare function TableFooter({
|
|
17
18
|
className,
|
|
18
19
|
...props
|
|
19
|
-
}: React.ComponentProps<"tfoot">):
|
|
20
|
+
}: React.ComponentProps<"tfoot">): _$react_jsx_runtime0.JSX.Element;
|
|
20
21
|
declare function TableRow({
|
|
21
22
|
className,
|
|
22
23
|
...props
|
|
23
|
-
}: React.ComponentProps<"tr">):
|
|
24
|
+
}: React.ComponentProps<"tr">): _$react_jsx_runtime0.JSX.Element;
|
|
24
25
|
declare function TableHead({
|
|
25
26
|
className,
|
|
26
27
|
...props
|
|
27
|
-
}: React.ComponentProps<"th">):
|
|
28
|
+
}: React.ComponentProps<"th">): _$react_jsx_runtime0.JSX.Element;
|
|
28
29
|
interface TableCellProps extends React.ComponentProps<"td"> {
|
|
29
30
|
/**
|
|
30
31
|
* When true, the cell renders edge-to-edge so the child can act as the
|
|
@@ -37,10 +38,10 @@ declare function TableCell({
|
|
|
37
38
|
className,
|
|
38
39
|
interactive,
|
|
39
40
|
...props
|
|
40
|
-
}: TableCellProps):
|
|
41
|
+
}: TableCellProps): _$react_jsx_runtime0.JSX.Element;
|
|
41
42
|
declare function TableCaption({
|
|
42
43
|
className,
|
|
43
44
|
...props
|
|
44
|
-
}: React.ComponentProps<"caption">):
|
|
45
|
+
}: React.ComponentProps<"caption">): _$react_jsx_runtime0.JSX.Element;
|
|
45
46
|
//#endregion
|
|
46
47
|
export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow };
|
|
@@ -1,32 +1,34 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
5
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
4
6
|
|
|
5
7
|
//#region src/components/tabs.d.ts
|
|
6
8
|
declare const tabsTriggerVariants: (props?: ({
|
|
7
9
|
variant?: "default" | "pill" | "line" | null | undefined;
|
|
8
|
-
} &
|
|
10
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
9
11
|
declare function Tabs({
|
|
10
12
|
className,
|
|
11
13
|
orientation,
|
|
12
14
|
...props
|
|
13
|
-
}: React.ComponentProps<typeof TabsPrimitive.Root>):
|
|
15
|
+
}: React.ComponentProps<typeof TabsPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
14
16
|
declare const tabsListVariants: (props?: ({
|
|
15
17
|
variant?: "default" | "line" | null | undefined;
|
|
16
|
-
} &
|
|
18
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
17
19
|
declare function TabsList({
|
|
18
20
|
className,
|
|
19
21
|
variant,
|
|
20
22
|
...props
|
|
21
|
-
}: React.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>):
|
|
23
|
+
}: React.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>): _$react_jsx_runtime0.JSX.Element;
|
|
22
24
|
declare function TabsTrigger({
|
|
23
25
|
className,
|
|
24
26
|
...props
|
|
25
|
-
}: React.ComponentProps<typeof TabsPrimitive.Trigger>):
|
|
27
|
+
}: React.ComponentProps<typeof TabsPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
|
|
26
28
|
declare function TabsContent({
|
|
27
29
|
className,
|
|
28
30
|
...props
|
|
29
|
-
}: React.ComponentProps<typeof TabsPrimitive.Content>):
|
|
31
|
+
}: React.ComponentProps<typeof TabsPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
|
|
30
32
|
type TabsNavVariant = "line" | "pill";
|
|
31
33
|
type TabsNavOrientation = "horizontal" | "vertical";
|
|
32
34
|
declare function TabsNav({
|
|
@@ -37,11 +39,11 @@ declare function TabsNav({
|
|
|
37
39
|
}: React.ComponentProps<"nav"> & {
|
|
38
40
|
orientation?: TabsNavOrientation;
|
|
39
41
|
variant?: TabsNavVariant;
|
|
40
|
-
}):
|
|
42
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
41
43
|
declare function TabsNavList({
|
|
42
44
|
className,
|
|
43
45
|
...props
|
|
44
|
-
}: React.ComponentProps<"ul">):
|
|
46
|
+
}: React.ComponentProps<"ul">): _$react_jsx_runtime0.JSX.Element;
|
|
45
47
|
declare function TabsNavTrigger({
|
|
46
48
|
className,
|
|
47
49
|
active,
|
|
@@ -51,6 +53,6 @@ declare function TabsNavTrigger({
|
|
|
51
53
|
}: React.ComponentProps<"a"> & {
|
|
52
54
|
active?: boolean;
|
|
53
55
|
asChild?: boolean;
|
|
54
|
-
}):
|
|
56
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
55
57
|
//#endregion
|
|
56
58
|
export { Tabs, TabsContent, TabsList, TabsNav, TabsNavList, TabsNavTrigger, TabsTrigger, tabsListVariants, tabsTriggerVariants };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
|
|
1
3
|
//#region src/components/tag.d.ts
|
|
2
4
|
interface TagBaseProps {
|
|
3
5
|
icon?: React.ReactNode;
|
|
@@ -8,7 +10,7 @@ declare function Tag({
|
|
|
8
10
|
icon,
|
|
9
11
|
children,
|
|
10
12
|
...props
|
|
11
|
-
}: TagProps):
|
|
13
|
+
}: TagProps): _$react_jsx_runtime0.JSX.Element;
|
|
12
14
|
interface TagDismissibleProps extends React.ComponentProps<"span">, TagBaseProps {
|
|
13
15
|
onDismiss?: () => void;
|
|
14
16
|
}
|
|
@@ -18,7 +20,7 @@ declare function TagDismissible({
|
|
|
18
20
|
children,
|
|
19
21
|
onDismiss,
|
|
20
22
|
...props
|
|
21
|
-
}: TagDismissibleProps):
|
|
23
|
+
}: TagDismissibleProps): _$react_jsx_runtime0.JSX.Element;
|
|
22
24
|
interface TagCountProps extends React.ComponentProps<"span">, TagBaseProps {
|
|
23
25
|
count: number;
|
|
24
26
|
}
|
|
@@ -28,6 +30,6 @@ declare function TagCount({
|
|
|
28
30
|
children,
|
|
29
31
|
count,
|
|
30
32
|
...props
|
|
31
|
-
}: TagCountProps):
|
|
33
|
+
}: TagCountProps): _$react_jsx_runtime0.JSX.Element;
|
|
32
34
|
//#endregion
|
|
33
35
|
export { Tag, TagCount, TagDismissible };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
|
|
1
3
|
//#region src/components/task-progress.d.ts
|
|
2
4
|
type TaskProgressStatus = "pending" | "running" | "done";
|
|
3
5
|
interface TaskProgressStep {
|
|
@@ -20,6 +22,6 @@ declare function TaskProgress({
|
|
|
20
22
|
stepRevealDelayMs,
|
|
21
23
|
className,
|
|
22
24
|
...props
|
|
23
|
-
}: TaskProgressProps):
|
|
25
|
+
}: TaskProgressProps): _$react_jsx_runtime0.JSX.Element;
|
|
24
26
|
//#endregion
|
|
25
27
|
export { TaskProgress, type TaskProgressStatus, type TaskProgressStep };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/textarea.d.ts
|
|
@@ -17,6 +18,6 @@ declare function Textarea({
|
|
|
17
18
|
error,
|
|
18
19
|
tooltip,
|
|
19
20
|
...props
|
|
20
|
-
}: TextareaProps):
|
|
21
|
+
}: TextareaProps): _$react_jsx_runtime0.JSX.Element;
|
|
21
22
|
//#endregion
|
|
22
23
|
export { Textarea, type TextareaProps };
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
|
5
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
4
6
|
|
|
5
7
|
//#region src/components/toggle-group.d.ts
|
|
6
8
|
declare const toggleGroupItemVariants: (props?: ({
|
|
7
9
|
variant?: "default" | "outline" | null | undefined;
|
|
8
10
|
size?: "default" | "sm" | null | undefined;
|
|
9
|
-
} &
|
|
11
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
12
|
type ToggleGroupContextValue = VariantProps<typeof toggleGroupItemVariants>;
|
|
11
13
|
declare function ToggleGroup({
|
|
12
14
|
className,
|
|
@@ -14,13 +16,13 @@ declare function ToggleGroup({
|
|
|
14
16
|
size,
|
|
15
17
|
children,
|
|
16
18
|
...props
|
|
17
|
-
}: React.ComponentProps<typeof ToggleGroupPrimitive.Root> & ToggleGroupContextValue):
|
|
19
|
+
}: React.ComponentProps<typeof ToggleGroupPrimitive.Root> & ToggleGroupContextValue): _$react_jsx_runtime0.JSX.Element;
|
|
18
20
|
declare function ToggleGroupItem({
|
|
19
21
|
className,
|
|
20
22
|
children,
|
|
21
23
|
variant,
|
|
22
24
|
size,
|
|
23
25
|
...props
|
|
24
|
-
}: React.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleGroupItemVariants>):
|
|
26
|
+
}: React.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleGroupItemVariants>): _$react_jsx_runtime0.JSX.Element;
|
|
25
27
|
//#endregion
|
|
26
28
|
export { ToggleGroup, ToggleGroupItem, toggleGroupItemVariants };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Button } from "./button.mjs";
|
|
2
|
+
import * as _$react from "react";
|
|
2
3
|
import { ComponentPropsWithRef } from "react";
|
|
3
4
|
|
|
4
5
|
//#region src/components/tooltip-icon-button.d.ts
|
|
@@ -6,6 +7,6 @@ type TooltipIconButtonProps = ComponentPropsWithRef<typeof Button> & {
|
|
|
6
7
|
tooltip: string;
|
|
7
8
|
side?: "top" | "bottom" | "left" | "right";
|
|
8
9
|
};
|
|
9
|
-
declare const TooltipIconButton:
|
|
10
|
+
declare const TooltipIconButton: _$react.ForwardRefExoticComponent<Omit<TooltipIconButtonProps, "ref"> & _$react.RefAttributes<HTMLButtonElement>>;
|
|
10
11
|
//#endregion
|
|
11
12
|
export { TooltipIconButton, type TooltipIconButtonProps };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
3
4
|
|
|
@@ -5,18 +6,18 @@ import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
|
5
6
|
declare function TooltipProvider({
|
|
6
7
|
delayDuration,
|
|
7
8
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof TooltipPrimitive.Provider>):
|
|
9
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Provider>): _$react_jsx_runtime0.JSX.Element;
|
|
9
10
|
declare function Tooltip({
|
|
10
11
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof TooltipPrimitive.Root>):
|
|
12
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
12
13
|
declare function TooltipTrigger({
|
|
13
14
|
...props
|
|
14
|
-
}: React.ComponentProps<typeof TooltipPrimitive.Trigger>):
|
|
15
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
|
|
15
16
|
declare function TooltipContent({
|
|
16
17
|
className,
|
|
17
18
|
sideOffset,
|
|
18
19
|
children,
|
|
19
20
|
...props
|
|
20
|
-
}: React.ComponentProps<typeof TooltipPrimitive.Content>):
|
|
21
|
+
}: React.ComponentProps<typeof TooltipPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
|
|
21
22
|
//#endregion
|
|
22
23
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { ReactNode } from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/typography.d.ts
|
|
@@ -7,27 +8,27 @@ declare function H1({
|
|
|
7
8
|
}: {
|
|
8
9
|
children: ReactNode;
|
|
9
10
|
className?: string;
|
|
10
|
-
}):
|
|
11
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
11
12
|
declare function H2({
|
|
12
13
|
children,
|
|
13
14
|
className
|
|
14
15
|
}: {
|
|
15
16
|
children: ReactNode;
|
|
16
17
|
className?: string;
|
|
17
|
-
}):
|
|
18
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
18
19
|
declare function H3({
|
|
19
20
|
children,
|
|
20
21
|
className
|
|
21
22
|
}: {
|
|
22
23
|
children: ReactNode;
|
|
23
24
|
className?: string;
|
|
24
|
-
}):
|
|
25
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
25
26
|
declare function H4({
|
|
26
27
|
children,
|
|
27
28
|
className
|
|
28
29
|
}: {
|
|
29
30
|
children: ReactNode;
|
|
30
31
|
className?: string;
|
|
31
|
-
}):
|
|
32
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
32
33
|
//#endregion
|
|
33
34
|
export { H1, H2, H3, H4 };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/wizard.d.ts
|
|
@@ -18,7 +19,7 @@ declare function WizardSteps({
|
|
|
18
19
|
onSelect,
|
|
19
20
|
ariaLabel,
|
|
20
21
|
className
|
|
21
|
-
}: WizardStepsProps):
|
|
22
|
+
}: WizardStepsProps): _$react_jsx_runtime0.JSX.Element;
|
|
22
23
|
interface WizardProgressProps extends React.ComponentProps<"div"> {
|
|
23
24
|
current: number;
|
|
24
25
|
total: number;
|
|
@@ -28,6 +29,6 @@ declare function WizardProgress({
|
|
|
28
29
|
total,
|
|
29
30
|
className,
|
|
30
31
|
...props
|
|
31
|
-
}: WizardProgressProps):
|
|
32
|
+
}: WizardProgressProps): _$react_jsx_runtime0.JSX.Element;
|
|
32
33
|
//#endregion
|
|
33
34
|
export { WizardProgress, type WizardStep, WizardSteps };
|