warqadui 0.0.41 → 0.0.43

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/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));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warqadui",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",