@kompasid/lit-web-components 0.6.3 → 0.6.4

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 (44) hide show
  1. package/demo/index.html +31 -0
  2. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +27 -0
  3. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +233 -0
  4. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -0
  5. package/dist/src/components/kompasid-header-account/types.d.ts +8 -0
  6. package/dist/src/components/kompasid-header-account/types.js +2 -0
  7. package/dist/src/components/kompasid-header-account/types.js.map +1 -0
  8. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.d.ts +13 -0
  9. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js +172 -0
  10. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js.map +1 -0
  11. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.d.ts +37 -0
  12. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js +185 -0
  13. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js.map +1 -0
  14. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +12 -0
  15. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +172 -0
  16. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -0
  17. package/dist/src/components/kompasid-paywall/KompasPaywall.js +5 -20
  18. package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
  19. package/dist/src/components/kompasid-paywall/types.d.ts +4 -0
  20. package/dist/src/components/kompasid-paywall/types.js.map +1 -1
  21. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +54 -28
  22. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
  23. package/dist/src/index.d.ts +1 -0
  24. package/dist/src/index.js +1 -0
  25. package/dist/src/index.js.map +1 -1
  26. package/dist/src/utils/text.d.ts +2 -0
  27. package/dist/src/utils/text.js +9 -0
  28. package/dist/src/utils/text.js.map +1 -0
  29. package/dist/tailwind/tailwind.js +178 -0
  30. package/dist/tailwind/tailwind.js.map +1 -1
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +1 -1
  33. package/src/components/kompasid-header-account/KompasHeaderAccount.ts +197 -0
  34. package/src/components/kompasid-header-account/types.ts +8 -0
  35. package/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.ts +177 -0
  36. package/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.ts +172 -0
  37. package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +161 -0
  38. package/src/components/kompasid-paywall/KompasPaywall.ts +5 -20
  39. package/src/components/kompasid-paywall/types.ts +4 -0
  40. package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +62 -36
  41. package/src/index.ts +1 -0
  42. package/src/utils/text.ts +9 -0
  43. package/tailwind/tailwind.css +169 -0
  44. package/tailwind/tailwind.ts +178 -0
@@ -618,6 +618,11 @@ video {
618
618
  margin: auto;
619
619
  }
620
620
 
