@sentio/ui-dashboard 0.3.12 → 0.3.13

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.css CHANGED
@@ -15,12 +15,15 @@
15
15
  --spacing: 0.25rem;
16
16
  --container-xl: 36rem;
17
17
  --container-3xl: 48rem;
18
+ --container-4xl: 56rem;
18
19
  --text-xs: 0.75rem;
19
20
  --text-xs--line-height: calc(1 / 0.75);
20
21
  --text-sm: 0.875rem;
21
22
  --text-sm--line-height: calc(1.25 / 0.875);
22
23
  --text-base: 1rem;
23
24
  --text-base--line-height: calc(1.5 / 1);
25
+ --text-lg: 1.125rem;
26
+ --text-lg--line-height: calc(1.75 / 1.125);
24
27
  --font-weight-normal: 400;
25
28
  --font-weight-medium: 500;
26
29
  --font-weight-semibold: 600;
@@ -29,6 +32,8 @@
29
32
  --radius-sm: 0.25rem;
30
33
  --radius-md: 0.375rem;
31
34
  --radius-lg: 0.5rem;
35
+ --ease-in: cubic-bezier(0.4, 0, 1, 1);
36
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
32
37
  --animate-spin: spin 1s linear infinite;
33
38
  --default-transition-duration: 150ms;
34
39
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -405,6 +410,9 @@
405
410
  .inline-flex {
406
411
  display: inline-flex;
407
412
  }
413
+ .table {
414
+ display: table;
415
+ }
408
416
  .h-1\/2 {
409
417
  height: calc(1 / 2 * 100%);
410
418
  }
@@ -435,6 +443,9 @@
435
443
  .h-9 {
436
444
  height: calc(var(--spacing) * 9);
437
445
  }
446
+ .h-14 {
447
+ height: calc(var(--spacing) * 14);
448
+ }
438
449
  .h-16 {
439
450
  height: calc(var(--spacing) * 16);
440
451
  }
@@ -495,6 +506,9 @@
495
506
  .min-h-8 {
496
507
  min-height: calc(var(--spacing) * 8);
497
508
  }
509
+ .min-h-full {
510
+ min-height: 100%;
511
+ }
498
512
  .w-2\.5 {
499
513
  width: calc(var(--spacing) * 2.5);
500
514
  }
@@ -516,6 +530,9 @@
516
530
  .w-8 {
517
531
  width: calc(var(--spacing) * 8);
518
532
  }
533
+ .w-14 {
534
+ width: calc(var(--spacing) * 14);
535
+ }
519
536
  .w-20 {
520
537
  width: calc(var(--spacing) * 20);
521
538
  }
@@ -579,6 +596,9 @@
579
596
  .w-\[60rem\] {
580
597
  width: 60rem;
581
598
  }
599
+ .w-auto {
600
+ width: auto;
601
+ }
582
602
  .w-fit {
583
603
  width: fit-content;
584
604
  }
@@ -591,6 +611,15 @@
591
611
  .max-w-\[50vw\] {
592
612
  max-width: 50vw;
593
613
  }
614
+ .max-w-\[120px\] {
615
+ max-width: 120px;
616
+ }
617
+ .max-w-\[240px\] {
618
+ max-width: 240px;
619
+ }
620
+ .max-w-\[280px\] {
621
+ max-width: 280px;
622
+ }
594
623
  .max-w-\[300px\] {
595
624
  max-width: 300px;
596
625
  }
@@ -630,6 +659,17 @@
630
659
  .basis-0 {
631
660
  flex-basis: calc(var(--spacing) * 0);
632
661
  }
662
+ .translate-y-0 {
663
+ --tw-translate-y: calc(var(--spacing) * 0);
664
+ translate: var(--tw-translate-x) var(--tw-translate-y);
665
+ }
666
+ .translate-y-4 {
667
+ --tw-translate-y: calc(var(--spacing) * 4);
668
+ translate: var(--tw-translate-x) var(--tw-translate-y);
669
+ }
670
+ .-rotate-90 {
671
+ rotate: calc(90deg * -1);
672
+ }
633
673
  .rotate-90 {
634
674
  rotate: 90deg;
635
675
  }
