@kompasid/lit-web-components 0.9.44 → 0.9.46
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-paywall-body/KompasPaywallBody.js +7 -5
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/tailwind/tailwind.js +24 -16
- 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 +9 -5
- package/tailwind/tailwind.css +24 -16
- package/tailwind/tailwind.ts +24 -16
package/tailwind/tailwind.css
CHANGED
|
@@ -1113,6 +1113,10 @@ video {
|
|
|
1113
1113
|
max-width: 460px;
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
|
+
.max-w-\[492px\] {
|
|
1117
|
+
max-width: 492px;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1116
1120
|
.max-w-screen-md {
|
|
1117
1121
|
max-width: 768px;
|
|
1118
1122
|
}
|
|
@@ -1129,10 +1133,6 @@ video {
|
|
|
1129
1133
|
max-width: 20rem;
|
|
1130
1134
|
}
|
|
1131
1135
|
|
|
1132
|
-
.max-w-\[492px\] {
|
|
1133
|
-
max-width: 492px;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
1136
|
.flex-shrink-0 {
|
|
1137
1137
|
flex-shrink: 0;
|
|
1138
1138
|
}
|
|
@@ -1979,14 +1979,14 @@ video {
|
|
|
1979
1979
|
line-height: 1.25;
|
|
1980
1980
|
}
|
|
1981
1981
|
|
|
1982
|
-
.tracking-wide {
|
|
1983
|
-
letter-spacing: 0.025em;
|
|
1984
|
-
}
|
|
1985
|
-
|
|
1986
1982
|
.tracking-normal {
|
|
1987
1983
|
letter-spacing: 0em;
|
|
1988
1984
|
}
|
|
1989
1985
|
|
|
1986
|
+
.tracking-wide {
|
|
1987
|
+
letter-spacing: 0.025em;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
1990
|
.text-\[\#00559a\] {
|
|
1991
1991
|
--tw-text-opacity: 1;
|
|
1992
1992
|
color: rgb(0 85 154 / var(--tw-text-opacity, 1));
|
|
@@ -2141,6 +2141,18 @@ video {
|
|
|
2141
2141
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2142
2142
|
}
|
|
2143
2143
|
|
|
2144
|
+
.outline {
|
|
2145
|
+
outline-style: solid;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
.outline-2 {
|
|
2149
|
+
outline-width: 2px;
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.outline-yellow-400 {
|
|
2153
|
+
outline-color: #FFCC00;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2144
2156
|
.filter {
|
|
2145
2157
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2146
2158
|
}
|
|
@@ -2374,10 +2386,6 @@ video {
|
|
|
2374
2386
|
max-width: 737px;
|
|
2375
2387
|
}
|
|
2376
2388
|
|
|
2377
|
-
.md\:max-w-full {
|
|
2378
|
-
max-width: 100%;
|
|
2379
|
-
}
|
|
2380
|
-
|
|
2381
2389
|
.md\:max-w-sm {
|
|
2382
2390
|
max-width: 24rem;
|
|
2383
2391
|
}
|
|
@@ -2579,12 +2587,12 @@ video {
|
|
|
2579
2587
|
line-height: 1rem;
|
|
2580
2588
|
}
|
|
2581
2589
|
|
|
2582
|
-
.md\:leading-
|
|
2583
|
-
line-height: 1.
|
|
2590
|
+
.md\:leading-5 {
|
|
2591
|
+
line-height: 1.25rem;
|
|
2584
2592
|
}
|
|
2585
2593
|
|
|
2586
|
-
.md\:
|
|
2587
|
-
|
|
2594
|
+
.md\:leading-6 {
|
|
2595
|
+
line-height: 1.5rem;
|
|
2588
2596
|
}
|
|
2589
2597
|
}
|
|
2590
2598
|
|
package/tailwind/tailwind.ts
CHANGED
|
@@ -1120,6 +1120,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1120
1120
|
max-width: 460px;
|
|
1121
1121
|
}
|
|
1122
1122
|
|
|
1123
|
+
.max-w-\\[492px\\] {
|
|
1124
|
+
max-width: 492px;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1123
1127
|
.max-w-screen-md {
|
|
1124
1128
|
max-width: 768px;
|
|
1125
1129
|
}
|
|
@@ -1136,10 +1140,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1136
1140
|
max-width: 20rem;
|
|
1137
1141
|
}
|
|
1138
1142
|
|
|
1139
|
-
.max-w-\\[492px\\] {
|
|
1140
|
-
max-width: 492px;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
1143
|
.flex-shrink-0 {
|
|
1144
1144
|
flex-shrink: 0;
|
|
1145
1145
|
}
|
|
@@ -1990,14 +1990,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1990
1990
|
line-height: 1.25;
|
|
1991
1991
|
}
|
|
1992
1992
|
|
|
1993
|
-
.tracking-wide {
|
|
1994
|
-
letter-spacing: 0.025em;
|
|
1995
|
-
}
|
|
1996
|
-
|
|
1997
1993
|
.tracking-normal {
|
|
1998
1994
|
letter-spacing: 0em;
|
|
1999
1995
|
}
|
|
2000
1996
|
|
|
1997
|
+
.tracking-wide {
|
|
1998
|
+
letter-spacing: 0.025em;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
2001
|
.text-\\[\\#00559a\\] {
|
|
2002
2002
|
--tw-text-opacity: 1;
|
|
2003
2003
|
color: rgb(0 85 154 / var(--tw-text-opacity, 1));
|
|
@@ -2156,6 +2156,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2156
2156
|
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2157
2157
|
}
|
|
2158
2158
|
|
|
2159
|
+
.outline {
|
|
2160
|
+
outline-style: solid;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
.outline-2 {
|
|
2164
|
+
outline-width: 2px;
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.outline-yellow-400 {
|
|
2168
|
+
outline-color: #ffcc00;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2159
2171
|
.filter {
|
|
2160
2172
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
|
|
2161
2173
|
var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
|
|
@@ -2397,10 +2409,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2397
2409
|
max-width: 737px;
|
|
2398
2410
|
}
|
|
2399
2411
|
|
|
2400
|
-
.md\\:max-w-full {
|
|
2401
|
-
max-width: 100%;
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
2412
|
.md\\:max-w-sm {
|
|
2405
2413
|
max-width: 24rem;
|
|
2406
2414
|
}
|
|
@@ -2602,12 +2610,12 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2602
2610
|
line-height: 1rem;
|
|
2603
2611
|
}
|
|
2604
2612
|
|
|
2605
|
-
.md\\:leading-
|
|
2606
|
-
line-height: 1.
|
|
2613
|
+
.md\\:leading-5 {
|
|
2614
|
+
line-height: 1.25rem;
|
|
2607
2615
|
}
|
|
2608
2616
|
|
|
2609
|
-
.md\\:
|
|
2610
|
-
|
|
2617
|
+
.md\\:leading-6 {
|
|
2618
|
+
line-height: 1.5rem;
|
|
2611
2619
|
}
|
|
2612
2620
|
}
|
|
2613
2621
|
|