warqadui 0.0.39 → 0.0.42
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 +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.js +270 -159
- package/dist/index.mjs +278 -159
- package/dist/styles.js +37 -0
- package/dist/styles.mjs +37 -0
- package/package.json +1 -1
package/dist/styles.js
CHANGED
|
@@ -511,6 +511,10 @@ select:-webkit-autofill:focus {
|
|
|
511
511
|
.z-50 {
|
|
512
512
|
z-index: 50;
|
|
513
513
|
}
|
|
514
|
+
.mx-0\\.5 {
|
|
515
|
+
margin-left: 0.125rem;
|
|
516
|
+
margin-right: 0.125rem;
|
|
517
|
+
}
|
|
514
518
|
.mx-2 {
|
|
515
519
|
margin-left: 0.5rem;
|
|
516
520
|
margin-right: 0.5rem;
|
|
@@ -588,6 +592,9 @@ select:-webkit-autofill:focus {
|
|
|
588
592
|
.block {
|
|
589
593
|
display: block;
|
|
590
594
|
}
|
|
595
|
+
.inline-block {
|
|
596
|
+
display: inline-block;
|
|
597
|
+
}
|
|
591
598
|
.inline {
|
|
592
599
|
display: inline;
|
|
593
600
|
}
|
|
@@ -654,18 +661,27 @@ select:-webkit-autofill:focus {
|
|
|
654
661
|
.max-h-60 {
|
|
655
662
|
max-height: 15rem;
|
|
656
663
|
}
|
|
664
|
+
.max-h-64 {
|
|
665
|
+
max-height: 16rem;
|
|
666
|
+
}
|
|
657
667
|
.min-h-24 {
|
|
658
668
|
min-height: 6rem;
|
|
659
669
|
}
|
|
660
670
|
.min-h-\\[300px\\] {
|
|
661
671
|
min-height: 300px;
|
|
662
672
|
}
|
|
673
|
+
.min-h-\\[400px\\] {
|
|
674
|
+
min-height: 400px;
|
|
675
|
+
}
|
|
663
676
|
.min-h-screen {
|
|
664
677
|
min-height: 100vh;
|
|
665
678
|
}
|
|
666
679
|
.w-1 {
|
|
667
680
|
width: 0.25rem;
|
|
668
681
|
}
|
|
682
|
+
.w-1\\/2 {
|
|
683
|
+
width: 50%;
|
|
684
|
+
}
|
|
669
685
|
.w-10 {
|
|
670
686
|
width: 2.5rem;
|
|
671
687
|
}
|
|
@@ -717,6 +733,9 @@ select:-webkit-autofill:focus {
|
|
|
717
733
|
.min-w-32 {
|
|
718
734
|
min-width: 8rem;
|
|
719
735
|
}
|
|
736
|
+
.min-w-\\[100px\\] {
|
|
737
|
+
min-width: 100px;
|
|
738
|
+
}
|
|
720
739
|
.min-w-\\[40px\\] {
|
|
721
740
|
min-width: 40px;
|
|
722
741
|
}
|
|
@@ -974,6 +993,9 @@ select:-webkit-autofill:focus {
|
|
|
974
993
|
.border-b-2 {
|
|
975
994
|
border-bottom-width: 2px;
|
|
976
995
|
}
|
|
996
|
+
.border-l {
|
|
997
|
+
border-left-width: 1px;
|
|
998
|
+
}
|
|
977
999
|
.border-l-2 {
|
|
978
1000
|
border-left-width: 2px;
|
|
979
1001
|
}
|
|
@@ -1143,6 +1165,9 @@ select:-webkit-autofill:focus {
|
|
|
1143
1165
|
-o-object-fit: cover;
|
|
1144
1166
|
object-fit: cover;
|
|
1145
1167
|
}
|
|
1168
|
+
.p-0 {
|
|
1169
|
+
padding: 0px;
|
|
1170
|
+
}
|
|
1146
1171
|
.p-0\\.5 {
|
|
1147
1172
|
padding: 0.125rem;
|
|
1148
1173
|
}
|
|
@@ -1262,6 +1287,9 @@ select:-webkit-autofill:focus {
|
|
|
1262
1287
|
.pl-10 {
|
|
1263
1288
|
padding-left: 2.5rem;
|
|
1264
1289
|
}
|
|
1290
|
+
.pl-2 {
|
|
1291
|
+
padding-left: 0.5rem;
|
|
1292
|
+
}
|
|
1265
1293
|
.pl-2\\.5 {
|
|
1266
1294
|
padding-left: 0.625rem;
|
|
1267
1295
|
}
|
|
@@ -1333,6 +1361,9 @@ select:-webkit-autofill:focus {
|
|
|
1333
1361
|
font-size: 2.25rem;
|
|
1334
1362
|
line-height: 2.5rem;
|
|
1335
1363
|
}
|
|
1364
|
+
.text-\\[11px\\] {
|
|
1365
|
+
font-size: 11px;
|
|
1366
|
+
}
|
|
1336
1367
|
.text-base {
|
|
1337
1368
|
font-size: 1rem;
|
|
1338
1369
|
line-height: 1.5rem;
|
|
@@ -1897,6 +1928,9 @@ select:-webkit-autofill:focus {
|
|
|
1897
1928
|
.disabled\\:cursor-not-allowed:disabled {
|
|
1898
1929
|
cursor: not-allowed;
|
|
1899
1930
|
}
|
|
1931
|
+
.disabled\\:opacity-30:disabled {
|
|
1932
|
+
opacity: 0.3;
|
|
1933
|
+
}
|
|
1900
1934
|
.disabled\\:opacity-50:disabled {
|
|
1901
1935
|
opacity: 0.5;
|
|
1902
1936
|
}
|
|
@@ -2018,6 +2052,9 @@ select:-webkit-autofill:focus {
|
|
|
2018
2052
|
--tw-bg-opacity: 1;
|
|
2019
2053
|
background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
|
|
2020
2054
|
}
|
|
2055
|
+
.dark\\:bg-zinc-800\\/50:is(.dark *) {
|
|
2056
|
+
background-color: rgb(39 39 42 / 0.5);
|
|
2057
|
+
}
|
|
2021
2058
|
.dark\\:bg-zinc-900:is(.dark *) {
|
|
2022
2059
|
--tw-bg-opacity: 1;
|
|
2023
2060
|
background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
|
package/dist/styles.mjs
CHANGED
|
@@ -509,6 +509,10 @@ select:-webkit-autofill:focus {
|
|
|
509
509
|
.z-50 {
|
|
510
510
|
z-index: 50;
|
|
511
511
|
}
|
|
512
|
+
.mx-0\\.5 {
|
|
513
|
+
margin-left: 0.125rem;
|
|
514
|
+
margin-right: 0.125rem;
|
|
515
|
+
}
|
|
512
516
|
.mx-2 {
|
|
513
517
|
margin-left: 0.5rem;
|
|
514
518
|
margin-right: 0.5rem;
|
|
@@ -586,6 +590,9 @@ select:-webkit-autofill:focus {
|
|
|
586
590
|
.block {
|
|
587
591
|
display: block;
|
|
588
592
|
}
|
|
593
|
+
.inline-block {
|
|
594
|
+
display: inline-block;
|
|
595
|
+
}
|
|
589
596
|
.inline {
|
|
590
597
|
display: inline;
|
|
591
598
|
}
|
|
@@ -652,18 +659,27 @@ select:-webkit-autofill:focus {
|
|
|
652
659
|
.max-h-60 {
|
|
653
660
|
max-height: 15rem;
|
|
654
661
|
}
|
|
662
|
+
.max-h-64 {
|
|
663
|
+
max-height: 16rem;
|
|
664
|
+
}
|
|
655
665
|
.min-h-24 {
|
|
656
666
|
min-height: 6rem;
|
|
657
667
|
}
|
|
658
668
|
.min-h-\\[300px\\] {
|
|
659
669
|
min-height: 300px;
|
|
660
670
|
}
|
|
671
|
+
.min-h-\\[400px\\] {
|
|
672
|
+
min-height: 400px;
|
|
673
|
+
}
|
|
661
674
|
.min-h-screen {
|
|
662
675
|
min-height: 100vh;
|
|
663
676
|
}
|
|
664
677
|
.w-1 {
|
|
665
678
|
width: 0.25rem;
|
|
666
679
|
}
|
|
680
|
+
.w-1\\/2 {
|
|
681
|
+
width: 50%;
|
|
682
|
+
}
|
|
667
683
|
.w-10 {
|
|
668
684
|
width: 2.5rem;
|
|
669
685
|
}
|
|
@@ -715,6 +731,9 @@ select:-webkit-autofill:focus {
|
|
|
715
731
|
.min-w-32 {
|
|
716
732
|
min-width: 8rem;
|
|
717
733
|
}
|
|
734
|
+
.min-w-\\[100px\\] {
|
|
735
|
+
min-width: 100px;
|
|
736
|
+
}
|
|
718
737
|
.min-w-\\[40px\\] {
|
|
719
738
|
min-width: 40px;
|
|
720
739
|
}
|
|
@@ -972,6 +991,9 @@ select:-webkit-autofill:focus {
|
|
|
972
991
|
.border-b-2 {
|
|
973
992
|
border-bottom-width: 2px;
|
|
974
993
|
}
|
|
994
|
+
.border-l {
|
|
995
|
+
border-left-width: 1px;
|
|
996
|
+
}
|
|
975
997
|
.border-l-2 {
|
|
976
998
|
border-left-width: 2px;
|
|
977
999
|
}
|
|
@@ -1141,6 +1163,9 @@ select:-webkit-autofill:focus {
|
|
|
1141
1163
|
-o-object-fit: cover;
|
|
1142
1164
|
object-fit: cover;
|
|
1143
1165
|
}
|
|
1166
|
+
.p-0 {
|
|
1167
|
+
padding: 0px;
|
|
1168
|
+
}
|
|
1144
1169
|
.p-0\\.5 {
|
|
1145
1170
|
padding: 0.125rem;
|
|
1146
1171
|
}
|
|
@@ -1260,6 +1285,9 @@ select:-webkit-autofill:focus {
|
|
|
1260
1285
|
.pl-10 {
|
|
1261
1286
|
padding-left: 2.5rem;
|
|
1262
1287
|
}
|
|
1288
|
+
.pl-2 {
|
|
1289
|
+
padding-left: 0.5rem;
|
|
1290
|
+
}
|
|
1263
1291
|
.pl-2\\.5 {
|
|
1264
1292
|
padding-left: 0.625rem;
|
|
1265
1293
|
}
|
|
@@ -1331,6 +1359,9 @@ select:-webkit-autofill:focus {
|
|
|
1331
1359
|
font-size: 2.25rem;
|
|
1332
1360
|
line-height: 2.5rem;
|
|
1333
1361
|
}
|
|
1362
|
+
.text-\\[11px\\] {
|
|
1363
|
+
font-size: 11px;
|
|
1364
|
+
}
|
|
1334
1365
|
.text-base {
|
|
1335
1366
|
font-size: 1rem;
|
|
1336
1367
|
line-height: 1.5rem;
|
|
@@ -1895,6 +1926,9 @@ select:-webkit-autofill:focus {
|
|
|
1895
1926
|
.disabled\\:cursor-not-allowed:disabled {
|
|
1896
1927
|
cursor: not-allowed;
|
|
1897
1928
|
}
|
|
1929
|
+
.disabled\\:opacity-30:disabled {
|
|
1930
|
+
opacity: 0.3;
|
|
1931
|
+
}
|
|
1898
1932
|
.disabled\\:opacity-50:disabled {
|
|
1899
1933
|
opacity: 0.5;
|
|
1900
1934
|
}
|
|
@@ -2016,6 +2050,9 @@ select:-webkit-autofill:focus {
|
|
|
2016
2050
|
--tw-bg-opacity: 1;
|
|
2017
2051
|
background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
|
|
2018
2052
|
}
|
|
2053
|
+
.dark\\:bg-zinc-800\\/50:is(.dark *) {
|
|
2054
|
+
background-color: rgb(39 39 42 / 0.5);
|
|
2055
|
+
}
|
|
2019
2056
|
.dark\\:bg-zinc-900:is(.dark *) {
|
|
2020
2057
|
--tw-bg-opacity: 1;
|
|
2021
2058
|
background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
|