@webmaster-droid/web 0.1.0 → 0.2.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/core.css +229 -0
- package/dist/index.d.ts +18 -4
- package/dist/index.js +527 -167
- package/dist/theme.css +465 -0
- package/package.json +10 -9
- package/dist/styles.css +0 -2
package/dist/theme.css
ADDED
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
.wmd-panel,
|
|
2
|
+
.wmd-launcher {
|
|
3
|
+
--wmd-stone-50: #fafaf9;
|
|
4
|
+
--wmd-stone-100: #f5f5f4;
|
|
5
|
+
--wmd-stone-200: #e7e5e4;
|
|
6
|
+
--wmd-stone-300: #d6d3d1;
|
|
7
|
+
--wmd-stone-500: #78716c;
|
|
8
|
+
--wmd-stone-600: #57534e;
|
|
9
|
+
--wmd-stone-700: #44403c;
|
|
10
|
+
--wmd-stone-800: #292524;
|
|
11
|
+
--wmd-stone-900: #1c1917;
|
|
12
|
+
--wmd-red-300: #fca5a5;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.wmd-panel {
|
|
16
|
+
border: 1px solid var(--wmd-stone-300);
|
|
17
|
+
border-radius: 0.5rem;
|
|
18
|
+
background: #f6f2eb;
|
|
19
|
+
color: var(--wmd-stone-900);
|
|
20
|
+
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.wmd-launcher {
|
|
24
|
+
border: 1px solid var(--wmd-stone-600);
|
|
25
|
+
border-radius: 999px;
|
|
26
|
+
background: var(--wmd-stone-700);
|
|
27
|
+
padding: 0.5rem 1rem;
|
|
28
|
+
color: var(--wmd-stone-100);
|
|
29
|
+
font-size: 12px;
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
line-height: 1.333;
|
|
32
|
+
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.wmd-launcher:hover {
|
|
37
|
+
background: var(--wmd-stone-800);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.wmd-header,
|
|
41
|
+
.wmd-footer {
|
|
42
|
+
background: #f3eee5;
|
|
43
|
+
padding: 0.5rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.wmd-header {
|
|
47
|
+
border-bottom: 1px solid var(--wmd-stone-300);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.wmd-footer {
|
|
51
|
+
border-top: 1px solid var(--wmd-stone-300);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.wmd-publish-state {
|
|
55
|
+
border: 1px solid var(--wmd-stone-300);
|
|
56
|
+
border-radius: 0.25rem;
|
|
57
|
+
padding: 0.125rem 0.375rem;
|
|
58
|
+
font-size: 10px;
|
|
59
|
+
font-weight: 500;
|
|
60
|
+
line-height: 1rem;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.wmd-publish-state--published {
|
|
64
|
+
background: #ece5d9;
|
|
65
|
+
color: var(--wmd-stone-600);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.wmd-publish-state--unpublished {
|
|
69
|
+
border-color: var(--wmd-stone-500);
|
|
70
|
+
background: #ded4c3;
|
|
71
|
+
color: var(--wmd-stone-800);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.wmd-publish-button,
|
|
75
|
+
.wmd-primary-button,
|
|
76
|
+
.wmd-send-button {
|
|
77
|
+
border: 1px solid var(--wmd-stone-700);
|
|
78
|
+
border-radius: 0.25rem;
|
|
79
|
+
background: var(--wmd-stone-800);
|
|
80
|
+
color: var(--wmd-stone-100);
|
|
81
|
+
font-weight: 600;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.wmd-publish-button {
|
|
86
|
+
padding: 0.25rem 0.5rem;
|
|
87
|
+
font-size: 11px;
|
|
88
|
+
line-height: 1rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.wmd-primary-button {
|
|
92
|
+
width: 100%;
|
|
93
|
+
padding: 0.375rem 0.5rem;
|
|
94
|
+
font-size: 12px;
|
|
95
|
+
line-height: 1.333;
|
|
96
|
+
font-weight: 500;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.wmd-send-button {
|
|
100
|
+
border-color: var(--wmd-stone-500);
|
|
101
|
+
background: var(--wmd-stone-600);
|
|
102
|
+
padding: 0.375rem 0.75rem;
|
|
103
|
+
font-size: 12px;
|
|
104
|
+
line-height: 1.333;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.wmd-publish-button:hover,
|
|
108
|
+
.wmd-primary-button:hover,
|
|
109
|
+
.wmd-send-button:hover {
|
|
110
|
+
background: var(--wmd-stone-700);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.wmd-publish-button:disabled,
|
|
114
|
+
.wmd-primary-button:disabled,
|
|
115
|
+
.wmd-send-button:disabled,
|
|
116
|
+
.wmd-model-select:disabled,
|
|
117
|
+
.wmd-icon-button:disabled,
|
|
118
|
+
.wmd-history-action:disabled,
|
|
119
|
+
.wmd-history-delete:disabled {
|
|
120
|
+
cursor: not-allowed;
|
|
121
|
+
opacity: 0.5;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.wmd-tabs {
|
|
125
|
+
border: 1px solid var(--wmd-stone-300);
|
|
126
|
+
border-radius: 0.375rem;
|
|
127
|
+
background: #e8dfd1;
|
|
128
|
+
padding: 0.125rem;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.wmd-tab-button {
|
|
132
|
+
border: 0;
|
|
133
|
+
border-radius: 0.25rem;
|
|
134
|
+
background: transparent;
|
|
135
|
+
padding: 0.25rem 0.5rem;
|
|
136
|
+
color: var(--wmd-stone-600);
|
|
137
|
+
font-size: 11px;
|
|
138
|
+
line-height: 1rem;
|
|
139
|
+
font-weight: 500;
|
|
140
|
+
cursor: pointer;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.wmd-tab-button:hover {
|
|
144
|
+
color: var(--wmd-stone-900);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.wmd-tab-button--active {
|
|
148
|
+
background: #f7f2e8;
|
|
149
|
+
color: var(--wmd-stone-900);
|
|
150
|
+
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.wmd-login-title {
|
|
154
|
+
margin: 0;
|
|
155
|
+
color: var(--wmd-stone-700);
|
|
156
|
+
font-size: 12px;
|
|
157
|
+
font-weight: 600;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.wmd-close-button,
|
|
161
|
+
.wmd-icon-button,
|
|
162
|
+
.wmd-selected-clear,
|
|
163
|
+
.wmd-history-action,
|
|
164
|
+
.wmd-history-delete {
|
|
165
|
+
border: 1px solid var(--wmd-stone-300);
|
|
166
|
+
border-radius: 0.25rem;
|
|
167
|
+
background: #f7f2e8;
|
|
168
|
+
color: var(--wmd-stone-700);
|
|
169
|
+
cursor: pointer;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.wmd-close-button {
|
|
173
|
+
padding: 0.25rem 0.5rem;
|
|
174
|
+
font-size: 11px;
|
|
175
|
+
line-height: 1rem;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.wmd-icon-button,
|
|
179
|
+
.wmd-history-delete {
|
|
180
|
+
width: 1.5rem;
|
|
181
|
+
height: 1.5rem;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.wmd-selected-clear {
|
|
185
|
+
width: 1.25rem;
|
|
186
|
+
height: 1.25rem;
|
|
187
|
+
flex-shrink: 0;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.wmd-close-button:hover,
|
|
191
|
+
.wmd-icon-button:hover,
|
|
192
|
+
.wmd-selected-clear:hover,
|
|
193
|
+
.wmd-history-action:hover,
|
|
194
|
+
.wmd-history-delete:hover {
|
|
195
|
+
background: #efe8dc;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.wmd-icon-button:hover {
|
|
199
|
+
color: var(--wmd-stone-800);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.wmd-login-section,
|
|
203
|
+
.wmd-chat-section {
|
|
204
|
+
background: #ece7dd;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.wmd-login-section {
|
|
208
|
+
padding: 0.75rem;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.wmd-login-card,
|
|
212
|
+
.wmd-history-card,
|
|
213
|
+
.wmd-login-warning {
|
|
214
|
+
border: 1px solid var(--wmd-stone-300);
|
|
215
|
+
border-radius: 0.25rem;
|
|
216
|
+
background: #f8f3e9;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.wmd-login-warning {
|
|
220
|
+
border-color: var(--wmd-red-300);
|
|
221
|
+
color: #b91c1c;
|
|
222
|
+
padding: 0.75rem;
|
|
223
|
+
font-size: 11px;
|
|
224
|
+
line-height: 1rem;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.wmd-login-heading {
|
|
228
|
+
margin: 0 0 0.5rem;
|
|
229
|
+
color: var(--wmd-stone-700);
|
|
230
|
+
font-size: 12px;
|
|
231
|
+
font-weight: 600;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.wmd-field-input,
|
|
235
|
+
.wmd-model-select,
|
|
236
|
+
.wmd-composer-input {
|
|
237
|
+
border: 1px solid var(--wmd-stone-300);
|
|
238
|
+
border-radius: 0.25rem;
|
|
239
|
+
background: #f4efe6;
|
|
240
|
+
color: var(--wmd-stone-900);
|
|
241
|
+
outline: none;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.wmd-field-input,
|
|
245
|
+
.wmd-composer-input {
|
|
246
|
+
width: 100%;
|
|
247
|
+
padding: 0.375rem 0.5rem;
|
|
248
|
+
font-size: 12px;
|
|
249
|
+
line-height: 1.333;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.wmd-model-select {
|
|
253
|
+
height: 1.75rem;
|
|
254
|
+
padding: 0 0.5rem;
|
|
255
|
+
font-size: 11px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.wmd-field-input:focus,
|
|
259
|
+
.wmd-model-select:focus,
|
|
260
|
+
.wmd-composer-input:focus {
|
|
261
|
+
border-color: var(--wmd-stone-500);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.wmd-composer-input::placeholder {
|
|
265
|
+
color: var(--wmd-stone-500);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.wmd-chat-section {
|
|
269
|
+
padding: 0.5rem;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.wmd-message--tool {
|
|
273
|
+
padding: 0 0.125rem;
|
|
274
|
+
color: var(--wmd-stone-500);
|
|
275
|
+
font-size: 10px;
|
|
276
|
+
line-height: 1.25;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.wmd-message--user,
|
|
280
|
+
.wmd-message--thinking,
|
|
281
|
+
.wmd-message--assistant,
|
|
282
|
+
.wmd-message--fallback {
|
|
283
|
+
border-radius: 0.375rem;
|
|
284
|
+
padding-top: 0.375rem;
|
|
285
|
+
padding-bottom: 0.375rem;
|
|
286
|
+
font-size: 12px;
|
|
287
|
+
line-height: 1.333;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.wmd-message--user {
|
|
291
|
+
background: #2e2b27;
|
|
292
|
+
color: var(--wmd-stone-50);
|
|
293
|
+
padding-right: 0.5rem;
|
|
294
|
+
padding-left: 0.5rem;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.wmd-message--thinking {
|
|
298
|
+
background: #e3dbce;
|
|
299
|
+
color: var(--wmd-stone-700);
|
|
300
|
+
padding-right: 0.5rem;
|
|
301
|
+
padding-left: 0.5rem;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.wmd-message--assistant {
|
|
305
|
+
border: 1px solid #d6ccbb;
|
|
306
|
+
background: #f8f3e9;
|
|
307
|
+
color: var(--wmd-stone-800);
|
|
308
|
+
padding-right: 0.5rem;
|
|
309
|
+
padding-left: 2rem;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.wmd-message--fallback {
|
|
313
|
+
background: #ddd2bf;
|
|
314
|
+
color: var(--wmd-stone-800);
|
|
315
|
+
padding-right: 0.5rem;
|
|
316
|
+
padding-left: 0.5rem;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.wmd-assistant-avatar,
|
|
320
|
+
.wmd-assistant-avatar-fallback {
|
|
321
|
+
border: 1px solid #d6ccbb;
|
|
322
|
+
border-radius: 999px;
|
|
323
|
+
background: #efe8dc;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.wmd-assistant-avatar {
|
|
327
|
+
object-fit: cover;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.wmd-assistant-avatar-fallback {
|
|
331
|
+
color: var(--wmd-stone-700);
|
|
332
|
+
font-size: 9px;
|
|
333
|
+
font-weight: 600;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.wmd-markdown-content {
|
|
337
|
+
max-width: none;
|
|
338
|
+
color: inherit;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.wmd-markdown-content p {
|
|
342
|
+
margin-top: 0;
|
|
343
|
+
margin-bottom: 0.25rem;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.wmd-markdown-content p:last-child {
|
|
347
|
+
margin-bottom: 0;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.wmd-markdown-content code {
|
|
351
|
+
border-radius: 0.25rem;
|
|
352
|
+
background: rgb(28 25 23 / 0.1);
|
|
353
|
+
padding: 0 0.25rem;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.wmd-markdown-content ul,
|
|
357
|
+
.wmd-markdown-content ol {
|
|
358
|
+
margin: 0;
|
|
359
|
+
padding-left: 1rem;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.wmd-markdown-content ul {
|
|
363
|
+
list-style: disc;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.wmd-markdown-content ol {
|
|
367
|
+
list-style: decimal;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.wmd-pending-shim {
|
|
371
|
+
display: block;
|
|
372
|
+
height: 1rem;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.wmd-model-row,
|
|
376
|
+
.wmd-selected-element {
|
|
377
|
+
margin-bottom: 0.25rem;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.wmd-model-label {
|
|
381
|
+
color: var(--wmd-stone-600);
|
|
382
|
+
font-size: 10px;
|
|
383
|
+
font-weight: 600;
|
|
384
|
+
text-transform: uppercase;
|
|
385
|
+
letter-spacing: 0.025em;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.wmd-model-select:disabled {
|
|
389
|
+
opacity: 0.6;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.wmd-selected-element {
|
|
393
|
+
border: 1px solid var(--wmd-stone-300);
|
|
394
|
+
border-radius: 0.25rem;
|
|
395
|
+
background: #e8dfd1;
|
|
396
|
+
padding: 0.25rem 0.375rem;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.wmd-selected-kind {
|
|
400
|
+
border: 1px solid var(--wmd-stone-300);
|
|
401
|
+
border-radius: 0.25rem;
|
|
402
|
+
background: #f7f2e8;
|
|
403
|
+
padding: 0.125rem 0.25rem;
|
|
404
|
+
color: var(--wmd-stone-700);
|
|
405
|
+
font-size: 9px;
|
|
406
|
+
font-weight: 600;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.wmd-selected-text {
|
|
410
|
+
color: var(--wmd-stone-600);
|
|
411
|
+
font-size: 10px;
|
|
412
|
+
line-height: 0.875rem;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.wmd-selected-label {
|
|
416
|
+
color: var(--wmd-stone-800);
|
|
417
|
+
font-weight: 600;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.wmd-history-section {
|
|
421
|
+
padding: 0.5rem;
|
|
422
|
+
color: var(--wmd-stone-900);
|
|
423
|
+
font-size: 11px;
|
|
424
|
+
line-height: 1rem;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.wmd-history-card-title {
|
|
428
|
+
border-bottom: 1px solid var(--wmd-stone-200);
|
|
429
|
+
padding: 0.25rem 0.5rem;
|
|
430
|
+
color: var(--wmd-stone-700);
|
|
431
|
+
font-weight: 600;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.wmd-history-list {
|
|
435
|
+
padding: 0.375rem 0.5rem;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.wmd-history-item,
|
|
439
|
+
.wmd-history-item--checkpoint {
|
|
440
|
+
border: 1px solid var(--wmd-stone-200);
|
|
441
|
+
border-radius: 0.25rem;
|
|
442
|
+
background: #f2ecdf;
|
|
443
|
+
padding: 0.25rem 0.5rem;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.wmd-history-timestamp {
|
|
447
|
+
color: var(--wmd-stone-700);
|
|
448
|
+
font-size: 10px;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.wmd-history-reason {
|
|
452
|
+
color: var(--wmd-stone-500);
|
|
453
|
+
font-size: 10px;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.wmd-history-action {
|
|
457
|
+
padding: 0.125rem 0.375rem;
|
|
458
|
+
font-size: 10px;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.wmd-empty-text {
|
|
462
|
+
margin: 0;
|
|
463
|
+
color: var(--wmd-stone-500);
|
|
464
|
+
font-size: 10px;
|
|
465
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webmaster-droid/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"import": "./dist/index.js"
|
|
11
11
|
},
|
|
12
|
-
"./
|
|
12
|
+
"./core.css": "./dist/core.css",
|
|
13
|
+
"./theme.css": "./dist/theme.css"
|
|
13
14
|
},
|
|
14
15
|
"sideEffects": [
|
|
15
|
-
"./dist/
|
|
16
|
+
"./dist/core.css",
|
|
17
|
+
"./dist/theme.css"
|
|
16
18
|
],
|
|
17
19
|
"files": [
|
|
18
20
|
"dist"
|
|
@@ -31,15 +33,14 @@
|
|
|
31
33
|
"sanitize-html": "^2.17.1"
|
|
32
34
|
},
|
|
33
35
|
"scripts": {
|
|
34
|
-
"build": "npm run build:js && npm run build:
|
|
36
|
+
"build": "npm run build:js && npm run build:assets",
|
|
35
37
|
"build:js": "tsup src/index.tsx --format esm --dts --clean",
|
|
36
|
-
"build:
|
|
37
|
-
"typecheck": "tsc --noEmit"
|
|
38
|
+
"build:assets": "node ./scripts/copy-css.mjs",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"test": "node ../../scripts/run-workspace-tests.mjs"
|
|
38
41
|
},
|
|
39
42
|
"devDependencies": {
|
|
40
|
-
"@
|
|
41
|
-
"@types/sanitize-html": "^2.16.0",
|
|
42
|
-
"tailwindcss": "^4.1.0"
|
|
43
|
+
"@types/sanitize-html": "^2.16.0"
|
|
43
44
|
},
|
|
44
45
|
"description": "Unified web runtime and editable React components for webmaster-droid.",
|
|
45
46
|
"license": "MIT",
|
package/dist/styles.css
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.0 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}@layer theme{:root,:host{--color-red-300:oklch(80.8% .114 19.571);--color-red-700:oklch(50.5% .213 27.518);--color-stone-50:oklch(98.5% .001 106.423);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-300:oklch(86.9% .005 56.366);--color-stone-500:oklch(55.3% .013 58.071);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--spacing:.25rem;--container-sm:24rem;--font-weight-medium:500;--font-weight-semibold:600;--tracking-wide:.025em;--leading-tight:1.25;--radius-md:.375rem;--radius-lg:.5rem;--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite}}@layer utilities{.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.end{inset-inline-end:var(--spacing)}.top-1\.5{top:calc(var(--spacing) * 1.5)}.right-4{right:calc(var(--spacing) * 4)}.bottom-4{bottom:calc(var(--spacing) * 4)}.left-2{left:calc(var(--spacing) * 2)}.z-\[100\]{z-index:100}.mb-1{margin-bottom:calc(var(--spacing) * 1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.ml-auto{margin-left:auto}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.h-3{height:calc(var(--spacing) * 3)}.h-3\.5{height:calc(var(--spacing) * 3.5)}.h-4{height:calc(var(--spacing) * 4)}.h-5{height:calc(var(--spacing) * 5)}.h-6{height:calc(var(--spacing) * 6)}.h-7{height:calc(var(--spacing) * 7)}.h-\[18px\]{height:18px}.h-\[62vh\]{height:62vh}.max-h-40{max-height:calc(var(--spacing) * 40)}.min-h-0{min-height:calc(var(--spacing) * 0)}.w-3{width:calc(var(--spacing) * 3)}.w-3\.5{width:calc(var(--spacing) * 3.5)}.w-5{width:calc(var(--spacing) * 5)}.w-6{width:calc(var(--spacing) * 6)}.w-\[18px\]{width:18px}.w-\[min\(480px\,calc\(100vw-1\.5rem\)\)\]{width:min(480px,100vw - 1.5rem)}.w-full{width:100%}.max-w-\[92\%\]{max-width:92%}.max-w-\[96\%\]{max-width:96%}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.min-w-0{min-width:calc(var(--spacing) * 0)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.animate-pulse{animation:var(--animate-pulse)}.resize-none{resize:none}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing) * 1)}.gap-1\.5{gap:calc(var(--spacing) * 1.5)}.gap-2{gap:calc(var(--spacing) * 2)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-\[\#d6ccbb\]{border-color:#d6ccbb}.border-red-300{border-color:var(--color-red-300)}.border-stone-200{border-color:var(--color-stone-200)}.border-stone-300{border-color:var(--color-stone-300)}.border-stone-500{border-color:var(--color-stone-500)}.border-stone-600{border-color:var(--color-stone-600)}.border-stone-700{border-color:var(--color-stone-700)}.bg-\[\#2e2b27\]{background-color:#2e2b27}.bg-\[\#ddd2bf\]{background-color:#ddd2bf}.bg-\[\#ded4c3\]{background-color:#ded4c3}.bg-\[\#e3dbce\]{background-color:#e3dbce}.bg-\[\#e8dfd1\]{background-color:#e8dfd1}.bg-\[\#ece5d9\]{background-color:#ece5d9}.bg-\[\#ece7dd\]{background-color:#ece7dd}.bg-\[\#efe8dc\]{background-color:#efe8dc}.bg-\[\#f2ecdf\]{background-color:#f2ecdf}.bg-\[\#f3eee5\]{background-color:#f3eee5}.bg-\[\#f4efe6\]{background-color:#f4efe6}.bg-\[\#f6f2eb\]{background-color:#f6f2eb}.bg-\[\#f7f2e8\]{background-color:#f7f2e8}.bg-\[\#f8f3e9\]{background-color:#f8f3e9}.bg-stone-600{background-color:var(--color-stone-600)}.bg-stone-700{background-color:var(--color-stone-700)}.bg-stone-800{background-color:var(--color-stone-800)}.object-cover{object-fit:cover}.p-0\.5{padding:calc(var(--spacing) * .5)}.p-2{padding:calc(var(--spacing) * 2)}.p-3{padding:calc(var(--spacing) * 3)}.px-0\.5{padding-inline:calc(var(--spacing) * .5)}.px-1{padding-inline:calc(var(--spacing) * 1)}.px-1\.5{padding-inline:calc(var(--spacing) * 1.5)}.px-2{padding-inline:calc(var(--spacing) * 2)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.py-0{padding-block:calc(var(--spacing) * 0)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-1{padding-block:calc(var(--spacing) * 1)}.py-1\.5{padding-block:calc(var(--spacing) * 1.5)}.py-2{padding-block:calc(var(--spacing) * 2)}.pr-2{padding-right:calc(var(--spacing) * 2)}.pl-8{padding-left:calc(var(--spacing) * 8)}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.leading-3\.5{--tw-leading:calc(var(--spacing) * 3.5);line-height:calc(var(--spacing) * 3.5)}.leading-4{--tw-leading:calc(var(--spacing) * 4);line-height:calc(var(--spacing) * 4)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.text-inherit{color:inherit}.text-red-700{color:var(--color-red-700)}.text-stone-50{color:var(--color-stone-50)}.text-stone-100{color:var(--color-stone-100)}.text-stone-500{color:var(--color-stone-500)}.text-stone-600{color:var(--color-stone-600)}.text-stone-700{color:var(--color-stone-700)}.text-stone-800{color:var(--color-stone-800)}.text-stone-900{color:var(--color-stone-900)}.uppercase{text-transform:uppercase}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a), 0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.placeholder\:text-stone-500::placeholder{color:var(--color-stone-500)}@media (hover:hover){.hover\:bg-\[\#efe8dc\]:hover{background-color:#efe8dc}.hover\:bg-stone-700:hover{background-color:var(--color-stone-700)}.hover\:bg-stone-800:hover{background-color:var(--color-stone-800)}.hover\:text-stone-800:hover{color:var(--color-stone-800)}.hover\:text-stone-900:hover{color:var(--color-stone-900)}}.focus\:border-stone-500:focus{border-color:var(--color-stone-500)}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-60:disabled{opacity:.6}.\[\&_code\]\:rounded code{border-radius:.25rem}.\[\&_code\]\:bg-stone-900\/10 code{background-color:#1c19171a}@supports (color:color-mix(in lab, red, red)){.\[\&_code\]\:bg-stone-900\/10 code{background-color:color-mix(in oklab, var(--color-stone-900) 10%, transparent)}}.\[\&_code\]\:px-1 code{padding-inline:calc(var(--spacing) * 1)}.\[\&_ol\]\:list-decimal ol{list-style-type:decimal}.\[\&_ol\]\:pl-4 ol{padding-left:calc(var(--spacing) * 4)}.\[\&_p\]\:mb-1 p{margin-bottom:calc(var(--spacing) * 1)}.\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--spacing) * 0)}.\[\&_ul\]\:list-disc ul{list-style-type:disc}.\[\&_ul\]\:pl-4 ul{padding-left:calc(var(--spacing) * 4)}}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@keyframes pulse{50%{opacity:.5}}
|