'use client'; /** * Subpath entry: `@djangocfg/ui-tools/video-player`. * * Built on `media-chrome` web components — the React layer is ~3 KB of * thin wrappers, and provider engines (`youtube-video-element`, * `vimeo-video-element`, `hls-video-element`) are imported only by the * matching canvas file, so unused engines are tree-shaken. * * `LazyVideoPlayer` is preserved as a synchronous alias for back-compat * with existing consumers (e.g. cmdop desktop's document-preview). */ export * from './index'; import { VideoPlayer } from './VideoPlayer'; /** @deprecated Use `VideoPlayer` directly — no lazy boundary is needed. */ export const LazyVideoPlayer = VideoPlayer;