@tangle-network/sandbox-ui 0.21.1 → 0.22.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/assets.d.ts +81 -0
- package/dist/assets.js +935 -0
- 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/globals.css +92 -0
- package/dist/index.js +8 -6
- package/dist/pages.js +2 -1
- package/dist/primitives.js +5 -3
- package/dist/styles.css +92 -0
- package/dist/workspace.js +1 -1
- package/package.json +17 -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/globals.css
CHANGED
|
@@ -365,6 +365,9 @@
|
|
|
365
365
|
.bottom-0 {
|
|
366
366
|
bottom: calc(var(--spacing) * 0);
|
|
367
367
|
}
|
|
368
|
+
.bottom-2 {
|
|
369
|
+
bottom: calc(var(--spacing) * 2);
|
|
370
|
+
}
|
|
368
371
|
.bottom-4 {
|
|
369
372
|
bottom: calc(var(--spacing) * 4);
|
|
370
373
|
}
|
|
@@ -380,12 +383,18 @@
|
|
|
380
383
|
.left-0\.5 {
|
|
381
384
|
left: calc(var(--spacing) * 0.5);
|
|
382
385
|
}
|
|
386
|
+
.left-1 {
|
|
387
|
+
left: calc(var(--spacing) * 1);
|
|
388
|
+
}
|
|
383
389
|
.left-1\/2 {
|
|
384
390
|
left: calc(1 / 2 * 100%);
|
|
385
391
|
}
|
|
386
392
|
.left-2 {
|
|
387
393
|
left: calc(var(--spacing) * 2);
|
|
388
394
|
}
|
|
395
|
+
.left-2\.5 {
|
|
396
|
+
left: calc(var(--spacing) * 2.5);
|
|
397
|
+
}
|
|
389
398
|
.left-3 {
|
|
390
399
|
left: calc(var(--spacing) * 3);
|
|
391
400
|
}
|
|
@@ -602,6 +611,9 @@
|
|
|
602
611
|
.table {
|
|
603
612
|
display: table;
|
|
604
613
|
}
|
|
614
|
+
.aspect-\[9\/16\] {
|
|
615
|
+
aspect-ratio: 9/16;
|
|
616
|
+
}
|
|
605
617
|
.aspect-square {
|
|
606
618
|
aspect-ratio: 1 / 1;
|
|
607
619
|
}
|
|
@@ -723,6 +735,9 @@
|
|
|
723
735
|
.h-screen {
|
|
724
736
|
height: 100vh;
|
|
725
737
|
}
|
|
738
|
+
.max-h-40 {
|
|
739
|
+
max-height: calc(var(--spacing) * 40);
|
|
740
|
+
}
|
|
726
741
|
.max-h-48 {
|
|
727
742
|
max-height: calc(var(--spacing) * 48);
|
|
728
743
|
}
|
|
@@ -777,6 +792,9 @@
|
|
|
777
792
|
.min-h-\[44px\] {
|
|
778
793
|
min-height: 44px;
|
|
779
794
|
}
|
|
795
|
+
.min-h-\[60px\] {
|
|
796
|
+
min-height: 60px;
|
|
797
|
+
}
|
|
780
798
|
.min-h-\[72px\] {
|
|
781
799
|
min-height: 72px;
|
|
782
800
|
}
|
|
@@ -792,6 +810,9 @@
|
|
|
792
810
|
.min-h-\[200px\] {
|
|
793
811
|
min-height: 200px;
|
|
794
812
|
}
|
|
813
|
+
.min-h-\[300px\] {
|
|
814
|
+
min-height: 300px;
|
|
815
|
+
}
|
|
795
816
|
.min-h-full {
|
|
796
817
|
min-height: 100%;
|
|
797
818
|
}
|
|
@@ -1065,6 +1086,9 @@
|
|
|
1065
1086
|
.min-w-4 {
|
|
1066
1087
|
min-width: calc(var(--spacing) * 4);
|
|
1067
1088
|
}
|
|
1089
|
+
.min-w-40 {
|
|
1090
|
+
min-width: calc(var(--spacing) * 40);
|
|
1091
|
+
}
|
|
1068
1092
|
.min-w-\[8rem\] {
|
|
1069
1093
|
min-width: 8rem;
|
|
1070
1094
|
}
|
|
@@ -1614,6 +1638,10 @@
|
|
|
1614
1638
|
border-left-style: var(--tw-border-style);
|
|
1615
1639
|
border-left-width: 1px;
|
|
1616
1640
|
}
|
|
1641
|
+
.border-l-2 {
|
|
1642
|
+
border-left-style: var(--tw-border-style);
|
|
1643
|
+
border-left-width: 2px;
|
|
1644
|
+
}
|
|
1617
1645
|
.border-dashed {
|
|
1618
1646
|
--tw-border-style: dashed;
|
|
1619
1647
|
border-style: dashed;
|
|
@@ -1931,6 +1959,9 @@
|
|
|
1931
1959
|
background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
|
|
1932
1960
|
}
|
|
1933
1961
|
}
|
|
1962
|
+
.bg-black {
|
|
1963
|
+
background-color: var(--color-black);
|
|
1964
|
+
}
|
|
1934
1965
|
.bg-black\/40 {
|
|
1935
1966
|
background-color: color-mix(in srgb, #000 40%, transparent);
|
|
1936
1967
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2039,6 +2070,12 @@
|
|
|
2039
2070
|
background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
|
|
2040
2071
|
}
|
|
2041
2072
|
}
|
|
2073
|
+
.bg-white\/40 {
|
|
2074
|
+
background-color: color-mix(in srgb, #fff 40%, transparent);
|
|
2075
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2076
|
+
background-color: color-mix(in oklab, var(--color-white) 40%, transparent);
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2042
2079
|
.bg-yellow-500 {
|
|
2043
2080
|
background-color: var(--color-yellow-500);
|
|
2044
2081
|
}
|
|
@@ -2078,6 +2115,9 @@
|
|
|
2078
2115
|
.object-contain {
|
|
2079
2116
|
object-fit: contain;
|
|
2080
2117
|
}
|
|
2118
|
+
.object-cover {
|
|
2119
|
+
object-fit: cover;
|
|
2120
|
+
}
|
|
2081
2121
|
.p-0 {
|
|
2082
2122
|
padding: calc(var(--spacing) * 0);
|
|
2083
2123
|
}
|
|
@@ -2270,6 +2310,9 @@
|
|
|
2270
2310
|
.pt-16 {
|
|
2271
2311
|
padding-top: calc(var(--spacing) * 16);
|
|
2272
2312
|
}
|
|
2313
|
+
.pr-1 {
|
|
2314
|
+
padding-right: calc(var(--spacing) * 1);
|
|
2315
|
+
}
|
|
2273
2316
|
.pr-2 {
|
|
2274
2317
|
padding-right: calc(var(--spacing) * 2);
|
|
2275
2318
|
}
|
|
@@ -2309,6 +2352,9 @@
|
|
|
2309
2352
|
.pl-2 {
|
|
2310
2353
|
padding-left: calc(var(--spacing) * 2);
|
|
2311
2354
|
}
|
|
2355
|
+
.pl-3 {
|
|
2356
|
+
padding-left: calc(var(--spacing) * 3);
|
|
2357
|
+
}
|
|
2312
2358
|
.pl-4 {
|
|
2313
2359
|
padding-left: calc(var(--spacing) * 4);
|
|
2314
2360
|
}
|
|
@@ -2678,6 +2724,9 @@
|
|
|
2678
2724
|
.text-blue-400 {
|
|
2679
2725
|
color: var(--color-blue-400);
|
|
2680
2726
|
}
|
|
2727
|
+
.text-blue-500 {
|
|
2728
|
+
color: var(--color-blue-500);
|
|
2729
|
+
}
|
|
2681
2730
|
.text-emerald-400 {
|
|
2682
2731
|
color: var(--color-emerald-400);
|
|
2683
2732
|
}
|
|
@@ -2735,6 +2784,9 @@
|
|
|
2735
2784
|
.italic {
|
|
2736
2785
|
font-style: italic;
|
|
2737
2786
|
}
|
|
2787
|
+
.not-italic {
|
|
2788
|
+
font-style: normal;
|
|
2789
|
+
}
|
|
2738
2790
|
.tabular-nums {
|
|
2739
2791
|
--tw-numeric-spacing: tabular-nums;
|
|
2740
2792
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
@@ -2758,6 +2810,9 @@
|
|
|
2758
2810
|
.opacity-30 {
|
|
2759
2811
|
opacity: 30%;
|
|
2760
2812
|
}
|
|
2813
|
+
.opacity-40 {
|
|
2814
|
+
opacity: 40%;
|
|
2815
|
+
}
|
|
2761
2816
|
.opacity-50 {
|
|
2762
2817
|
opacity: 50%;
|
|
2763
2818
|
}
|
|
@@ -3204,6 +3259,16 @@
|
|
|
3204
3259
|
}
|
|
3205
3260
|
}
|
|
3206
3261
|
}
|
|
3262
|
+
.hover\:bg-black\/60 {
|
|
3263
|
+
&:hover {
|
|
3264
|
+
@media (hover: hover) {
|
|
3265
|
+
background-color: color-mix(in srgb, #000 60%, transparent);
|
|
3266
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3267
|
+
background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
|
|
3268
|
+
}
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3207
3272
|
.hover\:bg-blue-600\/30 {
|
|
3208
3273
|
&:hover {
|
|
3209
3274
|
@media (hover: hover) {
|
|
@@ -3224,6 +3289,16 @@
|
|
|
3224
3289
|
}
|
|
3225
3290
|
}
|
|
3226
3291
|
}
|
|
3292
|
+
.hover\:bg-green-600\/5 {
|
|
3293
|
+
&:hover {
|
|
3294
|
+
@media (hover: hover) {
|
|
3295
|
+
background-color: color-mix(in srgb, oklch(62.7% 0.194 149.214) 5%, transparent);
|
|
3296
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3297
|
+
background-color: color-mix(in oklab, var(--color-green-600) 5%, transparent);
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
}
|
|
3227
3302
|
.hover\:bg-green-600\/30 {
|
|
3228
3303
|
&:hover {
|
|
3229
3304
|
@media (hover: hover) {
|
|
@@ -3282,6 +3357,13 @@
|
|
|
3282
3357
|
}
|
|
3283
3358
|
}
|
|
3284
3359
|
}
|
|
3360
|
+
.hover\:text-green-600 {
|
|
3361
|
+
&:hover {
|
|
3362
|
+
@media (hover: hover) {
|
|
3363
|
+
color: var(--color-green-600);
|
|
3364
|
+
}
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3285
3367
|
.hover\:underline {
|
|
3286
3368
|
&:hover {
|
|
3287
3369
|
@media (hover: hover) {
|
|
@@ -3597,6 +3679,11 @@
|
|
|
3597
3679
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3598
3680
|
}
|
|
3599
3681
|
}
|
|
3682
|
+
.sm\:grid-cols-3 {
|
|
3683
|
+
@media (width >= 40rem) {
|
|
3684
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3685
|
+
}
|
|
3686
|
+
}
|
|
3600
3687
|
.sm\:grid-cols-4 {
|
|
3601
3688
|
@media (width >= 40rem) {
|
|
3602
3689
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
@@ -3783,6 +3870,11 @@
|
|
|
3783
3870
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3784
3871
|
}
|
|
3785
3872
|
}
|
|
3873
|
+
.xl\:grid-cols-5 {
|
|
3874
|
+
@media (width >= 80rem) {
|
|
3875
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3786
3878
|
.dark\:text-neutral-500 {
|
|
3787
3879
|
@media (prefers-color-scheme: dark) {
|
|
3788
3880
|
color: var(--color-neutral-500);
|