We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814bfb9 commit 5e6e070Copy full SHA for 5e6e070
.storybook/stories/documentation/Types.mdx
@@ -56,6 +56,7 @@ import { Meta } from '@storybook/blocks';
56
- [`video?: Video` — Video](#Video)
57
- `youtube?: url` — Link to a video on YouTube
58
- `videoIframe?: url` — Link to a video iframe
59
+- `autoplay?: boolean` — Enabling autoplay for videoIframe or youtube. Default false
60
- `height?: number` — Block height
61
- `previewImg?: string`
62
- `dataLens?: string |` [DataLens](#DataLens)
src/schema/validators/common.ts
@@ -610,6 +610,9 @@ export const MediaProps = {
610
videoIframe: {
611
type: 'string',
612
},
613
+ autoplay: {
614
+ type: 'boolean',
615
+ },
616
parallax: {
617
type: 'boolean',
618
0 commit comments