621
+ .mx-1 {
622
+ margin-left: 0.25rem;
623
+ margin-right: 0.25rem;
624
+ }
625
+
621
626
  .mx-2 {
622
627
  margin-left: 0.5rem;
623
628
  margin-right: 0.5rem;
@@ -680,6 +685,10 @@ video {
680
685
  margin-bottom: 1rem;
681
686
  }
682
687
 
688
+ .mb-5 {
689
+ margin-bottom: 1.25rem;
690
+ }
691
+
683
692
  .ml-0 {
684
693
  margin-left: 0px;
685
694
  }
@@ -776,6 +785,18 @@ video {
776
785
  height: 2.5rem;
777
786
  }
778
787
 
788
+ .h-16 {
789
+ height: 4rem;
790
+ }
791
+
792
+ .h-2 {
793
+ height: 0.5rem;
794
+ }
795
+
796
+ .h-2\.5 {
797
+ height: 0.625rem;
798
+ }
799
+
779
800
  .h-20 {
780
801
  height: 5rem;
781
802
  }
@@ -796,6 +817,10 @@ video {
796
817
  height: 1.25rem;
797
818
  }
798
819
 
820
+ .h-6 {
821
+ height: 1.5rem;
822
+ }
823
+
799
824
  .h-8 {
800
825
  height: 2rem;
801
826
  }
@@ -808,6 +833,10 @@ video {
808
833
  height: 17px;
809
834
  }
810
835
 
836
+ .h-\[49px\] {
837
+ height: 49px;
838
+ }
839
+
811
840
  .h-\[68px\] {
812
841
  height: 68px;
813
842
  }
@@ -837,6 +866,18 @@ video {
837
866
  width: 2.5rem;
838
867
  }
839
868
 
869
+ .w-16 {
870
+ width: 4rem;
871
+ }
872
+
873
+ .w-2 {
874
+ width: 0.5rem;
875
+ }
876
+
877
+ .w-2\.5 {
878
+ width: 0.625rem;
879
+ }
880
+
840
881
  .w-20 {
841
882
  width: 5rem;
842
883
  }
@@ -857,10 +898,18 @@ video {
857
898
  width: 1.25rem;
858
899
  }
859
900
 
901
+ .w-6 {
902
+ width: 1.5rem;
903
+ }
904
+
860
905
  .w-60 {
861
906
  width: 15rem;
862
907
  }
863
908
 
909
+ .w-76 {
910
+ width: 19rem;
911
+ }
912
+
864
913
  .w-8 {
865
914
  width: 2rem;
866
915
  }
@@ -917,6 +966,10 @@ video {
917
966
  flex: none;
918
967
  }
919
968
 
969
+ .flex-shrink-0 {
970
+ flex-shrink: 0;
971
+ }
972
+
920
973
  .shrink-0 {
921
974
  flex-shrink: 0;
922
975
  }
@@ -934,6 +987,16 @@ video {
934
987
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
935
988
  }
936
989
 
990
+ @keyframes pulse {
991
+ 50% {
992
+ opacity: .5;
993
+ }
994
+ }
995
+
996
+ .animate-pulse {
997
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
998
+ }
999
+
937
1000
  .cursor-pointer {
938
1001
  cursor: pointer;
939
1002
  }
@@ -998,6 +1061,10 @@ video {
998
1061
  justify-content: flex-start;
999
1062
  }
1000
1063
 
1064
+ .justify-end {
1065
+ justify-content: flex-end;
1066
+ }
1067
+
1001
1068
  .justify-center {
1002
1069
  justify-content: center;
1003
1070
  }
@@ -1022,6 +1089,10 @@ video {
1022
1089
  gap: 2rem;
1023
1090
  }
1024
1091
 
1092
+ .gap-y-2 {
1093
+ row-gap: 0.5rem;
1094
+ }
1095
+
1025
1096
  .gap-y-4 {
1026
1097
  row-gap: 1rem;
1027
1098
  }
@@ -1070,6 +1141,12 @@ video {
1070
1141
  overflow: hidden;
1071
1142
  }
1072
1143
 
1144
+ .truncate {
1145
+ overflow: hidden;
1146
+ text-overflow: ellipsis;
1147
+ white-space: nowrap;
1148
+ }
1149
+
1073
1150
  .whitespace-nowrap {
1074
1151
  white-space: nowrap;
1075
1152
  }
@@ -1082,6 +1159,10 @@ video {
1082
1159
  border-radius: 10px;
1083
1160
  }
1084
1161
 
1162
+ .rounded-full {
1163
+ border-radius: 9999px;
1164
+ }
1165
+
1085
1166
  .rounded-lg {
1086
1167
  border-radius: 0.5rem;
1087
1168
  }
@@ -1090,6 +1171,10 @@ video {
1090
1171
  border-radius: 0.375rem;
1091
1172
  }
1092
1173
 
1174
+ .rounded-sm {
1175
+ border-radius: 0.125rem;
1176
+ }
1177
+
1093
1178
  .rounded-xl {
1094
1179
  border-radius: 0.75rem;
1095
1180
  }
@@ -1159,6 +1244,11 @@ video {
1159
1244
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1160
1245
  }
1161
1246
 
1247
+ .border-grey-300 {
1248
+ --tw-border-opacity: 1;
1249
+ border-color: rgb(221 221 221 / var(--tw-border-opacity));
1250
+ }
1251
+
1162
1252
  .border-grey-400 {
1163
1253
  --tw-border-opacity: 1;
1164
1254
  border-color: rgb(153 153 153 / var(--tw-border-opacity));
@@ -1244,6 +1334,16 @@ video {
1244
1334
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1245
1335
  }
1246
1336
 
1337
+ .bg-grey-200 {
1338
+ --tw-bg-opacity: 1;
1339
+ background-color: rgb(238 238 238 / var(--tw-bg-opacity));
1340
+ }
1341
+
1342
+ .bg-grey-300 {
1343
+ --tw-bg-opacity: 1;
1344
+ background-color: rgb(221 221 221 / var(--tw-bg-opacity));
1345
+ }
1346
+
1247
1347
  .bg-grey-600 {
1248
1348
  --tw-bg-opacity: 1;
1249
1349
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
@@ -1285,11 +1385,20 @@ video {
1285
1385
  padding: 1rem;
1286
1386
  }
1287
1387
 
1388
+ .p-5 {
1389
+ padding: 1.25rem;
1390
+ }
1391
+
1288
1392
  .px-2 {
1289
1393
  padding-left: 0.5rem;
1290
1394
  padding-right: 0.5rem;
1291
1395
  }
1292
1396
 
1397
+ .px-3 {
1398
+ padding-left: 0.75rem;
1399
+ padding-right: 0.75rem;
1400
+ }
1401
+
1293
1402
  .px-4 {
1294
1403
  padding-left: 1rem;
1295
1404
  padding-right: 1rem;
@@ -1358,6 +1467,10 @@ video {
1358
1467
  padding-bottom: 0.5rem;
1359
1468
  }
1360
1469
 
1470
+ .pb-20 {
1471
+ padding-bottom: 5rem;
1472
+ }
1473
+
1361
1474
  .pb-3 {
1362
1475
  padding-bottom: 0.75rem;
1363
1476
  }
@@ -1382,6 +1495,14 @@ video {
1382
1495
  padding-bottom: 2rem;
1383
1496
  }
1384
1497
 
1498
+ .pl-0 {
1499
+ padding-left: 0px;
1500
+ }
1501
+
1502
+ .pl-0\.5 {
1503
+ padding-left: 0.125rem;
1504
+ }
1505
+
1385
1506
  .pl-1 {
1386
1507
  padding-left: 0.25rem;
1387
1508
  }
@@ -1394,6 +1515,10 @@ video {
1394
1515
  padding-left: 1rem;
1395
1516
  }
1396
1517
 
1518
+ .pl-px {
1519
+ padding-left: 1px;
1520
+ }
1521
+
1397
1522
  .pr-14 {
1398
1523
  padding-right: 3.5rem;
1399
1524
  }
@@ -1402,6 +1527,10 @@ video {
1402
1527
  padding-right: 0.5rem;
1403
1528
  }
1404
1529
 
1530
+ .pr-3 {
1531
+ padding-right: 0.75rem;
1532
+ }
1533
+
1405
1534
  .pt-0 {
1406
1535
  padding-top: 0px;
1407
1536
  }
@@ -1438,10 +1567,19 @@ video {
1438
1567
  text-align: start;
1439
1568
  }
1440
1569
 
1570
+ .text-end {
1571
+ text-align: end;
1572
+ }
1573
+
1441
1574
  .font-serif {
1442
1575
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
1443
1576
  }
1444
1577
 
1578
+ .text-2xl {
1579
+ font-size: 1.5rem;
1580
+ line-height: 2rem;
1581
+ }
1582
+
1445
1583
  .text-\[11px\] {
1446
1584
  font-size: 11px;
1447
1585
  }
@@ -1466,6 +1604,10 @@ video {
1466
1604
  line-height: 1rem;
1467
1605
  }
1468
1606
 
1607
+ .text-xxs {
1608
+ font-size: 0.625rem;
1609
+ }
1610
+
1469
1611
  .font-bold {
1470
1612
  font-weight: 700;
1471
1613
  }
@@ -1478,6 +1620,10 @@ video {
1478
1620
  font-weight: 400;
1479
1621
  }
1480
1622
 
1623
+ .capitalize {
1624
+ text-transform: capitalize;
1625
+ }
1626
+
1481
1627
  .leading-4 {
1482
1628
  line-height: 1rem;
1483
1629
  }
@@ -1604,12 +1750,35 @@ video {
1604
1750
  text-decoration-line: underline;
1605
1751
  }
1606
1752
 
1753
+ .shadow-lg {
1754
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1755
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1756
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1757
+ }
1758
+
1607
1759
  .shadow-sm {
1608
1760
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1609
1761
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1610
1762
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1611
1763
  }
1612
1764
 
1765
+ .transition {
1766
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
1767
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
1768
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
1769
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1770
+ transition-duration: 150ms;
1771
+ }
1772
+
1773
+ .hover\:underline:hover {
1774
+ text-decoration-line: underline;
1775
+ }
1776
+
1777
+ .focus\:outline-none:focus {
1778
+ outline: 2px solid transparent;
1779
+ outline-offset: 2px;
1780
+ }
1781
+
1613
1782
  @media (min-width: 640px) {
1614
1783
  .sm\:max-w-lg {
1615
1784
  max-width: 32rem;
@@ -628,6 +628,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
628
628
  margin: auto;
629
629
  }
630
630
 
631
+ .mx-1 {
632
+ margin-left: 0.25rem;
633
+ margin-right: 0.25rem;
634
+ }
635
+
631
636
  .mx-2 {
632
637
  margin-left: 0.5rem;
633
638
  margin-right: 0.5rem;
@@ -690,6 +695,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
690
695
  margin-bottom: 1rem;
691
696
  }
692
697
 
698
+ .mb-5 {
699
+ margin-bottom: 1.25rem;
700
+ }
701
+
693
702
  .ml-0 {
694
703
  margin-left: 0px;
695
704
  }
@@ -786,6 +795,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
786
795
  height: 2.5rem;
787
796
  }
788
797
 
798
+ .h-16 {
799
+ height: 4rem;
800
+ }
801
+
802
+ .h-2 {
803
+ height: 0.5rem;
804
+ }
805
+
806
+ .h-2\\.5 {
807
+ height: 0.625rem;
808
+ }
809
+
789
810
  .h-20 {
790
811
  height: 5rem;
791
812
  }
@@ -806,6 +827,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
806
827
  height: 1.25rem;
807
828
  }
808
829
 
830
+ .h-6 {
831
+ height: 1.5rem;
832
+ }
833
+
809
834
  .h-8 {
810
835
  height: 2rem;
811
836
  }
@@ -818,6 +843,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
818
843
  height: 17px;
819
844
  }
820
845
 
846
+ .h-\\[49px\\] {
847
+ height: 49px;
848
+ }
849
+
821
850
  .h-\\[68px\\] {
822
851
  height: 68px;
823
852
  }
@@ -847,6 +876,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
847
876
  width: 2.5rem;
848
877
  }
849
878
 
879
+ .w-16 {
880
+ width: 4rem;
881
+ }
882
+
883
+ .w-2 {
884
+ width: 0.5rem;
885
+ }
886
+
887
+ .w-2\\.5 {
888
+ width: 0.625rem;
889
+ }
890
+
850
891
  .w-20 {
851
892
  width: 5rem;
852
893
  }
@@ -867,10 +908,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
867
908
  width: 1.25rem;
868
909
  }
