fastlifeweb 0.24.0__py3-none-any.whl → 0.25.1__py3-none-any.whl

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 (38) hide show
  1. CHANGELOG.md +11 -0
  2. fastlife/adapters/jinjax/widget_factory/emailstr_builder.py +1 -0
  3. fastlife/adapters/jinjax/widget_factory/secretstr_builder.py +3 -4
  4. fastlife/adapters/jinjax/widgets/mfa_code.py +25 -0
  5. fastlife/adapters/jinjax/widgets/text.py +29 -2
  6. fastlife/assets/dist.css +768 -0
  7. fastlife/assets/source.css +1 -0
  8. fastlife/components/A.jinja +1 -1
  9. fastlife/components/Button.jinja +1 -1
  10. fastlife/components/Checkbox.jinja +1 -1
  11. fastlife/components/Details.jinja +1 -1
  12. fastlife/components/Form.jinja +1 -1
  13. fastlife/components/H1.jinja +1 -1
  14. fastlife/components/H2.jinja +1 -1
  15. fastlife/components/H3.jinja +1 -1
  16. fastlife/components/H4.jinja +1 -1
  17. fastlife/components/H5.jinja +1 -1
  18. fastlife/components/H6.jinja +1 -1
  19. fastlife/components/Input.jinja +23 -4
  20. fastlife/components/Label.jinja +1 -1
  21. fastlife/components/P.jinja +1 -1
  22. fastlife/components/Password.jinja +51 -0
  23. fastlife/components/Radio.jinja +3 -3
  24. fastlife/components/Select.jinja +1 -1
  25. fastlife/components/Summary.jinja +2 -2
  26. fastlife/components/Table.jinja +1 -1
  27. fastlife/components/Td.jinja +1 -1
  28. fastlife/components/Th.jinja +1 -1
  29. fastlife/components/pydantic_form/Error.jinja +9 -3
  30. fastlife/components/pydantic_form/FatalError.jinja +19 -5
  31. fastlife/service/templates.py +1 -0
  32. fastlife/template_globals.py +19 -5
  33. {fastlifeweb-0.24.0.dist-info → fastlifeweb-0.25.1.dist-info}/METADATA +3 -2
  34. {fastlifeweb-0.24.0.dist-info → fastlifeweb-0.25.1.dist-info}/RECORD +37 -34
  35. {fastlifeweb-0.24.0.dist-info → fastlifeweb-0.25.1.dist-info}/licenses/LICENSE +1 -1
  36. tailwind.config.js +0 -57
  37. {fastlifeweb-0.24.0.dist-info → fastlifeweb-0.25.1.dist-info}/WHEEL +0 -0
  38. {fastlifeweb-0.24.0.dist-info → fastlifeweb-0.25.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,768 @@
1
+ /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
2
+ @layer theme, base, components, utilities;
3
+ @layer theme {
4
+ :root, :host {
5
+ --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
6
+ 'Noto Color Emoji';
7
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
8
+ monospace;
9
+ --color-red-50: oklch(0.971 0.013 17.38);
10
+ --color-red-400: oklch(0.704 0.191 22.216);
11
+ --color-red-700: oklch(0.505 0.213 27.518);
12
+ --color-orange-500: oklch(0.705 0.213 47.604);
13
+ --color-neutral-50: oklch(0.985 0 0);
14
+ --color-neutral-100: oklch(0.97 0 0);
15
+ --color-neutral-200: oklch(0.922 0 0);
16
+ --color-neutral-300: oklch(0.87 0 0);
17
+ --color-neutral-400: oklch(0.708 0 0);
18
+ --color-neutral-500: oklch(0.556 0 0);
19
+ --color-neutral-600: oklch(0.439 0 0);
20
+ --color-neutral-700: oklch(0.371 0 0);
21
+ --color-neutral-800: oklch(0.269 0 0);
22
+ --color-neutral-900: oklch(0.205 0 0);
23
+ --color-white: #fff;
24
+ --spacing: 0.25rem;
25
+ --text-sm: 0.875rem;
26
+ --text-sm--line-height: calc(1.25 / 0.875);
27
+ --text-base: 1rem;
28
+ --text-base--line-height: calc(1.5 / 1);
29
+ --text-xl: 1.25rem;
30
+ --text-xl--line-height: calc(1.75 / 1.25);
31
+ --text-2xl: 1.5rem;
32
+ --text-2xl--line-height: calc(2 / 1.5);
33
+ --text-3xl: 1.875rem;
34
+ --text-3xl--line-height: calc(2.25 / 1.875);
35
+ --text-4xl: 2.25rem;
36
+ --text-4xl--line-height: calc(2.5 / 2.25);
37
+ --text-5xl: 3rem;
38
+ --text-5xl--line-height: 1;
39
+ --font-weight-normal: 400;
40
+ --font-weight-medium: 500;
41
+ --font-weight-semibold: 600;
42
+ --font-weight-bold: 700;
43
+ --tracking-tight: -0.025em;
44
+ --leading-tight: 1.25;
45
+ --radius-xs: 0.125rem;
46
+ --radius-sm: 0.25rem;
47
+ --radius-lg: 0.5rem;
48
+ --default-transition-duration: 150ms;
49
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
50
+ --default-font-family: var(--font-sans);
51
+ --default-font-feature-settings: var(--font-sans--font-feature-settings);
52
+ --default-font-variation-settings: var(--font-sans--font-variation-settings);
53
+ --default-mono-font-family: var(--font-mono);
54
+ --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);
55
+ --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);
56
+ }
57
+ }
58
+ @layer base {
59
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
60
+ box-sizing: border-box;
61
+ margin: 0;
62
+ padding: 0;
63
+ border: 0 solid;
64
+ }
65
+ html, :host {
66
+ line-height: 1.5;
67
+ -webkit-text-size-adjust: 100%;
68
+ tab-size: 4;
69
+ 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' );
70
+ font-feature-settings: var(--default-font-feature-settings, normal);
71
+ font-variation-settings: var(--default-font-variation-settings, normal);
72
+ -webkit-tap-highlight-color: transparent;
73
+ }
74
+ body {
75
+ line-height: inherit;
76
+ }
77
+ hr {
78
+ height: 0;
79
+ color: inherit;
80
+ border-top-width: 1px;
81
+ }
82
+ abbr:where([title]) {
83
+ -webkit-text-decoration: underline dotted;
84
+ text-decoration: underline dotted;
85
+ }
86
+ h1, h2, h3, h4, h5, h6 {
87
+ font-size: inherit;
88
+ font-weight: inherit;
89
+ }
90
+ a {
91
+ color: inherit;
92
+ -webkit-text-decoration: inherit;
93
+ text-decoration: inherit;
94
+ }
95
+ b, strong {
96
+ font-weight: bolder;
97
+ }
98
+ code, kbd, samp, pre {
99
+ font-family: var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace );
100
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
101
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
102
+ font-size: 1em;
103
+ }
104
+ small {
105
+ font-size: 80%;
106
+ }
107
+ sub, sup {
108
+ font-size: 75%;
109
+ line-height: 0;
110
+ position: relative;
111
+ vertical-align: baseline;
112
+ }
113
+ sub {
114
+ bottom: -0.25em;
115
+ }
116
+ sup {
117
+ top: -0.5em;
118
+ }
119
+ table {
120
+ text-indent: 0;
121
+ border-color: inherit;
122
+ border-collapse: collapse;
123
+ }
124
+ :-moz-focusring {
125
+ outline: auto;
126
+ }
127
+ progress {
128
+ vertical-align: baseline;
129
+ }
130
+ summary {
131
+ display: list-item;
132
+ }
133
+ ol, ul, menu {
134
+ list-style: none;
135
+ }
136
+ img, svg, video, canvas, audio, iframe, embed, object {
137
+ display: block;
138
+ vertical-align: middle;
139
+ }
140
+ img, video {
141
+ max-width: 100%;
142
+ height: auto;
143
+ }
144
+ button, input, select, optgroup, textarea, ::file-selector-button {
145
+ font: inherit;
146
+ font-feature-settings: inherit;
147
+ font-variation-settings: inherit;
148
+ letter-spacing: inherit;
149
+ color: inherit;
150
+ border-radius: 0;
151
+ background-color: transparent;
152
+ opacity: 1;
153
+ }
154
+ :where(select:is([multiple], [size])) optgroup {
155
+ font-weight: bolder;
156
+ }
157
+ :where(select:is([multiple], [size])) optgroup option {
158
+ padding-inline-start: 20px;
159
+ }
160
+ ::file-selector-button {
161
+ margin-inline-end: 4px;
162
+ }
163
+ ::placeholder {
164
+ opacity: 1;
165
+ color: color-mix(in oklab, currentColor 50%, transparent);
166
+ }
167
+ textarea {
168
+ resize: vertical;
169
+ }
170
+ ::-webkit-search-decoration {
171
+ -webkit-appearance: none;
172
+ }
173
+ ::-webkit-date-and-time-value {
174
+ min-height: 1lh;
175
+ text-align: inherit;
176
+ }
177
+ ::-webkit-datetime-edit {
178
+ display: inline-flex;
179
+ }
180
+ ::-webkit-datetime-edit-fields-wrapper {
181
+ padding: 0;
182
+ }
183
+ ::-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 {
184
+ padding-block: 0;
185
+ }
186
+ :-moz-ui-invalid {
187
+ box-shadow: none;
188
+ }
189
+ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
190
+ appearance: button;
191
+ }
192
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
193
+ height: auto;
194
+ }
195
+ [hidden]:where(:not([hidden='until-found'])) {
196
+ display: none !important;
197
+ }
198
+ }
199
+ @layer utilities {
200
+ .collapse {
201
+ visibility: collapse;
202
+ }
203
+ .visible {
204
+ visibility: visible;
205
+ }
206
+ .absolute {
207
+ position: absolute;
208
+ }
209
+ .fixed {
210
+ position: fixed;
211
+ }
212
+ .relative {
213
+ position: relative;
214
+ }
215
+ .static {
216
+ position: static;
217
+ }
218
+ .container {
219
+ width: 100%;
220
+ @media (width >= 40rem) {
221
+ max-width: 40rem;
222
+ }
223
+ @media (width >= 48rem) {
224
+ max-width: 48rem;
225
+ }
226
+ @media (width >= 64rem) {
227
+ max-width: 64rem;
228
+ }
229
+ @media (width >= 80rem) {
230
+ max-width: 80rem;
231
+ }
232
+ @media (width >= 96rem) {
233
+ max-width: 96rem;
234
+ }
235
+ }
236
+ .m-3 {
237
+ margin: calc(var(--spacing) * 3);
238
+ }
239
+ .m-4 {
240
+ margin: calc(var(--spacing) * 4);
241
+ }
242
+ .ms-2 {
243
+ margin-inline-start: calc(var(--spacing) * 2);
244
+ }
245
+ .mt-2 {
246
+ margin-top: calc(var(--spacing) * 2);
247
+ }
248
+ .mb-2 {
249
+ margin-bottom: calc(var(--spacing) * 2);
250
+ }
251
+ .mb-4 {
252
+ margin-bottom: calc(var(--spacing) * 4);
253
+ }
254
+ .block {
255
+ display: block;
256
+ }
257
+ .flex {
258
+ display: flex;
259
+ }
260
+ .hidden {
261
+ display: none;
262
+ }
263
+ .inline {
264
+ display: inline;
265
+ }
266
+ .table {
267
+ display: table;
268
+ }
269
+ .h-4 {
270
+ height: calc(var(--spacing) * 4);
271
+ }
272
+ .h-6 {
273
+ height: calc(var(--spacing) * 6);
274
+ }
275
+ .h-8 {
276
+ height: calc(var(--spacing) * 8);
277
+ }
278
+ .h-16 {
279
+ height: calc(var(--spacing) * 16);
280
+ }
281
+ .w-4 {
282
+ width: calc(var(--spacing) * 4);
283
+ }
284
+ .w-6 {
285
+ width: calc(var(--spacing) * 6);
286
+ }
287
+ .w-8 {
288
+ width: calc(var(--spacing) * 8);
289
+ }
290
+ .w-16 {
291
+ width: calc(var(--spacing) * 16);
292
+ }
293
+ .w-full {
294
+ width: 100%;
295
+ }
296
+ .table-auto {
297
+ table-layout: auto;
298
+ }
299
+ .border-collapse {
300
+ border-collapse: collapse;
301
+ }
302
+ .rotate-90 {
303
+ rotate: 90deg;
304
+ }
305
+ .transform {
306
+ transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
307
+ }
308
+ .cursor-pointer {
309
+ cursor: pointer;
310
+ }
311
+ .items-center {
312
+ align-items: center;
313
+ }
314
+ .space-y-4 {
315
+ :where(& > :not(:last-child)) {
316
+ --tw-space-y-reverse: 0;
317
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
318
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
319
+ }
320
+ }
321
+ .rounded-lg {
322
+ border-radius: var(--radius-lg);
323
+ }
324
+ .rounded-sm {
325
+ border-radius: var(--radius-sm);
326
+ }
327
+ .rounded-xs {
328
+ border-radius: var(--radius-xs);
329
+ }
330
+ .border {
331
+ border-style: var(--tw-border-style);
332
+ border-width: 1px;
333
+ }
334
+ .border-b {
335
+ border-bottom-style: var(--tw-border-style);
336
+ border-bottom-width: 1px;
337
+ }
338
+ .border-neutral-100 {
339
+ border-color: var(--color-neutral-100);
340
+ }
341
+ .border-neutral-300 {
342
+ border-color: var(--color-neutral-300);
343
+ }
344
+ .border-red-400 {
345
+ border-color: var(--color-red-400);
346
+ }
347
+ .bg-neutral-50 {
348
+ background-color: var(--color-neutral-50);
349
+ }
350
+ .bg-neutral-100 {
351
+ background-color: var(--color-neutral-100);
352
+ }
353
+ .bg-neutral-300 {
354
+ background-color: var(--color-neutral-300);
355
+ }
356
+ .bg-red-50 {
357
+ background-color: var(--color-red-50);
358
+ }
359
+ .bg-white {
360
+ background-color: var(--color-white);
361
+ }
362
+ .fill-orange-500 {
363
+ fill: var(--color-orange-500);
364
+ }
365
+ .p-1 {
366
+ padding: calc(var(--spacing) * 1);
367
+ }
368
+ .p-2\.5 {
369
+ padding: calc(var(--spacing) * 2.5);
370
+ }
371
+ .p-4 {
372
+ padding: calc(var(--spacing) * 4);
373
+ }
374
+ .px-4 {
375
+ padding-inline: calc(var(--spacing) * 4);
376
+ }
377
+ .px-5 {
378
+ padding-inline: calc(var(--spacing) * 5);
379
+ }
380
+ .py-2 {
381
+ padding-block: calc(var(--spacing) * 2);
382
+ }
383
+ .py-2\.5 {
384
+ padding-block: calc(var(--spacing) * 2.5);
385
+ }
386
+ .pt-4 {
387
+ padding-top: calc(var(--spacing) * 4);
388
+ }
389
+ .pb-4 {
390
+ padding-bottom: calc(var(--spacing) * 4);
391
+ }
392
+ .text-center {
393
+ text-align: center;
394
+ }
395
+ .text-left {
396
+ text-align: left;
397
+ }
398
+ .font-sans {
399
+ font-family: var(--font-sans);
400
+ }
401
+ .text-2xl {
402
+ font-size: var(--text-2xl);
403
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
404
+ }
405
+ .text-3xl {
406
+ font-size: var(--text-3xl);
407
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
408
+ }
409
+ .text-4xl {
410
+ font-size: var(--text-4xl);
411
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
412
+ }
413
+ .text-5xl {
414
+ font-size: var(--text-5xl);
415
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
416
+ }
417
+ .text-base {
418
+ font-size: var(--text-base);
419
+ line-height: var(--tw-leading, var(--text-base--line-height));
420
+ }
421
+ .text-sm {
422
+ font-size: var(--text-sm);
423
+ line-height: var(--tw-leading, var(--text-sm--line-height));
424
+ }
425
+ .text-xl {
426
+ font-size: var(--text-xl);
427
+ line-height: var(--tw-leading, var(--text-xl--line-height));
428
+ }
429
+ .leading-tight {
430
+ --tw-leading: var(--leading-tight);
431
+ line-height: var(--leading-tight);
432
+ }
433
+ .font-bold {
434
+ --tw-font-weight: var(--font-weight-bold);
435
+ font-weight: var(--font-weight-bold);
436
+ }
437
+ .font-medium {
438
+ --tw-font-weight: var(--font-weight-medium);
439
+ font-weight: var(--font-weight-medium);
440
+ }
441
+ .font-normal {
442
+ --tw-font-weight: var(--font-weight-normal);
443
+ font-weight: var(--font-weight-normal);
444
+ }
445
+ .font-semibold {
446
+ --tw-font-weight: var(--font-weight-semibold);
447
+ font-weight: var(--font-weight-semibold);
448
+ }
449
+ .tracking-tight {
450
+ --tw-tracking: var(--tracking-tight);
451
+ letter-spacing: var(--tracking-tight);
452
+ }
453
+ .text-neutral-500 {
454
+ color: var(--color-neutral-500);
455
+ }
456
+ .text-neutral-900 {
457
+ color: var(--color-neutral-900);
458
+ }
459
+ .text-red-700 {
460
+ color: var(--color-red-700);
461
+ }
462
+ .text-white {
463
+ color: var(--color-white);
464
+ }
465
+ .outline {
466
+ outline-style: var(--tw-outline-style);
467
+ outline-width: 1px;
468
+ }
469
+ .filter {
470
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
471
+ }
472
+ .transition-transform {
473
+ transition-property: transform, translate, scale, rotate;
474
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
475
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
476
+ }
477
+ .duration-300 {
478
+ --tw-duration: 300ms;
479
+ transition-duration: 300ms;
480
+ }
481
+ .hover\:bg-neutral-200 {
482
+ &:hover {
483
+ @media (hover: hover) {
484
+ background-color: var(--color-neutral-200);
485
+ }
486
+ }
487
+ }
488
+ .hover\:underline {
489
+ &:hover {
490
+ @media (hover: hover) {
491
+ text-decoration-line: underline;
492
+ }
493
+ }
494
+ }
495
+ .focus\:ring-2 {
496
+ &:focus {
497
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
498
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
499
+ }
500
+ }
501
+ .focus\:ring-4 {
502
+ &:focus {
503
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
504
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
505
+ }
506
+ }
507
+ .focus\:outline-hidden {
508
+ &:focus {
509
+ outline-style: none;
510
+ @media (forced-colors: active) {
511
+ outline: 2px solid transparent;
512
+ outline-offset: 2px;
513
+ }
514
+ }
515
+ }
516
+ .sm\:inline {
517
+ @media (width >= 40rem) {
518
+ display: inline;
519
+ }
520
+ }
521
+ .md\:space-y-6 {
522
+ @media (width >= 48rem) {
523
+ :where(& > :not(:last-child)) {
524
+ --tw-space-y-reverse: 0;
525
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
526
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
527
+ }
528
+ }
529
+ }
530
+ .md\:text-2xl {
531
+ @media (width >= 48rem) {
532
+ font-size: var(--text-2xl);
533
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
534
+ }
535
+ }
536
+ .md\:text-3xl {
537
+ @media (width >= 48rem) {
538
+ font-size: var(--text-3xl);
539
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
540
+ }
541
+ }
542
+ .md\:text-4xl {
543
+ @media (width >= 48rem) {
544
+ font-size: var(--text-4xl);
545
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
546
+ }
547
+ }
548
+ .md\:text-xl {
549
+ @media (width >= 48rem) {
550
+ font-size: var(--text-xl);
551
+ line-height: var(--tw-leading, var(--text-xl--line-height));
552
+ }
553
+ }
554
+ .dark\:border-neutral-500 {
555
+ @media (prefers-color-scheme: dark) {
556
+ border-color: var(--color-neutral-500);
557
+ }
558
+ }
559
+ .dark\:border-neutral-600 {
560
+ @media (prefers-color-scheme: dark) {
561
+ border-color: var(--color-neutral-600);
562
+ }
563
+ }
564
+ .dark\:bg-neutral-400 {
565
+ @media (prefers-color-scheme: dark) {
566
+ background-color: var(--color-neutral-400);
567
+ }
568
+ }
569
+ .dark\:bg-neutral-700 {
570
+ @media (prefers-color-scheme: dark) {
571
+ background-color: var(--color-neutral-700);
572
+ }
573
+ }
574
+ .dark\:text-neutral-300 {
575
+ @media (prefers-color-scheme: dark) {
576
+ color: var(--color-neutral-300);
577
+ }
578
+ }
579
+ .dark\:text-neutral-400 {
580
+ @media (prefers-color-scheme: dark) {
581
+ color: var(--color-neutral-400);
582
+ }
583
+ }
584
+ .dark\:text-white {
585
+ @media (prefers-color-scheme: dark) {
586
+ color: var(--color-white);
587
+ }
588
+ }
589
+ .dark\:placeholder-neutral-400 {
590
+ @media (prefers-color-scheme: dark) {
591
+ &::placeholder {
592
+ color: var(--color-neutral-400);
593
+ }
594
+ }
595
+ }
596
+ .dark\:ring-offset-neutral-800 {
597
+ @media (prefers-color-scheme: dark) {
598
+ --tw-ring-offset-color: var(--color-neutral-800);
599
+ }
600
+ }
601
+ .dark\:hover\:bg-neutral-300 {
602
+ @media (prefers-color-scheme: dark) {
603
+ &:hover {
604
+ @media (hover: hover) {
605
+ background-color: var(--color-neutral-300);
606
+ }
607
+ }
608
+ }
609
+ }
610
+ .dark\:focus\:ring-neutral-100 {
611
+ @media (prefers-color-scheme: dark) {
612
+ &:focus {
613
+ --tw-ring-color: var(--color-neutral-100);
614
+ }
615
+ }
616
+ }
617
+ }
618
+ @property --tw-rotate-x {
619
+ syntax: "*";
620
+ inherits: false;
621
+ initial-value: rotateX(0);
622
+ }
623
+ @property --tw-rotate-y {
624
+ syntax: "*";
625
+ inherits: false;
626
+ initial-value: rotateY(0);
627
+ }
628
+ @property --tw-rotate-z {
629
+ syntax: "*";
630
+ inherits: false;
631
+ initial-value: rotateZ(0);
632
+ }
633
+ @property --tw-skew-x {
634
+ syntax: "*";
635
+ inherits: false;
636
+ initial-value: skewX(0);
637
+ }
638
+ @property --tw-skew-y {
639
+ syntax: "*";
640
+ inherits: false;
641
+ initial-value: skewY(0);
642
+ }
643
+ @property --tw-space-y-reverse {
644
+ syntax: "*";
645
+ inherits: false;
646
+ initial-value: 0;
647
+ }
648
+ @property --tw-border-style {
649
+ syntax: "*";
650
+ inherits: false;
651
+ initial-value: solid;
652
+ }
653
+ @property --tw-leading {
654
+ syntax: "*";
655
+ inherits: false;
656
+ }
657
+ @property --tw-font-weight {
658
+ syntax: "*";
659
+ inherits: false;
660
+ }
661
+ @property --tw-tracking {
662
+ syntax: "*";
663
+ inherits: false;
664
+ }
665
+ @property --tw-outline-style {
666
+ syntax: "*";
667
+ inherits: false;
668
+ initial-value: solid;
669
+ }
670
+ @property --tw-blur {
671
+ syntax: "*";
672
+ inherits: false;
673
+ }
674
+ @property --tw-brightness {
675
+ syntax: "*";
676
+ inherits: false;
677
+ }
678
+ @property --tw-contrast {
679
+ syntax: "*";
680
+ inherits: false;
681
+ }
682
+ @property --tw-grayscale {
683
+ syntax: "*";
684
+ inherits: false;
685
+ }
686
+ @property --tw-hue-rotate {
687
+ syntax: "*";
688
+ inherits: false;
689
+ }
690
+ @property --tw-invert {
691
+ syntax: "*";
692
+ inherits: false;
693
+ }
694
+ @property --tw-opacity {
695
+ syntax: "*";
696
+ inherits: false;
697
+ }
698
+ @property --tw-saturate {
699
+ syntax: "*";
700
+ inherits: false;
701
+ }
702
+ @property --tw-sepia {
703
+ syntax: "*";
704
+ inherits: false;
705
+ }
706
+ @property --tw-drop-shadow {
707
+ syntax: "*";
708
+ inherits: false;
709
+ }
710
+ @property --tw-duration {
711
+ syntax: "*";
712
+ inherits: false;
713
+ }
714
+ @property --tw-shadow {
715
+ syntax: "*";
716
+ inherits: false;
717
+ initial-value: 0 0 #0000;
718
+ }
719
+ @property --tw-shadow-color {
720
+ syntax: "*";
721
+ inherits: false;
722
+ }
723
+ @property --tw-inset-shadow {
724
+ syntax: "*";
725
+ inherits: false;
726
+ initial-value: 0 0 #0000;
727
+ }
728
+ @property --tw-inset-shadow-color {
729
+ syntax: "*";
730
+ inherits: false;
731
+ }
732
+ @property --tw-ring-color {
733
+ syntax: "*";
734
+ inherits: false;
735
+ }
736
+ @property --tw-ring-shadow {
737
+ syntax: "*";
738
+ inherits: false;
739
+ initial-value: 0 0 #0000;
740
+ }
741
+ @property --tw-inset-ring-color {
742
+ syntax: "*";
743
+ inherits: false;
744
+ }
745
+ @property --tw-inset-ring-shadow {
746
+ syntax: "*";
747
+ inherits: false;
748
+ initial-value: 0 0 #0000;
749
+ }
750
+ @property --tw-ring-inset {
751
+ syntax: "*";
752
+ inherits: false;
753
+ }
754
+ @property --tw-ring-offset-width {
755
+ syntax: "<length>";
756
+ inherits: false;
757
+ initial-value: 0px;
758
+ }
759
+ @property --tw-ring-offset-color {
760
+ syntax: "*";
761
+ inherits: false;
762
+ initial-value: #fff;
763
+ }
764
+ @property --tw-ring-offset-shadow {
765
+ syntax: "*";
766
+ inherits: false;
767
+ initial-value: 0 0 #0000;
768
+ }