@therealtinhtute/baroiplayer 1.0.0 → 1.0.1

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.
Files changed (1326) hide show
  1. package/dist/index.css +102 -1
  2. package/dist/index.d.ts +1388 -0
  3. package/dist/index.js +27 -112
  4. package/dist/index.mjs +17 -6126
  5. package/dist/package.json +28 -0
  6. package/dist/src/adapters/videojs-adapter.d.ts +38 -0
  7. package/dist/src/adapters/videojs-adapter.d.ts.map +1 -0
  8. package/dist/src/adapters/videojs-adapter.js +350 -0
  9. package/dist/src/adapters/videojs-adapter.tsx +470 -0
  10. package/dist/src/components/AnimateLoading.d.ts +9 -0
  11. package/dist/src/components/AnimateLoading.d.ts.map +1 -0
  12. package/dist/src/components/AnimateLoading.js +41 -0
  13. package/dist/src/components/AnimateLoading.tsx +115 -0
  14. package/dist/src/components/LoadingState.d.ts +33 -0
  15. package/dist/src/components/LoadingState.d.ts.map +1 -0
  16. package/dist/src/components/LoadingState.js +111 -0
  17. package/dist/src/components/LoadingState.tsx +248 -0
  18. package/dist/src/components/accessibility/keyboard-help-overlay.d.ts +17 -0
  19. package/dist/src/components/accessibility/keyboard-help-overlay.d.ts.map +1 -0
  20. package/dist/src/components/accessibility/keyboard-help-overlay.js +90 -0
  21. package/dist/src/components/accessibility/keyboard-help-overlay.tsx +213 -0
  22. package/dist/src/components/audio-player.d.ts +3 -0
  23. package/dist/src/components/audio-player.d.ts.map +1 -0
  24. package/dist/src/components/audio-player.js +31 -0
  25. package/dist/src/components/audio-player.tsx +85 -0
  26. package/dist/src/components/basic/index.d.ts +26 -0
  27. package/dist/src/components/basic/index.d.ts.map +1 -0
  28. package/dist/src/components/basic/index.js +29 -0
  29. package/dist/src/components/basic/index.ts +37 -0
  30. package/dist/src/components/enhanced/advanced-features.d.ts +45 -0
  31. package/dist/src/components/enhanced/advanced-features.d.ts.map +1 -0
  32. package/dist/src/components/enhanced/advanced-features.js +64 -0
  33. package/dist/src/components/enhanced/advanced-features.tsx +316 -0
  34. package/dist/src/components/enhanced/debug-panel.d.ts +70 -0
  35. package/dist/src/components/enhanced/debug-panel.d.ts.map +1 -0
  36. package/dist/src/components/enhanced/debug-panel.js +94 -0
  37. package/dist/src/components/enhanced/debug-panel.tsx +422 -0
  38. package/dist/src/components/enhanced/enhanced-controls.d.ts +50 -0
  39. package/dist/src/components/enhanced/enhanced-controls.d.ts.map +1 -0
  40. package/dist/src/components/enhanced/enhanced-controls.js +233 -0
  41. package/dist/src/components/enhanced/enhanced-controls.tsx +600 -0
  42. package/dist/src/components/enhanced/enhanced-media-player.d.ts +26 -0
  43. package/dist/src/components/enhanced/enhanced-media-player.d.ts.map +1 -0
  44. package/dist/src/components/enhanced/enhanced-media-player.js +316 -0
  45. package/dist/src/components/enhanced/enhanced-media-player.tsx +509 -0
  46. package/dist/src/components/enhanced/error-handling.d.ts +36 -0
  47. package/dist/src/components/enhanced/error-handling.d.ts.map +1 -0
  48. package/dist/src/components/enhanced/error-handling.js +153 -0
  49. package/dist/src/components/enhanced/error-handling.tsx +345 -0
  50. package/dist/src/components/enhanced/index.d.ts +7 -0
  51. package/dist/src/components/enhanced/index.d.ts.map +1 -0
  52. package/dist/src/components/enhanced/index.js +10 -0
  53. package/dist/src/components/enhanced/index.ts +39 -0
  54. package/dist/src/components/enhanced/media-player-enhanced.d.ts +21 -0
  55. package/dist/src/components/enhanced/media-player-enhanced.d.ts.map +1 -0
  56. package/dist/src/components/enhanced/media-player-enhanced.js +250 -0
  57. package/dist/src/components/enhanced/media-player-enhanced.tsx +349 -0
  58. package/dist/src/components/examples/basic-video-player.d.ts +10 -0
  59. package/dist/src/components/examples/basic-video-player.d.ts.map +1 -0
  60. package/dist/src/components/examples/basic-video-player.js +16 -0
  61. package/dist/src/components/examples/basic-video-player.tsx +55 -0
  62. package/dist/src/components/examples/custom-controls-example.d.ts +10 -0
  63. package/dist/src/components/examples/custom-controls-example.d.ts.map +1 -0
  64. package/dist/src/components/examples/custom-controls-example.js +12 -0
  65. package/dist/src/components/examples/custom-controls-example.tsx +63 -0
  66. package/dist/src/components/examples/enhanced-controls-example.d.ts +9 -0
  67. package/dist/src/components/examples/enhanced-controls-example.d.ts.map +1 -0
  68. package/dist/src/components/examples/enhanced-controls-example.js +18 -0
  69. package/dist/src/components/examples/enhanced-controls-example.tsx +114 -0
  70. package/dist/src/components/examples/enhanced-media-player-example.d.ts +9 -0
  71. package/dist/src/components/examples/enhanced-media-player-example.d.ts.map +1 -0
  72. package/dist/src/components/examples/enhanced-media-player-example.js +13 -0
  73. package/dist/src/components/examples/enhanced-media-player-example.tsx +293 -0
  74. package/dist/src/components/examples/loading-states-demo.d.ts +2 -0
  75. package/dist/src/components/examples/loading-states-demo.d.ts.map +1 -0
  76. package/dist/src/components/examples/loading-states-demo.js +41 -0
  77. package/dist/src/components/examples/loading-states-demo.tsx +142 -0
  78. package/dist/src/components/examples/react-19-demo.d.ts +10 -0
  79. package/dist/src/components/examples/react-19-demo.d.ts.map +1 -0
  80. package/dist/src/components/examples/react-19-demo.js +104 -0
  81. package/dist/src/components/examples/react-19-demo.tsx +381 -0
  82. package/dist/src/components/examples/volume-orientation-demo.d.ts +2 -0
  83. package/dist/src/components/examples/volume-orientation-demo.d.ts.map +1 -0
  84. package/dist/src/components/examples/volume-orientation-demo.js +31 -0
  85. package/dist/src/components/examples/volume-orientation-demo.tsx +114 -0
  86. package/dist/src/components/icon-demo.d.ts +2 -0
  87. package/dist/src/components/icon-demo.d.ts.map +1 -0
  88. package/dist/src/components/icon-demo.js +16 -0
  89. package/dist/src/components/icon-demo.tsx +209 -0
  90. package/dist/src/components/icons/index.d.ts +36 -0
  91. package/dist/src/components/icons/index.d.ts.map +1 -0
  92. package/dist/src/components/icons/index.js +59 -0
  93. package/dist/src/components/icons/index.tsx +166 -0
  94. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +4 -0
  95. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.d.ts.map +1 -0
  96. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.js +3 -0
  97. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.tsx +18 -0
  98. package/dist/src/components/icons/svg-icons/ArrowRightIcon.d.ts +4 -0
  99. package/dist/src/components/icons/svg-icons/ArrowRightIcon.d.ts.map +1 -0
  100. package/dist/src/components/icons/svg-icons/ArrowRightIcon.js +3 -0
  101. package/dist/src/components/icons/svg-icons/ArrowRightIcon.tsx +18 -0
  102. package/dist/src/components/icons/svg-icons/AudioIcon.d.ts +4 -0
  103. package/dist/src/components/icons/svg-icons/AudioIcon.d.ts.map +1 -0
  104. package/dist/src/components/icons/svg-icons/AudioIcon.js +4 -0
  105. package/dist/src/components/icons/svg-icons/AudioIcon.tsx +22 -0
  106. package/dist/src/components/icons/svg-icons/BackwardIcon.d.ts +4 -0
  107. package/dist/src/components/icons/svg-icons/BackwardIcon.d.ts.map +1 -0
  108. package/dist/src/components/icons/svg-icons/BackwardIcon.js +3 -0
  109. package/dist/src/components/icons/svg-icons/BackwardIcon.tsx +12 -0
  110. package/dist/src/components/icons/svg-icons/CameraIcon.d.ts +4 -0
  111. package/dist/src/components/icons/svg-icons/CameraIcon.d.ts.map +1 -0
  112. package/dist/src/components/icons/svg-icons/CameraIcon.js +4 -0
  113. package/dist/src/components/icons/svg-icons/CameraIcon.tsx +19 -0
  114. package/dist/src/components/icons/svg-icons/CheckIcon.d.ts +4 -0
  115. package/dist/src/components/icons/svg-icons/CheckIcon.d.ts.map +1 -0
  116. package/dist/src/components/icons/svg-icons/CheckIcon.js +4 -0
  117. package/dist/src/components/icons/svg-icons/CheckIcon.tsx +19 -0
  118. package/dist/src/components/icons/svg-icons/EnablePiPIcon.d.ts +4 -0
  119. package/dist/src/components/icons/svg-icons/EnablePiPIcon.d.ts.map +1 -0
  120. package/dist/src/components/icons/svg-icons/EnablePiPIcon.js +5 -0
  121. package/dist/src/components/icons/svg-icons/EnablePiPIcon.tsx +17 -0
  122. package/dist/src/components/icons/svg-icons/ForwardIcon.d.ts +4 -0
  123. package/dist/src/components/icons/svg-icons/ForwardIcon.d.ts.map +1 -0
  124. package/dist/src/components/icons/svg-icons/ForwardIcon.js +3 -0
  125. package/dist/src/components/icons/svg-icons/ForwardIcon.tsx +12 -0
  126. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +4 -0
  127. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts.map +1 -0
  128. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.js +3 -0
  129. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.tsx +23 -0
  130. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +4 -0
  131. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.d.ts.map +1 -0
  132. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.js +3 -0
  133. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.tsx +23 -0
  134. package/dist/src/components/icons/svg-icons/LoadingIcon.d.ts +4 -0
  135. package/dist/src/components/icons/svg-icons/LoadingIcon.d.ts.map +1 -0
  136. package/dist/src/components/icons/svg-icons/LoadingIcon.js +3 -0
  137. package/dist/src/components/icons/svg-icons/LoadingIcon.tsx +32 -0
  138. package/dist/src/components/icons/svg-icons/PauseIcon.d.ts +4 -0
  139. package/dist/src/components/icons/svg-icons/PauseIcon.d.ts.map +1 -0
  140. package/dist/src/components/icons/svg-icons/PauseIcon.js +3 -0
  141. package/dist/src/components/icons/svg-icons/PauseIcon.tsx +23 -0
  142. package/dist/src/components/icons/svg-icons/PlayIcon.d.ts +4 -0
  143. package/dist/src/components/icons/svg-icons/PlayIcon.d.ts.map +1 -0
  144. package/dist/src/components/icons/svg-icons/PlayIcon.js +3 -0
  145. package/dist/src/components/icons/svg-icons/PlayIcon.tsx +21 -0
  146. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +4 -0
  147. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts.map +1 -0
  148. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.js +3 -0
  149. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.tsx +23 -0
  150. package/dist/src/components/icons/svg-icons/QualityIcon.d.ts +4 -0
  151. package/dist/src/components/icons/svg-icons/QualityIcon.d.ts.map +1 -0
  152. package/dist/src/components/icons/svg-icons/QualityIcon.js +3 -0
  153. package/dist/src/components/icons/svg-icons/QualityIcon.tsx +21 -0
  154. package/dist/src/components/icons/svg-icons/SettingsIcon.d.ts +4 -0
  155. package/dist/src/components/icons/svg-icons/SettingsIcon.d.ts.map +1 -0
  156. package/dist/src/components/icons/svg-icons/SettingsIcon.js +3 -0
  157. package/dist/src/components/icons/svg-icons/SettingsIcon.tsx +12 -0
  158. package/dist/src/components/icons/svg-icons/SliderIcon.d.ts +4 -0
  159. package/dist/src/components/icons/svg-icons/SliderIcon.d.ts.map +1 -0
  160. package/dist/src/components/icons/svg-icons/SliderIcon.js +3 -0
  161. package/dist/src/components/icons/svg-icons/SliderIcon.tsx +21 -0
  162. package/dist/src/components/icons/svg-icons/SubtitleIcon.d.ts +4 -0
  163. package/dist/src/components/icons/svg-icons/SubtitleIcon.d.ts.map +1 -0
  164. package/dist/src/components/icons/svg-icons/SubtitleIcon.js +3 -0
  165. package/dist/src/components/icons/svg-icons/SubtitleIcon.tsx +21 -0
  166. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +4 -0
  167. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.d.ts.map +1 -0
  168. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.js +3 -0
  169. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.tsx +25 -0
  170. package/dist/src/components/icons/svg-icons/UnPiPIcon.d.ts +4 -0
  171. package/dist/src/components/icons/svg-icons/UnPiPIcon.d.ts.map +1 -0
  172. package/dist/src/components/icons/svg-icons/UnPiPIcon.js +5 -0
  173. package/dist/src/components/icons/svg-icons/UnPiPIcon.tsx +17 -0
  174. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +4 -0
  175. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.d.ts.map +1 -0
  176. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.js +3 -0
  177. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.tsx +16 -0
  178. package/dist/src/components/icons/svg-icons/VolumeOneIcon.d.ts +4 -0
  179. package/dist/src/components/icons/svg-icons/VolumeOneIcon.d.ts.map +1 -0
  180. package/dist/src/components/icons/svg-icons/VolumeOneIcon.js +3 -0
  181. package/dist/src/components/icons/svg-icons/VolumeOneIcon.tsx +22 -0
  182. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +4 -0
  183. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.d.ts.map +1 -0
  184. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.js +3 -0
  185. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.tsx +16 -0
  186. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +4 -0
  187. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.d.ts.map +1 -0
  188. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.js +3 -0
  189. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.tsx +16 -0
  190. package/dist/src/components/legacy.d.ts +13 -0
  191. package/dist/src/components/legacy.d.ts.map +1 -0
  192. package/dist/src/components/legacy.js +52 -0
  193. package/dist/src/components/legacy.tsx +93 -0
  194. package/dist/src/components/media-metadata-display.d.ts +11 -0
  195. package/dist/src/components/media-metadata-display.d.ts.map +1 -0
  196. package/dist/src/components/media-metadata-display.js +20 -0
  197. package/dist/src/components/media-metadata-display.tsx +100 -0
  198. package/dist/src/components/media-player-audio.d.ts +9 -0
  199. package/dist/src/components/media-player-audio.d.ts.map +1 -0
  200. package/dist/src/components/media-player-audio.js +18 -0
  201. package/dist/src/components/media-player-audio.tsx +39 -0
  202. package/dist/src/components/media-player-controls.d.ts +23 -0
  203. package/dist/src/components/media-player-controls.d.ts.map +1 -0
  204. package/dist/src/components/media-player-controls.js +150 -0
  205. package/dist/src/components/media-player-controls.tsx +226 -0
  206. package/dist/src/components/media-player-error.d.ts +16 -0
  207. package/dist/src/components/media-player-error.d.ts.map +1 -0
  208. package/dist/src/components/media-player-error.js +85 -0
  209. package/dist/src/components/media-player-error.tsx +163 -0
  210. package/dist/src/components/media-player-fullscreen.d.ts +12 -0
  211. package/dist/src/components/media-player-fullscreen.d.ts.map +1 -0
  212. package/dist/src/components/media-player-fullscreen.js +68 -0
  213. package/dist/src/components/media-player-fullscreen.tsx +109 -0
  214. package/dist/src/components/media-player-hls.d.ts +23 -0
  215. package/dist/src/components/media-player-hls.d.ts.map +1 -0
  216. package/dist/src/components/media-player-hls.js +20 -0
  217. package/dist/src/components/media-player-hls.tsx +111 -0
  218. package/dist/src/components/media-player-loading.d.ts +12 -0
  219. package/dist/src/components/media-player-loading.d.ts.map +1 -0
  220. package/dist/src/components/media-player-loading.js +53 -0
  221. package/dist/src/components/media-player-loading.tsx +76 -0
  222. package/dist/src/components/media-player-play.d.ts +11 -0
  223. package/dist/src/components/media-player-play.d.ts.map +1 -0
  224. package/dist/src/components/media-player-play.js +44 -0
  225. package/dist/src/components/media-player-play.tsx +75 -0
  226. package/dist/src/components/media-player-root.d.ts +28 -0
  227. package/dist/src/components/media-player-root.d.ts.map +1 -0
  228. package/dist/src/components/media-player-root.js +243 -0
  229. package/dist/src/components/media-player-root.tsx +340 -0
  230. package/dist/src/components/media-player-seek.d.ts +15 -0
  231. package/dist/src/components/media-player-seek.d.ts.map +1 -0
  232. package/dist/src/components/media-player-seek.js +92 -0
  233. package/dist/src/components/media-player-seek.tsx +168 -0
  234. package/dist/src/components/media-player-time.d.ts +12 -0
  235. package/dist/src/components/media-player-time.d.ts.map +1 -0
  236. package/dist/src/components/media-player-time.js +57 -0
  237. package/dist/src/components/media-player-time.tsx +99 -0
  238. package/dist/src/components/media-player-tooltip.d.ts +13 -0
  239. package/dist/src/components/media-player-tooltip.d.ts.map +1 -0
  240. package/dist/src/components/media-player-tooltip.js +14 -0
  241. package/dist/src/components/media-player-tooltip.tsx +58 -0
  242. package/dist/src/components/media-player-video.d.ts +9 -0
  243. package/dist/src/components/media-player-video.d.ts.map +1 -0
  244. package/dist/src/components/media-player-video.js +18 -0
  245. package/dist/src/components/media-player-video.tsx +39 -0
  246. package/dist/src/components/media-player-volume.d.ts +13 -0
  247. package/dist/src/components/media-player-volume.d.ts.map +1 -0
  248. package/dist/src/components/media-player-volume.js +88 -0
  249. package/dist/src/components/media-player-volume.tsx +155 -0
  250. package/dist/src/components/media-player.d.ts +3 -0
  251. package/dist/src/components/media-player.d.ts.map +1 -0
  252. package/dist/src/components/media-player.js +67 -0
  253. package/dist/src/components/media-player.tsx +257 -0
  254. package/dist/src/components/media-suspense.d.ts +78 -0
  255. package/dist/src/components/media-suspense.d.ts.map +1 -0
  256. package/dist/src/components/media-suspense.js +173 -0
  257. package/dist/src/components/media-suspense.tsx +362 -0
  258. package/dist/src/components/player-settings-form.d.ts +8 -0
  259. package/dist/src/components/player-settings-form.d.ts.map +1 -0
  260. package/dist/src/components/player-settings-form.js +46 -0
  261. package/dist/src/components/player-settings-form.tsx +163 -0
  262. package/dist/src/components/react-player-wrapper.d.ts +64 -0
  263. package/dist/src/components/react-player-wrapper.d.ts.map +1 -0
  264. package/dist/src/components/react-player-wrapper.js +163 -0
  265. package/dist/src/components/react-player-wrapper.tsx +651 -0
  266. package/dist/src/components/simple-video-player.d.ts +9 -0
  267. package/dist/src/components/simple-video-player.d.ts.map +1 -0
  268. package/dist/src/components/simple-video-player.js +41 -0
  269. package/dist/src/components/simple-video-player.tsx +60 -0
  270. package/dist/src/components/ui/enhanced-seek-bar.d.ts +3 -0
  271. package/dist/src/components/ui/enhanced-seek-bar.d.ts.map +1 -0
  272. package/dist/src/components/ui/enhanced-seek-bar.js +112 -0
  273. package/dist/src/components/ui/enhanced-seek-bar.tsx +235 -0
  274. package/dist/src/components/ui/fullscreen-button.d.ts +3 -0
  275. package/dist/src/components/ui/fullscreen-button.d.ts.map +1 -0
  276. package/dist/src/components/ui/fullscreen-button.js +21 -0
  277. package/dist/src/components/ui/fullscreen-button.tsx +60 -0
  278. package/dist/src/components/ui/media-resource-preloader.d.ts +21 -0
  279. package/dist/src/components/ui/media-resource-preloader.d.ts.map +1 -0
  280. package/dist/src/components/ui/media-resource-preloader.js +295 -0
  281. package/dist/src/components/ui/media-resource-preloader.tsx +395 -0
  282. package/dist/src/components/ui/play-button.d.ts +3 -0
  283. package/dist/src/components/ui/play-button.d.ts.map +1 -0
  284. package/dist/src/components/ui/play-button.js +26 -0
  285. package/dist/src/components/ui/play-button.tsx +107 -0
  286. package/dist/src/components/ui/seek-bar.d.ts +3 -0
  287. package/dist/src/components/ui/seek-bar.d.ts.map +1 -0
  288. package/dist/src/components/ui/seek-bar.js +54 -0
  289. package/dist/src/components/ui/seek-bar.tsx +161 -0
  290. package/dist/src/components/ui/time-display.d.ts +3 -0
  291. package/dist/src/components/ui/time-display.d.ts.map +1 -0
  292. package/dist/src/components/ui/time-display.js +18 -0
  293. package/dist/src/components/ui/time-display.tsx +40 -0
  294. package/dist/src/components/ui/volume-control.d.ts +3 -0
  295. package/dist/src/components/ui/volume-control.d.ts.map +1 -0
  296. package/dist/src/components/ui/volume-control.js +71 -0
  297. package/dist/src/components/ui/volume-control.tsx +143 -0
  298. package/dist/src/components/unified/base-media-player.d.ts +18 -0
  299. package/dist/src/components/unified/base-media-player.d.ts.map +1 -0
  300. package/dist/src/components/unified/base-media-player.js +104 -0
  301. package/dist/src/components/unified/base-media-player.tsx +246 -0
  302. package/dist/src/components/unified/media-player.d.ts +37 -0
  303. package/dist/src/components/unified/media-player.d.ts.map +1 -0
  304. package/dist/src/components/unified/media-player.js +41 -0
  305. package/dist/src/components/unified/media-player.tsx +75 -0
  306. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +42 -0
  307. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts.map +1 -0
  308. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.js +322 -0
  309. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.tsx +561 -0
  310. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +44 -0
  311. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts.map +1 -0
  312. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.js +280 -0
  313. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx +552 -0
  314. package/dist/src/components/variants/minimal/MinimalControls.d.ts +19 -0
  315. package/dist/src/components/variants/minimal/MinimalControls.d.ts.map +1 -0
  316. package/dist/src/components/variants/minimal/MinimalControls.js +19 -0
  317. package/dist/src/components/variants/minimal/MinimalControls.tsx +142 -0
  318. package/dist/src/components/variants/minimal/MinimalLoading.d.ts +10 -0
  319. package/dist/src/components/variants/minimal/MinimalLoading.d.ts.map +1 -0
  320. package/dist/src/components/variants/minimal/MinimalLoading.js +6 -0
  321. package/dist/src/components/variants/minimal/MinimalLoading.tsx +32 -0
  322. package/dist/src/components/variants/minimal/MinimalMediaPlayer.d.ts +38 -0
  323. package/dist/src/components/variants/minimal/MinimalMediaPlayer.d.ts.map +1 -0
  324. package/dist/src/components/variants/minimal/MinimalMediaPlayer.js +135 -0
  325. package/dist/src/components/variants/minimal/MinimalMediaPlayer.tsx +315 -0
  326. package/dist/src/components/variants/minimal/MinimalOverlay.d.ts +11 -0
  327. package/dist/src/components/variants/minimal/MinimalOverlay.d.ts.map +1 -0
  328. package/dist/src/components/variants/minimal/MinimalOverlay.js +15 -0
  329. package/dist/src/components/variants/minimal/MinimalOverlay.tsx +64 -0
  330. package/dist/src/components/variants/minimal/MinimalPlayButton.d.ts +9 -0
  331. package/dist/src/components/variants/minimal/MinimalPlayButton.d.ts.map +1 -0
  332. package/dist/src/components/variants/minimal/MinimalPlayButton.js +29 -0
  333. package/dist/src/components/variants/minimal/MinimalPlayButton.tsx +65 -0
  334. package/dist/src/components/variants/minimal/MinimalSeekBar.d.ts +7 -0
  335. package/dist/src/components/variants/minimal/MinimalSeekBar.d.ts.map +1 -0
  336. package/dist/src/components/variants/minimal/MinimalSeekBar.js +73 -0
  337. package/dist/src/components/variants/minimal/MinimalSeekBar.tsx +150 -0
  338. package/dist/src/components/variants/minimal/MinimalVolumeControl.d.ts +7 -0
  339. package/dist/src/components/variants/minimal/MinimalVolumeControl.d.ts.map +1 -0
  340. package/dist/src/components/variants/minimal/MinimalVolumeControl.js +29 -0
  341. package/dist/src/components/variants/minimal/MinimalVolumeControl.tsx +80 -0
  342. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +22 -0
  343. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.d.ts.map +1 -0
  344. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.js +51 -0
  345. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.tsx +209 -0
  346. package/dist/src/components/variants/minimal/components/CenterPlayButton.d.ts +7 -0
  347. package/dist/src/components/variants/minimal/components/CenterPlayButton.d.ts.map +1 -0
  348. package/dist/src/components/variants/minimal/components/CenterPlayButton.js +8 -0
  349. package/dist/src/components/variants/minimal/components/CenterPlayButton.tsx +22 -0
  350. package/dist/src/components/variants/minimal/components/ControlBar.d.ts +43 -0
  351. package/dist/src/components/variants/minimal/components/ControlBar.d.ts.map +1 -0
  352. package/dist/src/components/variants/minimal/components/ControlBar.js +10 -0
  353. package/dist/src/components/variants/minimal/components/ControlBar.tsx +146 -0
  354. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +24 -0
  355. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts.map +1 -0
  356. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.js +68 -0
  357. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.tsx +361 -0
  358. package/dist/src/components/variants/minimal/components/PlaybackControls.d.ts +9 -0
  359. package/dist/src/components/variants/minimal/components/PlaybackControls.d.ts.map +1 -0
  360. package/dist/src/components/variants/minimal/components/PlaybackControls.js +9 -0
  361. package/dist/src/components/variants/minimal/components/PlaybackControls.tsx +51 -0
  362. package/dist/src/components/variants/minimal/components/RightControls.d.ts +25 -0
  363. package/dist/src/components/variants/minimal/components/RightControls.d.ts.map +1 -0
  364. package/dist/src/components/variants/minimal/components/RightControls.js +40 -0
  365. package/dist/src/components/variants/minimal/components/RightControls.tsx +173 -0
  366. package/dist/src/components/variants/minimal/components/SeekBar.d.ts +11 -0
  367. package/dist/src/components/variants/minimal/components/SeekBar.d.ts.map +1 -0
  368. package/dist/src/components/variants/minimal/components/SeekBar.js +43 -0
  369. package/dist/src/components/variants/minimal/components/SeekBar.tsx +131 -0
  370. package/dist/src/components/variants/minimal/components/SettingsDropdown.d.ts +9 -0
  371. package/dist/src/components/variants/minimal/components/SettingsDropdown.d.ts.map +1 -0
  372. package/dist/src/components/variants/minimal/components/SettingsDropdown.js +18 -0
  373. package/dist/src/components/variants/minimal/components/SettingsDropdown.tsx +70 -0
  374. package/dist/src/components/variants/minimal/components/SubtitleDisplay.d.ts +7 -0
  375. package/dist/src/components/variants/minimal/components/SubtitleDisplay.d.ts.map +1 -0
  376. package/dist/src/components/variants/minimal/components/SubtitleDisplay.js +6 -0
  377. package/dist/src/components/variants/minimal/components/SubtitleDisplay.tsx +21 -0
  378. package/dist/src/components/variants/minimal/components/TimeDisplay.d.ts +7 -0
  379. package/dist/src/components/variants/minimal/components/TimeDisplay.d.ts.map +1 -0
  380. package/dist/src/components/variants/minimal/components/TimeDisplay.js +5 -0
  381. package/dist/src/components/variants/minimal/components/TimeDisplay.tsx +18 -0
  382. package/dist/src/components/variants/minimal/components/VideoElement.d.ts +13 -0
  383. package/dist/src/components/variants/minimal/components/VideoElement.d.ts.map +1 -0
  384. package/dist/src/components/variants/minimal/components/VideoElement.js +4 -0
  385. package/dist/src/components/variants/minimal/components/VideoElement.tsx +40 -0
  386. package/dist/src/components/variants/minimal/components/VolumeControl.d.ts +13 -0
  387. package/dist/src/components/variants/minimal/components/VolumeControl.d.ts.map +1 -0
  388. package/dist/src/components/variants/minimal/components/VolumeControl.js +99 -0
  389. package/dist/src/components/variants/minimal/components/VolumeControl.tsx +217 -0
  390. package/dist/src/components/variants/minimal/index.d.ts +17 -0
  391. package/dist/src/components/variants/minimal/index.d.ts.map +1 -0
  392. package/dist/src/components/variants/minimal/index.js +8 -0
  393. package/dist/src/components/variants/minimal/index.ts +23 -0
  394. package/dist/src/components/video-player.d.ts +3 -0
  395. package/dist/src/components/video-player.d.ts.map +1 -0
  396. package/dist/src/components/video-player.js +38 -0
  397. package/dist/src/components/video-player.tsx +100 -0
  398. package/dist/src/context/error-handling.d.ts +72 -0
  399. package/dist/src/context/error-handling.d.ts.map +1 -0
  400. package/dist/src/context/error-handling.js +300 -0
  401. package/dist/src/context/error-handling.ts +394 -0
  402. package/dist/src/context/media-context.d.ts +104 -0
  403. package/dist/src/context/media-context.d.ts.map +1 -0
  404. package/dist/src/context/media-context.js +121 -0
  405. package/dist/src/context/media-context.tsx +208 -0
  406. package/dist/src/context/media-provider.d.ts +26 -0
  407. package/dist/src/context/media-provider.d.ts.map +1 -0
  408. package/dist/src/context/media-provider.js +164 -0
  409. package/dist/src/context/media-provider.tsx +265 -0
  410. package/dist/src/context/media-store.d.ts +33 -0
  411. package/dist/src/context/media-store.d.ts.map +1 -0
  412. package/dist/src/context/media-store.js +273 -0
  413. package/dist/src/context/media-store.ts +379 -0
  414. package/dist/src/context/persistence.d.ts +83 -0
  415. package/dist/src/context/persistence.d.ts.map +1 -0
  416. package/dist/src/context/persistence.js +356 -0
  417. package/dist/src/context/persistence.ts +453 -0
  418. package/dist/src/core/events/event-system.d.ts +170 -0
  419. package/dist/src/core/events/event-system.d.ts.map +1 -0
  420. package/dist/src/core/events/event-system.js +288 -0
  421. package/dist/src/core/events/event-system.ts +442 -0
  422. package/dist/src/core/events/hooks.d.ts +33 -0
  423. package/dist/src/core/events/hooks.d.ts.map +1 -0
  424. package/dist/src/core/events/hooks.js +198 -0
  425. package/dist/src/core/events/hooks.ts +302 -0
  426. package/dist/src/core/events/index.d.ts +6 -0
  427. package/dist/src/core/events/index.d.ts.map +1 -0
  428. package/dist/src/core/events/index.js +7 -0
  429. package/dist/src/core/events/index.ts +22 -0
  430. package/dist/src/core/events/middleware.d.ts +39 -0
  431. package/dist/src/core/events/middleware.d.ts.map +1 -0
  432. package/dist/src/core/events/middleware.js +219 -0
  433. package/dist/src/core/events/middleware.ts +269 -0
  434. package/dist/src/core/index.d.ts +8 -0
  435. package/dist/src/core/index.d.ts.map +1 -0
  436. package/dist/src/core/index.js +15 -0
  437. package/dist/src/core/index.ts +22 -0
  438. package/dist/src/core/optimization/bundle-optimizer.d.ts +44 -0
  439. package/dist/src/core/optimization/bundle-optimizer.d.ts.map +1 -0
  440. package/dist/src/core/optimization/bundle-optimizer.js +217 -0
  441. package/dist/src/core/optimization/bundle-optimizer.tsx +308 -0
  442. package/dist/src/core/performance/cicd.d.ts +8 -0
  443. package/dist/src/core/performance/cicd.d.ts.map +1 -0
  444. package/dist/src/core/performance/cicd.js +83 -0
  445. package/dist/src/core/performance/cicd.ts +96 -0
  446. package/dist/src/core/performance/index.d.ts +10 -0
  447. package/dist/src/core/performance/index.d.ts.map +1 -0
  448. package/dist/src/core/performance/index.js +14 -0
  449. package/dist/src/core/performance/index.ts +38 -0
  450. package/dist/src/core/performance/media-loading-optimizer.d.ts +105 -0
  451. package/dist/src/core/performance/media-loading-optimizer.d.ts.map +1 -0
  452. package/dist/src/core/performance/media-loading-optimizer.js +404 -0
  453. package/dist/src/core/performance/media-loading-optimizer.ts +538 -0
  454. package/dist/src/core/performance/performance-budgets.d.ts +68 -0
  455. package/dist/src/core/performance/performance-budgets.d.ts.map +1 -0
  456. package/dist/src/core/performance/performance-budgets.js +326 -0
  457. package/dist/src/core/performance/performance-budgets.ts +432 -0
  458. package/dist/src/core/performance/performance-monitor.d.ts +95 -0
  459. package/dist/src/core/performance/performance-monitor.d.ts.map +1 -0
  460. package/dist/src/core/performance/performance-monitor.js +297 -0
  461. package/dist/src/core/performance/performance-monitor.tsx +476 -0
  462. package/dist/src/core/performance/performance-testing.d.ts +69 -0
  463. package/dist/src/core/performance/performance-testing.d.ts.map +1 -0
  464. package/dist/src/core/performance/performance-testing.js +314 -0
  465. package/dist/src/core/performance/performance-testing.ts +459 -0
  466. package/dist/src/core/plugins/base-plugin.d.ts +52 -0
  467. package/dist/src/core/plugins/base-plugin.d.ts.map +1 -0
  468. package/dist/src/core/plugins/base-plugin.js +151 -0
  469. package/dist/src/core/plugins/base-plugin.ts +224 -0
  470. package/dist/src/core/plugins/enhanced-plugin-system.d.ts +160 -0
  471. package/dist/src/core/plugins/enhanced-plugin-system.d.ts.map +1 -0
  472. package/dist/src/core/plugins/enhanced-plugin-system.js +305 -0
  473. package/dist/src/core/plugins/enhanced-plugin-system.ts +411 -0
  474. package/dist/src/core/plugins/examples/analytics-plugin.d.ts +30 -0
  475. package/dist/src/core/plugins/examples/analytics-plugin.d.ts.map +1 -0
  476. package/dist/src/core/plugins/examples/analytics-plugin.js +191 -0
  477. package/dist/src/core/plugins/examples/analytics-plugin.ts +242 -0
  478. package/dist/src/core/plugins/index.d.ts +8 -0
  479. package/dist/src/core/plugins/index.d.ts.map +1 -0
  480. package/dist/src/core/plugins/index.js +9 -0
  481. package/dist/src/core/plugins/index.ts +39 -0
  482. package/dist/src/core/plugins/registry.d.ts +31 -0
  483. package/dist/src/core/plugins/registry.d.ts.map +1 -0
  484. package/dist/src/core/plugins/registry.js +261 -0
  485. package/dist/src/core/plugins/registry.ts +327 -0
  486. package/dist/src/core/plugins/types.d.ts +101 -0
  487. package/dist/src/core/plugins/types.d.ts.map +1 -0
  488. package/dist/src/core/plugins/types.js +31 -0
  489. package/dist/src/core/plugins/types.ts +159 -0
  490. package/dist/src/core/plugins/utils.d.ts +38 -0
  491. package/dist/src/core/plugins/utils.d.ts.map +1 -0
  492. package/dist/src/core/plugins/utils.js +274 -0
  493. package/dist/src/core/plugins/utils.ts +316 -0
  494. package/dist/src/core/progressive-loading.d.ts +88 -0
  495. package/dist/src/core/progressive-loading.d.ts.map +1 -0
  496. package/dist/src/core/progressive-loading.js +239 -0
  497. package/dist/src/core/progressive-loading.tsx +322 -0
  498. package/dist/src/core/providers/enhanced-hls-provider.d.ts +50 -0
  499. package/dist/src/core/providers/enhanced-hls-provider.d.ts.map +1 -0
  500. package/dist/src/core/providers/enhanced-hls-provider.js +273 -0
  501. package/dist/src/core/providers/enhanced-hls-provider.ts +339 -0
  502. package/dist/src/core/providers/service-provider.d.ts +49 -0
  503. package/dist/src/core/providers/service-provider.d.ts.map +1 -0
  504. package/dist/src/core/providers/service-provider.js +105 -0
  505. package/dist/src/core/providers/service-provider.tsx +168 -0
  506. package/dist/src/core/utils.d.ts +25 -0
  507. package/dist/src/core/utils.d.ts.map +1 -0
  508. package/dist/src/core/utils.js +21 -0
  509. package/dist/src/core/utils.tsx +38 -0
  510. package/dist/src/features/media-session/media-session-manager.d.ts +132 -0
  511. package/dist/src/features/media-session/media-session-manager.d.ts.map +1 -0
  512. package/dist/src/features/media-session/media-session-manager.js +331 -0
  513. package/dist/src/features/media-session/media-session-manager.ts +429 -0
  514. package/dist/src/features/picture-in-picture/pip-manager.d.ts +94 -0
  515. package/dist/src/features/picture-in-picture/pip-manager.d.ts.map +1 -0
  516. package/dist/src/features/picture-in-picture/pip-manager.js +353 -0
  517. package/dist/src/features/picture-in-picture/pip-manager.ts +429 -0
  518. package/dist/src/features/playlist/playlist-manager.d.ts +208 -0
  519. package/dist/src/features/playlist/playlist-manager.d.ts.map +1 -0
  520. package/dist/src/features/playlist/playlist-manager.js +475 -0
  521. package/dist/src/features/playlist/playlist-manager.ts +606 -0
  522. package/dist/src/features/subtitles/subtitle-manager.d.ts +136 -0
  523. package/dist/src/features/subtitles/subtitle-manager.d.ts.map +1 -0
  524. package/dist/src/features/subtitles/subtitle-manager.js +335 -0
  525. package/dist/src/features/subtitles/subtitle-manager.ts +441 -0
  526. package/dist/src/features/subtitles/subtitle-parser.d.ts +60 -0
  527. package/dist/src/features/subtitles/subtitle-parser.d.ts.map +1 -0
  528. package/dist/src/features/subtitles/subtitle-parser.js +217 -0
  529. package/dist/src/features/subtitles/subtitle-parser.ts +280 -0
  530. package/dist/src/features/thumbnails/thumbnail-generator.d.ts +136 -0
  531. package/dist/src/features/thumbnails/thumbnail-generator.d.ts.map +1 -0
  532. package/dist/src/features/thumbnails/thumbnail-generator.js +388 -0
  533. package/dist/src/features/thumbnails/thumbnail-generator.ts +519 -0
  534. package/dist/src/hooks/accessibility/index.d.ts +5 -0
  535. package/dist/src/hooks/accessibility/index.d.ts.map +1 -0
  536. package/dist/src/hooks/accessibility/index.js +4 -0
  537. package/dist/src/hooks/accessibility/index.ts +27 -0
  538. package/dist/src/hooks/accessibility/use-accessibility-preferences.d.ts +14 -0
  539. package/dist/src/hooks/accessibility/use-accessibility-preferences.d.ts.map +1 -0
  540. package/dist/src/hooks/accessibility/use-accessibility-preferences.js +156 -0
  541. package/dist/src/hooks/accessibility/use-accessibility-preferences.ts +188 -0
  542. package/dist/src/hooks/accessibility/use-focus-management.d.ts +31 -0
  543. package/dist/src/hooks/accessibility/use-focus-management.d.ts.map +1 -0
  544. package/dist/src/hooks/accessibility/use-focus-management.js +142 -0
  545. package/dist/src/hooks/accessibility/use-focus-management.ts +176 -0
  546. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +38 -0
  547. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.d.ts.map +1 -0
  548. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.js +101 -0
  549. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.ts +144 -0
  550. package/dist/src/hooks/accessibility/use-screen-reader.d.ts +22 -0
  551. package/dist/src/hooks/accessibility/use-screen-reader.d.ts.map +1 -0
  552. package/dist/src/hooks/accessibility/use-screen-reader.js +148 -0
  553. package/dist/src/hooks/accessibility/use-screen-reader.ts +182 -0
  554. package/dist/src/hooks/core/index.d.ts +18 -0
  555. package/dist/src/hooks/core/index.d.ts.map +1 -0
  556. package/dist/src/hooks/core/index.js +19 -0
  557. package/dist/src/hooks/core/index.ts +47 -0
  558. package/dist/src/hooks/legacy.d.ts +18 -0
  559. package/dist/src/hooks/legacy.d.ts.map +1 -0
  560. package/dist/src/hooks/legacy.js +17 -0
  561. package/dist/src/hooks/legacy.ts +27 -0
  562. package/dist/src/hooks/use-enhanced-media-player.d.ts +88 -0
  563. package/dist/src/hooks/use-enhanced-media-player.d.ts.map +1 -0
  564. package/dist/src/hooks/use-enhanced-media-player.js +395 -0
  565. package/dist/src/hooks/use-enhanced-media-player.ts +468 -0
  566. package/dist/src/hooks/use-intelligent-preloading.d.ts +66 -0
  567. package/dist/src/hooks/use-intelligent-preloading.d.ts.map +1 -0
  568. package/dist/src/hooks/use-intelligent-preloading.js +258 -0
  569. package/dist/src/hooks/use-intelligent-preloading.ts +358 -0
  570. package/dist/src/hooks/use-keyboard-controls.d.ts +13 -0
  571. package/dist/src/hooks/use-keyboard-controls.d.ts.map +1 -0
  572. package/dist/src/hooks/use-keyboard-controls.js +83 -0
  573. package/dist/src/hooks/use-keyboard-controls.ts +115 -0
  574. package/dist/src/hooks/use-media-actions.d.ts +62 -0
  575. package/dist/src/hooks/use-media-actions.d.ts.map +1 -0
  576. package/dist/src/hooks/use-media-actions.js +121 -0
  577. package/dist/src/hooks/use-media-actions.ts +175 -0
  578. package/dist/src/hooks/use-media-metadata.d.ts +11 -0
  579. package/dist/src/hooks/use-media-metadata.d.ts.map +1 -0
  580. package/dist/src/hooks/use-media-metadata.js +74 -0
  581. package/dist/src/hooks/use-media-metadata.ts +89 -0
  582. package/dist/src/hooks/use-media-optimistic.d.ts +36 -0
  583. package/dist/src/hooks/use-media-optimistic.d.ts.map +1 -0
  584. package/dist/src/hooks/use-media-optimistic.js +205 -0
  585. package/dist/src/hooks/use-media-optimistic.ts +270 -0
  586. package/dist/src/hooks/use-media-player.d.ts +31 -0
  587. package/dist/src/hooks/use-media-player.d.ts.map +1 -0
  588. package/dist/src/hooks/use-media-player.js +251 -0
  589. package/dist/src/hooks/use-media-player.ts +312 -0
  590. package/dist/src/hooks/use-media-state.d.ts +17 -0
  591. package/dist/src/hooks/use-media-state.d.ts.map +1 -0
  592. package/dist/src/hooks/use-media-state.js +162 -0
  593. package/dist/src/hooks/use-media-state.ts +190 -0
  594. package/dist/src/hooks/use-memory-optimization.d.ts +40 -0
  595. package/dist/src/hooks/use-memory-optimization.d.ts.map +1 -0
  596. package/dist/src/hooks/use-memory-optimization.js +288 -0
  597. package/dist/src/hooks/use-memory-optimization.ts +358 -0
  598. package/dist/src/hooks/use-optimistic-controls.d.ts +22 -0
  599. package/dist/src/hooks/use-optimistic-controls.d.ts.map +1 -0
  600. package/dist/src/hooks/use-optimistic-controls.js +60 -0
  601. package/dist/src/hooks/use-optimistic-controls.ts +92 -0
  602. package/dist/src/hooks/use-optimized-media.d.ts +46 -0
  603. package/dist/src/hooks/use-optimized-media.d.ts.map +1 -0
  604. package/dist/src/hooks/use-optimized-media.js +211 -0
  605. package/dist/src/hooks/use-optimized-media.ts +263 -0
  606. package/dist/src/hooks/use-touch-gestures.d.ts +47 -0
  607. package/dist/src/hooks/use-touch-gestures.d.ts.map +1 -0
  608. package/dist/src/hooks/use-touch-gestures.js +289 -0
  609. package/dist/src/hooks/use-touch-gestures.ts +417 -0
  610. package/dist/src/hooks/useEnhancedSubtitles.d.ts +39 -0
  611. package/dist/src/hooks/useEnhancedSubtitles.d.ts.map +1 -0
  612. package/dist/src/hooks/useEnhancedSubtitles.js +205 -0
  613. package/dist/src/hooks/useEnhancedSubtitles.ts +258 -0
  614. package/dist/src/hooks/useKeyboardShortcuts.d.ts +10 -0
  615. package/dist/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  616. package/dist/src/hooks/useKeyboardShortcuts.js +59 -0
  617. package/dist/src/hooks/useKeyboardShortcuts.ts +74 -0
  618. package/dist/src/hooks/useMediaControls.d.ts +9 -0
  619. package/dist/src/hooks/useMediaControls.d.ts.map +1 -0
  620. package/dist/src/hooks/useMediaControls.js +44 -0
  621. package/dist/src/hooks/useMediaControls.ts +52 -0
  622. package/dist/src/hooks/useScreenshot.d.ts +4 -0
  623. package/dist/src/hooks/useScreenshot.d.ts.map +1 -0
  624. package/dist/src/hooks/useScreenshot.js +56 -0
  625. package/dist/src/hooks/useScreenshot.ts +57 -0
  626. package/dist/src/hooks/useSubtitles.d.ts +8 -0
  627. package/dist/src/hooks/useSubtitles.d.ts.map +1 -0
  628. package/dist/src/hooks/useSubtitles.js +73 -0
  629. package/dist/src/hooks/useSubtitles.ts +91 -0
  630. package/dist/src/hooks/useVideoPlayer.d.ts +32 -0
  631. package/dist/src/hooks/useVideoPlayer.d.ts.map +1 -0
  632. package/dist/src/hooks/useVideoPlayer.js +184 -0
  633. package/dist/src/hooks/useVideoPlayer.ts +232 -0
  634. package/dist/src/icons/components/FullscreenIcon.d.ts +3 -0
  635. package/dist/src/icons/components/FullscreenIcon.d.ts.map +1 -0
  636. package/dist/src/icons/components/FullscreenIcon.js +11 -0
  637. package/dist/src/icons/components/FullscreenIcon.tsx +37 -0
  638. package/dist/src/icons/components/SettingsIcon.d.ts +3 -0
  639. package/dist/src/icons/components/SettingsIcon.d.ts.map +1 -0
  640. package/dist/src/icons/components/SettingsIcon.js +11 -0
  641. package/dist/src/icons/components/SettingsIcon.tsx +38 -0
  642. package/dist/src/icons/components/animated/LoadingIcon.d.ts +3 -0
  643. package/dist/src/icons/components/animated/LoadingIcon.d.ts.map +1 -0
  644. package/dist/src/icons/components/animated/LoadingIcon.js +11 -0
  645. package/dist/src/icons/components/animated/LoadingIcon.tsx +43 -0
  646. package/dist/src/icons/components/animated/PlayPauseIcon.d.ts +7 -0
  647. package/dist/src/icons/components/animated/PlayPauseIcon.d.ts.map +1 -0
  648. package/dist/src/icons/components/animated/PlayPauseIcon.js +9 -0
  649. package/dist/src/icons/components/animated/PlayPauseIcon.tsx +50 -0
  650. package/dist/src/icons/components/media/PauseIcon.d.ts +3 -0
  651. package/dist/src/icons/components/media/PauseIcon.d.ts.map +1 -0
  652. package/dist/src/icons/components/media/PauseIcon.js +12 -0
  653. package/dist/src/icons/components/media/PauseIcon.tsx +39 -0
  654. package/dist/src/icons/components/media/PlayIcon.d.ts +3 -0
  655. package/dist/src/icons/components/media/PlayIcon.d.ts.map +1 -0
  656. package/dist/src/icons/components/media/PlayIcon.js +12 -0
  657. package/dist/src/icons/components/media/PlayIcon.tsx +38 -0
  658. package/dist/src/icons/components/volume/VolumeIcon.d.ts +3 -0
  659. package/dist/src/icons/components/volume/VolumeIcon.d.ts.map +1 -0
  660. package/dist/src/icons/components/volume/VolumeIcon.js +11 -0
  661. package/dist/src/icons/components/volume/VolumeIcon.tsx +39 -0
  662. package/dist/src/icons/components/volume/VolumeOffIcon.d.ts +3 -0
  663. package/dist/src/icons/components/volume/VolumeOffIcon.d.ts.map +1 -0
  664. package/dist/src/icons/components/volume/VolumeOffIcon.js +11 -0
  665. package/dist/src/icons/components/volume/VolumeOffIcon.tsx +39 -0
  666. package/dist/src/icons/index.d.ts +28 -0
  667. package/dist/src/icons/index.d.ts.map +1 -0
  668. package/dist/src/icons/index.js +45 -0
  669. package/dist/src/icons/index.ts +56 -0
  670. package/dist/src/icons/provider.d.ts +13 -0
  671. package/dist/src/icons/provider.d.ts.map +1 -0
  672. package/dist/src/icons/provider.js +37 -0
  673. package/dist/src/icons/provider.tsx +64 -0
  674. package/dist/src/icons/types.d.ts +18 -0
  675. package/dist/src/icons/types.d.ts.map +1 -0
  676. package/dist/src/icons/types.js +1 -0
  677. package/dist/src/icons/types.ts +40 -0
  678. package/dist/src/index-enhanced.d.ts +13 -0
  679. package/dist/src/index-enhanced.d.ts.map +1 -0
  680. package/dist/src/index-enhanced.js +16 -0
  681. package/dist/src/index-enhanced.ts +35 -0
  682. package/dist/src/index-legacy.d.ts +81 -0
  683. package/dist/src/index-legacy.d.ts.map +1 -0
  684. package/dist/src/index-legacy.js +97 -0
  685. package/dist/src/index-legacy.ts +326 -0
  686. package/dist/src/index.css +102 -0
  687. package/dist/src/index.d.ts +38 -0
  688. package/dist/src/index.d.ts.map +1 -0
  689. package/dist/src/index.js +90 -0
  690. package/dist/src/index.minimal.d.ts +2 -0
  691. package/dist/src/index.minimal.d.ts.map +1 -0
  692. package/dist/src/index.minimal.js +3 -0
  693. package/dist/src/index.minimal.ts +4 -0
  694. package/dist/src/index.ts +216 -0
  695. package/dist/src/lib/deprecation.d.ts +7 -0
  696. package/dist/src/lib/deprecation.d.ts.map +1 -0
  697. package/dist/src/lib/deprecation.js +31 -0
  698. package/dist/src/lib/deprecation.ts +51 -0
  699. package/dist/src/lib/format-time.d.ts +9 -0
  700. package/dist/src/lib/format-time.d.ts.map +1 -0
  701. package/dist/src/lib/format-time.js +32 -0
  702. package/dist/src/lib/format-time.ts +37 -0
  703. package/dist/src/lib/index.d.ts +3 -0
  704. package/dist/src/lib/index.d.ts.map +1 -0
  705. package/dist/src/lib/index.js +3 -0
  706. package/dist/src/lib/index.ts +3 -0
  707. package/dist/src/lib/utils.d.ts +3 -0
  708. package/dist/src/lib/utils.d.ts.map +1 -0
  709. package/dist/src/lib/utils.js +5 -0
  710. package/dist/src/lib/utils.ts +6 -0
  711. package/dist/src/styles/globals.css +462 -0
  712. package/dist/src/styles/minimal-player.css +589 -0
  713. package/dist/src/styles/pixel-art.css +46 -0
  714. package/dist/src/styles/videojs.css +100 -0
  715. package/dist/src/test/setup.d.ts +2 -0
  716. package/dist/src/test/setup.d.ts.map +1 -0
  717. package/dist/src/test/setup.js +65 -0
  718. package/dist/src/test/setup.ts +79 -0
  719. package/dist/src/types/events.d.ts +41 -0
  720. package/dist/src/types/events.d.ts.map +1 -0
  721. package/dist/src/types/events.js +2 -0
  722. package/dist/src/types/events.ts +47 -0
  723. package/dist/src/types/formats.d.ts +45 -0
  724. package/dist/src/types/formats.d.ts.map +1 -0
  725. package/dist/src/types/formats.js +63 -0
  726. package/dist/src/types/formats.ts +95 -0
  727. package/dist/src/types/index.d.ts +128 -0
  728. package/dist/src/types/index.d.ts.map +1 -0
  729. package/dist/src/types/index.js +4 -0
  730. package/dist/src/types/index.ts +190 -0
  731. package/dist/src/types/videojs-plugins.d.ts +14 -0
  732. package/package.json +7 -4
  733. package/src/adapters/videojs-adapter.d.ts +38 -0
  734. package/src/adapters/videojs-adapter.d.ts.map +1 -0
  735. package/src/adapters/videojs-adapter.js +350 -0
  736. package/src/components/AnimateLoading.d.ts +9 -0
  737. package/src/components/AnimateLoading.d.ts.map +1 -0
  738. package/src/components/AnimateLoading.js +41 -0
  739. package/src/components/LoadingState.d.ts +33 -0
  740. package/src/components/LoadingState.d.ts.map +1 -0
  741. package/src/components/LoadingState.js +111 -0
  742. package/src/components/accessibility/keyboard-help-overlay.d.ts +17 -0
  743. package/src/components/accessibility/keyboard-help-overlay.d.ts.map +1 -0
  744. package/src/components/accessibility/keyboard-help-overlay.js +90 -0
  745. package/src/components/audio-player.d.ts +3 -0
  746. package/src/components/audio-player.d.ts.map +1 -0
  747. package/src/components/audio-player.js +31 -0
  748. package/src/components/basic/index.d.ts +26 -0
  749. package/src/components/basic/index.d.ts.map +1 -0
  750. package/src/components/basic/index.js +29 -0
  751. package/src/components/enhanced/advanced-features.d.ts +45 -0
  752. package/src/components/enhanced/advanced-features.d.ts.map +1 -0
  753. package/src/components/enhanced/advanced-features.js +64 -0
  754. package/src/components/enhanced/debug-panel.d.ts +70 -0
  755. package/src/components/enhanced/debug-panel.d.ts.map +1 -0
  756. package/src/components/enhanced/debug-panel.js +94 -0
  757. package/src/components/enhanced/enhanced-controls.d.ts +50 -0
  758. package/src/components/enhanced/enhanced-controls.d.ts.map +1 -0
  759. package/src/components/enhanced/enhanced-controls.js +233 -0
  760. package/src/components/enhanced/enhanced-media-player.d.ts +26 -0
  761. package/src/components/enhanced/enhanced-media-player.d.ts.map +1 -0
  762. package/src/components/enhanced/enhanced-media-player.js +316 -0
  763. package/src/components/enhanced/error-handling.d.ts +36 -0
  764. package/src/components/enhanced/error-handling.d.ts.map +1 -0
  765. package/src/components/enhanced/error-handling.js +153 -0
  766. package/src/components/enhanced/index.d.ts +7 -0
  767. package/src/components/enhanced/index.d.ts.map +1 -0
  768. package/src/components/enhanced/index.js +10 -0
  769. package/src/components/enhanced/media-player-enhanced.d.ts +21 -0
  770. package/src/components/enhanced/media-player-enhanced.d.ts.map +1 -0
  771. package/src/components/enhanced/media-player-enhanced.js +250 -0
  772. package/src/components/examples/basic-video-player.d.ts +10 -0
  773. package/src/components/examples/basic-video-player.d.ts.map +1 -0
  774. package/src/components/examples/basic-video-player.js +16 -0
  775. package/src/components/examples/custom-controls-example.d.ts +10 -0
  776. package/src/components/examples/custom-controls-example.d.ts.map +1 -0
  777. package/src/components/examples/custom-controls-example.js +12 -0
  778. package/src/components/examples/enhanced-controls-example.d.ts +9 -0
  779. package/src/components/examples/enhanced-controls-example.d.ts.map +1 -0
  780. package/src/components/examples/enhanced-controls-example.js +18 -0
  781. package/src/components/examples/enhanced-media-player-example.d.ts +9 -0
  782. package/src/components/examples/enhanced-media-player-example.d.ts.map +1 -0
  783. package/src/components/examples/enhanced-media-player-example.js +13 -0
  784. package/src/components/examples/loading-states-demo.d.ts +2 -0
  785. package/src/components/examples/loading-states-demo.d.ts.map +1 -0
  786. package/src/components/examples/loading-states-demo.js +41 -0
  787. package/src/components/examples/react-19-demo.d.ts +10 -0
  788. package/src/components/examples/react-19-demo.d.ts.map +1 -0
  789. package/src/components/examples/react-19-demo.js +104 -0
  790. package/src/components/examples/volume-orientation-demo.d.ts +2 -0
  791. package/src/components/examples/volume-orientation-demo.d.ts.map +1 -0
  792. package/src/components/examples/volume-orientation-demo.js +31 -0
  793. package/src/components/icon-demo.d.ts +2 -0
  794. package/src/components/icon-demo.d.ts.map +1 -0
  795. package/src/components/icon-demo.js +16 -0
  796. package/src/components/icons/index.d.ts +36 -0
  797. package/src/components/icons/index.d.ts.map +1 -0
  798. package/src/components/icons/index.js +59 -0
  799. package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +4 -0
  800. package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts.map +1 -0
  801. package/src/components/icons/svg-icons/ArrowLeftIcon.js +3 -0
  802. package/src/components/icons/svg-icons/ArrowRightIcon.d.ts +4 -0
  803. package/src/components/icons/svg-icons/ArrowRightIcon.d.ts.map +1 -0
  804. package/src/components/icons/svg-icons/ArrowRightIcon.js +3 -0
  805. package/src/components/icons/svg-icons/AudioIcon.d.ts +4 -0
  806. package/src/components/icons/svg-icons/AudioIcon.d.ts.map +1 -0
  807. package/src/components/icons/svg-icons/AudioIcon.js +4 -0
  808. package/src/components/icons/svg-icons/BackwardIcon.d.ts +4 -0
  809. package/src/components/icons/svg-icons/BackwardIcon.d.ts.map +1 -0
  810. package/src/components/icons/svg-icons/BackwardIcon.js +3 -0
  811. package/src/components/icons/svg-icons/CameraIcon.d.ts +4 -0
  812. package/src/components/icons/svg-icons/CameraIcon.d.ts.map +1 -0
  813. package/src/components/icons/svg-icons/CameraIcon.js +4 -0
  814. package/src/components/icons/svg-icons/CheckIcon.d.ts +4 -0
  815. package/src/components/icons/svg-icons/CheckIcon.d.ts.map +1 -0
  816. package/src/components/icons/svg-icons/CheckIcon.js +4 -0
  817. package/src/components/icons/svg-icons/EnablePiPIcon.d.ts +4 -0
  818. package/src/components/icons/svg-icons/EnablePiPIcon.d.ts.map +1 -0
  819. package/src/components/icons/svg-icons/EnablePiPIcon.js +5 -0
  820. package/src/components/icons/svg-icons/ForwardIcon.d.ts +4 -0
  821. package/src/components/icons/svg-icons/ForwardIcon.d.ts.map +1 -0
  822. package/src/components/icons/svg-icons/ForwardIcon.js +3 -0
  823. package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +4 -0
  824. package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts.map +1 -0
  825. package/src/components/icons/svg-icons/FullscreenEnterIcon.js +3 -0
  826. package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +4 -0
  827. package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts.map +1 -0
  828. package/src/components/icons/svg-icons/FullscreenExitIcon.js +3 -0
  829. package/src/components/icons/svg-icons/LoadingIcon.d.ts +4 -0
  830. package/src/components/icons/svg-icons/LoadingIcon.d.ts.map +1 -0
  831. package/src/components/icons/svg-icons/LoadingIcon.js +3 -0
  832. package/src/components/icons/svg-icons/PauseIcon.d.ts +4 -0
  833. package/src/components/icons/svg-icons/PauseIcon.d.ts.map +1 -0
  834. package/src/components/icons/svg-icons/PauseIcon.js +3 -0
  835. package/src/components/icons/svg-icons/PlayIcon.d.ts +4 -0
  836. package/src/components/icons/svg-icons/PlayIcon.d.ts.map +1 -0
  837. package/src/components/icons/svg-icons/PlayIcon.js +3 -0
  838. package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +4 -0
  839. package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts.map +1 -0
  840. package/src/components/icons/svg-icons/PlaybackSpeedIcon.js +3 -0
  841. package/src/components/icons/svg-icons/QualityIcon.d.ts +4 -0
  842. package/src/components/icons/svg-icons/QualityIcon.d.ts.map +1 -0
  843. package/src/components/icons/svg-icons/QualityIcon.js +3 -0
  844. package/src/components/icons/svg-icons/SettingsIcon.d.ts +4 -0
  845. package/src/components/icons/svg-icons/SettingsIcon.d.ts.map +1 -0
  846. package/src/components/icons/svg-icons/SettingsIcon.js +3 -0
  847. package/src/components/icons/svg-icons/SliderIcon.d.ts +4 -0
  848. package/src/components/icons/svg-icons/SliderIcon.d.ts.map +1 -0
  849. package/src/components/icons/svg-icons/SliderIcon.js +3 -0
  850. package/src/components/icons/svg-icons/SubtitleIcon.d.ts +4 -0
  851. package/src/components/icons/svg-icons/SubtitleIcon.d.ts.map +1 -0
  852. package/src/components/icons/svg-icons/SubtitleIcon.js +3 -0
  853. package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +4 -0
  854. package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts.map +1 -0
  855. package/src/components/icons/svg-icons/SubtitleOffIcon.js +3 -0
  856. package/src/components/icons/svg-icons/UnPiPIcon.d.ts +4 -0
  857. package/src/components/icons/svg-icons/UnPiPIcon.d.ts.map +1 -0
  858. package/src/components/icons/svg-icons/UnPiPIcon.js +5 -0
  859. package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +4 -0
  860. package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts.map +1 -0
  861. package/src/components/icons/svg-icons/VolumeMutedIcon.js +3 -0
  862. package/src/components/icons/svg-icons/VolumeOneIcon.d.ts +4 -0
  863. package/src/components/icons/svg-icons/VolumeOneIcon.d.ts.map +1 -0
  864. package/src/components/icons/svg-icons/VolumeOneIcon.js +3 -0
  865. package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +4 -0
  866. package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts.map +1 -0
  867. package/src/components/icons/svg-icons/VolumeThreeIcon.js +3 -0
  868. package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +4 -0
  869. package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts.map +1 -0
  870. package/src/components/icons/svg-icons/VolumeTwoIcon.js +3 -0
  871. package/src/components/legacy.d.ts +13 -0
  872. package/src/components/legacy.d.ts.map +1 -0
  873. package/src/components/legacy.js +52 -0
  874. package/src/components/media-metadata-display.d.ts +11 -0
  875. package/src/components/media-metadata-display.d.ts.map +1 -0
  876. package/src/components/media-metadata-display.js +20 -0
  877. package/src/components/media-player-audio.d.ts +9 -0
  878. package/src/components/media-player-audio.d.ts.map +1 -0
  879. package/src/components/media-player-audio.js +18 -0
  880. package/src/components/media-player-controls.d.ts +23 -0
  881. package/src/components/media-player-controls.d.ts.map +1 -0
  882. package/src/components/media-player-controls.js +150 -0
  883. package/src/components/media-player-error.d.ts +16 -0
  884. package/src/components/media-player-error.d.ts.map +1 -0
  885. package/src/components/media-player-error.js +85 -0
  886. package/src/components/media-player-fullscreen.d.ts +12 -0
  887. package/src/components/media-player-fullscreen.d.ts.map +1 -0
  888. package/src/components/media-player-fullscreen.js +68 -0
  889. package/src/components/media-player-hls.d.ts +23 -0
  890. package/src/components/media-player-hls.d.ts.map +1 -0
  891. package/src/components/media-player-hls.js +20 -0
  892. package/src/components/media-player-loading.d.ts +12 -0
  893. package/src/components/media-player-loading.d.ts.map +1 -0
  894. package/src/components/media-player-loading.js +53 -0
  895. package/src/components/media-player-play.d.ts +11 -0
  896. package/src/components/media-player-play.d.ts.map +1 -0
  897. package/src/components/media-player-play.js +44 -0
  898. package/src/components/media-player-root.d.ts +28 -0
  899. package/src/components/media-player-root.d.ts.map +1 -0
  900. package/src/components/media-player-root.js +243 -0
  901. package/src/components/media-player-seek.d.ts +15 -0
  902. package/src/components/media-player-seek.d.ts.map +1 -0
  903. package/src/components/media-player-seek.js +92 -0
  904. package/src/components/media-player-time.d.ts +12 -0
  905. package/src/components/media-player-time.d.ts.map +1 -0
  906. package/src/components/media-player-time.js +57 -0
  907. package/src/components/media-player-tooltip.d.ts +13 -0
  908. package/src/components/media-player-tooltip.d.ts.map +1 -0
  909. package/src/components/media-player-tooltip.js +14 -0
  910. package/src/components/media-player-video.d.ts +9 -0
  911. package/src/components/media-player-video.d.ts.map +1 -0
  912. package/src/components/media-player-video.js +18 -0
  913. package/src/components/media-player-volume.d.ts +13 -0
  914. package/src/components/media-player-volume.d.ts.map +1 -0
  915. package/src/components/media-player-volume.js +88 -0
  916. package/src/components/media-player.d.ts +3 -0
  917. package/src/components/media-player.d.ts.map +1 -0
  918. package/src/components/media-player.js +67 -0
  919. package/src/components/media-suspense.d.ts +78 -0
  920. package/src/components/media-suspense.d.ts.map +1 -0
  921. package/src/components/media-suspense.js +173 -0
  922. package/src/components/player-settings-form.d.ts +8 -0
  923. package/src/components/player-settings-form.d.ts.map +1 -0
  924. package/src/components/player-settings-form.js +46 -0
  925. package/src/components/react-player-wrapper.d.ts +64 -0
  926. package/src/components/react-player-wrapper.d.ts.map +1 -0
  927. package/src/components/react-player-wrapper.js +163 -0
  928. package/src/components/simple-video-player.d.ts +9 -0
  929. package/src/components/simple-video-player.d.ts.map +1 -0
  930. package/src/components/simple-video-player.js +41 -0
  931. package/src/components/ui/enhanced-seek-bar.d.ts +3 -0
  932. package/src/components/ui/enhanced-seek-bar.d.ts.map +1 -0
  933. package/src/components/ui/enhanced-seek-bar.js +112 -0
  934. package/src/components/ui/fullscreen-button.d.ts +3 -0
  935. package/src/components/ui/fullscreen-button.d.ts.map +1 -0
  936. package/src/components/ui/fullscreen-button.js +21 -0
  937. package/src/components/ui/media-resource-preloader.d.ts +21 -0
  938. package/src/components/ui/media-resource-preloader.d.ts.map +1 -0
  939. package/src/components/ui/media-resource-preloader.js +295 -0
  940. package/src/components/ui/play-button.d.ts +3 -0
  941. package/src/components/ui/play-button.d.ts.map +1 -0
  942. package/src/components/ui/play-button.js +26 -0
  943. package/src/components/ui/seek-bar.d.ts +3 -0
  944. package/src/components/ui/seek-bar.d.ts.map +1 -0
  945. package/src/components/ui/seek-bar.js +54 -0
  946. package/src/components/ui/time-display.d.ts +3 -0
  947. package/src/components/ui/time-display.d.ts.map +1 -0
  948. package/src/components/ui/time-display.js +18 -0
  949. package/src/components/ui/volume-control.d.ts +3 -0
  950. package/src/components/ui/volume-control.d.ts.map +1 -0
  951. package/src/components/ui/volume-control.js +71 -0
  952. package/src/components/unified/base-media-player.d.ts +18 -0
  953. package/src/components/unified/base-media-player.d.ts.map +1 -0
  954. package/src/components/unified/base-media-player.js +104 -0
  955. package/src/components/unified/media-player.d.ts +37 -0
  956. package/src/components/unified/media-player.d.ts.map +1 -0
  957. package/src/components/unified/media-player.js +41 -0
  958. package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +42 -0
  959. package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts.map +1 -0
  960. package/src/components/variants/minimal/AccessibleMinimalPlayer.js +322 -0
  961. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +44 -0
  962. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts.map +1 -0
  963. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.js +280 -0
  964. package/src/components/variants/minimal/MinimalControls.d.ts +19 -0
  965. package/src/components/variants/minimal/MinimalControls.d.ts.map +1 -0
  966. package/src/components/variants/minimal/MinimalControls.js +19 -0
  967. package/src/components/variants/minimal/MinimalLoading.d.ts +10 -0
  968. package/src/components/variants/minimal/MinimalLoading.d.ts.map +1 -0
  969. package/src/components/variants/minimal/MinimalLoading.js +6 -0
  970. package/src/components/variants/minimal/MinimalMediaPlayer.d.ts +38 -0
  971. package/src/components/variants/minimal/MinimalMediaPlayer.d.ts.map +1 -0
  972. package/src/components/variants/minimal/MinimalMediaPlayer.js +135 -0
  973. package/src/components/variants/minimal/MinimalOverlay.d.ts +11 -0
  974. package/src/components/variants/minimal/MinimalOverlay.d.ts.map +1 -0
  975. package/src/components/variants/minimal/MinimalOverlay.js +15 -0
  976. package/src/components/variants/minimal/MinimalPlayButton.d.ts +9 -0
  977. package/src/components/variants/minimal/MinimalPlayButton.d.ts.map +1 -0
  978. package/src/components/variants/minimal/MinimalPlayButton.js +29 -0
  979. package/src/components/variants/minimal/MinimalSeekBar.d.ts +7 -0
  980. package/src/components/variants/minimal/MinimalSeekBar.d.ts.map +1 -0
  981. package/src/components/variants/minimal/MinimalSeekBar.js +73 -0
  982. package/src/components/variants/minimal/MinimalVolumeControl.d.ts +7 -0
  983. package/src/components/variants/minimal/MinimalVolumeControl.d.ts.map +1 -0
  984. package/src/components/variants/minimal/MinimalVolumeControl.js +29 -0
  985. package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +22 -0
  986. package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts.map +1 -0
  987. package/src/components/variants/minimal/SimpleMinimalPlayer.js +51 -0
  988. package/src/components/variants/minimal/SimpleMinimalPlayer.tsx +0 -1
  989. package/src/components/variants/minimal/components/CenterPlayButton.d.ts +7 -0
  990. package/src/components/variants/minimal/components/CenterPlayButton.d.ts.map +1 -0
  991. package/src/components/variants/minimal/components/CenterPlayButton.js +8 -0
  992. package/src/components/variants/minimal/components/ControlBar.d.ts +43 -0
  993. package/src/components/variants/minimal/components/ControlBar.d.ts.map +1 -0
  994. package/src/components/variants/minimal/components/ControlBar.js +10 -0
  995. package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +24 -0
  996. package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts.map +1 -0
  997. package/src/components/variants/minimal/components/EnhancedSettingsMenu.js +68 -0
  998. package/src/components/variants/minimal/components/PlaybackControls.d.ts +9 -0
  999. package/src/components/variants/minimal/components/PlaybackControls.d.ts.map +1 -0
  1000. package/src/components/variants/minimal/components/PlaybackControls.js +9 -0
  1001. package/src/components/variants/minimal/components/RightControls.d.ts +25 -0
  1002. package/src/components/variants/minimal/components/RightControls.d.ts.map +1 -0
  1003. package/src/components/variants/minimal/components/RightControls.js +40 -0
  1004. package/src/components/variants/minimal/components/SeekBar.d.ts +11 -0
  1005. package/src/components/variants/minimal/components/SeekBar.d.ts.map +1 -0
  1006. package/src/components/variants/minimal/components/SeekBar.js +43 -0
  1007. package/src/components/variants/minimal/components/SettingsDropdown.d.ts +9 -0
  1008. package/src/components/variants/minimal/components/SettingsDropdown.d.ts.map +1 -0
  1009. package/src/components/variants/minimal/components/SettingsDropdown.js +18 -0
  1010. package/src/components/variants/minimal/components/SubtitleDisplay.d.ts +7 -0
  1011. package/src/components/variants/minimal/components/SubtitleDisplay.d.ts.map +1 -0
  1012. package/src/components/variants/minimal/components/SubtitleDisplay.js +6 -0
  1013. package/src/components/variants/minimal/components/TimeDisplay.d.ts +7 -0
  1014. package/src/components/variants/minimal/components/TimeDisplay.d.ts.map +1 -0
  1015. package/src/components/variants/minimal/components/TimeDisplay.js +5 -0
  1016. package/src/components/variants/minimal/components/VideoElement.d.ts +13 -0
  1017. package/src/components/variants/minimal/components/VideoElement.d.ts.map +1 -0
  1018. package/src/components/variants/minimal/components/VideoElement.js +4 -0
  1019. package/src/components/variants/minimal/components/VolumeControl.d.ts +13 -0
  1020. package/src/components/variants/minimal/components/VolumeControl.d.ts.map +1 -0
  1021. package/src/components/variants/minimal/components/VolumeControl.js +99 -0
  1022. package/src/components/variants/minimal/index.d.ts +17 -0
  1023. package/src/components/variants/minimal/index.d.ts.map +1 -0
  1024. package/src/components/variants/minimal/index.js +8 -0
  1025. package/src/components/video-player.d.ts +3 -0
  1026. package/src/components/video-player.d.ts.map +1 -0
  1027. package/src/components/video-player.js +38 -0
  1028. package/src/context/error-handling.d.ts +72 -0
  1029. package/src/context/error-handling.d.ts.map +1 -0
  1030. package/src/context/error-handling.js +300 -0
  1031. package/src/context/media-context.d.ts +104 -0
  1032. package/src/context/media-context.d.ts.map +1 -0
  1033. package/src/context/media-context.js +121 -0
  1034. package/src/context/media-provider.d.ts +26 -0
  1035. package/src/context/media-provider.d.ts.map +1 -0
  1036. package/src/context/media-provider.js +164 -0
  1037. package/src/context/media-store.d.ts +33 -0
  1038. package/src/context/media-store.d.ts.map +1 -0
  1039. package/src/context/media-store.js +273 -0
  1040. package/src/context/persistence.d.ts +83 -0
  1041. package/src/context/persistence.d.ts.map +1 -0
  1042. package/src/context/persistence.js +356 -0
  1043. package/src/core/events/event-system.d.ts +170 -0
  1044. package/src/core/events/event-system.d.ts.map +1 -0
  1045. package/src/core/events/event-system.js +288 -0
  1046. package/src/core/events/hooks.d.ts +33 -0
  1047. package/src/core/events/hooks.d.ts.map +1 -0
  1048. package/src/core/events/hooks.js +198 -0
  1049. package/src/core/events/index.d.ts +6 -0
  1050. package/src/core/events/index.d.ts.map +1 -0
  1051. package/src/core/events/index.js +7 -0
  1052. package/src/core/events/middleware.d.ts +39 -0
  1053. package/src/core/events/middleware.d.ts.map +1 -0
  1054. package/src/core/events/middleware.js +219 -0
  1055. package/src/core/index.d.ts +8 -0
  1056. package/src/core/index.d.ts.map +1 -0
  1057. package/src/core/index.js +15 -0
  1058. package/src/core/optimization/bundle-optimizer.d.ts +44 -0
  1059. package/src/core/optimization/bundle-optimizer.d.ts.map +1 -0
  1060. package/src/core/optimization/bundle-optimizer.js +217 -0
  1061. package/src/core/performance/cicd.d.ts +8 -0
  1062. package/src/core/performance/cicd.d.ts.map +1 -0
  1063. package/src/core/performance/cicd.js +83 -0
  1064. package/src/core/performance/index.d.ts +10 -0
  1065. package/src/core/performance/index.d.ts.map +1 -0
  1066. package/src/core/performance/index.js +14 -0
  1067. package/src/core/performance/media-loading-optimizer.d.ts +105 -0
  1068. package/src/core/performance/media-loading-optimizer.d.ts.map +1 -0
  1069. package/src/core/performance/media-loading-optimizer.js +404 -0
  1070. package/src/core/performance/performance-budgets.d.ts +68 -0
  1071. package/src/core/performance/performance-budgets.d.ts.map +1 -0
  1072. package/src/core/performance/performance-budgets.js +326 -0
  1073. package/src/core/performance/performance-monitor.d.ts +95 -0
  1074. package/src/core/performance/performance-monitor.d.ts.map +1 -0
  1075. package/src/core/performance/performance-monitor.js +297 -0
  1076. package/src/core/performance/performance-testing.d.ts +69 -0
  1077. package/src/core/performance/performance-testing.d.ts.map +1 -0
  1078. package/src/core/performance/performance-testing.js +314 -0
  1079. package/src/core/plugins/base-plugin.d.ts +52 -0
  1080. package/src/core/plugins/base-plugin.d.ts.map +1 -0
  1081. package/src/core/plugins/base-plugin.js +151 -0
  1082. package/src/core/plugins/enhanced-plugin-system.d.ts +160 -0
  1083. package/src/core/plugins/enhanced-plugin-system.d.ts.map +1 -0
  1084. package/src/core/plugins/enhanced-plugin-system.js +305 -0
  1085. package/src/core/plugins/examples/analytics-plugin.d.ts +30 -0
  1086. package/src/core/plugins/examples/analytics-plugin.d.ts.map +1 -0
  1087. package/src/core/plugins/examples/analytics-plugin.js +191 -0
  1088. package/src/core/plugins/index.d.ts +8 -0
  1089. package/src/core/plugins/index.d.ts.map +1 -0
  1090. package/src/core/plugins/index.js +9 -0
  1091. package/src/core/plugins/registry.d.ts +31 -0
  1092. package/src/core/plugins/registry.d.ts.map +1 -0
  1093. package/src/core/plugins/registry.js +261 -0
  1094. package/src/core/plugins/types.d.ts +101 -0
  1095. package/src/core/plugins/types.d.ts.map +1 -0
  1096. package/src/core/plugins/types.js +31 -0
  1097. package/src/core/plugins/utils.d.ts +38 -0
  1098. package/src/core/plugins/utils.d.ts.map +1 -0
  1099. package/src/core/plugins/utils.js +274 -0
  1100. package/src/core/progressive-loading.d.ts +88 -0
  1101. package/src/core/progressive-loading.d.ts.map +1 -0
  1102. package/src/core/progressive-loading.js +239 -0
  1103. package/src/core/providers/enhanced-hls-provider.d.ts +50 -0
  1104. package/src/core/providers/enhanced-hls-provider.d.ts.map +1 -0
  1105. package/src/core/providers/enhanced-hls-provider.js +273 -0
  1106. package/src/core/providers/service-provider.d.ts +49 -0
  1107. package/src/core/providers/service-provider.d.ts.map +1 -0
  1108. package/src/core/providers/service-provider.js +105 -0
  1109. package/src/core/utils.d.ts +25 -0
  1110. package/src/core/utils.d.ts.map +1 -0
  1111. package/src/core/utils.js +21 -0
  1112. package/src/features/media-session/media-session-manager.d.ts +132 -0
  1113. package/src/features/media-session/media-session-manager.d.ts.map +1 -0
  1114. package/src/features/media-session/media-session-manager.js +331 -0
  1115. package/src/features/picture-in-picture/pip-manager.d.ts +94 -0
  1116. package/src/features/picture-in-picture/pip-manager.d.ts.map +1 -0
  1117. package/src/features/picture-in-picture/pip-manager.js +353 -0
  1118. package/src/features/playlist/playlist-manager.d.ts +208 -0
  1119. package/src/features/playlist/playlist-manager.d.ts.map +1 -0
  1120. package/src/features/playlist/playlist-manager.js +475 -0
  1121. package/src/features/subtitles/subtitle-manager.d.ts +136 -0
  1122. package/src/features/subtitles/subtitle-manager.d.ts.map +1 -0
  1123. package/src/features/subtitles/subtitle-manager.js +335 -0
  1124. package/src/features/subtitles/subtitle-parser.d.ts +60 -0
  1125. package/src/features/subtitles/subtitle-parser.d.ts.map +1 -0
  1126. package/src/features/subtitles/subtitle-parser.js +217 -0
  1127. package/src/features/thumbnails/thumbnail-generator.d.ts +136 -0
  1128. package/src/features/thumbnails/thumbnail-generator.d.ts.map +1 -0
  1129. package/src/features/thumbnails/thumbnail-generator.js +388 -0
  1130. package/src/hooks/accessibility/index.d.ts +5 -0
  1131. package/src/hooks/accessibility/index.d.ts.map +1 -0
  1132. package/src/hooks/accessibility/index.js +4 -0
  1133. package/src/hooks/accessibility/use-accessibility-preferences.d.ts +14 -0
  1134. package/src/hooks/accessibility/use-accessibility-preferences.d.ts.map +1 -0
  1135. package/src/hooks/accessibility/use-accessibility-preferences.js +156 -0
  1136. package/src/hooks/accessibility/use-focus-management.d.ts +31 -0
  1137. package/src/hooks/accessibility/use-focus-management.d.ts.map +1 -0
  1138. package/src/hooks/accessibility/use-focus-management.js +142 -0
  1139. package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +38 -0
  1140. package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts.map +1 -0
  1141. package/src/hooks/accessibility/use-keyboard-shortcuts.js +101 -0
  1142. package/src/hooks/accessibility/use-screen-reader.d.ts +22 -0
  1143. package/src/hooks/accessibility/use-screen-reader.d.ts.map +1 -0
  1144. package/src/hooks/accessibility/use-screen-reader.js +148 -0
  1145. package/src/hooks/core/index.d.ts +18 -0
  1146. package/src/hooks/core/index.d.ts.map +1 -0
  1147. package/src/hooks/core/index.js +19 -0
  1148. package/src/hooks/legacy.d.ts +18 -0
  1149. package/src/hooks/legacy.d.ts.map +1 -0
  1150. package/src/hooks/legacy.js +17 -0
  1151. package/src/hooks/use-enhanced-media-player.d.ts +88 -0
  1152. package/src/hooks/use-enhanced-media-player.d.ts.map +1 -0
  1153. package/src/hooks/use-enhanced-media-player.js +395 -0
  1154. package/src/hooks/use-intelligent-preloading.d.ts +66 -0
  1155. package/src/hooks/use-intelligent-preloading.d.ts.map +1 -0
  1156. package/src/hooks/use-intelligent-preloading.js +258 -0
  1157. package/src/hooks/use-keyboard-controls.d.ts +13 -0
  1158. package/src/hooks/use-keyboard-controls.d.ts.map +1 -0
  1159. package/src/hooks/use-keyboard-controls.js +83 -0
  1160. package/src/hooks/use-media-actions.d.ts +62 -0
  1161. package/src/hooks/use-media-actions.d.ts.map +1 -0
  1162. package/src/hooks/use-media-actions.js +121 -0
  1163. package/src/hooks/use-media-metadata.d.ts +11 -0
  1164. package/src/hooks/use-media-metadata.d.ts.map +1 -0
  1165. package/src/hooks/use-media-metadata.js +74 -0
  1166. package/src/hooks/use-media-optimistic.d.ts +36 -0
  1167. package/src/hooks/use-media-optimistic.d.ts.map +1 -0
  1168. package/src/hooks/use-media-optimistic.js +205 -0
  1169. package/src/hooks/use-media-player.d.ts +31 -0
  1170. package/src/hooks/use-media-player.d.ts.map +1 -0
  1171. package/src/hooks/use-media-player.js +251 -0
  1172. package/src/hooks/use-media-state.d.ts +17 -0
  1173. package/src/hooks/use-media-state.d.ts.map +1 -0
  1174. package/src/hooks/use-media-state.js +162 -0
  1175. package/src/hooks/use-memory-optimization.d.ts +40 -0
  1176. package/src/hooks/use-memory-optimization.d.ts.map +1 -0
  1177. package/src/hooks/use-memory-optimization.js +288 -0
  1178. package/src/hooks/use-optimistic-controls.d.ts +22 -0
  1179. package/src/hooks/use-optimistic-controls.d.ts.map +1 -0
  1180. package/src/hooks/use-optimistic-controls.js +60 -0
  1181. package/src/hooks/use-optimized-media.d.ts +46 -0
  1182. package/src/hooks/use-optimized-media.d.ts.map +1 -0
  1183. package/src/hooks/use-optimized-media.js +211 -0
  1184. package/src/hooks/use-touch-gestures.d.ts +47 -0
  1185. package/src/hooks/use-touch-gestures.d.ts.map +1 -0
  1186. package/src/hooks/use-touch-gestures.js +289 -0
  1187. package/src/hooks/useEnhancedSubtitles.d.ts +39 -0
  1188. package/src/hooks/useEnhancedSubtitles.d.ts.map +1 -0
  1189. package/src/hooks/useEnhancedSubtitles.js +205 -0
  1190. package/src/hooks/useKeyboardShortcuts.d.ts +10 -0
  1191. package/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  1192. package/src/hooks/useKeyboardShortcuts.js +59 -0
  1193. package/src/hooks/useMediaControls.d.ts +9 -0
  1194. package/src/hooks/useMediaControls.d.ts.map +1 -0
  1195. package/src/hooks/useMediaControls.js +44 -0
  1196. package/src/hooks/useScreenshot.d.ts +4 -0
  1197. package/src/hooks/useScreenshot.d.ts.map +1 -0
  1198. package/src/hooks/useScreenshot.js +56 -0
  1199. package/src/hooks/useSubtitles.d.ts +8 -0
  1200. package/src/hooks/useSubtitles.d.ts.map +1 -0
  1201. package/src/hooks/useSubtitles.js +73 -0
  1202. package/src/hooks/useVideoPlayer.d.ts +32 -0
  1203. package/src/hooks/useVideoPlayer.d.ts.map +1 -0
  1204. package/src/hooks/useVideoPlayer.js +184 -0
  1205. package/src/icons/components/FullscreenIcon.d.ts +3 -0
  1206. package/src/icons/components/FullscreenIcon.d.ts.map +1 -0
  1207. package/src/icons/components/FullscreenIcon.js +11 -0
  1208. package/src/icons/components/SettingsIcon.d.ts +3 -0
  1209. package/src/icons/components/SettingsIcon.d.ts.map +1 -0
  1210. package/src/icons/components/SettingsIcon.js +11 -0
  1211. package/src/icons/components/animated/LoadingIcon.d.ts +3 -0
  1212. package/src/icons/components/animated/LoadingIcon.d.ts.map +1 -0
  1213. package/src/icons/components/animated/LoadingIcon.js +11 -0
  1214. package/src/icons/components/animated/PlayPauseIcon.d.ts +7 -0
  1215. package/src/icons/components/animated/PlayPauseIcon.d.ts.map +1 -0
  1216. package/src/icons/components/animated/PlayPauseIcon.js +9 -0
  1217. package/src/icons/components/media/PauseIcon.d.ts +3 -0
  1218. package/src/icons/components/media/PauseIcon.d.ts.map +1 -0
  1219. package/src/icons/components/media/PauseIcon.js +12 -0
  1220. package/src/icons/components/media/PlayIcon.d.ts +3 -0
  1221. package/src/icons/components/media/PlayIcon.d.ts.map +1 -0
  1222. package/src/icons/components/media/PlayIcon.js +12 -0
  1223. package/src/icons/components/volume/VolumeIcon.d.ts +3 -0
  1224. package/src/icons/components/volume/VolumeIcon.d.ts.map +1 -0
  1225. package/src/icons/components/volume/VolumeIcon.js +11 -0
  1226. package/src/icons/components/volume/VolumeOffIcon.d.ts +3 -0
  1227. package/src/icons/components/volume/VolumeOffIcon.d.ts.map +1 -0
  1228. package/src/icons/components/volume/VolumeOffIcon.js +11 -0
  1229. package/src/icons/index.d.ts +28 -0
  1230. package/src/icons/index.d.ts.map +1 -0
  1231. package/src/icons/index.js +45 -0
  1232. package/src/icons/provider.d.ts +13 -0
  1233. package/src/icons/provider.d.ts.map +1 -0
  1234. package/src/icons/provider.js +37 -0
  1235. package/src/icons/types.d.ts +18 -0
  1236. package/src/icons/types.d.ts.map +1 -0
  1237. package/src/icons/types.js +1 -0
  1238. package/src/index-enhanced.d.ts +13 -0
  1239. package/src/index-enhanced.d.ts.map +1 -0
  1240. package/src/index-enhanced.js +16 -0
  1241. package/src/index-legacy.d.ts +81 -0
  1242. package/src/index-legacy.d.ts.map +1 -0
  1243. package/src/index-legacy.js +97 -0
  1244. package/src/index.d.ts +38 -0
  1245. package/src/index.d.ts.map +1 -0
  1246. package/src/index.js +90 -0
  1247. package/src/index.minimal.d.ts +2 -0
  1248. package/src/index.minimal.d.ts.map +1 -0
  1249. package/src/index.minimal.js +3 -0
  1250. package/src/index.minimal.ts +4 -0
  1251. package/src/lib/deprecation.d.ts +7 -0
  1252. package/src/lib/deprecation.d.ts.map +1 -0
  1253. package/src/lib/deprecation.js +31 -0
  1254. package/src/lib/format-time.d.ts +9 -0
  1255. package/src/lib/format-time.d.ts.map +1 -0
  1256. package/src/lib/format-time.js +32 -0
  1257. package/src/lib/index.d.ts +3 -0
  1258. package/src/lib/index.d.ts.map +1 -0
  1259. package/src/lib/index.js +3 -0
  1260. package/src/lib/utils.d.ts +3 -0
  1261. package/src/lib/utils.d.ts.map +1 -0
  1262. package/src/lib/utils.js +5 -0
  1263. package/src/test/setup.d.ts +2 -0
  1264. package/src/test/setup.d.ts.map +1 -0
  1265. package/src/test/setup.js +65 -0
  1266. package/src/types/events.d.ts +41 -0
  1267. package/src/types/events.d.ts.map +1 -0
  1268. package/src/types/events.js +2 -0
  1269. package/src/types/formats.d.ts +45 -0
  1270. package/src/types/formats.d.ts.map +1 -0
  1271. package/src/types/formats.js +63 -0
  1272. package/src/types/index.d.ts +128 -0
  1273. package/src/types/index.d.ts.map +1 -0
  1274. package/src/types/index.js +4 -0
  1275. package/dist/context/media.js +0 -2
  1276. package/dist/context/media.js.map +0 -1
  1277. package/dist/context/media.mjs +0 -15
  1278. package/dist/context/media.mjs.map +0 -1
  1279. package/dist/context/store.js +0 -2
  1280. package/dist/context/store.js.map +0 -1
  1281. package/dist/context/store.mjs +0 -5
  1282. package/dist/context/store.mjs.map +0 -1
  1283. package/dist/context-BMteAJDN.js +0 -1140
  1284. package/dist/context-BMteAJDN.js.map +0 -1
  1285. package/dist/context-DCJ_scmO.cjs +0 -23
  1286. package/dist/context-DCJ_scmO.cjs.map +0 -1
  1287. package/dist/core-events-B5W_j8yU.js +0 -480
  1288. package/dist/core-events-B5W_j8yU.js.map +0 -1
  1289. package/dist/core-events-CN0-Vhhq.cjs +0 -2
  1290. package/dist/core-events-CN0-Vhhq.cjs.map +0 -1
  1291. package/dist/core-plugins-Bq9KLany.js +0 -696
  1292. package/dist/core-plugins-Bq9KLany.js.map +0 -1
  1293. package/dist/core-plugins-CPDSHMiQ.cjs +0 -2
  1294. package/dist/core-plugins-CPDSHMiQ.cjs.map +0 -1
  1295. package/dist/core.js +0 -37
  1296. package/dist/core.js.map +0 -1
  1297. package/dist/core.mjs +0 -1217
  1298. package/dist/core.mjs.map +0 -1
  1299. package/dist/enhanced-components-DHv0MFvG.js +0 -1073
  1300. package/dist/enhanced-components-DHv0MFvG.js.map +0 -1
  1301. package/dist/enhanced-components-DTIObgB7.cjs +0 -2
  1302. package/dist/enhanced-components-DTIObgB7.cjs.map +0 -1
  1303. package/dist/hooks-C_r8wexn.cjs +0 -4
  1304. package/dist/hooks-C_r8wexn.cjs.map +0 -1
  1305. package/dist/hooks-Da2wVXlF.js +0 -1630
  1306. package/dist/hooks-Da2wVXlF.js.map +0 -1
  1307. package/dist/index.js.map +0 -1
  1308. package/dist/index.mjs.map +0 -1
  1309. package/dist/minimal-components-DSq5sQpy.js +0 -2002
  1310. package/dist/minimal-components-DSq5sQpy.js.map +0 -1
  1311. package/dist/minimal-components-DflWiihN.cjs +0 -2
  1312. package/dist/minimal-components-DflWiihN.cjs.map +0 -1
  1313. package/dist/minimal-components.css +0 -1
  1314. package/dist/performance-monitor-CUW6f5ll.cjs +0 -2
  1315. package/dist/performance-monitor-CUW6f5ll.cjs.map +0 -1
  1316. package/dist/performance-monitor-rMW1RgV3.js +0 -302
  1317. package/dist/performance-monitor-rMW1RgV3.js.map +0 -1
  1318. package/dist/utils-BnscpYYd.js +0 -2798
  1319. package/dist/utils-BnscpYYd.js.map +0 -1
  1320. package/dist/utils-D_czS_0K.cjs +0 -9
  1321. package/dist/utils-D_czS_0K.cjs.map +0 -1
  1322. package/dist/utils.js +0 -2
  1323. package/dist/utils.js.map +0 -1
  1324. package/dist/utils.mjs +0 -7
  1325. package/dist/utils.mjs.map +0 -1
  1326. /package/dist/{mona-loading.gif → src/assets/mona-loading.gif} +0 -0
