@tangle-network/sandbox-ui 0.22.0 → 0.23.0
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 +1 -3
- package/dist/{chunk-UHFJXO24.js → chunk-7ZA5SEK3.js} +177 -1
- package/dist/{chunk-ZNYEJERQ.js → chunk-CB3KBKYN.js} +864 -658
- package/dist/{chunk-R3ZMMCT3.js → chunk-IOB2PW5Z.js} +13 -5
- package/dist/dashboard.d.ts +159 -5
- package/dist/dashboard.js +8 -3
- package/dist/globals.css +10 -92
- package/dist/index.d.ts +1 -1
- package/dist/index.js +11 -7
- package/dist/pages.js +1 -2
- package/dist/primitives.js +3 -5
- package/dist/styles.css +10 -92
- package/package.json +17 -17
- package/dist/assets.d.ts +0 -81
- package/dist/assets.js +0 -935
- package/dist/chunk-SM7IJY4I.js +0 -178
package/dist/auth.js
CHANGED
|
@@ -2,6 +2,96 @@ 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
|
+
|
|
5
95
|
// src/primitives/logo.tsx
|
|
6
96
|
import * as React from "react";
|
|
7
97
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -59,5 +149,91 @@ Logo.displayName = "Logo";
|
|
|
59
149
|
|
|
60
150
|
export {
|
|
61
151
|
TangleKnot,
|
|
62
|
-
Logo
|
|
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
|
|
63
239
|
};
|