@motiadev/plugin-bullmq 0.14.0-beta.165-516298 → 0.14.0-beta.165-454838

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.
Files changed (42) hide show
  1. package/dist/api.d.ts +4 -0
  2. package/dist/api.d.ts.map +1 -0
  3. package/dist/components/dlq-panel.d.ts +2 -0
  4. package/dist/components/dlq-panel.d.ts.map +1 -0
  5. package/dist/components/job-detail.d.ts +2 -0
  6. package/dist/components/job-detail.d.ts.map +1 -0
  7. package/dist/components/jobs-table.d.ts +2 -0
  8. package/dist/components/jobs-table.d.ts.map +1 -0
  9. package/dist/components/queue-detail.d.ts +2 -0
  10. package/dist/components/queue-detail.d.ts.map +1 -0
  11. package/dist/components/queue-list.d.ts +2 -0
  12. package/dist/components/queue-list.d.ts.map +1 -0
  13. package/dist/components/queues-page.d.ts +2 -0
  14. package/dist/components/queues-page.d.ts.map +1 -0
  15. package/dist/hooks/use-jobs-mutations.d.ts +23 -0
  16. package/dist/hooks/use-jobs-mutations.d.ts.map +1 -0
  17. package/dist/hooks/use-jobs-query.d.ts +5 -0
  18. package/dist/hooks/use-jobs-query.d.ts.map +1 -0
  19. package/dist/hooks/use-queues.d.ts +11 -0
  20. package/dist/hooks/use-queues.d.ts.map +1 -0
  21. package/dist/index.cjs +98 -0
  22. package/dist/index.d.ts +2 -62
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/index.js +4509 -2896
  25. package/dist/plugin-bullmq.css +1 -0
  26. package/dist/plugin.cjs +1 -0
  27. package/dist/plugin.d.ts +2 -6
  28. package/dist/plugin.d.ts.map +1 -1
  29. package/dist/plugin.js +384 -630
  30. package/dist/providers/query-provider.d.ts +7 -0
  31. package/dist/providers/query-provider.d.ts.map +1 -0
  32. package/dist/stores/use-bullmq-store.d.ts +22 -0
  33. package/dist/stores/use-bullmq-store.d.ts.map +1 -0
  34. package/dist/streams/queues-stream.d.ts +33 -0
  35. package/dist/streams/queues-stream.d.ts.map +1 -0
  36. package/dist/types/queue.d.ts +54 -0
  37. package/dist/types/queue.d.ts.map +1 -0
  38. package/package.json +24 -17
  39. package/dist/index.css +0 -1161
  40. package/dist/index.css.map +0 -1
  41. package/dist/index.js.map +0 -1
  42. package/dist/plugin.js.map +0 -1