869
910
 
911
+ .w-6 {
912
+ width: 1.5rem;
913
+ }
914
+
870
915
  .w-60 {
871
916
  width: 15rem;
872
917
  }
873
918
 
919
+ .w-76 {
920
+ width: 19rem;
921
+ }
922
+
874
923
  .w-8 {
875
924
  width: 2rem;
876
925
  }
@@ -927,6 +976,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
927
976
  flex: none;
928
977
  }
929
978
 
979
+ .flex-shrink-0 {
980
+ flex-shrink: 0;
981
+ }
982
+
930
983
  .shrink-0 {
931
984
  flex-shrink: 0;
932
985
  }
@@ -948,6 +1001,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
948
1001
  scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
949
1002
  }
950
1003
 
1004
+ @keyframes pulse {
1005
+ 50% {
1006
+ opacity: 0.5;
1007
+ }
1008
+ }
1009
+
1010
+ .animate-pulse {
1011
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1012
+ }
1013
+
951
1014
  .cursor-pointer {
952
1015
  cursor: pointer;
953
1016
  }
@@ -1012,6 +1075,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1012
1075
  justify-content: flex-start;
1013
1076
  }
1014
1077
 
1078
+ .justify-end {
1079
+ justify-content: flex-end;
1080
+ }
1081
+
1015
1082
  .justify-center {
1016
1083
  justify-content: center;
1017
1084
  }
