@kompasid/lit-web-components 0.6.3 → 0.6.6

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 (50) hide show
  1. package/assets/kompas-free-trial.png +0 -0
  2. package/assets/qr-code.png +0 -0
  3. package/demo/index.html +33 -2
  4. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +27 -0
  5. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +233 -0
  6. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -0
  7. package/dist/src/components/kompasid-header-account/types.d.ts +8 -0
  8. package/dist/src/components/kompasid-header-account/types.js +2 -0
  9. package/dist/src/components/kompasid-header-account/types.js.map +1 -0
  10. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.d.ts +13 -0
  11. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js +172 -0
  12. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js.map +1 -0
  13. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.d.ts +37 -0
  14. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js +185 -0
  15. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js.map +1 -0
  16. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +12 -0
  17. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +172 -0
  18. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -0
  19. package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +8 -8
  20. package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -1
  21. package/dist/src/components/kompasid-paywall/KompasPaywall.js +7 -20
  22. package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
  23. package/dist/src/components/kompasid-paywall/types.d.ts +5 -0
  24. package/dist/src/components/kompasid-paywall/types.js.map +1 -1
  25. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +4 -0
  26. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +178 -28
  27. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
  28. package/dist/src/index.d.ts +1 -0
  29. package/dist/src/index.js +1 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/utils/text.d.ts +2 -0
  32. package/dist/src/utils/text.js +9 -0
  33. package/dist/src/utils/text.js.map +1 -0
  34. package/dist/tailwind/tailwind.js +391 -5
  35. package/dist/tailwind/tailwind.js.map +1 -1
  36. package/dist/tsconfig.tsbuildinfo +1 -1
  37. package/package.json +1 -1
  38. package/src/components/kompasid-header-account/KompasHeaderAccount.ts +197 -0
  39. package/src/components/kompasid-header-account/types.ts +8 -0
  40. package/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.ts +177 -0
  41. package/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.ts +172 -0
  42. package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +161 -0
  43. package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +8 -8
  44. package/src/components/kompasid-paywall/KompasPaywall.ts +7 -20
  45. package/src/components/kompasid-paywall/types.ts +5 -0
  46. package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +189 -36
  47. package/src/index.ts +1 -0
  48. package/src/utils/text.ts +9 -0
  49. package/tailwind/tailwind.css +382 -5
  50. package/tailwind/tailwind.ts +391 -5
@@ -627,6 +627,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
627
627
  margin: auto;
628
628
  }
629
629
 
630
+ .mx-1 {
631
+ margin-left: 0.25rem;
632
+ margin-right: 0.25rem;
633
+ }
634
+
630
635
  .mx-2 {
631
636
  margin-left: 0.5rem;
632
637
  margin-right: 0.5rem;
@@ -689,6 +694,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
689
694
  margin-bottom: 1rem;
690
695
  }
691
696
 
697
+ .mb-5 {
698
+ margin-bottom: 1.25rem;
699
+ }
700
+
692
701
  .ml-0 {
693
702
  margin-left: 0px;
694
703
  }
@@ -725,6 +734,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
725
734
  margin-right: 2.5rem;
726
735
  }
727
736
 
737
+ .mr-2 {
738
+ margin-right: 0.5rem;
739
+ }
740
+
728
741
  .mr-3 {
729
742
  margin-right: 0.75rem;
730
743
  }
@@ -765,6 +778,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
765
778
  margin-top: 2rem;
766
779
  }
767
780
 
781
+ .mr-6 {
782
+ margin-right: 1.5rem;
783
+ }
784
+
768
785
  .block {
769
786
  display: block;
770
787
  }
@@ -785,6 +802,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
785
802
  height: 2.5rem;
786
803
  }
787
804
 
805
+ .h-16 {
806
+ height: 4rem;
807
+ }
808
+
809
+ .h-2 {
810
+ height: 0.5rem;
811
+ }
812
+
813
+ .h-2\\.5 {
814
+ height: 0.625rem;
815
+ }
816
+
788
817
  .h-20 {
789
818
  height: 5rem;
790
819
  }
@@ -805,6 +834,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
805
834
  height: 1.25rem;
806
835
  }
807
836
 
837
+ .h-6 {
838
+ height: 1.5rem;
839
+ }
840
+
808
841
  .h-8 {
809
842
  height: 2rem;
810
843
  }
@@ -817,6 +850,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
817
850
  height: 17px;
818
851
  }
819
852
 
853
+ .h-\\[49px\\] {
854
+ height: 49px;
855
+ }
856
+
820
857
  .h-\\[68px\\] {
821
858
  height: 68px;
822
859
  }
