@vaadin/react-components 25.0.0-alpha7 → 25.0.0-beta1

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 (71) hide show
  1. package/ConfirmDialog.d.ts +1 -1
  2. package/ConfirmDialog.d.ts.map +1 -1
  3. package/ConfirmDialog.js.map +1 -1
  4. package/ContextMenu.js +1 -1
  5. package/ContextMenu.js.map +2 -2
  6. package/Dialog.d.ts +2 -2
  7. package/Dialog.d.ts.map +1 -1
  8. package/Dialog.js +1 -1
  9. package/Dialog.js.map +1 -1
  10. package/LoginOverlay.js +1 -1
  11. package/LoginOverlay.js.map +2 -2
  12. package/MultiSelectComboBox.js +1 -1
  13. package/MultiSelectComboBox.js.map +2 -2
  14. package/Popover.d.ts +8 -2
  15. package/Popover.d.ts.map +1 -1
  16. package/Popover.js +1 -1
  17. package/Popover.js.map +3 -3
  18. package/Select.js.map +2 -2
  19. package/TabSheet.d.ts +0 -23
  20. package/TabSheet.d.ts.map +1 -1
  21. package/TabSheet.js +1 -1
  22. package/TabSheet.js.map +3 -3
  23. package/Tooltip.js +1 -1
  24. package/Tooltip.js.map +2 -2
  25. package/css/lumo/Utility.module.css +16 -47
  26. package/css/lumo/utilities/Accessibility.module.css +17 -15
  27. package/css/lumo/utilities/Background.module.css +189 -150
  28. package/css/lumo/utilities/Border.module.css +173 -141
  29. package/css/lumo/utilities/Filter.module.css +35 -26
  30. package/css/lumo/utilities/FlexboxGrid.module.css +780 -2
  31. package/css/lumo/utilities/Layout.module.css +544 -413
  32. package/css/lumo/utilities/Shadows.module.css +27 -20
  33. package/css/lumo/utilities/Sizing.module.css +142 -115
  34. package/css/lumo/utilities/Spacing.module.css +682 -536
  35. package/css/lumo/utilities/Transition.module.css +46 -44
  36. package/css/lumo/utilities/Typography.module.css +366 -280
  37. package/generated/ContextMenu.d.ts +2 -0
  38. package/generated/ContextMenu.d.ts.map +1 -1
  39. package/generated/LoginOverlay.d.ts +2 -0
  40. package/generated/LoginOverlay.d.ts.map +1 -1
  41. package/generated/MultiSelectComboBox.d.ts +2 -2
  42. package/generated/MultiSelectComboBox.d.ts.map +1 -1
  43. package/generated/Tooltip.d.ts +8 -3
  44. package/generated/Tooltip.d.ts.map +1 -1
  45. package/package.json +69 -77
  46. package/renderers/useRenderer.js +1 -1
  47. package/renderers/useRenderer.js.map +2 -2
  48. package/utils/createComponent.js +1 -1
  49. package/utils/createComponent.js.map +2 -2
  50. package/utils/warnings.d.ts +2 -0
  51. package/utils/warnings.d.ts.map +1 -0
  52. package/utils/warnings.js +2 -0
  53. package/utils/warnings.js.map +7 -0
  54. package/css/Lumo.css +0 -15
  55. package/css/lumo/Badge.css +0 -165
  56. package/css/lumo/Color.css +0 -122
  57. package/css/lumo/ColorBase.css +0 -87
  58. package/css/lumo/Font.css +0 -22
  59. package/css/lumo/FontIcons.css +0 -59
  60. package/css/lumo/Globals.css +0 -85
  61. package/css/lumo/Sizing.css +0 -17
  62. package/css/lumo/Spacing.css +0 -25
  63. package/css/lumo/Style.css +0 -21
  64. package/css/lumo/Typography.css +0 -96
  65. package/css/lumo/UserColors.css +0 -22
  66. package/css/lumo/mixins/FieldButton.css +0 -29
  67. package/css/lumo/mixins/MenuOverlay.css +0 -64
  68. package/css/lumo/mixins/MenuOverlayCore.css +0 -32
  69. package/css/lumo/mixins/Overlay.css +0 -67
  70. package/css/lumo/mixins/RequiredField.css +0 -103
  71. package/css/lumo/utilities/FlexboxAndGrid.module.css +0 -613