@@ -657,6 +697,9 @@
657
697
  .flex-col {
658
698
  flex-direction: column;
659
699
  }
700
+ .flex-row {
701
+ flex-direction: row;
702
+ }
660
703
  .flex-nowrap {
661
704
  flex-wrap: nowrap;
662
705
  }
@@ -666,6 +709,9 @@
666
709
  .items-center {
667
710
  align-items: center;
668
711
  }
712
+ .items-end {
713
+ align-items: flex-end;
714
+ }
669
715
  .items-start {
670
716
  align-items: flex-start;
671
717
  }
@@ -746,6 +792,9 @@
746
792
  margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
747
793
  }
748
794
  }
795
+ .gap-x-2\.5 {
796
+ column-gap: calc(var(--spacing) * 2.5);
797
+ }
749
798
  .gap-x-3 {
750
799
  column-gap: calc(var(--spacing) * 3);
751
800
  }
@@ -762,6 +811,9 @@
762
811
  .gap-y-2 {
763
812
  row-gap: calc(var(--spacing) * 2);
764
813
  }
814
+ .gap-y-5 {
815
+ row-gap: calc(var(--spacing) * 5);
816
+ }
765
817
  .divide-x {
766
818
  :where(& > :not(:last-child)) {
767
819
  --tw-divide-x-reverse: 0;
@@ -905,6 +957,10 @@
905
957
  --tw-border-style: none !important;
906
958
  border-style: none !important;
907
959
  }
960
+ .border-solid {
961
+ --tw-border-style: solid;
962
+ border-style: solid;
963
+ }
908
964
  .border-\[\#4CAF1D\] {
909
965
  border-color: #4CAF1D;
910
966
  }
@@ -920,6 +976,9 @@
920
976
  .border-main {
921
977
  border-color: rgba(var(--border-main));
922
978
  }
979
+ .border-primary-400 {
980
+ border-color: rgba(var(--primary-400));
981
+ }
923
982
  .border-primary-600 {
924
983
  border-color: rgba(var(--primary-600));
925
984
  }
@@ -953,6 +1012,12 @@
953
1012
  .bg-gray-200 {
954
1013
  background-color: rgba(var(--gray-200));
955
1014
  }
1015
+ .bg-gray-200\/40 {
1016
+ background-color: rgba(var(--gray-200));
1017
+ @supports (color: color-mix(in lab, red, red)) {
1018
+ background-color: color-mix(in oklab, rgba(var(--gray-200)) 40%, transparent);
1019
+ }
1020
+ }
956
1021
  .bg-gray-300 {
957
1022
  background-color: rgba(var(--gray-300));
958
1023
  }
@@ -965,6 +1030,9 @@
965
1030
  background-color: color-mix(in oklab, rgba(var(--bg-hover)) 40%, transparent);
966
1031
  }
967
1032
  }