@@ -838,6 +875,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
838
875
  height: max-content;
839
876
  }
840
877
 
878
+ .h-12 {
879
+ height: 3rem;
880
+ }
881
+
882
+ .w-1\\/2 {
883
+ width: 50%;
884
+ }
885
+
886
+ .w-1\\/4 {
887
+ width: 25%;
888
+ }
889
+
841
890
  .w-1\\/5 {
842
891
  width: 20%;
843
892
  }
@@ -846,6 +895,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
846
895
  width: 2.5rem;
847
896
  }
848
897
 
898
+ .w-16 {
899
+ width: 4rem;
900
+ }
901
+
902
+ .w-2 {
903
+ width: 0.5rem;
904
+ }
905
+
906
+ .w-2\\.5 {
907
+ width: 0.625rem;
908
+ }
909
+
849
910
  .w-20 {
850
911
  width: 5rem;
851
912
  }
@@ -866,14 +927,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
866
927
  width: 1.25rem;
867
928
  }
868
929
 
930
+ .w-6 {
931
+ width: 1.5rem;
932
+ }
933
+
869
934
  .w-60 {
870
935
  width: 15rem;
871
936
  }
872
937
 
938
+ .w-76 {
939
+ width: 19rem;
940
+ }
941
+
873
942
  .w-8 {
874
943
  width: 2rem;
875
944
  }
876
945
 
946
+ .w-80 {
947
+ width: 20rem;
948
+ }
949
+
877
950
  .w-9 {
878
951
  width: 2.25rem;
879
952
  }
@@ -902,6 +975,30 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
902
975
  width: 100%;
903
976
  }
904
977
 
978
+ .w-1\\/3 {
979
+ width: 33.333333%;
980
+ }
981
+
982
+ .w-3\\/4 {
983
+ width: 75%;
984
+ }
985
+
986
+ .w-4\\/5 {
987
+ width: 80%;
988
+ }
989
+
990
+ .w-2\\/4 {
991
+ width: 50%;
992
+ }
993
+
994
+ .w-2\\/3 {
995
+ width: 66.666667%;
996
+ }
997
+
998
+ .w-11\\/12 {
999
+ width: 91.666667%;
1000
+ }
1001
+
905
1002
  .max-w-7xl {
906
1003
  max-width: 80rem;
907
1004
  }
@@ -926,6 +1023,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
926
1023
  flex: none;
927
1024
  }
928
1025
 
1026
+ .flex-shrink-0 {
1027
+ flex-shrink: 0;
1028
+ }
1029
+
929
1030
  .shrink-0 {
930
1031
  flex-shrink: 0;
931
1032
  }
@@ -947,6 +1048,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
947
1048
  scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
948
1049
  }
949
1050
 
1051
+ @keyframes pulse {
1052
+ 50% {
1053
+ opacity: 0.5;
1054
+ }
1055
+ }
1056
+
1057
+ .animate-pulse {
1058
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1059
+ }
1060
+
950
1061
  .cursor-pointer {
951
1062
  cursor: pointer;
952
1063
  }
@@ -1011,6 +1122,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1011
1122
  justify-content: flex-start;
1012
1123
  }
1013
1124
 
1125
+ .justify-end {
1126
+ justify-content: flex-end;
1127
+ }
1128
+
1014
1129
  .justify-center {
1015
1130
  justify-content: center;
1016
1131
  }
@@ -1035,6 +1150,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1035
1150
  gap: 2rem;
1036
1151
  }
1037
1152
 
1153
+ .gap-2 {
1154
+ gap: 0.5rem;
1155
+ }
1156
+
1157
+ .gap-y-2 {
1158
+ row-gap: 0.5rem;
1159
+ }
1160
+
1038
1161
  .gap-y-4 {
1039
1162
  row-gap: 1rem;
1040
1163
  }
@@ -1083,6 +1206,12 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1083
1206
  overflow: hidden;
1084
1207
  }
1085
1208
 
1209
+ .truncate {
1210
+ overflow: hidden;
1211
+ text-overflow: ellipsis;
1212
+ white-space: nowrap;
1213
+ }
1214
+
1086
1215
  .whitespace-nowrap {
1087
1216
  white-space: nowrap;
1088
1217
  }
@@ -1095,6 +1224,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1095
1224
  border-radius: 10px;
1096
1225
  }
1097
1226
 
1227
+ .rounded-full {
1228
+ border-radius: 9999px;
1229
+ }
1230
+
1098
1231
  .rounded-lg {
1099
1232
  border-radius: 0.5rem;
1100
1233
  }
