@meduza/ui-kit-2 0.1.56 → 0.1.58

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.56",
2
+ "version": "0.1.58",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -190,8 +190,8 @@
190
190
  .isInSlide.mobileFullwidth .object,
191
191
  .isInCard .figure,
192
192
  .isInSlide .figure,
193
- .isInCard .object,
194
- .isInSlide .object {
193
+ .isInCard.full .object,
194
+ .isInSlide.full .object {
195
195
  margin-right: -11px;
196
196
  margin-left: -11px;
197
197
 
@@ -40,6 +40,7 @@ export const EmbedBlock: React.FC<EmbedBlockProps> = ({
40
40
  'vimeo',
41
41
  'onetv',
42
42
  'coub',
43
+ 'meduza',
43
44
  'facebook_video'
44
45
  ]
45
46
 
@@ -31,7 +31,11 @@ export const Timestamp: React.FC<TimestampProps> = ({
31
31
  }
32
32
 
33
33
  return (
34
- <time data-testid="timestamp" className={styles.root}>
34
+ <time
35
+ suppressHydrationWarning={true}
36
+ data-testid="timestamp"
37
+ className={styles.root}
38
+ >
35
39
  {published}
36
40
  </time>
37
41
  )