@alpic-ai/ui 0.0.0-staging.e366eba → 0.0.0-staging.e5ec9a3
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/alert.d.mts +1 -1
- package/dist/components/badge.d.mts +1 -1
- package/dist/components/button.d.mts +1 -1
- package/dist/components/dropdown-menu.d.mts +1 -1
- package/dist/components/sidebar.d.mts +1 -1
- package/dist/components/sidebar.mjs +28 -13
- package/dist/components/spinner.d.mts +1 -1
- package/dist/components/status-dot.d.mts +1 -1
- package/dist/components/toggle-group.d.mts +1 -1
- package/package.json +3 -3
- package/src/components/sidebar.tsx +12 -11
|
@@ -5,7 +5,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/alert.d.ts
|
|
7
7
|
declare const alertVariants: (props?: ({
|
|
8
|
-
variant?: "
|
|
8
|
+
variant?: "destructive" | "default" | "success" | "warning" | null | undefined;
|
|
9
9
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {}
|
|
11
11
|
declare function Alert({
|
|
@@ -4,7 +4,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
4
4
|
|
|
5
5
|
//#region src/components/badge.d.ts
|
|
6
6
|
declare const badgeVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
7
|
+
variant?: "primary" | "secondary" | "success" | "warning" | "error" | null | undefined;
|
|
8
8
|
size?: "sm" | "md" | null | undefined;
|
|
9
9
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {}
|
|
@@ -5,7 +5,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/button.d.ts
|
|
7
7
|
declare const buttonVariants: (props?: ({
|
|
8
|
-
variant?: "
|
|
8
|
+
variant?: "primary" | "secondary" | "tertiary" | "link" | "link-muted" | "destructive" | null | undefined;
|
|
9
9
|
size?: "default" | "icon" | "icon-rounded" | "pill" | null | undefined;
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
11
11
|
interface ButtonProps extends React.ComponentProps<"button">, VariantProps<typeof buttonVariants> {
|
|
@@ -23,7 +23,7 @@ declare function DropdownMenuGroup({
|
|
|
23
23
|
...props
|
|
24
24
|
}: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): _$react_jsx_runtime0.JSX.Element;
|
|
25
25
|
declare const dropdownMenuItemVariants: (props?: ({
|
|
26
|
-
variant?: "
|
|
26
|
+
variant?: "destructive" | "default" | null | undefined;
|
|
27
27
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
28
28
|
declare function DropdownMenuItem({
|
|
29
29
|
className,
|
|
@@ -108,7 +108,7 @@ declare function SidebarMenuItem({
|
|
|
108
108
|
}: React.ComponentProps<"li">): _$react_jsx_runtime0.JSX.Element;
|
|
109
109
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
110
110
|
variant?: "default" | "outline" | null | undefined;
|
|
111
|
-
size?: "
|
|
111
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
112
112
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
113
113
|
declare function SidebarMenuButton({
|
|
114
114
|
asChild,
|
|
@@ -6,7 +6,6 @@ import { Separator } from "./separator.mjs";
|
|
|
6
6
|
import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle } from "./sheet.mjs";
|
|
7
7
|
import { useIsMobile } from "../hooks/use-mobile.mjs";
|
|
8
8
|
import { Skeleton } from "./skeleton.mjs";
|
|
9
|
-
import { PanelLeftClose, PanelLeftOpen } from "lucide-react";
|
|
10
9
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
11
10
|
import { cva } from "class-variance-authority";
|
|
12
11
|
import * as React from "react";
|
|
@@ -132,8 +131,7 @@ function Sidebar({ side = "left", variant = "sidebar", collapsible = "offcanvas"
|
|
|
132
131
|
});
|
|
133
132
|
}
|
|
134
133
|
function SidebarTrigger({ className, onClick, ...props }) {
|
|
135
|
-
const {
|
|
136
|
-
const isOpen = isMobile ? openMobile : state === "expanded";
|
|
134
|
+
const { toggleSidebar } = useSidebar();
|
|
137
135
|
return /* @__PURE__ */ jsxs(Button, {
|
|
138
136
|
"data-sidebar": "trigger",
|
|
139
137
|
"data-slot": "sidebar-trigger",
|
|
@@ -145,12 +143,35 @@ function SidebarTrigger({ className, onClick, ...props }) {
|
|
|
145
143
|
toggleSidebar();
|
|
146
144
|
},
|
|
147
145
|
...props,
|
|
148
|
-
children: [
|
|
146
|
+
children: [/* @__PURE__ */ jsx(SidebarToggleIcon, { className: "size-4.5" }), /* @__PURE__ */ jsx("span", {
|
|
149
147
|
className: "sr-only",
|
|
150
148
|
children: "Toggle Sidebar"
|
|
151
149
|
})]
|
|
152
150
|
});
|
|
153
151
|
}
|
|
152
|
+
function SidebarToggleIcon({ className, ...props }) {
|
|
153
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
154
|
+
viewBox: "0 0 20 20",
|
|
155
|
+
fill: "none",
|
|
156
|
+
"aria-hidden": "true",
|
|
157
|
+
className,
|
|
158
|
+
...props,
|
|
159
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
160
|
+
x: "2.75",
|
|
161
|
+
y: "2.75",
|
|
162
|
+
width: "14.5",
|
|
163
|
+
height: "14.5",
|
|
164
|
+
rx: "4",
|
|
165
|
+
stroke: "currentColor",
|
|
166
|
+
strokeWidth: "1.5"
|
|
167
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
168
|
+
d: "M10 4.75V15.25",
|
|
169
|
+
stroke: "currentColor",
|
|
170
|
+
strokeWidth: "1.5",
|
|
171
|
+
strokeLinecap: "round"
|
|
172
|
+
})]
|
|
173
|
+
});
|
|
174
|
+
}
|
|
154
175
|
function SidebarRail({ className, ...props }) {
|
|
155
176
|
const { toggleSidebar } = useSidebar();
|
|
156
177
|
return /* @__PURE__ */ jsx("button", {
|
|
@@ -187,15 +208,9 @@ function SidebarHeader({ className, icon, title, children, ...props }) {
|
|
|
187
208
|
children: [/* @__PURE__ */ jsxs("div", {
|
|
188
209
|
className: "flex h-8 items-center gap-2 px-3",
|
|
189
210
|
children: [
|
|
190
|
-
/* @__PURE__ */
|
|
191
|
-
className: "
|
|
192
|
-
children:
|
|
193
|
-
className: "transition-opacity group-data-[collapsible=icon]:group-hover:opacity-0",
|
|
194
|
-
children: icon
|
|
195
|
-
}), /* @__PURE__ */ jsx("div", {
|
|
196
|
-
className: "absolute inset-0 flex items-center justify-center opacity-0 transition-opacity group-data-[collapsible=icon]:group-hover:opacity-100",
|
|
197
|
-
children: /* @__PURE__ */ jsx(SidebarTrigger, {})
|
|
198
|
-
})]
|
|
211
|
+
/* @__PURE__ */ jsx("div", {
|
|
212
|
+
className: "shrink-0",
|
|
213
|
+
children: icon
|
|
199
214
|
}),
|
|
200
215
|
/* @__PURE__ */ jsx("span", {
|
|
201
216
|
className: "text-foreground text-md min-w-0 truncate font-medium group-data-[collapsible=icon]:hidden",
|
|
@@ -4,7 +4,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
4
4
|
|
|
5
5
|
//#region src/components/spinner.d.ts
|
|
6
6
|
declare const spinnerVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
7
|
+
variant?: "primary" | "secondary" | null | undefined;
|
|
8
8
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
9
9
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
interface SpinnerProps extends Omit<React.ComponentProps<"svg">, "children">, VariantProps<typeof spinnerVariants> {}
|
|
@@ -4,7 +4,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
4
4
|
|
|
5
5
|
//#region src/components/status-dot.d.ts
|
|
6
6
|
declare const statusDotVariants: (props?: ({
|
|
7
|
-
variant?: "destructive" | "
|
|
7
|
+
variant?: "destructive" | "success" | "warning" | "muted" | null | undefined;
|
|
8
8
|
pulse?: boolean | null | undefined;
|
|
9
9
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
interface StatusDotProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statusDotVariants> {}
|
|
@@ -7,7 +7,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
|
|
|
7
7
|
//#region src/components/toggle-group.d.ts
|
|
8
8
|
declare const toggleGroupItemVariants: (props?: ({
|
|
9
9
|
variant?: "default" | "outline" | null | undefined;
|
|
10
|
-
size?: "
|
|
10
|
+
size?: "sm" | "default" | null | undefined;
|
|
11
11
|
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
12
12
|
type ToggleGroupContextValue = VariantProps<typeof toggleGroupItemVariants>;
|
|
13
13
|
declare function ToggleGroup({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/ui",
|
|
3
|
-
"version": "0.0.0-staging.
|
|
3
|
+
"version": "0.0.0-staging.e5ec9a3",
|
|
4
4
|
"description": "Alpic design system — shared UI components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"shx": "^0.4.0",
|
|
65
65
|
"sonner": "^2.0.7",
|
|
66
66
|
"tailwindcss": "^4.2.2",
|
|
67
|
-
"tsdown": "^0.21.
|
|
67
|
+
"tsdown": "^0.21.9",
|
|
68
68
|
"tw-animate-css": "^1.4.0",
|
|
69
|
-
"typescript": "^6.0.
|
|
69
|
+
"typescript": "^6.0.3"
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
72
|
"build": "shx rm -rf dist && tsdown",
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
import { Slot } from "@radix-ui/react-slot";
|
|
4
4
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
5
|
-
import { PanelLeftClose, PanelLeftOpen } from "lucide-react";
|
|
6
5
|
import * as React from "react";
|
|
7
6
|
|
|
8
7
|
import { useIsMobile } from "../hooks/use-mobile";
|
|
@@ -231,9 +230,7 @@ function Sidebar({
|
|
|
231
230
|
}
|
|
232
231
|
|
|
233
232
|
function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<typeof Button>) {
|
|
234
|
-
const {
|
|
235
|
-
|
|
236
|
-
const isOpen = isMobile ? openMobile : state === "expanded";
|
|
233
|
+
const { toggleSidebar } = useSidebar();
|
|
237
234
|
|
|
238
235
|
return (
|
|
239
236
|
<Button
|
|
@@ -248,12 +245,21 @@ function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<t
|
|
|
248
245
|
}}
|
|
249
246
|
{...props}
|
|
250
247
|
>
|
|
251
|
-
|
|
248
|
+
<SidebarToggleIcon className="size-4.5" />
|
|
252
249
|
<span className="sr-only">Toggle Sidebar</span>
|
|
253
250
|
</Button>
|
|
254
251
|
);
|
|
255
252
|
}
|
|
256
253
|
|
|
254
|
+
function SidebarToggleIcon({ className, ...props }: React.ComponentProps<"svg">) {
|
|
255
|
+
return (
|
|
256
|
+
<svg viewBox="0 0 20 20" fill="none" aria-hidden="true" className={className} {...props}>
|
|
257
|
+
<rect x="2.75" y="2.75" width="14.5" height="14.5" rx="4" stroke="currentColor" strokeWidth="1.5" />
|
|
258
|
+
<path d="M10 4.75V15.25" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
|
|
259
|
+
</svg>
|
|
260
|
+
);
|
|
261
|
+
}
|
|
262
|
+
|
|
257
263
|
function SidebarRail({ className, ...props }: React.ComponentProps<"button">) {
|
|
258
264
|
const { toggleSidebar } = useSidebar();
|
|
259
265
|
|
|
@@ -320,12 +326,7 @@ function SidebarHeader({ className, icon, title, children, ...props }: SidebarHe
|
|
|
320
326
|
{...props}
|
|
321
327
|
>
|
|
322
328
|
<div className="flex h-8 items-center gap-2 px-3">
|
|
323
|
-
<div className="
|
|
324
|
-
<span className="transition-opacity group-data-[collapsible=icon]:group-hover:opacity-0">{icon}</span>
|
|
325
|
-
<div className="absolute inset-0 flex items-center justify-center opacity-0 transition-opacity group-data-[collapsible=icon]:group-hover:opacity-100">
|
|
326
|
-
<SidebarTrigger />
|
|
327
|
-
</div>
|
|
328
|
-
</div>
|
|
329
|
+
<div className="shrink-0">{icon}</div>
|
|
329
330
|
<span className="text-foreground text-md min-w-0 truncate font-medium group-data-[collapsible=icon]:hidden">
|
|
330
331
|
{title}
|
|
331
332
|
</span>
|