@meduza/ui-kit-2 1.0.2 → 1.0.3

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": "1.0.2",
2
+ "version": "1.0.3",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -108,7 +108,12 @@ export const EmbedBlock: React.FC<EmbedBlockProps> = ({
108
108
  [styles.isDefaultVideo, true]
109
109
  ])}
110
110
  >
111
- <video src={videoFileUrl} controls />
111
+ <video
112
+ src={videoFileUrl}
113
+ controls
114
+ playsInline
115
+ preload="metadata"
116
+ />
112
117
  </div>
113
118
  </div>
114
119
  )