@@ -1,3 +1,781 @@
1
- /* Generated file, do not edit */
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ /* === Align content === */
7
+ .content-center {
8
+ align-content: center;
9
+ }
2
10
 
3
- @import url(./FlexboxAndGrid.module.css);
11
+ .content-end {
12
+ align-content: flex-end;
13
+ }
14
+
15
+ .content-start {
16
+ align-content: flex-start;
17
+ }
18
+
19
+ .content-around {
20
+ align-content: space-around;
21
+ }
22
+
23
+ .content-between {
24
+ align-content: space-between;
25
+ }
26
+
27
+ .content-evenly {
28
+ align-content: space-evenly;
29
+ }
30
+
31
+ .content-stretch {
32
+ align-content: stretch;
33
+ }
34
+
35
+ /* === Align items === */
36
+ .items-baseline {
37
+ align-items: baseline;
38
+ }
39
+
40
+ .items-center {
41
+ align-items: center;
42
+ }
43
+
44
+ .items-end {
45
+ align-items: flex-end;
46
+ }
47
+
48
+ .items-start {
49
+ align-items: flex-start;
50
+ }
51
+
52
+ .items-stretch {
53
+ align-items: stretch;
54
+ }
55
+
56
+ /* === Align self === */
57
+ .self-auto {
58
+ align-self: auto;
59
+ }
60
+
61
+ .self-baseline {
62
+ align-self: baseline;
63
+ }
64
+
65
+ .self-center {
66
+ align-self: center;
67
+ }
68
+
69
+ .self-end {
70
+ align-self: flex-end;
71
+ }
72
+
73
+ .self-start {
74
+ align-self: flex-start;
75
+ }
76
+
77
+ .self-stretch {
78
+ align-self: stretch;
79
+ }
80
+
81
+ /* === Flex === */
82
+ .flex-1 {
83
+ flex: 1 1 0%;
84
+ }
85
+
86
+ .flex-auto {
87
+ flex: 1 1 auto;
88
+ }
89
+
90
+ .flex-none {
91
+ flex: none;
92
+ }
93
+
94
+ /* === Flex direction === */
95
+ .flex-col {
96
+ flex-direction: column;
97
+ }
98
+
99
+ .flex-col-reverse {
100
+ flex-direction: column-reverse;
101
+ }
102
+
103
+ .flex-row {
104
+ flex-direction: row;
105
+ }
106
+
107
+ .flex-row-reverse {
108
+ flex-direction: row-reverse;
109
+ }
110
+
111
+ /* === Flex grow === */
112
+ .flex-grow {
113
+ flex-grow: 1;
114
+ }
115
+
116
+ .flex-grow-0 {
117
+ flex-grow: 0;
118
+ }
119
+
120
+ /* === Flex shrink === */
121
+ .flex-shrink {
122
+ flex-shrink: 1;
123
+ }
124
+
125
+ .flex-shrink-0 {
126
+ flex-shrink: 0;
127
+ }
128
+
129
+ /* === Flex wrap === */
130
+ .flex-nowrap {
131
+ flex-wrap: nowrap;
132
+ }
133
+
134
+ .flex-wrap {
135
+ flex-wrap: wrap;
136
+ }
137
+
138
+ .flex-wrap-reverse {
139
+ flex-wrap: wrap-reverse;
140
+ }
141
+
142
+ /* === Gap === */
143
+ .gap-xs {
144
+ gap: var(--lumo-space-xs);
145
+ }
146
+
147
+ .gap-s {
148
+ gap: var(--lumo-space-s);
149
+ }
150
+
151
+ .gap-m {
152
+ gap: var(--lumo-space-m);
153
+ }
154
+
155
+ .gap-l {
156
+ gap: var(--lumo-space-l);
157
+ }
158
+
159
+ .gap-xl {
160
+ gap: var(--lumo-space-xl);
161
+ }
162
+
163
+ /* === Gap (column) === */
164
+ .gap-x-xs {
165
+ column-gap: var(--lumo-space-xs);
166
+ }
167
+
168
+ .gap-x-s {
169
+ column-gap: var(--lumo-space-s);
170
+ }
171
+
172
+ .gap-x-m {
173
+ column-gap: var(--lumo-space-m);
174
+ }
175
+
176
+ .gap-x-l {
177
+ column-gap: var(--lumo-space-l);
178
+ }
179
+
180
+ .gap-x-xl {
181
+ column-gap: var(--lumo-space-xl);
182
+ }
183
+
184
+ /* === Gap (row) === */
185
+ .gap-y-xs {
186
+ row-gap: var(--lumo-space-xs);
187
+ }
188
+
189
+ .gap-y-s {
190
+ row-gap: var(--lumo-space-s);
191
+ }
192
+
193
+ .gap-y-m {
194
+ row-gap: var(--lumo-space-m);
195
+ }
196
+
197
+ .gap-y-l {
198
+ row-gap: var(--lumo-space-l);
199
+ }
200
+
201
+ .gap-y-xl {
202
+ row-gap: var(--lumo-space-xl);
203
+ }
204
+
205
+ /* === Grid auto flow === */
206
+ .grid-flow-col {
207
+ grid-auto-flow: column;
208
+ }
209
+
210
+ .grid-flow-row {
211
+ grid-auto-flow: row;
212
+ }
213
+
214
+ /* === Grid columns === */
215
+ .grid-cols-1 {
216
+ grid-template-columns: repeat(1, minmax(0, 1fr));
217
+ }
218
+
219
+ .grid-cols-2 {
220
+ grid-template-columns: repeat(2, minmax(0, 1fr));
221
+ }
222
+
223
+ .grid-cols-3 {
224
+ grid-template-columns: repeat(3, minmax(0, 1fr));
225
+ }
226
+
227
+ .grid-cols-4 {
228
+ grid-template-columns: repeat(4, minmax(0, 1fr));
229
+ }
230
+
231
+ .grid-cols-5 {
232
+ grid-template-columns: repeat(5, minmax(0, 1fr));
233
+ }
234
+
235
+ .grid-cols-6 {
236
+ grid-template-columns: repeat(6, minmax(0, 1fr));
237
+ }
238
+
239
+ .grid-cols-7 {
240
+ grid-template-columns: repeat(7, minmax(0, 1fr));
241
+ }
242
+
243
+ .grid-cols-8 {
244
+ grid-template-columns: repeat(8, minmax(0, 1fr));
245
+ }
246
+
247
+ .grid-cols-9 {
248
+ grid-template-columns: repeat(9, minmax(0, 1fr));
249
+ }
250
+
251
+ .grid-cols-10 {
252
+ grid-template-columns: repeat(10, minmax(0, 1fr));
253
+ }
254
+
255
+ .grid-cols-11 {
256
+ grid-template-columns: repeat(11, minmax(0, 1fr));
257
+ }
258
+
259
+ .grid-cols-12 {
260
+ grid-template-columns: repeat(12, minmax(0, 1fr));
261
+ }
262
+
263
+ /* === Grid rows === */
264
+ .grid-rows-1 {
265
+ grid-template-rows: repeat(1, minmax(0, 1fr));
266
+ }
267
+
268
+ .grid-rows-2 {
269
+ grid-template-rows: repeat(2, minmax(0, 1fr));
270
+ }
271
+
272
+ .grid-rows-3 {
273
+ grid-template-rows: repeat(3, minmax(0, 1fr));
274
+ }
275
+
276
+ .grid-rows-4 {
277
+ grid-template-rows: repeat(4, minmax(0, 1fr));
278
+ }
279
+
280
+ .grid-rows-5 {
281
+ grid-template-rows: repeat(5, minmax(0, 1fr));
282
+ }
283
+
284
+ .grid-rows-6 {
285
+ grid-template-rows: repeat(6, minmax(0, 1fr));
286
+ }
287
+
288
+ /* === Justify content === */
289
+ .justify-center {
290
+ justify-content: center;
291
+ }
292
+
293
+ .justify-end {
294
+ justify-content: flex-end;
295
+ }
296
+
297
+ .justify-start {
298
+ justify-content: flex-start;
299
+ }
300
+
301
+ .justify-around {
302
+ justify-content: space-around;
303
+ }
304
+
305
+ .justify-between {
306
+ justify-content: space-between;
307
+ }
308
+
309
+ .justify-evenly {
310
+ justify-content: space-evenly;
311
+ }
312
+
313
+ /* === Span (column) === */
314
+ .col-span-1 {
315
+ grid-column: span 1 / span 1;
316
+ }
317
+
318
+ .col-span-2 {
319
+ grid-column: span 2 / span 2;
320
+ }
321
+
322
+ .col-span-3 {
323
+ grid-column: span 3 / span 3;
324
+ }
325
+
326
+ .col-span-4 {
327
+ grid-column: span 4 / span 4;
328
+ }
329
+
330
+ .col-span-5 {
331
+ grid-column: span 5 / span 5;
332
+ }
333
+
334
+ .col-span-6 {
335
+ grid-column: span 6 / span 6;
336
+ }
337
+
338
+ .col-span-7 {
339
+ grid-column: span 7 / span 7;
340
+ }
341
+
342
+ .col-span-8 {
343
+ grid-column: span 8 / span 8;
344
+ }
345
+
346
+ .col-span-9 {
347
+ grid-column: span 9 / span 9;
348
+ }
349
+
350
+ .col-span-10 {
351
+ grid-column: span 10 / span 10;
352
+ }
353
+
354
+ .col-span-11 {
355
+ grid-column: span 11 / span 11;
356
+ }
357
+
358
+ .col-span-12 {
359
+ grid-column: span 12 / span 12;
360
+ }
361
+
362
+ .col-span-full {
363
+ grid-column: 1 / -1;
364
+ }
365
+
366
+ /* === Span (row) === */
367
+ .row-span-1 {
368
+ grid-row: span 1 / span 1;
369
+ }
370
+
371
+ .row-span-2 {
372
+ grid-row: span 2 / span 2;
373
+ }
374
+
375
+ .row-span-3 {
376
+ grid-row: span 3 / span 3;
377
+ }
378
+
379
+ .row-span-4 {
380
+ grid-row: span 4 / span 4;
381
+ }
382
+
383
+ .row-span-5 {
384
+ grid-row: span 5 / span 5;
385
+ }
386
+
387
+ .row-span-6 {
388
+ grid-row: span 6 / span 6;
389
+ }
390
+
391
+ .row-span-full {
392
+ grid-row: 1 / -1;
393
+ }
394
+
395
+ /* === Responsive design === */
396
+ @media (min-width: 640px) {
397
+ .sm\:items-baseline {
398
+ align-items: baseline;
399
+ }
400
+
401
+ .sm\:items-center {
402
+ align-items: center;
403
+ }
404
+
405
+ .sm\:items-end {
406
+ align-items: flex-end;
407
+ }
408
+
409
+ .sm\:items-start {
410
+ align-items: flex-start;
411
+ }
412
+
413
+ .sm\:items-stretch {
414
+ align-items: stretch;
415
+ }
416
+
417
+ .sm\:flex-col {
418
+ flex-direction: column;
419
+ }
420
+
421
+ .sm\:flex-row {
422
+ flex-direction: row;
423
+ }
424
+
425
+ .sm\:grid-cols-1 {
426
+ grid-template-columns: repeat(1, minmax(0, 1fr));
427
+ }
428
+
429
+ .sm\:grid-cols-2 {
430
+ grid-template-columns: repeat(2, minmax(0, 1fr));
431
+ }
432
+
433
+ .sm\:grid-cols-3 {
434
+ grid-template-columns: repeat(3, minmax(0, 1fr));
435
+ }
436
+
437
+ .sm\:grid-cols-4 {
438
+ grid-template-columns: repeat(4, minmax(0, 1fr));
439
+ }
440
+
441
+ .sm\:grid-cols-5 {
442
+ grid-template-columns: repeat(5, minmax(0, 1fr));
443
+ }
444
+
445
+ .sm\:grid-cols-6 {
446
+ grid-template-columns: repeat(6, minmax(0, 1fr));
447
+ }
448
+
449
+ .sm\:grid-cols-7 {
450
+ grid-template-columns: repeat(7, minmax(0, 1fr));
451
+ }
452
+
453
+ .sm\:grid-cols-8 {
454
+ grid-template-columns: repeat(8, minmax(0, 1fr));
455
+ }
456
+
457
+ .sm\:grid-cols-9 {
458
+ grid-template-columns: repeat(9, minmax(0, 1fr));
459
+ }
460
+
461
+ .sm\:grid-cols-10 {
462
+ grid-template-columns: repeat(10, minmax(0, 1fr));
463
+ }
464
+
465
+ .sm\:grid-cols-11 {
466
+ grid-template-columns: repeat(11, minmax(0, 1fr));
467
+ }
468
+
469
+ .sm\:grid-cols-12 {
470
+ grid-template-columns: repeat(12, minmax(0, 1fr));
471
+ }
472
+ }
473
+
474
+ @media (min-width: 768px) {
475
+ .md\:items-baseline {
476
+ align-items: baseline;
477
+ }
478
+
479
+ .md\:items-center {
480
+ align-items: center;
481
+ }
482
+
483
+ .md\:items-end {
484
+ align-items: flex-end;
485
+ }
486
+
487
+ .md\:items-start {
488
+ align-items: flex-start;
489
+ }
490
+
491
+ .md\:items-stretch {
492
+ align-items: stretch;
493
+ }
494
+
495
+ .md\:flex-col {
496
+ flex-direction: column;
497
+ }
498
+
499
+ .md\:flex-row {
500
+ flex-direction: row;
501
+ }
502
+
503
+ .md\:grid-cols-1 {
504
+ grid-template-columns: repeat(1, minmax(0, 1fr));
505
+ }
506
+
507
+ .md\:grid-cols-2 {
508
+ grid-template-columns: repeat(2, minmax(0, 1fr));
509
+ }
510
+
511
+ .md\:grid-cols-3 {
512
+ grid-template-columns: repeat(3, minmax(0, 1fr));
513
+ }
514
+
515
+ .md\:grid-cols-4 {
516
+ grid-template-columns: repeat(4, minmax(0, 1fr));
517
+ }
518
+
519
+ .md\:grid-cols-5 {
520
+ grid-template-columns: repeat(5, minmax(0, 1fr));
521
+ }
522
+
523
+ .md\:grid-cols-6 {
524
+ grid-template-columns: repeat(6, minmax(0, 1fr));
525
+ }
526
+
527
+ .md\:grid-cols-7 {
528
+ grid-template-columns: repeat(7, minmax(0, 1fr));
529
+ }
530
+
531
+ .md\:grid-cols-8 {
532
+ grid-template-columns: repeat(8, minmax(0, 1fr));
533
+ }
534
+
535
+ .md\:grid-cols-9 {
536
+ grid-template-columns: repeat(9, minmax(0, 1fr));
537
+ }
538
+
539
+ .md\:grid-cols-10 {
540
+ grid-template-columns: repeat(10, minmax(0, 1fr));
541
+ }
542
+
543
+ .md\:grid-cols-11 {
544
+ grid-template-columns: repeat(11, minmax(0, 1fr));
545
+ }
546
+
547
+ .md\:grid-cols-12 {
548
+ grid-template-columns: repeat(12, minmax(0, 1fr));
549
+ }
550
+ }
551
+ @media (min-width: 1024px) {
552
+ .lg\:items-baseline {
553
+ align-items: baseline;
554
+ }
555
+
556
+ .lg\:items-center {
557
+ align-items: center;
558
+ }
559
+
560
+ .lg\:items-end {
561
+ align-items: flex-end;
562
+ }
563
+
564
+ .lg\:items-start {
565
+ align-items: flex-start;
566
+ }
567
+
568
+ .lg\:items-stretch {
569
+ align-items: stretch;
570
+ }
571
+
572
+ .lg\:flex-col {
573
+ flex-direction: column;
574
+ }
575
+
576
+ .lg\:flex-row {
577
+ flex-direction: row;
578
+ }
579
+
580
+ .lg\:grid-cols-1 {
581
+ grid-template-columns: repeat(1, minmax(0, 1fr));
582
+ }
583
+
584
+ .lg\:grid-cols-2 {
585
+ grid-template-columns: repeat(2, minmax(0, 1fr));
586
+ }
587
+
588
+ .lg\:grid-cols-3 {
589
+ grid-template-columns: repeat(3, minmax(0, 1fr));
590
+ }
591
+
592
+ .lg\:grid-cols-4 {
593
+ grid-template-columns: repeat(4, minmax(0, 1fr));
594
+ }
595
+
596
+ .lg\:grid-cols-5 {
597
+ grid-template-columns: repeat(5, minmax(0, 1fr));
598
+ }
599
+
600
+ .lg\:grid-cols-6 {
601
+ grid-template-columns: repeat(6, minmax(0, 1fr));
602
+ }
603
+
604
+ .lg\:grid-cols-7 {
605
+ grid-template-columns: repeat(7, minmax(0, 1fr));
606
+ }
607
+
608
+ .lg\:grid-cols-8 {
609
+ grid-template-columns: repeat(8, minmax(0, 1fr));
610
+ }
611
+
612
+ .lg\:grid-cols-9 {
613
+ grid-template-columns: repeat(9, minmax(0, 1fr));
614
+ }
615
+
616
+ .lg\:grid-cols-10 {
617
+ grid-template-columns: repeat(10, minmax(0, 1fr));
618
+ }
619
+
620
+ .lg\:grid-cols-11 {
621
+ grid-template-columns: repeat(11, minmax(0, 1fr));
622
+ }
623
+
624
+ .lg\:grid-cols-12 {
625
+ grid-template-columns: repeat(12, minmax(0, 1fr));
626
+ }
627
+ }
628
+ @media (min-width: 1280px) {
629
+ .xl\:items-baseline {
630
+ align-items: baseline;
631
+ }
632
+
633
+ .xl\:items-center {
634
+ align-items: center;
635
+ }
636
+
637
+ .xl\:items-end {
638
+ align-items: flex-end;
639
+ }
640
+
641
+ .xl\:items-start {
642
+ align-items: flex-start;
643
+ }
644
+
645
+ .xl\:items-stretch {
646
+ align-items: stretch;
647
+ }
648
+
649
+ .xl\:flex-col {
650
+ flex-direction: column;
651
+ }
652
+
653
+ .xl\:flex-row {
654
+ flex-direction: row;
655
+ }
656
+
657
+ .xl\:grid-cols-1 {
658
+ grid-template-columns: repeat(1, minmax(0, 1fr));
659
+ }
660
+
661
+ .xl\:grid-cols-2 {
662
+ grid-template-columns: repeat(2, minmax(0, 1fr));
663
+ }
664
+
665
+ .xl\:grid-cols-3 {
666
+ grid-template-columns: repeat(3, minmax(0, 1fr));
667
+ }
668
+
669
+ .xl\:grid-cols-4 {
670
+ grid-template-columns: repeat(4, minmax(0, 1fr));
671
+ }
672
+
673
+ .xl\:grid-cols-5 {
674
+ grid-template-columns: repeat(5, minmax(0, 1fr));
675
+ }
676
+
677
+ .xl\:grid-cols-6 {
678
+ grid-template-columns: repeat(6, minmax(0, 1fr));
679
+ }
680
+
681
+ .xl\:grid-cols-7 {
682
+ grid-template-columns: repeat(7, minmax(0, 1fr));
683
+ }
684
+
685
+ .xl\:grid-cols-8 {
686
+ grid-template-columns: repeat(8, minmax(0, 1fr));
687
+ }
688
+
689
+ .xl\:grid-cols-9 {
690
+ grid-template-columns: repeat(9, minmax(0, 1fr));
691
+ }
692
+
693
+ .xl\:grid-cols-10 {
694
+ grid-template-columns: repeat(10, minmax(0, 1fr));
695
+ }
696
+
697
+ .xl\:grid-cols-11 {
698
+ grid-template-columns: repeat(11, minmax(0, 1fr));
699
+ }
700
+
701
+ .xl\:grid-cols-12 {
702
+ grid-template-columns: repeat(12, minmax(0, 1fr));
703
+ }
704
+ }
705
+ @media (min-width: 1536px) {
706
+ .\32xl\:items-baseline {
707
+ align-items: baseline;
708
+ }
709
+
710
+ .\32xl\:items-center {
711
+ align-items: center;
712
+ }
713
+
714
+ .\32xl\:items-end {
715
+ align-items: flex-end;
716
+ }
717
+
718
+ .\32xl\:items-start {
719
+ align-items: flex-start;
720
+ }
721
+
722
+ .\32xl\:items-stretch {
723
+ align-items: stretch;
724
+ }
725
+
726
+ .\32xl\:flex-col {
727
+ flex-direction: column;
728
+ }
729
+
730
+ .\32xl\:flex-row {
731
+ flex-direction: row;
732
+ }
733
+
734
+ .\32xl\:grid-cols-1 {
735
+ grid-template-columns: repeat(1, minmax(0, 1fr));
736
+ }
737
+
738
+ .\32xl\:grid-cols-2 {
739
+ grid-template-columns: repeat(2, minmax(0, 1fr));
740
+ }
741
+
742
+ .\32xl\:grid-cols-3 {
743
+ grid-template-columns: repeat(3, minmax(0, 1fr));
744
+ }
745
+
746
+ .\32xl\:grid-cols-4 {
747
+ grid-template-columns: repeat(4, minmax(0, 1fr));
748
+ }
749
+
750
+ .\32xl\:grid-cols-5 {
751
+ grid-template-columns: repeat(5, minmax(0, 1fr));
752
+ }
753
+
754
+ .\32xl\:grid-cols-6 {
755
+ grid-template-columns: repeat(6, minmax(0, 1fr));
756
+ }
757
+
758
+ .\32xl\:grid-cols-7 {
759
+ grid-template-columns: repeat(7, minmax(0, 1fr));
760
+ }
761
+
762
+ .\32xl\:grid-cols-8 {
763
+ grid-template-columns: repeat(8, minmax(0, 1fr));
764
+ }
765
+
766
+ .\32xl\:grid-cols-9 {
767
+ grid-template-columns: repeat(9, minmax(0, 1fr));
768
+ }
769
+
770
+ .\32xl\:grid-cols-10 {
771
+ grid-template-columns: repeat(10, minmax(0, 1fr));
772
+ }
773
+
774
+ .\32xl\:grid-cols-11 {
775
+ grid-template-columns: repeat(11, minmax(0, 1fr));
776
+ }
777
+
778
+ .\32xl\:grid-cols-12 {
779
+ grid-template-columns: repeat(12, minmax(0, 1fr));
780
+ }
781
+ }