@@ -1103,6 +1236,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1103
1236
  border-radius: 0.375rem;
1104
1237
  }
1105
1238
 
1239
+ .rounded-sm {
1240
+ border-radius: 0.125rem;
1241
+ }
1242
+
1106
1243
  .rounded-xl {
1107
1244
  border-radius: 0.75rem;
1108
1245
  }
@@ -1172,6 +1309,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1172
1309
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1173
1310
  }
1174
1311
 
1312
+ .border-grey-300 {
1313
+ --tw-border-opacity: 1;
1314
+ border-color: rgb(221 221 221 / var(--tw-border-opacity));
1315
+ }
1316
+
1175
1317
  .border-grey-400 {
1176
1318
  --tw-border-opacity: 1;
1177
1319
  border-color: rgb(153 153 153 / var(--tw-border-opacity));
@@ -1257,6 +1399,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1257
1399
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1258
1400
  }
1259
1401
 
1402
+ .bg-grey-200 {
1403
+ --tw-bg-opacity: 1;
1404
+ background-color: rgb(238 238 238 / var(--tw-bg-opacity));
1405
+ }
1406
+
1407
+ .bg-grey-300 {
1408
+ --tw-bg-opacity: 1;
1409
+ background-color: rgb(221 221 221 / var(--tw-bg-opacity));
1410
+ }
1411
+
1260
1412
  .bg-grey-600 {
1261
1413
  --tw-bg-opacity: 1;
1262
1414
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
@@ -1272,6 +1424,21 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1272
1424
  background-color: rgb(255 220 63 / var(--tw-bg-opacity));
1273
1425
  }
1274
1426
 
1427
+ .bg-red-300 {
1428
+ --tw-bg-opacity: 1;
1429
+ background-color: rgb(247 100 76 / var(--tw-bg-opacity));
1430
+ }
1431
+
1432
+ .bg-red-500 {
1433
+ --tw-bg-opacity: 1;
1434
+ background-color: rgb(208 13 18 / var(--tw-bg-opacity));
1435
+ }
1436
+
1437
+ .bg-red-400 {
1438
+ --tw-bg-opacity: 1;
1439
+ background-color: rgb(243 32 19 / var(--tw-bg-opacity));
1440
+ }
1441
+
1275
1442
  .bg-opacity-75 {
1276
1443
  --tw-bg-opacity: 0.75;
1277
1444
  }
@@ -1286,6 +1453,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1286
1453
  object-fit: scale-down;
1287
1454
  }
1288
1455
 
1456
+ .p-1 {
1457
+ padding: 0.25rem;
1458
+ }
1459
+
1460
+ .p-1\\.5 {
1461
+ padding: 0.375rem;
1462
+ }
1463
+
1289
1464
  .p-2 {
1290
1465
  padding: 0.5rem;
1291
1466
  }
@@ -1298,21 +1473,38 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1298
1473
  padding: 1rem;
1299
1474
  }
1300
1475
 
1476
+ .p-5 {
1477
+ padding: 1.25rem;
1478
+ }
1479
+
1480
+ .p-8 {
1481
+ padding: 2rem;
1482
+ }
1483
+
1484
+ .p-6 {
1485
+ padding: 1.5rem;
1486
+ }
1487
+
1488
+ .px-10 {
1489
+ padding-left: 2.5rem;
1490
+ padding-right: 2.5rem;
1491
+ }
1492
+
1301
1493
  .px-2 {
1302
1494
  padding-left: 0.5rem;
1303
1495
  padding-right: 0.5rem;
1304
1496
  }
1305
1497
 
1498
+ .px-3 {
1499
+ padding-left: 0.75rem;
1500
+ padding-right: 0.75rem;
1501
+ }
1502
+
1306
1503
  .px-4 {
1307
1504
  padding-left: 1rem;
1308
1505
  padding-right: 1rem;
1309
1506
  }
1310
1507
 
1311
- .px-5 {
1312
- padding-left: 1.25rem;
1313
- padding-right: 1.25rem;
1314
- }
1315
-
1316
1508
  .px-8 {
1317
1509
  padding-left: 2rem;
1318
1510
  padding-right: 2rem;
@@ -1363,6 +1555,31 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1363
1555
  padding-bottom: 5.6px;
1364
1556
  }
1365
1557
 