@@ -1036,6 +1103,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1036
1103
  gap: 2rem;
1037
1104
  }
1038
1105
 
1106
+ .gap-y-2 {
1107
+ row-gap: 0.5rem;
1108
+ }
1109
+
1039
1110
  .gap-y-4 {
1040
1111
  row-gap: 1rem;
1041
1112
  }
@@ -1084,6 +1155,12 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1084
1155
  overflow: hidden;
1085
1156
  }
1086
1157
 
1158
+ .truncate {
1159
+ overflow: hidden;
1160
+ text-overflow: ellipsis;
1161
+ white-space: nowrap;
1162
+ }
1163
+
1087
1164
  .whitespace-nowrap {
1088
1165
  white-space: nowrap;
1089
1166
  }
@@ -1096,6 +1173,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1096
1173
  border-radius: 10px;
1097
1174
  }
1098
1175
 
1176
+ .rounded-full {
1177
+ border-radius: 9999px;
1178
+ }
1179
+
1099
1180
  .rounded-lg {
1100
1181
  border-radius: 0.5rem;
1101
1182
  }
@@ -1104,6 +1185,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1104
1185
  border-radius: 0.375rem;
1105
1186
  }
1106
1187
 
1188
+ .rounded-sm {
1189
+ border-radius: 0.125rem;
1190
+ }
1191
+
1107
1192
  .rounded-xl {
1108
1193
  border-radius: 0.75rem;
1109
1194
  }
