@kompasid/lit-web-components 0.9.28 → 0.9.30
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/demo/index.html +25 -1
- package/dist/src/components/kompasid-metered-paywall-personalize/KompasMeteredPaywallPersonalize.d.ts +71 -0
- package/dist/src/components/kompasid-metered-paywall-personalize/KompasMeteredPaywallPersonalize.js +725 -0
- package/dist/src/components/kompasid-metered-paywall-personalize/KompasMeteredPaywallPersonalize.js.map +1 -0
- package/dist/src/components/kompasid-metered-paywall-personalize/types.d.ts +23 -0
- package/dist/src/components/kompasid-metered-paywall-personalize/types.js +2 -0
- package/dist/src/components/kompasid-metered-paywall-personalize/types.js.map +1 -0
- package/dist/src/components/kompasid-paywall/KompasPaywall.js +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +2 -2
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/tailwind/tailwind.js +179 -16
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-metered-paywall-personalize/KompasMeteredPaywallPersonalize.ts +752 -0
- package/src/components/kompasid-metered-paywall-personalize/readme.md +156 -0
- package/src/components/kompasid-metered-paywall-personalize/types.ts +26 -0
- package/src/components/kompasid-paywall/KompasPaywall.ts +1 -1
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +2 -2
- package/src/index.ts +1 -0
- package/tailwind/tailwind.css +188 -6
- package/tailwind/tailwind.ts +179 -16
package/tailwind/tailwind.ts
CHANGED
|
@@ -617,10 +617,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
617
617
|
right: 0px;
|
|
618
618
|
}
|
|
619
619
|
|
|
620
|
+
.right-4 {
|
|
621
|
+
right: 1rem;
|
|
622
|
+
}
|
|
623
|
+
|
|
620
624
|
.top-0 {
|
|
621
625
|
top: 0px;
|
|
622
626
|
}
|
|
623
627
|
|
|
628
|
+
.top-4 {
|
|
629
|
+
top: 1rem;
|
|
630
|
+
}
|
|
631
|
+
|
|
624
632
|
.z-0 {
|
|
625
633
|
z-index: 0;
|
|
626
634
|
}
|
|
@@ -641,6 +649,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
641
649
|
z-index: 100;
|
|
642
650
|
}
|
|
643
651
|
|
|
652
|
+
.z-\\[999\\] {
|
|
653
|
+
z-index: 999;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.order-1 {
|
|
657
|
+
order: 1;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.order-2 {
|
|
661
|
+
order: 2;
|
|
662
|
+
}
|
|
663
|
+
|
|
644
664
|
.col-span-2 {
|
|
645
665
|
grid-column: span 2 / span 2;
|
|
646
666
|
}
|
|
@@ -673,11 +693,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
673
693
|
margin-right: 1.5rem;
|
|
674
694
|
}
|
|
675
695
|
|
|
676
|
-
.mx-8 {
|
|
677
|
-
margin-left: 1.75rem;
|
|
678
|
-
margin-right: 1.75rem;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
696
|
.mx-auto {
|
|
682
697
|
margin-left: auto;
|
|
683
698
|
margin-right: auto;
|
|
@@ -763,6 +778,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
763
778
|
margin-left: 0.75rem;
|
|
764
779
|
}
|
|
765
780
|
|
|
781
|
+
.ml-4 {
|
|
782
|
+
margin-left: 1rem;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.ml-6 {
|
|
786
|
+
margin-left: 1.5rem;
|
|
787
|
+
}
|
|
788
|
+
|
|
766
789
|
.ml-8 {
|
|
767
790
|
margin-left: 2rem;
|
|
768
791
|
}
|
|
@@ -771,6 +794,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
771
794
|
margin-left: auto;
|
|
772
795
|
}
|
|
773
796
|
|
|
797
|
+
.mr-1 {
|
|
798
|
+
margin-right: 0.25rem;
|
|
799
|
+
}
|
|
800
|
+
|
|
774
801
|
.mr-10 {
|
|
775
802
|
margin-right: 2.5rem;
|
|
776
803
|
}
|
|
@@ -803,6 +830,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
803
830
|
margin-top: 0.25rem;
|
|
804
831
|
}
|
|
805
832
|
|
|
833
|
+
.mt-10 {
|
|
834
|
+
margin-top: 2.5rem;
|
|
835
|
+
}
|
|
836
|
+
|
|
806
837
|
.mt-2 {
|
|
807
838
|
margin-top: 0.5rem;
|
|
808
839
|
}
|
|
@@ -1020,6 +1051,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1020
1051
|
width: 2.25rem;
|
|
1021
1052
|
}
|
|
1022
1053
|
|
|
1054
|
+
.w-\\[112px\\] {
|
|
1055
|
+
width: 112px;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1023
1058
|
.w-\\[120px\\] {
|
|
1024
1059
|
width: 120px;
|
|
1025
1060
|
}
|
|
@@ -1032,6 +1067,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1032
1067
|
width: 216px;
|
|
1033
1068
|
}
|
|
1034
1069
|
|
|
1070
|
+
.w-\\[248px\\] {
|
|
1071
|
+
width: 248px;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1035
1074
|
.w-\\[276px\\] {
|
|
1036
1075
|
width: 276px;
|
|
1037
1076
|
}
|
|
@@ -1061,10 +1100,22 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1061
1100
|
width: 100vw;
|
|
1062
1101
|
}
|
|
1063
1102
|
|
|
1103
|
+
.max-w-5xl {
|
|
1104
|
+
max-width: 64rem;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1064
1107
|
.max-w-7xl {
|
|
1065
1108
|
max-width: 80rem;
|
|
1066
1109
|
}
|
|
1067
1110
|
|
|
1111
|
+
.max-w-\\[1200px\\] {
|
|
1112
|
+
max-width: 1200px;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.max-w-\\[460px\\] {
|
|
1116
|
+
max-width: 460px;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1068
1119
|
.max-w-screen-md {
|
|
1069
1120
|
max-width: 768px;
|
|
1070
1121
|
}
|
|
@@ -1081,6 +1132,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1081
1132
|
max-width: 20rem;
|
|
1082
1133
|
}
|
|
1083
1134
|
|
|
1135
|
+
.max-w-4xl {
|
|
1136
|
+
max-width: 56rem;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1084
1139
|
.flex-none {
|
|
1085
1140
|
flex: none;
|
|
1086
1141
|
}
|
|
@@ -1203,6 +1258,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1203
1258
|
align-items: center;
|
|
1204
1259
|
}
|
|
1205
1260
|
|
|
1261
|
+
.items-baseline {
|
|
1262
|
+
align-items: baseline;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1206
1265
|
.justify-start {
|
|
1207
1266
|
justify-content: flex-start;
|
|
1208
1267
|
}
|
|
@@ -1231,6 +1290,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1231
1290
|
gap: 0.5rem;
|
|
1232
1291
|
}
|
|
1233
1292
|
|
|
1293
|
+
.gap-3 {
|
|
1294
|
+
gap: 0.75rem;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1234
1297
|
.gap-4 {
|
|
1235
1298
|
gap: 1rem;
|
|
1236
1299
|
}
|
|
@@ -1323,6 +1386,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1323
1386
|
white-space: nowrap;
|
|
1324
1387
|
}
|
|
1325
1388
|
|
|
1389
|
+
.text-wrap {
|
|
1390
|
+
text-wrap: wrap;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1326
1393
|
.break-words {
|
|
1327
1394
|
overflow-wrap: break-word;
|
|
1328
1395
|
}
|
|
@@ -1701,6 +1768,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1701
1768
|
padding-bottom: 5.6px;
|
|
1702
1769
|
}
|
|
1703
1770
|
|
|
1771
|
+
.py-9 {
|
|
1772
|
+
padding-top: 2.25rem;
|
|
1773
|
+
padding-bottom: 2.25rem;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.py-6 {
|
|
1777
|
+
padding-top: 1.5rem;
|
|
1778
|
+
padding-bottom: 1.5rem;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1704
1781
|
.pb-1 {
|
|
1705
1782
|
padding-bottom: 0.25rem;
|
|
1706
1783
|
}
|
|
@@ -1757,10 +1834,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1757
1834
|
padding-left: 1rem;
|
|
1758
1835
|
}
|
|
1759
1836
|
|
|
1760
|
-
.pl-8 {
|
|
1761
|
-
padding-left: 2rem;
|
|
1762
|
-
}
|
|
1763
|
-
|
|
1764
1837
|
.pl-px {
|
|
1765
1838
|
padding-left: 1px;
|
|
1766
1839
|
}
|
|
@@ -1797,6 +1870,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1797
1870
|
padding-top: 0.5rem;
|
|
1798
1871
|
}
|
|
1799
1872
|
|
|
1873
|
+
.pt-3 {
|
|
1874
|
+
padding-top: 0.75rem;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1800
1877
|
.pt-4 {
|
|
1801
1878
|
padding-top: 1rem;
|
|
1802
1879
|
}
|
|
@@ -1821,6 +1898,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1821
1898
|
text-align: start;
|
|
1822
1899
|
}
|
|
1823
1900
|
|
|
1901
|
+
.align-baseline {
|
|
1902
|
+
vertical-align: baseline;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1824
1905
|
.font-sans {
|
|
1825
1906
|
font-family: 'PT Sans', Arial, Verdana, Helvetica, sans-serif;
|
|
1826
1907
|
}
|
|
@@ -2098,19 +2179,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2098
2179
|
transition-duration: 150ms;
|
|
2099
2180
|
}
|
|
2100
2181
|
|
|
2101
|
-
.hover\\:bg-\\[\\#f3f4f6\\]:hover {
|
|
2102
|
-
--tw-bg-opacity: 1;
|
|
2103
|
-
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
2104
|
-
}
|
|
2105
|
-
|
|
2106
2182
|
.hover\\:bg-\\[\\#f4f4f4\\]:hover {
|
|
2107
2183
|
--tw-bg-opacity: 1;
|
|
2108
2184
|
background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
|
|
2109
2185
|
}
|
|
2110
2186
|
|
|
2111
2187
|
.hover\\:text-\\[\\#222222\\]:hover {
|
|
2112
|
-
--tw-
|
|
2113
|
-
color: rgb(34 34 34 / var(--tw-
|
|
2188
|
+
--tw-text-opacity: 1;
|
|
2189
|
+
color: rgb(34 34 34 / var(--tw-text-opacity, 1));
|
|
2114
2190
|
}
|
|
2115
2191
|
|
|
2116
2192
|
.hover\\:underline:hover {
|
|
@@ -2552,6 +2628,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2552
2628
|
}
|
|
2553
2629
|
|
|
2554
2630
|
@media (min-width: 1024px) {
|
|
2631
|
+
.lg\\:static {
|
|
2632
|
+
position: static;
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
.lg\\:order-2 {
|
|
2636
|
+
order: 2;
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2555
2639
|
.lg\\:col-span-2 {
|
|
2556
2640
|
grid-column: span 2 / span 2;
|
|
2557
2641
|
}
|
|
@@ -2577,6 +2661,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2577
2661
|
margin-bottom: 0px;
|
|
2578
2662
|
}
|
|
2579
2663
|
|
|
2664
|
+
.lg\\:mb-2 {
|
|
2665
|
+
margin-bottom: 0.5rem;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.lg\\:mb-4 {
|
|
2669
|
+
margin-bottom: 1rem;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.lg\\:ml-6 {
|
|
2673
|
+
margin-left: 1.5rem;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2580
2676
|
.lg\\:mt-0 {
|
|
2581
2677
|
margin-top: 0px;
|
|
2582
2678
|
}
|
|
@@ -2593,6 +2689,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2593
2689
|
display: none;
|
|
2594
2690
|
}
|
|
2595
2691
|
|
|
2692
|
+
.lg\\:h-10 {
|
|
2693
|
+
height: 2.5rem;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.lg\\:h-8 {
|
|
2697
|
+
height: 2rem;
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2596
2700
|
.lg\\:min-h-\\[220px\\] {
|
|
2597
2701
|
min-height: 220px;
|
|
2598
2702
|
}
|
|
@@ -2605,6 +2709,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2605
2709
|
width: 33.333333%;
|
|
2606
2710
|
}
|
|
2607
2711
|
|
|
2712
|
+
.lg\\:w-8 {
|
|
2713
|
+
width: 2rem;
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
.lg\\:w-\\[202px\\] {
|
|
2717
|
+
width: 202px;
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
.lg\\:w-\\[364px\\] {
|
|
2721
|
+
width: 364px;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2608
2724
|
.lg\\:w-\\[410px\\] {
|
|
2609
2725
|
width: 410px;
|
|
2610
2726
|
}
|
|
@@ -2633,6 +2749,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2633
2749
|
flex-direction: column;
|
|
2634
2750
|
}
|
|
2635
2751
|
|
|
2752
|
+
.lg\\:items-start {
|
|
2753
|
+
align-items: flex-start;
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2636
2756
|
.lg\\:items-center {
|
|
2637
2757
|
align-items: center;
|
|
2638
2758
|
}
|
|
@@ -2668,6 +2788,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2668
2788
|
padding-right: 6rem;
|
|
2669
2789
|
}
|
|
2670
2790
|
|
|
2791
|
+
.lg\\:px-6 {
|
|
2792
|
+
padding-left: 1.5rem;
|
|
2793
|
+
padding-right: 1.5rem;
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2671
2796
|
.lg\\:px-8 {
|
|
2672
2797
|
padding-left: 2rem;
|
|
2673
2798
|
padding-right: 2rem;
|
|
@@ -2678,6 +2803,21 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2678
2803
|
padding-bottom: 2.5rem;
|
|
2679
2804
|
}
|
|
2680
2805
|
|
|
2806
|
+
.lg\\:py-3 {
|
|
2807
|
+
padding-top: 0.75rem;
|
|
2808
|
+
padding-bottom: 0.75rem;
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
.lg\\:py-8 {
|
|
2812
|
+
padding-top: 2rem;
|
|
2813
|
+
padding-bottom: 2rem;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
.lg\\:py-9 {
|
|
2817
|
+
padding-top: 2.25rem;
|
|
2818
|
+
padding-bottom: 2.25rem;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2681
2821
|
.lg\\:pb-0 {
|
|
2682
2822
|
padding-bottom: 0px;
|
|
2683
2823
|
}
|
|
@@ -2685,6 +2825,29 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2685
2825
|
.lg\\:pb-6 {
|
|
2686
2826
|
padding-bottom: 1.5rem;
|
|
2687
2827
|
}
|
|
2828
|
+
|
|
2829
|
+
.lg\\:pt-9 {
|
|
2830
|
+
padding-top: 2.25rem;
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
.lg\\:text-start {
|
|
2834
|
+
text-align: start;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.lg\\:text-2xl {
|
|
2838
|
+
font-size: 1.5rem;
|
|
2839
|
+
line-height: 2rem;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
.lg\\:text-base {
|
|
2843
|
+
font-size: 1rem;
|
|
2844
|
+
line-height: 1.5rem;
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
.lg\\:text-lg {
|
|
2848
|
+
font-size: 1.125rem;
|
|
2849
|
+
line-height: 1.75rem;
|
|
2850
|
+
}
|
|
2688
2851
|
}
|
|
2689
2852
|
|
|
2690
2853
|
@media (min-width: 1280px) {
|