@meduza/ui-kit-2 0.8.620 → 0.8.621
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/ui-kit-2.cjs.development.js +6 -3
- package/dist/ui-kit-2.cjs.development.js.map +1 -1
- package/dist/ui-kit-2.cjs.production.min.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
- package/dist/ui-kit-2.esm.js +6 -3
- package/dist/ui-kit-2.esm.js.map +1 -1
- package/dist/ui-kit-game.css +11 -0
- package/dist/ui-kit.css +11 -0
- package/package.json +1 -1
- package/src/Meta/MetaContainer.tsx +3 -2
- package/src/RichTitle/RichTitle.module.css +6 -0
- package/src/Tag/Tag.module.css +5 -0
package/dist/ui-kit-game.css
CHANGED
|
@@ -1378,6 +1378,11 @@
|
|
|
1378
1378
|
}
|
|
1379
1379
|
}
|
|
1380
1380
|
|
|
1381
|
+
.Tag-module_isInPodcastPlayer__H4sK9 {
|
|
1382
|
+
font-size: 12px;
|
|
1383
|
+
line-height: 12px;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1381
1386
|
.Tag-module_isInDynamicBlock__WNleF {
|
|
1382
1387
|
opacity: 0.5;
|
|
1383
1388
|
}
|
|
@@ -3287,6 +3292,12 @@
|
|
|
3287
3292
|
}
|
|
3288
3293
|
}
|
|
3289
3294
|
|
|
3295
|
+
.RichTitle-module_root__U5XQu.RichTitle-module_isInPodcastPlayer__kvEPH {
|
|
3296
|
+
font-size: 19px;
|
|
3297
|
+
line-height: 23px;
|
|
3298
|
+
margin: 0 0 20px;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3290
3301
|
@media only screen and (min-width: 32em) {
|
|
3291
3302
|
|
|
3292
3303
|
.RichTitle-module_mobile__W5L9E {
|
package/dist/ui-kit.css
CHANGED
|
@@ -1378,6 +1378,11 @@
|
|
|
1378
1378
|
}
|
|
1379
1379
|
}
|
|
1380
1380
|
|
|
1381
|
+
.Tag-module_isInPodcastPlayer__H4sK9 {
|
|
1382
|
+
font-size: 12px;
|
|
1383
|
+
line-height: 12px;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1381
1386
|
.Tag-module_isInDynamicBlock__WNleF {
|
|
1382
1387
|
opacity: 0.5;
|
|
1383
1388
|
}
|
|
@@ -3287,6 +3292,12 @@
|
|
|
3287
3292
|
}
|
|
3288
3293
|
}
|
|
3289
3294
|
|
|
3295
|
+
.RichTitle-module_root__U5XQu.RichTitle-module_isInPodcastPlayer__kvEPH {
|
|
3296
|
+
font-size: 19px;
|
|
3297
|
+
line-height: 23px;
|
|
3298
|
+
margin: 0 0 20px;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3290
3301
|
@media only screen and (min-width: 32em) {
|
|
3291
3302
|
|
|
3292
3303
|
.RichTitle-module_mobile__W5L9E {
|
package/package.json
CHANGED
|
@@ -94,9 +94,10 @@ export const MetaContainer: React.FC<MetaContainerProps> = ({
|
|
|
94
94
|
return (
|
|
95
95
|
<MetaItem hasSource={hasSource} bullets key={component.id}>
|
|
96
96
|
<>
|
|
97
|
-
{
|
|
97
|
+
{(styleContext !== 'isInDynamicBlock' ||
|
|
98
|
+
!styleContext.includes('episode')) && (
|
|
98
99
|
<SvgSymbol icon="podcast" size="small" />
|
|
99
|
-
)}
|
|
100
|
+
)}
|
|
100
101
|
{component.text}
|
|
101
102
|
</>
|
|
102
103
|
</MetaItem>
|