UNPKG

@werk1/w1-system-videoblock

Version:

Universal video player supporting YouTube, Vimeo, HLS, DASH with coordination and GSAP integration for W1 System

17 lines (16 loc) 601 B
import React from 'react'; import type { W1VideoBlockProps } from './types'; /** * W1VideoBlock - Complete video solution with coordination * * This component provides a complete video experience including: * - Video coordination between multiple players * - Click-to-play/pause interaction * - Store management and state coordination * - Visibility management and autoplay control * * GSAP animations are handled externally by parent components. * Uses W1VideoPlayer as the pure video engine underneath. */ declare const W1VideoBlock: React.FC<W1VideoBlockProps>; export { W1VideoBlock };