Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .storybook/stories/documentation/Types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ import { Meta } from '@storybook/blocks';
- [`video?: Video` — Video](#Video)
- `youtube?: url` — Link to a video on YouTube
- `videoIframe?: url` — Link to a video iframe
- `autoplay?: boolean` — Enabling autoplay for videoIframe or youtube. Default false
- `height?: number` — Block height
- `previewImg?: string`
- `dataLens?: string |` [DataLens](#DataLens)
Expand Down
3 changes: 3 additions & 0 deletions src/schema/validators/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,9 @@ export const MediaProps = {
videoIframe: {
type: 'string',
},
autoplay: {
type: 'boolean',
},
parallax: {
type: 'boolean',
},
Expand Down
Loading