@meduza/ui-kit-2 0.8.618 → 0.8.619

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.
@@ -2339,6 +2339,7 @@
2339
2339
  position: absolute;
2340
2340
  bottom: 20px;
2341
2341
  left: 57px;
2342
+ width: auto;
2342
2343
  }
2343
2344
 
2344
2345
  .Meta-module_containerInDynamicBlockAndMaterial__4v4A9 {
package/dist/ui-kit.css CHANGED
@@ -2339,6 +2339,7 @@
2339
2339
  position: absolute;
2340
2340
  bottom: 20px;
2341
2341
  left: 57px;
2342
+ width: auto;
2342
2343
  }
2343
2344
 
2344
2345
  .Meta-module_containerInDynamicBlockAndMaterial__4v4A9 {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.618",
2
+ "version": "0.8.619",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -2,6 +2,7 @@
2
2
  position: absolute;
3
3
  bottom: 20px;
4
4
  left: 57px;
5
+ width: auto;
5
6
  }
6
7
 
7
8
  .containerInDynamicBlockAndMaterial {
@@ -44,7 +44,10 @@ export const MetaContainer: React.FC<MetaContainerProps> = ({
44
44
  const hasSource = !!components.find((item) => item.type === 'source_name')
45
45
 
46
46
  const classNames: ClassNames = [
47
- [styles.containerInDynamicBlock, styleContext === 'isInDynamicBlock'],
47
+ [
48
+ styles.containerInDynamicBlock,
49
+ styleContext === 'isInDynamicBlock' || styleContext.includes('episode')
50
+ ],
48
51
  [
49
52
  styles.containerInDynamicBlockAndMaterial,
50
53
  styleContext === 'isInDynamicBlock' && type === 'isInMaterial'