@kompasid/lit-web-components 0.6.4 → 0.6.7
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/assets/kompas-free-trial.png +0 -0
- package/assets/qr-code.png +0 -0
- package/demo/index.html +2 -2
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +2 -2
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -1
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +8 -8
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.js +2 -0
- package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
- package/dist/src/components/kompasid-paywall/types.d.ts +1 -0
- package/dist/src/components/kompasid-paywall/types.js.map +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +4 -0
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +130 -0
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/tailwind/tailwind.js +213 -5
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +2 -2
- package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +8 -8
- package/src/components/kompasid-paywall/KompasPaywall.ts +2 -0
- package/src/components/kompasid-paywall/types.ts +1 -0
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +133 -0
- package/tailwind/tailwind.css +213 -5
- package/tailwind/tailwind.ts +213 -5
package/tailwind/tailwind.ts
CHANGED
|
@@ -735,6 +735,10 @@ 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
|
+
|
|
738
742
|
.mr-3 {
|
|
739
743
|
margin-right: 0.75rem;
|
|
740
744
|
}
|
|
@@ -775,6 +779,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
775
779
|
margin-top: 2rem;
|
|
776
780
|
}
|
|
777
781
|
|
|
782
|
+
.mr-6 {
|
|
783
|
+
margin-right: 1.5rem;
|
|
784
|
+
}
|
|
785
|
+
|
|
778
786
|
.block {
|
|
779
787
|
display: block;
|
|
780
788
|
}
|
|
@@ -868,6 +876,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
868
876
|
height: max-content;
|
|
869
877
|
}
|
|
870
878
|
|
|
879
|
+
.h-12 {
|
|
880
|
+
height: 3rem;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.w-1\\/2 {
|
|
884
|
+
width: 50%;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.w-1\\/4 {
|
|
888
|
+
width: 25%;
|
|
889
|
+
}
|
|
890
|
+
|
|
871
891
|
.w-1\\/5 {
|
|
872
892
|
width: 20%;
|
|
873
893
|
}
|
|
@@ -924,6 +944,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
924
944
|
width: 2rem;
|
|
925
945
|
}
|
|
926
946
|
|
|
947
|
+
.w-80 {
|
|
948
|
+
width: 20rem;
|
|
949
|
+
}
|
|
950
|
+
|
|
927
951
|
.w-9 {
|
|
928
952
|
width: 2.25rem;
|
|
929
953
|
}
|
|
@@ -952,6 +976,30 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
952
976
|
width: 100%;
|
|
953
977
|
}
|
|
954
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
|
+
|
|
955
1003
|
.max-w-7xl {
|
|
956
1004
|
max-width: 80rem;
|
|
957
1005
|
}
|
|
@@ -1103,6 +1151,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1103
1151
|
gap: 2rem;
|
|
1104
1152
|
}
|
|
1105
1153
|
|
|
1154
|
+
.gap-2 {
|
|
1155
|
+
gap: 0.5rem;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1106
1158
|
.gap-y-2 {
|
|
1107
1159
|
row-gap: 0.5rem;
|
|
1108
1160
|
}
|
|
@@ -1373,6 +1425,21 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1373
1425
|
background-color: rgb(255 220 63 / var(--tw-bg-opacity));
|
|
1374
1426
|
}
|
|
1375
1427
|
|
|
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
|
+
|
|
1376
1443
|
.bg-opacity-75 {
|
|
1377
1444
|
--tw-bg-opacity: 0.75;
|
|
1378
1445
|
}
|
|
@@ -1387,6 +1454,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1387
1454
|
object-fit: scale-down;
|
|
1388
1455
|
}
|
|
1389
1456
|
|
|
1457
|
+
.p-1 {
|
|
1458
|
+
padding: 0.25rem;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.p-1\\.5 {
|
|
1462
|
+
padding: 0.375rem;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1390
1465
|
.p-2 {
|
|
1391
1466
|
padding: 0.5rem;
|
|
1392
1467
|
}
|
|
@@ -1403,6 +1478,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1403
1478
|
padding: 1.25rem;
|
|
1404
1479
|
}
|
|
1405
1480
|
|
|
1481
|
+
.p-8 {
|
|
1482
|
+
padding: 2rem;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.p-6 {
|
|
1486
|
+
padding: 1.5rem;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.px-10 {
|
|
1490
|
+
padding-left: 2.5rem;
|
|
1491
|
+
padding-right: 2.5rem;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1406
1494
|
.px-2 {
|
|
1407
1495
|
padding-left: 0.5rem;
|
|
1408
1496
|
padding-right: 0.5rem;
|
|
@@ -1418,11 +1506,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1418
1506
|
padding-right: 1rem;
|
|
1419
1507
|
}
|
|
1420
1508
|
|
|
1421
|
-
.px-5 {
|
|
1422
|
-
padding-left: 1.25rem;
|
|
1423
|
-
padding-right: 1.25rem;
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
1509
|
.px-8 {
|
|
1427
1510
|
padding-left: 2rem;
|
|
1428
1511
|
padding-right: 2rem;
|
|
@@ -1473,6 +1556,31 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1473
1556
|
padding-bottom: 5.6px;
|
|
1474
1557
|
}
|
|
1475
1558
|
|
|
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
|
+
|
|
1476
1584
|
.pb-1 {
|
|
1477
1585
|
padding-bottom: 0.25rem;
|
|
1478
1586
|
}
|
|
@@ -1760,6 +1868,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1760
1868
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1761
1869
|
}
|
|
1762
1870
|
|
|
1871
|
+
.text-grey-400 {
|
|
1872
|
+
--tw-text-opacity: 1;
|
|
1873
|
+
color: rgb(153 153 153 / var(--tw-text-opacity));
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1763
1876
|
.underline {
|
|
1764
1877
|
text-decoration-line: underline;
|
|
1765
1878
|
}
|
|
@@ -1804,6 +1917,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1804
1917
|
}
|
|
1805
1918
|
|
|
1806
1919
|
@media (min-width: 640px) {
|
|
1920
|
+
.sm\\:w-1\\/2 {
|
|
1921
|
+
width: 50%;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.sm\\:w-3\\/4 {
|
|
1925
|
+
width: 75%;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.sm\\:w-1\\/4 {
|
|
1929
|
+
width: 25%;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1807
1932
|
.sm\\:max-w-lg {
|
|
1808
1933
|
max-width: 32rem;
|
|
1809
1934
|
}
|
|
@@ -1942,6 +2067,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1942
2067
|
width: 100%;
|
|
1943
2068
|
}
|
|
1944
2069
|
|
|
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
|
+
|
|
1945
2090
|
.md\\:max-w-\\[137px\\] {
|
|
1946
2091
|
max-width: 137px;
|
|
1947
2092
|
}
|
|
@@ -2085,6 +2230,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2085
2230
|
padding-bottom: 1.5rem;
|
|
2086
2231
|
}
|
|
2087
2232
|
|
|
2233
|
+
.md\\:px-8 {
|
|
2234
|
+
padding-left: 2rem;
|
|
2235
|
+
padding-right: 2rem;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2088
2238
|
.md\\:pb-4 {
|
|
2089
2239
|
padding-bottom: 1rem;
|
|
2090
2240
|
}
|
|
@@ -2182,6 +2332,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2182
2332
|
display: block;
|
|
2183
2333
|
}
|
|
2184
2334
|
|
|
2335
|
+
.lg\\:flex {
|
|
2336
|
+
display: flex;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.lg\\:hidden {
|
|
2340
|
+
display: none;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2185
2343
|
.lg\\:min-h-\\[220px\\] {
|
|
2186
2344
|
min-height: 220px;
|
|
2187
2345
|
}
|
|
@@ -2190,6 +2348,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2190
2348
|
width: 410px;
|
|
2191
2349
|
}
|
|
2192
2350
|
|
|
2351
|
+
.lg\\:w-1\\/2 {
|
|
2352
|
+
width: 50%;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.lg\\:w-1\\/3 {
|
|
2356
|
+
width: 33.333333%;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.lg\\:w-3\\/4 {
|
|
2360
|
+
width: 75%;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.lg\\:w-2 {
|
|
2364
|
+
width: 0.5rem;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.lg\\:w-2\\/3 {
|
|
2368
|
+
width: 66.666667%;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2193
2371
|
.lg\\:max-w-7xl {
|
|
2194
2372
|
max-width: 80rem;
|
|
2195
2373
|
}
|
|
@@ -2260,9 +2438,39 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2260
2438
|
}
|
|
2261
2439
|
|
|
2262
2440
|
@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
|
+
|
|
2263
2465
|
.xl\\:px-0 {
|
|
2264
2466
|
padding-left: 0px;
|
|
2265
2467
|
padding-right: 0px;
|
|
2266
2468
|
}
|
|
2267
2469
|
}
|
|
2470
|
+
|
|
2471
|
+
@media (min-width: 1536px) {
|
|
2472
|
+
.\\32xl\\:w-1\\/4 {
|
|
2473
|
+
width: 25%;
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2268
2476
|
`
|