1033
+ .bg-primary-50 {
1034
+ background-color: rgba(var(--primary-50));
1035
+ }
968
1036
  .bg-primary-200\/80 {
969
1037
  background-color: rgba(var(--primary-200));
970
1038
  @supports (color: color-mix(in lab, red, red)) {
@@ -986,6 +1054,9 @@
986
1054
  .p-0 {
987
1055
  padding: calc(var(--spacing) * 0);
988
1056
  }
1057
+ .p-1 {
1058
+ padding: calc(var(--spacing) * 1);
1059
+ }
989
1060
  .p-2 {
990
1061
  padding: calc(var(--spacing) * 2);
991
1062
  }
@@ -1031,6 +1102,9 @@
1031
1102
  .py-4 {
1032
1103
  padding-block: calc(var(--spacing) * 4);
1033
1104
  }
1105
+ .py-6 {
1106
+ padding-block: calc(var(--spacing) * 6);
1107
+ }
1034
1108
  .py-px {
1035
1109
  padding-block: 1px;
1036
1110
  }
@@ -1040,12 +1114,21 @@
1040
1114
  .pt-4 {
1041
1115
  padding-top: calc(var(--spacing) * 4);
1042
1116
  }
1117
+ .pt-5 {
1118
+ padding-top: calc(var(--spacing) * 5);
1119
+ }
1120
+ .pt-\[7px\] {
1121
+ padding-top: 7px;
1122
+ }
1043
1123
  .pr-1\.5 {
1044
1124
  padding-right: calc(var(--spacing) * 1.5);
1045
1125
  }
1046
1126
  .pr-2 {
1047
1127
  padding-right: calc(var(--spacing) * 2);
1048
1128
  }
1129
+ .pr-2\.5 {
1130
+ padding-right: calc(var(--spacing) * 2.5);
1131
+ }
1049
1132
  .pr-4 {
1050
1133
  padding-right: calc(var(--spacing) * 4);
1051
1134
  }
@@ -1058,12 +1141,21 @@
1058
1141
  .pb-2 {
1059
1142
  padding-bottom: calc(var(--spacing) * 2);
1060
1143
  }
1144
+ .pb-4 {
1145
+ padding-bottom: calc(var(--spacing) * 4);
1146
+ }
1147
+ .pb-\[7px\] {
1148
+ padding-bottom: 7px;
1149
+ }
1061
1150
  .pl-1 {
1062
1151
  padding-left: calc(var(--spacing) * 1);
1063
1152
  }
1064
1153
  .pl-2 {
1065
1154
  padding-left: calc(var(--spacing) * 2);
1066
1155
  }
1156
+ .pl-2\.5 {
1157
+ padding-left: calc(var(--spacing) * 2.5);
1158
+ }
1067
1159
  .pl-3 {
1068
1160
  padding-left: calc(var(--spacing) * 3);
1069
1161
  }
@@ -1100,6 +1192,10 @@
1100
1192
  font-size: 0.8125rem;
1101
1193
  line-height: var(--tw-leading, 1.125rem);
1102
1194
  }
1195
+ .text-lg {
1196
+ font-size: var(--text-lg);
1197
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1198
+ }
1103
1199
  .text-sm {
1104
1200
  font-size: var(--text-sm);
1105
1201
  line-height: var(--tw-leading, var(--text-sm--line-height));
@@ -1117,6 +1213,10 @@
1117
1213
  .text-\[13px\] {
1118
1214
  font-size: 13px;
1119
1215
  }
1216
+ .leading-6 {
1217
+ --tw-leading: calc(var(--spacing) * 6);
1218
+ line-height: calc(var(--spacing) * 6);
1219
+ }
1120
1220
  .leading-7\.5 {
1121
1221
  --tw-leading: calc(var(--spacing) * 7.5);
1122
1222
  line-height: calc(var(--spacing) * 7.5);
@@ -1213,6 +1313,12 @@
1213
1313
  .underline {
1214
1314
  text-decoration-line: underline;
1215
1315
  }
1316
+ .opacity-0 {
1317
+ opacity: 0%;
1318
+ }
1319
+ .opacity-100 {
1320
+ opacity: 100%;
1321
+ }
1216
1322
  .shadow-sm {
1217
1323
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1218
1324
  box-shadow:
@@ -1222,6 +1328,15 @@
1222
1328
  var(--tw-ring-shadow),
1223
1329
  var(--tw-shadow);
1224
1330
  }
1331
+ .shadow-xl {
1332
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1333
+ box-shadow:
1334
+ var(--tw-inset-shadow),
1335
+ var(--tw-inset-ring-shadow),
1336
+ var(--tw-ring-offset-shadow),
1337
+ var(--tw-ring-shadow),
1338
+ var(--tw-shadow);
1339
+ }
1225
1340
  .shadow-xs {
1226
1341
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1227
1342
  box-shadow:
@@ -1258,6 +1373,9 @@
1258
1373
  .ring-rose-600\! {
1259
1374
  --tw-ring-color: oklch(58.6% 0.253 17.585) !important;
1260
1375
  }
1376
+ .filter {
1377
+ 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,);
1378
+ }
1261
1379
  .backdrop-opacity-60 {
1262
1380
  --tw-backdrop-opacity: opacity(60%);
1263
1381
  -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
@@ -1283,6 +1401,36 @@
1283
1401
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1284
1402
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1285
1403
  }
1404
+ .transition-opacity {
1405
+ transition-property: opacity;
1406
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1407
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1408
+ }
1409
+ .transition-transform {
1410
+ transition-property:
1411
+ transform,
1412
+ translate,
1413
+ scale,
1414
+ rotate;
1415
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1416
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1417
+ }
1418
+ .duration-200 {
1419
+ --tw-duration: 200ms;
1420
+ transition-duration: 200ms;
1421
+ }
1422
+ .duration-300 {
1423
+ --tw-duration: 300ms;
1424
+ transition-duration: 300ms;
1425
+ }
1426
+ .ease-in {
1427
+ --tw-ease: var(--ease-in);
1428
+ transition-timing-function: var(--ease-in);
1429
+ }
1430
+ .ease-out {
1431
+ --tw-ease: var(--ease-out);
1432
+ transition-timing-function: var(--ease-out);
1433
+ }
1286
1434
  .group-hover\:visible {
1287
1435
  &:is(:where(.group):hover *) {
1288
1436
  @media (hover: hover) {
@@ -1290,6 +1438,21 @@
1290
1438
  }
1291
1439
  }
1292
1440
  }
1441
+ .group-hover\:bg-hover {
1442
+ &:is(:where(.group):hover *) {
1443
+ @media (hover: hover) {
1444
+ background-color: rgba(var(--bg-hover));
1445
+ }
1446
+ }
1447
+ }
1448
+ .group-hover\:font-medium {
1449
+ &:is(:where(.group):hover *) {
1450
+ @media (hover: hover) {
1451
+ --tw-font-weight: var(--font-weight-medium);
1452
+ font-weight: var(--font-weight-medium);
1453
+ }
1454
+ }
1455
+ }
1293
1456
  .group-hover\:text-primary {
1294
1457
  &:is(:where(.group):hover *) {
1295
1458
  @media (hover: hover) {
@@ -1297,6 +1460,13 @@
1297
1460
  }
1298
1461
  }
1299
1462
  }
1463
+ .group-hover\:text-text-foreground {
1464
+ &:is(:where(.group):hover *) {
1465
+ @media (hover: hover) {
1466
+ color: rgba(var(--text-foreground));
1467
+ }
1468
+ }
1469
+ }
1300
1470
  .group-hover\/refresh\:block {
1301
1471
  &:is(:where(.group\/refresh):hover *) {
1302
1472
  @media (hover: hover) {
@@ -1304,6 +1474,16 @@
1304
1474
  }
1305
1475
  }
1306
1476
  }
1477
+ .group-\[\.xs\]\:flex {
1478
+ &:is(:where(.group):is(.xs) *) {
1479
+ display: flex;
1480
+ }
1481
+ }
1482
+ .group-\[\.xs\]\:hidden {
1483
+ &:is(:where(.group):is(.xs) *) {
1484
+ display: none;
1485
+ }
1486
+ }
1307
1487
  .focus-within\:border-primary-300 {
1308
1488
  &:focus-within {
1309
1489
  border-color: rgba(var(--primary-300));
@@ -1408,6 +1588,13 @@
1408
1588
  }
1409
1589
  }
1410
1590
  }
1591
+ .hover\:bg-primary-100 {
1592
+ &:hover {
1593
+ @media (hover: hover) {
1594
+ background-color: rgba(var(--primary-100));
1595
+ }
1596
+ }
1597
+ }
1411
1598
  .hover\:bg-primary-200\/80 {
1412
1599
  &:hover {
1413
1600
  @media (hover: hover) {
@@ -1467,6 +1654,13 @@
1467
1654
  }
1468
1655
  }
1469
1656
  }
1657
+ .hover\:underline {
1658
+ &:hover {
1659
+ @media (hover: hover) {
1660
+ text-decoration-line: underline;
1661
+ }
1662
+ }
1663
+ }
1470
1664
  .focus\:relative {
1471
1665
  &:focus {
1472
1666
  position: relative;
@@ -1578,6 +1772,26 @@
1578
1772
  }
1579
1773
  }
1580
1774
  }
1775
+ .active\:bg-primary-200 {
1776
+ &:active {
1777
+ background-color: rgba(var(--primary-200));
1778
+ }
1779
+ }
1780
+ .sm\:my-8 {
1781
+ @media (width >= 40rem) {
1782
+ margin-block: calc(var(--spacing) * 8);
1783
+ }
1784
+ }
1785
+ .sm\:w-full {
1786
+ @media (width >= 40rem) {
1787
+ width: 100%;
1788
+ }
1789
+ }
1790
+ .sm\:max-w-4xl {
1791
+ @media (width >= 40rem) {
1792
+ max-width: var(--container-4xl);
1793
+ }
1794
+ }
1581
1795
  .sm\:max-w-xl {
1582
1796
  @media (width >= 40rem) {
1583
1797
  max-width: var(--container-xl);
@@ -1588,11 +1802,48 @@
1588
1802
  min-width: 160px;
1589
1803
  }
1590
1804
  }
1805
+ .sm\:translate-y-0 {
1806
+ @media (width >= 40rem) {
1807
+ --tw-translate-y: calc(var(--spacing) * 0);
1808
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1809
+ }
1810
+ }
1811
+ .sm\:scale-95 {
1812
+ @media (width >= 40rem) {
1813
+ --tw-scale-x: 95%;
1814
+ --tw-scale-y: 95%;
1815
+ --tw-scale-z: 95%;
1816
+ scale: var(--tw-scale-x) var(--tw-scale-y);
1817
+ }
1818
+ }
1819
+ .sm\:scale-100 {
1820
+ @media (width >= 40rem) {
1821
+ --tw-scale-x: 100%;
1822
+ --tw-scale-y: 100%;
1823
+ --tw-scale-z: 100%;
1824
+ scale: var(--tw-scale-x) var(--tw-scale-y);
1825
+ }
1826
+ }
1827
+ .sm\:items-center {
1828
+ @media (width >= 40rem) {
1829
+ align-items: center;
1830
+ }
1831
+ }
1832
+ .sm\:p-0 {
1833
+ @media (width >= 40rem) {
1834
+ padding: calc(var(--spacing) * 0);
1835
+ }
1836
+ }
1591
1837
  .sm\:px-0 {
1592
1838
  @media (width >= 40rem) {
1593
1839
  padding-inline: calc(var(--spacing) * 0);
1594
1840
  }
1595
1841
  }
1842
+ .sm\:px-6 {
1843
+ @media (width >= 40rem) {
1844
+ padding-inline: calc(var(--spacing) * 6);
1845
+ }
1846
+ }
1596
1847
  .sm\:text-icontent {
1597
1848
  @media (width >= 40rem) {
1598
1849
  font-size: 0.8125rem;
@@ -1610,6 +1861,24 @@
1610
1861
  max-width: var(--container-3xl);
1611
1862
  }
1612
1863
  }
1864
+ .dark\:border-primary-600 {
1865
+ &:where(.dark, .dark *) {
1866
+ border-color: rgba(var(--primary-600));
1867
+ }
1868
+ }
1869
+ .dark\:bg-gray-200\/50 {
1870
+ &:where(.dark, .dark *) {
1871
+ background-color: rgba(var(--gray-200));
1872
+ @supports (color: color-mix(in lab, red, red)) {
1873
+ background-color: color-mix(in oklab, rgba(var(--gray-200)) 50%, transparent);
1874
+ }
1875
+ }
1876
+ }
1877
+ .dark\:bg-gray-700 {
1878
+ &:where(.dark, .dark *) {
1879
+ background-color: rgba(var(--gray-700));
1880
+ }
1881
+ }
1613
1882
  .dark\:bg-primary-600 {
1614
1883
  &:where(.dark, .dark *) {
1615
1884
  background-color: rgba(var(--primary-600));
@@ -1625,6 +1894,11 @@
1625
1894
  color: var(--default-bg);
1626
1895
  }
1627
1896
  }
1897
+ .dark\:text-primary-800 {
1898
+ &:where(.dark, .dark *) {
1899
+ color: rgba(var(--primary-800));
1900
+ }
1901
+ }
1628
1902
  .dark\:hover\:bg-sentio-gray-400 {
1629
1903
  &:where(.dark, .dark *) {
1630
1904
  &:hover {
@@ -1671,6 +1945,9 @@
1671
1945
  font-weight: var(--font-weight-bold);
1672
1946
  }
1673
1947
  }
1948
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1949
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1950
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1674
1951
  @property --tw-rotate-x { syntax: "*"; inherits: false; }
1675
1952
  @property --tw-rotate-y { syntax: "*"; inherits: false; }
1676
1953
  @property --tw-rotate-z { syntax: "*"; inherits: false; }
@@ -1697,6 +1974,19 @@
1697
1974
  @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1698
1975
  @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1699
1976
  @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1977
+ @property --tw-blur { syntax: "*"; inherits: false; }
1978
+ @property --tw-brightness { syntax: "*"; inherits: false; }
1979
+ @property --tw-contrast { syntax: "*"; inherits: false; }
1980
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
1981
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1982
+ @property --tw-invert { syntax: "*"; inherits: false; }
1983
+ @property --tw-opacity { syntax: "*"; inherits: false; }
1984
+ @property --tw-saturate { syntax: "*"; inherits: false; }
1985
+ @property --tw-sepia { syntax: "*"; inherits: false; }
1986
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1987
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1988
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1989
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
1700
1990
  @property --tw-backdrop-blur { syntax: "*"; inherits: false; }
1701
1991
  @property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
1702
1992
  @property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
@@ -1706,6 +1996,11 @@
1706
1996
  @property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
1707
1997
  @property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
1708
1998
  @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
1999
+ @property --tw-duration { syntax: "*"; inherits: false; }
2000
+ @property --tw-ease { syntax: "*"; inherits: false; }
2001
+ @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
2002
+ @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
2003
+ @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1709
2004
  @keyframes spin {
1710
2005
  to {
1711
2006
  transform: rotate(360deg);
@@ -1717,6 +2012,9 @@
1717
2012
  ::before,
1718
2013
  ::after,
1719
2014
  ::backdrop {
2015
+ --tw-translate-x: 0;
2016
+ --tw-translate-y: 0;
2017
+ --tw-translate-z: 0;
1720
2018
  --tw-rotate-x: initial;
1721
2019
  --tw-rotate-y: initial;
1722
2020
  --tw-rotate-z: initial;
@@ -1743,6 +2041,19 @@
1743
2041
  --tw-ring-offset-width: 0px;
1744
2042
  --tw-ring-offset-color: #fff;
1745
2043
  --tw-ring-offset-shadow: 0 0 #0000;
2044
+ --tw-blur: initial;
2045
+ --tw-brightness: initial;
2046
+ --tw-contrast: initial;
2047
+ --tw-grayscale: initial;
2048
+ --tw-hue-rotate: initial;
2049
+ --tw-invert: initial;
2050
+ --tw-opacity: initial;
2051
+ --tw-saturate: initial;
2052
+ --tw-sepia: initial;
2053
+ --tw-drop-shadow: initial;
2054
+ --tw-drop-shadow-color: initial;
2055
+ --tw-drop-shadow-alpha: 100%;
2056
+ --tw-drop-shadow-size: initial;
1746
2057
  --tw-backdrop-blur: initial;
1747
2058
  --tw-backdrop-brightness: initial;
1748
2059
  --tw-backdrop-contrast: initial;
@@ -1752,6 +2063,11 @@
1752
2063
  --tw-backdrop-opacity: initial;
1753
2064
  --tw-backdrop-saturate: initial;
1754
2065
  --tw-backdrop-sepia: initial;
2066
+ --tw-duration: initial;
2067
+ --tw-ease: initial;
2068
+ --tw-scale-x: 1;
2069
+ --tw-scale-y: 1;
2070
+ --tw-scale-z: 1;
1755
2071
  }
1756
2072
  }
1757
2073
  }