@kompasid/lit-web-components 0.9.52 → 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/tailwind/tailwind.js +45 -0
- 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/tailwind/tailwind.css +45 -0
- package/tailwind/tailwind.ts +45 -0
package/tailwind/tailwind.css
CHANGED
|
@@ -1139,6 +1139,10 @@ video {
|
|
|
1139
1139
|
width: 100vw;
|
|
1140
1140
|
}
|
|
1141
1141
|
|
|
1142
|
+
.min-w-0 {
|
|
1143
|
+
min-width: 0px;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1142
1146
|
.max-w-4xl {
|
|
1143
1147
|
max-width: 56rem;
|
|
1144
1148
|
}
|
|
@@ -1199,10 +1203,31 @@ video {
|
|
|
1199
1203
|
max-width: 20rem;
|
|
1200
1204
|
}
|
|
1201
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
|
+
|
|
1202
1223
|
.flex-shrink-0 {
|
|
1203
1224
|
flex-shrink: 0;
|
|
1204
1225
|
}
|
|
1205
1226
|
|
|
1227
|
+
.flex-shrink {
|
|
1228
|
+
flex-shrink: 1;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1206
1231
|
.shrink-0 {
|
|
1207
1232
|
flex-shrink: 0;
|
|
1208
1233
|
}
|
|
@@ -1211,6 +1236,10 @@ video {
|
|
|
1211
1236
|
flex-grow: 1;
|
|
1212
1237
|
}
|
|
1213
1238
|
|
|
1239
|
+
.flex-grow-0 {
|
|
1240
|
+
flex-grow: 0;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1214
1243
|
.rotate-180 {
|
|
1215
1244
|
--tw-rotate: 180deg;
|
|
1216
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));
|
|
@@ -1445,6 +1474,10 @@ video {
|
|
|
1445
1474
|
white-space: nowrap;
|
|
1446
1475
|
}
|
|
1447
1476
|
|
|
1477
|
+
.overflow-ellipsis {
|
|
1478
|
+
text-overflow: ellipsis;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1448
1481
|
.whitespace-nowrap {
|
|
1449
1482
|
white-space: nowrap;
|
|
1450
1483
|
}
|
|
@@ -1453,10 +1486,18 @@ video {
|
|
|
1453
1486
|
text-wrap: wrap;
|
|
1454
1487
|
}
|
|
1455
1488
|
|
|
1489
|
+
.text-nowrap {
|
|
1490
|
+
text-wrap: nowrap;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1456
1493
|
.break-words {
|
|
1457
1494
|
overflow-wrap: break-word;
|
|
1458
1495
|
}
|
|
1459
1496
|
|
|
1497
|
+
.break-all {
|
|
1498
|
+
word-break: break-all;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1460
1501
|
.rounded {
|
|
1461
1502
|
border-radius: 0.25rem;
|
|
1462
1503
|
}
|
|
@@ -2595,6 +2636,10 @@ video {
|
|
|
2595
2636
|
align-self: flex-end;
|
|
2596
2637
|
}
|
|
2597
2638
|
|
|
2639
|
+
.md\:whitespace-normal {
|
|
2640
|
+
white-space: normal;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2598
2643
|
.md\:rounded {
|
|
2599
2644
|
border-radius: 0.25rem;
|
|
2600
2645
|
}
|
package/tailwind/tailwind.ts
CHANGED
|
@@ -1146,6 +1146,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1146
1146
|
width: 100vw;
|
|
1147
1147
|
}
|
|
1148
1148
|
|
|
1149
|
+
.min-w-0 {
|
|
1150
|
+
min-width: 0px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1149
1153
|
.max-w-4xl {
|
|
1150
1154
|
max-width: 56rem;
|
|
1151
1155
|
}
|
|
@@ -1206,10 +1210,31 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1206
1210
|
max-width: 20rem;
|
|
1207
1211
|
}
|
|
1208
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
|
+
|
|
1209
1230
|
.flex-shrink-0 {
|
|
1210
1231
|
flex-shrink: 0;
|
|
1211
1232
|
}
|
|
1212
1233
|
|
|
1234
|
+
.flex-shrink {
|
|
1235
|
+
flex-shrink: 1;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1213
1238
|
.shrink-0 {
|
|
1214
1239
|
flex-shrink: 0;
|
|
1215
1240
|
}
|
|
@@ -1218,6 +1243,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1218
1243
|
flex-grow: 1;
|
|
1219
1244
|
}
|
|
1220
1245
|
|
|
1246
|
+
.flex-grow-0 {
|
|
1247
|
+
flex-grow: 0;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1221
1250
|
.rotate-180 {
|
|
1222
1251
|
--tw-rotate: 180deg;
|
|
1223
1252
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y))
|
|
@@ -1456,6 +1485,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1456
1485
|
white-space: nowrap;
|
|
1457
1486
|
}
|
|
1458
1487
|
|
|
1488
|
+
.overflow-ellipsis {
|
|
1489
|
+
text-overflow: ellipsis;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1459
1492
|
.whitespace-nowrap {
|
|
1460
1493
|
white-space: nowrap;
|
|
1461
1494
|
}
|
|
@@ -1464,10 +1497,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1464
1497
|
text-wrap: wrap;
|
|
1465
1498
|
}
|
|
1466
1499
|
|
|
1500
|
+
.text-nowrap {
|
|
1501
|
+
text-wrap: nowrap;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1467
1504
|
.break-words {
|
|
1468
1505
|
overflow-wrap: break-word;
|
|
1469
1506
|
}
|
|
1470
1507
|
|
|
1508
|
+
.break-all {
|
|
1509
|
+
word-break: break-all;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1471
1512
|
.rounded {
|
|
1472
1513
|
border-radius: 0.25rem;
|
|
1473
1514
|
}
|
|
@@ -2618,6 +2659,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2618
2659
|
align-self: flex-end;
|
|
2619
2660
|
}
|
|
2620
2661
|
|
|
2662
|
+
.md\\:whitespace-normal {
|
|
2663
|
+
white-space: normal;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2621
2666
|
.md\\:rounded {
|
|
2622
2667
|
border-radius: 0.25rem;
|
|
2623
2668
|
}
|