1558
+ .px-9 {
1559
+ padding-left: 2.25rem;
1560
+ padding-right: 2.25rem;
1561
+ }
1562
+
1563
+ .px-6 {
1564
+ padding-left: 1.5rem;
1565
+ padding-right: 1.5rem;
1566
+ }
1567
+
1568
+ .py-6 {
1569
+ padding-top: 1.5rem;
1570
+ padding-bottom: 1.5rem;
1571
+ }
1572
+
1573
+ .py-12 {
1574
+ padding-top: 3rem;
1575
+ padding-bottom: 3rem;
1576
+ }
1577
+
1578
+ .px-0 {
1579
+ padding-left: 0px;
1580
+ padding-right: 0px;
1581
+ }
1582
+
1366
1583
  .pb-1 {
1367
1584
  padding-bottom: 0.25rem;
1368
1585
  }
@@ -1371,6 +1588,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1371
1588
  padding-bottom: 0.5rem;
1372
1589
  }
1373
1590
 
1591
+ .pb-20 {
1592
+ padding-bottom: 5rem;
1593
+ }
1594
+
1374
1595
  .pb-3 {
1375
1596
  padding-bottom: 0.75rem;
1376
1597
  }
@@ -1395,6 +1616,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1395
1616
  padding-bottom: 2rem;
1396
1617
  }
1397
1618
 
1619
+ .pl-0 {
1620
+ padding-left: 0px;
1621
+ }
1622
+
1623
+ .pl-0\\.5 {
1624
+ padding-left: 0.125rem;
1625
+ }
1626
+
1398
1627
  .pl-1 {
1399
1628
  padding-left: 0.25rem;
1400
1629
  }
@@ -1407,6 +1636,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1407
1636
  padding-left: 1rem;
1408
1637
  }
1409
1638
 
1639
+ .pl-px {
1640
+ padding-left: 1px;
1641
+ }
1642
+
1410
1643
  .pr-14 {
1411
1644
  padding-right: 3.5rem;
1412
1645
  }
@@ -1415,6 +1648,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1415
1648
  padding-right: 0.5rem;
1416
1649
  }
1417
1650
 
1651
+ .pr-3 {
1652
+ padding-right: 0.75rem;
1653
+ }
1654
+
1418
1655
  .pt-0 {
1419
1656
  padding-top: 0px;
1420
1657
  }
@@ -1451,10 +1688,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1451
1688
  text-align: start;
1452
1689
  }
1453
1690
 
1691
+ .text-end {
1692
+ text-align: end;
1693
+ }
1694
+
1454
1695
  .font-serif {
1455
1696
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
1456
1697
  }
1457
1698
 
1699
+ .text-2xl {
1700
+ font-size: 1.5rem;
1701
+ line-height: 2rem;
1702
+ }
1703
+
1458
1704
  .text-\\[11px\\] {
1459
1705
  font-size: 11px;
1460
1706
  }
@@ -1479,6 +1725,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1479
1725
  line-height: 1rem;
1480
1726
  }
1481
1727
 
1728
+ .text-xxs {
1729
+ font-size: 0.625rem;
1730
+ }
1731
+
1482
1732
  .font-bold {
1483
1733
  font-weight: 700;
1484
1734
  }
@@ -1491,6 +1741,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1491
1741
  font-weight: 400;
1492
1742
  }
1493
1743
 
1744
+ .capitalize {
1745
+ text-transform: capitalize;
1746
+ }
1747
+
1494
1748
  .leading-4 {
1495
1749
  line-height: 1rem;
1496
1750
  }
@@ -1613,10 +1867,24 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1613
1867
  color: rgb(255 255 255 / var(--tw-text-opacity));
1614
1868
  }
1615
1869
 
1870
+ .text-grey-400 {
1871
+ --tw-text-opacity: 1;
1872
+ color: rgb(153 153 153 / var(--tw-text-opacity));
1873
+ }
1874
+
1616
1875
  .underline {
1617
1876
  text-decoration-line: underline;
1618
1877
  }
1619
1878
 
1879
+ .shadow-lg {
1880
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
1881
+ 0 4px 6px -4px rgb(0 0 0 / 0.1);
1882
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
1883
+ 0 4px 6px -4px var(--tw-shadow-color);
1884
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
1885
+ var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1886
+ }
1887
+
1620
1888
  .shadow-sm {
1621
1889
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1622
1890
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
@@ -1624,7 +1892,42 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1624
1892
  var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1625
1893
  }
1626
1894
 
