warqadui 0.0.48 → 0.0.50
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/index.d.mts +54 -1
- package/dist/index.d.ts +54 -1
- package/dist/index.js +443 -40
- package/dist/index.mjs +443 -36
- package/dist/styles.js +73 -0
- package/dist/styles.mjs +73 -0
- package/package.json +1 -1
package/dist/styles.js
CHANGED
|
@@ -583,6 +583,9 @@ select:-webkit-autofill:focus {
|
|
|
583
583
|
.mt-3 {
|
|
584
584
|
margin-top: 0.75rem;
|
|
585
585
|
}
|
|
586
|
+
.mt-4 {
|
|
587
|
+
margin-top: 1rem;
|
|
588
|
+
}
|
|
586
589
|
.mt-6 {
|
|
587
590
|
margin-top: 1.5rem;
|
|
588
591
|
}
|
|
@@ -592,6 +595,12 @@ select:-webkit-autofill:focus {
|
|
|
592
595
|
.mt-px {
|
|
593
596
|
margin-top: 1px;
|
|
594
597
|
}
|
|
598
|
+
.line-clamp-2 {
|
|
599
|
+
overflow: hidden;
|
|
600
|
+
display: -webkit-box;
|
|
601
|
+
-webkit-box-orient: vertical;
|
|
602
|
+
-webkit-line-clamp: 2;
|
|
603
|
+
}
|
|
595
604
|
.block {
|
|
596
605
|
display: block;
|
|
597
606
|
}
|
|
@@ -619,9 +628,15 @@ select:-webkit-autofill:focus {
|
|
|
619
628
|
.hidden {
|
|
620
629
|
display: none;
|
|
621
630
|
}
|
|
631
|
+
.aspect-square {
|
|
632
|
+
aspect-ratio: 1 / 1;
|
|
633
|
+
}
|
|
622
634
|
.h-1 {
|
|
623
635
|
height: 0.25rem;
|
|
624
636
|
}
|
|
637
|
+
.h-1\\.5 {
|
|
638
|
+
height: 0.375rem;
|
|
639
|
+
}
|
|
625
640
|
.h-10 {
|
|
626
641
|
height: 2.5rem;
|
|
627
642
|
}
|
|
@@ -676,6 +691,9 @@ select:-webkit-autofill:focus {
|
|
|
676
691
|
.min-h-\\[400px\\] {
|
|
677
692
|
min-height: 400px;
|
|
678
693
|
}
|
|
694
|
+
.min-h-full {
|
|
695
|
+
min-height: 100%;
|
|
696
|
+
}
|
|
679
697
|
.min-h-screen {
|
|
680
698
|
min-height: 100vh;
|
|
681
699
|
}
|
|
@@ -691,6 +709,9 @@ select:-webkit-autofill:focus {
|
|
|
691
709
|
.w-14 {
|
|
692
710
|
width: 3.5rem;
|
|
693
711
|
}
|
|
712
|
+
.w-16 {
|
|
713
|
+
width: 4rem;
|
|
714
|
+
}
|
|
694
715
|
.w-3 {
|
|
695
716
|
width: 0.75rem;
|
|
696
717
|
}
|
|
@@ -745,6 +766,9 @@ select:-webkit-autofill:focus {
|
|
|
745
766
|
.max-w-2xl {
|
|
746
767
|
max-width: 42rem;
|
|
747
768
|
}
|
|
769
|
+
.max-w-7xl {
|
|
770
|
+
max-width: 80rem;
|
|
771
|
+
}
|
|
748
772
|
.max-w-\\[40px\\] {
|
|
749
773
|
max-width: 40px;
|
|
750
774
|
}
|
|
@@ -769,6 +793,9 @@ select:-webkit-autofill:focus {
|
|
|
769
793
|
.shrink-0 {
|
|
770
794
|
flex-shrink: 0;
|
|
771
795
|
}
|
|
796
|
+
.flex-grow {
|
|
797
|
+
flex-grow: 1;
|
|
798
|
+
}
|
|
772
799
|
.grow {
|
|
773
800
|
flex-grow: 1;
|
|
774
801
|
}
|
|
@@ -1018,6 +1045,12 @@ select:-webkit-autofill:focus {
|
|
|
1018
1045
|
--tw-border-opacity: 1;
|
|
1019
1046
|
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
|
1020
1047
|
}
|
|
1048
|
+
.border-black\\/10 {
|
|
1049
|
+
border-color: rgb(0 0 0 / 0.1);
|
|
1050
|
+
}
|
|
1051
|
+
.border-black\\/80 {
|
|
1052
|
+
border-color: rgb(0 0 0 / 0.8);
|
|
1053
|
+
}
|
|
1021
1054
|
.border-blue-600 {
|
|
1022
1055
|
--tw-border-opacity: 1;
|
|
1023
1056
|
border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
|
|
@@ -1094,6 +1127,10 @@ select:-webkit-autofill:focus {
|
|
|
1094
1127
|
.bg-gray-50\\/50 {
|
|
1095
1128
|
background-color: rgb(249 250 251 / 0.5);
|
|
1096
1129
|
}
|
|
1130
|
+
.bg-green-500 {
|
|
1131
|
+
--tw-bg-opacity: 1;
|
|
1132
|
+
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
1133
|
+
}
|
|
1097
1134
|
.bg-green-500\\/10 {
|
|
1098
1135
|
background-color: rgb(34 197 94 / 0.1);
|
|
1099
1136
|
}
|
|
@@ -1356,6 +1393,10 @@ select:-webkit-autofill:focus {
|
|
|
1356
1393
|
-apple-system,
|
|
1357
1394
|
sans-serif;
|
|
1358
1395
|
}
|
|
1396
|
+
.text-2xl {
|
|
1397
|
+
font-size: 1.5rem;
|
|
1398
|
+
line-height: 2rem;
|
|
1399
|
+
}
|
|
1359
1400
|
.text-3xl {
|
|
1360
1401
|
font-size: 1.875rem;
|
|
1361
1402
|
line-height: 2.25rem;
|
|
@@ -1364,6 +1405,9 @@ select:-webkit-autofill:focus {
|
|
|
1364
1405
|
font-size: 2.25rem;
|
|
1365
1406
|
line-height: 2.5rem;
|
|
1366
1407
|
}
|
|
1408
|
+
.text-\\[10px\\] {
|
|
1409
|
+
font-size: 10px;
|
|
1410
|
+
}
|
|
1367
1411
|
.text-\\[11px\\] {
|
|
1368
1412
|
font-size: 11px;
|
|
1369
1413
|
}
|
|
@@ -1387,6 +1431,9 @@ select:-webkit-autofill:focus {
|
|
|
1387
1431
|
font-size: 0.75rem;
|
|
1388
1432
|
line-height: 1rem;
|
|
1389
1433
|
}
|
|
1434
|
+
.font-black {
|
|
1435
|
+
font-weight: 900;
|
|
1436
|
+
}
|
|
1390
1437
|
.font-bold {
|
|
1391
1438
|
font-weight: 700;
|
|
1392
1439
|
}
|
|
@@ -1415,9 +1462,15 @@ select:-webkit-autofill:focus {
|
|
|
1415
1462
|
.leading-tight {
|
|
1416
1463
|
line-height: 1.25;
|
|
1417
1464
|
}
|
|
1465
|
+
.tracking-\\[0\\.2em\\] {
|
|
1466
|
+
letter-spacing: 0.2em;
|
|
1467
|
+
}
|
|
1418
1468
|
.tracking-tight {
|
|
1419
1469
|
letter-spacing: -0.025em;
|
|
1420
1470
|
}
|
|
1471
|
+
.tracking-tighter {
|
|
1472
|
+
letter-spacing: -0.05em;
|
|
1473
|
+
}
|
|
1421
1474
|
.tracking-wide {
|
|
1422
1475
|
letter-spacing: 0.025em;
|
|
1423
1476
|
}
|
|
@@ -2270,6 +2323,12 @@ select:-webkit-autofill:focus {
|
|
|
2270
2323
|
}
|
|
2271
2324
|
}
|
|
2272
2325
|
@media (min-width: 768px) {
|
|
2326
|
+
.md\\:grid-cols-3 {
|
|
2327
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2328
|
+
}
|
|
2329
|
+
.md\\:gap-6 {
|
|
2330
|
+
gap: 1.5rem;
|
|
2331
|
+
}
|
|
2273
2332
|
.md\\:p-4 {
|
|
2274
2333
|
padding: 1rem;
|
|
2275
2334
|
}
|
|
@@ -2277,6 +2336,10 @@ select:-webkit-autofill:focus {
|
|
|
2277
2336
|
padding-left: 1rem;
|
|
2278
2337
|
padding-right: 1rem;
|
|
2279
2338
|
}
|
|
2339
|
+
.md\\:text-3xl {
|
|
2340
|
+
font-size: 1.875rem;
|
|
2341
|
+
line-height: 2.25rem;
|
|
2342
|
+
}
|
|
2280
2343
|
}
|
|
2281
2344
|
@media (min-width: 1024px) {
|
|
2282
2345
|
.lg\\:relative {
|
|
@@ -2285,6 +2348,9 @@ select:-webkit-autofill:focus {
|
|
|
2285
2348
|
.lg\\:hidden {
|
|
2286
2349
|
display: none;
|
|
2287
2350
|
}
|
|
2351
|
+
.lg\\:grid-cols-4 {
|
|
2352
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2353
|
+
}
|
|
2288
2354
|
}
|
|
2289
2355
|
@media print {
|
|
2290
2356
|
.print\\:block {
|
|
@@ -2299,6 +2365,9 @@ select:-webkit-autofill:focus {
|
|
|
2299
2365
|
.print\\:h-0 {
|
|
2300
2366
|
height: 0px;
|
|
2301
2367
|
}
|
|
2368
|
+
.print\\:h-14 {
|
|
2369
|
+
height: 3.5rem;
|
|
2370
|
+
}
|
|
2302
2371
|
.print\\:gap-0 {
|
|
2303
2372
|
gap: 0px;
|
|
2304
2373
|
}
|
|
@@ -2325,6 +2394,10 @@ select:-webkit-autofill:focus {
|
|
|
2325
2394
|
--tw-text-opacity: 1;
|
|
2326
2395
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
2327
2396
|
}
|
|
2397
|
+
.print\\:text-gray-600 {
|
|
2398
|
+
--tw-text-opacity: 1;
|
|
2399
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
2400
|
+
}
|
|
2328
2401
|
.print\\:text-gray-800 {
|
|
2329
2402
|
--tw-text-opacity: 1;
|
|
2330
2403
|
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
package/dist/styles.mjs
CHANGED
|
@@ -581,6 +581,9 @@ select:-webkit-autofill:focus {
|
|
|
581
581
|
.mt-3 {
|
|
582
582
|
margin-top: 0.75rem;
|
|
583
583
|
}
|
|
584
|
+
.mt-4 {
|
|
585
|
+
margin-top: 1rem;
|
|
586
|
+
}
|
|
584
587
|
.mt-6 {
|
|
585
588
|
margin-top: 1.5rem;
|
|
586
589
|
}
|
|
@@ -590,6 +593,12 @@ select:-webkit-autofill:focus {
|
|
|
590
593
|
.mt-px {
|
|
591
594
|
margin-top: 1px;
|
|
592
595
|
}
|
|
596
|
+
.line-clamp-2 {
|
|
597
|
+
overflow: hidden;
|
|
598
|
+
display: -webkit-box;
|
|
599
|
+
-webkit-box-orient: vertical;
|
|
600
|
+
-webkit-line-clamp: 2;
|
|
601
|
+
}
|
|
593
602
|
.block {
|
|
594
603
|
display: block;
|
|
595
604
|
}
|
|
@@ -617,9 +626,15 @@ select:-webkit-autofill:focus {
|
|
|
617
626
|
.hidden {
|
|
618
627
|
display: none;
|
|
619
628
|
}
|
|
629
|
+
.aspect-square {
|
|
630
|
+
aspect-ratio: 1 / 1;
|
|
631
|
+
}
|
|
620
632
|
.h-1 {
|
|
621
633
|
height: 0.25rem;
|
|
622
634
|
}
|
|
635
|
+
.h-1\\.5 {
|
|
636
|
+
height: 0.375rem;
|
|
637
|
+
}
|
|
623
638
|
.h-10 {
|
|
624
639
|
height: 2.5rem;
|
|
625
640
|
}
|
|
@@ -674,6 +689,9 @@ select:-webkit-autofill:focus {
|
|
|
674
689
|
.min-h-\\[400px\\] {
|
|
675
690
|
min-height: 400px;
|
|
676
691
|
}
|
|
692
|
+
.min-h-full {
|
|
693
|
+
min-height: 100%;
|
|
694
|
+
}
|
|
677
695
|
.min-h-screen {
|
|
678
696
|
min-height: 100vh;
|
|
679
697
|
}
|
|
@@ -689,6 +707,9 @@ select:-webkit-autofill:focus {
|
|
|
689
707
|
.w-14 {
|
|
690
708
|
width: 3.5rem;
|
|
691
709
|
}
|
|
710
|
+
.w-16 {
|
|
711
|
+
width: 4rem;
|
|
712
|
+
}
|
|
692
713
|
.w-3 {
|
|
693
714
|
width: 0.75rem;
|
|
694
715
|
}
|
|
@@ -743,6 +764,9 @@ select:-webkit-autofill:focus {
|
|
|
743
764
|
.max-w-2xl {
|
|
744
765
|
max-width: 42rem;
|
|
745
766
|
}
|
|
767
|
+
.max-w-7xl {
|
|
768
|
+
max-width: 80rem;
|
|
769
|
+
}
|
|
746
770
|
.max-w-\\[40px\\] {
|
|
747
771
|
max-width: 40px;
|
|
748
772
|
}
|
|
@@ -767,6 +791,9 @@ select:-webkit-autofill:focus {
|
|
|
767
791
|
.shrink-0 {
|
|
768
792
|
flex-shrink: 0;
|
|
769
793
|
}
|
|
794
|
+
.flex-grow {
|
|
795
|
+
flex-grow: 1;
|
|
796
|
+
}
|
|
770
797
|
.grow {
|
|
771
798
|
flex-grow: 1;
|
|
772
799
|
}
|
|
@@ -1016,6 +1043,12 @@ select:-webkit-autofill:focus {
|
|
|
1016
1043
|
--tw-border-opacity: 1;
|
|
1017
1044
|
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
|
1018
1045
|
}
|
|
1046
|
+
.border-black\\/10 {
|
|
1047
|
+
border-color: rgb(0 0 0 / 0.1);
|
|
1048
|
+
}
|
|
1049
|
+
.border-black\\/80 {
|
|
1050
|
+
border-color: rgb(0 0 0 / 0.8);
|
|
1051
|
+
}
|
|
1019
1052
|
.border-blue-600 {
|
|
1020
1053
|
--tw-border-opacity: 1;
|
|
1021
1054
|
border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
|
|
@@ -1092,6 +1125,10 @@ select:-webkit-autofill:focus {
|
|
|
1092
1125
|
.bg-gray-50\\/50 {
|
|
1093
1126
|
background-color: rgb(249 250 251 / 0.5);
|
|
1094
1127
|
}
|
|
1128
|
+
.bg-green-500 {
|
|
1129
|
+
--tw-bg-opacity: 1;
|
|
1130
|
+
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
1131
|
+
}
|
|
1095
1132
|
.bg-green-500\\/10 {
|
|
1096
1133
|
background-color: rgb(34 197 94 / 0.1);
|
|
1097
1134
|
}
|
|
@@ -1354,6 +1391,10 @@ select:-webkit-autofill:focus {
|
|
|
1354
1391
|
-apple-system,
|
|
1355
1392
|
sans-serif;
|
|
1356
1393
|
}
|
|
1394
|
+
.text-2xl {
|
|
1395
|
+
font-size: 1.5rem;
|
|
1396
|
+
line-height: 2rem;
|
|
1397
|
+
}
|
|
1357
1398
|
.text-3xl {
|
|
1358
1399
|
font-size: 1.875rem;
|
|
1359
1400
|
line-height: 2.25rem;
|
|
@@ -1362,6 +1403,9 @@ select:-webkit-autofill:focus {
|
|
|
1362
1403
|
font-size: 2.25rem;
|
|
1363
1404
|
line-height: 2.5rem;
|
|
1364
1405
|
}
|
|
1406
|
+
.text-\\[10px\\] {
|
|
1407
|
+
font-size: 10px;
|
|
1408
|
+
}
|
|
1365
1409
|
.text-\\[11px\\] {
|
|
1366
1410
|
font-size: 11px;
|
|
1367
1411
|
}
|
|
@@ -1385,6 +1429,9 @@ select:-webkit-autofill:focus {
|
|
|
1385
1429
|
font-size: 0.75rem;
|
|
1386
1430
|
line-height: 1rem;
|
|
1387
1431
|
}
|
|
1432
|
+
.font-black {
|
|
1433
|
+
font-weight: 900;
|
|
1434
|
+
}
|
|
1388
1435
|
.font-bold {
|
|
1389
1436
|
font-weight: 700;
|
|
1390
1437
|
}
|
|
@@ -1413,9 +1460,15 @@ select:-webkit-autofill:focus {
|
|
|
1413
1460
|
.leading-tight {
|
|
1414
1461
|
line-height: 1.25;
|
|
1415
1462
|
}
|
|
1463
|
+
.tracking-\\[0\\.2em\\] {
|
|
1464
|
+
letter-spacing: 0.2em;
|
|
1465
|
+
}
|
|
1416
1466
|
.tracking-tight {
|
|
1417
1467
|
letter-spacing: -0.025em;
|
|
1418
1468
|
}
|
|
1469
|
+
.tracking-tighter {
|
|
1470
|
+
letter-spacing: -0.05em;
|
|
1471
|
+
}
|
|
1419
1472
|
.tracking-wide {
|
|
1420
1473
|
letter-spacing: 0.025em;
|
|
1421
1474
|
}
|
|
@@ -2268,6 +2321,12 @@ select:-webkit-autofill:focus {
|
|
|
2268
2321
|
}
|
|
2269
2322
|
}
|
|
2270
2323
|
@media (min-width: 768px) {
|
|
2324
|
+
.md\\:grid-cols-3 {
|
|
2325
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2326
|
+
}
|
|
2327
|
+
.md\\:gap-6 {
|
|
2328
|
+
gap: 1.5rem;
|
|
2329
|
+
}
|
|
2271
2330
|
.md\\:p-4 {
|
|
2272
2331
|
padding: 1rem;
|
|
2273
2332
|
}
|
|
@@ -2275,6 +2334,10 @@ select:-webkit-autofill:focus {
|
|
|
2275
2334
|
padding-left: 1rem;
|
|
2276
2335
|
padding-right: 1rem;
|
|
2277
2336
|
}
|
|
2337
|
+
.md\\:text-3xl {
|
|
2338
|
+
font-size: 1.875rem;
|
|
2339
|
+
line-height: 2.25rem;
|
|
2340
|
+
}
|
|
2278
2341
|
}
|
|
2279
2342
|
@media (min-width: 1024px) {
|
|
2280
2343
|
.lg\\:relative {
|
|
@@ -2283,6 +2346,9 @@ select:-webkit-autofill:focus {
|
|
|
2283
2346
|
.lg\\:hidden {
|
|
2284
2347
|
display: none;
|
|
2285
2348
|
}
|
|
2349
|
+
.lg\\:grid-cols-4 {
|
|
2350
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2351
|
+
}
|
|
2286
2352
|
}
|
|
2287
2353
|
@media print {
|
|
2288
2354
|
.print\\:block {
|
|
@@ -2297,6 +2363,9 @@ select:-webkit-autofill:focus {
|
|
|
2297
2363
|
.print\\:h-0 {
|
|
2298
2364
|
height: 0px;
|
|
2299
2365
|
}
|
|
2366
|
+
.print\\:h-14 {
|
|
2367
|
+
height: 3.5rem;
|
|
2368
|
+
}
|
|
2300
2369
|
.print\\:gap-0 {
|
|
2301
2370
|
gap: 0px;
|
|
2302
2371
|
}
|
|
@@ -2323,6 +2392,10 @@ select:-webkit-autofill:focus {
|
|
|
2323
2392
|
--tw-text-opacity: 1;
|
|
2324
2393
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
2325
2394
|
}
|
|
2395
|
+
.print\\:text-gray-600 {
|
|
2396
|
+
--tw-text-opacity: 1;
|
|
2397
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
2398
|
+
}
|
|
2326
2399
|
.print\\:text-gray-800 {
|
|
2327
2400
|
--tw-text-opacity: 1;
|
|
2328
2401
|
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|