@@ -0,0 +1,166 @@
1
+ "use client"
2
+
3
+ import React from "react"
4
+ import BackwardIcon from "./svg-icons/BackwardIcon"
5
+ import CameraIcon from "./svg-icons/CameraIcon"
6
+ import ForwardIcon from "./svg-icons/ForwardIcon"
7
+ import FullscreenEnterIcon from "./svg-icons/FullscreenEnterIcon"
8
+ import FullscreenExitIcon from "./svg-icons/FullscreenExitIcon"
9
+ import LoadingIcon from "./svg-icons/LoadingIcon"
10
+ import PauseIcon from "./svg-icons/PauseIcon"
11
+ import PlayIcon from "./svg-icons/PlayIcon"
12
+ import PlaybackSpeedIcon from "./svg-icons/PlaybackSpeedIcon"
13
+ import SettingsIcon from "./svg-icons/SettingsIcon"
14
+ import SubtitleIconSVG from "./svg-icons/SubtitleIcon"
15
+ import VolumeMutedIcon from "./svg-icons/VolumeMutedIcon"
16
+ import VolumeOneIcon from "./svg-icons/VolumeOneIcon"
17
+ import VolumeThreeIcon from "./svg-icons/VolumeThreeIcon"
18
+ import VolumeTwoIcon from "./svg-icons/VolumeTwoIcon"
19
+
20
+ export interface IconProps {
21
+ size?: number
22
+ className?: string
23
+ color?: string
24
+ }
25
+
26
+ // Minimal Play Icon
27
+ export const MinimalPlayIcon: React.FC<IconProps> = ({
28
+ size = 24,
29
+ className = "",
30
+ color = "currentColor"
31
+ }) => <PlayIcon width={size} height={size} className={className} style={{ color }} />
32
+
33
+ // Minimal Pause Icon
34
+ export const MinimalPauseIcon: React.FC<IconProps> = ({
35
+ size = 24,
36
+ className = "",
37
+ color = "currentColor"
38
+ }) => <PauseIcon width={size} height={size} className={className} style={{ color }} />
39
+
40
+ // Minimal Volume Icon
41
+ export const MinimalVolumeIcon: React.FC<IconProps> = ({
42
+ size = 24,
43
+ className = "",
44
+ color = "currentColor"
45
+ }) => <VolumeTwoIcon width={size} height={size} className={className} style={{ color }} />
46
+
47
+ // Minimal Volume Muted Icon
48
+ export const MinimalVolumeMutedIcon: React.FC<IconProps> = ({
49
+ size = 24,
50
+ className = "",
51
+ color = "currentColor"
52
+ }) => <VolumeMutedIcon width={size} height={size} className={className} style={{ color }} />
53
+
54
+ // Minimal Fullscreen Icon
55
+ export const MinimalFullscreenIcon: React.FC<IconProps> = ({
56
+ size = 24,
57
+ className = "",
58
+ color = "currentColor"
59
+ }) => <FullscreenEnterIcon width={size} height={size} className={className} style={{ color }} />
60
+
61
+ // Minimal Exit Fullscreen Icon
62
+ export const MinimalExitFullscreenIcon: React.FC<IconProps> = ({
63
+ size = 24,
64
+ className = "",
65
+ color = "currentColor"
66
+ }) => <FullscreenExitIcon width={size} height={size} className={className} style={{ color }} />
67
+
68
+ // Minimal Settings Icon
69
+ export const MinimalSettingsIcon: React.FC<IconProps> = ({
70
+ size = 24,
71
+ className = "",
72
+ color = "currentColor"
73
+ }) => <SettingsIcon width={size} height={size} className={className} style={{ color }} />
74
+
75
+ // Minimal Loading Spinner
76
+ export const MinimalSpinner: React.FC<IconProps> = ({
77
+ size = 24,
78
+ className = "",
79
+ color = "currentColor"
80
+ }) => (
81
+ <LoadingIcon
82
+ width={size}
83
+ height={size}
84
+ className={`animate-spin ${className}`}
85
+ style={{ color }}
86
+ />
87
+ )
88
+
89
+ // Minimal Forward Icon (using backward design)
90
+ export const MinimalForwardIcon: React.FC<IconProps> = ({
91
+ size = 24,
92
+ className = "",
93
+ color = "currentColor"
94
+ }) => <BackwardIcon width={size} height={size} className={className} style={{ color }} />
95
+
96
+ // Minimal Backward Icon
97
+ export const MinimalBackwardIcon: React.FC<IconProps> = ({
98
+ size = 24,
99
+ className = "",
100
+ color = "currentColor"
101
+ }) => <ForwardIcon width={size} height={size} className={className} style={{ color }} />
102
+
103
+ // Forward 10 seconds icon
104
+ export const MinimalForward10Icon: React.FC<IconProps> = ({
105
+ size = 24,
106
+ className = "",
107
+ color = "currentColor"
108
+ }) => <ForwardIcon width={size} height={size} className={className} style={{ color }} />
109
+
110
+ // Backward 10 seconds icon
111
+ export const MinimalBackward10Icon: React.FC<IconProps> = ({
112
+ size = 24,
113
+ className = "",
114
+ color = "currentColor"
115
+ }) => <BackwardIcon width={size} height={size} className={className} style={{ color }} />
116
+
117
+ // Subtitle/Caption icon
118
+ export const MinimalSubtitleIcon: React.FC<IconProps> = ({
119
+ size = 24,
120
+ className = "",
121
+ color = "currentColor"
122
+ }) => <SubtitleIconSVG width={size} height={size} className={className} style={{ color }} />
123
+
124
+ // Screenshot/Camera icon
125
+ export const MinimalScreenshotIcon: React.FC<IconProps> = ({
126
+ size = 24,
127
+ className = "",
128
+ color = "currentColor"
129
+ }) => <CameraIcon width={size} height={size} className={className} style={{ color }} />
130
+
131
+ // Speed icon
132
+ export const MinimalSpeedIcon: React.FC<IconProps> = ({
133
+ size = 24,
134
+ className = "",
135
+ color = "currentColor"
136
+ }) => <PlaybackSpeedIcon width={size} height={size} className={className} style={{ color }} />
137
+
138
+ // Icon Set Type
139
+ export interface IconSet {
140
+ play?: React.FC<IconProps>
141
+ pause?: React.FC<IconProps>
142
+ volume?: React.FC<IconProps>
143
+ volumeMuted?: React.FC<IconProps>
144
+ fullscreen?: React.FC<IconProps>
145
+ exitFullscreen?: React.FC<IconProps>
146
+ settings?: React.FC<IconProps>
147
+ forward?: React.FC<IconProps>
148
+ backward?: React.FC<IconProps>
149
+ spinner?: React.FC<IconProps>
150
+ subtitle?: React.FC<IconProps>
151
+ }
152
+
153
+ // Default Icon Set
154
+ export const defaultMinimalIcons: IconSet = {
155
+ play: MinimalPlayIcon,
156
+ pause: MinimalPauseIcon,
157
+ volume: MinimalVolumeIcon,
158
+ volumeMuted: MinimalVolumeMutedIcon,
159
+ fullscreen: MinimalFullscreenIcon,
160
+ exitFullscreen: MinimalExitFullscreenIcon,
161
+ settings: MinimalSettingsIcon,
162
+ forward: MinimalForwardIcon,
163
+ backward: MinimalBackwardIcon,
164
+ spinner: MinimalSpinner,
165
+ subtitle: MinimalSubtitleIcon
166
+ }
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const ArrowLeftIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ArrowLeftIcon;
4
+ //# sourceMappingURL=ArrowLeftIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowLeftIcon.d.ts","sourceRoot":"","sources":["ArrowLeftIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAEhC,QAAA,MAAM,aAAa,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAYpD,CAAA;AAED,eAAe,aAAa,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ArrowLeftIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', "aria-hidden": 'true', className: 'iconify iconify--ic', width: '24', height: '24', viewBox: '0 0 24 24', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fill: 'currentColor', d: 'M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z' }) }));
3
+ export default ArrowLeftIcon;
@@ -0,0 +1,18 @@
1
+ import React from 'react'
2
+ import { SVGProps } from 'react'
3
+
4
+ const ArrowLeftIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns='http://www.w3.org/2000/svg'
7
+ aria-hidden='true'
8
+ className='iconify iconify--ic'
9
+ width='24'
10
+ height='24'
11
+ viewBox='0 0 24 24'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path fill='currentColor' d='M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z' />
15
+ </svg>
16
+ )
17
+
18
+ export default ArrowLeftIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const ArrowRightIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ArrowRightIcon;
4
+ //# sourceMappingURL=ArrowRightIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArrowRightIcon.d.ts","sourceRoot":"","sources":["ArrowRightIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,cAAc,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAYrD,CAAA;AAED,eAAe,cAAc,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ArrowRightIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', "aria-hidden": 'true', className: 'iconify iconify--ic', width: '24', height: '24', viewBox: '0 0 24 24', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fill: 'currentColor', d: 'M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z' }) }));
3
+ export default ArrowRightIcon;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const ArrowRightIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns='http://www.w3.org/2000/svg'
7
+ aria-hidden='true'
8
+ className='iconify iconify--ic'
9
+ width='24'
10
+ height='24'
11
+ viewBox='0 0 24 24'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path fill='currentColor' d='M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z' />
15
+ </svg>
16
+ )
17
+
18
+ export default ArrowRightIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const Memo: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Memo;
4
+ //# sourceMappingURL=AudioIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AudioIcon.d.ts","sourceRoot":"","sources":["AudioIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAmBtC,QAAA,MAAM,IAAI,UAjBgB,QAAQ,CAAC,aAAa,CAAC,4CAiB3B,CAAA;AACtB,eAAe,IAAI,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const AudioIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', "aria-hidden": 'true', className: 'iconify iconify--ic', width: '1em', height: '1em', viewBox: '0 0 24 24', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fill: 'currentColor', d: 'M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07a4.007 4.007 0 0 0 4.59 4.65c1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z' }) }));
3
+ const Memo = AudioIcon;
4
+ export default Memo;
@@ -0,0 +1,22 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const AudioIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns='http://www.w3.org/2000/svg'
7
+ aria-hidden='true'
8
+ className='iconify iconify--ic'
9
+ width='1em'
10
+ height='1em'
11
+ viewBox='0 0 24 24'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path
15
+ fill='currentColor'
16
+ d='M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07a4.007 4.007 0 0 0 4.59 4.65c1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z'
17
+ />
18
+ </svg>
19
+ )
20
+
21
+ const Memo = AudioIcon
22
+ export default Memo
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const BackwardIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default BackwardIcon;
4
+ //# sourceMappingURL=BackwardIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BackwardIcon.d.ts","sourceRoot":"","sources":["BackwardIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,YAAY,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAMnD,CAAA;AAED,eAAe,YAAY,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const BackwardIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '1em', height: '1em', viewBox: '0 0 24 24', ...props, children: _jsx("path", { fill: 'currentColor', d: 'M3 2.25a1 1 0 0 0-1 1V9a1 1 0 0 0 1 1h5.25a1 1 0 0 0 0-2H4.863c.985-1.179 2.208-2.113 3.682-2.57a9.435 9.435 0 0 1 6.106.16c1.981.738 3.81 2.232 4.722 3.894a1 1 0 1 0 1.754-.961c-1.175-2.143-3.415-3.927-5.778-4.807a11.435 11.435 0 0 0-7.395-.196C6.378 4.008 5.068 4.9 4 5.979V3.25a1 1 0 0 0-1-1ZM9.75 12a1 1 0 0 0-1.762-.647l-.222.265c-.515.623-1.078 1.303-2.28 2.024a1 1 0 1 0 1.029 1.716c.483-.29.889-.582 1.235-.865V20a1 1 0 0 0 2 0v-8Zm6.5-1c-1.386 0-2.4.635-3.008 1.661c-.564.95-.742 2.161-.742 3.339s.178 2.39.742 3.339C13.85 20.365 14.864 21 16.25 21s2.4-.635 3.008-1.661c.564-.95.742-2.161.742-3.339s-.178-2.39-.742-3.339C18.65 11.635 17.636 11 16.25 11Zm-1.75 5c0-1.031.166-1.82.461-2.318c.251-.422.613-.682 1.289-.682c.676 0 1.038.26 1.288.682c.296.498.462 1.287.462 2.318c0 1.031-.166 1.82-.462 2.318c-.25.422-.612.682-1.288.682s-1.038-.26-1.289-.682c-.295-.498-.461-1.287-.461-2.318Z' }) }));
3
+ export default BackwardIcon;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const BackwardIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24' {...props}>
6
+ <path
7
+ fill='currentColor'
8
+ d='M3 2.25a1 1 0 0 0-1 1V9a1 1 0 0 0 1 1h5.25a1 1 0 0 0 0-2H4.863c.985-1.179 2.208-2.113 3.682-2.57a9.435 9.435 0 0 1 6.106.16c1.981.738 3.81 2.232 4.722 3.894a1 1 0 1 0 1.754-.961c-1.175-2.143-3.415-3.927-5.778-4.807a11.435 11.435 0 0 0-7.395-.196C6.378 4.008 5.068 4.9 4 5.979V3.25a1 1 0 0 0-1-1ZM9.75 12a1 1 0 0 0-1.762-.647l-.222.265c-.515.623-1.078 1.303-2.28 2.024a1 1 0 1 0 1.029 1.716c.483-.29.889-.582 1.235-.865V20a1 1 0 0 0 2 0v-8Zm6.5-1c-1.386 0-2.4.635-3.008 1.661c-.564.95-.742 2.161-.742 3.339s.178 2.39.742 3.339C13.85 20.365 14.864 21 16.25 21s2.4-.635 3.008-1.661c.564-.95.742-2.161.742-3.339s-.178-2.39-.742-3.339C18.65 11.635 17.636 11 16.25 11Zm-1.75 5c0-1.031.166-1.82.461-2.318c.251-.422.613-.682 1.289-.682c.676 0 1.038.26 1.288.682c.296.498.462 1.287.462 2.318c0 1.031-.166 1.82-.462 2.318c-.25.422-.612.682-1.288.682s-1.038-.26-1.289-.682c-.295-.498-.461-1.287-.461-2.318Z'></path>
9
+ </svg>
10
+ )
11
+
12
+ export default BackwardIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const Memo: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Memo;
4
+ //# sourceMappingURL=CameraIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CameraIcon.d.ts","sourceRoot":"","sources":["CameraIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAgBtC,QAAA,MAAM,IAAI,UAdiB,QAAQ,CAAC,aAAa,CAAC,4CAc3B,CAAA;AACvB,eAAe,IAAI,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const CameraIcon = (props) => (_jsx("svg", { width: 32, height: 32, viewBox: '0 0 24 24', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fill: 'currentColor', d: 'M12 18q2.075 0 3.538-1.462Q17 15.075 17 13q0-2.075-1.462-3.538Q14.075 8 12 8 9.925 8 8.463 9.462 7 10.925 7 13q0 2.075 1.463 3.538Q9.925 18 12 18Zm0-2q-1.25 0-2.125-.875T9 13q0-1.25.875-2.125T12 10q1.25 0 2.125.875T15 13q0 1.25-.875 2.125T12 16Zm6-6q.425 0 .712-.288Q19 9.425 19 9t-.288-.713Q18.425 8 18 8t-.712.287Q17 8.575 17 9t.288.712Q17.575 10 18 10ZM4 21q-.825 0-1.412-.587Q2 19.825 2 19V7q0-.825.588-1.412Q3.175 5 4 5h3.15L8.7 3.325q.15-.15.337-.238Q9.225 3 9.425 3h5.15q.2 0 .388.087.187.088.337.238L16.85 5H20q.825 0 1.413.588Q22 6.175 22 7v12q0 .825-.587 1.413Q20.825 21 20 21Zm16-2V7h-4.05l-1.825-2h-4.25L8.05 7H4v12Zm-8-6Z' }) }));
3
+ const Memo = CameraIcon;
4
+ export default Memo;
@@ -0,0 +1,19 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const CameraIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ width={32}
7
+ height={32}
8
+ viewBox='0 0 24 24'
9
+ style={{ width: '100%', height: '100%' }}
10
+ {...props}>
11
+ <path
12
+ fill='currentColor'
13
+ d='M12 18q2.075 0 3.538-1.462Q17 15.075 17 13q0-2.075-1.462-3.538Q14.075 8 12 8 9.925 8 8.463 9.462 7 10.925 7 13q0 2.075 1.463 3.538Q9.925 18 12 18Zm0-2q-1.25 0-2.125-.875T9 13q0-1.25.875-2.125T12 10q1.25 0 2.125.875T15 13q0 1.25-.875 2.125T12 16Zm6-6q.425 0 .712-.288Q19 9.425 19 9t-.288-.713Q18.425 8 18 8t-.712.287Q17 8.575 17 9t.288.712Q17.575 10 18 10ZM4 21q-.825 0-1.412-.587Q2 19.825 2 19V7q0-.825.588-1.412Q3.175 5 4 5h3.15L8.7 3.325q.15-.15.337-.238Q9.225 3 9.425 3h5.15q.2 0 .388.087.187.088.337.238L16.85 5H20q.825 0 1.413.588Q22 6.175 22 7v12q0 .825-.587 1.413Q20.825 21 20 21Zm16-2V7h-4.05l-1.825-2h-4.25L8.05 7H4v12Zm-8-6Z'
14
+ />
15
+ </svg>
16
+ )
17
+
18
+ const Memo = CameraIcon
19
+ export default Memo
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const Memo: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Memo;
4
+ //# sourceMappingURL=CheckIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CheckIcon.d.ts","sourceRoot":"","sources":["CheckIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAgBtC,QAAA,MAAM,IAAI,UAdgB,QAAQ,CAAC,aAAa,CAAC,4CAc3B,CAAA;AACtB,eAAe,IAAI,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const CheckIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', "aria-hidden": 'true', className: 'iconify iconify--mdi', width: '24', height: '24', viewBox: '0 0 24 24', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fill: 'currentColor', d: 'M21 7 9 19l-5.5-5.5 1.41-1.41L9 16.17 19.59 5.59 21 7Z' }) }));
3
+ const Memo = CheckIcon;
4
+ export default Memo;
@@ -0,0 +1,19 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns='http://www.w3.org/2000/svg'
7
+ aria-hidden='true'
8
+ className='iconify iconify--mdi'
9
+ width='24'
10
+ height='24'
11
+ viewBox='0 0 24 24'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path fill='currentColor' d='M21 7 9 19l-5.5-5.5 1.41-1.41L9 16.17 19.59 5.59 21 7Z' />
15
+ </svg>
16
+ )
17
+
18
+ const Memo = CheckIcon
19
+ export default Memo
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare function EnablePiPIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
+ export default EnablePiPIcon;
4
+ //# sourceMappingURL=EnablePiPIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnablePiPIcon.d.ts","sourceRoot":"","sources":["EnablePiPIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,QAAQ,EAAE,MAAM,OAAO,CAAA;AAEtC,iBAAS,aAAa,CAAC,KAAK,EAAE,QAAQ,CAAC,aAAa,CAAC,2CAYpD;AACD,eAAe,aAAa,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ function EnablePiPIcon(props) {
3
+ return (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '1em', height: '1em', viewBox: '0 0 24 24', ...props, children: _jsxs("g", { fill: 'currentColor', children: [_jsx("path", { d: 'M13 17c0-1.886 0-2.828.586-3.414C14.172 13 15.114 13 17 13h1c1.886 0 2.828 0 3.414.586C22 14.172 22 15.114 22 17c0 1.886 0 2.828-.586 3.414C20.828 21 19.886 21 18 21h-1c-1.886 0-2.828 0-3.414-.586C13 19.828 13 18.886 13 17Z' }), _jsx("path", { fillRule: 'evenodd', d: 'M10 3h4c3.771 0 5.657 0 6.828 1.172c.95.949 1.13 2.694 1.164 5.328c.012.937.018 1.405-.275 1.703c-.294.297-.768.297-1.717.297h-2.5c-2.828 0-4.243 0-5.121.879c-.879.878-.879 2.293-.879 5.121v2c0 .466 0 .699-.076.883a1 1 0 0 1-.541.54C10.699 21 10.466 21 10 21c-3.771 0-5.657 0-6.828-1.172C2 18.657 2 16.771 2 13v-2c0-3.771 0-5.657 1.172-6.828C4.343 3 6.229 3 10 3ZM8.03 6.97a.75.75 0 0 0-1.06 1.06l2.72 2.72H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-1.5 0v1.19L8.03 6.97Z', clipRule: 'evenodd' })] }) }));
4
+ }
5
+ export default EnablePiPIcon;
@@ -0,0 +1,17 @@
1
+ import React from 'react'
2
+ import { memo, SVGProps } from 'react'
3
+
4
+ function EnablePiPIcon(props: SVGProps<SVGSVGElement>) {
5
+ return (
6
+ <svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24' {...props}>
7
+ <g fill='currentColor'>
8
+ <path d='M13 17c0-1.886 0-2.828.586-3.414C14.172 13 15.114 13 17 13h1c1.886 0 2.828 0 3.414.586C22 14.172 22 15.114 22 17c0 1.886 0 2.828-.586 3.414C20.828 21 19.886 21 18 21h-1c-1.886 0-2.828 0-3.414-.586C13 19.828 13 18.886 13 17Z'></path>
9
+ <path
10
+ fillRule='evenodd'
11
+ d='M10 3h4c3.771 0 5.657 0 6.828 1.172c.95.949 1.13 2.694 1.164 5.328c.012.937.018 1.405-.275 1.703c-.294.297-.768.297-1.717.297h-2.5c-2.828 0-4.243 0-5.121.879c-.879.878-.879 2.293-.879 5.121v2c0 .466 0 .699-.076.883a1 1 0 0 1-.541.54C10.699 21 10.466 21 10 21c-3.771 0-5.657 0-6.828-1.172C2 18.657 2 16.771 2 13v-2c0-3.771 0-5.657 1.172-6.828C4.343 3 6.229 3 10 3ZM8.03 6.97a.75.75 0 0 0-1.06 1.06l2.72 2.72H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-1.5 0v1.19L8.03 6.97Z'
12
+ clipRule='evenodd'></path>
13
+ </g>
14
+ </svg>
15
+ )
16
+ }
17
+ export default EnablePiPIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const ForwardIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default ForwardIcon;
4
+ //# sourceMappingURL=ForwardIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ForwardIcon.d.ts","sourceRoot":"","sources":["ForwardIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAMlD,CAAA;AAED,eAAe,WAAW,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const ForwardIcon = (props) => (_jsx("svg", { xmlns: 'http://www.w3.org/2000/svg', width: '1em', height: '1em', viewBox: '0 0 24 24', ...props, children: _jsx("path", { fill: 'currentColor', d: 'M21 2.25a1 1 0 0 1 1 1V9a1 1 0 0 1-1 1h-5.25a1 1 0 0 1 0-2h3.387c-.985-1.179-2.208-2.113-3.682-2.57a9.435 9.435 0 0 0-6.106.16c-1.981.738-3.81 2.232-4.722 3.894a1 1 0 0 1-1.754-.961C4.048 6.38 6.288 4.596 8.652 3.716a11.435 11.435 0 0 1 7.394-.196c1.576.488 2.886 1.38 3.954 2.459V3.25a1 1 0 0 1 1-1ZM9.095 11.061A1 1 0 0 1 9.75 12v8a1 1 0 0 1-2 0v-5.507c-.346.283-.752.575-1.235.864a1 1 0 1 1-1.03-1.715c1.203-.721 1.766-1.4 2.281-2.024c.074-.09.148-.178.222-.265a1 1 0 0 1 1.107-.292Zm4.147 1.6C13.85 11.635 14.864 11 16.25 11s2.4.635 3.008 1.661c.564.95.742 2.161.742 3.339s-.178 2.39-.742 3.339C18.65 20.365 17.636 21 16.25 21s-2.4-.636-3.008-1.661c-.564-.95-.742-2.161-.742-3.339s.178-2.39.742-3.339Zm1.72 1.021c-.296.498-.462 1.287-.462 2.318c0 1.031.166 1.82.461 2.318c.251.422.613.682 1.289.682c.676 0 1.038-.26 1.288-.682c.296-.498.462-1.287.462-2.318c0-1.031-.166-1.82-.462-2.318c-.25-.422-.612-.682-1.288-.682s-1.038.26-1.289.682Z' }) }));
3
+ export default ForwardIcon;
@@ -0,0 +1,12 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const ForwardIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24' {...props}>
6
+ <path
7
+ fill='currentColor'
8
+ d='M21 2.25a1 1 0 0 1 1 1V9a1 1 0 0 1-1 1h-5.25a1 1 0 0 1 0-2h3.387c-.985-1.179-2.208-2.113-3.682-2.57a9.435 9.435 0 0 0-6.106.16c-1.981.738-3.81 2.232-4.722 3.894a1 1 0 0 1-1.754-.961C4.048 6.38 6.288 4.596 8.652 3.716a11.435 11.435 0 0 1 7.394-.196c1.576.488 2.886 1.38 3.954 2.459V3.25a1 1 0 0 1 1-1ZM9.095 11.061A1 1 0 0 1 9.75 12v8a1 1 0 0 1-2 0v-5.507c-.346.283-.752.575-1.235.864a1 1 0 1 1-1.03-1.715c1.203-.721 1.766-1.4 2.281-2.024c.074-.09.148-.178.222-.265a1 1 0 0 1 1.107-.292Zm4.147 1.6C13.85 11.635 14.864 11 16.25 11s2.4.635 3.008 1.661c.564.95.742 2.161.742 3.339s-.178 2.39-.742 3.339C18.65 20.365 17.636 21 16.25 21s-2.4-.636-3.008-1.661c-.564-.95-.742-2.161-.742-3.339s.178-2.39.742-3.339Zm1.72 1.021c-.296.498-.462 1.287-.462 2.318c0 1.031.166 1.82.461 2.318c.251.422.613.682 1.289.682c.676 0 1.038-.26 1.288-.682c.296-.498.462-1.287.462-2.318c0-1.031-.166-1.82-.462-2.318c-.25-.422-.612-.682-1.288-.682s-1.038.26-1.289.682Z'></path>
9
+ </svg>
10
+ )
11
+
12
+ export default ForwardIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const FullscreenEnterIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default FullscreenEnterIcon;
4
+ //# sourceMappingURL=FullscreenEnterIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FullscreenEnterIcon.d.ts","sourceRoot":"","sources":["FullscreenEnterIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,mBAAmB,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAiB1D,CAAA;AAED,eAAe,mBAAmB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const FullscreenEnterIcon = (props) => (_jsx("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', "data-uia": 'control-fullscreen-enter', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M0 5a2 2 0 0 1 2-2h7v2H2v4H0V5Zm22 0h-7V3h7a2 2 0 0 1 2 2v4h-2V5ZM2 15v4h7v2H2a2 2 0 0 1-2-2v-4h2Zm20 4v-4h2v4a2 2 0 0 1-2 2h-7v-2h7Z', fill: 'currentColor' }) }));
3
+ export default FullscreenEnterIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const FullscreenEnterIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ width='24'
7
+ height='24'
8
+ viewBox='0 0 24 24'
9
+ fill='none'
10
+ xmlns='http://www.w3.org/2000/svg'
11
+ data-uia='control-fullscreen-enter'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path
15
+ fillRule='evenodd'
16
+ clipRule='evenodd'
17
+ d='M0 5a2 2 0 0 1 2-2h7v2H2v4H0V5Zm22 0h-7V3h7a2 2 0 0 1 2 2v4h-2V5ZM2 15v4h7v2H2a2 2 0 0 1-2-2v-4h2Zm20 4v-4h2v4a2 2 0 0 1-2 2h-7v-2h7Z'
18
+ fill='currentColor'
19
+ />
20
+ </svg>
21
+ )
22
+
23
+ export default FullscreenEnterIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const FullscreenExitIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default FullscreenExitIcon;
4
+ //# sourceMappingURL=FullscreenExitIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FullscreenExitIcon.d.ts","sourceRoot":"","sources":["FullscreenExitIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,kBAAkB,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAiBzD,CAAA;AAED,eAAe,kBAAkB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const FullscreenExitIcon = (props) => (_jsx("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', "data-uia": 'control-fullscreen-exit', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M24 8h-5V3h-2v7h7V8ZM0 16h5v5h2v-7H0v2Zm7-6H0V8h5V3h2v7Zm12 11v-5h5v-2h-7v7h2Z', fill: 'currentColor' }) }));
3
+ export default FullscreenExitIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const FullscreenExitIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ width='24'
7
+ height='24'
8
+ viewBox='0 0 24 24'
9
+ fill='none'
10
+ xmlns='http://www.w3.org/2000/svg'
11
+ data-uia='control-fullscreen-exit'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path
15
+ fillRule='evenodd'
16
+ clipRule='evenodd'
17
+ d='M24 8h-5V3h-2v7h7V8ZM0 16h5v5h2v-7H0v2Zm7-6H0V8h5V3h2v7Zm12 11v-5h5v-2h-7v7h2Z'
18
+ fill='currentColor'
19
+ />
20
+ </svg>
21
+ )
22
+
23
+ export default FullscreenExitIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const LoadingIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default LoadingIcon;
4
+ //# sourceMappingURL=LoadingIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LoadingIcon.d.ts","sourceRoot":"","sources":["LoadingIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,WAAW,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CA0BlD,CAAA;AAED,eAAe,WAAW,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const LoadingIcon = (props) => (_jsxs("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', className: 'svg-icon-nfplayerPlay', style: { width: '100%', height: '100%' }, ...props, children: [_jsx("path", { fill: 'currentColor', d: 'M12 2A10 10 0 1 0 22 12A10 10 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8A8 8 0 0 1 12 20Z', opacity: '.5' }), _jsx("path", { fill: 'currentColor', d: 'M20 12h2A10 10 0 0 0 12 2V4A8 8 0 0 1 20 12Z', children: _jsx("animateTransform", { attributeName: 'transform', dur: '1s', from: '0 12 12', repeatCount: 'indefinite', to: '360 12 12', type: 'rotate' }) })] }));
3
+ export default LoadingIcon;
@@ -0,0 +1,32 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const LoadingIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ width='24'
7
+ height='24'
8
+ viewBox='0 0 24 24'
9
+ fill='none'
10
+ xmlns='http://www.w3.org/2000/svg'
11
+ className='svg-icon-nfplayerPlay'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path
15
+ fill='currentColor'
16
+ d='M12 2A10 10 0 1 0 22 12A10 10 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8A8 8 0 0 1 12 20Z'
17
+ opacity='.5'
18
+ />
19
+ <path fill='currentColor' d='M20 12h2A10 10 0 0 0 12 2V4A8 8 0 0 1 20 12Z'>
20
+ <animateTransform
21
+ attributeName='transform'
22
+ dur='1s'
23
+ from='0 12 12'
24
+ repeatCount='indefinite'
25
+ to='360 12 12'
26
+ type='rotate'
27
+ />
28
+ </path>
29
+ </svg>
30
+ )
31
+
32
+ export default LoadingIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const PauseIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default PauseIcon;
4
+ //# sourceMappingURL=PauseIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PauseIcon.d.ts","sourceRoot":"","sources":["PauseIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAQ,MAAM,OAAO,CAAA;AAEtC,QAAA,MAAM,SAAS,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAiBhD,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const PauseIcon = (props) => (_jsx("svg", { width: '24', height: '24', viewBox: '0 0 24 24', fill: 'none', xmlns: 'http://www.w3.org/2000/svg', className: 'svg-icon-nfplayerPause', style: { width: '100%', height: '100%' }, ...props, children: _jsx("path", { fillRule: 'evenodd', clipRule: 'evenodd', d: 'M4.5 3a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5h-5Zm10 0a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5h-5Z', fill: 'currentColor' }) }));
3
+ export default PauseIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react'
2
+ import { SVGProps, memo } from 'react'
3
+
4
+ const PauseIcon = (props: SVGProps<SVGSVGElement>) => (
5
+ <svg
6
+ width='24'
7
+ height='24'
8
+ viewBox='0 0 24 24'
9
+ fill='none'
10
+ xmlns='http://www.w3.org/2000/svg'
11
+ className='svg-icon-nfplayerPause'
12
+ style={{ width: '100%', height: '100%' }}
13
+ {...props}>
14
+ <path
15
+ fillRule='evenodd'
16
+ clipRule='evenodd'
17
+ d='M4.5 3a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5h-5Zm10 0a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5v-17a.5.5 0 0 0-.5-.5h-5Z'
18
+ fill='currentColor'
19
+ />
20
+ </svg>
21
+ )
22
+
23
+ export default PauseIcon
@@ -0,0 +1,4 @@
1
+ import { SVGProps } from 'react';
2
+ declare const PlayIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default PlayIcon;
4
+ //# sourceMappingURL=PlayIcon.d.ts.map