@kompasid/lit-web-components 0.9.51 → 0.9.53
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/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +10 -3
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -1
- package/dist/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.js +5 -5
- package/dist/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.js.map +1 -1
- package/dist/tailwind/tailwind.js +45 -17
- 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 +10 -3
- package/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.ts +5 -5
- package/tailwind/tailwind.css +45 -17
- package/tailwind/tailwind.ts +45 -17
|
@@ -38,8 +38,8 @@ export class KompasPaywallModalRegister extends LitElement {
|
|
|
38
38
|
|
|
39
39
|
.close-button {
|
|
40
40
|
position: absolute;
|
|
41
|
-
top:
|
|
42
|
-
right:
|
|
41
|
+
top: 32px;
|
|
42
|
+
right: 32px;
|
|
43
43
|
background: none;
|
|
44
44
|
border: none;
|
|
45
45
|
font-size: 1.5em;
|
|
@@ -456,7 +456,7 @@ export class KompasPaywallModalRegister extends LitElement {
|
|
|
456
456
|
@keydown=${() => this.closeModal()}
|
|
457
457
|
>
|
|
458
458
|
<div
|
|
459
|
-
class="modal-content max-w-7xl w-full flex flex-col lg:flex-row max-h-full overflow-auto lg:overflow-hidden"
|
|
459
|
+
class="modal-content max-w-7xl mx-auto w-full flex flex-col lg:flex-row max-h-full overflow-auto lg:overflow-hidden"
|
|
460
460
|
@click="${(e: { stopPropagation: () => any }) =>
|
|
461
461
|
e.stopPropagation()}"
|
|
462
462
|
@keydown=${(e: { stopPropagation: () => any }) =>
|
|
@@ -583,14 +583,14 @@ export class KompasPaywallModalRegister extends LitElement {
|
|
|
583
583
|
@keydown=${() => this.closeModal()}
|
|
584
584
|
>
|
|
585
585
|
<div
|
|
586
|
-
class="modal-content max-w-[624px] max-h-[577px] items-end flex flex-col justify-end h-full w-full p-4 md:p-10"
|
|
586
|
+
class="modal-content m-auto max-w-[624px] max-h-[577px] items-end flex flex-col justify-end h-full w-full p-4 md:p-10"
|
|
587
587
|
@click="${(e: { stopPropagation: () => any }) =>
|
|
588
588
|
e.stopPropagation()}"
|
|
589
589
|
@keydown=${(e: { stopPropagation: () => any }) =>
|
|
590
590
|
e.stopPropagation()}
|
|
591
591
|
>
|
|
592
592
|
<button class="close-button" @click="${this.closeModal}">
|
|
593
|
-
${unsafeSVG(getFontAwesomeIcon('fa', 'times',
|
|
593
|
+
${unsafeSVG(getFontAwesomeIcon('fa', 'times', 32, 32))}
|
|
594
594
|
</button>
|
|
595
595
|
${this.dataModalRegister.modal.successPopUp.logo
|
|
596
596
|
? html`
|
package/tailwind/tailwind.css
CHANGED
|
@@ -997,19 +997,6 @@ video {
|
|
|
997
997
|
max-height: 100%;
|
|
998
998
|
}
|
|
999
999
|
|
|
1000
|
-
.max-h-screen {
|
|
1001
|
-
max-height: 100vh;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.max-h-\[90vh\] {
|
|
1005
|
-
max-height: 90vh;
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
.max-h-max {
|
|
1009
|
-
max-height: -moz-max-content;
|
|
1010
|
-
max-height: max-content;
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
1000
|
.min-h-\[68px\] {
|
|
1014
1001
|
min-height: 68px;
|
|
1015
1002
|
}
|
|
@@ -1152,6 +1139,10 @@ video {
|
|
|
1152
1139
|
width: 100vw;
|
|
1153
1140
|
}
|
|
1154
1141
|
|
|
1142
|
+
.min-w-0 {
|
|
1143
|
+
min-width: 0px;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1155
1146
|
.max-w-4xl {
|
|
1156
1147
|
max-width: 56rem;
|
|
1157
1148
|
}
|
|
@@ -1212,10 +1203,31 @@ video {
|
|
|
1212
1203
|
max-width: 20rem;
|
|
1213
1204
|
}
|
|
1214
1205
|
|
|
1206
|
+
.max-w-full {
|
|
1207
|
+
max-width: 100%;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.max-w-fit {
|
|
1211
|
+
max-width: -moz-fit-content;
|
|
1212
|
+
max-width: fit-content;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.max-w-\[200px\] {
|
|
1216
|
+
max-width: 200px;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.flex-1 {
|
|
1220
|
+
flex: 1 1 0%;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1215
1223
|
.flex-shrink-0 {
|
|
1216
1224
|
flex-shrink: 0;
|
|
1217
1225
|
}
|
|
1218
1226
|
|
|
1227
|
+
.flex-shrink {
|
|
1228
|
+
flex-shrink: 1;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1219
1231
|
.shrink-0 {
|
|
1220
1232
|
flex-shrink: 0;
|
|
1221
1233
|
}
|
|
@@ -1224,6 +1236,10 @@ video {
|
|
|
1224
1236
|
flex-grow: 1;
|
|
1225
1237
|
}
|
|
1226
1238
|
|
|
1239
|
+
.flex-grow-0 {
|
|
1240
|
+
flex-grow: 0;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1227
1243
|
.rotate-180 {
|
|
1228
1244
|
--tw-rotate: 180deg;
|
|
1229
1245
|
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));
|
|
@@ -1458,6 +1474,10 @@ video {
|
|
|
1458
1474
|
white-space: nowrap;
|
|
1459
1475
|
}
|
|
1460
1476
|
|
|
1477
|
+
.overflow-ellipsis {
|
|
1478
|
+
text-overflow: ellipsis;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1461
1481
|
.whitespace-nowrap {
|
|
1462
1482
|
white-space: nowrap;
|
|
1463
1483
|
}
|
|
@@ -1466,10 +1486,18 @@ video {
|
|
|
1466
1486
|
text-wrap: wrap;
|
|
1467
1487
|
}
|
|
1468
1488
|
|
|
1489
|
+
.text-nowrap {
|
|
1490
|
+
text-wrap: nowrap;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1469
1493
|
.break-words {
|
|
1470
1494
|
overflow-wrap: break-word;
|
|
1471
1495
|
}
|
|
1472
1496
|
|
|
1497
|
+
.break-all {
|
|
1498
|
+
word-break: break-all;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1473
1501
|
.rounded {
|
|
1474
1502
|
border-radius: 0.25rem;
|
|
1475
1503
|
}
|
|
@@ -2384,10 +2412,6 @@ video {
|
|
|
2384
2412
|
margin-bottom: 1.25rem;
|
|
2385
2413
|
}
|
|
2386
2414
|
|
|
2387
|
-
.md\:ml-2 {
|
|
2388
|
-
margin-left: 0.5rem;
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
2415
|
.md\:ml-6 {
|
|
2392
2416
|
margin-left: 1.5rem;
|
|
2393
2417
|
}
|
|
@@ -2612,6 +2636,10 @@ video {
|
|
|
2612
2636
|
align-self: flex-end;
|
|
2613
2637
|
}
|
|
2614
2638
|
|
|
2639
|
+
.md\:whitespace-normal {
|
|
2640
|
+
white-space: normal;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2615
2643
|
.md\:rounded {
|
|
2616
2644
|
border-radius: 0.25rem;
|
|
2617
2645
|
}
|
package/tailwind/tailwind.ts
CHANGED
|
@@ -1004,19 +1004,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1004
1004
|
max-height: 100%;
|
|
1005
1005
|
}
|
|
1006
1006
|
|
|
1007
|
-
.max-h-screen {
|
|
1008
|
-
max-height: 100vh;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.max-h-\\[90vh\\] {
|
|
1012
|
-
max-height: 90vh;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
.max-h-max {
|
|
1016
|
-
max-height: -moz-max-content;
|
|
1017
|
-
max-height: max-content;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
1007
|
.min-h-\\[68px\\] {
|
|
1021
1008
|
min-height: 68px;
|
|
1022
1009
|
}
|
|
@@ -1159,6 +1146,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1159
1146
|
width: 100vw;
|
|
1160
1147
|
}
|
|
1161
1148
|
|
|
1149
|
+
.min-w-0 {
|
|
1150
|
+
min-width: 0px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1162
1153
|
.max-w-4xl {
|
|
1163
1154
|
max-width: 56rem;
|
|
1164
1155
|
}
|
|
@@ -1219,10 +1210,31 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1219
1210
|
max-width: 20rem;
|
|
1220
1211
|
}
|
|
1221
1212
|
|
|
1213
|
+
.max-w-full {
|
|
1214
|
+
max-width: 100%;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.max-w-fit {
|
|
1218
|
+
max-width: -moz-fit-content;
|
|
1219
|
+
max-width: fit-content;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.max-w-\\[200px\\] {
|
|
1223
|
+
max-width: 200px;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.flex-1 {
|
|
1227
|
+
flex: 1 1 0%;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1222
1230
|
.flex-shrink-0 {
|
|
1223
1231
|
flex-shrink: 0;
|
|
1224
1232
|
}
|
|
1225
1233
|
|
|
1234
|
+
.flex-shrink {
|
|
1235
|
+
flex-shrink: 1;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1226
1238
|
.shrink-0 {
|
|
1227
1239
|
flex-shrink: 0;
|
|
1228
1240
|
}
|
|
@@ -1231,6 +1243,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1231
1243
|
flex-grow: 1;
|
|
1232
1244
|
}
|
|
1233
1245
|
|
|
1246
|
+
.flex-grow-0 {
|
|
1247
|
+
flex-grow: 0;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1234
1250
|
.rotate-180 {
|
|
1235
1251
|
--tw-rotate: 180deg;
|
|
1236
1252
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y))
|
|
@@ -1469,6 +1485,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1469
1485
|
white-space: nowrap;
|
|
1470
1486
|
}
|
|
1471
1487
|
|
|
1488
|
+
.overflow-ellipsis {
|
|
1489
|
+
text-overflow: ellipsis;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1472
1492
|
.whitespace-nowrap {
|
|
1473
1493
|
white-space: nowrap;
|
|
1474
1494
|
}
|
|
@@ -1477,10 +1497,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1477
1497
|
text-wrap: wrap;
|
|
1478
1498
|
}
|
|
1479
1499
|
|
|
1500
|
+
.text-nowrap {
|
|
1501
|
+
text-wrap: nowrap;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1480
1504
|
.break-words {
|
|
1481
1505
|
overflow-wrap: break-word;
|
|
1482
1506
|
}
|
|
1483
1507
|
|
|
1508
|
+
.break-all {
|
|
1509
|
+
word-break: break-all;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1484
1512
|
.rounded {
|
|
1485
1513
|
border-radius: 0.25rem;
|
|
1486
1514
|
}
|
|
@@ -2407,10 +2435,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2407
2435
|
margin-bottom: 1.25rem;
|
|
2408
2436
|
}
|
|
2409
2437
|
|
|
2410
|
-
.md\\:ml-2 {
|
|
2411
|
-
margin-left: 0.5rem;
|
|
2412
|
-
}
|
|
2413
|
-
|
|
2414
2438
|
.md\\:ml-6 {
|
|
2415
2439
|
margin-left: 1.5rem;
|
|
2416
2440
|
}
|
|
@@ -2635,6 +2659,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2635
2659
|
align-self: flex-end;
|
|
2636
2660
|
}
|
|
2637
2661
|
|
|
2662
|
+
.md\\:whitespace-normal {
|
|
2663
|
+
white-space: normal;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2638
2666
|
.md\\:rounded {
|
|
2639
2667
|
border-radius: 0.25rem;
|
|
2640
2668
|
}
|