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