@htmlbricks/hb-modal-video
v0.71.9
Published
Video modal built on hb-dialog: when uri is set the dialog opens with either a YouTube iframe (provider youtube) or an HTML5 video element, optional title slot, and videoModalEvent when visibility changes.
Readme
hb-modal-video
Description
Video modal built on hb-dialog: when uri is set the dialog opens with either a YouTube iframe (provider youtube) or an HTML5 video element, optional title slot, and videoModalEvent when visibility changes.
Types
export type Component = {
id?: string;
style?: string;
item?: string;
uri: string;
title?: string;
provider?: string;
};
export type Events = {
videoModalEvent: { id: string; show: boolean };
};