@tangle-network/sandbox-ui 0.21.1 → 0.21.2
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/auth.js +3 -1
- package/dist/{chunk-R6NONXFC.js → chunk-BP6ZTBI6.js} +2 -2
- package/dist/{chunk-IOB2PW5Z.js → chunk-R3ZMMCT3.js} +5 -13
- package/dist/chunk-SM7IJY4I.js +178 -0
- package/dist/{chunk-7ZA5SEK3.js → chunk-UHFJXO24.js} +1 -177
- package/dist/{chunk-LA5GHELP.js → chunk-ZNYEJERQ.js} +4 -2
- package/dist/dashboard.js +3 -2
- package/dist/index.js +8 -6
- package/dist/pages.js +2 -1
- package/dist/primitives.js +5 -3
- package/dist/workspace.js +1 -1
- package/package.json +12 -17
package/dist/auth.js
CHANGED
|
@@ -1928,9 +1928,9 @@ function CalendarView({
|
|
|
1928
1928
|
children: date.getDate()
|
|
1929
1929
|
}
|
|
1930
1930
|
),
|
|
1931
|
-
/* @__PURE__ */ jsxs12("div", { className: "flex flex-
|
|
1931
|
+
/* @__PURE__ */ jsxs12("div", { className: "flex flex-col gap-0.5 w-full min-w-0", children: [
|
|
1932
1932
|
dayEvents.slice(0, 3).map(
|
|
1933
|
-
(evt) => renderEventChip ? /* @__PURE__ */ jsx12("
|
|
1933
|
+
(evt) => renderEventChip ? /* @__PURE__ */ jsx12("div", { className: "w-full min-w-0", children: renderEventChip(evt) }, evt.id) : /* @__PURE__ */ jsx12(
|
|
1934
1934
|
"div",
|
|
1935
1935
|
{
|
|
1936
1936
|
className: "w-full truncate text-[9px] px-1 py-0.5 rounded bg-primary/10 text-primary",
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
TangleKnot
|
|
3
|
+
} from "./chunk-UHFJXO24.js";
|
|
4
|
+
|
|
1
5
|
// src/auth/index.ts
|
|
2
6
|
import {
|
|
3
7
|
AuthHeader,
|
|
@@ -10,18 +14,6 @@ import {
|
|
|
10
14
|
import { Button } from "@tangle-network/ui/primitives";
|
|
11
15
|
import { cn } from "@tangle-network/ui/utils";
|
|
12
16
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
13
|
-
function TangleMark({ className }) {
|
|
14
|
-
return /* @__PURE__ */ jsx(
|
|
15
|
-
"svg",
|
|
16
|
-
{
|
|
17
|
-
className,
|
|
18
|
-
viewBox: "0 0 24 24",
|
|
19
|
-
fill: "currentColor",
|
|
20
|
-
"aria-hidden": "true",
|
|
21
|
-
children: /* @__PURE__ */ jsx("path", { d: "M4 5h16v3.2h-6.4V19h-3.2V8.2H4V5z" })
|
|
22
|
-
}
|
|
23
|
-
);
|
|
24
|
-
}
|
|
25
17
|
function TangleLoginButton({
|
|
26
18
|
authUrl = "/auth/tangle",
|
|
27
19
|
variant = "default",
|
|
@@ -39,7 +31,7 @@ function TangleLoginButton({
|
|
|
39
31
|
},
|
|
40
32
|
...props,
|
|
41
33
|
children: [
|
|
42
|
-
/* @__PURE__ */ jsx(
|
|
34
|
+
/* @__PURE__ */ jsx(TangleKnot, { size: 20 }),
|
|
43
35
|
children ?? "Sign in with Tangle"
|
|
44
36
|
]
|
|
45
37
|
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
// src/primitives/index.ts
|
|
2
|
+
import {
|
|
3
|
+
Avatar,
|
|
4
|
+
AvatarFallback,
|
|
5
|
+
AvatarImage,
|
|
6
|
+
Badge,
|
|
7
|
+
badgeVariants,
|
|
8
|
+
Button,
|
|
9
|
+
buttonVariants,
|
|
10
|
+
Card,
|
|
11
|
+
CardContent,
|
|
12
|
+
CardDescription,
|
|
13
|
+
CardFooter,
|
|
14
|
+
CardHeader,
|
|
15
|
+
CardTitle,
|
|
16
|
+
CodeBlock,
|
|
17
|
+
CopyButton,
|
|
18
|
+
Dialog,
|
|
19
|
+
DialogClose,
|
|
20
|
+
DialogContent,
|
|
21
|
+
DialogDescription,
|
|
22
|
+
DialogFooter,
|
|
23
|
+
DialogHeader,
|
|
24
|
+
DialogOverlay,
|
|
25
|
+
DialogPortal,
|
|
26
|
+
DialogTitle,
|
|
27
|
+
DialogTrigger,
|
|
28
|
+
DropZone,
|
|
29
|
+
DropdownMenu,
|
|
30
|
+
DropdownMenuCheckboxItem,
|
|
31
|
+
DropdownMenuContent,
|
|
32
|
+
DropdownMenuGroup,
|
|
33
|
+
DropdownMenuItem,
|
|
34
|
+
DropdownMenuLabel,
|
|
35
|
+
DropdownMenuPortal,
|
|
36
|
+
DropdownMenuRadioGroup,
|
|
37
|
+
DropdownMenuRadioItem,
|
|
38
|
+
DropdownMenuSeparator,
|
|
39
|
+
DropdownMenuShortcut,
|
|
40
|
+
DropdownMenuSub,
|
|
41
|
+
DropdownMenuSubContent,
|
|
42
|
+
DropdownMenuSubTrigger,
|
|
43
|
+
DropdownMenuTrigger,
|
|
44
|
+
EmptyState,
|
|
45
|
+
InlineCode,
|
|
46
|
+
Input,
|
|
47
|
+
Label,
|
|
48
|
+
Progress,
|
|
49
|
+
SegmentedControl,
|
|
50
|
+
Select,
|
|
51
|
+
SelectContent,
|
|
52
|
+
SelectGroup,
|
|
53
|
+
SelectItem,
|
|
54
|
+
SelectLabel,
|
|
55
|
+
SelectScrollDownButton,
|
|
56
|
+
SelectScrollUpButton,
|
|
57
|
+
SelectSeparator,
|
|
58
|
+
SelectTrigger,
|
|
59
|
+
SelectValue,
|
|
60
|
+
SidebarDropZone,
|
|
61
|
+
Skeleton,
|
|
62
|
+
SkeletonCard,
|
|
63
|
+
SkeletonTable,
|
|
64
|
+
StatCard,
|
|
65
|
+
Switch,
|
|
66
|
+
Table,
|
|
67
|
+
TableBody,
|
|
68
|
+
TableCaption,
|
|
69
|
+
TableCell,
|
|
70
|
+
TableFooter,
|
|
71
|
+
TableHead,
|
|
72
|
+
TableHeader,
|
|
73
|
+
TableRow,
|
|
74
|
+
Tabs,
|
|
75
|
+
TabsContent,
|
|
76
|
+
TabsList,
|
|
77
|
+
TabsTrigger,
|
|
78
|
+
TerminalCursor,
|
|
79
|
+
TerminalDisplay,
|
|
80
|
+
TerminalInput,
|
|
81
|
+
TerminalLine,
|
|
82
|
+
Textarea,
|
|
83
|
+
ThemeToggle,
|
|
84
|
+
ToastContainer,
|
|
85
|
+
ToastProvider,
|
|
86
|
+
UploadProgress,
|
|
87
|
+
useTheme,
|
|
88
|
+
useToast
|
|
89
|
+
} from "@tangle-network/ui/primitives";
|
|
90
|
+
|
|
91
|
+
export {
|
|
92
|
+
Avatar,
|
|
93
|
+
AvatarFallback,
|
|
94
|
+
AvatarImage,
|
|
95
|
+
Badge,
|
|
96
|
+
badgeVariants,
|
|
97
|
+
Button,
|
|
98
|
+
buttonVariants,
|
|
99
|
+
Card,
|
|
100
|
+
CardContent,
|
|
101
|
+
CardDescription,
|
|
102
|
+
CardFooter,
|
|
103
|
+
CardHeader,
|
|
104
|
+
CardTitle,
|
|
105
|
+
CodeBlock,
|
|
106
|
+
CopyButton,
|
|
107
|
+
Dialog,
|
|
108
|
+
DialogClose,
|
|
109
|
+
DialogContent,
|
|
110
|
+
DialogDescription,
|
|
111
|
+
DialogFooter,
|
|
112
|
+
DialogHeader,
|
|
113
|
+
DialogOverlay,
|
|
114
|
+
DialogPortal,
|
|
115
|
+
DialogTitle,
|
|
116
|
+
DialogTrigger,
|
|
117
|
+
DropZone,
|
|
118
|
+
DropdownMenu,
|
|
119
|
+
DropdownMenuCheckboxItem,
|
|
120
|
+
DropdownMenuContent,
|
|
121
|
+
DropdownMenuGroup,
|
|
122
|
+
DropdownMenuItem,
|
|
123
|
+
DropdownMenuLabel,
|
|
124
|
+
DropdownMenuPortal,
|
|
125
|
+
DropdownMenuRadioGroup,
|
|
126
|
+
DropdownMenuRadioItem,
|
|
127
|
+
DropdownMenuSeparator,
|
|
128
|
+
DropdownMenuShortcut,
|
|
129
|
+
DropdownMenuSub,
|
|
130
|
+
DropdownMenuSubContent,
|
|
131
|
+
DropdownMenuSubTrigger,
|
|
132
|
+
DropdownMenuTrigger,
|
|
133
|
+
EmptyState,
|
|
134
|
+
InlineCode,
|
|
135
|
+
Input,
|
|
136
|
+
Label,
|
|
137
|
+
Progress,
|
|
138
|
+
SegmentedControl,
|
|
139
|
+
Select,
|
|
140
|
+
SelectContent,
|
|
141
|
+
SelectGroup,
|
|
142
|
+
SelectItem,
|
|
143
|
+
SelectLabel,
|
|
144
|
+
SelectScrollDownButton,
|
|
145
|
+
SelectScrollUpButton,
|
|
146
|
+
SelectSeparator,
|
|
147
|
+
SelectTrigger,
|
|
148
|
+
SelectValue,
|
|
149
|
+
SidebarDropZone,
|
|
150
|
+
Skeleton,
|
|
151
|
+
SkeletonCard,
|
|
152
|
+
SkeletonTable,
|
|
153
|
+
StatCard,
|
|
154
|
+
Switch,
|
|
155
|
+
Table,
|
|
156
|
+
TableBody,
|
|
157
|
+
TableCaption,
|
|
158
|
+
TableCell,
|
|
159
|
+
TableFooter,
|
|
160
|
+
TableHead,
|
|
161
|
+
TableHeader,
|
|
162
|
+
TableRow,
|
|
163
|
+
Tabs,
|
|
164
|
+
TabsContent,
|
|
165
|
+
TabsList,
|
|
166
|
+
TabsTrigger,
|
|
167
|
+
TerminalCursor,
|
|
168
|
+
TerminalDisplay,
|
|
169
|
+
TerminalInput,
|
|
170
|
+
TerminalLine,
|
|
171
|
+
Textarea,
|
|
172
|
+
ThemeToggle,
|
|
173
|
+
ToastContainer,
|
|
174
|
+
ToastProvider,
|
|
175
|
+
UploadProgress,
|
|
176
|
+
useTheme,
|
|
177
|
+
useToast
|
|
178
|
+
};
|
|
@@ -2,96 +2,6 @@ import {
|
|
|
2
2
|
cn
|
|
3
3
|
} from "./chunk-EI44GEQ5.js";
|
|
4
4
|
|
|
5
|
-
// src/primitives/index.ts
|
|
6
|
-
import {
|
|
7
|
-
Avatar,
|
|
8
|
-
AvatarFallback,
|
|
9
|
-
AvatarImage,
|
|
10
|
-
Badge,
|
|
11
|
-
badgeVariants,
|
|
12
|
-
Button,
|
|
13
|
-
buttonVariants,
|
|
14
|
-
Card,
|
|
15
|
-
CardContent,
|
|
16
|
-
CardDescription,
|
|
17
|
-
CardFooter,
|
|
18
|
-
CardHeader,
|
|
19
|
-
CardTitle,
|
|
20
|
-
CodeBlock,
|
|
21
|
-
CopyButton,
|
|
22
|
-
Dialog,
|
|
23
|
-
DialogClose,
|
|
24
|
-
DialogContent,
|
|
25
|
-
DialogDescription,
|
|
26
|
-
DialogFooter,
|
|
27
|
-
DialogHeader,
|
|
28
|
-
DialogOverlay,
|
|
29
|
-
DialogPortal,
|
|
30
|
-
DialogTitle,
|
|
31
|
-
DialogTrigger,
|
|
32
|
-
DropZone,
|
|
33
|
-
DropdownMenu,
|
|
34
|
-
DropdownMenuCheckboxItem,
|
|
35
|
-
DropdownMenuContent,
|
|
36
|
-
DropdownMenuGroup,
|
|
37
|
-
DropdownMenuItem,
|
|
38
|
-
DropdownMenuLabel,
|
|
39
|
-
DropdownMenuPortal,
|
|
40
|
-
DropdownMenuRadioGroup,
|
|
41
|
-
DropdownMenuRadioItem,
|
|
42
|
-
DropdownMenuSeparator,
|
|
43
|
-
DropdownMenuShortcut,
|
|
44
|
-
DropdownMenuSub,
|
|
45
|
-
DropdownMenuSubContent,
|
|
46
|
-
DropdownMenuSubTrigger,
|
|
47
|
-
DropdownMenuTrigger,
|
|
48
|
-
EmptyState,
|
|
49
|
-
InlineCode,
|
|
50
|
-
Input,
|
|
51
|
-
Label,
|
|
52
|
-
Progress,
|
|
53
|
-
SegmentedControl,
|
|
54
|
-
Select,
|
|
55
|
-
SelectContent,
|
|
56
|
-
SelectGroup,
|
|
57
|
-
SelectItem,
|
|
58
|
-
SelectLabel,
|
|
59
|
-
SelectScrollDownButton,
|
|
60
|
-
SelectScrollUpButton,
|
|
61
|
-
SelectSeparator,
|
|
62
|
-
SelectTrigger,
|
|
63
|
-
SelectValue,
|
|
64
|
-
SidebarDropZone,
|
|
65
|
-
Skeleton,
|
|
66
|
-
SkeletonCard,
|
|
67
|
-
SkeletonTable,
|
|
68
|
-
StatCard,
|
|
69
|
-
Switch,
|
|
70
|
-
Table,
|
|
71
|
-
TableBody,
|
|
72
|
-
TableCaption,
|
|
73
|
-
TableCell,
|
|
74
|
-
TableFooter,
|
|
75
|
-
TableHead,
|
|
76
|
-
TableHeader,
|
|
77
|
-
TableRow,
|
|
78
|
-
Tabs,
|
|
79
|
-
TabsContent,
|
|
80
|
-
TabsList,
|
|
81
|
-
TabsTrigger,
|
|
82
|
-
TerminalCursor,
|
|
83
|
-
TerminalDisplay,
|
|
84
|
-
TerminalInput,
|
|
85
|
-
TerminalLine,
|
|
86
|
-
Textarea,
|
|
87
|
-
ThemeToggle,
|
|
88
|
-
ToastContainer,
|
|
89
|
-
ToastProvider,
|
|
90
|
-
UploadProgress,
|
|
91
|
-
useTheme,
|
|
92
|
-
useToast
|
|
93
|
-
} from "@tangle-network/ui/primitives";
|
|
94
|
-
|
|
95
5
|
// src/primitives/logo.tsx
|
|
96
6
|
import * as React from "react";
|
|
97
7
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -149,91 +59,5 @@ Logo.displayName = "Logo";
|
|
|
149
59
|
|
|
150
60
|
export {
|
|
151
61
|
TangleKnot,
|
|
152
|
-
Logo
|
|
153
|
-
Avatar,
|
|
154
|
-
AvatarFallback,
|
|
155
|
-
AvatarImage,
|
|
156
|
-
Badge,
|
|
157
|
-
badgeVariants,
|
|
158
|
-
Button,
|
|
159
|
-
buttonVariants,
|
|
160
|
-
Card,
|
|
161
|
-
CardContent,
|
|
162
|
-
CardDescription,
|
|
163
|
-
CardFooter,
|
|
164
|
-
CardHeader,
|
|
165
|
-
CardTitle,
|
|
166
|
-
CodeBlock,
|
|
167
|
-
CopyButton,
|
|
168
|
-
Dialog,
|
|
169
|
-
DialogClose,
|
|
170
|
-
DialogContent,
|
|
171
|
-
DialogDescription,
|
|
172
|
-
DialogFooter,
|
|
173
|
-
DialogHeader,
|
|
174
|
-
DialogOverlay,
|
|
175
|
-
DialogPortal,
|
|
176
|
-
DialogTitle,
|
|
177
|
-
DialogTrigger,
|
|
178
|
-
DropZone,
|
|
179
|
-
DropdownMenu,
|
|
180
|
-
DropdownMenuCheckboxItem,
|
|
181
|
-
DropdownMenuContent,
|
|
182
|
-
DropdownMenuGroup,
|
|
183
|
-
DropdownMenuItem,
|
|
184
|
-
DropdownMenuLabel,
|
|
185
|
-
DropdownMenuPortal,
|
|
186
|
-
DropdownMenuRadioGroup,
|
|
187
|
-
DropdownMenuRadioItem,
|
|
188
|
-
DropdownMenuSeparator,
|
|
189
|
-
DropdownMenuShortcut,
|
|
190
|
-
DropdownMenuSub,
|
|
191
|
-
DropdownMenuSubContent,
|
|
192
|
-
DropdownMenuSubTrigger,
|
|
193
|
-
DropdownMenuTrigger,
|
|
194
|
-
EmptyState,
|
|
195
|
-
InlineCode,
|
|
196
|
-
Input,
|
|
197
|
-
Label,
|
|
198
|
-
Progress,
|
|
199
|
-
SegmentedControl,
|
|
200
|
-
Select,
|
|
201
|
-
SelectContent,
|
|
202
|
-
SelectGroup,
|
|
203
|
-
SelectItem,
|
|
204
|
-
SelectLabel,
|
|
205
|
-
SelectScrollDownButton,
|
|
206
|
-
SelectScrollUpButton,
|
|
207
|
-
SelectSeparator,
|
|
208
|
-
SelectTrigger,
|
|
209
|
-
SelectValue,
|
|
210
|
-
SidebarDropZone,
|
|
211
|
-
Skeleton,
|
|
212
|
-
SkeletonCard,
|
|
213
|
-
SkeletonTable,
|
|
214
|
-
StatCard,
|
|
215
|
-
Switch,
|
|
216
|
-
Table,
|
|
217
|
-
TableBody,
|
|
218
|
-
TableCaption,
|
|
219
|
-
TableCell,
|
|
220
|
-
TableFooter,
|
|
221
|
-
TableHead,
|
|
222
|
-
TableHeader,
|
|
223
|
-
TableRow,
|
|
224
|
-
Tabs,
|
|
225
|
-
TabsContent,
|
|
226
|
-
TabsList,
|
|
227
|
-
TabsTrigger,
|
|
228
|
-
TerminalCursor,
|
|
229
|
-
TerminalDisplay,
|
|
230
|
-
TerminalInput,
|
|
231
|
-
TerminalLine,
|
|
232
|
-
Textarea,
|
|
233
|
-
ThemeToggle,
|
|
234
|
-
ToastContainer,
|
|
235
|
-
ToastProvider,
|
|
236
|
-
UploadProgress,
|
|
237
|
-
useTheme,
|
|
238
|
-
useToast
|
|
62
|
+
Logo
|
|
239
63
|
};
|
package/dist/dashboard.js
CHANGED
|
@@ -44,7 +44,7 @@ import {
|
|
|
44
44
|
canAdminSandbox,
|
|
45
45
|
parseInsufficientBalance,
|
|
46
46
|
useSidebar
|
|
47
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-ZNYEJERQ.js";
|
|
48
48
|
import {
|
|
49
49
|
BillingDashboard,
|
|
50
50
|
InfoPanel,
|
|
@@ -53,7 +53,8 @@ import {
|
|
|
53
53
|
UsageChart,
|
|
54
54
|
formatPrice
|
|
55
55
|
} from "./chunk-DNZ4DTNA.js";
|
|
56
|
-
import "./chunk-
|
|
56
|
+
import "./chunk-SM7IJY4I.js";
|
|
57
|
+
import "./chunk-UHFJXO24.js";
|
|
57
58
|
import {
|
|
58
59
|
BackendSelector,
|
|
59
60
|
HARNESS_OPTIONS,
|
package/dist/index.js
CHANGED
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
LoginLayout,
|
|
59
59
|
TangleLoginButton,
|
|
60
60
|
UserMenu
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-R3ZMMCT3.js";
|
|
62
62
|
import {
|
|
63
63
|
RealtimeSessionRegistry,
|
|
64
64
|
createAuthFetcher,
|
|
@@ -128,7 +128,7 @@ import {
|
|
|
128
128
|
TaskBoard,
|
|
129
129
|
TerminalPanel,
|
|
130
130
|
WorkspaceLayout
|
|
131
|
-
} from "./chunk-
|
|
131
|
+
} from "./chunk-BP6ZTBI6.js";
|
|
132
132
|
import {
|
|
133
133
|
OpenUIArtifactRenderer
|
|
134
134
|
} from "./chunk-AZ3AWMTM.js";
|
|
@@ -186,7 +186,7 @@ import {
|
|
|
186
186
|
canAdminSandbox,
|
|
187
187
|
parseInsufficientBalance,
|
|
188
188
|
useSidebar
|
|
189
|
-
} from "./chunk-
|
|
189
|
+
} from "./chunk-ZNYEJERQ.js";
|
|
190
190
|
import {
|
|
191
191
|
BillingDashboard,
|
|
192
192
|
InfoPanel,
|
|
@@ -239,7 +239,6 @@ import {
|
|
|
239
239
|
InlineCode,
|
|
240
240
|
Input,
|
|
241
241
|
Label,
|
|
242
|
-
Logo,
|
|
243
242
|
Progress,
|
|
244
243
|
SegmentedControl,
|
|
245
244
|
Select,
|
|
@@ -270,7 +269,6 @@ import {
|
|
|
270
269
|
TabsContent,
|
|
271
270
|
TabsList,
|
|
272
271
|
TabsTrigger,
|
|
273
|
-
TangleKnot,
|
|
274
272
|
TerminalDisplay,
|
|
275
273
|
Textarea,
|
|
276
274
|
ThemeToggle,
|
|
@@ -281,7 +279,11 @@ import {
|
|
|
281
279
|
buttonVariants,
|
|
282
280
|
useTheme,
|
|
283
281
|
useToast
|
|
284
|
-
} from "./chunk-
|
|
282
|
+
} from "./chunk-SM7IJY4I.js";
|
|
283
|
+
import {
|
|
284
|
+
Logo,
|
|
285
|
+
TangleKnot
|
|
286
|
+
} from "./chunk-UHFJXO24.js";
|
|
285
287
|
import {
|
|
286
288
|
BackendSelector,
|
|
287
289
|
HARNESS_OPTIONS,
|
package/dist/pages.js
CHANGED
package/dist/primitives.js
CHANGED
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
InlineCode,
|
|
43
43
|
Input,
|
|
44
44
|
Label,
|
|
45
|
-
Logo,
|
|
46
45
|
Progress,
|
|
47
46
|
SegmentedControl,
|
|
48
47
|
Select,
|
|
@@ -73,7 +72,6 @@ import {
|
|
|
73
72
|
TabsContent,
|
|
74
73
|
TabsList,
|
|
75
74
|
TabsTrigger,
|
|
76
|
-
TangleKnot,
|
|
77
75
|
TerminalCursor,
|
|
78
76
|
TerminalDisplay,
|
|
79
77
|
TerminalInput,
|
|
@@ -87,7 +85,11 @@ import {
|
|
|
87
85
|
buttonVariants,
|
|
88
86
|
useTheme,
|
|
89
87
|
useToast
|
|
90
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-SM7IJY4I.js";
|
|
89
|
+
import {
|
|
90
|
+
Logo,
|
|
91
|
+
TangleKnot
|
|
92
|
+
} from "./chunk-UHFJXO24.js";
|
|
91
93
|
import "./chunk-EI44GEQ5.js";
|
|
92
94
|
export {
|
|
93
95
|
Avatar,
|
package/dist/workspace.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/sandbox-ui",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.2",
|
|
4
4
|
"description": "Unified UI component library for Tangle Sandbox — primitives, chat, dashboard, terminal, editor, and workspace components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -99,16 +99,6 @@
|
|
|
99
99
|
"dist",
|
|
100
100
|
"tailwind.config.cjs"
|
|
101
101
|
],
|
|
102
|
-
"scripts": {
|
|
103
|
-
"build": "tsup",
|
|
104
|
-
"dev": "tsup --watch",
|
|
105
|
-
"typecheck": "tsc --noEmit",
|
|
106
|
-
"storybook": "storybook dev -p 6006",
|
|
107
|
-
"build-storybook": "storybook build",
|
|
108
|
-
"test": "vitest run",
|
|
109
|
-
"test:watch": "vitest",
|
|
110
|
-
"test:bridge": "pnpm build && vitest run src/__tests__/re-export-identity.test.ts"
|
|
111
|
-
},
|
|
112
102
|
"peerDependencies": {
|
|
113
103
|
"@tangle-network/brand": "^0.3.0",
|
|
114
104
|
"@tangle-network/ui": "^1.0.1",
|
|
@@ -142,11 +132,6 @@
|
|
|
142
132
|
"lucide-react": "^0.469.0",
|
|
143
133
|
"nanostores": "^1.2.0"
|
|
144
134
|
},
|
|
145
|
-
"pnpm": {
|
|
146
|
-
"overrides": {
|
|
147
|
-
"picomatch": ">=4.0.4"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
135
|
"devDependencies": {
|
|
151
136
|
"@hocuspocus/provider": "^3.4.4",
|
|
152
137
|
"@nanostores/react": "^1.1.0",
|
|
@@ -194,5 +179,15 @@
|
|
|
194
179
|
"vite": "^8.0.5",
|
|
195
180
|
"vitest": "^4.1.3",
|
|
196
181
|
"yjs": "^13.6.30"
|
|
182
|
+
},
|
|
183
|
+
"scripts": {
|
|
184
|
+
"build": "tsup",
|
|
185
|
+
"dev": "tsup --watch",
|
|
186
|
+
"typecheck": "tsc --noEmit",
|
|
187
|
+
"storybook": "storybook dev -p 6006",
|
|
188
|
+
"build-storybook": "storybook build",
|
|
189
|
+
"test": "vitest run",
|
|
190
|
+
"test:watch": "vitest",
|
|
191
|
+
"test:bridge": "pnpm build && vitest run src/__tests__/re-export-identity.test.ts"
|
|
197
192
|
}
|
|
198
|
-
}
|
|
193
|
+
}
|