@kompasid/lit-web-components 0.6.7 → 0.6.8
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 +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +39 -11
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/tailwind/tailwind.js +48 -175
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +39 -11
- package/tailwind/tailwind.css +48 -175
- package/tailwind/tailwind.ts +48 -175
- package/tailwind.config.js +2 -1
- package/assets/kompas-free-trial.png +0 -0
- package/assets/qr-code.png +0 -0
package/tailwind/tailwind.ts
CHANGED
|
@@ -735,10 +735,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
735
735
|
margin-right: 2.5rem;
|
|
736
736
|
}
|
|
737
737
|
|
|
738
|
-
.mr-2 {
|
|
739
|
-
margin-right: 0.5rem;
|
|
740
|
-
}
|
|
741
|
-
|
|
742
738
|
.mr-3 {
|
|
743
739
|
margin-right: 0.75rem;
|
|
744
740
|
}
|
|
@@ -751,6 +747,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
751
747
|
margin-right: 1rem;
|
|
752
748
|
}
|
|
753
749
|
|
|
750
|
+
.mr-6 {
|
|
751
|
+
margin-right: 1.5rem;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
754
|
.mt-1 {
|
|
755
755
|
margin-top: 0.25rem;
|
|
756
756
|
}
|
|
@@ -779,10 +779,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
779
779
|
margin-top: 2rem;
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
-
.mr-6 {
|
|
783
|
-
margin-right: 1.5rem;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
782
|
.block {
|
|
787
783
|
display: block;
|
|
788
784
|
}
|
|
@@ -803,6 +799,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
803
799
|
height: 2.5rem;
|
|
804
800
|
}
|
|
805
801
|
|
|
802
|
+
.h-12 {
|
|
803
|
+
height: 3rem;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
806
|
.h-16 {
|
|
807
807
|
height: 4rem;
|
|
808
808
|
}
|
|
@@ -876,16 +876,8 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
876
876
|
height: max-content;
|
|
877
877
|
}
|
|
878
878
|
|
|
879
|
-
.
|
|
880
|
-
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
.w-1\\/2 {
|
|
884
|
-
width: 50%;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.w-1\\/4 {
|
|
888
|
-
width: 25%;
|
|
879
|
+
.w-1\\/3 {
|
|
880
|
+
width: 33.333333%;
|
|
889
881
|
}
|
|
890
882
|
|
|
891
883
|
.w-1\\/5 {
|
|
@@ -896,6 +888,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
896
888
|
width: 2.5rem;
|
|
897
889
|
}
|
|
898
890
|
|
|
891
|
+
.w-11\\/12 {
|
|
892
|
+
width: 91.666667%;
|
|
893
|
+
}
|
|
894
|
+
|
|
899
895
|
.w-16 {
|
|
900
896
|
width: 4rem;
|
|
901
897
|
}
|
|
@@ -908,10 +904,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
908
904
|
width: 0.625rem;
|
|
909
905
|
}
|
|
910
906
|
|
|
907
|
+
.w-2\\/3 {
|
|
908
|
+
width: 66.666667%;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
911
|
.w-20 {
|
|
912
912
|
width: 5rem;
|
|
913
913
|
}
|
|
914
914
|
|
|
915
|
+
.w-3\\/4 {
|
|
916
|
+
width: 75%;
|
|
917
|
+
}
|
|
918
|
+
|
|
915
919
|
.w-32 {
|
|
916
920
|
width: 8rem;
|
|
917
921
|
}
|
|
@@ -944,10 +948,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
944
948
|
width: 2rem;
|
|
945
949
|
}
|
|
946
950
|
|
|
947
|
-
.w-80 {
|
|
948
|
-
width: 20rem;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
951
|
.w-9 {
|
|
952
952
|
width: 2.25rem;
|
|
953
953
|
}
|
|
@@ -976,30 +976,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
976
976
|
width: 100%;
|
|
977
977
|
}
|
|
978
978
|
|
|
979
|
-
.w-1\\/3 {
|
|
980
|
-
width: 33.333333%;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
.w-3\\/4 {
|
|
984
|
-
width: 75%;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.w-4\\/5 {
|
|
988
|
-
width: 80%;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
.w-2\\/4 {
|
|
992
|
-
width: 50%;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.w-2\\/3 {
|
|
996
|
-
width: 66.666667%;
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
.w-11\\/12 {
|
|
1000
|
-
width: 91.666667%;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
979
|
.max-w-7xl {
|
|
1004
980
|
max-width: 80rem;
|
|
1005
981
|
}
|
|
@@ -1151,10 +1127,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1151
1127
|
gap: 2rem;
|
|
1152
1128
|
}
|
|
1153
1129
|
|
|
1154
|
-
.gap-2 {
|
|
1155
|
-
gap: 0.5rem;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
1130
|
.gap-y-2 {
|
|
1159
1131
|
row-gap: 0.5rem;
|
|
1160
1132
|
}
|
|
@@ -1290,6 +1262,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1290
1262
|
border-color: rgb(136 136 136 / var(--tw-border-opacity));
|
|
1291
1263
|
}
|
|
1292
1264
|
|
|
1265
|
+
.border-dark-9 {
|
|
1266
|
+
--tw-border-opacity: 1;
|
|
1267
|
+
border-color: rgb(35 35 35 / var(--tw-border-opacity));
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1293
1270
|
.border-green-400 {
|
|
1294
1271
|
--tw-border-opacity: 1;
|
|
1295
1272
|
border-color: rgb(106 195 34 / var(--tw-border-opacity));
|
|
@@ -1425,21 +1402,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1425
1402
|
background-color: rgb(255 220 63 / var(--tw-bg-opacity));
|
|
1426
1403
|
}
|
|
1427
1404
|
|
|
1428
|
-
.bg-red-300 {
|
|
1429
|
-
--tw-bg-opacity: 1;
|
|
1430
|
-
background-color: rgb(247 100 76 / var(--tw-bg-opacity));
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
.bg-red-500 {
|
|
1434
|
-
--tw-bg-opacity: 1;
|
|
1435
|
-
background-color: rgb(208 13 18 / var(--tw-bg-opacity));
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
.bg-red-400 {
|
|
1439
|
-
--tw-bg-opacity: 1;
|
|
1440
|
-
background-color: rgb(243 32 19 / var(--tw-bg-opacity));
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
1405
|
.bg-opacity-75 {
|
|
1444
1406
|
--tw-bg-opacity: 0.75;
|
|
1445
1407
|
}
|
|
@@ -1478,19 +1440,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1478
1440
|
padding: 1.25rem;
|
|
1479
1441
|
}
|
|
1480
1442
|
|
|
1481
|
-
.p-8 {
|
|
1482
|
-
padding: 2rem;
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
1443
|
.p-6 {
|
|
1486
1444
|
padding: 1.5rem;
|
|
1487
1445
|
}
|
|
1488
1446
|
|
|
1489
|
-
.px-10 {
|
|
1490
|
-
padding-left: 2.5rem;
|
|
1491
|
-
padding-right: 2.5rem;
|
|
1492
|
-
}
|
|
1493
|
-
|
|
1494
1447
|
.px-2 {
|
|
1495
1448
|
padding-left: 0.5rem;
|
|
1496
1449
|
padding-right: 0.5rem;
|
|
@@ -1556,31 +1509,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1556
1509
|
padding-bottom: 5.6px;
|
|
1557
1510
|
}
|
|
1558
1511
|
|
|
1559
|
-
.px-9 {
|
|
1560
|
-
padding-left: 2.25rem;
|
|
1561
|
-
padding-right: 2.25rem;
|
|
1562
|
-
}
|
|
1563
|
-
|
|
1564
|
-
.px-6 {
|
|
1565
|
-
padding-left: 1.5rem;
|
|
1566
|
-
padding-right: 1.5rem;
|
|
1567
|
-
}
|
|
1568
|
-
|
|
1569
|
-
.py-6 {
|
|
1570
|
-
padding-top: 1.5rem;
|
|
1571
|
-
padding-bottom: 1.5rem;
|
|
1572
|
-
}
|
|
1573
|
-
|
|
1574
|
-
.py-12 {
|
|
1575
|
-
padding-top: 3rem;
|
|
1576
|
-
padding-bottom: 3rem;
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
.px-0 {
|
|
1580
|
-
padding-left: 0px;
|
|
1581
|
-
padding-right: 0px;
|
|
1582
|
-
}
|
|
1583
|
-
|
|
1584
1512
|
.pb-1 {
|
|
1585
1513
|
padding-bottom: 0.25rem;
|
|
1586
1514
|
}
|
|
@@ -1813,6 +1741,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1813
1741
|
color: rgb(0 85 154 / var(--tw-text-opacity));
|
|
1814
1742
|
}
|
|
1815
1743
|
|
|
1744
|
+
.text-dark-5 {
|
|
1745
|
+
--tw-text-opacity: 1;
|
|
1746
|
+
color: rgb(18 18 18 / var(--tw-text-opacity));
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1816
1749
|
.text-dark-6 {
|
|
1817
1750
|
--tw-text-opacity: 1;
|
|
1818
1751
|
color: rgb(46 46 46 / var(--tw-text-opacity));
|
|
@@ -1848,6 +1781,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1848
1781
|
color: rgb(221 221 221 / var(--tw-text-opacity));
|
|
1849
1782
|
}
|
|
1850
1783
|
|
|
1784
|
+
.text-grey-400 {
|
|
1785
|
+
--tw-text-opacity: 1;
|
|
1786
|
+
color: rgb(153 153 153 / var(--tw-text-opacity));
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1851
1789
|
.text-grey-500 {
|
|
1852
1790
|
--tw-text-opacity: 1;
|
|
1853
1791
|
color: rgb(102 102 102 / var(--tw-text-opacity));
|
|
@@ -1868,11 +1806,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1868
1806
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1869
1807
|
}
|
|
1870
1808
|
|
|
1871
|
-
.text-grey-400 {
|
|
1872
|
-
--tw-text-opacity: 1;
|
|
1873
|
-
color: rgb(153 153 153 / var(--tw-text-opacity));
|
|
1874
|
-
}
|
|
1875
|
-
|
|
1876
1809
|
.underline {
|
|
1877
1810
|
text-decoration-line: underline;
|
|
1878
1811
|
}
|
|
@@ -1917,18 +1850,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1917
1850
|
}
|
|
1918
1851
|
|
|
1919
1852
|
@media (min-width: 640px) {
|
|
1920
|
-
.sm\\:w-1\\/2 {
|
|
1921
|
-
width: 50%;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
1853
|
.sm\\:w-3\\/4 {
|
|
1925
1854
|
width: 75%;
|
|
1926
1855
|
}
|
|
1927
1856
|
|
|
1928
|
-
.sm\\:w-1\\/4 {
|
|
1929
|
-
width: 25%;
|
|
1930
|
-
}
|
|
1931
|
-
|
|
1932
1857
|
.sm\\:max-w-lg {
|
|
1933
1858
|
max-width: 32rem;
|
|
1934
1859
|
}
|
|
@@ -2027,6 +1952,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2027
1952
|
min-height: 244px;
|
|
2028
1953
|
}
|
|
2029
1954
|
|
|
1955
|
+
.md\\:w-1\\/2 {
|
|
1956
|
+
width: 50%;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
2030
1959
|
.md\\:w-3\\/5 {
|
|
2031
1960
|
width: 60%;
|
|
2032
1961
|
}
|
|
@@ -2067,26 +1996,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2067
1996
|
width: 100%;
|
|
2068
1997
|
}
|
|
2069
1998
|
|
|
2070
|
-
.md\\:w-1\\/2 {
|
|
2071
|
-
width: 50%;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
.md\\:w-3\\/4 {
|
|
2075
|
-
width: 75%;
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
|
-
.md\\:w-1\\/4 {
|
|
2079
|
-
width: 25%;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
.md\\:w-1\\/3 {
|
|
2083
|
-
width: 33.333333%;
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
.md\\:w-2\\/3 {
|
|
2087
|
-
width: 66.666667%;
|
|
2088
|
-
}
|
|
2089
|
-
|
|
2090
1999
|
.md\\:max-w-\\[137px\\] {
|
|
2091
2000
|
max-width: 137px;
|
|
2092
2001
|
}
|
|
@@ -2210,6 +2119,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2210
2119
|
padding-right: 1.5rem;
|
|
2211
2120
|
}
|
|
2212
2121
|
|
|
2122
|
+
.md\\:px-8 {
|
|
2123
|
+
padding-left: 2rem;
|
|
2124
|
+
padding-right: 2rem;
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2213
2127
|
.md\\:py-1 {
|
|
2214
2128
|
padding-top: 0.25rem;
|
|
2215
2129
|
padding-bottom: 0.25rem;
|
|
@@ -2230,11 +2144,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2230
2144
|
padding-bottom: 1.5rem;
|
|
2231
2145
|
}
|
|
2232
2146
|
|
|
2233
|
-
.md\\:px-8 {
|
|
2234
|
-
padding-left: 2rem;
|
|
2235
|
-
padding-right: 2rem;
|
|
2236
|
-
}
|
|
2237
|
-
|
|
2238
2147
|
.md\\:pb-4 {
|
|
2239
2148
|
padding-bottom: 1rem;
|
|
2240
2149
|
}
|
|
@@ -2344,10 +2253,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2344
2253
|
min-height: 220px;
|
|
2345
2254
|
}
|
|
2346
2255
|
|
|
2347
|
-
.lg\\:w-\\[410px\\] {
|
|
2348
|
-
width: 410px;
|
|
2349
|
-
}
|
|
2350
|
-
|
|
2351
2256
|
.lg\\:w-1\\/2 {
|
|
2352
2257
|
width: 50%;
|
|
2353
2258
|
}
|
|
@@ -2356,16 +2261,8 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2356
2261
|
width: 33.333333%;
|
|
2357
2262
|
}
|
|
2358
2263
|
|
|
2359
|
-
.lg\\:w
|
|
2360
|
-
width:
|
|
2361
|
-
}
|
|
2362
|
-
|
|
2363
|
-
.lg\\:w-2 {
|
|
2364
|
-
width: 0.5rem;
|
|
2365
|
-
}
|
|
2366
|
-
|
|
2367
|
-
.lg\\:w-2\\/3 {
|
|
2368
|
-
width: 66.666667%;
|
|
2264
|
+
.lg\\:w-\\[410px\\] {
|
|
2265
|
+
width: 410px;
|
|
2369
2266
|
}
|
|
2370
2267
|
|
|
2371
2268
|
.lg\\:max-w-7xl {
|
|
@@ -2438,30 +2335,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2438
2335
|
}
|
|
2439
2336
|
|
|
2440
2337
|
@media (min-width: 1280px) {
|
|
2441
|
-
.xl\\:block {
|
|
2442
|
-
display: block;
|
|
2443
|
-
}
|
|
2444
|
-
|
|
2445
|
-
.xl\\:flex {
|
|
2446
|
-
display: flex;
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
.xl\\:hidden {
|
|
2450
|
-
display: none;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
.xl\\:w-1\\/3 {
|
|
2454
|
-
width: 33.333333%;
|
|
2455
|
-
}
|
|
2456
|
-
|
|
2457
|
-
.xl\\:w-1\\/2 {
|
|
2458
|
-
width: 50%;
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
.xl\\:w-1\\/4 {
|
|
2462
|
-
width: 25%;
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
2338
|
.xl\\:px-0 {
|
|
2466
2339
|
padding-left: 0px;
|
|
2467
2340
|
padding-right: 0px;
|
package/tailwind.config.js
CHANGED
|
Binary file
|
package/assets/qr-code.png
DELETED
|
Binary file
|