@therealtinhtute/baroiplayer 1.0.8 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +2 -2
- package/README.md +15 -15
- package/dist/context/media.js +2 -0
- package/dist/context/media.js.map +1 -0
- package/dist/context/media.mjs +15 -0
- package/dist/context/media.mjs.map +1 -0
- package/dist/context/store.js +2 -0
- package/dist/context/store.js.map +1 -0
- package/dist/context/store.mjs +5 -0
- package/dist/context/store.mjs.map +1 -0
- package/dist/context-BYwDoSRX.js +1172 -0
- package/dist/context-BYwDoSRX.js.map +1 -0
- package/dist/context-eNS62_ac.cjs +23 -0
- package/dist/context-eNS62_ac.cjs.map +1 -0
- package/dist/core-events-B1iM2F46.cjs +2 -0
- package/dist/core-events-B1iM2F46.cjs.map +1 -0
- package/dist/core-events-DunPHKRE.js +484 -0
- package/dist/core-events-DunPHKRE.js.map +1 -0
- package/dist/core-plugins-By-4-kGs.cjs +2 -0
- package/dist/core-plugins-By-4-kGs.cjs.map +1 -0
- package/dist/core-plugins-DSBWcTuX.js +821 -0
- package/dist/core-plugins-DSBWcTuX.js.map +1 -0
- package/dist/core.js +37 -0
- package/dist/core.js.map +1 -0
- package/dist/core.mjs +1233 -0
- package/dist/core.mjs.map +1 -0
- package/dist/enhanced-components-B_l3cist.js +1142 -0
- package/dist/enhanced-components-B_l3cist.js.map +1 -0
- package/dist/enhanced-components-BspFs9OO.cjs +2 -0
- package/dist/enhanced-components-BspFs9OO.cjs.map +1 -0
- package/dist/hooks-BXwI8QG6.cjs +4 -0
- package/dist/hooks-BXwI8QG6.cjs.map +1 -0
- package/dist/hooks-Bpi-jDiO.js +1816 -0
- package/dist/hooks-Bpi-jDiO.js.map +1 -0
- package/dist/index.css +1 -102
- package/dist/index.js +112 -21
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6273 -16
- package/dist/index.mjs.map +1 -0
- package/dist/minimal-components-C4z900Ro.js +1926 -0
- package/dist/minimal-components-C4z900Ro.js.map +1 -0
- package/dist/minimal-components-v4qBp6jv.cjs +2 -0
- package/dist/minimal-components-v4qBp6jv.cjs.map +1 -0
- package/dist/minimal-components.css +1 -589
- package/dist/mona-loading.gif +0 -0
- package/dist/performance-monitor-C5k6FDXw.js +301 -0
- package/dist/performance-monitor-C5k6FDXw.js.map +1 -0
- package/dist/performance-monitor-lJmuUjQQ.cjs +2 -0
- package/dist/performance-monitor-lJmuUjQQ.cjs.map +1 -0
- package/dist/utils-CFOue_9K.cjs +9 -0
- package/dist/utils-CFOue_9K.cjs.map +1 -0
- package/dist/utils-Dzpl2ArK.js +2844 -0
- package/dist/utils-Dzpl2ArK.js.map +1 -0
- package/dist/utils.js +2 -0
- package/dist/utils.js.map +1 -0
- package/dist/utils.mjs +11 -0
- package/dist/utils.mjs.map +1 -0
- package/package.json +11 -40
- package/src/adapters/videojs-adapter.tsx +441 -441
- package/src/components/AnimateLoading.tsx +85 -93
- package/src/components/LoadingState.tsx +199 -208
- package/src/components/__tests__/media-player-accessibility.test.tsx +510 -0
- package/src/components/__tests__/media-player-react19.test.tsx +457 -0
- package/src/components/accessibility/keyboard-help-overlay.tsx +201 -207
- package/src/components/basic/index.ts +28 -28
- package/src/components/enhanced/advanced-features.tsx +49 -54
- package/src/components/enhanced/debug-panel.tsx +148 -122
- package/src/components/enhanced/enhanced-controls.tsx +117 -120
- package/src/components/enhanced/enhanced-media-player.tsx +281 -224
- package/src/components/enhanced/error-handling.tsx +50 -57
- package/src/components/enhanced/index.ts +27 -27
- package/src/components/enhanced/media-player-enhanced.tsx +117 -83
- package/src/components/examples/basic-video-player.tsx +35 -40
- package/src/components/examples/enhanced-controls-example.tsx +16 -30
- package/src/components/examples/enhanced-media-player-example.tsx +196 -187
- package/src/components/examples/loading-states-demo.tsx +113 -113
- package/src/components/examples/react-19-demo.tsx +88 -116
- package/src/components/examples/volume-orientation-demo.tsx +77 -85
- package/src/components/icon-demo.tsx +189 -202
- package/src/components/icons/svg-icons/ArrowLeftIcon.tsx +13 -13
- package/src/components/icons/svg-icons/ArrowRightIcon.tsx +13 -13
- package/src/components/icons/svg-icons/AudioIcon.tsx +16 -16
- package/src/components/icons/svg-icons/BackwardIcon.tsx +7 -7
- package/src/components/icons/svg-icons/CameraIcon.tsx +13 -13
- package/src/components/icons/svg-icons/CheckIcon.tsx +13 -13
- package/src/components/icons/svg-icons/EnablePiPIcon.tsx +13 -13
- package/src/components/icons/svg-icons/ForwardIcon.tsx +7 -7
- package/src/components/icons/svg-icons/FullscreenEnterIcon.tsx +18 -18
- package/src/components/icons/svg-icons/FullscreenExitIcon.tsx +18 -18
- package/src/components/icons/svg-icons/LoadingIcon.tsx +27 -27
- package/src/components/icons/svg-icons/PauseIcon.tsx +18 -18
- package/src/components/icons/svg-icons/PlayIcon.tsx +16 -16
- package/src/components/icons/svg-icons/PlaybackSpeedIcon.tsx +18 -18
- package/src/components/icons/svg-icons/QualityIcon.tsx +16 -16
- package/src/components/icons/svg-icons/SettingsIcon.tsx +7 -7
- package/src/components/icons/svg-icons/SliderIcon.tsx +16 -16
- package/src/components/icons/svg-icons/SubtitleIcon.tsx +16 -16
- package/src/components/icons/svg-icons/SubtitleOffIcon.tsx +20 -20
- package/src/components/icons/svg-icons/UnPiPIcon.tsx +13 -13
- package/src/components/icons/svg-icons/VolumeMutedIcon.tsx +11 -11
- package/src/components/icons/svg-icons/VolumeOneIcon.tsx +17 -17
- package/src/components/icons/svg-icons/VolumeThreeIcon.tsx +11 -11
- package/src/components/icons/svg-icons/VolumeTwoIcon.tsx +11 -11
- package/src/components/legacy.tsx +14 -20
- package/src/components/media-metadata-display.tsx +78 -79
- package/src/components/media-player-controls.tsx +37 -40
- package/src/components/media-player-error.tsx +2 -2
- package/src/components/media-player-fullscreen.tsx +2 -2
- package/src/components/media-player-hls.tsx +89 -89
- package/src/components/media-player-play.tsx +2 -2
- package/src/components/media-player-root.tsx +20 -22
- package/src/components/media-player-seek.tsx +1 -1
- package/src/components/media-player-tooltip.tsx +1 -1
- package/src/components/media-player-video.tsx +21 -6
- package/src/components/media-player-volume.tsx +3 -3
- package/src/components/media-player.tsx +209 -174
- package/src/components/media-suspense.tsx +71 -89
- package/src/components/player-settings-form.tsx +143 -148
- package/src/components/react-player-wrapper.tsx +23 -23
- package/src/components/simple-video-player.tsx +53 -51
- package/src/components/ui/blur-poster.tsx +93 -0
- package/src/components/ui/empty-state.tsx +91 -0
- package/src/components/ui/enhanced-seek-bar.tsx +77 -58
- package/src/components/ui/error-state.tsx +124 -0
- package/src/components/ui/fullscreen-button.tsx +71 -50
- package/src/components/ui/loading-skeleton.tsx +107 -0
- package/src/components/ui/media-resource-preloader.tsx +262 -197
- package/src/components/ui/offline-message.tsx +98 -0
- package/src/components/ui/play-button.tsx +79 -87
- package/src/components/ui/seek-bar.tsx +170 -140
- package/src/components/ui/time-display.tsx +33 -12
- package/src/components/ui/volume-control.tsx +91 -44
- package/src/components/unified/base-media-player.tsx +61 -55
- package/src/components/unified/media-player.tsx +3 -3
- package/src/components/variants/minimal/AccessibleMinimalPlayer.tsx +528 -502
- package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx +110 -89
- package/src/components/variants/minimal/MinimalControls.tsx +100 -118
- package/src/components/variants/minimal/MinimalLoading.tsx +19 -23
- package/src/components/variants/minimal/MinimalMediaPlayer.tsx +283 -280
- package/src/components/variants/minimal/MinimalOverlay.tsx +43 -49
- package/src/components/variants/minimal/MinimalPlayButton.tsx +44 -53
- package/src/components/variants/minimal/MinimalSeekBar.tsx +130 -140
- package/src/components/variants/minimal/MinimalVolumeControl.tsx +59 -64
- package/src/components/variants/minimal/SimpleMinimalPlayer.tsx +29 -32
- package/src/components/variants/minimal/components/CenterPlayButton.tsx +1 -1
- package/src/components/variants/minimal/components/ControlBar.tsx +7 -11
- package/src/components/variants/minimal/components/EnhancedSettingsMenu.tsx +381 -330
- package/src/components/variants/minimal/components/PlaybackControls.tsx +6 -11
- package/src/components/variants/minimal/components/RightControls.tsx +8 -17
- package/src/components/variants/minimal/components/SeekBar.tsx +16 -20
- package/src/components/variants/minimal/components/SettingsDropdown.tsx +12 -14
- package/src/components/variants/minimal/components/SubtitleDisplay.tsx +1 -1
- package/src/components/variants/minimal/components/TimeDisplay.tsx +2 -5
- package/src/components/variants/minimal/components/VideoElement.tsx +3 -10
- package/src/components/variants/minimal/components/VolumeControl.tsx +42 -39
- package/src/components/video-player.tsx +10 -10
- package/src/context/__tests__/media-store.test.ts +509 -0
- package/src/context/error-handling.ts +106 -102
- package/src/context/media-context.tsx +56 -10
- package/src/context/media-provider.tsx +16 -17
- package/src/context/media-store.ts +68 -60
- package/src/context/persistence.ts +74 -65
- package/src/core/events/event-system.ts +422 -416
- package/src/core/events/hooks.ts +275 -252
- package/src/core/events/index.ts +14 -14
- package/src/core/events/middleware.ts +269 -252
- package/src/core/index.ts +8 -8
- package/src/core/optimization/bundle-optimizer.tsx +76 -72
- package/src/core/performance/cicd.ts +91 -89
- package/src/core/performance/index.ts +22 -22
- package/src/core/performance/media-loading-optimizer.ts +518 -512
- package/src/core/performance/performance-budgets.ts +414 -409
- package/src/core/performance/performance-monitor.tsx +451 -439
- package/src/core/performance/performance-testing.ts +439 -437
- package/src/core/plugins/__tests__/registry.test.ts +595 -0
- package/src/core/plugins/base-plugin.ts +197 -196
- package/src/core/plugins/enhanced-plugin-system.ts +157 -139
- package/src/core/plugins/examples/analytics-plugin.ts +229 -230
- package/src/core/plugins/index.ts +26 -26
- package/src/core/plugins/registry.ts +544 -325
- package/src/core/plugins/types.ts +115 -105
- package/src/core/plugins/utils.ts +292 -291
- package/src/core/progressive-loading.tsx +297 -288
- package/src/core/providers/enhanced-hls-provider.ts +98 -99
- package/src/core/providers/lazy-provider.tsx +14 -0
- package/src/core/providers/service-provider.tsx +104 -108
- package/src/core/utils.tsx +22 -26
- package/src/features/media-session/media-session-manager.ts +391 -409
- package/src/features/picture-in-picture/pip-manager.ts +364 -365
- package/src/features/playlist/playlist-manager.ts +605 -585
- package/src/features/subtitles/subtitle-manager.ts +424 -430
- package/src/features/subtitles/subtitle-parser.ts +277 -273
- package/src/features/thumbnails/thumbnail-generator.ts +511 -502
- package/src/hooks/__tests__/currentTime-fix.test.ts +149 -0
- package/src/hooks/__tests__/use-media-player.test.ts +712 -0
- package/src/hooks/__tests__/use-media-state.test.tsx +316 -0
- package/src/hooks/accessibility/index.ts +20 -20
- package/src/hooks/accessibility/use-accessibility-preferences.ts +177 -175
- package/src/hooks/accessibility/use-focus-management.ts +170 -163
- package/src/hooks/accessibility/use-keyboard-shortcuts.ts +132 -124
- package/src/hooks/accessibility/use-screen-reader.ts +191 -161
- package/src/hooks/core/index.ts +30 -30
- package/src/hooks/legacy.ts +3 -9
- package/src/hooks/use-buffer-health.ts +218 -0
- package/src/hooks/use-enhanced-media-player.ts +171 -81
- package/src/hooks/use-focus-trap.tsx +162 -0
- package/src/hooks/use-intelligent-preloading.ts +256 -232
- package/src/hooks/use-keyboard-controls.ts +80 -80
- package/src/hooks/use-keyboard-shortcuts.ts +255 -0
- package/src/hooks/use-media-actions.ts +81 -72
- package/src/hooks/use-media-metadata.ts +75 -73
- package/src/hooks/use-media-optimistic.ts +145 -151
- package/src/hooks/use-media-player.ts +193 -160
- package/src/hooks/use-media-state.ts +63 -59
- package/src/hooks/use-memory-optimization.ts +121 -119
- package/src/hooks/use-network-status.ts +124 -0
- package/src/hooks/use-optimistic-controls.ts +91 -88
- package/src/hooks/use-optimized-media.ts +76 -56
- package/src/hooks/use-smart-preload.ts +229 -0
- package/src/hooks/use-touch-gestures.ts +427 -383
- package/src/hooks/useEnhancedSubtitles.ts +245 -245
- package/src/hooks/useKeyboardShortcuts.ts +84 -52
- package/src/hooks/useMediaControls.ts +22 -22
- package/src/hooks/useScreenshot.ts +51 -47
- package/src/hooks/useSubtitles.ts +53 -53
- package/src/hooks/useVideoPlayer.ts +107 -61
- package/src/icons/components/FullscreenIcon.tsx +34 -35
- package/src/icons/components/SettingsIcon.tsx +35 -36
- package/src/icons/components/animated/LoadingIcon.tsx +25 -41
- package/src/icons/components/animated/PlayPauseIcon.tsx +38 -46
- package/src/icons/components/media/PauseIcon.tsx +36 -37
- package/src/icons/components/media/PlayIcon.tsx +35 -36
- package/src/icons/components/volume/VolumeIcon.tsx +36 -37
- package/src/icons/components/volume/VolumeOffIcon.tsx +36 -37
- package/src/icons/index.ts +38 -38
- package/src/icons/provider.tsx +40 -46
- package/src/icons/types.ts +51 -31
- package/src/index-enhanced.ts +10 -10
- package/src/index-legacy.ts +4 -7
- package/src/index.css +80 -80
- package/src/index.ts +8 -23
- package/src/lib/__tests__/async-utils.test.ts +291 -0
- package/src/lib/async-utils.ts +194 -0
- package/src/lib/deprecation.ts +4 -4
- package/src/lib/index.ts +3 -2
- package/src/lib/utils.ts +3 -3
- package/src/styles/globals.css +3 -3
- package/src/styles/minimal-player.css +606 -574
- package/src/styles/pixel-art.css +23 -28
- package/src/styles/videojs.css +43 -43
- package/src/test/accessibility-utils.ts +208 -0
- package/src/test/browser-simulation.ts +235 -0
- package/src/test/media-mocks.ts +169 -0
- package/src/test/performance-utils.ts +192 -0
- package/src/test/setup.ts +256 -41
- package/src/types/events.ts +30 -30
- package/src/types/formats.ts +56 -72
- package/src/types/index.ts +16 -38
- package/src/types/videojs-plugins.d.ts +6 -6
- package/dist/index.d.ts +0 -1425
- package/dist/package.json +0 -62
- package/dist/src/adapters/videojs-adapter.d.ts +0 -38
- package/dist/src/adapters/videojs-adapter.tsx +0 -470
- package/dist/src/components/AnimateLoading.d.ts +0 -9
- package/dist/src/components/AnimateLoading.tsx +0 -115
- package/dist/src/components/LoadingState.d.ts +0 -33
- package/dist/src/components/LoadingState.tsx +0 -248
- package/dist/src/components/accessibility/keyboard-help-overlay.d.ts +0 -17
- package/dist/src/components/accessibility/keyboard-help-overlay.tsx +0 -213
- package/dist/src/components/audio-player.d.ts +0 -3
- package/dist/src/components/audio-player.tsx +0 -85
- package/dist/src/components/basic/index.d.ts +0 -26
- package/dist/src/components/basic/index.ts +0 -37
- package/dist/src/components/enhanced/advanced-features.d.ts +0 -45
- package/dist/src/components/enhanced/advanced-features.tsx +0 -316
- package/dist/src/components/enhanced/debug-panel.d.ts +0 -70
- package/dist/src/components/enhanced/debug-panel.tsx +0 -422
- package/dist/src/components/enhanced/enhanced-controls.d.ts +0 -50
- package/dist/src/components/enhanced/enhanced-controls.tsx +0 -600
- package/dist/src/components/enhanced/enhanced-media-player.d.ts +0 -26
- package/dist/src/components/enhanced/enhanced-media-player.tsx +0 -509
- package/dist/src/components/enhanced/error-handling.d.ts +0 -36
- package/dist/src/components/enhanced/error-handling.tsx +0 -345
- package/dist/src/components/enhanced/index.d.ts +0 -7
- package/dist/src/components/enhanced/index.ts +0 -39
- package/dist/src/components/enhanced/media-player-enhanced.d.ts +0 -21
- package/dist/src/components/enhanced/media-player-enhanced.tsx +0 -349
- package/dist/src/components/examples/basic-video-player.d.ts +0 -10
- package/dist/src/components/examples/basic-video-player.tsx +0 -55
- package/dist/src/components/examples/custom-controls-example.d.ts +0 -10
- package/dist/src/components/examples/custom-controls-example.tsx +0 -63
- package/dist/src/components/examples/enhanced-controls-example.d.ts +0 -9
- package/dist/src/components/examples/enhanced-controls-example.tsx +0 -114
- package/dist/src/components/examples/enhanced-media-player-example.d.ts +0 -9
- package/dist/src/components/examples/enhanced-media-player-example.tsx +0 -293
- package/dist/src/components/examples/loading-states-demo.d.ts +0 -2
- package/dist/src/components/examples/loading-states-demo.tsx +0 -142
- package/dist/src/components/examples/react-19-demo.d.ts +0 -10
- package/dist/src/components/examples/react-19-demo.tsx +0 -381
- package/dist/src/components/examples/volume-orientation-demo.d.ts +0 -2
- package/dist/src/components/examples/volume-orientation-demo.tsx +0 -114
- package/dist/src/components/icon-demo.d.ts +0 -2
- package/dist/src/components/icon-demo.tsx +0 -209
- package/dist/src/components/icons/index.d.ts +0 -36
- package/dist/src/components/icons/index.tsx +0 -166
- package/dist/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/ArrowLeftIcon.tsx +0 -18
- package/dist/src/components/icons/svg-icons/ArrowRightIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/ArrowRightIcon.tsx +0 -18
- package/dist/src/components/icons/svg-icons/AudioIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/AudioIcon.tsx +0 -22
- package/dist/src/components/icons/svg-icons/BackwardIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/BackwardIcon.tsx +0 -12
- package/dist/src/components/icons/svg-icons/CameraIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/CameraIcon.tsx +0 -19
- package/dist/src/components/icons/svg-icons/CheckIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/CheckIcon.tsx +0 -19
- package/dist/src/components/icons/svg-icons/EnablePiPIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/EnablePiPIcon.tsx +0 -17
- package/dist/src/components/icons/svg-icons/ForwardIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/ForwardIcon.tsx +0 -12
- package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.tsx +0 -23
- package/dist/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/FullscreenExitIcon.tsx +0 -23
- package/dist/src/components/icons/svg-icons/LoadingIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/LoadingIcon.tsx +0 -32
- package/dist/src/components/icons/svg-icons/PauseIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/PauseIcon.tsx +0 -23
- package/dist/src/components/icons/svg-icons/PlayIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/PlayIcon.tsx +0 -21
- package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.tsx +0 -23
- package/dist/src/components/icons/svg-icons/QualityIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/QualityIcon.tsx +0 -21
- package/dist/src/components/icons/svg-icons/SettingsIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/SettingsIcon.tsx +0 -12
- package/dist/src/components/icons/svg-icons/SliderIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/SliderIcon.tsx +0 -21
- package/dist/src/components/icons/svg-icons/SubtitleIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/SubtitleIcon.tsx +0 -21
- package/dist/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/SubtitleOffIcon.tsx +0 -25
- package/dist/src/components/icons/svg-icons/UnPiPIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/UnPiPIcon.tsx +0 -17
- package/dist/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/VolumeMutedIcon.tsx +0 -16
- package/dist/src/components/icons/svg-icons/VolumeOneIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/VolumeOneIcon.tsx +0 -22
- package/dist/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/VolumeThreeIcon.tsx +0 -16
- package/dist/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +0 -4
- package/dist/src/components/icons/svg-icons/VolumeTwoIcon.tsx +0 -16
- package/dist/src/components/legacy.d.ts +0 -13
- package/dist/src/components/legacy.tsx +0 -93
- package/dist/src/components/media-metadata-display.d.ts +0 -11
- package/dist/src/components/media-metadata-display.tsx +0 -100
- package/dist/src/components/media-player-audio.d.ts +0 -9
- package/dist/src/components/media-player-audio.tsx +0 -39
- package/dist/src/components/media-player-controls.d.ts +0 -23
- package/dist/src/components/media-player-controls.tsx +0 -226
- package/dist/src/components/media-player-error.d.ts +0 -16
- package/dist/src/components/media-player-error.tsx +0 -163
- package/dist/src/components/media-player-fullscreen.d.ts +0 -12
- package/dist/src/components/media-player-fullscreen.tsx +0 -109
- package/dist/src/components/media-player-hls.d.ts +0 -23
- package/dist/src/components/media-player-hls.tsx +0 -111
- package/dist/src/components/media-player-loading.d.ts +0 -12
- package/dist/src/components/media-player-loading.tsx +0 -76
- package/dist/src/components/media-player-play.d.ts +0 -11
- package/dist/src/components/media-player-play.tsx +0 -75
- package/dist/src/components/media-player-root.d.ts +0 -28
- package/dist/src/components/media-player-root.tsx +0 -340
- package/dist/src/components/media-player-seek.d.ts +0 -15
- package/dist/src/components/media-player-seek.tsx +0 -168
- package/dist/src/components/media-player-time.d.ts +0 -12
- package/dist/src/components/media-player-time.tsx +0 -99
- package/dist/src/components/media-player-tooltip.d.ts +0 -13
- package/dist/src/components/media-player-tooltip.tsx +0 -58
- package/dist/src/components/media-player-video.d.ts +0 -9
- package/dist/src/components/media-player-video.tsx +0 -39
- package/dist/src/components/media-player-volume.d.ts +0 -13
- package/dist/src/components/media-player-volume.tsx +0 -155
- package/dist/src/components/media-player.d.ts +0 -3
- package/dist/src/components/media-player.tsx +0 -257
- package/dist/src/components/media-suspense.d.ts +0 -78
- package/dist/src/components/media-suspense.tsx +0 -362
- package/dist/src/components/player-settings-form.d.ts +0 -8
- package/dist/src/components/player-settings-form.tsx +0 -163
- package/dist/src/components/react-player-wrapper.d.ts +0 -64
- package/dist/src/components/react-player-wrapper.tsx +0 -651
- package/dist/src/components/simple-video-player.d.ts +0 -9
- package/dist/src/components/simple-video-player.tsx +0 -60
- package/dist/src/components/ui/button.tsx +0 -49
- package/dist/src/components/ui/dropdown-menu.tsx +0 -137
- package/dist/src/components/ui/enhanced-seek-bar.d.ts +0 -3
- package/dist/src/components/ui/enhanced-seek-bar.tsx +0 -235
- package/dist/src/components/ui/fullscreen-button.d.ts +0 -3
- package/dist/src/components/ui/fullscreen-button.tsx +0 -60
- package/dist/src/components/ui/icons.tsx +0 -174
- package/dist/src/components/ui/media-resource-preloader.d.ts +0 -21
- package/dist/src/components/ui/media-resource-preloader.tsx +0 -393
- package/dist/src/components/ui/play-button.d.ts +0 -3
- package/dist/src/components/ui/play-button.tsx +0 -107
- package/dist/src/components/ui/seek-bar.d.ts +0 -3
- package/dist/src/components/ui/seek-bar.tsx +0 -161
- package/dist/src/components/ui/slider.tsx +0 -55
- package/dist/src/components/ui/time-display.d.ts +0 -3
- package/dist/src/components/ui/time-display.tsx +0 -40
- package/dist/src/components/ui/tooltip.tsx +0 -131
- package/dist/src/components/ui/volume-control.d.ts +0 -3
- package/dist/src/components/ui/volume-control.tsx +0 -143
- package/dist/src/components/unified/base-media-player.d.ts +0 -18
- package/dist/src/components/unified/base-media-player.tsx +0 -246
- package/dist/src/components/unified/media-player.d.ts +0 -37
- package/dist/src/components/unified/media-player.tsx +0 -75
- package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +0 -42
- package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.tsx +0 -561
- package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +0 -44
- package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx +0 -552
- package/dist/src/components/variants/minimal/MinimalControls.d.ts +0 -19
- package/dist/src/components/variants/minimal/MinimalControls.tsx +0 -142
- package/dist/src/components/variants/minimal/MinimalLoading.d.ts +0 -10
- package/dist/src/components/variants/minimal/MinimalLoading.tsx +0 -32
- package/dist/src/components/variants/minimal/MinimalMediaPlayer.d.ts +0 -38
- package/dist/src/components/variants/minimal/MinimalMediaPlayer.tsx +0 -315
- package/dist/src/components/variants/minimal/MinimalOverlay.d.ts +0 -11
- package/dist/src/components/variants/minimal/MinimalOverlay.tsx +0 -64
- package/dist/src/components/variants/minimal/MinimalPlayButton.d.ts +0 -9
- package/dist/src/components/variants/minimal/MinimalPlayButton.tsx +0 -65
- package/dist/src/components/variants/minimal/MinimalSeekBar.d.ts +0 -7
- package/dist/src/components/variants/minimal/MinimalSeekBar.tsx +0 -150
- package/dist/src/components/variants/minimal/MinimalVolumeControl.d.ts +0 -7
- package/dist/src/components/variants/minimal/MinimalVolumeControl.tsx +0 -80
- package/dist/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +0 -22
- package/dist/src/components/variants/minimal/SimpleMinimalPlayer.tsx +0 -209
- package/dist/src/components/variants/minimal/components/CenterPlayButton.d.ts +0 -7
- package/dist/src/components/variants/minimal/components/CenterPlayButton.tsx +0 -22
- package/dist/src/components/variants/minimal/components/ControlBar.d.ts +0 -43
- package/dist/src/components/variants/minimal/components/ControlBar.tsx +0 -146
- package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +0 -24
- package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.tsx +0 -361
- package/dist/src/components/variants/minimal/components/PlaybackControls.d.ts +0 -9
- package/dist/src/components/variants/minimal/components/PlaybackControls.tsx +0 -51
- package/dist/src/components/variants/minimal/components/RightControls.d.ts +0 -25
- package/dist/src/components/variants/minimal/components/RightControls.tsx +0 -173
- package/dist/src/components/variants/minimal/components/SeekBar.d.ts +0 -11
- package/dist/src/components/variants/minimal/components/SeekBar.tsx +0 -131
- package/dist/src/components/variants/minimal/components/SettingsDropdown.d.ts +0 -9
- package/dist/src/components/variants/minimal/components/SettingsDropdown.tsx +0 -70
- package/dist/src/components/variants/minimal/components/SubtitleDisplay.d.ts +0 -7
- package/dist/src/components/variants/minimal/components/SubtitleDisplay.tsx +0 -21
- package/dist/src/components/variants/minimal/components/TimeDisplay.d.ts +0 -7
- package/dist/src/components/variants/minimal/components/TimeDisplay.tsx +0 -18
- package/dist/src/components/variants/minimal/components/VideoElement.d.ts +0 -13
- package/dist/src/components/variants/minimal/components/VideoElement.tsx +0 -40
- package/dist/src/components/variants/minimal/components/VolumeControl.d.ts +0 -13
- package/dist/src/components/variants/minimal/components/VolumeControl.tsx +0 -217
- package/dist/src/components/variants/minimal/index.d.ts +0 -17
- package/dist/src/components/variants/minimal/index.ts +0 -23
- package/dist/src/components/video-player.d.ts +0 -3
- package/dist/src/components/video-player.tsx +0 -100
- package/dist/src/context/error-handling.d.ts +0 -72
- package/dist/src/context/error-handling.ts +0 -394
- package/dist/src/context/media-context.d.ts +0 -104
- package/dist/src/context/media-context.tsx +0 -208
- package/dist/src/context/media-provider.d.ts +0 -26
- package/dist/src/context/media-provider.tsx +0 -265
- package/dist/src/context/media-store.d.ts +0 -33
- package/dist/src/context/media-store.ts +0 -379
- package/dist/src/context/persistence.d.ts +0 -83
- package/dist/src/context/persistence.ts +0 -453
- package/dist/src/core/events/event-system.d.ts +0 -170
- package/dist/src/core/events/event-system.ts +0 -442
- package/dist/src/core/events/hooks.d.ts +0 -33
- package/dist/src/core/events/hooks.ts +0 -302
- package/dist/src/core/events/index.d.ts +0 -6
- package/dist/src/core/events/index.ts +0 -22
- package/dist/src/core/events/middleware.d.ts +0 -39
- package/dist/src/core/events/middleware.ts +0 -269
- package/dist/src/core/index.d.ts +0 -8
- package/dist/src/core/index.ts +0 -22
- package/dist/src/core/optimization/bundle-optimizer.d.ts +0 -44
- package/dist/src/core/optimization/bundle-optimizer.tsx +0 -308
- package/dist/src/core/performance/cicd.d.ts +0 -8
- package/dist/src/core/performance/cicd.ts +0 -96
- package/dist/src/core/performance/index.d.ts +0 -10
- package/dist/src/core/performance/index.ts +0 -38
- package/dist/src/core/performance/media-loading-optimizer.d.ts +0 -105
- package/dist/src/core/performance/media-loading-optimizer.ts +0 -538
- package/dist/src/core/performance/performance-budgets.d.ts +0 -68
- package/dist/src/core/performance/performance-budgets.ts +0 -432
- package/dist/src/core/performance/performance-monitor.d.ts +0 -95
- package/dist/src/core/performance/performance-monitor.tsx +0 -476
- package/dist/src/core/performance/performance-testing.d.ts +0 -69
- package/dist/src/core/performance/performance-testing.ts +0 -459
- package/dist/src/core/plugins/base-plugin.d.ts +0 -52
- package/dist/src/core/plugins/base-plugin.ts +0 -224
- package/dist/src/core/plugins/enhanced-plugin-system.d.ts +0 -160
- package/dist/src/core/plugins/enhanced-plugin-system.ts +0 -417
- package/dist/src/core/plugins/examples/analytics-plugin.d.ts +0 -30
- package/dist/src/core/plugins/examples/analytics-plugin.ts +0 -242
- package/dist/src/core/plugins/index.d.ts +0 -8
- package/dist/src/core/plugins/index.ts +0 -39
- package/dist/src/core/plugins/registry.d.ts +0 -31
- package/dist/src/core/plugins/registry.ts +0 -327
- package/dist/src/core/plugins/types.d.ts +0 -101
- package/dist/src/core/plugins/types.ts +0 -159
- package/dist/src/core/plugins/utils.d.ts +0 -38
- package/dist/src/core/plugins/utils.ts +0 -316
- package/dist/src/core/progressive-loading.d.ts +0 -88
- package/dist/src/core/progressive-loading.tsx +0 -322
- package/dist/src/core/providers/enhanced-hls-provider.d.ts +0 -50
- package/dist/src/core/providers/enhanced-hls-provider.ts +0 -308
- package/dist/src/core/providers/service-provider.d.ts +0 -49
- package/dist/src/core/providers/service-provider.tsx +0 -168
- package/dist/src/core/utils.d.ts +0 -25
- package/dist/src/core/utils.tsx +0 -38
- package/dist/src/features/media-session/media-session-manager.d.ts +0 -132
- package/dist/src/features/media-session/media-session-manager.ts +0 -429
- package/dist/src/features/picture-in-picture/pip-manager.d.ts +0 -94
- package/dist/src/features/picture-in-picture/pip-manager.ts +0 -429
- package/dist/src/features/playlist/playlist-manager.d.ts +0 -208
- package/dist/src/features/playlist/playlist-manager.ts +0 -606
- package/dist/src/features/subtitles/subtitle-manager.d.ts +0 -136
- package/dist/src/features/subtitles/subtitle-manager.ts +0 -441
- package/dist/src/features/subtitles/subtitle-parser.d.ts +0 -60
- package/dist/src/features/subtitles/subtitle-parser.ts +0 -280
- package/dist/src/features/thumbnails/thumbnail-generator.d.ts +0 -136
- package/dist/src/features/thumbnails/thumbnail-generator.ts +0 -519
- package/dist/src/hooks/accessibility/index.d.ts +0 -5
- package/dist/src/hooks/accessibility/index.ts +0 -27
- package/dist/src/hooks/accessibility/use-accessibility-preferences.d.ts +0 -14
- package/dist/src/hooks/accessibility/use-accessibility-preferences.ts +0 -188
- package/dist/src/hooks/accessibility/use-focus-management.d.ts +0 -31
- package/dist/src/hooks/accessibility/use-focus-management.ts +0 -176
- package/dist/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +0 -38
- package/dist/src/hooks/accessibility/use-keyboard-shortcuts.ts +0 -144
- package/dist/src/hooks/accessibility/use-screen-reader.d.ts +0 -22
- package/dist/src/hooks/accessibility/use-screen-reader.ts +0 -182
- package/dist/src/hooks/core/index.d.ts +0 -18
- package/dist/src/hooks/core/index.ts +0 -47
- package/dist/src/hooks/legacy.d.ts +0 -18
- package/dist/src/hooks/legacy.ts +0 -27
- package/dist/src/hooks/use-enhanced-media-player.d.ts +0 -88
- package/dist/src/hooks/use-enhanced-media-player.ts +0 -485
- package/dist/src/hooks/use-intelligent-preloading.d.ts +0 -66
- package/dist/src/hooks/use-intelligent-preloading.ts +0 -363
- package/dist/src/hooks/use-keyboard-controls.d.ts +0 -13
- package/dist/src/hooks/use-keyboard-controls.ts +0 -115
- package/dist/src/hooks/use-media-actions.d.ts +0 -62
- package/dist/src/hooks/use-media-actions.ts +0 -175
- package/dist/src/hooks/use-media-metadata.d.ts +0 -11
- package/dist/src/hooks/use-media-metadata.ts +0 -89
- package/dist/src/hooks/use-media-optimistic.d.ts +0 -36
- package/dist/src/hooks/use-media-optimistic.ts +0 -270
- package/dist/src/hooks/use-media-player.d.ts +0 -31
- package/dist/src/hooks/use-media-player.ts +0 -310
- package/dist/src/hooks/use-media-state.d.ts +0 -17
- package/dist/src/hooks/use-media-state.ts +0 -190
- package/dist/src/hooks/use-memory-optimization.d.ts +0 -40
- package/dist/src/hooks/use-memory-optimization.ts +0 -358
- package/dist/src/hooks/use-mobile.ts +0 -125
- package/dist/src/hooks/use-optimistic-controls.d.ts +0 -22
- package/dist/src/hooks/use-optimistic-controls.ts +0 -92
- package/dist/src/hooks/use-optimized-media.d.ts +0 -46
- package/dist/src/hooks/use-optimized-media.ts +0 -263
- package/dist/src/hooks/use-touch-gestures.d.ts +0 -47
- package/dist/src/hooks/use-touch-gestures.ts +0 -417
- package/dist/src/hooks/useEnhancedSubtitles.d.ts +0 -39
- package/dist/src/hooks/useEnhancedSubtitles.ts +0 -258
- package/dist/src/hooks/useKeyboardShortcuts.d.ts +0 -10
- package/dist/src/hooks/useKeyboardShortcuts.ts +0 -74
- package/dist/src/hooks/useMediaControls.d.ts +0 -9
- package/dist/src/hooks/useMediaControls.ts +0 -52
- package/dist/src/hooks/useScreenshot.d.ts +0 -4
- package/dist/src/hooks/useScreenshot.ts +0 -57
- package/dist/src/hooks/useSubtitles.d.ts +0 -8
- package/dist/src/hooks/useSubtitles.ts +0 -91
- package/dist/src/hooks/useVideoPlayer.d.ts +0 -32
- package/dist/src/hooks/useVideoPlayer.ts +0 -232
- package/dist/src/icons/components/FullscreenIcon.d.ts +0 -3
- package/dist/src/icons/components/FullscreenIcon.tsx +0 -37
- package/dist/src/icons/components/SettingsIcon.d.ts +0 -3
- package/dist/src/icons/components/SettingsIcon.tsx +0 -38
- package/dist/src/icons/components/animated/LoadingIcon.d.ts +0 -3
- package/dist/src/icons/components/animated/LoadingIcon.tsx +0 -43
- package/dist/src/icons/components/animated/PlayPauseIcon.d.ts +0 -7
- package/dist/src/icons/components/animated/PlayPauseIcon.tsx +0 -50
- package/dist/src/icons/components/media/PauseIcon.d.ts +0 -3
- package/dist/src/icons/components/media/PauseIcon.tsx +0 -39
- package/dist/src/icons/components/media/PlayIcon.d.ts +0 -3
- package/dist/src/icons/components/media/PlayIcon.tsx +0 -38
- package/dist/src/icons/components/volume/VolumeIcon.d.ts +0 -3
- package/dist/src/icons/components/volume/VolumeIcon.tsx +0 -39
- package/dist/src/icons/components/volume/VolumeOffIcon.d.ts +0 -3
- package/dist/src/icons/components/volume/VolumeOffIcon.tsx +0 -39
- package/dist/src/icons/index.d.ts +0 -28
- package/dist/src/icons/index.ts +0 -56
- package/dist/src/icons/provider.d.ts +0 -13
- package/dist/src/icons/provider.tsx +0 -64
- package/dist/src/icons/types.d.ts +0 -18
- package/dist/src/icons/types.ts +0 -40
- package/dist/src/index-enhanced.d.ts +0 -13
- package/dist/src/index-enhanced.ts +0 -35
- package/dist/src/index-legacy.d.ts +0 -81
- package/dist/src/index-legacy.ts +0 -327
- package/dist/src/index.css +0 -102
- package/dist/src/index.d.ts +0 -38
- package/dist/src/index.minimal.d.ts +0 -2
- package/dist/src/index.minimal.ts +0 -4
- package/dist/src/index.ts +0 -216
- package/dist/src/lib/deprecation.d.ts +0 -7
- package/dist/src/lib/deprecation.ts +0 -51
- package/dist/src/lib/format-time.d.ts +0 -9
- package/dist/src/lib/format-time.ts +0 -37
- package/dist/src/lib/index.d.ts +0 -3
- package/dist/src/lib/index.ts +0 -3
- package/dist/src/lib/utils.d.ts +0 -3
- package/dist/src/lib/utils.ts +0 -6
- package/dist/src/styles/globals.css +0 -462
- package/dist/src/styles/minimal-player.css +0 -589
- package/dist/src/styles/pixel-art.css +0 -46
- package/dist/src/styles/videojs.css +0 -100
- package/dist/src/test/setup.d.ts +0 -2
- package/dist/src/test/setup.ts +0 -79
- package/dist/src/types/events.d.ts +0 -41
- package/dist/src/types/events.ts +0 -47
- package/dist/src/types/formats.d.ts +0 -45
- package/dist/src/types/formats.ts +0 -95
- package/dist/src/types/index.d.ts +0 -128
- package/dist/src/types/index.ts +0 -225
- package/dist/src/types/videojs-plugins.d.ts +0 -14
- package/dist/styles/globals.css +0 -462
- package/dist/styles/minimal-player.css +0 -589
- package/dist/styles/pixel-art.css +0 -46
- package/dist/styles/videojs.css +0 -100
- package/src/adapters/videojs-adapter.d.ts +0 -38
- package/src/adapters/videojs-adapter.d.ts.map +0 -1
- package/src/components/AnimateLoading.d.ts +0 -9
- package/src/components/AnimateLoading.d.ts.map +0 -1
- package/src/components/LoadingState.d.ts +0 -33
- package/src/components/LoadingState.d.ts.map +0 -1
- package/src/components/accessibility/keyboard-help-overlay.d.ts +0 -17
- package/src/components/accessibility/keyboard-help-overlay.d.ts.map +0 -1
- package/src/components/audio-player.d.ts +0 -3
- package/src/components/audio-player.d.ts.map +0 -1
- package/src/components/basic/index.d.ts +0 -26
- package/src/components/basic/index.d.ts.map +0 -1
- package/src/components/enhanced/advanced-features.d.ts +0 -45
- package/src/components/enhanced/advanced-features.d.ts.map +0 -1
- package/src/components/enhanced/debug-panel.d.ts +0 -70
- package/src/components/enhanced/debug-panel.d.ts.map +0 -1
- package/src/components/enhanced/enhanced-controls.d.ts +0 -50
- package/src/components/enhanced/enhanced-controls.d.ts.map +0 -1
- package/src/components/enhanced/enhanced-media-player.d.ts +0 -26
- package/src/components/enhanced/enhanced-media-player.d.ts.map +0 -1
- package/src/components/enhanced/error-handling.d.ts +0 -36
- package/src/components/enhanced/error-handling.d.ts.map +0 -1
- package/src/components/enhanced/index.d.ts +0 -7
- package/src/components/enhanced/index.d.ts.map +0 -1
- package/src/components/enhanced/media-player-enhanced.d.ts +0 -21
- package/src/components/enhanced/media-player-enhanced.d.ts.map +0 -1
- package/src/components/examples/basic-video-player.d.ts +0 -10
- package/src/components/examples/basic-video-player.d.ts.map +0 -1
- package/src/components/examples/custom-controls-example.d.ts +0 -10
- package/src/components/examples/custom-controls-example.d.ts.map +0 -1
- package/src/components/examples/enhanced-controls-example.d.ts +0 -9
- package/src/components/examples/enhanced-controls-example.d.ts.map +0 -1
- package/src/components/examples/enhanced-media-player-example.d.ts +0 -9
- package/src/components/examples/enhanced-media-player-example.d.ts.map +0 -1
- package/src/components/examples/loading-states-demo.d.ts +0 -2
- package/src/components/examples/loading-states-demo.d.ts.map +0 -1
- package/src/components/examples/react-19-demo.d.ts +0 -10
- package/src/components/examples/react-19-demo.d.ts.map +0 -1
- package/src/components/examples/volume-orientation-demo.d.ts +0 -2
- package/src/components/examples/volume-orientation-demo.d.ts.map +0 -1
- package/src/components/icon-demo.d.ts +0 -2
- package/src/components/icon-demo.d.ts.map +0 -1
- package/src/components/icons/index.d.ts +0 -36
- package/src/components/icons/index.d.ts.map +0 -1
- package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/ArrowRightIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/ArrowRightIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/AudioIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/AudioIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/BackwardIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/BackwardIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/CameraIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/CameraIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/CheckIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/CheckIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/EnablePiPIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/EnablePiPIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/ForwardIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/ForwardIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/LoadingIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/LoadingIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/PauseIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/PauseIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/PlayIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/PlayIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/QualityIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/QualityIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/SettingsIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/SettingsIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/SliderIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/SliderIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/SubtitleIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/SubtitleIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/UnPiPIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/UnPiPIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/VolumeOneIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/VolumeOneIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts.map +0 -1
- package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +0 -4
- package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts.map +0 -1
- package/src/components/legacy.d.ts +0 -13
- package/src/components/legacy.d.ts.map +0 -1
- package/src/components/media-metadata-display.d.ts +0 -11
- package/src/components/media-metadata-display.d.ts.map +0 -1
- package/src/components/media-player-audio.d.ts +0 -9
- package/src/components/media-player-audio.d.ts.map +0 -1
- package/src/components/media-player-controls.d.ts +0 -23
- package/src/components/media-player-controls.d.ts.map +0 -1
- package/src/components/media-player-error.d.ts +0 -16
- package/src/components/media-player-error.d.ts.map +0 -1
- package/src/components/media-player-fullscreen.d.ts +0 -12
- package/src/components/media-player-fullscreen.d.ts.map +0 -1
- package/src/components/media-player-hls.d.ts +0 -23
- package/src/components/media-player-hls.d.ts.map +0 -1
- package/src/components/media-player-loading.d.ts +0 -12
- package/src/components/media-player-loading.d.ts.map +0 -1
- package/src/components/media-player-play.d.ts +0 -11
- package/src/components/media-player-play.d.ts.map +0 -1
- package/src/components/media-player-root.d.ts +0 -28
- package/src/components/media-player-root.d.ts.map +0 -1
- package/src/components/media-player-seek.d.ts +0 -15
- package/src/components/media-player-seek.d.ts.map +0 -1
- package/src/components/media-player-time.d.ts +0 -12
- package/src/components/media-player-time.d.ts.map +0 -1
- package/src/components/media-player-tooltip.d.ts +0 -13
- package/src/components/media-player-tooltip.d.ts.map +0 -1
- package/src/components/media-player-video.d.ts +0 -9
- package/src/components/media-player-video.d.ts.map +0 -1
- package/src/components/media-player-volume.d.ts +0 -13
- package/src/components/media-player-volume.d.ts.map +0 -1
- package/src/components/media-player.d.ts +0 -3
- package/src/components/media-player.d.ts.map +0 -1
- package/src/components/media-suspense.d.ts +0 -78
- package/src/components/media-suspense.d.ts.map +0 -1
- package/src/components/player-settings-form.d.ts +0 -8
- package/src/components/player-settings-form.d.ts.map +0 -1
- package/src/components/react-player-wrapper.d.ts +0 -64
- package/src/components/react-player-wrapper.d.ts.map +0 -1
- package/src/components/simple-video-player.d.ts +0 -9
- package/src/components/simple-video-player.d.ts.map +0 -1
- package/src/components/ui/button.tsx +0 -49
- package/src/components/ui/dropdown-menu.tsx +0 -137
- package/src/components/ui/enhanced-seek-bar.d.ts +0 -3
- package/src/components/ui/enhanced-seek-bar.d.ts.map +0 -1
- package/src/components/ui/fullscreen-button.d.ts +0 -3
- package/src/components/ui/fullscreen-button.d.ts.map +0 -1
- package/src/components/ui/icons.tsx +0 -174
- package/src/components/ui/media-resource-preloader.d.ts +0 -21
- package/src/components/ui/media-resource-preloader.d.ts.map +0 -1
- package/src/components/ui/play-button.d.ts +0 -3
- package/src/components/ui/play-button.d.ts.map +0 -1
- package/src/components/ui/seek-bar.d.ts +0 -3
- package/src/components/ui/seek-bar.d.ts.map +0 -1
- package/src/components/ui/slider.tsx +0 -55
- package/src/components/ui/time-display.d.ts +0 -3
- package/src/components/ui/time-display.d.ts.map +0 -1
- package/src/components/ui/tooltip.tsx +0 -131
- package/src/components/ui/volume-control.d.ts +0 -3
- package/src/components/ui/volume-control.d.ts.map +0 -1
- package/src/components/unified/base-media-player.d.ts +0 -18
- package/src/components/unified/base-media-player.d.ts.map +0 -1
- package/src/components/unified/media-player.d.ts +0 -37
- package/src/components/unified/media-player.d.ts.map +0 -1
- package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +0 -42
- package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts.map +0 -1
- package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +0 -44
- package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalControls.d.ts +0 -19
- package/src/components/variants/minimal/MinimalControls.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalLoading.d.ts +0 -10
- package/src/components/variants/minimal/MinimalLoading.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalMediaPlayer.d.ts +0 -38
- package/src/components/variants/minimal/MinimalMediaPlayer.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalOverlay.d.ts +0 -11
- package/src/components/variants/minimal/MinimalOverlay.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalPlayButton.d.ts +0 -9
- package/src/components/variants/minimal/MinimalPlayButton.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalSeekBar.d.ts +0 -7
- package/src/components/variants/minimal/MinimalSeekBar.d.ts.map +0 -1
- package/src/components/variants/minimal/MinimalVolumeControl.d.ts +0 -7
- package/src/components/variants/minimal/MinimalVolumeControl.d.ts.map +0 -1
- package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +0 -22
- package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts.map +0 -1
- package/src/components/variants/minimal/components/CenterPlayButton.d.ts +0 -7
- package/src/components/variants/minimal/components/CenterPlayButton.d.ts.map +0 -1
- package/src/components/variants/minimal/components/ControlBar.d.ts +0 -43
- package/src/components/variants/minimal/components/ControlBar.d.ts.map +0 -1
- package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +0 -24
- package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts.map +0 -1
- package/src/components/variants/minimal/components/PlaybackControls.d.ts +0 -9
- package/src/components/variants/minimal/components/PlaybackControls.d.ts.map +0 -1
- package/src/components/variants/minimal/components/RightControls.d.ts +0 -25
- package/src/components/variants/minimal/components/RightControls.d.ts.map +0 -1
- package/src/components/variants/minimal/components/SeekBar.d.ts +0 -11
- package/src/components/variants/minimal/components/SeekBar.d.ts.map +0 -1
- package/src/components/variants/minimal/components/SettingsDropdown.d.ts +0 -9
- package/src/components/variants/minimal/components/SettingsDropdown.d.ts.map +0 -1
- package/src/components/variants/minimal/components/SubtitleDisplay.d.ts +0 -7
- package/src/components/variants/minimal/components/SubtitleDisplay.d.ts.map +0 -1
- package/src/components/variants/minimal/components/TimeDisplay.d.ts +0 -7
- package/src/components/variants/minimal/components/TimeDisplay.d.ts.map +0 -1
- package/src/components/variants/minimal/components/VideoElement.d.ts +0 -13
- package/src/components/variants/minimal/components/VideoElement.d.ts.map +0 -1
- package/src/components/variants/minimal/components/VolumeControl.d.ts +0 -13
- package/src/components/variants/minimal/components/VolumeControl.d.ts.map +0 -1
- package/src/components/variants/minimal/index.d.ts +0 -17
- package/src/components/variants/minimal/index.d.ts.map +0 -1
- package/src/components/video-player.d.ts +0 -3
- package/src/components/video-player.d.ts.map +0 -1
- package/src/context/error-handling.d.ts +0 -72
- package/src/context/error-handling.d.ts.map +0 -1
- package/src/context/media-context.d.ts +0 -104
- package/src/context/media-context.d.ts.map +0 -1
- package/src/context/media-provider.d.ts +0 -26
- package/src/context/media-provider.d.ts.map +0 -1
- package/src/context/media-store.d.ts +0 -33
- package/src/context/media-store.d.ts.map +0 -1
- package/src/context/persistence.d.ts +0 -83
- package/src/context/persistence.d.ts.map +0 -1
- package/src/core/events/event-system.d.ts +0 -170
- package/src/core/events/event-system.d.ts.map +0 -1
- package/src/core/events/hooks.d.ts +0 -33
- package/src/core/events/hooks.d.ts.map +0 -1
- package/src/core/events/index.d.ts +0 -6
- package/src/core/events/index.d.ts.map +0 -1
- package/src/core/events/middleware.d.ts +0 -39
- package/src/core/events/middleware.d.ts.map +0 -1
- package/src/core/index.d.ts +0 -8
- package/src/core/index.d.ts.map +0 -1
- package/src/core/optimization/bundle-optimizer.d.ts +0 -44
- package/src/core/optimization/bundle-optimizer.d.ts.map +0 -1
- package/src/core/performance/cicd.d.ts +0 -8
- package/src/core/performance/cicd.d.ts.map +0 -1
- package/src/core/performance/index.d.ts +0 -10
- package/src/core/performance/index.d.ts.map +0 -1
- package/src/core/performance/media-loading-optimizer.d.ts +0 -105
- package/src/core/performance/media-loading-optimizer.d.ts.map +0 -1
- package/src/core/performance/performance-budgets.d.ts +0 -68
- package/src/core/performance/performance-budgets.d.ts.map +0 -1
- package/src/core/performance/performance-monitor.d.ts +0 -95
- package/src/core/performance/performance-monitor.d.ts.map +0 -1
- package/src/core/performance/performance-testing.d.ts +0 -69
- package/src/core/performance/performance-testing.d.ts.map +0 -1
- package/src/core/plugins/base-plugin.d.ts +0 -52
- package/src/core/plugins/base-plugin.d.ts.map +0 -1
- package/src/core/plugins/enhanced-plugin-system.d.ts +0 -160
- package/src/core/plugins/enhanced-plugin-system.d.ts.map +0 -1
- package/src/core/plugins/examples/analytics-plugin.d.ts +0 -30
- package/src/core/plugins/examples/analytics-plugin.d.ts.map +0 -1
- package/src/core/plugins/index.d.ts +0 -8
- package/src/core/plugins/index.d.ts.map +0 -1
- package/src/core/plugins/registry.d.ts +0 -31
- package/src/core/plugins/registry.d.ts.map +0 -1
- package/src/core/plugins/types.d.ts +0 -101
- package/src/core/plugins/types.d.ts.map +0 -1
- package/src/core/plugins/utils.d.ts +0 -38
- package/src/core/plugins/utils.d.ts.map +0 -1
- package/src/core/progressive-loading.d.ts +0 -88
- package/src/core/progressive-loading.d.ts.map +0 -1
- package/src/core/providers/enhanced-hls-provider.d.ts +0 -50
- package/src/core/providers/enhanced-hls-provider.d.ts.map +0 -1
- package/src/core/providers/service-provider.d.ts +0 -49
- package/src/core/providers/service-provider.d.ts.map +0 -1
- package/src/core/utils.d.ts +0 -25
- package/src/core/utils.d.ts.map +0 -1
- package/src/features/media-session/media-session-manager.d.ts +0 -132
- package/src/features/media-session/media-session-manager.d.ts.map +0 -1
- package/src/features/picture-in-picture/pip-manager.d.ts +0 -94
- package/src/features/picture-in-picture/pip-manager.d.ts.map +0 -1
- package/src/features/playlist/playlist-manager.d.ts +0 -208
- package/src/features/playlist/playlist-manager.d.ts.map +0 -1
- package/src/features/subtitles/subtitle-manager.d.ts +0 -136
- package/src/features/subtitles/subtitle-manager.d.ts.map +0 -1
- package/src/features/subtitles/subtitle-parser.d.ts +0 -60
- package/src/features/subtitles/subtitle-parser.d.ts.map +0 -1
- package/src/features/thumbnails/thumbnail-generator.d.ts +0 -136
- package/src/features/thumbnails/thumbnail-generator.d.ts.map +0 -1
- package/src/hooks/accessibility/index.d.ts +0 -5
- package/src/hooks/accessibility/index.d.ts.map +0 -1
- package/src/hooks/accessibility/use-accessibility-preferences.d.ts +0 -14
- package/src/hooks/accessibility/use-accessibility-preferences.d.ts.map +0 -1
- package/src/hooks/accessibility/use-focus-management.d.ts +0 -31
- package/src/hooks/accessibility/use-focus-management.d.ts.map +0 -1
- package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +0 -38
- package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts.map +0 -1
- package/src/hooks/accessibility/use-screen-reader.d.ts +0 -22
- package/src/hooks/accessibility/use-screen-reader.d.ts.map +0 -1
- package/src/hooks/core/index.d.ts +0 -18
- package/src/hooks/core/index.d.ts.map +0 -1
- package/src/hooks/legacy.d.ts +0 -18
- package/src/hooks/legacy.d.ts.map +0 -1
- package/src/hooks/use-enhanced-media-player.d.ts +0 -88
- package/src/hooks/use-enhanced-media-player.d.ts.map +0 -1
- package/src/hooks/use-intelligent-preloading.d.ts +0 -66
- package/src/hooks/use-intelligent-preloading.d.ts.map +0 -1
- package/src/hooks/use-keyboard-controls.d.ts +0 -13
- package/src/hooks/use-keyboard-controls.d.ts.map +0 -1
- package/src/hooks/use-media-actions.d.ts +0 -62
- package/src/hooks/use-media-actions.d.ts.map +0 -1
- package/src/hooks/use-media-metadata.d.ts +0 -11
- package/src/hooks/use-media-metadata.d.ts.map +0 -1
- package/src/hooks/use-media-optimistic.d.ts +0 -36
- package/src/hooks/use-media-optimistic.d.ts.map +0 -1
- package/src/hooks/use-media-player.d.ts +0 -31
- package/src/hooks/use-media-player.d.ts.map +0 -1
- package/src/hooks/use-media-state.d.ts +0 -17
- package/src/hooks/use-media-state.d.ts.map +0 -1
- package/src/hooks/use-memory-optimization.d.ts +0 -40
- package/src/hooks/use-memory-optimization.d.ts.map +0 -1
- package/src/hooks/use-mobile.ts +0 -125
- package/src/hooks/use-optimistic-controls.d.ts +0 -22
- package/src/hooks/use-optimistic-controls.d.ts.map +0 -1
- package/src/hooks/use-optimized-media.d.ts +0 -46
- package/src/hooks/use-optimized-media.d.ts.map +0 -1
- package/src/hooks/use-touch-gestures.d.ts +0 -47
- package/src/hooks/use-touch-gestures.d.ts.map +0 -1
- package/src/hooks/useEnhancedSubtitles.d.ts +0 -39
- package/src/hooks/useEnhancedSubtitles.d.ts.map +0 -1
- package/src/hooks/useKeyboardShortcuts.d.ts +0 -10
- package/src/hooks/useKeyboardShortcuts.d.ts.map +0 -1
- package/src/hooks/useMediaControls.d.ts +0 -9
- package/src/hooks/useMediaControls.d.ts.map +0 -1
- package/src/hooks/useScreenshot.d.ts +0 -4
- package/src/hooks/useScreenshot.d.ts.map +0 -1
- package/src/hooks/useSubtitles.d.ts +0 -8
- package/src/hooks/useSubtitles.d.ts.map +0 -1
- package/src/hooks/useVideoPlayer.d.ts +0 -32
- package/src/hooks/useVideoPlayer.d.ts.map +0 -1
- package/src/icons/components/FullscreenIcon.d.ts +0 -3
- package/src/icons/components/FullscreenIcon.d.ts.map +0 -1
- package/src/icons/components/SettingsIcon.d.ts +0 -3
- package/src/icons/components/SettingsIcon.d.ts.map +0 -1
- package/src/icons/components/animated/LoadingIcon.d.ts +0 -3
- package/src/icons/components/animated/LoadingIcon.d.ts.map +0 -1
- package/src/icons/components/animated/PlayPauseIcon.d.ts +0 -7
- package/src/icons/components/animated/PlayPauseIcon.d.ts.map +0 -1
- package/src/icons/components/media/PauseIcon.d.ts +0 -3
- package/src/icons/components/media/PauseIcon.d.ts.map +0 -1
- package/src/icons/components/media/PlayIcon.d.ts +0 -3
- package/src/icons/components/media/PlayIcon.d.ts.map +0 -1
- package/src/icons/components/volume/VolumeIcon.d.ts +0 -3
- package/src/icons/components/volume/VolumeIcon.d.ts.map +0 -1
- package/src/icons/components/volume/VolumeOffIcon.d.ts +0 -3
- package/src/icons/components/volume/VolumeOffIcon.d.ts.map +0 -1
- package/src/icons/index.d.ts +0 -28
- package/src/icons/index.d.ts.map +0 -1
- package/src/icons/provider.d.ts +0 -13
- package/src/icons/provider.d.ts.map +0 -1
- package/src/icons/types.d.ts +0 -18
- package/src/icons/types.d.ts.map +0 -1
- package/src/index-enhanced.d.ts +0 -13
- package/src/index-enhanced.d.ts.map +0 -1
- package/src/index-legacy.d.ts +0 -81
- package/src/index-legacy.d.ts.map +0 -1
- package/src/index.d.ts +0 -38
- package/src/index.d.ts.map +0 -1
- package/src/index.minimal.d.ts +0 -2
- package/src/index.minimal.d.ts.map +0 -1
- package/src/index.minimal.ts +0 -4
- package/src/lib/deprecation.d.ts +0 -7
- package/src/lib/deprecation.d.ts.map +0 -1
- package/src/lib/format-time.d.ts +0 -9
- package/src/lib/format-time.d.ts.map +0 -1
- package/src/lib/index.d.ts +0 -3
- package/src/lib/index.d.ts.map +0 -1
- package/src/lib/utils.d.ts +0 -3
- package/src/lib/utils.d.ts.map +0 -1
- package/src/test/setup.d.ts +0 -2
- package/src/test/setup.d.ts.map +0 -1
- package/src/types/events.d.ts +0 -41
- package/src/types/events.d.ts.map +0 -1
- package/src/types/formats.d.ts +0 -45
- package/src/types/formats.d.ts.map +0 -1
- package/src/types/index.d.ts +0 -128
- package/src/types/index.d.ts.map +0 -1
package/dist/index.d.ts
DELETED
|
@@ -1,1425 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Auto-generated TypeScript declarations for @therealtinhtute/baroiplayer
|
|
3
|
-
// Generated on 2025-10-12T13:43:05.399Z
|
|
4
|
-
|
|
5
|
-
import type { ReactNode, ComponentType } from 'react';
|
|
6
|
-
|
|
7
|
-
// Core Media Player Component
|
|
8
|
-
export interface MediaPlayerProps {
|
|
9
|
-
src?: string | string[];
|
|
10
|
-
className?: string;
|
|
11
|
-
children?: ReactNode;
|
|
12
|
-
autoPlay?: boolean;
|
|
13
|
-
controls?: boolean;
|
|
14
|
-
muted?: boolean;
|
|
15
|
-
loop?: boolean;
|
|
16
|
-
poster?: string;
|
|
17
|
-
width?: string | number;
|
|
18
|
-
height?: string | number;
|
|
19
|
-
volume?: number;
|
|
20
|
-
playbackRate?: number;
|
|
21
|
-
preload?: 'none' | 'metadata' | 'auto';
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export declare const MediaPlayer: ComponentType<MediaPlayerProps>;
|
|
25
|
-
|
|
26
|
-
// Enhanced Media Player Component
|
|
27
|
-
export interface EnhancedMediaPlayerProps extends MediaPlayerProps {
|
|
28
|
-
enhanced?: boolean;
|
|
29
|
-
debug?: boolean;
|
|
30
|
-
theme?: 'light' | 'dark' | 'auto';
|
|
31
|
-
customControls?: ReactNode;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export declare const EnhancedMediaPlayer: ComponentType<EnhancedMediaPlayerProps>;
|
|
35
|
-
|
|
36
|
-
// Media State Hook
|
|
37
|
-
export interface MediaState {
|
|
38
|
-
playing: boolean;
|
|
39
|
-
muted: boolean;
|
|
40
|
-
volume: number;
|
|
41
|
-
currentTime: number;
|
|
42
|
-
duration: number;
|
|
43
|
-
loading: boolean;
|
|
44
|
-
error: string | null;
|
|
45
|
-
buffered: TimeRanges;
|
|
46
|
-
seeking: boolean;
|
|
47
|
-
ended: boolean;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export declare const useMediaState: () => MediaState;
|
|
51
|
-
|
|
52
|
-
// Media Controls Hook
|
|
53
|
-
export interface MediaControls {
|
|
54
|
-
play: () => Promise<void>;
|
|
55
|
-
pause: () => void;
|
|
56
|
-
togglePlayPause: () => Promise<void>;
|
|
57
|
-
seek: (time: number) => void;
|
|
58
|
-
setVolume: (volume: number) => void;
|
|
59
|
-
toggleMute: () => void;
|
|
60
|
-
setPlaybackRate: (rate: number) => void;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export declare const useMediaControls: () => MediaControls;
|
|
64
|
-
|
|
65
|
-
// Utility types
|
|
66
|
-
export type MediaMimeType =
|
|
67
|
-
| 'video/mp4' | 'video/webm' | 'video/ogg' | 'video/quicktime'
|
|
68
|
-
| 'audio/mp3' | 'audio/wav' | 'audio/ogg' | 'audio/aac'
|
|
69
|
-
| 'application/x-mpegURL' | 'application/vnd.apple.mpegurl'
|
|
70
|
-
| string;
|
|
71
|
-
|
|
72
|
-
export type MediaSource = string | string[];
|
|
73
|
-
|
|
74
|
-
// Basic interfaces
|
|
75
|
-
export interface MediaPlayerConfig {
|
|
76
|
-
sources?: MediaSource[];
|
|
77
|
-
controls?: boolean;
|
|
78
|
-
autoplay?: boolean;
|
|
79
|
-
muted?: boolean;
|
|
80
|
-
volume?: number;
|
|
81
|
-
poster?: string;
|
|
82
|
-
width?: string | number;
|
|
83
|
-
height?: string | number;
|
|
84
|
-
preload?: 'none' | 'metadata' | 'auto';
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export interface MediaError {
|
|
88
|
-
code?: number;
|
|
89
|
-
message?: string;
|
|
90
|
-
MEDIA_ERR_ABORTED?: number;
|
|
91
|
-
MEDIA_ERR_NETWORK?: number;
|
|
92
|
-
MEDIA_ERR_DECODE?: number;
|
|
93
|
-
MEDIA_ERR_SRC_NOT_SUPPORTED?: number;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// Event types
|
|
97
|
-
export interface MediaEvent {
|
|
98
|
-
type: string;
|
|
99
|
-
target: HTMLMediaElement;
|
|
100
|
-
timeStamp: number;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export interface MediaLoadEvent extends MediaEvent {
|
|
104
|
-
type: 'loadstart' | 'loadeddata' | 'loadedmetadata' | 'canplay' | 'canplaythrough';
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
export interface MediaErrorEvent extends MediaEvent {
|
|
108
|
-
type: 'error';
|
|
109
|
-
error?: MediaError;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
export interface MediaTimeEvent extends MediaEvent {
|
|
113
|
-
type: 'timeupdate' | 'seeked' | 'seeking';
|
|
114
|
-
currentTime: number;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
// Plugin system
|
|
118
|
-
export interface MediaPlayerPlugin {
|
|
119
|
-
name: string;
|
|
120
|
-
install: (player: any) => void;
|
|
121
|
-
uninstall?: (player: any) => void;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export interface PluginManager {
|
|
125
|
-
register: (plugin: MediaPlayerPlugin) => void;
|
|
126
|
-
unregister: (plugin: MediaPlayerPlugin) => void;
|
|
127
|
-
list: () => MediaPlayerPlugin[];
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
// Exports from src/adapters/videojs-adapter.d.ts
|
|
132
|
-
export interface VideoSource {}
|
|
133
|
-
export interface TextTrack {}
|
|
134
|
-
export interface VideoJSAdapterProps {}
|
|
135
|
-
|
|
136
|
-
// Exports from src/adapters/videojs-adapter.tsx
|
|
137
|
-
export interface VideoSource {}
|
|
138
|
-
export interface TextTrack {}
|
|
139
|
-
export interface VideoJSAdapterProps {}
|
|
140
|
-
export declare function VideoJSAdapter(...args: any[]): any;
|
|
141
|
-
|
|
142
|
-
// Exports from src/components/AnimateLoading.tsx
|
|
143
|
-
export declare function AnimateLoading(...args: any[]): any;
|
|
144
|
-
|
|
145
|
-
// Exports from src/components/LoadingState.d.ts
|
|
146
|
-
export interface LoadingStateProps {}
|
|
147
|
-
export interface CustomLoadingProps {}
|
|
148
|
-
export type LoadingVariant = any;
|
|
149
|
-
export type LoadingContext = any;
|
|
150
|
-
export type LoadingSize = any;
|
|
151
|
-
|
|
152
|
-
// Exports from src/components/LoadingState.tsx
|
|
153
|
-
export interface LoadingStateProps {}
|
|
154
|
-
export interface CustomLoadingProps {}
|
|
155
|
-
export type LoadingVariant = any;
|
|
156
|
-
export type LoadingContext = any;
|
|
157
|
-
export type LoadingSize = any;
|
|
158
|
-
export declare const AnimateLoadingWrapper: any;
|
|
159
|
-
export declare const LoadingState: any;
|
|
160
|
-
export declare const CustomLoading: any;
|
|
161
|
-
export declare const LoadingPresets: any;
|
|
162
|
-
|
|
163
|
-
// Exports from src/components/accessibility/keyboard-help-overlay.tsx
|
|
164
|
-
export declare function KeyboardHelpOverlay(...args: any[]): any;
|
|
165
|
-
|
|
166
|
-
// Exports from src/components/audio-player.tsx
|
|
167
|
-
export declare const AudioPlayer: any;
|
|
168
|
-
|
|
169
|
-
// Exports from src/components/enhanced/advanced-features.d.ts
|
|
170
|
-
export interface Chapter {}
|
|
171
|
-
export interface QualityLevel {}
|
|
172
|
-
export interface Subtitle {}
|
|
173
|
-
|
|
174
|
-
// Exports from src/components/enhanced/advanced-features.tsx
|
|
175
|
-
export interface Chapter {}
|
|
176
|
-
export interface QualityLevel {}
|
|
177
|
-
export interface Subtitle {}
|
|
178
|
-
export declare const QualitySelector: any;
|
|
179
|
-
export declare const SubtitleSelector: any;
|
|
180
|
-
export declare const PlaybackSpeedSelector: any;
|
|
181
|
-
export declare const ChaptersPanel: any;
|
|
182
|
-
export declare const PictureInPictureButton: any;
|
|
183
|
-
|
|
184
|
-
// Exports from src/components/enhanced/debug-panel.d.ts
|
|
185
|
-
export default any;
|
|
186
|
-
|
|
187
|
-
// Exports from src/components/enhanced/debug-panel.tsx
|
|
188
|
-
export declare const DebugPanel: any;
|
|
189
|
-
export declare const PerformanceDebugPanel: any;
|
|
190
|
-
export default any;
|
|
191
|
-
|
|
192
|
-
// Exports from src/components/enhanced/enhanced-controls.tsx
|
|
193
|
-
export declare const EnhancedPlayButton: any;
|
|
194
|
-
export declare const EnhancedSeekBar: any;
|
|
195
|
-
export declare const EnhancedVolumeControl: any;
|
|
196
|
-
export declare const EnhancedBackwardButton: any;
|
|
197
|
-
export declare const EnhancedForwardButton: any;
|
|
198
|
-
export declare const EnhancedTimeDisplay: any;
|
|
199
|
-
export declare const PerformanceIndicator: any;
|
|
200
|
-
export declare const EnhancedControlBar: any;
|
|
201
|
-
|
|
202
|
-
// Exports from src/components/enhanced/enhanced-media-player.d.ts
|
|
203
|
-
export default any;
|
|
204
|
-
|
|
205
|
-
// Exports from src/components/enhanced/enhanced-media-player.tsx
|
|
206
|
-
export declare const EnhancedMediaPlayer: any;
|
|
207
|
-
export default any;
|
|
208
|
-
|
|
209
|
-
// Exports from src/components/enhanced/error-handling.tsx
|
|
210
|
-
export declare const EnhancedLoading: any;
|
|
211
|
-
export declare const EnhancedError: any;
|
|
212
|
-
export declare const ConnectionStatus: any;
|
|
213
|
-
export declare const BufferHealthIndicator: any;
|
|
214
|
-
|
|
215
|
-
// Exports from src/components/enhanced/media-player-enhanced.d.ts
|
|
216
|
-
export interface EnhancedMediaPlayerProps {}
|
|
217
|
-
|
|
218
|
-
// Exports from src/components/enhanced/media-player-enhanced.tsx
|
|
219
|
-
export interface EnhancedMediaPlayerProps {}
|
|
220
|
-
export declare const EnhancedMediaPlayer: any;
|
|
221
|
-
|
|
222
|
-
// Exports from src/components/examples/basic-video-player.d.ts
|
|
223
|
-
export interface BasicVideoPlayerProps {}
|
|
224
|
-
|
|
225
|
-
// Exports from src/components/examples/basic-video-player.tsx
|
|
226
|
-
export interface BasicVideoPlayerProps {}
|
|
227
|
-
export declare function BasicVideoPlayer(...args: any[]): any;
|
|
228
|
-
|
|
229
|
-
// Exports from src/components/examples/custom-controls-example.d.ts
|
|
230
|
-
export interface CustomControlsExampleProps {}
|
|
231
|
-
|
|
232
|
-
// Exports from src/components/examples/custom-controls-example.tsx
|
|
233
|
-
export interface CustomControlsExampleProps {}
|
|
234
|
-
export declare function CustomControlsExample(...args: any[]): any;
|
|
235
|
-
|
|
236
|
-
// Exports from src/components/examples/enhanced-controls-example.d.ts
|
|
237
|
-
export interface EnhancedControlsExampleProps {}
|
|
238
|
-
|
|
239
|
-
// Exports from src/components/examples/enhanced-controls-example.tsx
|
|
240
|
-
export interface EnhancedControlsExampleProps {}
|
|
241
|
-
export declare function EnhancedControlsExample(...args: any[]): any;
|
|
242
|
-
export declare function CustomEnhancedControlsExample(...args: any[]): any;
|
|
243
|
-
export declare function SkipButtonsOnlyExample(...args: any[]): any;
|
|
244
|
-
|
|
245
|
-
// Exports from src/components/examples/enhanced-media-player-example.tsx
|
|
246
|
-
export declare function EnhancedMediaPlayerExample(...args: any[]): any;
|
|
247
|
-
|
|
248
|
-
// Exports from src/components/examples/loading-states-demo.tsx
|
|
249
|
-
export declare function LoadingStatesDemo(...args: any[]): any;
|
|
250
|
-
|
|
251
|
-
// Exports from src/components/examples/react-19-demo.tsx
|
|
252
|
-
export declare function React19MediaPlayerDemo(...args: any[]): any;
|
|
253
|
-
export declare function React19DemoExample(...args: any[]): any;
|
|
254
|
-
|
|
255
|
-
// Exports from src/components/examples/volume-orientation-demo.tsx
|
|
256
|
-
export declare function VolumeOrientationDemo(...args: any[]): any;
|
|
257
|
-
|
|
258
|
-
// Exports from src/components/icon-demo.tsx
|
|
259
|
-
export declare function IconSystemDemo(...args: any[]): any;
|
|
260
|
-
|
|
261
|
-
// Exports from src/components/icons/index.d.ts
|
|
262
|
-
export interface IconProps {}
|
|
263
|
-
export interface IconSet {}
|
|
264
|
-
|
|
265
|
-
// Exports from src/components/icons/index.tsx
|
|
266
|
-
export interface IconProps {}
|
|
267
|
-
export interface IconSet {}
|
|
268
|
-
export declare const MinimalPlayIcon: any;
|
|
269
|
-
export declare const MinimalPauseIcon: any;
|
|
270
|
-
export declare const MinimalVolumeIcon: any;
|
|
271
|
-
export declare const MinimalVolumeMutedIcon: any;
|
|
272
|
-
export declare const MinimalFullscreenIcon: any;
|
|
273
|
-
export declare const MinimalExitFullscreenIcon: any;
|
|
274
|
-
export declare const MinimalSettingsIcon: any;
|
|
275
|
-
export declare const MinimalSpinner: any;
|
|
276
|
-
export declare const MinimalForwardIcon: any;
|
|
277
|
-
export declare const MinimalBackwardIcon: any;
|
|
278
|
-
export declare const MinimalForward10Icon: any;
|
|
279
|
-
export declare const MinimalBackward10Icon: any;
|
|
280
|
-
export declare const MinimalSubtitleIcon: any;
|
|
281
|
-
export declare const MinimalScreenshotIcon: any;
|
|
282
|
-
export declare const MinimalSpeedIcon: any;
|
|
283
|
-
export declare const defaultMinimalIcons: any;
|
|
284
|
-
|
|
285
|
-
// Exports from src/components/icons/svg-icons/ArrowLeftIcon.d.ts
|
|
286
|
-
export default any;
|
|
287
|
-
|
|
288
|
-
// Exports from src/components/icons/svg-icons/ArrowLeftIcon.tsx
|
|
289
|
-
export default any;
|
|
290
|
-
|
|
291
|
-
// Exports from src/components/icons/svg-icons/ArrowRightIcon.d.ts
|
|
292
|
-
export default any;
|
|
293
|
-
|
|
294
|
-
// Exports from src/components/icons/svg-icons/ArrowRightIcon.tsx
|
|
295
|
-
export default any;
|
|
296
|
-
|
|
297
|
-
// Exports from src/components/icons/svg-icons/AudioIcon.d.ts
|
|
298
|
-
export default any;
|
|
299
|
-
|
|
300
|
-
// Exports from src/components/icons/svg-icons/AudioIcon.tsx
|
|
301
|
-
export default any;
|
|
302
|
-
|
|
303
|
-
// Exports from src/components/icons/svg-icons/BackwardIcon.d.ts
|
|
304
|
-
export default any;
|
|
305
|
-
|
|
306
|
-
// Exports from src/components/icons/svg-icons/BackwardIcon.tsx
|
|
307
|
-
export default any;
|
|
308
|
-
|
|
309
|
-
// Exports from src/components/icons/svg-icons/CameraIcon.d.ts
|
|
310
|
-
export default any;
|
|
311
|
-
|
|
312
|
-
// Exports from src/components/icons/svg-icons/CameraIcon.tsx
|
|
313
|
-
export default any;
|
|
314
|
-
|
|
315
|
-
// Exports from src/components/icons/svg-icons/CheckIcon.d.ts
|
|
316
|
-
export default any;
|
|
317
|
-
|
|
318
|
-
// Exports from src/components/icons/svg-icons/CheckIcon.tsx
|
|
319
|
-
export default any;
|
|
320
|
-
|
|
321
|
-
// Exports from src/components/icons/svg-icons/EnablePiPIcon.d.ts
|
|
322
|
-
export default any;
|
|
323
|
-
|
|
324
|
-
// Exports from src/components/icons/svg-icons/EnablePiPIcon.tsx
|
|
325
|
-
export default any;
|
|
326
|
-
|
|
327
|
-
// Exports from src/components/icons/svg-icons/ForwardIcon.d.ts
|
|
328
|
-
export default any;
|
|
329
|
-
|
|
330
|
-
// Exports from src/components/icons/svg-icons/ForwardIcon.tsx
|
|
331
|
-
export default any;
|
|
332
|
-
|
|
333
|
-
// Exports from src/components/icons/svg-icons/FullscreenEnterIcon.d.ts
|
|
334
|
-
export default any;
|
|
335
|
-
|
|
336
|
-
// Exports from src/components/icons/svg-icons/FullscreenEnterIcon.tsx
|
|
337
|
-
export default any;
|
|
338
|
-
|
|
339
|
-
// Exports from src/components/icons/svg-icons/FullscreenExitIcon.d.ts
|
|
340
|
-
export default any;
|
|
341
|
-
|
|
342
|
-
// Exports from src/components/icons/svg-icons/FullscreenExitIcon.tsx
|
|
343
|
-
export default any;
|
|
344
|
-
|
|
345
|
-
// Exports from src/components/icons/svg-icons/LoadingIcon.d.ts
|
|
346
|
-
export default any;
|
|
347
|
-
|
|
348
|
-
// Exports from src/components/icons/svg-icons/LoadingIcon.tsx
|
|
349
|
-
export default any;
|
|
350
|
-
|
|
351
|
-
// Exports from src/components/icons/svg-icons/PauseIcon.d.ts
|
|
352
|
-
export default any;
|
|
353
|
-
|
|
354
|
-
// Exports from src/components/icons/svg-icons/PauseIcon.tsx
|
|
355
|
-
export default any;
|
|
356
|
-
|
|
357
|
-
// Exports from src/components/icons/svg-icons/PlayIcon.d.ts
|
|
358
|
-
export default any;
|
|
359
|
-
|
|
360
|
-
// Exports from src/components/icons/svg-icons/PlayIcon.tsx
|
|
361
|
-
export default any;
|
|
362
|
-
|
|
363
|
-
// Exports from src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts
|
|
364
|
-
export default any;
|
|
365
|
-
|
|
366
|
-
// Exports from src/components/icons/svg-icons/PlaybackSpeedIcon.tsx
|
|
367
|
-
export default any;
|
|
368
|
-
|
|
369
|
-
// Exports from src/components/icons/svg-icons/QualityIcon.d.ts
|
|
370
|
-
export default any;
|
|
371
|
-
|
|
372
|
-
// Exports from src/components/icons/svg-icons/QualityIcon.tsx
|
|
373
|
-
export default any;
|
|
374
|
-
|
|
375
|
-
// Exports from src/components/icons/svg-icons/SettingsIcon.d.ts
|
|
376
|
-
export default any;
|
|
377
|
-
|
|
378
|
-
// Exports from src/components/icons/svg-icons/SettingsIcon.tsx
|
|
379
|
-
export default any;
|
|
380
|
-
|
|
381
|
-
// Exports from src/components/icons/svg-icons/SliderIcon.d.ts
|
|
382
|
-
export default any;
|
|
383
|
-
|
|
384
|
-
// Exports from src/components/icons/svg-icons/SliderIcon.tsx
|
|
385
|
-
export default any;
|
|
386
|
-
|
|
387
|
-
// Exports from src/components/icons/svg-icons/SubtitleIcon.d.ts
|
|
388
|
-
export default any;
|
|
389
|
-
|
|
390
|
-
// Exports from src/components/icons/svg-icons/SubtitleIcon.tsx
|
|
391
|
-
export default any;
|
|
392
|
-
|
|
393
|
-
// Exports from src/components/icons/svg-icons/SubtitleOffIcon.d.ts
|
|
394
|
-
export default any;
|
|
395
|
-
|
|
396
|
-
// Exports from src/components/icons/svg-icons/SubtitleOffIcon.tsx
|
|
397
|
-
export default any;
|
|
398
|
-
|
|
399
|
-
// Exports from src/components/icons/svg-icons/UnPiPIcon.d.ts
|
|
400
|
-
export default any;
|
|
401
|
-
|
|
402
|
-
// Exports from src/components/icons/svg-icons/UnPiPIcon.tsx
|
|
403
|
-
export declare function UnPiPIcon(...args: any[]): any;
|
|
404
|
-
export default any;
|
|
405
|
-
|
|
406
|
-
// Exports from src/components/icons/svg-icons/VolumeMutedIcon.d.ts
|
|
407
|
-
export default any;
|
|
408
|
-
|
|
409
|
-
// Exports from src/components/icons/svg-icons/VolumeMutedIcon.tsx
|
|
410
|
-
export default any;
|
|
411
|
-
|
|
412
|
-
// Exports from src/components/icons/svg-icons/VolumeOneIcon.d.ts
|
|
413
|
-
export default any;
|
|
414
|
-
|
|
415
|
-
// Exports from src/components/icons/svg-icons/VolumeOneIcon.tsx
|
|
416
|
-
export default any;
|
|
417
|
-
|
|
418
|
-
// Exports from src/components/icons/svg-icons/VolumeThreeIcon.d.ts
|
|
419
|
-
export default any;
|
|
420
|
-
|
|
421
|
-
// Exports from src/components/icons/svg-icons/VolumeThreeIcon.tsx
|
|
422
|
-
export default any;
|
|
423
|
-
|
|
424
|
-
// Exports from src/components/icons/svg-icons/VolumeTwoIcon.d.ts
|
|
425
|
-
export default any;
|
|
426
|
-
|
|
427
|
-
// Exports from src/components/icons/svg-icons/VolumeTwoIcon.tsx
|
|
428
|
-
export default any;
|
|
429
|
-
|
|
430
|
-
// Exports from src/components/legacy.tsx
|
|
431
|
-
export declare const ModernMediaPlayer: any;
|
|
432
|
-
export declare const SimpleVideoPlayer: any;
|
|
433
|
-
export declare const LegacyPlayButton: any;
|
|
434
|
-
export declare const LegacySeekBar: any;
|
|
435
|
-
export declare const LegacyTimeDisplay: any;
|
|
436
|
-
export declare const LegacyVolumeControl: any;
|
|
437
|
-
export declare const LegacyFullscreenButton: any;
|
|
438
|
-
|
|
439
|
-
// Exports from src/components/media-metadata-display.tsx
|
|
440
|
-
export declare function MediaMetadataDisplay(...args: any[]): any;
|
|
441
|
-
export declare function MediaInfo(...args: any[]): any;
|
|
442
|
-
|
|
443
|
-
// Exports from src/components/media-player-audio.d.ts
|
|
444
|
-
export interface MediaPlayerAudioProps {}
|
|
445
|
-
|
|
446
|
-
// Exports from src/components/media-player-audio.tsx
|
|
447
|
-
export interface MediaPlayerAudioProps {}
|
|
448
|
-
export declare function MediaPlayerAudio(...args: any[]): any;
|
|
449
|
-
|
|
450
|
-
// Exports from src/components/media-player-controls.d.ts
|
|
451
|
-
export interface MediaPlayerControlsProps {}
|
|
452
|
-
export interface MediaPlayerControlsOverlayProps {}
|
|
453
|
-
|
|
454
|
-
// Exports from src/components/media-player-controls.tsx
|
|
455
|
-
export interface MediaPlayerControlsProps {}
|
|
456
|
-
export interface MediaPlayerControlsOverlayProps {}
|
|
457
|
-
export declare function MediaPlayerControls(...args: any[]): any;
|
|
458
|
-
export declare function MediaPlayerControlsOverlay(...args: any[]): any;
|
|
459
|
-
|
|
460
|
-
// Exports from src/components/media-player-error.d.ts
|
|
461
|
-
export interface MediaPlayerErrorProps {}
|
|
462
|
-
|
|
463
|
-
// Exports from src/components/media-player-error.tsx
|
|
464
|
-
export interface MediaPlayerErrorProps {}
|
|
465
|
-
export declare function MediaPlayerError(...args: any[]): any;
|
|
466
|
-
|
|
467
|
-
// Exports from src/components/media-player-fullscreen.d.ts
|
|
468
|
-
export interface MediaPlayerFullscreenProps {}
|
|
469
|
-
|
|
470
|
-
// Exports from src/components/media-player-fullscreen.tsx
|
|
471
|
-
export interface MediaPlayerFullscreenProps {}
|
|
472
|
-
export declare function MediaPlayerFullscreen(...args: any[]): any;
|
|
473
|
-
|
|
474
|
-
// Exports from src/components/media-player-hls.d.ts
|
|
475
|
-
export interface MediaPlayerHLSProps {}
|
|
476
|
-
|
|
477
|
-
// Exports from src/components/media-player-hls.tsx
|
|
478
|
-
export interface MediaPlayerHLSProps {}
|
|
479
|
-
export declare function MediaPlayerHLS(...args: any[]): any;
|
|
480
|
-
|
|
481
|
-
// Exports from src/components/media-player-loading.d.ts
|
|
482
|
-
export interface MediaPlayerLoadingProps {}
|
|
483
|
-
|
|
484
|
-
// Exports from src/components/media-player-loading.tsx
|
|
485
|
-
export interface MediaPlayerLoadingProps {}
|
|
486
|
-
export declare function MediaPlayerLoading(...args: any[]): any;
|
|
487
|
-
|
|
488
|
-
// Exports from src/components/media-player-play.d.ts
|
|
489
|
-
export interface MediaPlayerPlayProps {}
|
|
490
|
-
|
|
491
|
-
// Exports from src/components/media-player-play.tsx
|
|
492
|
-
export interface MediaPlayerPlayProps {}
|
|
493
|
-
export declare function MediaPlayerPlay(...args: any[]): any;
|
|
494
|
-
|
|
495
|
-
// Exports from src/components/media-player-root.d.ts
|
|
496
|
-
export interface MediaPlayerRootProps {}
|
|
497
|
-
|
|
498
|
-
// Exports from src/components/media-player-root.tsx
|
|
499
|
-
export interface MediaPlayerRootProps {}
|
|
500
|
-
export declare function MediaPlayerRoot(...args: any[]): any;
|
|
501
|
-
|
|
502
|
-
// Exports from src/components/media-player-seek.d.ts
|
|
503
|
-
export interface MediaPlayerSeekProps {}
|
|
504
|
-
|
|
505
|
-
// Exports from src/components/media-player-seek.tsx
|
|
506
|
-
export interface MediaPlayerSeekProps {}
|
|
507
|
-
export declare function MediaPlayerSeek(...args: any[]): any;
|
|
508
|
-
|
|
509
|
-
// Exports from src/components/media-player-time.d.ts
|
|
510
|
-
export interface MediaPlayerTimeProps {}
|
|
511
|
-
|
|
512
|
-
// Exports from src/components/media-player-time.tsx
|
|
513
|
-
export interface MediaPlayerTimeProps {}
|
|
514
|
-
export declare function MediaPlayerTime(...args: any[]): any;
|
|
515
|
-
|
|
516
|
-
// Exports from src/components/media-player-tooltip.d.ts
|
|
517
|
-
export interface MediaPlayerTooltipProps {}
|
|
518
|
-
|
|
519
|
-
// Exports from src/components/media-player-tooltip.tsx
|
|
520
|
-
export interface MediaPlayerTooltipProps {}
|
|
521
|
-
export declare function MediaPlayerTooltip(...args: any[]): any;
|
|
522
|
-
|
|
523
|
-
// Exports from src/components/media-player-video.d.ts
|
|
524
|
-
export interface MediaPlayerVideoProps {}
|
|
525
|
-
|
|
526
|
-
// Exports from src/components/media-player-video.tsx
|
|
527
|
-
export interface MediaPlayerVideoProps {}
|
|
528
|
-
export declare function MediaPlayerVideo(...args: any[]): any;
|
|
529
|
-
|
|
530
|
-
// Exports from src/components/media-player-volume.d.ts
|
|
531
|
-
export interface MediaPlayerVolumeProps {}
|
|
532
|
-
|
|
533
|
-
// Exports from src/components/media-player-volume.tsx
|
|
534
|
-
export interface MediaPlayerVolumeProps {}
|
|
535
|
-
export declare function MediaPlayerVolume(...args: any[]): any;
|
|
536
|
-
|
|
537
|
-
// Exports from src/components/media-player.tsx
|
|
538
|
-
export declare const MediaPlayer: any;
|
|
539
|
-
|
|
540
|
-
// Exports from src/components/media-suspense.d.ts
|
|
541
|
-
export interface MediaLoadingProps {}
|
|
542
|
-
export interface MediaSuspenseProps {}
|
|
543
|
-
export interface MediaErrorBoundaryProps {}
|
|
544
|
-
export interface ConcurrentMediaProps {}
|
|
545
|
-
export interface EnhancedMediaWrapperProps {}
|
|
546
|
-
|
|
547
|
-
// Exports from src/components/media-suspense.tsx
|
|
548
|
-
export interface MediaLoadingProps {}
|
|
549
|
-
export interface MediaSuspenseProps {}
|
|
550
|
-
export interface MediaErrorBoundaryProps {}
|
|
551
|
-
export interface ConcurrentMediaProps {}
|
|
552
|
-
export interface EnhancedMediaWrapperProps {}
|
|
553
|
-
export declare function MediaLoading(...args: any[]): any;
|
|
554
|
-
export declare function MediaSuspense(...args: any[]): any;
|
|
555
|
-
export declare function withMediaSuspense(...args: any[]): any;
|
|
556
|
-
export declare function useMediaConcurrent(...args: any[]): any;
|
|
557
|
-
export declare function ConcurrentMedia(...args: any[]): any;
|
|
558
|
-
export declare function useDeferredMediaLoading(...args: any[]): any;
|
|
559
|
-
export declare function EnhancedMediaWrapper(...args: any[]): any;
|
|
560
|
-
export declare function useMediaPerformance(...args: any[]): any;
|
|
561
|
-
export declare const EnhancedMediaSuspense: any;
|
|
562
|
-
export declare const EnhancedMediaLoading: any;
|
|
563
|
-
|
|
564
|
-
// Exports from src/components/player-settings-form.d.ts
|
|
565
|
-
export interface PlayerSettings {}
|
|
566
|
-
|
|
567
|
-
// Exports from src/components/player-settings-form.tsx
|
|
568
|
-
export interface PlayerSettings {}
|
|
569
|
-
export declare function PlayerSettingsForm(...args: any[]): any;
|
|
570
|
-
|
|
571
|
-
// Exports from src/components/react-player-wrapper.d.ts
|
|
572
|
-
export interface ModernMediaPlayerProps {}
|
|
573
|
-
|
|
574
|
-
// Exports from src/components/react-player-wrapper.tsx
|
|
575
|
-
export interface ModernMediaPlayerProps {}
|
|
576
|
-
export declare function ModernMediaPlayer(...args: any[]): any;
|
|
577
|
-
|
|
578
|
-
// Exports from src/components/simple-video-player.tsx
|
|
579
|
-
export declare function SimpleVideoPlayer(...args: any[]): any;
|
|
580
|
-
|
|
581
|
-
// Exports from src/components/ui/button.tsx
|
|
582
|
-
export interface ButtonProps {}
|
|
583
|
-
|
|
584
|
-
// Exports from src/components/ui/enhanced-seek-bar.tsx
|
|
585
|
-
export declare const EnhancedSeekBar: any;
|
|
586
|
-
|
|
587
|
-
// Exports from src/components/ui/fullscreen-button.tsx
|
|
588
|
-
export declare const FullscreenButton: any;
|
|
589
|
-
|
|
590
|
-
// Exports from src/components/ui/icons.tsx
|
|
591
|
-
export declare const PlayIcon: any;
|
|
592
|
-
export declare const PauseIcon: any;
|
|
593
|
-
export declare const VolumeIcon: any;
|
|
594
|
-
export declare const Volume1Icon: any;
|
|
595
|
-
export declare const Volume2Icon: any;
|
|
596
|
-
export declare const VolumeXIcon: any;
|
|
597
|
-
export declare const MuteIcon: any;
|
|
598
|
-
export declare const Maximize2Icon: any;
|
|
599
|
-
export declare const Minimize2Icon: any;
|
|
600
|
-
export declare const FullscreenIcon: any;
|
|
601
|
-
export declare const ExitFullscreenIcon: any;
|
|
602
|
-
export declare const Rewind10Icon: any;
|
|
603
|
-
export declare const Forward10Icon: any;
|
|
604
|
-
export declare const SpeedIcon: any;
|
|
605
|
-
export declare const QualityIcon: any;
|
|
606
|
-
export declare const SubtitlesIcon: any;
|
|
607
|
-
export declare const PictureInPictureIcon: any;
|
|
608
|
-
export declare const DownloadIcon: any;
|
|
609
|
-
export declare const ShareIcon: any;
|
|
610
|
-
export declare const LoadingIcon: any;
|
|
611
|
-
export declare const AlertTriangleIcon: any;
|
|
612
|
-
export declare const RefreshCcwIcon: any;
|
|
613
|
-
export declare const RotateCcwIcon: any;
|
|
614
|
-
|
|
615
|
-
// Exports from src/components/ui/media-resource-preloader.d.ts
|
|
616
|
-
export default any;
|
|
617
|
-
|
|
618
|
-
// Exports from src/components/ui/media-resource-preloader.tsx
|
|
619
|
-
export declare const MediaResourcePreloader: any;
|
|
620
|
-
export default any;
|
|
621
|
-
|
|
622
|
-
// Exports from src/components/ui/play-button.tsx
|
|
623
|
-
export declare const PlayButton: any;
|
|
624
|
-
|
|
625
|
-
// Exports from src/components/ui/seek-bar.tsx
|
|
626
|
-
export declare const SeekBar: any;
|
|
627
|
-
|
|
628
|
-
// Exports from src/components/ui/slider.tsx
|
|
629
|
-
export interface SliderProps {}
|
|
630
|
-
|
|
631
|
-
// Exports from src/components/ui/time-display.tsx
|
|
632
|
-
export declare const TimeDisplay: any;
|
|
633
|
-
|
|
634
|
-
// Exports from src/components/ui/volume-control.tsx
|
|
635
|
-
export declare const VolumeControl: any;
|
|
636
|
-
|
|
637
|
-
// Exports from src/components/unified/base-media-player.d.ts
|
|
638
|
-
export interface BaseMediaPlayerProps {}
|
|
639
|
-
|
|
640
|
-
// Exports from src/components/unified/base-media-player.tsx
|
|
641
|
-
export interface BaseMediaPlayerProps {}
|
|
642
|
-
export declare const BaseMediaPlayer: any;
|
|
643
|
-
|
|
644
|
-
// Exports from src/components/unified/media-player.d.ts
|
|
645
|
-
export interface UnifiedMediaPlayerProps {}
|
|
646
|
-
|
|
647
|
-
// Exports from src/components/unified/media-player.tsx
|
|
648
|
-
export interface UnifiedMediaPlayerProps {}
|
|
649
|
-
export declare const MediaPlayer: any;
|
|
650
|
-
export declare const VideoPlayer: any;
|
|
651
|
-
export declare const AudioPlayer: any;
|
|
652
|
-
|
|
653
|
-
// Exports from src/components/variants/minimal/AccessibleMinimalPlayer.d.ts
|
|
654
|
-
export interface AccessibleMinimalPlayerProps {}
|
|
655
|
-
|
|
656
|
-
// Exports from src/components/variants/minimal/AccessibleMinimalPlayer.tsx
|
|
657
|
-
export interface AccessibleMinimalPlayerProps {}
|
|
658
|
-
export declare function AccessibleMinimalPlayer(...args: any[]): any;
|
|
659
|
-
|
|
660
|
-
// Exports from src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts
|
|
661
|
-
export interface EnhancedMinimalMediaPlayerProps {}
|
|
662
|
-
export default any;
|
|
663
|
-
|
|
664
|
-
// Exports from src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx
|
|
665
|
-
export interface EnhancedMinimalMediaPlayerProps {}
|
|
666
|
-
export declare function EnhancedMinimalMediaPlayer(...args: any[]): any;
|
|
667
|
-
export default any;
|
|
668
|
-
|
|
669
|
-
// Exports from src/components/variants/minimal/MinimalControls.d.ts
|
|
670
|
-
export interface MinimalControlsProps {}
|
|
671
|
-
|
|
672
|
-
// Exports from src/components/variants/minimal/MinimalControls.tsx
|
|
673
|
-
export interface MinimalControlsProps {}
|
|
674
|
-
export declare function MinimalControls(...args: any[]): any;
|
|
675
|
-
|
|
676
|
-
// Exports from src/components/variants/minimal/MinimalLoading.d.ts
|
|
677
|
-
export interface MinimalLoadingProps {}
|
|
678
|
-
|
|
679
|
-
// Exports from src/components/variants/minimal/MinimalLoading.tsx
|
|
680
|
-
export interface MinimalLoadingProps {}
|
|
681
|
-
export declare function MinimalLoading(...args: any[]): any;
|
|
682
|
-
|
|
683
|
-
// Exports from src/components/variants/minimal/MinimalMediaPlayer.d.ts
|
|
684
|
-
export interface MinimalMediaPlayerProps {}
|
|
685
|
-
|
|
686
|
-
// Exports from src/components/variants/minimal/MinimalMediaPlayer.tsx
|
|
687
|
-
export interface MinimalMediaPlayerProps {}
|
|
688
|
-
export declare function MinimalMediaPlayer(...args: any[]): any;
|
|
689
|
-
|
|
690
|
-
// Exports from src/components/variants/minimal/MinimalOverlay.d.ts
|
|
691
|
-
export interface MinimalOverlayProps {}
|
|
692
|
-
|
|
693
|
-
// Exports from src/components/variants/minimal/MinimalOverlay.tsx
|
|
694
|
-
export interface MinimalOverlayProps {}
|
|
695
|
-
export declare function MinimalOverlay(...args: any[]): any;
|
|
696
|
-
|
|
697
|
-
// Exports from src/components/variants/minimal/MinimalPlayButton.d.ts
|
|
698
|
-
export interface MinimalPlayButtonProps {}
|
|
699
|
-
|
|
700
|
-
// Exports from src/components/variants/minimal/MinimalPlayButton.tsx
|
|
701
|
-
export interface MinimalPlayButtonProps {}
|
|
702
|
-
export declare function MinimalPlayButton(...args: any[]): any;
|
|
703
|
-
|
|
704
|
-
// Exports from src/components/variants/minimal/MinimalSeekBar.d.ts
|
|
705
|
-
export interface MinimalSeekBarProps {}
|
|
706
|
-
|
|
707
|
-
// Exports from src/components/variants/minimal/MinimalSeekBar.tsx
|
|
708
|
-
export interface MinimalSeekBarProps {}
|
|
709
|
-
export declare function MinimalSeekBar(...args: any[]): any;
|
|
710
|
-
|
|
711
|
-
// Exports from src/components/variants/minimal/MinimalVolumeControl.d.ts
|
|
712
|
-
export interface MinimalVolumeControlProps {}
|
|
713
|
-
|
|
714
|
-
// Exports from src/components/variants/minimal/MinimalVolumeControl.tsx
|
|
715
|
-
export interface MinimalVolumeControlProps {}
|
|
716
|
-
export declare function MinimalVolumeControl(...args: any[]): any;
|
|
717
|
-
|
|
718
|
-
// Exports from src/components/variants/minimal/SimpleMinimalPlayer.d.ts
|
|
719
|
-
export interface SimpleMinimalPlayerProps {}
|
|
720
|
-
|
|
721
|
-
// Exports from src/components/variants/minimal/SimpleMinimalPlayer.tsx
|
|
722
|
-
export interface SimpleMinimalPlayerProps {}
|
|
723
|
-
export declare function SimpleMinimalPlayer(...args: any[]): any;
|
|
724
|
-
|
|
725
|
-
// Exports from src/components/variants/minimal/components/CenterPlayButton.tsx
|
|
726
|
-
export declare const CenterPlayButton: any;
|
|
727
|
-
|
|
728
|
-
// Exports from src/components/variants/minimal/components/ControlBar.tsx
|
|
729
|
-
export declare const ControlBar: any;
|
|
730
|
-
|
|
731
|
-
// Exports from src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts
|
|
732
|
-
export interface SubtitleTrack {}
|
|
733
|
-
|
|
734
|
-
// Exports from src/components/variants/minimal/components/EnhancedSettingsMenu.tsx
|
|
735
|
-
export interface SubtitleTrack {}
|
|
736
|
-
export declare const EnhancedSettingsMenu: any;
|
|
737
|
-
|
|
738
|
-
// Exports from src/components/variants/minimal/components/PlaybackControls.tsx
|
|
739
|
-
export declare const PlaybackControls: any;
|
|
740
|
-
|
|
741
|
-
// Exports from src/components/variants/minimal/components/RightControls.tsx
|
|
742
|
-
export declare const RightControls: any;
|
|
743
|
-
|
|
744
|
-
// Exports from src/components/variants/minimal/components/SeekBar.tsx
|
|
745
|
-
export declare const SeekBar: any;
|
|
746
|
-
|
|
747
|
-
// Exports from src/components/variants/minimal/components/SettingsDropdown.tsx
|
|
748
|
-
export declare const SettingsDropdown: any;
|
|
749
|
-
|
|
750
|
-
// Exports from src/components/variants/minimal/components/SubtitleDisplay.tsx
|
|
751
|
-
export declare const SubtitleDisplay: any;
|
|
752
|
-
|
|
753
|
-
// Exports from src/components/variants/minimal/components/TimeDisplay.tsx
|
|
754
|
-
export declare const TimeDisplay: any;
|
|
755
|
-
|
|
756
|
-
// Exports from src/components/variants/minimal/components/VideoElement.tsx
|
|
757
|
-
export declare const VideoElement: any;
|
|
758
|
-
|
|
759
|
-
// Exports from src/components/variants/minimal/components/VolumeControl.tsx
|
|
760
|
-
export declare const VolumeControl: any;
|
|
761
|
-
|
|
762
|
-
// Exports from src/components/video-player.tsx
|
|
763
|
-
export declare const VideoPlayer: any;
|
|
764
|
-
|
|
765
|
-
// Exports from src/context/error-handling.d.ts
|
|
766
|
-
export interface MediaError {}
|
|
767
|
-
export interface RetryConfig {}
|
|
768
|
-
export interface ErrorRecoveryStrategy {}
|
|
769
|
-
|
|
770
|
-
// Exports from src/context/error-handling.ts
|
|
771
|
-
export interface MediaError {}
|
|
772
|
-
export interface RetryConfig {}
|
|
773
|
-
export interface ErrorRecoveryStrategy {}
|
|
774
|
-
export declare function useMediaErrorHandler(...args: any[]): any;
|
|
775
|
-
export declare function useMediaErrorBoundary(...args: any[]): any;
|
|
776
|
-
|
|
777
|
-
// Exports from src/context/media-context.d.ts
|
|
778
|
-
export interface MediaState {}
|
|
779
|
-
export interface MediaAction {}
|
|
780
|
-
export interface MediaContextValue {}
|
|
781
|
-
export interface MediaStore {}
|
|
782
|
-
export type MediaActionType = any;
|
|
783
|
-
|
|
784
|
-
// Exports from src/context/media-context.tsx
|
|
785
|
-
export interface MediaState {}
|
|
786
|
-
export interface MediaAction {}
|
|
787
|
-
export interface MediaContextValue {}
|
|
788
|
-
export interface MediaStore {}
|
|
789
|
-
export type MediaActionType = any;
|
|
790
|
-
export declare function useMediaContext(...args: any[]): any;
|
|
791
|
-
export declare function useMediaStore(...args: any[]): any;
|
|
792
|
-
export declare function useMediaSelector(...args: any[]): any;
|
|
793
|
-
export declare function useMediaDispatch(...args: any[]): any;
|
|
794
|
-
export declare function useOptimisticMediaSelector(...args: any[]): any;
|
|
795
|
-
export declare function useMediaEnhancements(...args: any[]): any;
|
|
796
|
-
export declare const MediaActionTypes: any;
|
|
797
|
-
export declare const MediaContext: any;
|
|
798
|
-
export declare const MediaStoreContext: any;
|
|
799
|
-
export declare const initialMediaState: any;
|
|
800
|
-
|
|
801
|
-
// Exports from src/context/media-provider.d.ts
|
|
802
|
-
export interface MediaProviderProps {}
|
|
803
|
-
|
|
804
|
-
// Exports from src/context/media-provider.tsx
|
|
805
|
-
export interface MediaProviderProps {}
|
|
806
|
-
export declare function MediaProvider(...args: any[]): any;
|
|
807
|
-
|
|
808
|
-
// Exports from src/context/media-store.d.ts
|
|
809
|
-
export interface OptimisticMediaAction {}
|
|
810
|
-
export interface MediaActionState {}
|
|
811
|
-
export interface PersistenceConfig {}
|
|
812
|
-
export interface EnhancedMediaStore {}
|
|
813
|
-
|
|
814
|
-
// Exports from src/context/media-store.ts
|
|
815
|
-
export interface OptimisticMediaAction {}
|
|
816
|
-
export interface MediaActionState {}
|
|
817
|
-
export interface PersistenceConfig {}
|
|
818
|
-
export interface EnhancedMediaStore {}
|
|
819
|
-
export declare function createEnhancedMediaStore(...args: any[]): any;
|
|
820
|
-
|
|
821
|
-
// Exports from src/context/persistence.d.ts
|
|
822
|
-
export interface UserPreferences {}
|
|
823
|
-
export interface SessionState {}
|
|
824
|
-
export interface PlaybackHistoryItem {}
|
|
825
|
-
export interface PersistenceConfig {}
|
|
826
|
-
export interface StorageAdapter {}
|
|
827
|
-
|
|
828
|
-
// Exports from src/context/persistence.ts
|
|
829
|
-
export interface UserPreferences {}
|
|
830
|
-
export interface SessionState {}
|
|
831
|
-
export interface PlaybackHistoryItem {}
|
|
832
|
-
export interface PersistenceConfig {}
|
|
833
|
-
export interface StorageAdapter {}
|
|
834
|
-
export declare function useMediaPersistence(...args: any[]): any;
|
|
835
|
-
export declare function useAutoMediaPersistence(...args: any[]): any;
|
|
836
|
-
export declare const STORAGE_KEYS: any;
|
|
837
|
-
export declare const defaultStorageAdapter: any;
|
|
838
|
-
|
|
839
|
-
// Exports from src/core/events/event-system.d.ts
|
|
840
|
-
export interface MediaPlayerEvent {}
|
|
841
|
-
export interface EventOptions {}
|
|
842
|
-
export interface MediaEvents {}
|
|
843
|
-
export type EventHandler = any;
|
|
844
|
-
export type EventUnsubscriber = any;
|
|
845
|
-
export type EventCategory = any;
|
|
846
|
-
|
|
847
|
-
// Exports from src/core/events/event-system.ts
|
|
848
|
-
export interface MediaPlayerEvent {}
|
|
849
|
-
export interface EventOptions {}
|
|
850
|
-
export interface MediaEvents {}
|
|
851
|
-
export type EventHandler = any;
|
|
852
|
-
export type EventUnsubscriber = any;
|
|
853
|
-
export type EventCategory = any;
|
|
854
|
-
export declare const defaultEventBus: any;
|
|
855
|
-
|
|
856
|
-
// Exports from src/core/events/hooks.ts
|
|
857
|
-
export declare function useEventBus(...args: any[]): any;
|
|
858
|
-
export declare function useEventListener(...args: any[]): any;
|
|
859
|
-
export declare function useEventEmitter(...args: any[]): any;
|
|
860
|
-
export declare function useEventOnce(...args: any[]): any;
|
|
861
|
-
export declare function useEventHandlers(...args: any[]): any;
|
|
862
|
-
export declare function useEventHistory(...args: any[]): any;
|
|
863
|
-
export declare function useEventMetrics(...args: any[]): any;
|
|
864
|
-
export declare function useEventDebugger(...args: any[]): any;
|
|
865
|
-
export declare function useConditionalEventListener(...args: any[]): any;
|
|
866
|
-
export declare function useEventState(...args: any[]): any;
|
|
867
|
-
export declare function useEventEffect(...args: any[]): any;
|
|
868
|
-
|
|
869
|
-
// Exports from src/core/events/middleware.d.ts
|
|
870
|
-
export type EventMiddleware = any;
|
|
871
|
-
|
|
872
|
-
// Exports from src/core/events/middleware.ts
|
|
873
|
-
export type EventMiddleware = any;
|
|
874
|
-
export declare const eventMiddlewares: any;
|
|
875
|
-
export declare const createMiddleware: any;
|
|
876
|
-
export declare const commonMiddlewares: any;
|
|
877
|
-
|
|
878
|
-
// Exports from src/core/optimization/bundle-optimizer.d.ts
|
|
879
|
-
export interface LazyComponentConfig {}
|
|
880
|
-
export interface BundleMetrics {}
|
|
881
|
-
|
|
882
|
-
// Exports from src/core/optimization/bundle-optimizer.tsx
|
|
883
|
-
export interface LazyComponentConfig {}
|
|
884
|
-
export interface BundleMetrics {}
|
|
885
|
-
export declare function BundleOptimizer(...args: any[]): any;
|
|
886
|
-
export declare function useProgressiveLoading(...args: any[]): any;
|
|
887
|
-
export declare function createLazyComponent(...args: any[]): any;
|
|
888
|
-
export declare function useBundleMetrics(...args: any[]): any;
|
|
889
|
-
export declare const PreloadStrategies: any;
|
|
890
|
-
|
|
891
|
-
// Exports from src/core/performance/cicd.ts
|
|
892
|
-
export declare const cicdIntegration: any;
|
|
893
|
-
|
|
894
|
-
// Exports from src/core/performance/media-loading-optimizer.d.ts
|
|
895
|
-
export interface NetworkInfo {}
|
|
896
|
-
export interface MediaLoadingConfig {}
|
|
897
|
-
export interface MediaLoadingMetrics {}
|
|
898
|
-
|
|
899
|
-
// Exports from src/core/performance/media-loading-optimizer.ts
|
|
900
|
-
export interface NetworkInfo {}
|
|
901
|
-
export interface MediaLoadingConfig {}
|
|
902
|
-
export interface MediaLoadingMetrics {}
|
|
903
|
-
export declare function useMediaLoadingOptimizer(...args: any[]): any;
|
|
904
|
-
export declare const defaultMediaLoadingConfig: any;
|
|
905
|
-
export declare const mediaLoadingOptimizer: any;
|
|
906
|
-
|
|
907
|
-
// Exports from src/core/performance/performance-budgets.d.ts
|
|
908
|
-
export interface PerformanceBudget {}
|
|
909
|
-
export interface BudgetViolation {}
|
|
910
|
-
export interface AlertConfig {}
|
|
911
|
-
export interface AlertChannel {}
|
|
912
|
-
|
|
913
|
-
// Exports from src/core/performance/performance-budgets.ts
|
|
914
|
-
export interface PerformanceBudget {}
|
|
915
|
-
export interface BudgetViolation {}
|
|
916
|
-
export interface AlertConfig {}
|
|
917
|
-
export interface AlertChannel {}
|
|
918
|
-
export declare const defaultPerformanceBudgets: any;
|
|
919
|
-
export declare const performanceBudgetMonitor: any;
|
|
920
|
-
|
|
921
|
-
// Exports from src/core/performance/performance-monitor.d.ts
|
|
922
|
-
export interface PerformanceMetrics {}
|
|
923
|
-
export interface PerformanceThresholds {}
|
|
924
|
-
export interface PerformanceDashboardProps {}
|
|
925
|
-
export default any;
|
|
926
|
-
|
|
927
|
-
// Exports from src/core/performance/performance-monitor.tsx
|
|
928
|
-
export interface PerformanceMetrics {}
|
|
929
|
-
export interface PerformanceThresholds {}
|
|
930
|
-
export interface PerformanceDashboardProps {}
|
|
931
|
-
export declare function usePerformanceMonitor(...args: any[]): any;
|
|
932
|
-
export declare function withPerformanceMonitoring(...args: any[]): any;
|
|
933
|
-
export declare function PerformanceDashboard(...args: any[]): any;
|
|
934
|
-
export declare const defaultThresholds: any;
|
|
935
|
-
export declare const performanceMonitor: any;
|
|
936
|
-
export default any;
|
|
937
|
-
|
|
938
|
-
// Exports from src/core/performance/performance-testing.d.ts
|
|
939
|
-
export interface PerformanceTestConfig {}
|
|
940
|
-
export interface PerformanceTestResult {}
|
|
941
|
-
|
|
942
|
-
// Exports from src/core/performance/performance-testing.ts
|
|
943
|
-
export interface PerformanceTestConfig {}
|
|
944
|
-
export interface PerformanceTestResult {}
|
|
945
|
-
export declare const performanceBenchmark: any;
|
|
946
|
-
export declare const performanceTestUtils: any;
|
|
947
|
-
export declare const performanceTestFramework: any;
|
|
948
|
-
|
|
949
|
-
// Exports from src/core/plugins/base-plugin.d.ts
|
|
950
|
-
export interface UIPluginConfig {}
|
|
951
|
-
export interface AnalyticsPluginConfig {}
|
|
952
|
-
export interface PerformancePluginConfig {}
|
|
953
|
-
|
|
954
|
-
// Exports from src/core/plugins/base-plugin.ts
|
|
955
|
-
export interface UIPluginConfig {}
|
|
956
|
-
export interface AnalyticsPluginConfig {}
|
|
957
|
-
export interface PerformancePluginConfig {}
|
|
958
|
-
export declare function createPlugin(...args: any[]): any;
|
|
959
|
-
export declare function plugin(...args: any[]): any;
|
|
960
|
-
|
|
961
|
-
// Exports from src/core/plugins/enhanced-plugin-system.d.ts
|
|
962
|
-
export interface MediaPluginHooks {}
|
|
963
|
-
export interface PluginMiddleware {}
|
|
964
|
-
export interface PluginContext {}
|
|
965
|
-
export default any;
|
|
966
|
-
|
|
967
|
-
// Exports from src/core/plugins/enhanced-plugin-system.ts
|
|
968
|
-
export interface MediaPluginHooks {}
|
|
969
|
-
export interface PluginMiddleware {}
|
|
970
|
-
export interface PluginContext {}
|
|
971
|
-
export declare const createPerformanceMiddleware: any;
|
|
972
|
-
export declare const createErrorHandlingMiddleware: any;
|
|
973
|
-
export declare const createLoggingMiddleware: any;
|
|
974
|
-
export default any;
|
|
975
|
-
|
|
976
|
-
// Exports from src/core/plugins/examples/analytics-plugin.ts
|
|
977
|
-
export declare const createAnalyticsPlugin: any;
|
|
978
|
-
|
|
979
|
-
// Exports from src/core/plugins/types.d.ts
|
|
980
|
-
export interface MediaState {}
|
|
981
|
-
export interface MediaPlayerControls {}
|
|
982
|
-
export interface PluginConfig {}
|
|
983
|
-
export interface PluginContext {}
|
|
984
|
-
export interface PluginMetadata {}
|
|
985
|
-
export interface Plugin {}
|
|
986
|
-
export interface PluginRegistry {}
|
|
987
|
-
export interface PluginLogger {}
|
|
988
|
-
export interface PluginEvents {}
|
|
989
|
-
export type PluginPhase = any;
|
|
990
|
-
export type PluginCategory = any;
|
|
991
|
-
export type PluginPriority = any;
|
|
992
|
-
export type PluginFactory = any;
|
|
993
|
-
|
|
994
|
-
// Exports from src/core/plugins/types.ts
|
|
995
|
-
export interface MediaState {}
|
|
996
|
-
export interface MediaPlayerControls {}
|
|
997
|
-
export interface PluginConfig {}
|
|
998
|
-
export interface PluginContext {}
|
|
999
|
-
export interface PluginMetadata {}
|
|
1000
|
-
export interface Plugin {}
|
|
1001
|
-
export interface PluginRegistry {}
|
|
1002
|
-
export interface PluginLogger {}
|
|
1003
|
-
export interface PluginEvents {}
|
|
1004
|
-
export type PluginPhase = any;
|
|
1005
|
-
export type PluginCategory = any;
|
|
1006
|
-
export type PluginPriority = any;
|
|
1007
|
-
export type PluginFactory = any;
|
|
1008
|
-
|
|
1009
|
-
// Exports from src/core/plugins/utils.ts
|
|
1010
|
-
export declare const PluginDevelopmentHelpers: any;
|
|
1011
|
-
export declare const defaultPluginLogger: any;
|
|
1012
|
-
export declare const defaultPerformanceMonitor: any;
|
|
1013
|
-
|
|
1014
|
-
// Exports from src/core/progressive-loading.d.ts
|
|
1015
|
-
export interface ProgressiveLoadingConfig {}
|
|
1016
|
-
export type FeatureType = any;
|
|
1017
|
-
|
|
1018
|
-
// Exports from src/core/progressive-loading.tsx
|
|
1019
|
-
export interface ProgressiveLoadingConfig {}
|
|
1020
|
-
export type FeatureType = any;
|
|
1021
|
-
export declare function useProgressiveFeature(...args: any[]): any;
|
|
1022
|
-
export declare function withProgressiveFeature(...args: any[]): any;
|
|
1023
|
-
export declare const FEATURES: any;
|
|
1024
|
-
export declare const defaultProgressiveConfig: any;
|
|
1025
|
-
export declare const lazyComponents: any;
|
|
1026
|
-
export declare const progressiveLoader: any;
|
|
1027
|
-
|
|
1028
|
-
// Exports from src/core/providers/enhanced-hls-provider.d.ts
|
|
1029
|
-
export interface EnhancedHLSConfig {}
|
|
1030
|
-
|
|
1031
|
-
// Exports from src/core/providers/enhanced-hls-provider.ts
|
|
1032
|
-
export interface EnhancedHLSConfig {}
|
|
1033
|
-
export declare const ENHANCED_HLS_DEFAULTS: any;
|
|
1034
|
-
|
|
1035
|
-
// Exports from src/core/providers/service-provider.d.ts
|
|
1036
|
-
export interface MediaService {}
|
|
1037
|
-
export interface StorageService {}
|
|
1038
|
-
export interface AnalyticsService {}
|
|
1039
|
-
export interface LoggerService {}
|
|
1040
|
-
export interface ServiceContainer {}
|
|
1041
|
-
export interface ServiceProviderProps {}
|
|
1042
|
-
|
|
1043
|
-
// Exports from src/core/providers/service-provider.tsx
|
|
1044
|
-
export interface MediaService {}
|
|
1045
|
-
export interface StorageService {}
|
|
1046
|
-
export interface AnalyticsService {}
|
|
1047
|
-
export interface LoggerService {}
|
|
1048
|
-
export interface ServiceContainer {}
|
|
1049
|
-
export interface ServiceProviderProps {}
|
|
1050
|
-
export declare function ServiceProvider(...args: any[]): any;
|
|
1051
|
-
export declare function useServices(...args: any[]): any;
|
|
1052
|
-
export declare function useServiceEventBus(...args: any[]): any;
|
|
1053
|
-
export declare function usePluginRegistry(...args: any[]): any;
|
|
1054
|
-
export declare function useStorage(...args: any[]): any;
|
|
1055
|
-
export declare function useAnalytics(...args: any[]): any;
|
|
1056
|
-
export declare function useLogger(...args: any[]): any;
|
|
1057
|
-
export declare function withServices(...args: any[]): any;
|
|
1058
|
-
|
|
1059
|
-
// Exports from src/core/utils.d.ts
|
|
1060
|
-
export interface ArchitectureConfig {}
|
|
1061
|
-
|
|
1062
|
-
// Exports from src/core/utils.tsx
|
|
1063
|
-
export interface ArchitectureConfig {}
|
|
1064
|
-
export declare function createArchitecture(...args: any[]): any;
|
|
1065
|
-
export declare function healthCheck(...args: any[]): any;
|
|
1066
|
-
|
|
1067
|
-
// Exports from src/features/media-session/media-session-manager.d.ts
|
|
1068
|
-
export interface MediaMetadata {}
|
|
1069
|
-
export interface MediaImage {}
|
|
1070
|
-
export interface MediaPositionState {}
|
|
1071
|
-
export interface MediaSessionCallbacks {}
|
|
1072
|
-
export interface MediaSessionConfig {}
|
|
1073
|
-
|
|
1074
|
-
// Exports from src/features/media-session/media-session-manager.ts
|
|
1075
|
-
export interface MediaMetadata {}
|
|
1076
|
-
export interface MediaImage {}
|
|
1077
|
-
export interface MediaPositionState {}
|
|
1078
|
-
export interface MediaSessionCallbacks {}
|
|
1079
|
-
export interface MediaSessionConfig {}
|
|
1080
|
-
export declare function createMediaSessionManager(...args: any[]): any;
|
|
1081
|
-
|
|
1082
|
-
// Exports from src/features/picture-in-picture/pip-manager.d.ts
|
|
1083
|
-
export interface PiPCapabilities {}
|
|
1084
|
-
export interface PiPOptions {}
|
|
1085
|
-
export interface PiPManager {}
|
|
1086
|
-
|
|
1087
|
-
// Exports from src/features/picture-in-picture/pip-manager.ts
|
|
1088
|
-
export interface PiPCapabilities {}
|
|
1089
|
-
export interface PiPOptions {}
|
|
1090
|
-
export interface PiPManager {}
|
|
1091
|
-
export declare const pipManager: any;
|
|
1092
|
-
|
|
1093
|
-
// Exports from src/features/playlist/playlist-manager.d.ts
|
|
1094
|
-
export interface PlaylistItem {}
|
|
1095
|
-
export interface SubtitleTrack {}
|
|
1096
|
-
export interface ChapterMarker {}
|
|
1097
|
-
export interface PlaylistConfig {}
|
|
1098
|
-
export interface PlaylistEventData {}
|
|
1099
|
-
export type PlaylistEvent = any;
|
|
1100
|
-
|
|
1101
|
-
// Exports from src/features/playlist/playlist-manager.ts
|
|
1102
|
-
export interface PlaylistItem {}
|
|
1103
|
-
export interface SubtitleTrack {}
|
|
1104
|
-
export interface ChapterMarker {}
|
|
1105
|
-
export interface PlaylistConfig {}
|
|
1106
|
-
export interface PlaylistEventData {}
|
|
1107
|
-
export type PlaylistEvent = any;
|
|
1108
|
-
export declare const playlistUtils: any;
|
|
1109
|
-
|
|
1110
|
-
// Exports from src/features/subtitles/subtitle-manager.d.ts
|
|
1111
|
-
export interface SubtitleTrack {}
|
|
1112
|
-
export interface SubtitleStyle {}
|
|
1113
|
-
export interface SubtitleManagerOptions {}
|
|
1114
|
-
|
|
1115
|
-
// Exports from src/features/subtitles/subtitle-manager.ts
|
|
1116
|
-
export interface SubtitleTrack {}
|
|
1117
|
-
export interface SubtitleStyle {}
|
|
1118
|
-
export interface SubtitleManagerOptions {}
|
|
1119
|
-
|
|
1120
|
-
// Exports from src/features/subtitles/subtitle-parser.d.ts
|
|
1121
|
-
export interface SubtitleCue {}
|
|
1122
|
-
export interface ParsedSubtitles {}
|
|
1123
|
-
|
|
1124
|
-
// Exports from src/features/subtitles/subtitle-parser.ts
|
|
1125
|
-
export interface SubtitleCue {}
|
|
1126
|
-
export interface ParsedSubtitles {}
|
|
1127
|
-
|
|
1128
|
-
// Exports from src/features/thumbnails/thumbnail-generator.d.ts
|
|
1129
|
-
export interface ThumbnailOptions {}
|
|
1130
|
-
export interface ThumbnailConfig {}
|
|
1131
|
-
export interface GeneratedThumbnail {}
|
|
1132
|
-
export interface ThumbnailSprite {}
|
|
1133
|
-
|
|
1134
|
-
// Exports from src/features/thumbnails/thumbnail-generator.ts
|
|
1135
|
-
export interface ThumbnailOptions {}
|
|
1136
|
-
export interface ThumbnailConfig {}
|
|
1137
|
-
export interface GeneratedThumbnail {}
|
|
1138
|
-
export interface ThumbnailSprite {}
|
|
1139
|
-
export declare const thumbnailUtils: any;
|
|
1140
|
-
|
|
1141
|
-
// Exports from src/hooks/accessibility/use-accessibility-preferences.d.ts
|
|
1142
|
-
export interface AccessibilityPreferences {}
|
|
1143
|
-
|
|
1144
|
-
// Exports from src/hooks/accessibility/use-accessibility-preferences.ts
|
|
1145
|
-
export interface AccessibilityPreferences {}
|
|
1146
|
-
export declare function useAccessibilityPreferences(...args: any[]): any;
|
|
1147
|
-
export declare function useAccessibilityStyles(...args: any[]): any;
|
|
1148
|
-
export declare function useFocusVisible(...args: any[]): any;
|
|
1149
|
-
|
|
1150
|
-
// Exports from src/hooks/accessibility/use-focus-management.d.ts
|
|
1151
|
-
export interface FocusOptions {}
|
|
1152
|
-
export interface UseFocusManagementOptions {}
|
|
1153
|
-
|
|
1154
|
-
// Exports from src/hooks/accessibility/use-focus-management.ts
|
|
1155
|
-
export interface FocusOptions {}
|
|
1156
|
-
export interface UseFocusManagementOptions {}
|
|
1157
|
-
export declare function useFocusManagement(...args: any[]): any;
|
|
1158
|
-
export declare function useMediaPlayerFocus(...args: any[]): any;
|
|
1159
|
-
|
|
1160
|
-
// Exports from src/hooks/accessibility/use-keyboard-shortcuts.d.ts
|
|
1161
|
-
export interface KeyboardShortcut {}
|
|
1162
|
-
export interface UseKeyboardShortcutsOptions {}
|
|
1163
|
-
|
|
1164
|
-
// Exports from src/hooks/accessibility/use-keyboard-shortcuts.ts
|
|
1165
|
-
export interface KeyboardShortcut {}
|
|
1166
|
-
export interface UseKeyboardShortcutsOptions {}
|
|
1167
|
-
export declare function useKeyboardShortcuts(...args: any[]): any;
|
|
1168
|
-
export declare const createMediaKeyboardShortcuts: any;
|
|
1169
|
-
|
|
1170
|
-
// Exports from src/hooks/accessibility/use-screen-reader.d.ts
|
|
1171
|
-
export interface UseScreenReaderOptions {}
|
|
1172
|
-
export type AnnouncementPriority = any;
|
|
1173
|
-
|
|
1174
|
-
// Exports from src/hooks/accessibility/use-screen-reader.ts
|
|
1175
|
-
export interface UseScreenReaderOptions {}
|
|
1176
|
-
export type AnnouncementPriority = any;
|
|
1177
|
-
export declare function useScreenReader(...args: any[]): any;
|
|
1178
|
-
export declare function useMediaScreenReader(...args: any[]): any;
|
|
1179
|
-
|
|
1180
|
-
// Exports from src/hooks/legacy.ts
|
|
1181
|
-
export declare function useVideoPlayer(...args: any[]): any;
|
|
1182
|
-
export declare function useEnhancedSubtitles(...args: any[]): any;
|
|
1183
|
-
|
|
1184
|
-
// Exports from src/hooks/use-enhanced-media-player.ts
|
|
1185
|
-
export declare function useEnhancedMediaPlayer(...args: any[]): any;
|
|
1186
|
-
|
|
1187
|
-
// Exports from src/hooks/use-intelligent-preloading.d.ts
|
|
1188
|
-
export default any;
|
|
1189
|
-
|
|
1190
|
-
// Exports from src/hooks/use-intelligent-preloading.ts
|
|
1191
|
-
export declare const useIntelligentPreloading: any;
|
|
1192
|
-
export default any;
|
|
1193
|
-
|
|
1194
|
-
// Exports from src/hooks/use-keyboard-controls.ts
|
|
1195
|
-
export declare function useKeyboardControls(...args: any[]): any;
|
|
1196
|
-
|
|
1197
|
-
// Exports from src/hooks/use-media-actions.d.ts
|
|
1198
|
-
export interface MediaActionPayloads {}
|
|
1199
|
-
|
|
1200
|
-
// Exports from src/hooks/use-media-actions.ts
|
|
1201
|
-
export interface MediaActionPayloads {}
|
|
1202
|
-
export declare function useMediaActionState(...args: any[]): any;
|
|
1203
|
-
export declare function useMediaActions(...args: any[]): any;
|
|
1204
|
-
|
|
1205
|
-
// Exports from src/hooks/use-media-metadata.d.ts
|
|
1206
|
-
export interface MediaMetadata {}
|
|
1207
|
-
|
|
1208
|
-
// Exports from src/hooks/use-media-metadata.ts
|
|
1209
|
-
export interface MediaMetadata {}
|
|
1210
|
-
export declare function useMediaMetadata(...args: any[]): any;
|
|
1211
|
-
export declare function formatTime(...args: any[]): any;
|
|
1212
|
-
|
|
1213
|
-
// Exports from src/hooks/use-media-optimistic.ts
|
|
1214
|
-
export declare function useMediaOptimistic(...args: any[]): any;
|
|
1215
|
-
export declare function useOptimisticUpdates(...args: any[]): any;
|
|
1216
|
-
export declare function useMediaStateComparison(...args: any[]): any;
|
|
1217
|
-
|
|
1218
|
-
// Exports from src/hooks/use-media-player.ts
|
|
1219
|
-
export declare function useMediaPlayer(...args: any[]): any;
|
|
1220
|
-
|
|
1221
|
-
// Exports from src/hooks/use-media-state.ts
|
|
1222
|
-
export declare function useMediaState(...args: any[]): any;
|
|
1223
|
-
export declare function useEnhancedMediaState(...args: any[]): any;
|
|
1224
|
-
export declare function useAdaptiveMediaState(...args: any[]): any;
|
|
1225
|
-
|
|
1226
|
-
// Exports from src/hooks/use-memory-optimization.ts
|
|
1227
|
-
export declare function useMemoryOptimization(...args: any[]): any;
|
|
1228
|
-
export declare function useMediaResourceCleanup(...args: any[]): any;
|
|
1229
|
-
export declare function usePerformanceMonitoring(...args: any[]): any;
|
|
1230
|
-
|
|
1231
|
-
// Exports from src/hooks/use-mobile.ts
|
|
1232
|
-
export declare function useDeviceInfo(...args: any[]): any;
|
|
1233
|
-
export declare function useContainerQuery(...args: any[]): any;
|
|
1234
|
-
export declare function useMobileOptimizations(...args: any[]): any;
|
|
1235
|
-
export declare function useHapticFeedback(...args: any[]): any;
|
|
1236
|
-
|
|
1237
|
-
// Exports from src/hooks/use-optimistic-controls.d.ts
|
|
1238
|
-
export interface MediaState {}
|
|
1239
|
-
|
|
1240
|
-
// Exports from src/hooks/use-optimistic-controls.ts
|
|
1241
|
-
export interface MediaState {}
|
|
1242
|
-
export declare function useOptimisticMediaState(...args: any[]): any;
|
|
1243
|
-
|
|
1244
|
-
// Exports from src/hooks/use-optimized-media.ts
|
|
1245
|
-
export declare function useOptimizedMediaState(...args: any[]): any;
|
|
1246
|
-
export declare function useOptimizedMediaControls(...args: any[]): any;
|
|
1247
|
-
export declare function useDebouncedSeek(...args: any[]): any;
|
|
1248
|
-
export declare function useThrottledVolume(...args: any[]): any;
|
|
1249
|
-
export declare function useFormattedTime(...args: any[]): any;
|
|
1250
|
-
export declare function useIntersectionObserver(...args: any[]): any;
|
|
1251
|
-
export declare function useMediaQuery(...args: any[]): any;
|
|
1252
|
-
|
|
1253
|
-
// Exports from src/hooks/use-touch-gestures.d.ts
|
|
1254
|
-
export interface GestureEvent {}
|
|
1255
|
-
export interface GestureConfig {}
|
|
1256
|
-
export type GestureType = any;
|
|
1257
|
-
|
|
1258
|
-
// Exports from src/hooks/use-touch-gestures.ts
|
|
1259
|
-
export interface GestureEvent {}
|
|
1260
|
-
export interface GestureConfig {}
|
|
1261
|
-
export type GestureType = any;
|
|
1262
|
-
export declare function useTouchGestures(...args: any[]): any;
|
|
1263
|
-
export declare function useMediaGestures(...args: any[]): any;
|
|
1264
|
-
|
|
1265
|
-
// Exports from src/hooks/useEnhancedSubtitles.d.ts
|
|
1266
|
-
export interface SubtitleTrack {}
|
|
1267
|
-
export interface UseEnhancedSubtitlesOptions {}
|
|
1268
|
-
|
|
1269
|
-
// Exports from src/hooks/useEnhancedSubtitles.ts
|
|
1270
|
-
export interface SubtitleTrack {}
|
|
1271
|
-
export interface UseEnhancedSubtitlesOptions {}
|
|
1272
|
-
export declare function useEnhancedSubtitles(...args: any[]): any;
|
|
1273
|
-
|
|
1274
|
-
// Exports from src/hooks/useKeyboardShortcuts.ts
|
|
1275
|
-
export declare function useKeyboardShortcuts(...args: any[]): any;
|
|
1276
|
-
|
|
1277
|
-
// Exports from src/hooks/useMediaControls.ts
|
|
1278
|
-
export declare function useMediaControls(...args: any[]): any;
|
|
1279
|
-
|
|
1280
|
-
// Exports from src/hooks/useScreenshot.ts
|
|
1281
|
-
export declare function useScreenshot(...args: any[]): any;
|
|
1282
|
-
|
|
1283
|
-
// Exports from src/hooks/useSubtitles.ts
|
|
1284
|
-
export declare function useSubtitles(...args: any[]): any;
|
|
1285
|
-
|
|
1286
|
-
// Exports from src/hooks/useVideoPlayer.d.ts
|
|
1287
|
-
export interface BufferedRange {}
|
|
1288
|
-
export interface VideoState {}
|
|
1289
|
-
export interface VideoControls {}
|
|
1290
|
-
|
|
1291
|
-
// Exports from src/hooks/useVideoPlayer.ts
|
|
1292
|
-
export interface BufferedRange {}
|
|
1293
|
-
export interface VideoState {}
|
|
1294
|
-
export interface VideoControls {}
|
|
1295
|
-
export declare function useVideoPlayer(...args: any[]): any;
|
|
1296
|
-
|
|
1297
|
-
// Exports from src/icons/components/FullscreenIcon.tsx
|
|
1298
|
-
export declare function FullscreenIcon(...args: any[]): any;
|
|
1299
|
-
|
|
1300
|
-
// Exports from src/icons/components/SettingsIcon.tsx
|
|
1301
|
-
export declare function SettingsIcon(...args: any[]): any;
|
|
1302
|
-
|
|
1303
|
-
// Exports from src/icons/components/animated/LoadingIcon.tsx
|
|
1304
|
-
export declare function LoadingIcon(...args: any[]): any;
|
|
1305
|
-
|
|
1306
|
-
// Exports from src/icons/components/animated/PlayPauseIcon.tsx
|
|
1307
|
-
export declare function PlayPauseIcon(...args: any[]): any;
|
|
1308
|
-
|
|
1309
|
-
// Exports from src/icons/components/media/PauseIcon.tsx
|
|
1310
|
-
export declare function PauseIcon(...args: any[]): any;
|
|
1311
|
-
|
|
1312
|
-
// Exports from src/icons/components/media/PlayIcon.tsx
|
|
1313
|
-
export declare function PlayIcon(...args: any[]): any;
|
|
1314
|
-
|
|
1315
|
-
// Exports from src/icons/components/volume/VolumeIcon.tsx
|
|
1316
|
-
export declare function VolumeIcon(...args: any[]): any;
|
|
1317
|
-
|
|
1318
|
-
// Exports from src/icons/components/volume/VolumeOffIcon.tsx
|
|
1319
|
-
export declare function VolumeOffIcon(...args: any[]): any;
|
|
1320
|
-
|
|
1321
|
-
// Exports from src/icons/provider.tsx
|
|
1322
|
-
export declare function IconProvider(...args: any[]): any;
|
|
1323
|
-
export declare function useIconTheme(...args: any[]): any;
|
|
1324
|
-
export declare function useIcon(...args: any[]): any;
|
|
1325
|
-
export declare function useCustomIcon(...args: any[]): any;
|
|
1326
|
-
|
|
1327
|
-
// Exports from src/icons/types.d.ts
|
|
1328
|
-
export interface IconProps {}
|
|
1329
|
-
export interface IconTheme {}
|
|
1330
|
-
export type IconName = any;
|
|
1331
|
-
export type IconComponent = any;
|
|
1332
|
-
export type IconSet = any;
|
|
1333
|
-
|
|
1334
|
-
// Exports from src/icons/types.ts
|
|
1335
|
-
export interface IconProps {}
|
|
1336
|
-
export interface IconTheme {}
|
|
1337
|
-
export type IconName = any;
|
|
1338
|
-
export type IconComponent = any;
|
|
1339
|
-
export type IconSet = any;
|
|
1340
|
-
|
|
1341
|
-
// Exports from src/index.minimal.ts
|
|
1342
|
-
export declare const test: any;
|
|
1343
|
-
|
|
1344
|
-
// Exports from src/lib/deprecation.ts
|
|
1345
|
-
export declare function showDeprecationWarning(...args: any[]): any;
|
|
1346
|
-
export declare function createDeprecatedComponent(...args: any[]): any;
|
|
1347
|
-
|
|
1348
|
-
// Exports from src/lib/format-time.ts
|
|
1349
|
-
export declare function formatTime(...args: any[]): any;
|
|
1350
|
-
export declare function parseTime(...args: any[]): any;
|
|
1351
|
-
|
|
1352
|
-
// Exports from src/lib/utils.ts
|
|
1353
|
-
export declare function cn(...args: any[]): any;
|
|
1354
|
-
|
|
1355
|
-
// Exports from src/types/events.d.ts
|
|
1356
|
-
export interface MediaEventMap {}
|
|
1357
|
-
export interface MediaErrorEvent {}
|
|
1358
|
-
export interface MediaTimeUpdateEvent {}
|
|
1359
|
-
export interface MediaVolumeChangeEvent {}
|
|
1360
|
-
export interface MediaProgressEvent {}
|
|
1361
|
-
export type MediaEventType = any;
|
|
1362
|
-
|
|
1363
|
-
// Exports from src/types/events.ts
|
|
1364
|
-
export interface MediaEventMap {}
|
|
1365
|
-
export interface MediaErrorEvent {}
|
|
1366
|
-
export interface MediaTimeUpdateEvent {}
|
|
1367
|
-
export interface MediaVolumeChangeEvent {}
|
|
1368
|
-
export interface MediaProgressEvent {}
|
|
1369
|
-
export type MediaEventType = any;
|
|
1370
|
-
|
|
1371
|
-
// Exports from src/types/formats.d.ts
|
|
1372
|
-
export interface MediaSource {}
|
|
1373
|
-
export interface MediaCapabilities {}
|
|
1374
|
-
export type VideoFormat = any;
|
|
1375
|
-
export type AudioFormat = any;
|
|
1376
|
-
export type MediaFormat = any;
|
|
1377
|
-
export type VideoMimeType = any;
|
|
1378
|
-
export type AudioMimeType = any;
|
|
1379
|
-
export type MediaMimeType = any;
|
|
1380
|
-
|
|
1381
|
-
// Exports from src/types/formats.ts
|
|
1382
|
-
export interface MediaSource {}
|
|
1383
|
-
export interface MediaCapabilities {}
|
|
1384
|
-
export type VideoFormat = any;
|
|
1385
|
-
export type AudioFormat = any;
|
|
1386
|
-
export type MediaFormat = any;
|
|
1387
|
-
export type VideoMimeType = any;
|
|
1388
|
-
export type AudioMimeType = any;
|
|
1389
|
-
export type MediaMimeType = any;
|
|
1390
|
-
export declare function getMediaTypeFromUrl(...args: any[]): any;
|
|
1391
|
-
export declare function getMimeTypeFromUrl(...args: any[]): any;
|
|
1392
|
-
export declare const SUPPORTED_VIDEO_FORMATS: any;
|
|
1393
|
-
export declare const SUPPORTED_AUDIO_FORMATS: any;
|
|
1394
|
-
export declare const VIDEO_MIME_TYPES: any;
|
|
1395
|
-
export declare const AUDIO_MIME_TYPES: any;
|
|
1396
|
-
|
|
1397
|
-
// Exports from src/types/index.d.ts
|
|
1398
|
-
export interface MediaPlayerState {}
|
|
1399
|
-
export interface MediaPlayerControls {}
|
|
1400
|
-
export interface MediaPlayerConfig {}
|
|
1401
|
-
export interface MediaPlayerProps {}
|
|
1402
|
-
export interface VideoPlayerProps {}
|
|
1403
|
-
export interface AudioPlayerProps {}
|
|
1404
|
-
export interface SupportedFormats {}
|
|
1405
|
-
export interface PlayButtonProps {}
|
|
1406
|
-
export interface VolumeControlProps {}
|
|
1407
|
-
export interface SeekBarProps {}
|
|
1408
|
-
export interface TimeDisplayProps {}
|
|
1409
|
-
export interface FullscreenButtonProps {}
|
|
1410
|
-
export interface SubtitleTrack {}
|
|
1411
|
-
export interface CustomLoadingComponentProps {}
|
|
1412
|
-
export type VolumeOrientation = any;
|
|
1413
|
-
|
|
1414
|
-
// Exports from src/types/videojs-plugins.d.ts
|
|
1415
|
-
export default any;
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
// Legacy exports
|
|
1419
|
-
export * from './src/index-legacy';
|
|
1420
|
-
export * from './src/components';
|
|
1421
|
-
export * from './src/hooks';
|
|
1422
|
-
export * from './src/context';
|
|
1423
|
-
export * from './src/core';
|
|
1424
|
-
export * from './src/lib';
|
|
1425
|
-
export * from './src/types';
|