@meduza/ui-kit-2 1.0.4 → 1.0.6
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 +5 -2
- 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 +5 -2
- package/dist/ui-kit-2.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -1161,6 +1161,7 @@ const EmbedGif = ({
|
|
|
1161
1161
|
}))));
|
|
1162
1162
|
};
|
|
1163
1163
|
|
|
1164
|
+
/* eslint-disable react/no-unknown-property */
|
|
1164
1165
|
/* eslint-disable jsx-a11y/media-has-caption */
|
|
1165
1166
|
const EmbedBlock = ({
|
|
1166
1167
|
block,
|
|
@@ -1245,8 +1246,10 @@ const EmbedBlock = ({
|
|
|
1245
1246
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1246
1247
|
className: makeClassName([[styles$r.objectWrap, true], [styles$r.isDefaultVideo, true]])
|
|
1247
1248
|
}, /*#__PURE__*/React.createElement("video", {
|
|
1248
|
-
src: videoFileUrl
|
|
1249
|
-
controls: true
|
|
1249
|
+
src: `${videoFileUrl}#t=0.001`,
|
|
1250
|
+
controls: true,
|
|
1251
|
+
playsInline: true,
|
|
1252
|
+
preload: "metadata"
|
|
1250
1253
|
})));
|
|
1251
1254
|
}
|
|
1252
1255
|
return /*#__PURE__*/React.createElement("div", {
|