package/dist/index.css DELETED
@@ -1,1161 +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
- --color-yellow-500: oklch(79.5% 0.184 86.047);
11
- --color-yellow-600: oklch(68.1% 0.162 75.834);
12
- --color-green-500: oklch(72.3% 0.219 149.579);
13
- --color-blue-500: oklch(62.3% 0.214 259.815);
14
- --color-purple-500: oklch(62.7% 0.265 303.9);
15
- --spacing: 0.25rem;
16
- --text-xs: 0.75rem;
17
- --text-xs--line-height: calc(1 / 0.75);
18
- --text-sm: 0.875rem;
19
- --text-sm--line-height: calc(1.25 / 0.875);
20
- --text-lg: 1.125rem;
21
- --text-lg--line-height: calc(1.75 / 1.125);
22
- --text-2xl: 1.5rem;
23
- --text-2xl--line-height: calc(2 / 1.5);
24
- --font-weight-medium: 500;
25
- --font-weight-semibold: 600;
26
- --font-weight-bold: 700;
27
- --tracking-wider: 0.05em;
28
- --animate-spin: spin 1s linear infinite;
29
- --blur-sm: 8px;
30
- --default-transition-duration: 150ms;
31
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
32
- --default-font-family: var(--font-sans);
33
- --default-mono-font-family: var(--font-mono);
34
- --font-weight-500: var(--font-weight-500);
35
- --font-weight-600: var(--font-weight-600);
36
- --font-weight-700: var(--font-weight-700);
37
- }
38
- }
39
- @layer base {
40
- *, ::after, ::before, ::backdrop, ::file-selector-button {
41
- box-sizing: border-box;
42
- margin: 0;
43
- padding: 0;
44
- border: 0 solid;
45
- }
46
- html, :host {
47
- line-height: 1.5;
48
- -webkit-text-size-adjust: 100%;
49
- tab-size: 4;
50
- 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");
51
- font-feature-settings: var(--default-font-feature-settings, normal);
52
- font-variation-settings: var(--default-font-variation-settings, normal);
53
- -webkit-tap-highlight-color: transparent;
54
- }
55
- hr {
56
- height: 0;
57
- color: inherit;
58
- border-top-width: 1px;
59
- }
60
- abbr:where([title]) {
61
- -webkit-text-decoration: underline dotted;
62
- text-decoration: underline dotted;
63
- }
64
- h1, h2, h3, h4, h5, h6 {
65
- font-size: inherit;
66
- font-weight: inherit;
67
- }
68
- a {
69
- color: inherit;
70
- -webkit-text-decoration: inherit;
71
- text-decoration: inherit;
72
- }
73
- b, strong {
74
- font-weight: bolder;
75
- }
76
- code, kbd, samp, pre {
77
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
78
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
79
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
80
- font-size: 1em;
81
- }
82
- small {
83
- font-size: 80%;
84
- }
85
- sub, sup {
86
- font-size: 75%;
87
- line-height: 0;
88
- position: relative;
89
- vertical-align: baseline;
90
- }
91
- sub {
92
- bottom: -0.25em;
93
- }
94
- sup {
95
- top: -0.5em;
96
- }
97
- table {
98
- text-indent: 0;
99
- border-color: inherit;
100
- border-collapse: collapse;
101
- }
102
- :-moz-focusring {
103
- outline: auto;
104
- }
105
- progress {
106
- vertical-align: baseline;
107
- }
108
- summary {
109
- display: list-item;
110
- }
111
- ol, ul, menu {
112
- list-style: none;
113
- }
114
- img, svg, video, canvas, audio, iframe, embed, object {
115
- display: block;
116
- vertical-align: middle;
117
- }
118
- img, video {
119
- max-width: 100%;
120
- height: auto;
121
- }
122
- button, input, select, optgroup, textarea, ::file-selector-button {
123
- font: inherit;
124
- font-feature-settings: inherit;
125
- font-variation-settings: inherit;
126
- letter-spacing: inherit;
127
- color: inherit;
128
- border-radius: 0;
129
- background-color: transparent;
130
- opacity: 1;
131
- }
132
- :where(select:is([multiple], [size])) optgroup {
133
- font-weight: bolder;
134
- }
135
- :where(select:is([multiple], [size])) optgroup option {
136
- padding-inline-start: 20px;
137
- }
138
- ::file-selector-button {
139
- margin-inline-end: 4px;
140
- }
141
- ::placeholder {
142
- opacity: 1;
143
- }
144
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
145
- ::placeholder {
146
- color: currentcolor;
147
- @supports (color: color-mix(in lab, red, red)) {
148
- color: color-mix(in oklab, currentcolor 50%, transparent);
149
- }
150
- }
151
- }
152
- textarea {
153
- resize: vertical;
154
- }
155
- ::-webkit-search-decoration {
156
- -webkit-appearance: none;
157
- }
158
- ::-webkit-date-and-time-value {
159
- min-height: 1lh;
160
- text-align: inherit;
161
- }
162
- ::-webkit-datetime-edit {
163
- display: inline-flex;
164
- }
165
- ::-webkit-datetime-edit-fields-wrapper {
166
- padding: 0;
167
- }
168
- ::-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 {
169
- padding-block: 0;
170
- }
171
- ::-webkit-calendar-picker-indicator {
172
- line-height: 1;
173
- }
174
- :-moz-ui-invalid {
175
- box-shadow: none;
176
- }
177
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
178
- appearance: button;
179
- }
180
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
181
- height: auto;
182
- }
183
- [hidden]:where(:not([hidden="until-found"])) {
184
- display: none !important;
185
- }
186
- }
187
- @layer utilities {
188
- .absolute {
189
- position: absolute;
190
- }
191
- .relative {
192
- position: relative;
193
- }
194
- .sticky {
195
- position: sticky;
196
- }
197
- .top-0 {
198
- top: calc(var(--spacing) * 0);
199
- }
200
- .top-1\/2 {
201
- top: calc(1/2 * 100%);
202
- }
203
- .right-3 {
204
- right: calc(var(--spacing) * 3);
205
- }
206
- .left-3 {
207
- left: calc(var(--spacing) * 3);
208
- }
209
- .mt-1 {
210
- margin-top: calc(var(--spacing) * 1);
211
- }
212
- .mr-2 {
213
- margin-right: calc(var(--spacing) * 2);
214
- }
215
- .mb-1 {
216
- margin-bottom: calc(var(--spacing) * 1);
217
- }
218
- .mb-2 {
219
- margin-bottom: calc(var(--spacing) * 2);
220
- }
221
- .ml-1\.5 {
222
- margin-left: calc(var(--spacing) * 1.5);
223
- }
224
- .ml-auto {
225
- margin-left: auto;
226
- }
227
- .flex {
228
- display: flex;
229
- }
230
- .grid {
231
- display: grid;
232
- }
233
- .hidden {
234
- display: none;
235
- }
236
- .h-1\.5 {
237
- height: calc(var(--spacing) * 1.5);
238
- }
239
- .h-3 {
240
- height: calc(var(--spacing) * 3);
241
- }
242
- .h-4 {
243
- height: calc(var(--spacing) * 4);
244
- }
245
- .h-8 {
246
- height: calc(var(--spacing) * 8);
247
- }
248
- .h-full {
249
- height: 100%;
250
- }
251
- .max-h-\[300px\] {
252
- max-height: 300px;
253
- }
254
- .max-h-\[400px\] {
255
- max-height: 400px;
256
- }
257
- .w-3 {
258
- width: calc(var(--spacing) * 3);
259
- }
260
- .w-4 {
261
- width: calc(var(--spacing) * 4);
262
- }
263
- .w-8 {
264
- width: calc(var(--spacing) * 8);
265
- }
266
- .w-16 {
267
- width: calc(var(--spacing) * 16);
268
- }
269
- .w-\[60px\] {
270
- width: 60px;
271
- }
272
- .w-\[80px\] {
273
- width: 80px;
274
- }
275
- .w-\[100px\] {
276
- width: 100px;
277
- }
278
- .w-\[140px\] {
279
- width: 140px;
280
- }
281
- .w-\[150px\] {
282
- width: 150px;
283
- }
284
- .w-\[180px\] {
285
- width: 180px;
286
- }
287
- .w-\[200px\] {
288
- width: 200px;
289
- }
290
- .w-full {
291
- width: 100%;
292
- }
293
- .max-w-\[300px\] {
294
- max-width: 300px;
295
- }
296
- .flex-1 {
297
- flex: 1;
298
- }
299
- .-translate-y-1\/2 {
300
- --tw-translate-y: calc(calc(1/2 * 100%) * -1);
301
- translate: var(--tw-translate-x) var(--tw-translate-y);
302
- }
303
- .animate-spin {
304
- animation: var(--animate-spin);
305
- }
306
- .cursor-pointer {
307
- cursor: pointer;
308
- }
309
- .grid-cols-2 {
310
- grid-template-columns: repeat(2, minmax(0, 1fr));
311
- }
312
- .grid-cols-4 {
313
- grid-template-columns: repeat(4, minmax(0, 1fr));
314
- }
315
- .grid-cols-6 {
316
- grid-template-columns: repeat(6, minmax(0, 1fr));
317
- }
318
- .grid-cols-\[300px_1fr\] {
319
- grid-template-columns: 300px 1fr;
320
- }
321
- .flex-col {
322
- flex-direction: column;
323
- }
324
- .items-center {
325
- align-items: center;
326
- }
327
- .justify-between {
328
- justify-content: space-between;
329
- }
330
- .justify-center {
331
- justify-content: center;
332
- }
333
- .gap-1 {
334
- gap: calc(var(--spacing) * 1);
335
- }
336
- .gap-2 {
337
- gap: calc(var(--spacing) * 2);
338
- }
339
- .gap-3 {
340
- gap: calc(var(--spacing) * 3);
341
- }
342
- .gap-4 {
343
- gap: calc(var(--spacing) * 4);
344
- }
345
- .space-y-4 {
346
- :where(& > :not(:last-child)) {
347
- --tw-space-y-reverse: 0;
348
- margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
349
- margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
350
- }
351
- }
352
- .truncate {
353
- overflow: hidden;
354
- text-overflow: ellipsis;
355
- white-space: nowrap;
356
- }
357
- .overflow-auto {
358
- overflow: auto;
359
- }
360
- .overflow-hidden {
361
- overflow: hidden;
362
- }
363
- .rounded {
364
- border-radius: 0.25rem;
365
- }
366
- .rounded-full {
367
- border-radius: calc(infinity * 1px);
368
- }
369
- .border-0 {
370
- border-style: var(--tw-border-style);
371
- border-width: 0px;
372
- }
373
- .border-r {
374
- border-right-style: var(--tw-border-style);
375
- border-right-width: 1px;
376
- }
377
- .border-b {
378
- border-bottom-style: var(--tw-border-style);
379
- border-bottom-width: 1px;
380
- }
381
- .border-border {
382
- border-color: var(--border);
383
- }
384
- .bg-background\/95 {
385
- background-color: var(--background);
386
- @supports (color: color-mix(in lab, red, red)) {
387
- background-color: color-mix(in oklab, var(--background) 95%, transparent);
388
- }
389
- }
390
- .bg-destructive\/10 {
391
- background-color: var(--destructive);
392
- @supports (color: color-mix(in lab, red, red)) {
393
- background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
394
- }
395
- }
396
- .bg-muted {
397
- background-color: var(--muted);
398
- }
399
- .bg-muted-foreground\/10 {
400
- background-color: var(--muted-foreground);
401
- @supports (color: color-mix(in lab, red, red)) {
402
- background-color: color-mix(in oklab, var(--muted-foreground) 10%, transparent);
403
- }
404
- }
405
- .bg-muted\/30 {
406
- background-color: var(--muted);
407
- @supports (color: color-mix(in lab, red, red)) {
408
- background-color: color-mix(in oklab, var(--muted) 30%, transparent);
409
- }
410
- }
411
- .bg-primary {
412
- background-color: var(--primary);
413
- }
414
- .bg-yellow-500\/20 {
415
- background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 20%, transparent);
416
- @supports (color: color-mix(in lab, red, red)) {
417
- background-color: color-mix(in oklab, var(--color-yellow-500) 20%, transparent);
418
- }
419
- }
420
- .p-2 {
421
- padding: calc(var(--spacing) * 2);
422
- }
423
- .p-3 {
424
- padding: calc(var(--spacing) * 3);
425
- }
426
- .p-4 {
427
- padding: calc(var(--spacing) * 4);
428
- }
429
- .px-1\.5 {
430
- padding-inline: calc(var(--spacing) * 1.5);
431
- }
432
- .px-2 {
433
- padding-inline: calc(var(--spacing) * 2);
434
- }
435
- .px-3 {
436
- padding-inline: calc(var(--spacing) * 3);
437
- }
438
- .px-9\! {
439
- padding-inline: calc(var(--spacing) * 9) !important;
440
- }
441
- .py-0\.5 {
442
- padding-block: calc(var(--spacing) * 0.5);
443
- }
444
- .py-2 {
445
- padding-block: calc(var(--spacing) * 2);
446
- }
447
- .pt-2 {
448
- padding-top: calc(var(--spacing) * 2);
449
- }
450
- .text-center {
451
- text-align: center;
452
- }
453
- .text-left {
454
- text-align: left;
455
- }
456
- .font-mono {
457
- font-family: var(--font-mono);
458
- }
459
- .text-2xl {
460
- font-size: var(--text-2xl);
461
- line-height: var(--tw-leading, var(--text-2xl--line-height));
462
- }
463
- .text-lg {
464
- font-size: var(--text-lg);
465
- line-height: var(--tw-leading, var(--text-lg--line-height));
466
- }
467
- .text-sm {
468
- font-size: var(--text-sm);
469
- line-height: var(--tw-leading, var(--text-sm--line-height));
470
- }
471
- .text-xs {
472
- font-size: var(--text-xs);
473
- line-height: var(--tw-leading, var(--text-xs--line-height));
474
- }
475
- .text-\[10px\] {
476
- font-size: 10px;
477
- }
478
- .font-bold {
479
- --tw-font-weight: var(--font-weight-bold);
480
- font-weight: var(--font-weight-bold);
481
- }
482
- .font-medium {
483
- --tw-font-weight: var(--font-weight-medium);
484
- font-weight: var(--font-weight-medium);
485
- }
486
- .font-semibold {
487
- --tw-font-weight: var(--font-weight-semibold);
488
- font-weight: var(--font-weight-semibold);
489
- }
490
- .tracking-wider {
491
- --tw-tracking: var(--tracking-wider);
492
- letter-spacing: var(--tracking-wider);
493
- }
494
- .text-blue-500 {
495
- color: var(--color-blue-500);
496
- }
497
- .text-destructive {
498
- color: var(--destructive);
499
- }
500
- .text-green-500 {
501
- color: var(--color-green-500);
502
- }
503
- .text-muted-foreground {
504
- color: var(--muted-foreground);
505
- }
506
- .text-muted-foreground\/50 {
507
- color: var(--muted-foreground);
508
- @supports (color: color-mix(in lab, red, red)) {
509
- color: color-mix(in oklab, var(--muted-foreground) 50%, transparent);
510
- }
511
- }
512
- .text-purple-500 {
513
- color: var(--color-purple-500);
514
- }
515
- .text-yellow-500 {
516
- color: var(--color-yellow-500);
517
- }
518
- .text-yellow-600 {
519
- color: var(--color-yellow-600);
520
- }
521
- .uppercase {
522
- text-transform: uppercase;
523
- }
524
- .outline {
525
- outline-style: var(--tw-outline-style);
526
- outline-width: 1px;
527
- }
528
- .backdrop-blur-sm {
529
- --tw-backdrop-blur: blur(var(--blur-sm));
530
- -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
531
- backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
532
- }
533
- .transition-all {
534
- transition-property: all;
535
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
536
- transition-duration: var(--tw-duration, var(--default-transition-duration));
537
- }
538
- .transition-colors {
539
- transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
540
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
541
- transition-duration: var(--tw-duration, var(--default-transition-duration));
542
- }
543
- .paused {
544
- animation-play-state: paused;
545
- }
546
- .after\:absolute {
547
- &::after {
548
- content: var(--tw-content);
549
- position: absolute;
550
- }
551
- }
552
- .after\:right-0 {
553
- &::after {
554
- content: var(--tw-content);
555
- right: calc(var(--spacing) * 0);
556
- }
557
- }
558
- .after\:bottom-0 {
559
- &::after {
560
- content: var(--tw-content);
561
- bottom: calc(var(--spacing) * 0);
562
- }
563
- }
564
- .after\:left-0 {
565
- &::after {
566
- content: var(--tw-content);
567
- left: calc(var(--spacing) * 0);
568
- }
569
- }
570
- .after\:h-0\.5 {
571
- &::after {
572
- content: var(--tw-content);
573
- height: calc(var(--spacing) * 0.5);
574
- }
575
- }
576
- .after\:bg-primary {
577
- &::after {
578
- content: var(--tw-content);
579
- background-color: var(--primary);
580
- }
581
- }
582
- .hover\:bg-muted-foreground\/10 {
583
- &:hover {
584
- @media (hover: hover) {
585
- background-color: var(--muted-foreground);
586
- @supports (color: color-mix(in lab, red, red)) {
587
- background-color: color-mix(in oklab, var(--muted-foreground) 10%, transparent);
588
- }
589
- }
590
- }
591
- }
592
- .hover\:bg-muted-foreground\/20 {
593
- &:hover {
594
- @media (hover: hover) {
595
- background-color: var(--muted-foreground);
596
- @supports (color: color-mix(in lab, red, red)) {
597
- background-color: color-mix(in oklab, var(--muted-foreground) 20%, transparent);
598
- }
599
- }
600
- }
601
- }
602
- .hover\:bg-muted\/70 {
603
- &:hover {
604
- @media (hover: hover) {
605
- background-color: var(--muted);
606
- @supports (color: color-mix(in lab, red, red)) {
607
- background-color: color-mix(in oklab, var(--muted) 70%, transparent);
608
- }
609
- }
610
- }
611
- }
612
- .hover\:text-muted-foreground {
613
- &:hover {
614
- @media (hover: hover) {
615
- color: var(--muted-foreground);
616
- }
617
- }
618
- }
619
- }
620
- :root {
621
- --default-font-family: "DM Sans", ui-sans-serif, sans-serif;
622
- --font-dm-mono: "DM Mono", ui-monospace, monospace;
623
- line-height: 1.5;
624
- font-size: 16px;
625
- color-scheme: light dark;
626
- 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;
627
- font-synthesis: none;
628
- text-rendering: optimizeLegibility;
629
- -webkit-font-smoothing: antialiased;
630
- -moz-osx-font-smoothing: grayscale;
631
- width: 100%;
632
- font-optical-sizing: auto;
633
- --font-weight-500: 500;
634
- --font-weight-600: 600;
635
- --font-weight-700: 700;
636
- --accent-1000: #2862fe;
637
- --accent-970: #2862fef7;
638
- --accent-950: #2862fef2;
639
- --accent-900: #2862fee5;
640
- --accent-800: #2862fecc;
641
- --accent-700: #2862feb2;
642
- --accent-600: #2862fe99;
643
- --accent-500: #2862fe80;
644
- --accent-400: #2862fe66;
645
- --accent-300: #2862fe4d;
646
- --accent-200: #2862fe33;
647
- --accent-100: #2862fe1a;
648
- --accent-50: #2862fe0d;
649
- --accent-30: #2862fe08;
650
- --dark-1000: #0a0a0a;
651
- --dark-970: #0a0a0af7;
652
- --dark-950: #0a0a0af2;
653
- --dark-900: #0a0a0ae5;
654
- --dark-800: #0a0a0acc;
655
- --dark-700: #0a0a0ab2;
656
- --dark-600: #0a0a0a99;
657
- --dark-500: #0a0a0a80;
658
- --dark-400: #0a0a0a66;
659
- --dark-300: #0a0a0a4d;
660
- --dark-200: #0a0a0a33;
661
- --dark-100: #0a0a0a1a;
662
- --dark-50: #0a0a0a0d;
663
- --dark-30: #0a0a0a08;
664
- --light-1000: #ffffff;
665
- --light-970: #fffffff7;
666
- --light-950: #fffffff2;
667
- --light-900: #ffffffe5;
668
- --light-800: #ffffffcc;
669
- --light-700: #ffffffb2;
670
- --light-600: #ffffff99;
671
- --light-500: #ffffff80;
672
- --light-400: #ffffff66;
673
- --light-300: #ffffff4d;
674
- --light-200: #ffffff33;
675
- --light-100: #ffffff1a;
676
- --light-50: #ffffff0d;
677
- --light-30: #ffffff08;
678
- --error: #d61355;
679
- --canvas-background: #ebebeb;
680
- --background: var(--light-1000);
681
- --foreground: var(--dark-1000);
682
- --surface-content: var(--dark-30);
683
- --surface-component: var(--dark-50);
684
- --surface-light-100: var(--dark-100);
685
- --surface-light-200: var(--dark-200);
686
- --border: var(--dark-100);
687
- --border-accent: var(--accent-1000);
688
- --states-hover: var(--dark-30);
689
- --states-selected: var(--dark-100);
690
- --states-active: var(--accent-1000);
691
- --text-header: var(--dark-1000);
692
- --text-body: var(--dark-600);
693
- --text-placeholder: var(--dark-400);
694
- --text-accent: var(--accent-1000);
695
- --text-error: var(--error);
696
- --icon-active: var(--dark-1000);
697
- --icon-light: var(--dark-600);
698
- --icon-component: var(--dark-400);
699
- --icon-accent: var(--accent-1000);
700
- --primary: var(--accent-1000);
701
- --primary-foreground: var(--light-1000);
702
- --secondary: var(--surface-component);
703
- --secondary-foreground: var(--text-body);
704
- --muted: var(--surface-light-100);
705
- --muted-foreground: var(--text-body);
706
- --accent: var(--accent-1000);
707
- --accent-foreground: var(--light-1000);
708
- --destructive: var(--error);
709
- --destructive-foreground: var(--light-1000);
710
- --card: var(--surface-content);
711
- --card-foreground: var(--foreground);
712
- --popover: var(--surface-content);
713
- --popover-foreground: var(--foreground);
714
- --input: var(--states-hover);
715
- --ring: var(--border-accent);
716
- --chart-1: var(--accent-1000);
717
- --chart-2: var(--accent-800);
718
- --chart-3: var(--accent-600);
719
- --chart-4: var(--accent-400);
720
- --chart-5: var(--accent-200);
721
- --header: var(--background);
722
- --header-foreground: var(--text-header);
723
- --header-primary: var(--primary);
724
- --header-primary-foreground: var(--primary-foreground);
725
- --header-accent: var(--surface-component);
726
- --header-accent-foreground: var(--text-body);
727
- --header-border: var(--border);
728
- --header-ring: var(--ring);
729
- --sidebar: var(--background);
730
- --sidebar-foreground: var(--text-header);
731
- --sidebar-primary: var(--primary);
732
- --sidebar-primary-foreground: var(--primary-foreground);
733
- --sidebar-accent: var(--surface-component);
734
- --sidebar-accent-foreground: var(--text-body);
735
- --sidebar-border: var(--border);
736
- --sidebar-ring: var(--ring);
737
- }
738
- .dark {
739
- --canvas-background: #030303;
740
- --background: var(--dark-1000);
741
- --foreground: var(--light-1000);
742
- --surface-content: var(--light-30);
743
- --surface-component: var(--light-50);
744
- --surface-light-100: var(--light-100);
745
- --surface-light-200: var(--light-200);
746
- --border: var(--light-100);
747
- --states-hover: var(--light-30);
748
- --states-selected: var(--light-100);
749
- --text-header: var(--light-1000);
750
- --text-body: var(--light-600);
751
- --text-placeholder: var(--light-400);
752
- --icon-active: var(--light-1000);
753
- --icon-light: var(--light-600);
754
- --icon-component: var(--light-400);
755
- --secondary-foreground: var(--light-600);
756
- --muted-foreground: var(--light-600);
757
- --card: var(--surface-content);
758
- --card-foreground: var(--foreground);
759
- --popover: var(--surface-content);
760
- --popover-foreground: var(--foreground);
761
- --input: var(--states-hover);
762
- --ring: var(--border-accent);
763
- --chart-1: var(--accent-1000);
764
- --chart-2: var(--accent-800);
765
- --chart-3: var(--accent-600);
766
- --chart-4: var(--accent-400);
767
- --chart-5: var(--accent-200);
768
- --header: var(--background);
769
- --header-foreground: var(--text-header);
770
- --header-primary: var(--primary);
771
- --header-primary-foreground: var(--primary-foreground);
772
- --header-accent: var(--surface-component);
773
- --header-accent-foreground: var(--text-body);
774
- --header-border: var(--border);
775
- --header-ring: var(--ring);
776
- --sidebar: var(--background);
777
- --sidebar-foreground: var(--text-header);
778
- --sidebar-primary: var(--primary);
779
- --sidebar-primary-foreground: var(--primary-foreground);
780
- --sidebar-accent: var(--surface-component);
781
- --sidebar-accent-foreground: var(--text-body);
782
- --sidebar-border: var(--border);
783
- --sidebar-ring: var(--ring);
784
- }
785
- @layer base {
786
- * {
787
- border-color: var(--border);
788
- }
789
- body {
790
- background-color: var(--background);
791
- color: var(--foreground);
792
- }
793
- }
794
- @layer theme, base, components, utilities;
795
- @layer theme;
796
- @layer base {
797
- *, ::after, ::before, ::backdrop, ::file-selector-button {
798
- box-sizing: border-box;
799
- margin: 0;
800
- padding: 0;
801
- border: 0 solid;
802
- }
803
- html, :host {
804
- line-height: 1.5;
805
- -webkit-text-size-adjust: 100%;
806
- tab-size: 4;
807
- 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");
808
- font-feature-settings: var(--default-font-feature-settings, normal);
809
- font-variation-settings: var(--default-font-variation-settings, normal);
810
- -webkit-tap-highlight-color: transparent;
811
- }
812
- hr {
813
- height: 0;
814
- color: inherit;
815
- border-top-width: 1px;
816
- }
817
- abbr:where([title]) {
818
- -webkit-text-decoration: underline dotted;
819
- text-decoration: underline dotted;
820
- }
821
- h1, h2, h3, h4, h5, h6 {
822
- font-size: inherit;
823
- font-weight: inherit;
824
- }
825
- a {
826
- color: inherit;
827
- -webkit-text-decoration: inherit;
828
- text-decoration: inherit;
829
- }
830
- b, strong {
831
- font-weight: bolder;
832
- }
833
- code, kbd, samp, pre {
834
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
835
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
836
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
837
- font-size: 1em;
838
- }
839
- small {
840
- font-size: 80%;
841
- }
842
- sub, sup {
843
- font-size: 75%;
844
- line-height: 0;
845
- position: relative;
846
- vertical-align: baseline;
847
- }
848
- sub {
849
- bottom: -0.25em;
850
- }
851
- sup {
852
- top: -0.5em;
853
- }
854
- table {
855
- text-indent: 0;
856
- border-color: inherit;
857
- border-collapse: collapse;
858
- }
859
- :-moz-focusring {
860
- outline: auto;
861
- }
862
- progress {
863
- vertical-align: baseline;
864
- }
865
- summary {
866
- display: list-item;
867
- }
868
- ol, ul, menu {
869
- list-style: none;
870
- }
871
- img, svg, video, canvas, audio, iframe, embed, object {
872
- display: block;
873
- vertical-align: middle;
874
- }
875
- img, video {
876
- max-width: 100%;
877
- height: auto;
878
- }
879
- button, input, select, optgroup, textarea, ::file-selector-button {
880
- font: inherit;
881
- font-feature-settings: inherit;
882
- font-variation-settings: inherit;
883
- letter-spacing: inherit;
884
- color: inherit;
885
- border-radius: 0;
886
- background-color: transparent;
887
- opacity: 1;
888
- }
889
- :where(select:is([multiple], [size])) optgroup {
890
- font-weight: bolder;
891
- }
892
- :where(select:is([multiple], [size])) optgroup option {
893
- padding-inline-start: 20px;
894
- }
895
- ::file-selector-button {
896
- margin-inline-end: 4px;
897
- }
898
- ::placeholder {
899
- opacity: 1;
900
- }
901
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
902
- ::placeholder {
903
- color: currentcolor;
904
- @supports (color: color-mix(in lab, red, red)) {
905
- color: color-mix(in oklab, currentcolor 50%, transparent);
906
- }
907
- }
908
- }
909
- textarea {
910
- resize: vertical;
911
- }
912
- ::-webkit-search-decoration {
913
- -webkit-appearance: none;
914
- }
915
- ::-webkit-date-and-time-value {
916
- min-height: 1lh;
917
- text-align: inherit;
918
- }
919
- ::-webkit-datetime-edit {
920
- display: inline-flex;
921
- }
922
- ::-webkit-datetime-edit-fields-wrapper {
923
- padding: 0;
924
- }
925
- ::-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 {
926
- padding-block: 0;
927
- }
928
- ::-webkit-calendar-picker-indicator {
929
- line-height: 1;
930
- }
931
- :-moz-ui-invalid {
932
- box-shadow: none;
933
- }
934
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
935
- appearance: button;
936
- }
937
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
938
- height: auto;
939
- }
940
- [hidden]:where(:not([hidden="until-found"])) {
941
- display: none !important;
942
- }
943
- }
944
- @layer utilities;
945
- @property --tw-animation-delay {
946
- syntax: "*";
947
- inherits: false;
948
- initial-value: 0s;
949
- }
950
- @property --tw-animation-direction {
951
- syntax: "*";
952
- inherits: false;
953
- initial-value: normal;
954
- }
955
- @property --tw-animation-duration {
956
- syntax: "*";
957
- inherits: false;
958
- }
959
- @property --tw-animation-fill-mode {
960
- syntax: "*";
961
- inherits: false;
962
- initial-value: none;
963
- }
964
- @property --tw-animation-iteration-count {
965
- syntax: "*";
966
- inherits: false;
967
- initial-value: 1;
968
- }
969
- @property --tw-enter-blur {
970
- syntax: "*";
971
- inherits: false;
972
- initial-value: 0;
973
- }
974
- @property --tw-enter-opacity {
975
- syntax: "*";
976
- inherits: false;
977
- initial-value: 1;
978
- }
979
- @property --tw-enter-rotate {
980
- syntax: "*";
981
- inherits: false;
982
- initial-value: 0;
983
- }
984
- @property --tw-enter-scale {
985
- syntax: "*";
986
- inherits: false;
987
- initial-value: 1;
988
- }
989
- @property --tw-enter-translate-x {
990
- syntax: "*";
991
- inherits: false;
992
- initial-value: 0;
993
- }
994
- @property --tw-enter-translate-y {
995
- syntax: "*";
996
- inherits: false;
997
- initial-value: 0;
998
- }
999
- @property --tw-exit-blur {
1000
- syntax: "*";
1001
- inherits: false;
1002
- initial-value: 0;
1003
- }
1004
- @property --tw-exit-opacity {
1005
- syntax: "*";
1006
- inherits: false;
1007
- initial-value: 1;
1008
- }
1009
- @property --tw-exit-rotate {
1010
- syntax: "*";
1011
- inherits: false;
1012
- initial-value: 0;
1013
- }
1014
- @property --tw-exit-scale {
1015
- syntax: "*";
1016
- inherits: false;
1017
- initial-value: 1;
1018
- }
1019
- @property --tw-exit-translate-x {
1020
- syntax: "*";
1021
- inherits: false;
1022
- initial-value: 0;
1023
- }
1024
- @property --tw-exit-translate-y {
1025
- syntax: "*";
1026
- inherits: false;
1027
- initial-value: 0;
1028
- }
1029
- @property --tw-translate-x {
1030
- syntax: "*";
1031
- inherits: false;
1032
- initial-value: 0;
1033
- }
1034
- @property --tw-translate-y {
1035
- syntax: "*";
1036
- inherits: false;
1037
- initial-value: 0;
1038
- }
1039
- @property --tw-translate-z {
1040
- syntax: "*";
1041
- inherits: false;
1042
- initial-value: 0;
1043
- }
1044
- @property --tw-space-y-reverse {
1045
- syntax: "*";
1046
- inherits: false;
1047
- initial-value: 0;
1048
- }
1049
- @property --tw-border-style {
1050
- syntax: "*";
1051
- inherits: false;
1052
- initial-value: solid;
1053
- }
1054
- @property --tw-font-weight {
1055
- syntax: "*";
1056
- inherits: false;
1057
- }
1058
- @property --tw-tracking {
1059
- syntax: "*";
1060
- inherits: false;
1061
- }
1062
- @property --tw-outline-style {
1063
- syntax: "*";
1064
- inherits: false;
1065
- initial-value: solid;
1066
- }
1067
- @property --tw-backdrop-blur {
1068
- syntax: "*";
1069
- inherits: false;
1070
- }
1071
- @property --tw-backdrop-brightness {
1072
- syntax: "*";
1073
- inherits: false;
1074
- }
1075
- @property --tw-backdrop-contrast {
1076
- syntax: "*";
1077
- inherits: false;
1078
- }
1079
- @property --tw-backdrop-grayscale {
1080
- syntax: "*";
1081
- inherits: false;
1082
- }
1083
- @property --tw-backdrop-hue-rotate {
1084
- syntax: "*";
1085
- inherits: false;
1086
- }
1087
- @property --tw-backdrop-invert {
1088
- syntax: "*";
1089
- inherits: false;
1090
- }
1091
- @property --tw-backdrop-opacity {
1092
- syntax: "*";
1093
- inherits: false;
1094
- }
1095
- @property --tw-backdrop-saturate {
1096
- syntax: "*";
1097
- inherits: false;
1098
- }
1099
- @property --tw-backdrop-sepia {
1100
- syntax: "*";
1101
- inherits: false;
1102
- }
1103
- @property --tw-content {
1104
- syntax: "*";
1105
- initial-value: "";
1106
- inherits: false;
1107
- }
1108
- @keyframes spin {
1109
- to {
1110
- transform: rotate(360deg);
1111
- }
1112
- }
1113
- @keyframes spin {
1114
- to {
1115
- transform: rotate(360deg);
1116
- }
1117
- }
1118
- @layer properties {
1119
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1120
- *, ::before, ::after, ::backdrop {
1121
- --tw-translate-x: 0;
1122
- --tw-translate-y: 0;
1123
- --tw-translate-z: 0;
1124
- --tw-space-y-reverse: 0;
1125
- --tw-border-style: solid;
1126
- --tw-font-weight: initial;
1127
- --tw-tracking: initial;
1128
- --tw-outline-style: solid;
1129
- --tw-backdrop-blur: initial;
1130
- --tw-backdrop-brightness: initial;
1131
- --tw-backdrop-contrast: initial;
1132
- --tw-backdrop-grayscale: initial;
1133
- --tw-backdrop-hue-rotate: initial;
1134
- --tw-backdrop-invert: initial;
1135
- --tw-backdrop-opacity: initial;
1136
- --tw-backdrop-saturate: initial;
1137
- --tw-backdrop-sepia: initial;
1138
- --tw-content: "";
1139
- --tw-animation-delay: 0s;
1140
- --tw-animation-direction: normal;
1141
- --tw-animation-duration: initial;
1142
- --tw-animation-fill-mode: none;
1143
- --tw-animation-iteration-count: 1;
1144
- --tw-enter-blur: 0;
1145
- --tw-enter-opacity: 1;
1146
- --tw-enter-rotate: 0;
1147
- --tw-enter-scale: 1;
1148
- --tw-enter-translate-x: 0;
1149
- --tw-enter-translate-y: 0;
1150
- --tw-exit-blur: 0;
1151
- --tw-exit-opacity: 1;
1152
- --tw-exit-rotate: 0;
1153
- --tw-exit-scale: 1;
1154
- --tw-exit-translate-x: 0;
1155
- --tw-exit-translate-y: 0;
1156
- }
1157
- }
1158
- }
1159
-
1160
-
1161
- /*# sourceMappingURL=index.css.map*/