@@ -1173,6 +1258,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1173
1258
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1174
1259
  }
1175
1260
 
1261
+ .border-grey-300 {
1262
+ --tw-border-opacity: 1;
1263
+ border-color: rgb(221 221 221 / var(--tw-border-opacity));
1264
+ }
1265
+
1176
1266
  .border-grey-400 {
1177
1267
  --tw-border-opacity: 1;
1178
1268
  border-color: rgb(153 153 153 / var(--tw-border-opacity));
@@ -1258,6 +1348,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1258
1348
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1259
1349
  }
1260
1350
 
1351
+ .bg-grey-200 {
1352
+ --tw-bg-opacity: 1;
1353
+ background-color: rgb(238 238 238 / var(--tw-bg-opacity));
1354
+ }
1355
+
1356
+ .bg-grey-300 {
1357
+ --tw-bg-opacity: 1;
1358
+ background-color: rgb(221 221 221 / var(--tw-bg-opacity));
1359
+ }
1360
+
1261
1361
  .bg-grey-600 {
1262
1362
  --tw-bg-opacity: 1;
1263
1363
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
@@ -1299,11 +1399,20 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1299
1399
  padding: 1rem;
1300
1400
  }
1301
1401
 
1402
+ .p-5 {
1403
+ padding: 1.25rem;
1404
+ }
1405
+
1302
1406
  .px-2 {
1303
1407
  padding-left: 0.5rem;
1304
1408
  padding-right: 0.5rem;
1305
1409
  }
1306
1410
 
1411
+ .px-3 {
1412
+ padding-left: 0.75rem;
1413
+ padding-right: 0.75rem;
1414
+ }
1415
+
1307
1416
  .px-4 {
1308
1417
  padding-left: 1rem;
1309
1418
  padding-right: 1rem;
@@ -1372,6 +1481,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1372
1481
  padding-bottom: 0.5rem;
1373
1482
  }
1374
1483
 
