@motiadev/plugin-logs 0.13.0-beta.162-650022 → 0.13.0-beta.162-125657
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/LICENSE +93 -21
- package/dist/components/log-detail.d.ts +9 -0
- package/dist/components/log-detail.d.ts.map +1 -0
- package/dist/components/log-level-badge.d.ts +6 -0
- package/dist/components/log-level-badge.d.ts.map +1 -0
- package/dist/components/logs-page.d.ts +2 -0
- package/dist/components/logs-page.d.ts.map +1 -0
- package/dist/components/logs-tab-label.d.ts +2 -0
- package/dist/components/logs-tab-label.d.ts.map +1 -0
- package/dist/index.cjs +57 -0
- package/dist/index.d.ts +2 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1291 -334
- package/dist/plugin-logs.css +1 -0
- package/dist/plugin.cjs +1 -0
- package/dist/plugin.d.ts +2 -6
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +15 -13
- package/dist/stores/use-logs-store.d.ts +11 -0
- package/dist/stores/use-logs-store.d.ts.map +1 -0
- package/dist/types/log.d.ts +11 -0
- package/dist/types/log.d.ts.map +1 -0
- package/dist/utils/format-timestamp.d.ts +2 -0
- package/dist/utils/format-timestamp.d.ts.map +1 -0
- package/dist/utils/init-log-listener.d.ts +2 -0
- package/dist/utils/init-log-listener.d.ts.map +1 -0
- package/package.json +27 -23
- package/dist/index.css +0 -678
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/plugin.js.map +0 -1
package/dist/index.css
DELETED
|
@@ -1,678 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@layer properties;
|
|
3
|
-
@layer theme, base, components, utilities;
|
|
4
|
-
@layer theme {
|
|
5
|
-
:root, :host {
|
|
6
|
-
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
-
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
|
-
"Courier New", monospace;
|
|
10
|
-
--spacing: 0.25rem;
|
|
11
|
-
--font-weight-medium: 500;
|
|
12
|
-
--font-weight-semibold: 600;
|
|
13
|
-
--default-font-family: var(--font-sans);
|
|
14
|
-
--default-mono-font-family: var(--font-mono);
|
|
15
|
-
--font-weight-500: var(--font-weight-500);
|
|
16
|
-
--font-weight-600: var(--font-weight-600);
|
|
17
|
-
--font-weight-700: var(--font-weight-700);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
@layer base {
|
|
21
|
-
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
22
|
-
box-sizing: border-box;
|
|
23
|
-
margin: 0;
|
|
24
|
-
padding: 0;
|
|
25
|
-
border: 0 solid;
|
|
26
|
-
}
|
|
27
|
-
html, :host {
|
|
28
|
-
line-height: 1.5;
|
|
29
|
-
-webkit-text-size-adjust: 100%;
|
|
30
|
-
tab-size: 4;
|
|
31
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
32
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
33
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
34
|
-
-webkit-tap-highlight-color: transparent;
|
|
35
|
-
}
|
|
36
|
-
hr {
|
|
37
|
-
height: 0;
|
|
38
|
-
color: inherit;
|
|
39
|
-
border-top-width: 1px;
|
|
40
|
-
}
|
|
41
|
-
abbr:where([title]) {
|
|
42
|
-
-webkit-text-decoration: underline dotted;
|
|
43
|
-
text-decoration: underline dotted;
|
|
44
|
-
}
|
|
45
|
-
h1, h2, h3, h4, h5, h6 {
|
|
46
|
-
font-size: inherit;
|
|
47
|
-
font-weight: inherit;
|
|
48
|
-
}
|
|
49
|
-
a {
|
|
50
|
-
color: inherit;
|
|
51
|
-
-webkit-text-decoration: inherit;
|
|
52
|
-
text-decoration: inherit;
|
|
53
|
-
}
|
|
54
|
-
b, strong {
|
|
55
|
-
font-weight: bolder;
|
|
56
|
-
}
|
|
57
|
-
code, kbd, samp, pre {
|
|
58
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
59
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
60
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
61
|
-
font-size: 1em;
|
|
62
|
-
}
|
|
63
|
-
small {
|
|
64
|
-
font-size: 80%;
|
|
65
|
-
}
|
|
66
|
-
sub, sup {
|
|
67
|
-
font-size: 75%;
|
|
68
|
-
line-height: 0;
|
|
69
|
-
position: relative;
|
|
70
|
-
vertical-align: baseline;
|
|
71
|
-
}
|
|
72
|
-
sub {
|
|
73
|
-
bottom: -0.25em;
|
|
74
|
-
}
|
|
75
|
-
sup {
|
|
76
|
-
top: -0.5em;
|
|
77
|
-
}
|
|
78
|
-
table {
|
|
79
|
-
text-indent: 0;
|
|
80
|
-
border-color: inherit;
|
|
81
|
-
border-collapse: collapse;
|
|
82
|
-
}
|
|
83
|
-
:-moz-focusring {
|
|
84
|
-
outline: auto;
|
|
85
|
-
}
|
|
86
|
-
progress {
|
|
87
|
-
vertical-align: baseline;
|
|
88
|
-
}
|
|
89
|
-
summary {
|
|
90
|
-
display: list-item;
|
|
91
|
-
}
|
|
92
|
-
ol, ul, menu {
|
|
93
|
-
list-style: none;
|
|
94
|
-
}
|
|
95
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
96
|
-
display: block;
|
|
97
|
-
vertical-align: middle;
|
|
98
|
-
}
|
|
99
|
-
img, video {
|
|
100
|
-
max-width: 100%;
|
|
101
|
-
height: auto;
|
|
102
|
-
}
|
|
103
|
-
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
104
|
-
font: inherit;
|
|
105
|
-
font-feature-settings: inherit;
|
|
106
|
-
font-variation-settings: inherit;
|
|
107
|
-
letter-spacing: inherit;
|
|
108
|
-
color: inherit;
|
|
109
|
-
border-radius: 0;
|
|
110
|
-
background-color: transparent;
|
|
111
|
-
opacity: 1;
|
|
112
|
-
}
|
|
113
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
114
|
-
font-weight: bolder;
|
|
115
|
-
}
|
|
116
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
117
|
-
padding-inline-start: 20px;
|
|
118
|
-
}
|
|
119
|
-
::file-selector-button {
|
|
120
|
-
margin-inline-end: 4px;
|
|
121
|
-
}
|
|
122
|
-
::placeholder {
|
|
123
|
-
opacity: 1;
|
|
124
|
-
}
|
|
125
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
126
|
-
::placeholder {
|
|
127
|
-
color: currentcolor;
|
|
128
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
129
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
textarea {
|
|
134
|
-
resize: vertical;
|
|
135
|
-
}
|
|
136
|
-
::-webkit-search-decoration {
|
|
137
|
-
-webkit-appearance: none;
|
|
138
|
-
}
|
|
139
|
-
::-webkit-date-and-time-value {
|
|
140
|
-
min-height: 1lh;
|
|
141
|
-
text-align: inherit;
|
|
142
|
-
}
|
|
143
|
-
::-webkit-datetime-edit {
|
|
144
|
-
display: inline-flex;
|
|
145
|
-
}
|
|
146
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
147
|
-
padding: 0;
|
|
148
|
-
}
|
|
149
|
-
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
150
|
-
padding-block: 0;
|
|
151
|
-
}
|
|
152
|
-
::-webkit-calendar-picker-indicator {
|
|
153
|
-
line-height: 1;
|
|
154
|
-
}
|
|
155
|
-
:-moz-ui-invalid {
|
|
156
|
-
box-shadow: none;
|
|
157
|
-
}
|
|
158
|
-
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
159
|
-
appearance: button;
|
|
160
|
-
}
|
|
161
|
-
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
162
|
-
height: auto;
|
|
163
|
-
}
|
|
164
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
165
|
-
display: none !important;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
@layer utilities {
|
|
169
|
-
.absolute {
|
|
170
|
-
position: absolute;
|
|
171
|
-
}
|
|
172
|
-
.relative {
|
|
173
|
-
position: relative;
|
|
174
|
-
}
|
|
175
|
-
.top-1\/2 {
|
|
176
|
-
top: calc(1/2 * 100%);
|
|
177
|
-
}
|
|
178
|
-
.right-3 {
|
|
179
|
-
right: calc(var(--spacing) * 3);
|
|
180
|
-
}
|
|
181
|
-
.left-3 {
|
|
182
|
-
left: calc(var(--spacing) * 3);
|
|
183
|
-
}
|
|
184
|
-
.flex {
|
|
185
|
-
display: flex;
|
|
186
|
-
}
|
|
187
|
-
.grid {
|
|
188
|
-
display: grid;
|
|
189
|
-
}
|
|
190
|
-
.h-4 {
|
|
191
|
-
height: calc(var(--spacing) * 4);
|
|
192
|
-
}
|
|
193
|
-
.h-\[34px\] {
|
|
194
|
-
height: 34px;
|
|
195
|
-
}
|
|
196
|
-
.h-full {
|
|
197
|
-
height: 100%;
|
|
198
|
-
}
|
|
199
|
-
.w-4 {
|
|
200
|
-
width: calc(var(--spacing) * 4);
|
|
201
|
-
}
|
|
202
|
-
.w-full {
|
|
203
|
-
width: 100%;
|
|
204
|
-
}
|
|
205
|
-
.max-w-\[500px\] {
|
|
206
|
-
max-width: 500px;
|
|
207
|
-
}
|
|
208
|
-
.flex-1 {
|
|
209
|
-
flex: 1;
|
|
210
|
-
}
|
|
211
|
-
.-translate-y-1\/2 {
|
|
212
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
213
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
214
|
-
}
|
|
215
|
-
.cursor-pointer {
|
|
216
|
-
cursor: pointer;
|
|
217
|
-
}
|
|
218
|
-
.grid-rows-\[auto_1fr\] {
|
|
219
|
-
grid-template-rows: auto 1fr;
|
|
220
|
-
}
|
|
221
|
-
.items-center {
|
|
222
|
-
align-items: center;
|
|
223
|
-
}
|
|
224
|
-
.gap-2 {
|
|
225
|
-
gap: calc(var(--spacing) * 2);
|
|
226
|
-
}
|
|
227
|
-
.truncate {
|
|
228
|
-
overflow: hidden;
|
|
229
|
-
text-overflow: ellipsis;
|
|
230
|
-
white-space: nowrap;
|
|
231
|
-
}
|
|
232
|
-
.border-0 {
|
|
233
|
-
border-style: var(--tw-border-style);
|
|
234
|
-
border-width: 0px;
|
|
235
|
-
}
|
|
236
|
-
.border-b {
|
|
237
|
-
border-bottom-style: var(--tw-border-style);
|
|
238
|
-
border-bottom-width: 1px;
|
|
239
|
-
}
|
|
240
|
-
.bg-muted-foreground\/10 {
|
|
241
|
-
background-color: var(--muted-foreground);
|
|
242
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
243
|
-
background-color: color-mix(in oklab, var(--muted-foreground) 10%, transparent);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
.p-2 {
|
|
247
|
-
padding: calc(var(--spacing) * 2);
|
|
248
|
-
}
|
|
249
|
-
.px-9\! {
|
|
250
|
-
padding-inline: calc(var(--spacing) * 9) !important;
|
|
251
|
-
}
|
|
252
|
-
.font-mono {
|
|
253
|
-
font-family: var(--font-mono);
|
|
254
|
-
}
|
|
255
|
-
.font-medium {
|
|
256
|
-
--tw-font-weight: var(--font-weight-medium);
|
|
257
|
-
font-weight: var(--font-weight-medium);
|
|
258
|
-
}
|
|
259
|
-
.font-semibold {
|
|
260
|
-
--tw-font-weight: var(--font-weight-semibold);
|
|
261
|
-
font-weight: var(--font-weight-semibold);
|
|
262
|
-
}
|
|
263
|
-
.whitespace-nowrap {
|
|
264
|
-
white-space: nowrap;
|
|
265
|
-
}
|
|
266
|
-
.text-muted-foreground {
|
|
267
|
-
color: var(--muted-foreground);
|
|
268
|
-
}
|
|
269
|
-
.text-muted-foreground\/50 {
|
|
270
|
-
color: var(--muted-foreground);
|
|
271
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
272
|
-
color: color-mix(in oklab, var(--muted-foreground) 50%, transparent);
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
.capitalize {
|
|
276
|
-
text-transform: capitalize;
|
|
277
|
-
}
|
|
278
|
-
.hover\:bg-muted-foreground\/10 {
|
|
279
|
-
&:hover {
|
|
280
|
-
@media (hover: hover) {
|
|
281
|
-
background-color: var(--muted-foreground);
|
|
282
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
283
|
-
background-color: color-mix(in oklab, var(--muted-foreground) 10%, transparent);
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
.hover\:bg-muted-foreground\/20 {
|
|
289
|
-
&:hover {
|
|
290
|
-
@media (hover: hover) {
|
|
291
|
-
background-color: var(--muted-foreground);
|
|
292
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
293
|
-
background-color: color-mix(in oklab, var(--muted-foreground) 20%, transparent);
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
.hover\:text-muted-foreground {
|
|
299
|
-
&:hover {
|
|
300
|
-
@media (hover: hover) {
|
|
301
|
-
color: var(--muted-foreground);
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
.hover\:text-primary {
|
|
306
|
-
&:hover {
|
|
307
|
-
@media (hover: hover) {
|
|
308
|
-
color: var(--primary);
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
:root {
|
|
314
|
-
--default-font-family: "DM Sans", ui-sans-serif, sans-serif;
|
|
315
|
-
--font-dm-mono: "DM Mono", ui-monospace, monospace;
|
|
316
|
-
line-height: 1.5;
|
|
317
|
-
font-size: 16px;
|
|
318
|
-
color-scheme: light dark;
|
|
319
|
-
font-family: var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ), serif;
|
|
320
|
-
font-synthesis: none;
|
|
321
|
-
text-rendering: optimizeLegibility;
|
|
322
|
-
-webkit-font-smoothing: antialiased;
|
|
323
|
-
-moz-osx-font-smoothing: grayscale;
|
|
324
|
-
width: 100%;
|
|
325
|
-
font-optical-sizing: auto;
|
|
326
|
-
--font-weight-500: 500;
|
|
327
|
-
--font-weight-600: 600;
|
|
328
|
-
--font-weight-700: 700;
|
|
329
|
-
--accent-1000: #2862fe;
|
|
330
|
-
--accent-970: #2862fef7;
|
|
331
|
-
--accent-950: #2862fef2;
|
|
332
|
-
--accent-900: #2862fee5;
|
|
333
|
-
--accent-800: #2862fecc;
|
|
334
|
-
--accent-700: #2862feb2;
|
|
335
|
-
--accent-600: #2862fe99;
|
|
336
|
-
--accent-500: #2862fe80;
|
|
337
|
-
--accent-400: #2862fe66;
|
|
338
|
-
--accent-300: #2862fe4d;
|
|
339
|
-
--accent-200: #2862fe33;
|
|
340
|
-
--accent-100: #2862fe1a;
|
|
341
|
-
--accent-50: #2862fe0d;
|
|
342
|
-
--accent-30: #2862fe08;
|
|
343
|
-
--dark-1000: #0a0a0a;
|
|
344
|
-
--dark-970: #0a0a0af7;
|
|
345
|
-
--dark-950: #0a0a0af2;
|
|
346
|
-
--dark-900: #0a0a0ae5;
|
|
347
|
-
--dark-800: #0a0a0acc;
|
|
348
|
-
--dark-700: #0a0a0ab2;
|
|
349
|
-
--dark-600: #0a0a0a99;
|
|
350
|
-
--dark-500: #0a0a0a80;
|
|
351
|
-
--dark-400: #0a0a0a66;
|
|
352
|
-
--dark-300: #0a0a0a4d;
|
|
353
|
-
--dark-200: #0a0a0a33;
|
|
354
|
-
--dark-100: #0a0a0a1a;
|
|
355
|
-
--dark-50: #0a0a0a0d;
|
|
356
|
-
--dark-30: #0a0a0a08;
|
|
357
|
-
--light-1000: #ffffff;
|
|
358
|
-
--light-970: #fffffff7;
|
|
359
|
-
--light-950: #fffffff2;
|
|
360
|
-
--light-900: #ffffffe5;
|
|
361
|
-
--light-800: #ffffffcc;
|
|
362
|
-
--light-700: #ffffffb2;
|
|
363
|
-
--light-600: #ffffff99;
|
|
364
|
-
--light-500: #ffffff80;
|
|
365
|
-
--light-400: #ffffff66;
|
|
366
|
-
--light-300: #ffffff4d;
|
|
367
|
-
--light-200: #ffffff33;
|
|
368
|
-
--light-100: #ffffff1a;
|
|
369
|
-
--light-50: #ffffff0d;
|
|
370
|
-
--light-30: #ffffff08;
|
|
371
|
-
--error: #d61355;
|
|
372
|
-
--canvas-background: #ebebeb;
|
|
373
|
-
--background: var(--light-1000);
|
|
374
|
-
--foreground: var(--dark-1000);
|
|
375
|
-
--surface-content: var(--dark-30);
|
|
376
|
-
--surface-component: var(--dark-50);
|
|
377
|
-
--surface-light-100: var(--dark-100);
|
|
378
|
-
--surface-light-200: var(--dark-200);
|
|
379
|
-
--border: var(--dark-100);
|
|
380
|
-
--border-accent: var(--accent-1000);
|
|
381
|
-
--states-hover: var(--dark-30);
|
|
382
|
-
--states-selected: var(--dark-100);
|
|
383
|
-
--states-active: var(--accent-1000);
|
|
384
|
-
--text-header: var(--dark-1000);
|
|
385
|
-
--text-body: var(--dark-600);
|
|
386
|
-
--text-placeholder: var(--dark-400);
|
|
387
|
-
--text-accent: var(--accent-1000);
|
|
388
|
-
--text-error: var(--error);
|
|
389
|
-
--icon-active: var(--dark-1000);
|
|
390
|
-
--icon-light: var(--dark-600);
|
|
391
|
-
--icon-component: var(--dark-400);
|
|
392
|
-
--icon-accent: var(--accent-1000);
|
|
393
|
-
--primary: var(--accent-1000);
|
|
394
|
-
--primary-foreground: var(--light-1000);
|
|
395
|
-
--secondary: var(--surface-component);
|
|
396
|
-
--secondary-foreground: var(--text-body);
|
|
397
|
-
--muted: var(--surface-light-100);
|
|
398
|
-
--muted-foreground: var(--text-body);
|
|
399
|
-
--accent: var(--accent-1000);
|
|
400
|
-
--accent-foreground: var(--light-1000);
|
|
401
|
-
--destructive: var(--error);
|
|
402
|
-
--destructive-foreground: var(--light-1000);
|
|
403
|
-
--card: var(--surface-content);
|
|
404
|
-
--card-foreground: var(--foreground);
|
|
405
|
-
--popover: var(--surface-content);
|
|
406
|
-
--popover-foreground: var(--foreground);
|
|
407
|
-
--input: var(--states-hover);
|
|
408
|
-
--ring: var(--border-accent);
|
|
409
|
-
--chart-1: var(--accent-1000);
|
|
410
|
-
--chart-2: var(--accent-800);
|
|
411
|
-
--chart-3: var(--accent-600);
|
|
412
|
-
--chart-4: var(--accent-400);
|
|
413
|
-
--chart-5: var(--accent-200);
|
|
414
|
-
--header: var(--background);
|
|
415
|
-
--header-foreground: var(--text-header);
|
|
416
|
-
--header-primary: var(--primary);
|
|
417
|
-
--header-primary-foreground: var(--primary-foreground);
|
|
418
|
-
--header-accent: var(--surface-component);
|
|
419
|
-
--header-accent-foreground: var(--text-body);
|
|
420
|
-
--header-border: var(--border);
|
|
421
|
-
--header-ring: var(--ring);
|
|
422
|
-
--sidebar: var(--background);
|
|
423
|
-
--sidebar-foreground: var(--text-header);
|
|
424
|
-
--sidebar-primary: var(--primary);
|
|
425
|
-
--sidebar-primary-foreground: var(--primary-foreground);
|
|
426
|
-
--sidebar-accent: var(--surface-component);
|
|
427
|
-
--sidebar-accent-foreground: var(--text-body);
|
|
428
|
-
--sidebar-border: var(--border);
|
|
429
|
-
--sidebar-ring: var(--ring);
|
|
430
|
-
}
|
|
431
|
-
.dark {
|
|
432
|
-
--canvas-background: #030303;
|
|
433
|
-
--background: var(--dark-1000);
|
|
434
|
-
--foreground: var(--light-1000);
|
|
435
|
-
--surface-content: var(--light-30);
|
|
436
|
-
--surface-component: var(--light-50);
|
|
437
|
-
--surface-light-100: var(--light-100);
|
|
438
|
-
--surface-light-200: var(--light-200);
|
|
439
|
-
--border: var(--light-100);
|
|
440
|
-
--states-hover: var(--light-30);
|
|
441
|
-
--states-selected: var(--light-100);
|
|
442
|
-
--text-header: var(--light-1000);
|
|
443
|
-
--text-body: var(--light-600);
|
|
444
|
-
--text-placeholder: var(--light-400);
|
|
445
|
-
--icon-active: var(--light-1000);
|
|
446
|
-
--icon-light: var(--light-600);
|
|
447
|
-
--icon-component: var(--light-400);
|
|
448
|
-
--secondary-foreground: var(--light-600);
|
|
449
|
-
--muted-foreground: var(--light-600);
|
|
450
|
-
--card: var(--surface-content);
|
|
451
|
-
--card-foreground: var(--foreground);
|
|
452
|
-
--popover: var(--surface-content);
|
|
453
|
-
--popover-foreground: var(--foreground);
|
|
454
|
-
--input: var(--states-hover);
|
|
455
|
-
--ring: var(--border-accent);
|
|
456
|
-
--chart-1: var(--accent-1000);
|
|
457
|
-
--chart-2: var(--accent-800);
|
|
458
|
-
--chart-3: var(--accent-600);
|
|
459
|
-
--chart-4: var(--accent-400);
|
|
460
|
-
--chart-5: var(--accent-200);
|
|
461
|
-
--header: var(--background);
|
|
462
|
-
--header-foreground: var(--text-header);
|
|
463
|
-
--header-primary: var(--primary);
|
|
464
|
-
--header-primary-foreground: var(--primary-foreground);
|
|
465
|
-
--header-accent: var(--surface-component);
|
|
466
|
-
--header-accent-foreground: var(--text-body);
|
|
467
|
-
--header-border: var(--border);
|
|
468
|
-
--header-ring: var(--ring);
|
|
469
|
-
--sidebar: var(--background);
|
|
470
|
-
--sidebar-foreground: var(--text-header);
|
|
471
|
-
--sidebar-primary: var(--primary);
|
|
472
|
-
--sidebar-primary-foreground: var(--primary-foreground);
|
|
473
|
-
--sidebar-accent: var(--surface-component);
|
|
474
|
-
--sidebar-accent-foreground: var(--text-body);
|
|
475
|
-
--sidebar-border: var(--border);
|
|
476
|
-
--sidebar-ring: var(--ring);
|
|
477
|
-
}
|
|
478
|
-
@layer base {
|
|
479
|
-
* {
|
|
480
|
-
border-color: var(--border);
|
|
481
|
-
}
|
|
482
|
-
body {
|
|
483
|
-
background-color: var(--background);
|
|
484
|
-
color: var(--foreground);
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
@layer theme, base, components, utilities;
|
|
488
|
-
@layer theme;
|
|
489
|
-
@layer base {
|
|
490
|
-
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
491
|
-
box-sizing: border-box;
|
|
492
|
-
margin: 0;
|
|
493
|
-
padding: 0;
|
|
494
|
-
border: 0 solid;
|
|
495
|
-
}
|
|
496
|
-
html, :host {
|
|
497
|
-
line-height: 1.5;
|
|
498
|
-
-webkit-text-size-adjust: 100%;
|
|
499
|
-
tab-size: 4;
|
|
500
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
501
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
502
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
503
|
-
-webkit-tap-highlight-color: transparent;
|
|
504
|
-
}
|
|
505
|
-
hr {
|
|
506
|
-
height: 0;
|
|
507
|
-
color: inherit;
|
|
508
|
-
border-top-width: 1px;
|
|
509
|
-
}
|
|
510
|
-
abbr:where([title]) {
|
|
511
|
-
-webkit-text-decoration: underline dotted;
|
|
512
|
-
text-decoration: underline dotted;
|
|
513
|
-
}
|
|
514
|
-
h1, h2, h3, h4, h5, h6 {
|
|
515
|
-
font-size: inherit;
|
|
516
|
-
font-weight: inherit;
|
|
517
|
-
}
|
|
518
|
-
a {
|
|
519
|
-
color: inherit;
|
|
520
|
-
-webkit-text-decoration: inherit;
|
|
521
|
-
text-decoration: inherit;
|
|
522
|
-
}
|
|
523
|
-
b, strong {
|
|
524
|
-
font-weight: bolder;
|
|
525
|
-
}
|
|
526
|
-
code, kbd, samp, pre {
|
|
527
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
528
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
529
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
530
|
-
font-size: 1em;
|
|
531
|
-
}
|
|
532
|
-
small {
|
|
533
|
-
font-size: 80%;
|
|
534
|
-
}
|
|
535
|
-
sub, sup {
|
|
536
|
-
font-size: 75%;
|
|
537
|
-
line-height: 0;
|
|
538
|
-
position: relative;
|
|
539
|
-
vertical-align: baseline;
|
|
540
|
-
}
|
|
541
|
-
sub {
|
|
542
|
-
bottom: -0.25em;
|
|
543
|
-
}
|
|
544
|
-
sup {
|
|
545
|
-
top: -0.5em;
|
|
546
|
-
}
|
|
547
|
-
table {
|
|
548
|
-
text-indent: 0;
|
|
549
|
-
border-color: inherit;
|
|
550
|
-
border-collapse: collapse;
|
|
551
|
-
}
|
|
552
|
-
:-moz-focusring {
|
|
553
|
-
outline: auto;
|
|
554
|
-
}
|
|
555
|
-
progress {
|
|
556
|
-
vertical-align: baseline;
|
|
557
|
-
}
|
|
558
|
-
summary {
|
|
559
|
-
display: list-item;
|
|
560
|
-
}
|
|
561
|
-
ol, ul, menu {
|
|
562
|
-
list-style: none;
|
|
563
|
-
}
|
|
564
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
565
|
-
display: block;
|
|
566
|
-
vertical-align: middle;
|
|
567
|
-
}
|
|
568
|
-
img, video {
|
|
569
|
-
max-width: 100%;
|
|
570
|
-
height: auto;
|
|
571
|
-
}
|
|
572
|
-
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
573
|
-
font: inherit;
|
|
574
|
-
font-feature-settings: inherit;
|
|
575
|
-
font-variation-settings: inherit;
|
|
576
|
-
letter-spacing: inherit;
|
|
577
|
-
color: inherit;
|
|
578
|
-
border-radius: 0;
|
|
579
|
-
background-color: transparent;
|
|
580
|
-
opacity: 1;
|
|
581
|
-
}
|
|
582
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
583
|
-
font-weight: bolder;
|
|
584
|
-
}
|
|
585
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
586
|
-
padding-inline-start: 20px;
|
|
587
|
-
}
|
|
588
|
-
::file-selector-button {
|
|
589
|
-
margin-inline-end: 4px;
|
|
590
|
-
}
|
|
591
|
-
::placeholder {
|
|
592
|
-
opacity: 1;
|
|
593
|
-
}
|
|
594
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
595
|
-
::placeholder {
|
|
596
|
-
color: currentcolor;
|
|
597
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
598
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
textarea {
|
|
603
|
-
resize: vertical;
|
|
604
|
-
}
|
|
605
|
-
::-webkit-search-decoration {
|
|
606
|
-
-webkit-appearance: none;
|
|
607
|
-
}
|
|
608
|
-
::-webkit-date-and-time-value {
|
|
609
|
-
min-height: 1lh;
|
|
610
|
-
text-align: inherit;
|
|
611
|
-
}
|
|
612
|
-
::-webkit-datetime-edit {
|
|
613
|
-
display: inline-flex;
|
|
614
|
-
}
|
|
615
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
616
|
-
padding: 0;
|
|
617
|
-
}
|
|
618
|
-
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
619
|
-
padding-block: 0;
|
|
620
|
-
}
|
|
621
|
-
::-webkit-calendar-picker-indicator {
|
|
622
|
-
line-height: 1;
|
|
623
|
-
}
|
|
624
|
-
:-moz-ui-invalid {
|
|
625
|
-
box-shadow: none;
|
|
626
|
-
}
|
|
627
|
-
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
628
|
-
appearance: button;
|
|
629
|
-
}
|
|
630
|
-
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
631
|
-
height: auto;
|
|
632
|
-
}
|
|
633
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
634
|
-
display: none !important;
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
@layer utilities;
|
|
638
|
-
.json-view {
|
|
639
|
-
background-color: transparent !important;
|
|
640
|
-
}
|
|
641
|
-
@property --tw-translate-x {
|
|
642
|
-
syntax: "*";
|
|
643
|
-
inherits: false;
|
|
644
|
-
initial-value: 0;
|
|
645
|
-
}
|
|
646
|
-
@property --tw-translate-y {
|
|
647
|
-
syntax: "*";
|
|
648
|
-
inherits: false;
|
|
649
|
-
initial-value: 0;
|
|
650
|
-
}
|
|
651
|
-
@property --tw-translate-z {
|
|
652
|
-
syntax: "*";
|
|
653
|
-
inherits: false;
|
|
654
|
-
initial-value: 0;
|
|
655
|
-
}
|
|
656
|
-
@property --tw-border-style {
|
|
657
|
-
syntax: "*";
|
|
658
|
-
inherits: false;
|
|
659
|
-
initial-value: solid;
|
|
660
|
-
}
|
|
661
|
-
@property --tw-font-weight {
|
|
662
|
-
syntax: "*";
|
|
663
|
-
inherits: false;
|
|
664
|
-
}
|
|
665
|
-
@layer properties {
|
|
666
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
667
|
-
*, ::before, ::after, ::backdrop {
|
|
668
|
-
--tw-translate-x: 0;
|
|
669
|
-
--tw-translate-y: 0;
|
|
670
|
-
--tw-translate-z: 0;
|
|
671
|
-
--tw-border-style: solid;
|
|
672
|
-
--tw-font-weight: initial;
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
/*# sourceMappingURL=index.css.map*/
|