1895
+ .transition {
1896
+ transition-property: color, background-color, border-color,
1897
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1898
+ filter, -webkit-backdrop-filter;
1899
+ transition-property: color, background-color, border-color,
1900
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1901
+ filter, backdrop-filter;
1902
+ transition-property: color, background-color, border-color,
1903
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1904
+ filter, backdrop-filter, -webkit-backdrop-filter;
1905
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1906
+ transition-duration: 150ms;
1907
+ }
1908
+
1909
+ .hover\\:underline:hover {
1910
+ text-decoration-line: underline;
1911
+ }
1912
+
1913
+ .focus\\:outline-none:focus {
1914
+ outline: 2px solid transparent;
1915
+ outline-offset: 2px;
1916
+ }
1917
+
1627
1918
  @media (min-width: 640px) {
1919
+ .sm\\:w-1\\/2 {
1920
+ width: 50%;
1921
+ }
1922
+
1923
+ .sm\\:w-3\\/4 {
1924
+ width: 75%;
1925
+ }
1926
+
1927
+ .sm\\:w-1\\/4 {
1928
+ width: 25%;
1929
+ }
1930
+
1628
1931
  .sm\\:max-w-lg {
1629
1932
  max-width: 32rem;
1630
1933
  }
@@ -1763,6 +2066,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1763
2066
  width: 100%;
1764
2067
  }
1765
2068
 
2069
+ .md\\:w-1\\/2 {
2070
+ width: 50%;
2071
+ }
2072
+
2073
+ .md\\:w-3\\/4 {
2074
+ width: 75%;
2075
+ }
2076
+
2077
+ .md\\:w-1\\/4 {
2078
+ width: 25%;
2079
+ }
2080
+
2081
+ .md\\:w-1\\/3 {
2082
+ width: 33.333333%;
2083
+ }
2084
+
2085
+ .md\\:w-2\\/3 {
2086
+ width: 66.666667%;
2087
+ }
2088
+
1766
2089
  .md\\:max-w-\\[137px\\] {
1767
2090
  max-width: 137px;
1768
2091
  }
@@ -1906,6 +2229,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1906
2229
  padding-bottom: 1.5rem;
1907
2230
  }
1908
2231
 
2232
+ .md\\:px-8 {
2233
+ padding-left: 2rem;
2234
+ padding-right: 2rem;
2235
+ }
2236
+
1909
2237
  .md\\:pb-4 {
1910
2238
  padding-bottom: 1rem;
1911
2239
  }
@@ -2003,6 +2331,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2003
2331
  display: block;
2004
2332
  }
2005
2333
 
2334
+ .lg\\:flex {
2335
+ display: flex;
2336
+ }
2337
+
2338
+ .lg\\:hidden {
2339
+ display: none;
2340
+ }
2341
+
2006
2342
  .lg\\:min-h-\\[220px\\] {
2007
2343
  min-height: 220px;
2008
2344
  }
@@ -2011,6 +2347,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2011
2347
  width: 410px;
2012
2348
  }
2013
2349
 
2350
+ .lg\\:w-1\\/2 {
2351
+ width: 50%;
2352
+ }
2353
+
2354
+ .lg\\:w-1\\/3 {
2355
+ width: 33.333333%;
2356
+ }
2357
+
2358
+ .lg\\:w-3\\/4 {
2359
+ width: 75%;
2360
+ }
2361
+
2362
+ .lg\\:w-2 {
2363
+ width: 0.5rem;
2364
+ }
2365
+
2366
+ .lg\\:w-2\\/3 {
2367
+ width: 66.666667%;
2368
+ }
2369
+
2014
2370
  .lg\\:max-w-7xl {
2015
2371
  max-width: 80rem;
2016
2372
  }
@@ -2081,10 +2437,40 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2081
2437
  }
2082
2438
 
2083
2439
  @media (min-width: 1280px) {
2440
+ .xl\\:block {
2441
+ display: block;
2442
+ }
2443
+
2444
+ .xl\\:flex {
2445
+ display: flex;
2446
+ }
2447
+
2448
+ .xl\\:hidden {
2449
+ display: none;
2450
+ }
2451
+
2452
+ .xl\\:w-1\\/3 {
2453
+ width: 33.333333%;
2454
+ }
2455
+
2456
+ .xl\\:w-1\\/2 {
2457
+ width: 50%;
2458
+ }
2459
+
2460
+ .xl\\:w-1\\/4 {
2461
+ width: 25%;
2462
+ }
2463
+
2084
2464
  .xl\\:px-0 {
2085
2465
  padding-left: 0px;
2086
2466
  padding-right: 0px;
2087
2467
  }
2088
2468
  }
2469
+
2470
+ @media (min-width: 1536px) {
2471
+ .\\32xl\\:w-1\\/4 {
2472
+ width: 25%;
2473
+ }
2474
+ }
2089
2475
  `;
2090
2476
  //# sourceMappingURL=tailwind.js.map