1484
+ .pb-20 {
1485
+ padding-bottom: 5rem;
1486
+ }
1487
+
1375
1488
  .pb-3 {
1376
1489
  padding-bottom: 0.75rem;
1377
1490
  }
@@ -1396,6 +1509,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1396
1509
  padding-bottom: 2rem;
1397
1510
  }
1398
1511
 
1512
+ .pl-0 {
1513
+ padding-left: 0px;
1514
+ }
1515
+
1516
+ .pl-0\\.5 {
1517
+ padding-left: 0.125rem;
1518
+ }
1519
+
1399
1520
  .pl-1 {
1400
1521
  padding-left: 0.25rem;
1401
1522
  }
@@ -1408,6 +1529,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1408
1529
  padding-left: 1rem;
1409
1530
  }
1410
1531
 
1532
+ .pl-px {
1533
+ padding-left: 1px;
1534
+ }
1535
+
1411
1536
  .pr-14 {
1412
1537
  padding-right: 3.5rem;
1413
1538
  }
@@ -1416,6 +1541,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1416
1541
  padding-right: 0.5rem;
1417
1542
  }
1418
1543
 
1544
+ .pr-3 {
1545
+ padding-right: 0.75rem;
1546
+ }
1547
+
1419
1548
  .pt-0 {
1420
1549
  padding-top: 0px;
1421
1550
  }
@@ -1452,10 +1581,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1452
1581
  text-align: start;
1453
1582
  }
1454
1583
 
1584
+ .text-end {
1585
+ text-align: end;
1586
+ }
1587
+
1455
1588
  .font-serif {
1456
1589
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
1457
1590
  }
1458
1591
 
1592
+ .text-2xl {
1593
+ font-size: 1.5rem;
1594
+ line-height: 2rem;
1595
+ }
1596
+
1459
1597
  .text-\\[11px\\] {
1460
1598
  font-size: 11px;
1461
1599
  }
@@ -1480,6 +1618,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1480
1618
  line-height: 1rem;
1481
1619
  }
1482
1620
 
1621
+ .text-xxs {
1622
+ font-size: 0.625rem;
1623
+ }
1624
+
1483
1625
  .font-bold {
1484
1626
  font-weight: 700;
1485
1627
  }
@@ -1492,6 +1634,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1492
1634
  font-weight: 400;
1493
1635
  }
1494
1636
 
1637
+ .capitalize {
1638
+ text-transform: capitalize;
1639
+ }
1640
+
1495
1641
  .leading-4 {
1496
1642
  line-height: 1rem;
1497
1643
  }
@@ -1618,6 +1764,15 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1618
1764
  text-decoration-line: underline;
1619
1765
  }
1620
1766
 
1767
+ .shadow-lg {
1768
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
1769
+ 0 4px 6px -4px rgb(0 0 0 / 0.1);
1770
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
1771
+ 0 4px 6px -4px var(--tw-shadow-color);
1772
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
1773
+ var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1774
+ }
1775
+
1621
1776
  .shadow-sm {
1622
1777
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1623
1778
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
@@ -1625,6 +1780,29 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1625
1780
  var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1626
1781
  }
1627
1782
 
1783
+ .transition {
1784
+ transition-property: color, background-color, border-color,
1785
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1786
+ filter, -webkit-backdrop-filter;
1787
+ transition-property: color, background-color, border-color,
1788
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1789
+ filter, backdrop-filter;
1790
+ transition-property: color, background-color, border-color,
1791
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
1792
+ filter, backdrop-filter, -webkit-backdrop-filter;
1793
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1794
+ transition-duration: 150ms;
1795
+ }
1796
+
1797
+ .hover\\:underline:hover {
1798
+ text-decoration-line: underline;
1799
+ }
1800
+
1801
+ .focus\\:outline-none:focus {
1802
+ outline: 2px solid transparent;
1803
+ outline-offset: 2px;
1804
+ }
1805
+
1628
1806
  @media (min-width: 640px) {
1629
1807
  .sm\\:max-w-lg {
1630
1808
  max-width: 32rem;