@therealtinhtute/baroiplayer 1.0.8 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1003) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +15 -15
  3. package/dist/context/media.js +2 -0
  4. package/dist/context/media.js.map +1 -0
  5. package/dist/context/media.mjs +15 -0
  6. package/dist/context/media.mjs.map +1 -0
  7. package/dist/context/store.js +2 -0
  8. package/dist/context/store.js.map +1 -0
  9. package/dist/context/store.mjs +5 -0
  10. package/dist/context/store.mjs.map +1 -0
  11. package/dist/context-BYwDoSRX.js +1172 -0
  12. package/dist/context-BYwDoSRX.js.map +1 -0
  13. package/dist/context-eNS62_ac.cjs +23 -0
  14. package/dist/context-eNS62_ac.cjs.map +1 -0
  15. package/dist/core-events-B1iM2F46.cjs +2 -0
  16. package/dist/core-events-B1iM2F46.cjs.map +1 -0
  17. package/dist/core-events-DunPHKRE.js +484 -0
  18. package/dist/core-events-DunPHKRE.js.map +1 -0
  19. package/dist/core-plugins-CROGvQUy.js +686 -0
  20. package/dist/core-plugins-CROGvQUy.js.map +1 -0
  21. package/dist/core-plugins-DtsHBOtF.cjs +2 -0
  22. package/dist/core-plugins-DtsHBOtF.cjs.map +1 -0
  23. package/dist/core.js +37 -0
  24. package/dist/core.js.map +1 -0
  25. package/dist/core.mjs +1233 -0
  26. package/dist/core.mjs.map +1 -0
  27. package/dist/enhanced-components-DUw2KrmQ.js +1142 -0
  28. package/dist/enhanced-components-DUw2KrmQ.js.map +1 -0
  29. package/dist/enhanced-components-DXBCHU0v.cjs +2 -0
  30. package/dist/enhanced-components-DXBCHU0v.cjs.map +1 -0
  31. package/dist/hooks-BW-JjVgP.cjs +4 -0
  32. package/dist/hooks-BW-JjVgP.cjs.map +1 -0
  33. package/dist/hooks-CyX6De5M.js +1693 -0
  34. package/dist/hooks-CyX6De5M.js.map +1 -0
  35. package/dist/index.css +1 -102
  36. package/dist/index.js +112 -21
  37. package/dist/index.js.map +1 -0
  38. package/dist/index.mjs +6275 -16
  39. package/dist/index.mjs.map +1 -0
  40. package/dist/minimal-components-Bdcpxav5.cjs +2 -0
  41. package/dist/minimal-components-Bdcpxav5.cjs.map +1 -0
  42. package/dist/minimal-components-DlRK7Qu_.js +1927 -0
  43. package/dist/minimal-components-DlRK7Qu_.js.map +1 -0
  44. package/dist/minimal-components.css +1 -589
  45. package/dist/mona-loading.gif +0 -0
  46. package/dist/performance-monitor-C5k6FDXw.js +301 -0
  47. package/dist/performance-monitor-C5k6FDXw.js.map +1 -0
  48. package/dist/performance-monitor-lJmuUjQQ.cjs +2 -0
  49. package/dist/performance-monitor-lJmuUjQQ.cjs.map +1 -0
  50. package/dist/utils-CFOue_9K.cjs +9 -0
  51. package/dist/utils-CFOue_9K.cjs.map +1 -0
  52. package/dist/utils-Dzpl2ArK.js +2844 -0
  53. package/dist/utils-Dzpl2ArK.js.map +1 -0
  54. package/dist/utils.js +2 -0
  55. package/dist/utils.js.map +1 -0
  56. package/dist/utils.mjs +11 -0
  57. package/dist/utils.mjs.map +1 -0
  58. package/package.json +11 -40
  59. package/src/adapters/videojs-adapter.tsx +441 -441
  60. package/src/components/AnimateLoading.tsx +85 -93
  61. package/src/components/LoadingState.tsx +199 -208
  62. package/src/components/__tests__/media-player-accessibility.test.tsx +510 -0
  63. package/src/components/__tests__/media-player-react19.test.tsx +457 -0
  64. package/src/components/accessibility/keyboard-help-overlay.tsx +199 -207
  65. package/src/components/basic/index.ts +28 -28
  66. package/src/components/enhanced/advanced-features.tsx +49 -54
  67. package/src/components/enhanced/debug-panel.tsx +148 -122
  68. package/src/components/enhanced/enhanced-controls.tsx +117 -120
  69. package/src/components/enhanced/enhanced-media-player.tsx +228 -214
  70. package/src/components/enhanced/error-handling.tsx +50 -57
  71. package/src/components/enhanced/index.ts +27 -27
  72. package/src/components/enhanced/media-player-enhanced.tsx +117 -83
  73. package/src/components/examples/basic-video-player.tsx +35 -40
  74. package/src/components/examples/enhanced-controls-example.tsx +16 -30
  75. package/src/components/examples/enhanced-media-player-example.tsx +196 -187
  76. package/src/components/examples/loading-states-demo.tsx +113 -113
  77. package/src/components/examples/react-19-demo.tsx +88 -116
  78. package/src/components/examples/volume-orientation-demo.tsx +77 -85
  79. package/src/components/icon-demo.tsx +189 -202
  80. package/src/components/icons/svg-icons/ArrowLeftIcon.tsx +13 -13
  81. package/src/components/icons/svg-icons/ArrowRightIcon.tsx +13 -13
  82. package/src/components/icons/svg-icons/AudioIcon.tsx +16 -16
  83. package/src/components/icons/svg-icons/BackwardIcon.tsx +7 -7
  84. package/src/components/icons/svg-icons/CameraIcon.tsx +13 -13
  85. package/src/components/icons/svg-icons/CheckIcon.tsx +13 -13
  86. package/src/components/icons/svg-icons/EnablePiPIcon.tsx +13 -13
  87. package/src/components/icons/svg-icons/ForwardIcon.tsx +7 -7
  88. package/src/components/icons/svg-icons/FullscreenEnterIcon.tsx +18 -18
  89. package/src/components/icons/svg-icons/FullscreenExitIcon.tsx +18 -18
  90. package/src/components/icons/svg-icons/LoadingIcon.tsx +27 -27
  91. package/src/components/icons/svg-icons/PauseIcon.tsx +18 -18
  92. package/src/components/icons/svg-icons/PlayIcon.tsx +16 -16
  93. package/src/components/icons/svg-icons/PlaybackSpeedIcon.tsx +18 -18
  94. package/src/components/icons/svg-icons/QualityIcon.tsx +16 -16
  95. package/src/components/icons/svg-icons/SettingsIcon.tsx +7 -7
  96. package/src/components/icons/svg-icons/SliderIcon.tsx +16 -16
  97. package/src/components/icons/svg-icons/SubtitleIcon.tsx +16 -16
  98. package/src/components/icons/svg-icons/SubtitleOffIcon.tsx +20 -20
  99. package/src/components/icons/svg-icons/UnPiPIcon.tsx +13 -13
  100. package/src/components/icons/svg-icons/VolumeMutedIcon.tsx +11 -11
  101. package/src/components/icons/svg-icons/VolumeOneIcon.tsx +17 -17
  102. package/src/components/icons/svg-icons/VolumeThreeIcon.tsx +11 -11
  103. package/src/components/icons/svg-icons/VolumeTwoIcon.tsx +11 -11
  104. package/src/components/legacy.tsx +8 -14
  105. package/src/components/media-metadata-display.tsx +78 -79
  106. package/src/components/media-player-controls.tsx +37 -40
  107. package/src/components/media-player-error.tsx +2 -2
  108. package/src/components/media-player-fullscreen.tsx +2 -2
  109. package/src/components/media-player-hls.tsx +89 -89
  110. package/src/components/media-player-play.tsx +2 -2
  111. package/src/components/media-player-root.tsx +20 -22
  112. package/src/components/media-player-seek.tsx +1 -1
  113. package/src/components/media-player-tooltip.tsx +1 -1
  114. package/src/components/media-player-video.tsx +28 -6
  115. package/src/components/media-player-volume.tsx +3 -3
  116. package/src/components/media-player.tsx +209 -174
  117. package/src/components/media-suspense.tsx +71 -89
  118. package/src/components/player-settings-form.tsx +143 -148
  119. package/src/components/react-player-wrapper.tsx +23 -23
  120. package/src/components/simple-video-player.tsx +53 -51
  121. package/src/components/ui/blur-poster.tsx +93 -0
  122. package/src/components/ui/empty-state.tsx +91 -0
  123. package/src/components/ui/enhanced-seek-bar.tsx +75 -56
  124. package/src/components/ui/error-state.tsx +124 -0
  125. package/src/components/ui/fullscreen-button.tsx +71 -50
  126. package/src/components/ui/loading-skeleton.tsx +107 -0
  127. package/src/components/ui/media-resource-preloader.tsx +265 -198
  128. package/src/components/ui/offline-message.tsx +98 -0
  129. package/src/components/ui/play-button.tsx +79 -87
  130. package/src/components/ui/seek-bar.tsx +170 -140
  131. package/src/components/ui/time-display.tsx +33 -12
  132. package/src/components/ui/volume-control.tsx +91 -44
  133. package/src/components/unified/base-media-player.tsx +45 -51
  134. package/src/components/unified/media-player.tsx +3 -3
  135. package/src/components/variants/minimal/AccessibleMinimalPlayer.tsx +508 -502
  136. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx +108 -87
  137. package/src/components/variants/minimal/MinimalControls.tsx +100 -118
  138. package/src/components/variants/minimal/MinimalLoading.tsx +19 -23
  139. package/src/components/variants/minimal/MinimalMediaPlayer.tsx +283 -280
  140. package/src/components/variants/minimal/MinimalOverlay.tsx +43 -49
  141. package/src/components/variants/minimal/MinimalPlayButton.tsx +44 -53
  142. package/src/components/variants/minimal/MinimalSeekBar.tsx +130 -140
  143. package/src/components/variants/minimal/MinimalVolumeControl.tsx +59 -64
  144. package/src/components/variants/minimal/SimpleMinimalPlayer.tsx +29 -32
  145. package/src/components/variants/minimal/components/CenterPlayButton.tsx +1 -1
  146. package/src/components/variants/minimal/components/ControlBar.tsx +7 -11
  147. package/src/components/variants/minimal/components/EnhancedSettingsMenu.tsx +381 -330
  148. package/src/components/variants/minimal/components/PlaybackControls.tsx +6 -11
  149. package/src/components/variants/minimal/components/RightControls.tsx +8 -17
  150. package/src/components/variants/minimal/components/SeekBar.tsx +16 -20
  151. package/src/components/variants/minimal/components/SettingsDropdown.tsx +12 -14
  152. package/src/components/variants/minimal/components/SubtitleDisplay.tsx +1 -1
  153. package/src/components/variants/minimal/components/TimeDisplay.tsx +2 -5
  154. package/src/components/variants/minimal/components/VideoElement.tsx +3 -10
  155. package/src/components/variants/minimal/components/VolumeControl.tsx +42 -39
  156. package/src/components/video-player.tsx +10 -10
  157. package/src/context/__tests__/media-store.test.ts +509 -0
  158. package/src/context/error-handling.ts +106 -102
  159. package/src/context/media-context.tsx +56 -10
  160. package/src/context/media-provider.tsx +16 -17
  161. package/src/context/media-store.ts +68 -60
  162. package/src/context/persistence.ts +74 -65
  163. package/src/core/events/event-system.ts +422 -416
  164. package/src/core/events/hooks.ts +275 -252
  165. package/src/core/events/index.ts +14 -14
  166. package/src/core/events/middleware.ts +269 -252
  167. package/src/core/index.ts +8 -8
  168. package/src/core/optimization/bundle-optimizer.tsx +65 -60
  169. package/src/core/performance/cicd.ts +91 -89
  170. package/src/core/performance/index.ts +22 -22
  171. package/src/core/performance/media-loading-optimizer.ts +518 -512
  172. package/src/core/performance/performance-budgets.ts +414 -409
  173. package/src/core/performance/performance-monitor.tsx +451 -439
  174. package/src/core/performance/performance-testing.ts +439 -437
  175. package/src/core/plugins/__tests__/registry.test.ts +595 -0
  176. package/src/core/plugins/base-plugin.ts +197 -196
  177. package/src/core/plugins/enhanced-plugin-system.ts +136 -136
  178. package/src/core/plugins/examples/analytics-plugin.ts +229 -230
  179. package/src/core/plugins/index.ts +26 -26
  180. package/src/core/plugins/registry.ts +315 -323
  181. package/src/core/plugins/types.ts +97 -105
  182. package/src/core/plugins/utils.ts +292 -291
  183. package/src/core/progressive-loading.tsx +297 -288
  184. package/src/core/providers/enhanced-hls-provider.ts +118 -90
  185. package/src/core/providers/lazy-provider.tsx +51 -0
  186. package/src/core/providers/service-provider.tsx +104 -108
  187. package/src/core/utils.tsx +22 -26
  188. package/src/features/media-session/media-session-manager.ts +406 -402
  189. package/src/features/picture-in-picture/pip-manager.ts +364 -365
  190. package/src/features/playlist/playlist-manager.ts +597 -585
  191. package/src/features/subtitles/subtitle-manager.ts +424 -430
  192. package/src/features/subtitles/subtitle-parser.ts +274 -273
  193. package/src/features/thumbnails/thumbnail-generator.ts +504 -502
  194. package/src/hooks/__tests__/use-media-player.test.ts +712 -0
  195. package/src/hooks/__tests__/use-media-state.test.tsx +316 -0
  196. package/src/hooks/accessibility/index.ts +20 -20
  197. package/src/hooks/accessibility/use-accessibility-preferences.ts +177 -175
  198. package/src/hooks/accessibility/use-focus-management.ts +170 -163
  199. package/src/hooks/accessibility/use-keyboard-shortcuts.ts +132 -124
  200. package/src/hooks/accessibility/use-screen-reader.ts +191 -161
  201. package/src/hooks/core/index.ts +30 -30
  202. package/src/hooks/legacy.ts +3 -9
  203. package/src/hooks/use-buffer-health.ts +218 -0
  204. package/src/hooks/use-enhanced-media-player.ts +74 -82
  205. package/src/hooks/use-focus-trap.tsx +162 -0
  206. package/src/hooks/use-intelligent-preloading.ts +236 -232
  207. package/src/hooks/use-keyboard-controls.ts +80 -80
  208. package/src/hooks/use-keyboard-shortcuts.ts +255 -0
  209. package/src/hooks/use-media-actions.ts +81 -72
  210. package/src/hooks/use-media-metadata.ts +75 -73
  211. package/src/hooks/use-media-optimistic.ts +145 -151
  212. package/src/hooks/use-media-player.ts +109 -107
  213. package/src/hooks/use-media-state.ts +63 -59
  214. package/src/hooks/use-memory-optimization.ts +119 -117
  215. package/src/hooks/use-network-status.ts +124 -0
  216. package/src/hooks/use-optimistic-controls.ts +91 -88
  217. package/src/hooks/use-optimized-media.ts +76 -56
  218. package/src/hooks/use-smart-preload.ts +230 -0
  219. package/src/hooks/use-touch-gestures.ts +427 -383
  220. package/src/hooks/useEnhancedSubtitles.ts +245 -245
  221. package/src/hooks/useKeyboardShortcuts.ts +52 -52
  222. package/src/hooks/useMediaControls.ts +22 -22
  223. package/src/hooks/useScreenshot.ts +51 -47
  224. package/src/hooks/useSubtitles.ts +53 -53
  225. package/src/hooks/useVideoPlayer.ts +61 -61
  226. package/src/icons/components/FullscreenIcon.tsx +34 -35
  227. package/src/icons/components/SettingsIcon.tsx +35 -36
  228. package/src/icons/components/animated/LoadingIcon.tsx +25 -41
  229. package/src/icons/components/animated/PlayPauseIcon.tsx +38 -46
  230. package/src/icons/components/media/PauseIcon.tsx +36 -37
  231. package/src/icons/components/media/PlayIcon.tsx +35 -36
  232. package/src/icons/components/volume/VolumeIcon.tsx +36 -37
  233. package/src/icons/components/volume/VolumeOffIcon.tsx +36 -37
  234. package/src/icons/index.ts +38 -38
  235. package/src/icons/provider.tsx +40 -46
  236. package/src/icons/types.ts +51 -31
  237. package/src/index-enhanced.ts +10 -10
  238. package/src/index-legacy.ts +3 -4
  239. package/src/index.css +80 -80
  240. package/src/index.ts +8 -23
  241. package/src/lib/__tests__/async-utils.test.ts +291 -0
  242. package/src/lib/async-utils.ts +194 -0
  243. package/src/lib/deprecation.ts +4 -4
  244. package/src/lib/index.ts +3 -2
  245. package/src/lib/utils.ts +3 -3
  246. package/src/styles/globals.css +3 -3
  247. package/src/styles/minimal-player.css +606 -574
  248. package/src/styles/pixel-art.css +23 -28
  249. package/src/styles/videojs.css +43 -43
  250. package/src/test/accessibility-utils.ts +208 -0
  251. package/src/test/browser-simulation.ts +235 -0
  252. package/src/test/media-mocks.ts +156 -0
  253. package/src/test/performance-utils.ts +192 -0
  254. package/src/test/setup.ts +241 -44
  255. package/src/types/events.ts +30 -30
  256. package/src/types/formats.ts +56 -72
  257. package/src/types/index.ts +5 -40
  258. package/src/types/videojs-plugins.d.ts +6 -6
  259. package/dist/index.d.ts +0 -1425
  260. package/dist/package.json +0 -62
  261. package/dist/src/adapters/videojs-adapter.d.ts +0 -38
  262. package/dist/src/adapters/videojs-adapter.tsx +0 -470
  263. package/dist/src/components/AnimateLoading.d.ts +0 -9
  264. package/dist/src/components/AnimateLoading.tsx +0 -115
  265. package/dist/src/components/LoadingState.d.ts +0 -33
  266. package/dist/src/components/LoadingState.tsx +0 -248
  267. package/dist/src/components/accessibility/keyboard-help-overlay.d.ts +0 -17
  268. package/dist/src/components/accessibility/keyboard-help-overlay.tsx +0 -213
  269. package/dist/src/components/audio-player.d.ts +0 -3
  270. package/dist/src/components/audio-player.tsx +0 -85
  271. package/dist/src/components/basic/index.d.ts +0 -26
  272. package/dist/src/components/basic/index.ts +0 -37
  273. package/dist/src/components/enhanced/advanced-features.d.ts +0 -45
  274. package/dist/src/components/enhanced/advanced-features.tsx +0 -316
  275. package/dist/src/components/enhanced/debug-panel.d.ts +0 -70
  276. package/dist/src/components/enhanced/debug-panel.tsx +0 -422
  277. package/dist/src/components/enhanced/enhanced-controls.d.ts +0 -50
  278. package/dist/src/components/enhanced/enhanced-controls.tsx +0 -600
  279. package/dist/src/components/enhanced/enhanced-media-player.d.ts +0 -26
  280. package/dist/src/components/enhanced/enhanced-media-player.tsx +0 -509
  281. package/dist/src/components/enhanced/error-handling.d.ts +0 -36
  282. package/dist/src/components/enhanced/error-handling.tsx +0 -345
  283. package/dist/src/components/enhanced/index.d.ts +0 -7
  284. package/dist/src/components/enhanced/index.ts +0 -39
  285. package/dist/src/components/enhanced/media-player-enhanced.d.ts +0 -21
  286. package/dist/src/components/enhanced/media-player-enhanced.tsx +0 -349
  287. package/dist/src/components/examples/basic-video-player.d.ts +0 -10
  288. package/dist/src/components/examples/basic-video-player.tsx +0 -55
  289. package/dist/src/components/examples/custom-controls-example.d.ts +0 -10
  290. package/dist/src/components/examples/custom-controls-example.tsx +0 -63
  291. package/dist/src/components/examples/enhanced-controls-example.d.ts +0 -9
  292. package/dist/src/components/examples/enhanced-controls-example.tsx +0 -114
  293. package/dist/src/components/examples/enhanced-media-player-example.d.ts +0 -9
  294. package/dist/src/components/examples/enhanced-media-player-example.tsx +0 -293
  295. package/dist/src/components/examples/loading-states-demo.d.ts +0 -2
  296. package/dist/src/components/examples/loading-states-demo.tsx +0 -142
  297. package/dist/src/components/examples/react-19-demo.d.ts +0 -10
  298. package/dist/src/components/examples/react-19-demo.tsx +0 -381
  299. package/dist/src/components/examples/volume-orientation-demo.d.ts +0 -2
  300. package/dist/src/components/examples/volume-orientation-demo.tsx +0 -114
  301. package/dist/src/components/icon-demo.d.ts +0 -2
  302. package/dist/src/components/icon-demo.tsx +0 -209
  303. package/dist/src/components/icons/index.d.ts +0 -36
  304. package/dist/src/components/icons/index.tsx +0 -166
  305. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +0 -4
  306. package/dist/src/components/icons/svg-icons/ArrowLeftIcon.tsx +0 -18
  307. package/dist/src/components/icons/svg-icons/ArrowRightIcon.d.ts +0 -4
  308. package/dist/src/components/icons/svg-icons/ArrowRightIcon.tsx +0 -18
  309. package/dist/src/components/icons/svg-icons/AudioIcon.d.ts +0 -4
  310. package/dist/src/components/icons/svg-icons/AudioIcon.tsx +0 -22
  311. package/dist/src/components/icons/svg-icons/BackwardIcon.d.ts +0 -4
  312. package/dist/src/components/icons/svg-icons/BackwardIcon.tsx +0 -12
  313. package/dist/src/components/icons/svg-icons/CameraIcon.d.ts +0 -4
  314. package/dist/src/components/icons/svg-icons/CameraIcon.tsx +0 -19
  315. package/dist/src/components/icons/svg-icons/CheckIcon.d.ts +0 -4
  316. package/dist/src/components/icons/svg-icons/CheckIcon.tsx +0 -19
  317. package/dist/src/components/icons/svg-icons/EnablePiPIcon.d.ts +0 -4
  318. package/dist/src/components/icons/svg-icons/EnablePiPIcon.tsx +0 -17
  319. package/dist/src/components/icons/svg-icons/ForwardIcon.d.ts +0 -4
  320. package/dist/src/components/icons/svg-icons/ForwardIcon.tsx +0 -12
  321. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +0 -4
  322. package/dist/src/components/icons/svg-icons/FullscreenEnterIcon.tsx +0 -23
  323. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +0 -4
  324. package/dist/src/components/icons/svg-icons/FullscreenExitIcon.tsx +0 -23
  325. package/dist/src/components/icons/svg-icons/LoadingIcon.d.ts +0 -4
  326. package/dist/src/components/icons/svg-icons/LoadingIcon.tsx +0 -32
  327. package/dist/src/components/icons/svg-icons/PauseIcon.d.ts +0 -4
  328. package/dist/src/components/icons/svg-icons/PauseIcon.tsx +0 -23
  329. package/dist/src/components/icons/svg-icons/PlayIcon.d.ts +0 -4
  330. package/dist/src/components/icons/svg-icons/PlayIcon.tsx +0 -21
  331. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +0 -4
  332. package/dist/src/components/icons/svg-icons/PlaybackSpeedIcon.tsx +0 -23
  333. package/dist/src/components/icons/svg-icons/QualityIcon.d.ts +0 -4
  334. package/dist/src/components/icons/svg-icons/QualityIcon.tsx +0 -21
  335. package/dist/src/components/icons/svg-icons/SettingsIcon.d.ts +0 -4
  336. package/dist/src/components/icons/svg-icons/SettingsIcon.tsx +0 -12
  337. package/dist/src/components/icons/svg-icons/SliderIcon.d.ts +0 -4
  338. package/dist/src/components/icons/svg-icons/SliderIcon.tsx +0 -21
  339. package/dist/src/components/icons/svg-icons/SubtitleIcon.d.ts +0 -4
  340. package/dist/src/components/icons/svg-icons/SubtitleIcon.tsx +0 -21
  341. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +0 -4
  342. package/dist/src/components/icons/svg-icons/SubtitleOffIcon.tsx +0 -25
  343. package/dist/src/components/icons/svg-icons/UnPiPIcon.d.ts +0 -4
  344. package/dist/src/components/icons/svg-icons/UnPiPIcon.tsx +0 -17
  345. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +0 -4
  346. package/dist/src/components/icons/svg-icons/VolumeMutedIcon.tsx +0 -16
  347. package/dist/src/components/icons/svg-icons/VolumeOneIcon.d.ts +0 -4
  348. package/dist/src/components/icons/svg-icons/VolumeOneIcon.tsx +0 -22
  349. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +0 -4
  350. package/dist/src/components/icons/svg-icons/VolumeThreeIcon.tsx +0 -16
  351. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +0 -4
  352. package/dist/src/components/icons/svg-icons/VolumeTwoIcon.tsx +0 -16
  353. package/dist/src/components/legacy.d.ts +0 -13
  354. package/dist/src/components/legacy.tsx +0 -93
  355. package/dist/src/components/media-metadata-display.d.ts +0 -11
  356. package/dist/src/components/media-metadata-display.tsx +0 -100
  357. package/dist/src/components/media-player-audio.d.ts +0 -9
  358. package/dist/src/components/media-player-audio.tsx +0 -39
  359. package/dist/src/components/media-player-controls.d.ts +0 -23
  360. package/dist/src/components/media-player-controls.tsx +0 -226
  361. package/dist/src/components/media-player-error.d.ts +0 -16
  362. package/dist/src/components/media-player-error.tsx +0 -163
  363. package/dist/src/components/media-player-fullscreen.d.ts +0 -12
  364. package/dist/src/components/media-player-fullscreen.tsx +0 -109
  365. package/dist/src/components/media-player-hls.d.ts +0 -23
  366. package/dist/src/components/media-player-hls.tsx +0 -111
  367. package/dist/src/components/media-player-loading.d.ts +0 -12
  368. package/dist/src/components/media-player-loading.tsx +0 -76
  369. package/dist/src/components/media-player-play.d.ts +0 -11
  370. package/dist/src/components/media-player-play.tsx +0 -75
  371. package/dist/src/components/media-player-root.d.ts +0 -28
  372. package/dist/src/components/media-player-root.tsx +0 -340
  373. package/dist/src/components/media-player-seek.d.ts +0 -15
  374. package/dist/src/components/media-player-seek.tsx +0 -168
  375. package/dist/src/components/media-player-time.d.ts +0 -12
  376. package/dist/src/components/media-player-time.tsx +0 -99
  377. package/dist/src/components/media-player-tooltip.d.ts +0 -13
  378. package/dist/src/components/media-player-tooltip.tsx +0 -58
  379. package/dist/src/components/media-player-video.d.ts +0 -9
  380. package/dist/src/components/media-player-video.tsx +0 -39
  381. package/dist/src/components/media-player-volume.d.ts +0 -13
  382. package/dist/src/components/media-player-volume.tsx +0 -155
  383. package/dist/src/components/media-player.d.ts +0 -3
  384. package/dist/src/components/media-player.tsx +0 -257
  385. package/dist/src/components/media-suspense.d.ts +0 -78
  386. package/dist/src/components/media-suspense.tsx +0 -362
  387. package/dist/src/components/player-settings-form.d.ts +0 -8
  388. package/dist/src/components/player-settings-form.tsx +0 -163
  389. package/dist/src/components/react-player-wrapper.d.ts +0 -64
  390. package/dist/src/components/react-player-wrapper.tsx +0 -651
  391. package/dist/src/components/simple-video-player.d.ts +0 -9
  392. package/dist/src/components/simple-video-player.tsx +0 -60
  393. package/dist/src/components/ui/button.tsx +0 -49
  394. package/dist/src/components/ui/dropdown-menu.tsx +0 -137
  395. package/dist/src/components/ui/enhanced-seek-bar.d.ts +0 -3
  396. package/dist/src/components/ui/enhanced-seek-bar.tsx +0 -235
  397. package/dist/src/components/ui/fullscreen-button.d.ts +0 -3
  398. package/dist/src/components/ui/fullscreen-button.tsx +0 -60
  399. package/dist/src/components/ui/icons.tsx +0 -174
  400. package/dist/src/components/ui/media-resource-preloader.d.ts +0 -21
  401. package/dist/src/components/ui/media-resource-preloader.tsx +0 -393
  402. package/dist/src/components/ui/play-button.d.ts +0 -3
  403. package/dist/src/components/ui/play-button.tsx +0 -107
  404. package/dist/src/components/ui/seek-bar.d.ts +0 -3
  405. package/dist/src/components/ui/seek-bar.tsx +0 -161
  406. package/dist/src/components/ui/slider.tsx +0 -55
  407. package/dist/src/components/ui/time-display.d.ts +0 -3
  408. package/dist/src/components/ui/time-display.tsx +0 -40
  409. package/dist/src/components/ui/tooltip.tsx +0 -131
  410. package/dist/src/components/ui/volume-control.d.ts +0 -3
  411. package/dist/src/components/ui/volume-control.tsx +0 -143
  412. package/dist/src/components/unified/base-media-player.d.ts +0 -18
  413. package/dist/src/components/unified/base-media-player.tsx +0 -246
  414. package/dist/src/components/unified/media-player.d.ts +0 -37
  415. package/dist/src/components/unified/media-player.tsx +0 -75
  416. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +0 -42
  417. package/dist/src/components/variants/minimal/AccessibleMinimalPlayer.tsx +0 -561
  418. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +0 -44
  419. package/dist/src/components/variants/minimal/EnhancedMinimalMediaPlayer.tsx +0 -552
  420. package/dist/src/components/variants/minimal/MinimalControls.d.ts +0 -19
  421. package/dist/src/components/variants/minimal/MinimalControls.tsx +0 -142
  422. package/dist/src/components/variants/minimal/MinimalLoading.d.ts +0 -10
  423. package/dist/src/components/variants/minimal/MinimalLoading.tsx +0 -32
  424. package/dist/src/components/variants/minimal/MinimalMediaPlayer.d.ts +0 -38
  425. package/dist/src/components/variants/minimal/MinimalMediaPlayer.tsx +0 -315
  426. package/dist/src/components/variants/minimal/MinimalOverlay.d.ts +0 -11
  427. package/dist/src/components/variants/minimal/MinimalOverlay.tsx +0 -64
  428. package/dist/src/components/variants/minimal/MinimalPlayButton.d.ts +0 -9
  429. package/dist/src/components/variants/minimal/MinimalPlayButton.tsx +0 -65
  430. package/dist/src/components/variants/minimal/MinimalSeekBar.d.ts +0 -7
  431. package/dist/src/components/variants/minimal/MinimalSeekBar.tsx +0 -150
  432. package/dist/src/components/variants/minimal/MinimalVolumeControl.d.ts +0 -7
  433. package/dist/src/components/variants/minimal/MinimalVolumeControl.tsx +0 -80
  434. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +0 -22
  435. package/dist/src/components/variants/minimal/SimpleMinimalPlayer.tsx +0 -209
  436. package/dist/src/components/variants/minimal/components/CenterPlayButton.d.ts +0 -7
  437. package/dist/src/components/variants/minimal/components/CenterPlayButton.tsx +0 -22
  438. package/dist/src/components/variants/minimal/components/ControlBar.d.ts +0 -43
  439. package/dist/src/components/variants/minimal/components/ControlBar.tsx +0 -146
  440. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +0 -24
  441. package/dist/src/components/variants/minimal/components/EnhancedSettingsMenu.tsx +0 -361
  442. package/dist/src/components/variants/minimal/components/PlaybackControls.d.ts +0 -9
  443. package/dist/src/components/variants/minimal/components/PlaybackControls.tsx +0 -51
  444. package/dist/src/components/variants/minimal/components/RightControls.d.ts +0 -25
  445. package/dist/src/components/variants/minimal/components/RightControls.tsx +0 -173
  446. package/dist/src/components/variants/minimal/components/SeekBar.d.ts +0 -11
  447. package/dist/src/components/variants/minimal/components/SeekBar.tsx +0 -131
  448. package/dist/src/components/variants/minimal/components/SettingsDropdown.d.ts +0 -9
  449. package/dist/src/components/variants/minimal/components/SettingsDropdown.tsx +0 -70
  450. package/dist/src/components/variants/minimal/components/SubtitleDisplay.d.ts +0 -7
  451. package/dist/src/components/variants/minimal/components/SubtitleDisplay.tsx +0 -21
  452. package/dist/src/components/variants/minimal/components/TimeDisplay.d.ts +0 -7
  453. package/dist/src/components/variants/minimal/components/TimeDisplay.tsx +0 -18
  454. package/dist/src/components/variants/minimal/components/VideoElement.d.ts +0 -13
  455. package/dist/src/components/variants/minimal/components/VideoElement.tsx +0 -40
  456. package/dist/src/components/variants/minimal/components/VolumeControl.d.ts +0 -13
  457. package/dist/src/components/variants/minimal/components/VolumeControl.tsx +0 -217
  458. package/dist/src/components/variants/minimal/index.d.ts +0 -17
  459. package/dist/src/components/variants/minimal/index.ts +0 -23
  460. package/dist/src/components/video-player.d.ts +0 -3
  461. package/dist/src/components/video-player.tsx +0 -100
  462. package/dist/src/context/error-handling.d.ts +0 -72
  463. package/dist/src/context/error-handling.ts +0 -394
  464. package/dist/src/context/media-context.d.ts +0 -104
  465. package/dist/src/context/media-context.tsx +0 -208
  466. package/dist/src/context/media-provider.d.ts +0 -26
  467. package/dist/src/context/media-provider.tsx +0 -265
  468. package/dist/src/context/media-store.d.ts +0 -33
  469. package/dist/src/context/media-store.ts +0 -379
  470. package/dist/src/context/persistence.d.ts +0 -83
  471. package/dist/src/context/persistence.ts +0 -453
  472. package/dist/src/core/events/event-system.d.ts +0 -170
  473. package/dist/src/core/events/event-system.ts +0 -442
  474. package/dist/src/core/events/hooks.d.ts +0 -33
  475. package/dist/src/core/events/hooks.ts +0 -302
  476. package/dist/src/core/events/index.d.ts +0 -6
  477. package/dist/src/core/events/index.ts +0 -22
  478. package/dist/src/core/events/middleware.d.ts +0 -39
  479. package/dist/src/core/events/middleware.ts +0 -269
  480. package/dist/src/core/index.d.ts +0 -8
  481. package/dist/src/core/index.ts +0 -22
  482. package/dist/src/core/optimization/bundle-optimizer.d.ts +0 -44
  483. package/dist/src/core/optimization/bundle-optimizer.tsx +0 -308
  484. package/dist/src/core/performance/cicd.d.ts +0 -8
  485. package/dist/src/core/performance/cicd.ts +0 -96
  486. package/dist/src/core/performance/index.d.ts +0 -10
  487. package/dist/src/core/performance/index.ts +0 -38
  488. package/dist/src/core/performance/media-loading-optimizer.d.ts +0 -105
  489. package/dist/src/core/performance/media-loading-optimizer.ts +0 -538
  490. package/dist/src/core/performance/performance-budgets.d.ts +0 -68
  491. package/dist/src/core/performance/performance-budgets.ts +0 -432
  492. package/dist/src/core/performance/performance-monitor.d.ts +0 -95
  493. package/dist/src/core/performance/performance-monitor.tsx +0 -476
  494. package/dist/src/core/performance/performance-testing.d.ts +0 -69
  495. package/dist/src/core/performance/performance-testing.ts +0 -459
  496. package/dist/src/core/plugins/base-plugin.d.ts +0 -52
  497. package/dist/src/core/plugins/base-plugin.ts +0 -224
  498. package/dist/src/core/plugins/enhanced-plugin-system.d.ts +0 -160
  499. package/dist/src/core/plugins/enhanced-plugin-system.ts +0 -417
  500. package/dist/src/core/plugins/examples/analytics-plugin.d.ts +0 -30
  501. package/dist/src/core/plugins/examples/analytics-plugin.ts +0 -242
  502. package/dist/src/core/plugins/index.d.ts +0 -8
  503. package/dist/src/core/plugins/index.ts +0 -39
  504. package/dist/src/core/plugins/registry.d.ts +0 -31
  505. package/dist/src/core/plugins/registry.ts +0 -327
  506. package/dist/src/core/plugins/types.d.ts +0 -101
  507. package/dist/src/core/plugins/types.ts +0 -159
  508. package/dist/src/core/plugins/utils.d.ts +0 -38
  509. package/dist/src/core/plugins/utils.ts +0 -316
  510. package/dist/src/core/progressive-loading.d.ts +0 -88
  511. package/dist/src/core/progressive-loading.tsx +0 -322
  512. package/dist/src/core/providers/enhanced-hls-provider.d.ts +0 -50
  513. package/dist/src/core/providers/enhanced-hls-provider.ts +0 -308
  514. package/dist/src/core/providers/service-provider.d.ts +0 -49
  515. package/dist/src/core/providers/service-provider.tsx +0 -168
  516. package/dist/src/core/utils.d.ts +0 -25
  517. package/dist/src/core/utils.tsx +0 -38
  518. package/dist/src/features/media-session/media-session-manager.d.ts +0 -132
  519. package/dist/src/features/media-session/media-session-manager.ts +0 -429
  520. package/dist/src/features/picture-in-picture/pip-manager.d.ts +0 -94
  521. package/dist/src/features/picture-in-picture/pip-manager.ts +0 -429
  522. package/dist/src/features/playlist/playlist-manager.d.ts +0 -208
  523. package/dist/src/features/playlist/playlist-manager.ts +0 -606
  524. package/dist/src/features/subtitles/subtitle-manager.d.ts +0 -136
  525. package/dist/src/features/subtitles/subtitle-manager.ts +0 -441
  526. package/dist/src/features/subtitles/subtitle-parser.d.ts +0 -60
  527. package/dist/src/features/subtitles/subtitle-parser.ts +0 -280
  528. package/dist/src/features/thumbnails/thumbnail-generator.d.ts +0 -136
  529. package/dist/src/features/thumbnails/thumbnail-generator.ts +0 -519
  530. package/dist/src/hooks/accessibility/index.d.ts +0 -5
  531. package/dist/src/hooks/accessibility/index.ts +0 -27
  532. package/dist/src/hooks/accessibility/use-accessibility-preferences.d.ts +0 -14
  533. package/dist/src/hooks/accessibility/use-accessibility-preferences.ts +0 -188
  534. package/dist/src/hooks/accessibility/use-focus-management.d.ts +0 -31
  535. package/dist/src/hooks/accessibility/use-focus-management.ts +0 -176
  536. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +0 -38
  537. package/dist/src/hooks/accessibility/use-keyboard-shortcuts.ts +0 -144
  538. package/dist/src/hooks/accessibility/use-screen-reader.d.ts +0 -22
  539. package/dist/src/hooks/accessibility/use-screen-reader.ts +0 -182
  540. package/dist/src/hooks/core/index.d.ts +0 -18
  541. package/dist/src/hooks/core/index.ts +0 -47
  542. package/dist/src/hooks/legacy.d.ts +0 -18
  543. package/dist/src/hooks/legacy.ts +0 -27
  544. package/dist/src/hooks/use-enhanced-media-player.d.ts +0 -88
  545. package/dist/src/hooks/use-enhanced-media-player.ts +0 -485
  546. package/dist/src/hooks/use-intelligent-preloading.d.ts +0 -66
  547. package/dist/src/hooks/use-intelligent-preloading.ts +0 -363
  548. package/dist/src/hooks/use-keyboard-controls.d.ts +0 -13
  549. package/dist/src/hooks/use-keyboard-controls.ts +0 -115
  550. package/dist/src/hooks/use-media-actions.d.ts +0 -62
  551. package/dist/src/hooks/use-media-actions.ts +0 -175
  552. package/dist/src/hooks/use-media-metadata.d.ts +0 -11
  553. package/dist/src/hooks/use-media-metadata.ts +0 -89
  554. package/dist/src/hooks/use-media-optimistic.d.ts +0 -36
  555. package/dist/src/hooks/use-media-optimistic.ts +0 -270
  556. package/dist/src/hooks/use-media-player.d.ts +0 -31
  557. package/dist/src/hooks/use-media-player.ts +0 -310
  558. package/dist/src/hooks/use-media-state.d.ts +0 -17
  559. package/dist/src/hooks/use-media-state.ts +0 -190
  560. package/dist/src/hooks/use-memory-optimization.d.ts +0 -40
  561. package/dist/src/hooks/use-memory-optimization.ts +0 -358
  562. package/dist/src/hooks/use-mobile.ts +0 -125
  563. package/dist/src/hooks/use-optimistic-controls.d.ts +0 -22
  564. package/dist/src/hooks/use-optimistic-controls.ts +0 -92
  565. package/dist/src/hooks/use-optimized-media.d.ts +0 -46
  566. package/dist/src/hooks/use-optimized-media.ts +0 -263
  567. package/dist/src/hooks/use-touch-gestures.d.ts +0 -47
  568. package/dist/src/hooks/use-touch-gestures.ts +0 -417
  569. package/dist/src/hooks/useEnhancedSubtitles.d.ts +0 -39
  570. package/dist/src/hooks/useEnhancedSubtitles.ts +0 -258
  571. package/dist/src/hooks/useKeyboardShortcuts.d.ts +0 -10
  572. package/dist/src/hooks/useKeyboardShortcuts.ts +0 -74
  573. package/dist/src/hooks/useMediaControls.d.ts +0 -9
  574. package/dist/src/hooks/useMediaControls.ts +0 -52
  575. package/dist/src/hooks/useScreenshot.d.ts +0 -4
  576. package/dist/src/hooks/useScreenshot.ts +0 -57
  577. package/dist/src/hooks/useSubtitles.d.ts +0 -8
  578. package/dist/src/hooks/useSubtitles.ts +0 -91
  579. package/dist/src/hooks/useVideoPlayer.d.ts +0 -32
  580. package/dist/src/hooks/useVideoPlayer.ts +0 -232
  581. package/dist/src/icons/components/FullscreenIcon.d.ts +0 -3
  582. package/dist/src/icons/components/FullscreenIcon.tsx +0 -37
  583. package/dist/src/icons/components/SettingsIcon.d.ts +0 -3
  584. package/dist/src/icons/components/SettingsIcon.tsx +0 -38
  585. package/dist/src/icons/components/animated/LoadingIcon.d.ts +0 -3
  586. package/dist/src/icons/components/animated/LoadingIcon.tsx +0 -43
  587. package/dist/src/icons/components/animated/PlayPauseIcon.d.ts +0 -7
  588. package/dist/src/icons/components/animated/PlayPauseIcon.tsx +0 -50
  589. package/dist/src/icons/components/media/PauseIcon.d.ts +0 -3
  590. package/dist/src/icons/components/media/PauseIcon.tsx +0 -39
  591. package/dist/src/icons/components/media/PlayIcon.d.ts +0 -3
  592. package/dist/src/icons/components/media/PlayIcon.tsx +0 -38
  593. package/dist/src/icons/components/volume/VolumeIcon.d.ts +0 -3
  594. package/dist/src/icons/components/volume/VolumeIcon.tsx +0 -39
  595. package/dist/src/icons/components/volume/VolumeOffIcon.d.ts +0 -3
  596. package/dist/src/icons/components/volume/VolumeOffIcon.tsx +0 -39
  597. package/dist/src/icons/index.d.ts +0 -28
  598. package/dist/src/icons/index.ts +0 -56
  599. package/dist/src/icons/provider.d.ts +0 -13
  600. package/dist/src/icons/provider.tsx +0 -64
  601. package/dist/src/icons/types.d.ts +0 -18
  602. package/dist/src/icons/types.ts +0 -40
  603. package/dist/src/index-enhanced.d.ts +0 -13
  604. package/dist/src/index-enhanced.ts +0 -35
  605. package/dist/src/index-legacy.d.ts +0 -81
  606. package/dist/src/index-legacy.ts +0 -327
  607. package/dist/src/index.css +0 -102
  608. package/dist/src/index.d.ts +0 -38
  609. package/dist/src/index.minimal.d.ts +0 -2
  610. package/dist/src/index.minimal.ts +0 -4
  611. package/dist/src/index.ts +0 -216
  612. package/dist/src/lib/deprecation.d.ts +0 -7
  613. package/dist/src/lib/deprecation.ts +0 -51
  614. package/dist/src/lib/format-time.d.ts +0 -9
  615. package/dist/src/lib/format-time.ts +0 -37
  616. package/dist/src/lib/index.d.ts +0 -3
  617. package/dist/src/lib/index.ts +0 -3
  618. package/dist/src/lib/utils.d.ts +0 -3
  619. package/dist/src/lib/utils.ts +0 -6
  620. package/dist/src/styles/globals.css +0 -462
  621. package/dist/src/styles/minimal-player.css +0 -589
  622. package/dist/src/styles/pixel-art.css +0 -46
  623. package/dist/src/styles/videojs.css +0 -100
  624. package/dist/src/test/setup.d.ts +0 -2
  625. package/dist/src/test/setup.ts +0 -79
  626. package/dist/src/types/events.d.ts +0 -41
  627. package/dist/src/types/events.ts +0 -47
  628. package/dist/src/types/formats.d.ts +0 -45
  629. package/dist/src/types/formats.ts +0 -95
  630. package/dist/src/types/index.d.ts +0 -128
  631. package/dist/src/types/index.ts +0 -225
  632. package/dist/src/types/videojs-plugins.d.ts +0 -14
  633. package/dist/styles/globals.css +0 -462
  634. package/dist/styles/minimal-player.css +0 -589
  635. package/dist/styles/pixel-art.css +0 -46
  636. package/dist/styles/videojs.css +0 -100
  637. package/src/adapters/videojs-adapter.d.ts +0 -38
  638. package/src/adapters/videojs-adapter.d.ts.map +0 -1
  639. package/src/components/AnimateLoading.d.ts +0 -9
  640. package/src/components/AnimateLoading.d.ts.map +0 -1
  641. package/src/components/LoadingState.d.ts +0 -33
  642. package/src/components/LoadingState.d.ts.map +0 -1
  643. package/src/components/accessibility/keyboard-help-overlay.d.ts +0 -17
  644. package/src/components/accessibility/keyboard-help-overlay.d.ts.map +0 -1
  645. package/src/components/audio-player.d.ts +0 -3
  646. package/src/components/audio-player.d.ts.map +0 -1
  647. package/src/components/basic/index.d.ts +0 -26
  648. package/src/components/basic/index.d.ts.map +0 -1
  649. package/src/components/enhanced/advanced-features.d.ts +0 -45
  650. package/src/components/enhanced/advanced-features.d.ts.map +0 -1
  651. package/src/components/enhanced/debug-panel.d.ts +0 -70
  652. package/src/components/enhanced/debug-panel.d.ts.map +0 -1
  653. package/src/components/enhanced/enhanced-controls.d.ts +0 -50
  654. package/src/components/enhanced/enhanced-controls.d.ts.map +0 -1
  655. package/src/components/enhanced/enhanced-media-player.d.ts +0 -26
  656. package/src/components/enhanced/enhanced-media-player.d.ts.map +0 -1
  657. package/src/components/enhanced/error-handling.d.ts +0 -36
  658. package/src/components/enhanced/error-handling.d.ts.map +0 -1
  659. package/src/components/enhanced/index.d.ts +0 -7
  660. package/src/components/enhanced/index.d.ts.map +0 -1
  661. package/src/components/enhanced/media-player-enhanced.d.ts +0 -21
  662. package/src/components/enhanced/media-player-enhanced.d.ts.map +0 -1
  663. package/src/components/examples/basic-video-player.d.ts +0 -10
  664. package/src/components/examples/basic-video-player.d.ts.map +0 -1
  665. package/src/components/examples/custom-controls-example.d.ts +0 -10
  666. package/src/components/examples/custom-controls-example.d.ts.map +0 -1
  667. package/src/components/examples/enhanced-controls-example.d.ts +0 -9
  668. package/src/components/examples/enhanced-controls-example.d.ts.map +0 -1
  669. package/src/components/examples/enhanced-media-player-example.d.ts +0 -9
  670. package/src/components/examples/enhanced-media-player-example.d.ts.map +0 -1
  671. package/src/components/examples/loading-states-demo.d.ts +0 -2
  672. package/src/components/examples/loading-states-demo.d.ts.map +0 -1
  673. package/src/components/examples/react-19-demo.d.ts +0 -10
  674. package/src/components/examples/react-19-demo.d.ts.map +0 -1
  675. package/src/components/examples/volume-orientation-demo.d.ts +0 -2
  676. package/src/components/examples/volume-orientation-demo.d.ts.map +0 -1
  677. package/src/components/icon-demo.d.ts +0 -2
  678. package/src/components/icon-demo.d.ts.map +0 -1
  679. package/src/components/icons/index.d.ts +0 -36
  680. package/src/components/icons/index.d.ts.map +0 -1
  681. package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts +0 -4
  682. package/src/components/icons/svg-icons/ArrowLeftIcon.d.ts.map +0 -1
  683. package/src/components/icons/svg-icons/ArrowRightIcon.d.ts +0 -4
  684. package/src/components/icons/svg-icons/ArrowRightIcon.d.ts.map +0 -1
  685. package/src/components/icons/svg-icons/AudioIcon.d.ts +0 -4
  686. package/src/components/icons/svg-icons/AudioIcon.d.ts.map +0 -1
  687. package/src/components/icons/svg-icons/BackwardIcon.d.ts +0 -4
  688. package/src/components/icons/svg-icons/BackwardIcon.d.ts.map +0 -1
  689. package/src/components/icons/svg-icons/CameraIcon.d.ts +0 -4
  690. package/src/components/icons/svg-icons/CameraIcon.d.ts.map +0 -1
  691. package/src/components/icons/svg-icons/CheckIcon.d.ts +0 -4
  692. package/src/components/icons/svg-icons/CheckIcon.d.ts.map +0 -1
  693. package/src/components/icons/svg-icons/EnablePiPIcon.d.ts +0 -4
  694. package/src/components/icons/svg-icons/EnablePiPIcon.d.ts.map +0 -1
  695. package/src/components/icons/svg-icons/ForwardIcon.d.ts +0 -4
  696. package/src/components/icons/svg-icons/ForwardIcon.d.ts.map +0 -1
  697. package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts +0 -4
  698. package/src/components/icons/svg-icons/FullscreenEnterIcon.d.ts.map +0 -1
  699. package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts +0 -4
  700. package/src/components/icons/svg-icons/FullscreenExitIcon.d.ts.map +0 -1
  701. package/src/components/icons/svg-icons/LoadingIcon.d.ts +0 -4
  702. package/src/components/icons/svg-icons/LoadingIcon.d.ts.map +0 -1
  703. package/src/components/icons/svg-icons/PauseIcon.d.ts +0 -4
  704. package/src/components/icons/svg-icons/PauseIcon.d.ts.map +0 -1
  705. package/src/components/icons/svg-icons/PlayIcon.d.ts +0 -4
  706. package/src/components/icons/svg-icons/PlayIcon.d.ts.map +0 -1
  707. package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts +0 -4
  708. package/src/components/icons/svg-icons/PlaybackSpeedIcon.d.ts.map +0 -1
  709. package/src/components/icons/svg-icons/QualityIcon.d.ts +0 -4
  710. package/src/components/icons/svg-icons/QualityIcon.d.ts.map +0 -1
  711. package/src/components/icons/svg-icons/SettingsIcon.d.ts +0 -4
  712. package/src/components/icons/svg-icons/SettingsIcon.d.ts.map +0 -1
  713. package/src/components/icons/svg-icons/SliderIcon.d.ts +0 -4
  714. package/src/components/icons/svg-icons/SliderIcon.d.ts.map +0 -1
  715. package/src/components/icons/svg-icons/SubtitleIcon.d.ts +0 -4
  716. package/src/components/icons/svg-icons/SubtitleIcon.d.ts.map +0 -1
  717. package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts +0 -4
  718. package/src/components/icons/svg-icons/SubtitleOffIcon.d.ts.map +0 -1
  719. package/src/components/icons/svg-icons/UnPiPIcon.d.ts +0 -4
  720. package/src/components/icons/svg-icons/UnPiPIcon.d.ts.map +0 -1
  721. package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts +0 -4
  722. package/src/components/icons/svg-icons/VolumeMutedIcon.d.ts.map +0 -1
  723. package/src/components/icons/svg-icons/VolumeOneIcon.d.ts +0 -4
  724. package/src/components/icons/svg-icons/VolumeOneIcon.d.ts.map +0 -1
  725. package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts +0 -4
  726. package/src/components/icons/svg-icons/VolumeThreeIcon.d.ts.map +0 -1
  727. package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts +0 -4
  728. package/src/components/icons/svg-icons/VolumeTwoIcon.d.ts.map +0 -1
  729. package/src/components/legacy.d.ts +0 -13
  730. package/src/components/legacy.d.ts.map +0 -1
  731. package/src/components/media-metadata-display.d.ts +0 -11
  732. package/src/components/media-metadata-display.d.ts.map +0 -1
  733. package/src/components/media-player-audio.d.ts +0 -9
  734. package/src/components/media-player-audio.d.ts.map +0 -1
  735. package/src/components/media-player-controls.d.ts +0 -23
  736. package/src/components/media-player-controls.d.ts.map +0 -1
  737. package/src/components/media-player-error.d.ts +0 -16
  738. package/src/components/media-player-error.d.ts.map +0 -1
  739. package/src/components/media-player-fullscreen.d.ts +0 -12
  740. package/src/components/media-player-fullscreen.d.ts.map +0 -1
  741. package/src/components/media-player-hls.d.ts +0 -23
  742. package/src/components/media-player-hls.d.ts.map +0 -1
  743. package/src/components/media-player-loading.d.ts +0 -12
  744. package/src/components/media-player-loading.d.ts.map +0 -1
  745. package/src/components/media-player-play.d.ts +0 -11
  746. package/src/components/media-player-play.d.ts.map +0 -1
  747. package/src/components/media-player-root.d.ts +0 -28
  748. package/src/components/media-player-root.d.ts.map +0 -1
  749. package/src/components/media-player-seek.d.ts +0 -15
  750. package/src/components/media-player-seek.d.ts.map +0 -1
  751. package/src/components/media-player-time.d.ts +0 -12
  752. package/src/components/media-player-time.d.ts.map +0 -1
  753. package/src/components/media-player-tooltip.d.ts +0 -13
  754. package/src/components/media-player-tooltip.d.ts.map +0 -1
  755. package/src/components/media-player-video.d.ts +0 -9
  756. package/src/components/media-player-video.d.ts.map +0 -1
  757. package/src/components/media-player-volume.d.ts +0 -13
  758. package/src/components/media-player-volume.d.ts.map +0 -1
  759. package/src/components/media-player.d.ts +0 -3
  760. package/src/components/media-player.d.ts.map +0 -1
  761. package/src/components/media-suspense.d.ts +0 -78
  762. package/src/components/media-suspense.d.ts.map +0 -1
  763. package/src/components/player-settings-form.d.ts +0 -8
  764. package/src/components/player-settings-form.d.ts.map +0 -1
  765. package/src/components/react-player-wrapper.d.ts +0 -64
  766. package/src/components/react-player-wrapper.d.ts.map +0 -1
  767. package/src/components/simple-video-player.d.ts +0 -9
  768. package/src/components/simple-video-player.d.ts.map +0 -1
  769. package/src/components/ui/button.tsx +0 -49
  770. package/src/components/ui/dropdown-menu.tsx +0 -137
  771. package/src/components/ui/enhanced-seek-bar.d.ts +0 -3
  772. package/src/components/ui/enhanced-seek-bar.d.ts.map +0 -1
  773. package/src/components/ui/fullscreen-button.d.ts +0 -3
  774. package/src/components/ui/fullscreen-button.d.ts.map +0 -1
  775. package/src/components/ui/icons.tsx +0 -174
  776. package/src/components/ui/media-resource-preloader.d.ts +0 -21
  777. package/src/components/ui/media-resource-preloader.d.ts.map +0 -1
  778. package/src/components/ui/play-button.d.ts +0 -3
  779. package/src/components/ui/play-button.d.ts.map +0 -1
  780. package/src/components/ui/seek-bar.d.ts +0 -3
  781. package/src/components/ui/seek-bar.d.ts.map +0 -1
  782. package/src/components/ui/slider.tsx +0 -55
  783. package/src/components/ui/time-display.d.ts +0 -3
  784. package/src/components/ui/time-display.d.ts.map +0 -1
  785. package/src/components/ui/tooltip.tsx +0 -131
  786. package/src/components/ui/volume-control.d.ts +0 -3
  787. package/src/components/ui/volume-control.d.ts.map +0 -1
  788. package/src/components/unified/base-media-player.d.ts +0 -18
  789. package/src/components/unified/base-media-player.d.ts.map +0 -1
  790. package/src/components/unified/media-player.d.ts +0 -37
  791. package/src/components/unified/media-player.d.ts.map +0 -1
  792. package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts +0 -42
  793. package/src/components/variants/minimal/AccessibleMinimalPlayer.d.ts.map +0 -1
  794. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts +0 -44
  795. package/src/components/variants/minimal/EnhancedMinimalMediaPlayer.d.ts.map +0 -1
  796. package/src/components/variants/minimal/MinimalControls.d.ts +0 -19
  797. package/src/components/variants/minimal/MinimalControls.d.ts.map +0 -1
  798. package/src/components/variants/minimal/MinimalLoading.d.ts +0 -10
  799. package/src/components/variants/minimal/MinimalLoading.d.ts.map +0 -1
  800. package/src/components/variants/minimal/MinimalMediaPlayer.d.ts +0 -38
  801. package/src/components/variants/minimal/MinimalMediaPlayer.d.ts.map +0 -1
  802. package/src/components/variants/minimal/MinimalOverlay.d.ts +0 -11
  803. package/src/components/variants/minimal/MinimalOverlay.d.ts.map +0 -1
  804. package/src/components/variants/minimal/MinimalPlayButton.d.ts +0 -9
  805. package/src/components/variants/minimal/MinimalPlayButton.d.ts.map +0 -1
  806. package/src/components/variants/minimal/MinimalSeekBar.d.ts +0 -7
  807. package/src/components/variants/minimal/MinimalSeekBar.d.ts.map +0 -1
  808. package/src/components/variants/minimal/MinimalVolumeControl.d.ts +0 -7
  809. package/src/components/variants/minimal/MinimalVolumeControl.d.ts.map +0 -1
  810. package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts +0 -22
  811. package/src/components/variants/minimal/SimpleMinimalPlayer.d.ts.map +0 -1
  812. package/src/components/variants/minimal/components/CenterPlayButton.d.ts +0 -7
  813. package/src/components/variants/minimal/components/CenterPlayButton.d.ts.map +0 -1
  814. package/src/components/variants/minimal/components/ControlBar.d.ts +0 -43
  815. package/src/components/variants/minimal/components/ControlBar.d.ts.map +0 -1
  816. package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts +0 -24
  817. package/src/components/variants/minimal/components/EnhancedSettingsMenu.d.ts.map +0 -1
  818. package/src/components/variants/minimal/components/PlaybackControls.d.ts +0 -9
  819. package/src/components/variants/minimal/components/PlaybackControls.d.ts.map +0 -1
  820. package/src/components/variants/minimal/components/RightControls.d.ts +0 -25
  821. package/src/components/variants/minimal/components/RightControls.d.ts.map +0 -1
  822. package/src/components/variants/minimal/components/SeekBar.d.ts +0 -11
  823. package/src/components/variants/minimal/components/SeekBar.d.ts.map +0 -1
  824. package/src/components/variants/minimal/components/SettingsDropdown.d.ts +0 -9
  825. package/src/components/variants/minimal/components/SettingsDropdown.d.ts.map +0 -1
  826. package/src/components/variants/minimal/components/SubtitleDisplay.d.ts +0 -7
  827. package/src/components/variants/minimal/components/SubtitleDisplay.d.ts.map +0 -1
  828. package/src/components/variants/minimal/components/TimeDisplay.d.ts +0 -7
  829. package/src/components/variants/minimal/components/TimeDisplay.d.ts.map +0 -1
  830. package/src/components/variants/minimal/components/VideoElement.d.ts +0 -13
  831. package/src/components/variants/minimal/components/VideoElement.d.ts.map +0 -1
  832. package/src/components/variants/minimal/components/VolumeControl.d.ts +0 -13
  833. package/src/components/variants/minimal/components/VolumeControl.d.ts.map +0 -1
  834. package/src/components/variants/minimal/index.d.ts +0 -17
  835. package/src/components/variants/minimal/index.d.ts.map +0 -1
  836. package/src/components/video-player.d.ts +0 -3
  837. package/src/components/video-player.d.ts.map +0 -1
  838. package/src/context/error-handling.d.ts +0 -72
  839. package/src/context/error-handling.d.ts.map +0 -1
  840. package/src/context/media-context.d.ts +0 -104
  841. package/src/context/media-context.d.ts.map +0 -1
  842. package/src/context/media-provider.d.ts +0 -26
  843. package/src/context/media-provider.d.ts.map +0 -1
  844. package/src/context/media-store.d.ts +0 -33
  845. package/src/context/media-store.d.ts.map +0 -1
  846. package/src/context/persistence.d.ts +0 -83
  847. package/src/context/persistence.d.ts.map +0 -1
  848. package/src/core/events/event-system.d.ts +0 -170
  849. package/src/core/events/event-system.d.ts.map +0 -1
  850. package/src/core/events/hooks.d.ts +0 -33
  851. package/src/core/events/hooks.d.ts.map +0 -1
  852. package/src/core/events/index.d.ts +0 -6
  853. package/src/core/events/index.d.ts.map +0 -1
  854. package/src/core/events/middleware.d.ts +0 -39
  855. package/src/core/events/middleware.d.ts.map +0 -1
  856. package/src/core/index.d.ts +0 -8
  857. package/src/core/index.d.ts.map +0 -1
  858. package/src/core/optimization/bundle-optimizer.d.ts +0 -44
  859. package/src/core/optimization/bundle-optimizer.d.ts.map +0 -1
  860. package/src/core/performance/cicd.d.ts +0 -8
  861. package/src/core/performance/cicd.d.ts.map +0 -1
  862. package/src/core/performance/index.d.ts +0 -10
  863. package/src/core/performance/index.d.ts.map +0 -1
  864. package/src/core/performance/media-loading-optimizer.d.ts +0 -105
  865. package/src/core/performance/media-loading-optimizer.d.ts.map +0 -1
  866. package/src/core/performance/performance-budgets.d.ts +0 -68
  867. package/src/core/performance/performance-budgets.d.ts.map +0 -1
  868. package/src/core/performance/performance-monitor.d.ts +0 -95
  869. package/src/core/performance/performance-monitor.d.ts.map +0 -1
  870. package/src/core/performance/performance-testing.d.ts +0 -69
  871. package/src/core/performance/performance-testing.d.ts.map +0 -1
  872. package/src/core/plugins/base-plugin.d.ts +0 -52
  873. package/src/core/plugins/base-plugin.d.ts.map +0 -1
  874. package/src/core/plugins/enhanced-plugin-system.d.ts +0 -160
  875. package/src/core/plugins/enhanced-plugin-system.d.ts.map +0 -1
  876. package/src/core/plugins/examples/analytics-plugin.d.ts +0 -30
  877. package/src/core/plugins/examples/analytics-plugin.d.ts.map +0 -1
  878. package/src/core/plugins/index.d.ts +0 -8
  879. package/src/core/plugins/index.d.ts.map +0 -1
  880. package/src/core/plugins/registry.d.ts +0 -31
  881. package/src/core/plugins/registry.d.ts.map +0 -1
  882. package/src/core/plugins/types.d.ts +0 -101
  883. package/src/core/plugins/types.d.ts.map +0 -1
  884. package/src/core/plugins/utils.d.ts +0 -38
  885. package/src/core/plugins/utils.d.ts.map +0 -1
  886. package/src/core/progressive-loading.d.ts +0 -88
  887. package/src/core/progressive-loading.d.ts.map +0 -1
  888. package/src/core/providers/enhanced-hls-provider.d.ts +0 -50
  889. package/src/core/providers/enhanced-hls-provider.d.ts.map +0 -1
  890. package/src/core/providers/service-provider.d.ts +0 -49
  891. package/src/core/providers/service-provider.d.ts.map +0 -1
  892. package/src/core/utils.d.ts +0 -25
  893. package/src/core/utils.d.ts.map +0 -1
  894. package/src/features/media-session/media-session-manager.d.ts +0 -132
  895. package/src/features/media-session/media-session-manager.d.ts.map +0 -1
  896. package/src/features/picture-in-picture/pip-manager.d.ts +0 -94
  897. package/src/features/picture-in-picture/pip-manager.d.ts.map +0 -1
  898. package/src/features/playlist/playlist-manager.d.ts +0 -208
  899. package/src/features/playlist/playlist-manager.d.ts.map +0 -1
  900. package/src/features/subtitles/subtitle-manager.d.ts +0 -136
  901. package/src/features/subtitles/subtitle-manager.d.ts.map +0 -1
  902. package/src/features/subtitles/subtitle-parser.d.ts +0 -60
  903. package/src/features/subtitles/subtitle-parser.d.ts.map +0 -1
  904. package/src/features/thumbnails/thumbnail-generator.d.ts +0 -136
  905. package/src/features/thumbnails/thumbnail-generator.d.ts.map +0 -1
  906. package/src/hooks/accessibility/index.d.ts +0 -5
  907. package/src/hooks/accessibility/index.d.ts.map +0 -1
  908. package/src/hooks/accessibility/use-accessibility-preferences.d.ts +0 -14
  909. package/src/hooks/accessibility/use-accessibility-preferences.d.ts.map +0 -1
  910. package/src/hooks/accessibility/use-focus-management.d.ts +0 -31
  911. package/src/hooks/accessibility/use-focus-management.d.ts.map +0 -1
  912. package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts +0 -38
  913. package/src/hooks/accessibility/use-keyboard-shortcuts.d.ts.map +0 -1
  914. package/src/hooks/accessibility/use-screen-reader.d.ts +0 -22
  915. package/src/hooks/accessibility/use-screen-reader.d.ts.map +0 -1
  916. package/src/hooks/core/index.d.ts +0 -18
  917. package/src/hooks/core/index.d.ts.map +0 -1
  918. package/src/hooks/legacy.d.ts +0 -18
  919. package/src/hooks/legacy.d.ts.map +0 -1
  920. package/src/hooks/use-enhanced-media-player.d.ts +0 -88
  921. package/src/hooks/use-enhanced-media-player.d.ts.map +0 -1
  922. package/src/hooks/use-intelligent-preloading.d.ts +0 -66
  923. package/src/hooks/use-intelligent-preloading.d.ts.map +0 -1
  924. package/src/hooks/use-keyboard-controls.d.ts +0 -13
  925. package/src/hooks/use-keyboard-controls.d.ts.map +0 -1
  926. package/src/hooks/use-media-actions.d.ts +0 -62
  927. package/src/hooks/use-media-actions.d.ts.map +0 -1
  928. package/src/hooks/use-media-metadata.d.ts +0 -11
  929. package/src/hooks/use-media-metadata.d.ts.map +0 -1
  930. package/src/hooks/use-media-optimistic.d.ts +0 -36
  931. package/src/hooks/use-media-optimistic.d.ts.map +0 -1
  932. package/src/hooks/use-media-player.d.ts +0 -31
  933. package/src/hooks/use-media-player.d.ts.map +0 -1
  934. package/src/hooks/use-media-state.d.ts +0 -17
  935. package/src/hooks/use-media-state.d.ts.map +0 -1
  936. package/src/hooks/use-memory-optimization.d.ts +0 -40
  937. package/src/hooks/use-memory-optimization.d.ts.map +0 -1
  938. package/src/hooks/use-mobile.ts +0 -125
  939. package/src/hooks/use-optimistic-controls.d.ts +0 -22
  940. package/src/hooks/use-optimistic-controls.d.ts.map +0 -1
  941. package/src/hooks/use-optimized-media.d.ts +0 -46
  942. package/src/hooks/use-optimized-media.d.ts.map +0 -1
  943. package/src/hooks/use-touch-gestures.d.ts +0 -47
  944. package/src/hooks/use-touch-gestures.d.ts.map +0 -1
  945. package/src/hooks/useEnhancedSubtitles.d.ts +0 -39
  946. package/src/hooks/useEnhancedSubtitles.d.ts.map +0 -1
  947. package/src/hooks/useKeyboardShortcuts.d.ts +0 -10
  948. package/src/hooks/useKeyboardShortcuts.d.ts.map +0 -1
  949. package/src/hooks/useMediaControls.d.ts +0 -9
  950. package/src/hooks/useMediaControls.d.ts.map +0 -1
  951. package/src/hooks/useScreenshot.d.ts +0 -4
  952. package/src/hooks/useScreenshot.d.ts.map +0 -1
  953. package/src/hooks/useSubtitles.d.ts +0 -8
  954. package/src/hooks/useSubtitles.d.ts.map +0 -1
  955. package/src/hooks/useVideoPlayer.d.ts +0 -32
  956. package/src/hooks/useVideoPlayer.d.ts.map +0 -1
  957. package/src/icons/components/FullscreenIcon.d.ts +0 -3
  958. package/src/icons/components/FullscreenIcon.d.ts.map +0 -1
  959. package/src/icons/components/SettingsIcon.d.ts +0 -3
  960. package/src/icons/components/SettingsIcon.d.ts.map +0 -1
  961. package/src/icons/components/animated/LoadingIcon.d.ts +0 -3
  962. package/src/icons/components/animated/LoadingIcon.d.ts.map +0 -1
  963. package/src/icons/components/animated/PlayPauseIcon.d.ts +0 -7
  964. package/src/icons/components/animated/PlayPauseIcon.d.ts.map +0 -1
  965. package/src/icons/components/media/PauseIcon.d.ts +0 -3
  966. package/src/icons/components/media/PauseIcon.d.ts.map +0 -1
  967. package/src/icons/components/media/PlayIcon.d.ts +0 -3
  968. package/src/icons/components/media/PlayIcon.d.ts.map +0 -1
  969. package/src/icons/components/volume/VolumeIcon.d.ts +0 -3
  970. package/src/icons/components/volume/VolumeIcon.d.ts.map +0 -1
  971. package/src/icons/components/volume/VolumeOffIcon.d.ts +0 -3
  972. package/src/icons/components/volume/VolumeOffIcon.d.ts.map +0 -1
  973. package/src/icons/index.d.ts +0 -28
  974. package/src/icons/index.d.ts.map +0 -1
  975. package/src/icons/provider.d.ts +0 -13
  976. package/src/icons/provider.d.ts.map +0 -1
  977. package/src/icons/types.d.ts +0 -18
  978. package/src/icons/types.d.ts.map +0 -1
  979. package/src/index-enhanced.d.ts +0 -13
  980. package/src/index-enhanced.d.ts.map +0 -1
  981. package/src/index-legacy.d.ts +0 -81
  982. package/src/index-legacy.d.ts.map +0 -1
  983. package/src/index.d.ts +0 -38
  984. package/src/index.d.ts.map +0 -1
  985. package/src/index.minimal.d.ts +0 -2
  986. package/src/index.minimal.d.ts.map +0 -1
  987. package/src/index.minimal.ts +0 -4
  988. package/src/lib/deprecation.d.ts +0 -7
  989. package/src/lib/deprecation.d.ts.map +0 -1
  990. package/src/lib/format-time.d.ts +0 -9
  991. package/src/lib/format-time.d.ts.map +0 -1
  992. package/src/lib/index.d.ts +0 -3
  993. package/src/lib/index.d.ts.map +0 -1
  994. package/src/lib/utils.d.ts +0 -3
  995. package/src/lib/utils.d.ts.map +0 -1
  996. package/src/test/setup.d.ts +0 -2
  997. package/src/test/setup.d.ts.map +0 -1
  998. package/src/types/events.d.ts +0 -41
  999. package/src/types/events.d.ts.map +0 -1
  1000. package/src/types/formats.d.ts +0 -45
  1001. package/src/types/formats.d.ts.map +0 -1
  1002. package/src/types/index.d.ts +0 -128
  1003. package/src/types/index.d.ts.map +0 -1
@@ -0,0 +1,2844 @@
1
+ function xe(e) {
2
+ var r, t, o = "";
3
+ if (typeof e == "string" || typeof e == "number") o += e;
4
+ else if (typeof e == "object") if (Array.isArray(e)) {
5
+ var a = e.length;
6
+ for (r = 0; r < a; r++) e[r] && (t = xe(e[r])) && (o && (o += " "), o += t);
7
+ } else for (t in e) e[t] && (o && (o += " "), o += t);
8
+ return o;
9
+ }
10
+ function ye() {
11
+ for (var e, r, t = 0, o = "", a = arguments.length; t < a; t++) (e = arguments[t]) && (r = xe(e)) && (o && (o += " "), o += r);
12
+ return o;
13
+ }
14
+ const ne = "-", Ge = (e) => {
15
+ const r = Ee(e), {
16
+ conflictingClassGroups: t,
17
+ conflictingClassGroupModifiers: o
18
+ } = e;
19
+ return {
20
+ getClassGroupId: (l) => {
21
+ const p = l.split(ne);
22
+ return p[0] === "" && p.length !== 1 && p.shift(), ke(p, r) || Ne(l);
23
+ },
24
+ getConflictingClassGroupIds: (l, p) => {
25
+ const m = t[l] || [];
26
+ return p && o[l] ? [...m, ...o[l]] : m;
27
+ }
28
+ };
29
+ }, ke = (e, r) => {
30
+ if (e.length === 0)
31
+ return r.classGroupId;
32
+ const t = e[0], o = r.nextPart.get(t), a = o ? ke(e.slice(1), o) : void 0;
33
+ if (a)
34
+ return a;
35
+ if (r.validators.length === 0)
36
+ return;
37
+ const i = e.join(ne);
38
+ return r.validators.find(({
39
+ validator: l
40
+ }) => l(i))?.classGroupId;
41
+ }, fe = /^\[(.+)\]$/, Ne = (e) => {
42
+ if (fe.test(e)) {
43
+ const r = fe.exec(e)[1], t = r?.substring(0, r.indexOf(":"));
44
+ if (t)
45
+ return "arbitrary.." + t;
46
+ }
47
+ }, Ee = (e) => {
48
+ const {
49
+ theme: r,
50
+ classGroups: t
51
+ } = e, o = {
52
+ nextPart: /* @__PURE__ */ new Map(),
53
+ validators: []
54
+ };
55
+ for (const a in t)
56
+ re(t[a], o, a, r);
57
+ return o;
58
+ }, re = (e, r, t, o) => {
59
+ e.forEach((a) => {
60
+ if (typeof a == "string") {
61
+ const i = a === "" ? r : ge(r, a);
62
+ i.classGroupId = t;
63
+ return;
64
+ }
65
+ if (typeof a == "function") {
66
+ if ($e(a)) {
67
+ re(a(o), r, t, o);
68
+ return;
69
+ }
70
+ r.validators.push({
71
+ validator: a,
72
+ classGroupId: t
73
+ });
74
+ return;
75
+ }
76
+ Object.entries(a).forEach(([i, l]) => {
77
+ re(l, ge(r, i), t, o);
78
+ });
79
+ });
80
+ }, ge = (e, r) => {
81
+ let t = e;
82
+ return r.split(ne).forEach((o) => {
83
+ t.nextPart.has(o) || t.nextPart.set(o, {
84
+ nextPart: /* @__PURE__ */ new Map(),
85
+ validators: []
86
+ }), t = t.nextPart.get(o);
87
+ }), t;
88
+ }, $e = (e) => e.isThemeGetter, Le = (e) => {
89
+ if (e < 1)
90
+ return {
91
+ get: () => {
92
+ },
93
+ set: () => {
94
+ }
95
+ };
96
+ let r = 0, t = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
97
+ const a = (i, l) => {
98
+ t.set(i, l), r++, r > e && (r = 0, o = t, t = /* @__PURE__ */ new Map());
99
+ };
100
+ return {
101
+ get(i) {
102
+ let l = t.get(i);
103
+ if (l !== void 0)
104
+ return l;
105
+ if ((l = o.get(i)) !== void 0)
106
+ return a(i, l), l;
107
+ },
108
+ set(i, l) {
109
+ t.has(i) ? t.set(i, l) : a(i, l);
110
+ }
111
+ };
112
+ }, te = "!", se = ":", Ve = se.length, je = (e) => {
113
+ const {
114
+ prefix: r,
115
+ experimentalParseClassName: t
116
+ } = e;
117
+ let o = (a) => {
118
+ const i = [];
119
+ let l = 0, p = 0, m = 0, f;
120
+ for (let y = 0; y < a.length; y++) {
121
+ let k = a[y];
122
+ if (l === 0 && p === 0) {
123
+ if (k === se) {
124
+ i.push(a.slice(m, y)), m = y + Ve;
125
+ continue;
126
+ }
127
+ if (k === "/") {
128
+ f = y;
129
+ continue;
130
+ }
131
+ }
132
+ k === "[" ? l++ : k === "]" ? l-- : k === "(" ? p++ : k === ")" && p--;
133
+ }
134
+ const g = i.length === 0 ? a : a.substring(m), v = Oe(g), j = v !== g, O = f && f > m ? f - m : void 0;
135
+ return {
136
+ modifiers: i,
137
+ hasImportantModifier: j,
138
+ baseClassName: v,
139
+ maybePostfixModifierPosition: O
140
+ };
141
+ };
142
+ if (r) {
143
+ const a = r + se, i = o;
144
+ o = (l) => l.startsWith(a) ? i(l.substring(a.length)) : {
145
+ isExternal: !0,
146
+ modifiers: [],
147
+ hasImportantModifier: !1,
148
+ baseClassName: l,
149
+ maybePostfixModifierPosition: void 0
150
+ };
151
+ }
152
+ if (t) {
153
+ const a = o;
154
+ o = (i) => t({
155
+ className: i,
156
+ parseClassName: a
157
+ });
158
+ }
159
+ return o;
160
+ }, Oe = (e) => e.endsWith(te) ? e.substring(0, e.length - 1) : e.startsWith(te) ? e.substring(1) : e, Fe = (e) => {
161
+ const r = Object.fromEntries(e.orderSensitiveModifiers.map((o) => [o, !0]));
162
+ return (o) => {
163
+ if (o.length <= 1)
164
+ return o;
165
+ const a = [];
166
+ let i = [];
167
+ return o.forEach((l) => {
168
+ l[0] === "[" || r[l] ? (a.push(...i.sort(), l), i = []) : i.push(l);
169
+ }), a.push(...i.sort()), a;
170
+ };
171
+ }, We = (e) => ({
172
+ cache: Le(e.cacheSize),
173
+ parseClassName: je(e),
174
+ sortModifiers: Fe(e),
175
+ ...Ge(e)
176
+ }), Be = /\s+/, Ue = (e, r) => {
177
+ const {
178
+ parseClassName: t,
179
+ getClassGroupId: o,
180
+ getConflictingClassGroupIds: a,
181
+ sortModifiers: i
182
+ } = r, l = [], p = e.trim().split(Be);
183
+ let m = "";
184
+ for (let f = p.length - 1; f >= 0; f -= 1) {
185
+ const g = p[f], {
186
+ isExternal: v,
187
+ modifiers: j,
188
+ hasImportantModifier: O,
189
+ baseClassName: y,
190
+ maybePostfixModifierPosition: k
191
+ } = t(g);
192
+ if (v) {
193
+ m = g + (m.length > 0 ? " " + m : m);
194
+ continue;
195
+ }
196
+ let T = !!k, M = o(T ? y.substring(0, k) : y);
197
+ if (!M) {
198
+ if (!T) {
199
+ m = g + (m.length > 0 ? " " + m : m);
200
+ continue;
201
+ }
202
+ if (M = o(y), !M) {
203
+ m = g + (m.length > 0 ? " " + m : m);
204
+ continue;
205
+ }
206
+ T = !1;
207
+ }
208
+ const U = i(j).join(":"), F = O ? U + te : U, G = F + M;
209
+ if (l.includes(G))
210
+ continue;
211
+ l.push(G);
212
+ const N = a(M, T);
213
+ for (let I = 0; I < N.length; ++I) {
214
+ const W = N[I];
215
+ l.push(F + W);
216
+ }
217
+ m = g + (m.length > 0 ? " " + m : m);
218
+ }
219
+ return m;
220
+ };
221
+ function _e() {
222
+ let e = 0, r, t, o = "";
223
+ for (; e < arguments.length; )
224
+ (r = arguments[e++]) && (t = ve(r)) && (o && (o += " "), o += t);
225
+ return o;
226
+ }
227
+ const ve = (e) => {
228
+ if (typeof e == "string")
229
+ return e;
230
+ let r, t = "";
231
+ for (let o = 0; o < e.length; o++)
232
+ e[o] && (r = ve(e[o])) && (t && (t += " "), t += r);
233
+ return t;
234
+ };
235
+ function De(e, ...r) {
236
+ let t, o, a, i = l;
237
+ function l(m) {
238
+ const f = r.reduce((g, v) => v(g), e());
239
+ return t = We(f), o = t.cache.get, a = t.cache.set, i = p, p(m);
240
+ }
241
+ function p(m) {
242
+ const f = o(m);
243
+ if (f)
244
+ return f;
245
+ const g = Ue(m, t);
246
+ return a(m, g), g;
247
+ }
248
+ return function() {
249
+ return i(_e.apply(null, arguments));
250
+ };
251
+ }
252
+ const b = (e) => {
253
+ const r = (t) => t[e] || [];
254
+ return r.isThemeGetter = !0, r;
255
+ }, ze = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Ce = /^\((?:(\w[\w-]*):)?(.+)\)$/i, qe = /^\d+\/\d+$/, Ze = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, He = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, Je = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/, Ke = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Xe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, $ = (e) => qe.test(e), u = (e) => !!e && !Number.isNaN(Number(e)), A = (e) => !!e && Number.isInteger(Number(e)), ee = (e) => e.endsWith("%") && u(e.slice(0, -1)), S = (e) => Ze.test(e), Qe = () => !0, Ye = (e) => (
256
+ // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
257
+ // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
258
+ // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
259
+ He.test(e) && !Je.test(e)
260
+ ), Se = () => !1, eo = (e) => Ke.test(e), oo = (e) => Xe.test(e), ro = (e) => !s(e) && !n(e), to = (e) => L(e, Ie, Se), s = (e) => ze.test(e), R = (e) => L(e, Pe, Ye), oe = (e) => L(e, lo, u), be = (e) => L(e, Ae, Se), so = (e) => L(e, Me, oo), J = (e) => L(e, Re, eo), n = (e) => Ce.test(e), B = (e) => V(e, Pe), no = (e) => V(e, co), he = (e) => V(e, Ae), ao = (e) => V(e, Ie), io = (e) => V(e, Me), K = (e) => V(e, Re, !0), L = (e, r, t) => {
261
+ const o = ze.exec(e);
262
+ return o ? o[1] ? r(o[1]) : t(o[2]) : !1;
263
+ }, V = (e, r, t = !1) => {
264
+ const o = Ce.exec(e);
265
+ return o ? o[1] ? r(o[1]) : t : !1;
266
+ }, Ae = (e) => e === "position" || e === "percentage", Me = (e) => e === "image" || e === "url", Ie = (e) => e === "length" || e === "size" || e === "bg-size", Pe = (e) => e === "length", lo = (e) => e === "number", co = (e) => e === "family-name", Re = (e) => e === "shadow", mo = () => {
267
+ const e = b("color"), r = b("font"), t = b("text"), o = b("font-weight"), a = b("tracking"), i = b("leading"), l = b("breakpoint"), p = b("container"), m = b("spacing"), f = b("radius"), g = b("shadow"), v = b("inset-shadow"), j = b("text-shadow"), O = b("drop-shadow"), y = b("blur"), k = b("perspective"), T = b("aspect"), M = b("ease"), U = b("animate"), F = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], G = () => [
268
+ "center",
269
+ "top",
270
+ "bottom",
271
+ "left",
272
+ "right",
273
+ "top-left",
274
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
275
+ "left-top",
276
+ "top-right",
277
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
278
+ "right-top",
279
+ "bottom-right",
280
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
281
+ "right-bottom",
282
+ "bottom-left",
283
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
284
+ "left-bottom"
285
+ ], N = () => [...G(), n, s], I = () => ["auto", "hidden", "clip", "visible", "scroll"], W = () => ["auto", "contain", "none"], d = () => [n, s, m], z = () => [$, "full", "auto", ...d()], ae = () => [A, "none", "subgrid", n, s], ie = () => ["auto", {
286
+ span: ["full", A, n, s]
287
+ }, A, n, s], _ = () => [A, "auto", n, s], le = () => ["auto", "min", "max", "fr", n, s], X = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], E = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], C = () => ["auto", ...d()], P = () => [$, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...d()], c = () => [e, n, s], ce = () => [...G(), he, be, {
288
+ position: [n, s]
289
+ }], de = () => ["no-repeat", {
290
+ repeat: ["", "x", "y", "space", "round"]
291
+ }], me = () => ["auto", "cover", "contain", ao, to, {
292
+ size: [n, s]
293
+ }], Q = () => [ee, B, R], w = () => [
294
+ // Deprecated since Tailwind CSS v4.0.0
295
+ "",
296
+ "none",
297
+ "full",
298
+ f,
299
+ n,
300
+ s
301
+ ], x = () => ["", u, B, R], D = () => ["solid", "dashed", "dotted", "double"], ue = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], h = () => [u, ee, he, be], pe = () => [
302
+ // Deprecated since Tailwind CSS v4.0.0
303
+ "",
304
+ "none",
305
+ y,
306
+ n,
307
+ s
308
+ ], q = () => ["none", u, n, s], Z = () => ["none", u, n, s], Y = () => [u, n, s], H = () => [$, "full", ...d()];
309
+ return {
310
+ cacheSize: 500,
311
+ theme: {
312
+ animate: ["spin", "ping", "pulse", "bounce"],
313
+ aspect: ["video"],
314
+ blur: [S],
315
+ breakpoint: [S],
316
+ color: [Qe],
317
+ container: [S],
318
+ "drop-shadow": [S],
319
+ ease: ["in", "out", "in-out"],
320
+ font: [ro],
321
+ "font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
322
+ "inset-shadow": [S],
323
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
324
+ perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
325
+ radius: [S],
326
+ shadow: [S],
327
+ spacing: ["px", u],
328
+ text: [S],
329
+ "text-shadow": [S],
330
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
331
+ },
332
+ classGroups: {
333
+ // --------------
334
+ // --- Layout ---
335
+ // --------------
336
+ /**
337
+ * Aspect Ratio
338
+ * @see https://tailwindcss.com/docs/aspect-ratio
339
+ */
340
+ aspect: [{
341
+ aspect: ["auto", "square", $, s, n, T]
342
+ }],
343
+ /**
344
+ * Container
345
+ * @see https://tailwindcss.com/docs/container
346
+ * @deprecated since Tailwind CSS v4.0.0
347
+ */
348
+ container: ["container"],
349
+ /**
350
+ * Columns
351
+ * @see https://tailwindcss.com/docs/columns
352
+ */
353
+ columns: [{
354
+ columns: [u, s, n, p]
355
+ }],
356
+ /**
357
+ * Break After
358
+ * @see https://tailwindcss.com/docs/break-after
359
+ */
360
+ "break-after": [{
361
+ "break-after": F()
362
+ }],
363
+ /**
364
+ * Break Before
365
+ * @see https://tailwindcss.com/docs/break-before
366
+ */
367
+ "break-before": [{
368
+ "break-before": F()
369
+ }],
370
+ /**
371
+ * Break Inside
372
+ * @see https://tailwindcss.com/docs/break-inside
373
+ */
374
+ "break-inside": [{
375
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
376
+ }],
377
+ /**
378
+ * Box Decoration Break
379
+ * @see https://tailwindcss.com/docs/box-decoration-break
380
+ */
381
+ "box-decoration": [{
382
+ "box-decoration": ["slice", "clone"]
383
+ }],
384
+ /**
385
+ * Box Sizing
386
+ * @see https://tailwindcss.com/docs/box-sizing
387
+ */
388
+ box: [{
389
+ box: ["border", "content"]
390
+ }],
391
+ /**
392
+ * Display
393
+ * @see https://tailwindcss.com/docs/display
394
+ */
395
+ display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
396
+ /**
397
+ * Screen Reader Only
398
+ * @see https://tailwindcss.com/docs/display#screen-reader-only
399
+ */
400
+ sr: ["sr-only", "not-sr-only"],
401
+ /**
402
+ * Floats
403
+ * @see https://tailwindcss.com/docs/float
404
+ */
405
+ float: [{
406
+ float: ["right", "left", "none", "start", "end"]
407
+ }],
408
+ /**
409
+ * Clear
410
+ * @see https://tailwindcss.com/docs/clear
411
+ */
412
+ clear: [{
413
+ clear: ["left", "right", "both", "none", "start", "end"]
414
+ }],
415
+ /**
416
+ * Isolation
417
+ * @see https://tailwindcss.com/docs/isolation
418
+ */
419
+ isolation: ["isolate", "isolation-auto"],
420
+ /**
421
+ * Object Fit
422
+ * @see https://tailwindcss.com/docs/object-fit
423
+ */
424
+ "object-fit": [{
425
+ object: ["contain", "cover", "fill", "none", "scale-down"]
426
+ }],
427
+ /**
428
+ * Object Position
429
+ * @see https://tailwindcss.com/docs/object-position
430
+ */
431
+ "object-position": [{
432
+ object: N()
433
+ }],
434
+ /**
435
+ * Overflow
436
+ * @see https://tailwindcss.com/docs/overflow
437
+ */
438
+ overflow: [{
439
+ overflow: I()
440
+ }],
441
+ /**
442
+ * Overflow X
443
+ * @see https://tailwindcss.com/docs/overflow
444
+ */
445
+ "overflow-x": [{
446
+ "overflow-x": I()
447
+ }],
448
+ /**
449
+ * Overflow Y
450
+ * @see https://tailwindcss.com/docs/overflow
451
+ */
452
+ "overflow-y": [{
453
+ "overflow-y": I()
454
+ }],
455
+ /**
456
+ * Overscroll Behavior
457
+ * @see https://tailwindcss.com/docs/overscroll-behavior
458
+ */
459
+ overscroll: [{
460
+ overscroll: W()
461
+ }],
462
+ /**
463
+ * Overscroll Behavior X
464
+ * @see https://tailwindcss.com/docs/overscroll-behavior
465
+ */
466
+ "overscroll-x": [{
467
+ "overscroll-x": W()
468
+ }],
469
+ /**
470
+ * Overscroll Behavior Y
471
+ * @see https://tailwindcss.com/docs/overscroll-behavior
472
+ */
473
+ "overscroll-y": [{
474
+ "overscroll-y": W()
475
+ }],
476
+ /**
477
+ * Position
478
+ * @see https://tailwindcss.com/docs/position
479
+ */
480
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
481
+ /**
482
+ * Top / Right / Bottom / Left
483
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
484
+ */
485
+ inset: [{
486
+ inset: z()
487
+ }],
488
+ /**
489
+ * Right / Left
490
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
491
+ */
492
+ "inset-x": [{
493
+ "inset-x": z()
494
+ }],
495
+ /**
496
+ * Top / Bottom
497
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
498
+ */
499
+ "inset-y": [{
500
+ "inset-y": z()
501
+ }],
502
+ /**
503
+ * Start
504
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
505
+ */
506
+ start: [{
507
+ start: z()
508
+ }],
509
+ /**
510
+ * End
511
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
512
+ */
513
+ end: [{
514
+ end: z()
515
+ }],
516
+ /**
517
+ * Top
518
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
519
+ */
520
+ top: [{
521
+ top: z()
522
+ }],
523
+ /**
524
+ * Right
525
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
526
+ */
527
+ right: [{
528
+ right: z()
529
+ }],
530
+ /**
531
+ * Bottom
532
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
533
+ */
534
+ bottom: [{
535
+ bottom: z()
536
+ }],
537
+ /**
538
+ * Left
539
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
540
+ */
541
+ left: [{
542
+ left: z()
543
+ }],
544
+ /**
545
+ * Visibility
546
+ * @see https://tailwindcss.com/docs/visibility
547
+ */
548
+ visibility: ["visible", "invisible", "collapse"],
549
+ /**
550
+ * Z-Index
551
+ * @see https://tailwindcss.com/docs/z-index
552
+ */
553
+ z: [{
554
+ z: [A, "auto", n, s]
555
+ }],
556
+ // ------------------------
557
+ // --- Flexbox and Grid ---
558
+ // ------------------------
559
+ /**
560
+ * Flex Basis
561
+ * @see https://tailwindcss.com/docs/flex-basis
562
+ */
563
+ basis: [{
564
+ basis: [$, "full", "auto", p, ...d()]
565
+ }],
566
+ /**
567
+ * Flex Direction
568
+ * @see https://tailwindcss.com/docs/flex-direction
569
+ */
570
+ "flex-direction": [{
571
+ flex: ["row", "row-reverse", "col", "col-reverse"]
572
+ }],
573
+ /**
574
+ * Flex Wrap
575
+ * @see https://tailwindcss.com/docs/flex-wrap
576
+ */
577
+ "flex-wrap": [{
578
+ flex: ["nowrap", "wrap", "wrap-reverse"]
579
+ }],
580
+ /**
581
+ * Flex
582
+ * @see https://tailwindcss.com/docs/flex
583
+ */
584
+ flex: [{
585
+ flex: [u, $, "auto", "initial", "none", s]
586
+ }],
587
+ /**
588
+ * Flex Grow
589
+ * @see https://tailwindcss.com/docs/flex-grow
590
+ */
591
+ grow: [{
592
+ grow: ["", u, n, s]
593
+ }],
594
+ /**
595
+ * Flex Shrink
596
+ * @see https://tailwindcss.com/docs/flex-shrink
597
+ */
598
+ shrink: [{
599
+ shrink: ["", u, n, s]
600
+ }],
601
+ /**
602
+ * Order
603
+ * @see https://tailwindcss.com/docs/order
604
+ */
605
+ order: [{
606
+ order: [A, "first", "last", "none", n, s]
607
+ }],
608
+ /**
609
+ * Grid Template Columns
610
+ * @see https://tailwindcss.com/docs/grid-template-columns
611
+ */
612
+ "grid-cols": [{
613
+ "grid-cols": ae()
614
+ }],
615
+ /**
616
+ * Grid Column Start / End
617
+ * @see https://tailwindcss.com/docs/grid-column
618
+ */
619
+ "col-start-end": [{
620
+ col: ie()
621
+ }],
622
+ /**
623
+ * Grid Column Start
624
+ * @see https://tailwindcss.com/docs/grid-column
625
+ */
626
+ "col-start": [{
627
+ "col-start": _()
628
+ }],
629
+ /**
630
+ * Grid Column End
631
+ * @see https://tailwindcss.com/docs/grid-column
632
+ */
633
+ "col-end": [{
634
+ "col-end": _()
635
+ }],
636
+ /**
637
+ * Grid Template Rows
638
+ * @see https://tailwindcss.com/docs/grid-template-rows
639
+ */
640
+ "grid-rows": [{
641
+ "grid-rows": ae()
642
+ }],
643
+ /**
644
+ * Grid Row Start / End
645
+ * @see https://tailwindcss.com/docs/grid-row
646
+ */
647
+ "row-start-end": [{
648
+ row: ie()
649
+ }],
650
+ /**
651
+ * Grid Row Start
652
+ * @see https://tailwindcss.com/docs/grid-row
653
+ */
654
+ "row-start": [{
655
+ "row-start": _()
656
+ }],
657
+ /**
658
+ * Grid Row End
659
+ * @see https://tailwindcss.com/docs/grid-row
660
+ */
661
+ "row-end": [{
662
+ "row-end": _()
663
+ }],
664
+ /**
665
+ * Grid Auto Flow
666
+ * @see https://tailwindcss.com/docs/grid-auto-flow
667
+ */
668
+ "grid-flow": [{
669
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
670
+ }],
671
+ /**
672
+ * Grid Auto Columns
673
+ * @see https://tailwindcss.com/docs/grid-auto-columns
674
+ */
675
+ "auto-cols": [{
676
+ "auto-cols": le()
677
+ }],
678
+ /**
679
+ * Grid Auto Rows
680
+ * @see https://tailwindcss.com/docs/grid-auto-rows
681
+ */
682
+ "auto-rows": [{
683
+ "auto-rows": le()
684
+ }],
685
+ /**
686
+ * Gap
687
+ * @see https://tailwindcss.com/docs/gap
688
+ */
689
+ gap: [{
690
+ gap: d()
691
+ }],
692
+ /**
693
+ * Gap X
694
+ * @see https://tailwindcss.com/docs/gap
695
+ */
696
+ "gap-x": [{
697
+ "gap-x": d()
698
+ }],
699
+ /**
700
+ * Gap Y
701
+ * @see https://tailwindcss.com/docs/gap
702
+ */
703
+ "gap-y": [{
704
+ "gap-y": d()
705
+ }],
706
+ /**
707
+ * Justify Content
708
+ * @see https://tailwindcss.com/docs/justify-content
709
+ */
710
+ "justify-content": [{
711
+ justify: [...X(), "normal"]
712
+ }],
713
+ /**
714
+ * Justify Items
715
+ * @see https://tailwindcss.com/docs/justify-items
716
+ */
717
+ "justify-items": [{
718
+ "justify-items": [...E(), "normal"]
719
+ }],
720
+ /**
721
+ * Justify Self
722
+ * @see https://tailwindcss.com/docs/justify-self
723
+ */
724
+ "justify-self": [{
725
+ "justify-self": ["auto", ...E()]
726
+ }],
727
+ /**
728
+ * Align Content
729
+ * @see https://tailwindcss.com/docs/align-content
730
+ */
731
+ "align-content": [{
732
+ content: ["normal", ...X()]
733
+ }],
734
+ /**
735
+ * Align Items
736
+ * @see https://tailwindcss.com/docs/align-items
737
+ */
738
+ "align-items": [{
739
+ items: [...E(), {
740
+ baseline: ["", "last"]
741
+ }]
742
+ }],
743
+ /**
744
+ * Align Self
745
+ * @see https://tailwindcss.com/docs/align-self
746
+ */
747
+ "align-self": [{
748
+ self: ["auto", ...E(), {
749
+ baseline: ["", "last"]
750
+ }]
751
+ }],
752
+ /**
753
+ * Place Content
754
+ * @see https://tailwindcss.com/docs/place-content
755
+ */
756
+ "place-content": [{
757
+ "place-content": X()
758
+ }],
759
+ /**
760
+ * Place Items
761
+ * @see https://tailwindcss.com/docs/place-items
762
+ */
763
+ "place-items": [{
764
+ "place-items": [...E(), "baseline"]
765
+ }],
766
+ /**
767
+ * Place Self
768
+ * @see https://tailwindcss.com/docs/place-self
769
+ */
770
+ "place-self": [{
771
+ "place-self": ["auto", ...E()]
772
+ }],
773
+ // Spacing
774
+ /**
775
+ * Padding
776
+ * @see https://tailwindcss.com/docs/padding
777
+ */
778
+ p: [{
779
+ p: d()
780
+ }],
781
+ /**
782
+ * Padding X
783
+ * @see https://tailwindcss.com/docs/padding
784
+ */
785
+ px: [{
786
+ px: d()
787
+ }],
788
+ /**
789
+ * Padding Y
790
+ * @see https://tailwindcss.com/docs/padding
791
+ */
792
+ py: [{
793
+ py: d()
794
+ }],
795
+ /**
796
+ * Padding Start
797
+ * @see https://tailwindcss.com/docs/padding
798
+ */
799
+ ps: [{
800
+ ps: d()
801
+ }],
802
+ /**
803
+ * Padding End
804
+ * @see https://tailwindcss.com/docs/padding
805
+ */
806
+ pe: [{
807
+ pe: d()
808
+ }],
809
+ /**
810
+ * Padding Top
811
+ * @see https://tailwindcss.com/docs/padding
812
+ */
813
+ pt: [{
814
+ pt: d()
815
+ }],
816
+ /**
817
+ * Padding Right
818
+ * @see https://tailwindcss.com/docs/padding
819
+ */
820
+ pr: [{
821
+ pr: d()
822
+ }],
823
+ /**
824
+ * Padding Bottom
825
+ * @see https://tailwindcss.com/docs/padding
826
+ */
827
+ pb: [{
828
+ pb: d()
829
+ }],
830
+ /**
831
+ * Padding Left
832
+ * @see https://tailwindcss.com/docs/padding
833
+ */
834
+ pl: [{
835
+ pl: d()
836
+ }],
837
+ /**
838
+ * Margin
839
+ * @see https://tailwindcss.com/docs/margin
840
+ */
841
+ m: [{
842
+ m: C()
843
+ }],
844
+ /**
845
+ * Margin X
846
+ * @see https://tailwindcss.com/docs/margin
847
+ */
848
+ mx: [{
849
+ mx: C()
850
+ }],
851
+ /**
852
+ * Margin Y
853
+ * @see https://tailwindcss.com/docs/margin
854
+ */
855
+ my: [{
856
+ my: C()
857
+ }],
858
+ /**
859
+ * Margin Start
860
+ * @see https://tailwindcss.com/docs/margin
861
+ */
862
+ ms: [{
863
+ ms: C()
864
+ }],
865
+ /**
866
+ * Margin End
867
+ * @see https://tailwindcss.com/docs/margin
868
+ */
869
+ me: [{
870
+ me: C()
871
+ }],
872
+ /**
873
+ * Margin Top
874
+ * @see https://tailwindcss.com/docs/margin
875
+ */
876
+ mt: [{
877
+ mt: C()
878
+ }],
879
+ /**
880
+ * Margin Right
881
+ * @see https://tailwindcss.com/docs/margin
882
+ */
883
+ mr: [{
884
+ mr: C()
885
+ }],
886
+ /**
887
+ * Margin Bottom
888
+ * @see https://tailwindcss.com/docs/margin
889
+ */
890
+ mb: [{
891
+ mb: C()
892
+ }],
893
+ /**
894
+ * Margin Left
895
+ * @see https://tailwindcss.com/docs/margin
896
+ */
897
+ ml: [{
898
+ ml: C()
899
+ }],
900
+ /**
901
+ * Space Between X
902
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
903
+ */
904
+ "space-x": [{
905
+ "space-x": d()
906
+ }],
907
+ /**
908
+ * Space Between X Reverse
909
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
910
+ */
911
+ "space-x-reverse": ["space-x-reverse"],
912
+ /**
913
+ * Space Between Y
914
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
915
+ */
916
+ "space-y": [{
917
+ "space-y": d()
918
+ }],
919
+ /**
920
+ * Space Between Y Reverse
921
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
922
+ */
923
+ "space-y-reverse": ["space-y-reverse"],
924
+ // --------------
925
+ // --- Sizing ---
926
+ // --------------
927
+ /**
928
+ * Size
929
+ * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
930
+ */
931
+ size: [{
932
+ size: P()
933
+ }],
934
+ /**
935
+ * Width
936
+ * @see https://tailwindcss.com/docs/width
937
+ */
938
+ w: [{
939
+ w: [p, "screen", ...P()]
940
+ }],
941
+ /**
942
+ * Min-Width
943
+ * @see https://tailwindcss.com/docs/min-width
944
+ */
945
+ "min-w": [{
946
+ "min-w": [
947
+ p,
948
+ "screen",
949
+ /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
950
+ "none",
951
+ ...P()
952
+ ]
953
+ }],
954
+ /**
955
+ * Max-Width
956
+ * @see https://tailwindcss.com/docs/max-width
957
+ */
958
+ "max-w": [{
959
+ "max-w": [
960
+ p,
961
+ "screen",
962
+ "none",
963
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
964
+ "prose",
965
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
966
+ {
967
+ screen: [l]
968
+ },
969
+ ...P()
970
+ ]
971
+ }],
972
+ /**
973
+ * Height
974
+ * @see https://tailwindcss.com/docs/height
975
+ */
976
+ h: [{
977
+ h: ["screen", "lh", ...P()]
978
+ }],
979
+ /**
980
+ * Min-Height
981
+ * @see https://tailwindcss.com/docs/min-height
982
+ */
983
+ "min-h": [{
984
+ "min-h": ["screen", "lh", "none", ...P()]
985
+ }],
986
+ /**
987
+ * Max-Height
988
+ * @see https://tailwindcss.com/docs/max-height
989
+ */
990
+ "max-h": [{
991
+ "max-h": ["screen", "lh", ...P()]
992
+ }],
993
+ // ------------------
994
+ // --- Typography ---
995
+ // ------------------
996
+ /**
997
+ * Font Size
998
+ * @see https://tailwindcss.com/docs/font-size
999
+ */
1000
+ "font-size": [{
1001
+ text: ["base", t, B, R]
1002
+ }],
1003
+ /**
1004
+ * Font Smoothing
1005
+ * @see https://tailwindcss.com/docs/font-smoothing
1006
+ */
1007
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
1008
+ /**
1009
+ * Font Style
1010
+ * @see https://tailwindcss.com/docs/font-style
1011
+ */
1012
+ "font-style": ["italic", "not-italic"],
1013
+ /**
1014
+ * Font Weight
1015
+ * @see https://tailwindcss.com/docs/font-weight
1016
+ */
1017
+ "font-weight": [{
1018
+ font: [o, n, oe]
1019
+ }],
1020
+ /**
1021
+ * Font Stretch
1022
+ * @see https://tailwindcss.com/docs/font-stretch
1023
+ */
1024
+ "font-stretch": [{
1025
+ "font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee, s]
1026
+ }],
1027
+ /**
1028
+ * Font Family
1029
+ * @see https://tailwindcss.com/docs/font-family
1030
+ */
1031
+ "font-family": [{
1032
+ font: [no, s, r]
1033
+ }],
1034
+ /**
1035
+ * Font Variant Numeric
1036
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1037
+ */
1038
+ "fvn-normal": ["normal-nums"],
1039
+ /**
1040
+ * Font Variant Numeric
1041
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1042
+ */
1043
+ "fvn-ordinal": ["ordinal"],
1044
+ /**
1045
+ * Font Variant Numeric
1046
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1047
+ */
1048
+ "fvn-slashed-zero": ["slashed-zero"],
1049
+ /**
1050
+ * Font Variant Numeric
1051
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1052
+ */
1053
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
1054
+ /**
1055
+ * Font Variant Numeric
1056
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1057
+ */
1058
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
1059
+ /**
1060
+ * Font Variant Numeric
1061
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1062
+ */
1063
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
1064
+ /**
1065
+ * Letter Spacing
1066
+ * @see https://tailwindcss.com/docs/letter-spacing
1067
+ */
1068
+ tracking: [{
1069
+ tracking: [a, n, s]
1070
+ }],
1071
+ /**
1072
+ * Line Clamp
1073
+ * @see https://tailwindcss.com/docs/line-clamp
1074
+ */
1075
+ "line-clamp": [{
1076
+ "line-clamp": [u, "none", n, oe]
1077
+ }],
1078
+ /**
1079
+ * Line Height
1080
+ * @see https://tailwindcss.com/docs/line-height
1081
+ */
1082
+ leading: [{
1083
+ leading: [
1084
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1085
+ i,
1086
+ ...d()
1087
+ ]
1088
+ }],
1089
+ /**
1090
+ * List Style Image
1091
+ * @see https://tailwindcss.com/docs/list-style-image
1092
+ */
1093
+ "list-image": [{
1094
+ "list-image": ["none", n, s]
1095
+ }],
1096
+ /**
1097
+ * List Style Position
1098
+ * @see https://tailwindcss.com/docs/list-style-position
1099
+ */
1100
+ "list-style-position": [{
1101
+ list: ["inside", "outside"]
1102
+ }],
1103
+ /**
1104
+ * List Style Type
1105
+ * @see https://tailwindcss.com/docs/list-style-type
1106
+ */
1107
+ "list-style-type": [{
1108
+ list: ["disc", "decimal", "none", n, s]
1109
+ }],
1110
+ /**
1111
+ * Text Alignment
1112
+ * @see https://tailwindcss.com/docs/text-align
1113
+ */
1114
+ "text-alignment": [{
1115
+ text: ["left", "center", "right", "justify", "start", "end"]
1116
+ }],
1117
+ /**
1118
+ * Placeholder Color
1119
+ * @deprecated since Tailwind CSS v3.0.0
1120
+ * @see https://v3.tailwindcss.com/docs/placeholder-color
1121
+ */
1122
+ "placeholder-color": [{
1123
+ placeholder: c()
1124
+ }],
1125
+ /**
1126
+ * Text Color
1127
+ * @see https://tailwindcss.com/docs/text-color
1128
+ */
1129
+ "text-color": [{
1130
+ text: c()
1131
+ }],
1132
+ /**
1133
+ * Text Decoration
1134
+ * @see https://tailwindcss.com/docs/text-decoration
1135
+ */
1136
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1137
+ /**
1138
+ * Text Decoration Style
1139
+ * @see https://tailwindcss.com/docs/text-decoration-style
1140
+ */
1141
+ "text-decoration-style": [{
1142
+ decoration: [...D(), "wavy"]
1143
+ }],
1144
+ /**
1145
+ * Text Decoration Thickness
1146
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
1147
+ */
1148
+ "text-decoration-thickness": [{
1149
+ decoration: [u, "from-font", "auto", n, R]
1150
+ }],
1151
+ /**
1152
+ * Text Decoration Color
1153
+ * @see https://tailwindcss.com/docs/text-decoration-color
1154
+ */
1155
+ "text-decoration-color": [{
1156
+ decoration: c()
1157
+ }],
1158
+ /**
1159
+ * Text Underline Offset
1160
+ * @see https://tailwindcss.com/docs/text-underline-offset
1161
+ */
1162
+ "underline-offset": [{
1163
+ "underline-offset": [u, "auto", n, s]
1164
+ }],
1165
+ /**
1166
+ * Text Transform
1167
+ * @see https://tailwindcss.com/docs/text-transform
1168
+ */
1169
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1170
+ /**
1171
+ * Text Overflow
1172
+ * @see https://tailwindcss.com/docs/text-overflow
1173
+ */
1174
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1175
+ /**
1176
+ * Text Wrap
1177
+ * @see https://tailwindcss.com/docs/text-wrap
1178
+ */
1179
+ "text-wrap": [{
1180
+ text: ["wrap", "nowrap", "balance", "pretty"]
1181
+ }],
1182
+ /**
1183
+ * Text Indent
1184
+ * @see https://tailwindcss.com/docs/text-indent
1185
+ */
1186
+ indent: [{
1187
+ indent: d()
1188
+ }],
1189
+ /**
1190
+ * Vertical Alignment
1191
+ * @see https://tailwindcss.com/docs/vertical-align
1192
+ */
1193
+ "vertical-align": [{
1194
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", n, s]
1195
+ }],
1196
+ /**
1197
+ * Whitespace
1198
+ * @see https://tailwindcss.com/docs/whitespace
1199
+ */
1200
+ whitespace: [{
1201
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
1202
+ }],
1203
+ /**
1204
+ * Word Break
1205
+ * @see https://tailwindcss.com/docs/word-break
1206
+ */
1207
+ break: [{
1208
+ break: ["normal", "words", "all", "keep"]
1209
+ }],
1210
+ /**
1211
+ * Overflow Wrap
1212
+ * @see https://tailwindcss.com/docs/overflow-wrap
1213
+ */
1214
+ wrap: [{
1215
+ wrap: ["break-word", "anywhere", "normal"]
1216
+ }],
1217
+ /**
1218
+ * Hyphens
1219
+ * @see https://tailwindcss.com/docs/hyphens
1220
+ */
1221
+ hyphens: [{
1222
+ hyphens: ["none", "manual", "auto"]
1223
+ }],
1224
+ /**
1225
+ * Content
1226
+ * @see https://tailwindcss.com/docs/content
1227
+ */
1228
+ content: [{
1229
+ content: ["none", n, s]
1230
+ }],
1231
+ // -------------------
1232
+ // --- Backgrounds ---
1233
+ // -------------------
1234
+ /**
1235
+ * Background Attachment
1236
+ * @see https://tailwindcss.com/docs/background-attachment
1237
+ */
1238
+ "bg-attachment": [{
1239
+ bg: ["fixed", "local", "scroll"]
1240
+ }],
1241
+ /**
1242
+ * Background Clip
1243
+ * @see https://tailwindcss.com/docs/background-clip
1244
+ */
1245
+ "bg-clip": [{
1246
+ "bg-clip": ["border", "padding", "content", "text"]
1247
+ }],
1248
+ /**
1249
+ * Background Origin
1250
+ * @see https://tailwindcss.com/docs/background-origin
1251
+ */
1252
+ "bg-origin": [{
1253
+ "bg-origin": ["border", "padding", "content"]
1254
+ }],
1255
+ /**
1256
+ * Background Position
1257
+ * @see https://tailwindcss.com/docs/background-position
1258
+ */
1259
+ "bg-position": [{
1260
+ bg: ce()
1261
+ }],
1262
+ /**
1263
+ * Background Repeat
1264
+ * @see https://tailwindcss.com/docs/background-repeat
1265
+ */
1266
+ "bg-repeat": [{
1267
+ bg: de()
1268
+ }],
1269
+ /**
1270
+ * Background Size
1271
+ * @see https://tailwindcss.com/docs/background-size
1272
+ */
1273
+ "bg-size": [{
1274
+ bg: me()
1275
+ }],
1276
+ /**
1277
+ * Background Image
1278
+ * @see https://tailwindcss.com/docs/background-image
1279
+ */
1280
+ "bg-image": [{
1281
+ bg: ["none", {
1282
+ linear: [{
1283
+ to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1284
+ }, A, n, s],
1285
+ radial: ["", n, s],
1286
+ conic: [A, n, s]
1287
+ }, io, so]
1288
+ }],
1289
+ /**
1290
+ * Background Color
1291
+ * @see https://tailwindcss.com/docs/background-color
1292
+ */
1293
+ "bg-color": [{
1294
+ bg: c()
1295
+ }],
1296
+ /**
1297
+ * Gradient Color Stops From Position
1298
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1299
+ */
1300
+ "gradient-from-pos": [{
1301
+ from: Q()
1302
+ }],
1303
+ /**
1304
+ * Gradient Color Stops Via Position
1305
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1306
+ */
1307
+ "gradient-via-pos": [{
1308
+ via: Q()
1309
+ }],
1310
+ /**
1311
+ * Gradient Color Stops To Position
1312
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1313
+ */
1314
+ "gradient-to-pos": [{
1315
+ to: Q()
1316
+ }],
1317
+ /**
1318
+ * Gradient Color Stops From
1319
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1320
+ */
1321
+ "gradient-from": [{
1322
+ from: c()
1323
+ }],
1324
+ /**
1325
+ * Gradient Color Stops Via
1326
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1327
+ */
1328
+ "gradient-via": [{
1329
+ via: c()
1330
+ }],
1331
+ /**
1332
+ * Gradient Color Stops To
1333
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1334
+ */
1335
+ "gradient-to": [{
1336
+ to: c()
1337
+ }],
1338
+ // ---------------
1339
+ // --- Borders ---
1340
+ // ---------------
1341
+ /**
1342
+ * Border Radius
1343
+ * @see https://tailwindcss.com/docs/border-radius
1344
+ */
1345
+ rounded: [{
1346
+ rounded: w()
1347
+ }],
1348
+ /**
1349
+ * Border Radius Start
1350
+ * @see https://tailwindcss.com/docs/border-radius
1351
+ */
1352
+ "rounded-s": [{
1353
+ "rounded-s": w()
1354
+ }],
1355
+ /**
1356
+ * Border Radius End
1357
+ * @see https://tailwindcss.com/docs/border-radius
1358
+ */
1359
+ "rounded-e": [{
1360
+ "rounded-e": w()
1361
+ }],
1362
+ /**
1363
+ * Border Radius Top
1364
+ * @see https://tailwindcss.com/docs/border-radius
1365
+ */
1366
+ "rounded-t": [{
1367
+ "rounded-t": w()
1368
+ }],
1369
+ /**
1370
+ * Border Radius Right
1371
+ * @see https://tailwindcss.com/docs/border-radius
1372
+ */
1373
+ "rounded-r": [{
1374
+ "rounded-r": w()
1375
+ }],
1376
+ /**
1377
+ * Border Radius Bottom
1378
+ * @see https://tailwindcss.com/docs/border-radius
1379
+ */
1380
+ "rounded-b": [{
1381
+ "rounded-b": w()
1382
+ }],
1383
+ /**
1384
+ * Border Radius Left
1385
+ * @see https://tailwindcss.com/docs/border-radius
1386
+ */
1387
+ "rounded-l": [{
1388
+ "rounded-l": w()
1389
+ }],
1390
+ /**
1391
+ * Border Radius Start Start
1392
+ * @see https://tailwindcss.com/docs/border-radius
1393
+ */
1394
+ "rounded-ss": [{
1395
+ "rounded-ss": w()
1396
+ }],
1397
+ /**
1398
+ * Border Radius Start End
1399
+ * @see https://tailwindcss.com/docs/border-radius
1400
+ */
1401
+ "rounded-se": [{
1402
+ "rounded-se": w()
1403
+ }],
1404
+ /**
1405
+ * Border Radius End End
1406
+ * @see https://tailwindcss.com/docs/border-radius
1407
+ */
1408
+ "rounded-ee": [{
1409
+ "rounded-ee": w()
1410
+ }],
1411
+ /**
1412
+ * Border Radius End Start
1413
+ * @see https://tailwindcss.com/docs/border-radius
1414
+ */
1415
+ "rounded-es": [{
1416
+ "rounded-es": w()
1417
+ }],
1418
+ /**
1419
+ * Border Radius Top Left
1420
+ * @see https://tailwindcss.com/docs/border-radius
1421
+ */
1422
+ "rounded-tl": [{
1423
+ "rounded-tl": w()
1424
+ }],
1425
+ /**
1426
+ * Border Radius Top Right
1427
+ * @see https://tailwindcss.com/docs/border-radius
1428
+ */
1429
+ "rounded-tr": [{
1430
+ "rounded-tr": w()
1431
+ }],
1432
+ /**
1433
+ * Border Radius Bottom Right
1434
+ * @see https://tailwindcss.com/docs/border-radius
1435
+ */
1436
+ "rounded-br": [{
1437
+ "rounded-br": w()
1438
+ }],
1439
+ /**
1440
+ * Border Radius Bottom Left
1441
+ * @see https://tailwindcss.com/docs/border-radius
1442
+ */
1443
+ "rounded-bl": [{
1444
+ "rounded-bl": w()
1445
+ }],
1446
+ /**
1447
+ * Border Width
1448
+ * @see https://tailwindcss.com/docs/border-width
1449
+ */
1450
+ "border-w": [{
1451
+ border: x()
1452
+ }],
1453
+ /**
1454
+ * Border Width X
1455
+ * @see https://tailwindcss.com/docs/border-width
1456
+ */
1457
+ "border-w-x": [{
1458
+ "border-x": x()
1459
+ }],
1460
+ /**
1461
+ * Border Width Y
1462
+ * @see https://tailwindcss.com/docs/border-width
1463
+ */
1464
+ "border-w-y": [{
1465
+ "border-y": x()
1466
+ }],
1467
+ /**
1468
+ * Border Width Start
1469
+ * @see https://tailwindcss.com/docs/border-width
1470
+ */
1471
+ "border-w-s": [{
1472
+ "border-s": x()
1473
+ }],
1474
+ /**
1475
+ * Border Width End
1476
+ * @see https://tailwindcss.com/docs/border-width
1477
+ */
1478
+ "border-w-e": [{
1479
+ "border-e": x()
1480
+ }],
1481
+ /**
1482
+ * Border Width Top
1483
+ * @see https://tailwindcss.com/docs/border-width
1484
+ */
1485
+ "border-w-t": [{
1486
+ "border-t": x()
1487
+ }],
1488
+ /**
1489
+ * Border Width Right
1490
+ * @see https://tailwindcss.com/docs/border-width
1491
+ */
1492
+ "border-w-r": [{
1493
+ "border-r": x()
1494
+ }],
1495
+ /**
1496
+ * Border Width Bottom
1497
+ * @see https://tailwindcss.com/docs/border-width
1498
+ */
1499
+ "border-w-b": [{
1500
+ "border-b": x()
1501
+ }],
1502
+ /**
1503
+ * Border Width Left
1504
+ * @see https://tailwindcss.com/docs/border-width
1505
+ */
1506
+ "border-w-l": [{
1507
+ "border-l": x()
1508
+ }],
1509
+ /**
1510
+ * Divide Width X
1511
+ * @see https://tailwindcss.com/docs/border-width#between-children
1512
+ */
1513
+ "divide-x": [{
1514
+ "divide-x": x()
1515
+ }],
1516
+ /**
1517
+ * Divide Width X Reverse
1518
+ * @see https://tailwindcss.com/docs/border-width#between-children
1519
+ */
1520
+ "divide-x-reverse": ["divide-x-reverse"],
1521
+ /**
1522
+ * Divide Width Y
1523
+ * @see https://tailwindcss.com/docs/border-width#between-children
1524
+ */
1525
+ "divide-y": [{
1526
+ "divide-y": x()
1527
+ }],
1528
+ /**
1529
+ * Divide Width Y Reverse
1530
+ * @see https://tailwindcss.com/docs/border-width#between-children
1531
+ */
1532
+ "divide-y-reverse": ["divide-y-reverse"],
1533
+ /**
1534
+ * Border Style
1535
+ * @see https://tailwindcss.com/docs/border-style
1536
+ */
1537
+ "border-style": [{
1538
+ border: [...D(), "hidden", "none"]
1539
+ }],
1540
+ /**
1541
+ * Divide Style
1542
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1543
+ */
1544
+ "divide-style": [{
1545
+ divide: [...D(), "hidden", "none"]
1546
+ }],
1547
+ /**
1548
+ * Border Color
1549
+ * @see https://tailwindcss.com/docs/border-color
1550
+ */
1551
+ "border-color": [{
1552
+ border: c()
1553
+ }],
1554
+ /**
1555
+ * Border Color X
1556
+ * @see https://tailwindcss.com/docs/border-color
1557
+ */
1558
+ "border-color-x": [{
1559
+ "border-x": c()
1560
+ }],
1561
+ /**
1562
+ * Border Color Y
1563
+ * @see https://tailwindcss.com/docs/border-color
1564
+ */
1565
+ "border-color-y": [{
1566
+ "border-y": c()
1567
+ }],
1568
+ /**
1569
+ * Border Color S
1570
+ * @see https://tailwindcss.com/docs/border-color
1571
+ */
1572
+ "border-color-s": [{
1573
+ "border-s": c()
1574
+ }],
1575
+ /**
1576
+ * Border Color E
1577
+ * @see https://tailwindcss.com/docs/border-color
1578
+ */
1579
+ "border-color-e": [{
1580
+ "border-e": c()
1581
+ }],
1582
+ /**
1583
+ * Border Color Top
1584
+ * @see https://tailwindcss.com/docs/border-color
1585
+ */
1586
+ "border-color-t": [{
1587
+ "border-t": c()
1588
+ }],
1589
+ /**
1590
+ * Border Color Right
1591
+ * @see https://tailwindcss.com/docs/border-color
1592
+ */
1593
+ "border-color-r": [{
1594
+ "border-r": c()
1595
+ }],
1596
+ /**
1597
+ * Border Color Bottom
1598
+ * @see https://tailwindcss.com/docs/border-color
1599
+ */
1600
+ "border-color-b": [{
1601
+ "border-b": c()
1602
+ }],
1603
+ /**
1604
+ * Border Color Left
1605
+ * @see https://tailwindcss.com/docs/border-color
1606
+ */
1607
+ "border-color-l": [{
1608
+ "border-l": c()
1609
+ }],
1610
+ /**
1611
+ * Divide Color
1612
+ * @see https://tailwindcss.com/docs/divide-color
1613
+ */
1614
+ "divide-color": [{
1615
+ divide: c()
1616
+ }],
1617
+ /**
1618
+ * Outline Style
1619
+ * @see https://tailwindcss.com/docs/outline-style
1620
+ */
1621
+ "outline-style": [{
1622
+ outline: [...D(), "none", "hidden"]
1623
+ }],
1624
+ /**
1625
+ * Outline Offset
1626
+ * @see https://tailwindcss.com/docs/outline-offset
1627
+ */
1628
+ "outline-offset": [{
1629
+ "outline-offset": [u, n, s]
1630
+ }],
1631
+ /**
1632
+ * Outline Width
1633
+ * @see https://tailwindcss.com/docs/outline-width
1634
+ */
1635
+ "outline-w": [{
1636
+ outline: ["", u, B, R]
1637
+ }],
1638
+ /**
1639
+ * Outline Color
1640
+ * @see https://tailwindcss.com/docs/outline-color
1641
+ */
1642
+ "outline-color": [{
1643
+ outline: c()
1644
+ }],
1645
+ // ---------------
1646
+ // --- Effects ---
1647
+ // ---------------
1648
+ /**
1649
+ * Box Shadow
1650
+ * @see https://tailwindcss.com/docs/box-shadow
1651
+ */
1652
+ shadow: [{
1653
+ shadow: [
1654
+ // Deprecated since Tailwind CSS v4.0.0
1655
+ "",
1656
+ "none",
1657
+ g,
1658
+ K,
1659
+ J
1660
+ ]
1661
+ }],
1662
+ /**
1663
+ * Box Shadow Color
1664
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
1665
+ */
1666
+ "shadow-color": [{
1667
+ shadow: c()
1668
+ }],
1669
+ /**
1670
+ * Inset Box Shadow
1671
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1672
+ */
1673
+ "inset-shadow": [{
1674
+ "inset-shadow": ["none", v, K, J]
1675
+ }],
1676
+ /**
1677
+ * Inset Box Shadow Color
1678
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
1679
+ */
1680
+ "inset-shadow-color": [{
1681
+ "inset-shadow": c()
1682
+ }],
1683
+ /**
1684
+ * Ring Width
1685
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1686
+ */
1687
+ "ring-w": [{
1688
+ ring: x()
1689
+ }],
1690
+ /**
1691
+ * Ring Width Inset
1692
+ * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
1693
+ * @deprecated since Tailwind CSS v4.0.0
1694
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1695
+ */
1696
+ "ring-w-inset": ["ring-inset"],
1697
+ /**
1698
+ * Ring Color
1699
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1700
+ */
1701
+ "ring-color": [{
1702
+ ring: c()
1703
+ }],
1704
+ /**
1705
+ * Ring Offset Width
1706
+ * @see https://v3.tailwindcss.com/docs/ring-offset-width
1707
+ * @deprecated since Tailwind CSS v4.0.0
1708
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1709
+ */
1710
+ "ring-offset-w": [{
1711
+ "ring-offset": [u, R]
1712
+ }],
1713
+ /**
1714
+ * Ring Offset Color
1715
+ * @see https://v3.tailwindcss.com/docs/ring-offset-color
1716
+ * @deprecated since Tailwind CSS v4.0.0
1717
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1718
+ */
1719
+ "ring-offset-color": [{
1720
+ "ring-offset": c()
1721
+ }],
1722
+ /**
1723
+ * Inset Ring Width
1724
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1725
+ */
1726
+ "inset-ring-w": [{
1727
+ "inset-ring": x()
1728
+ }],
1729
+ /**
1730
+ * Inset Ring Color
1731
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
1732
+ */
1733
+ "inset-ring-color": [{
1734
+ "inset-ring": c()
1735
+ }],
1736
+ /**
1737
+ * Text Shadow
1738
+ * @see https://tailwindcss.com/docs/text-shadow
1739
+ */
1740
+ "text-shadow": [{
1741
+ "text-shadow": ["none", j, K, J]
1742
+ }],
1743
+ /**
1744
+ * Text Shadow Color
1745
+ * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
1746
+ */
1747
+ "text-shadow-color": [{
1748
+ "text-shadow": c()
1749
+ }],
1750
+ /**
1751
+ * Opacity
1752
+ * @see https://tailwindcss.com/docs/opacity
1753
+ */
1754
+ opacity: [{
1755
+ opacity: [u, n, s]
1756
+ }],
1757
+ /**
1758
+ * Mix Blend Mode
1759
+ * @see https://tailwindcss.com/docs/mix-blend-mode
1760
+ */
1761
+ "mix-blend": [{
1762
+ "mix-blend": [...ue(), "plus-darker", "plus-lighter"]
1763
+ }],
1764
+ /**
1765
+ * Background Blend Mode
1766
+ * @see https://tailwindcss.com/docs/background-blend-mode
1767
+ */
1768
+ "bg-blend": [{
1769
+ "bg-blend": ue()
1770
+ }],
1771
+ /**
1772
+ * Mask Clip
1773
+ * @see https://tailwindcss.com/docs/mask-clip
1774
+ */
1775
+ "mask-clip": [{
1776
+ "mask-clip": ["border", "padding", "content", "fill", "stroke", "view"]
1777
+ }, "mask-no-clip"],
1778
+ /**
1779
+ * Mask Composite
1780
+ * @see https://tailwindcss.com/docs/mask-composite
1781
+ */
1782
+ "mask-composite": [{
1783
+ mask: ["add", "subtract", "intersect", "exclude"]
1784
+ }],
1785
+ /**
1786
+ * Mask Image
1787
+ * @see https://tailwindcss.com/docs/mask-image
1788
+ */
1789
+ "mask-image-linear-pos": [{
1790
+ "mask-linear": [u]
1791
+ }],
1792
+ "mask-image-linear-from-pos": [{
1793
+ "mask-linear-from": h()
1794
+ }],
1795
+ "mask-image-linear-to-pos": [{
1796
+ "mask-linear-to": h()
1797
+ }],
1798
+ "mask-image-linear-from-color": [{
1799
+ "mask-linear-from": c()
1800
+ }],
1801
+ "mask-image-linear-to-color": [{
1802
+ "mask-linear-to": c()
1803
+ }],
1804
+ "mask-image-t-from-pos": [{
1805
+ "mask-t-from": h()
1806
+ }],
1807
+ "mask-image-t-to-pos": [{
1808
+ "mask-t-to": h()
1809
+ }],
1810
+ "mask-image-t-from-color": [{
1811
+ "mask-t-from": c()
1812
+ }],
1813
+ "mask-image-t-to-color": [{
1814
+ "mask-t-to": c()
1815
+ }],
1816
+ "mask-image-r-from-pos": [{
1817
+ "mask-r-from": h()
1818
+ }],
1819
+ "mask-image-r-to-pos": [{
1820
+ "mask-r-to": h()
1821
+ }],
1822
+ "mask-image-r-from-color": [{
1823
+ "mask-r-from": c()
1824
+ }],
1825
+ "mask-image-r-to-color": [{
1826
+ "mask-r-to": c()
1827
+ }],
1828
+ "mask-image-b-from-pos": [{
1829
+ "mask-b-from": h()
1830
+ }],
1831
+ "mask-image-b-to-pos": [{
1832
+ "mask-b-to": h()
1833
+ }],
1834
+ "mask-image-b-from-color": [{
1835
+ "mask-b-from": c()
1836
+ }],
1837
+ "mask-image-b-to-color": [{
1838
+ "mask-b-to": c()
1839
+ }],
1840
+ "mask-image-l-from-pos": [{
1841
+ "mask-l-from": h()
1842
+ }],
1843
+ "mask-image-l-to-pos": [{
1844
+ "mask-l-to": h()
1845
+ }],
1846
+ "mask-image-l-from-color": [{
1847
+ "mask-l-from": c()
1848
+ }],
1849
+ "mask-image-l-to-color": [{
1850
+ "mask-l-to": c()
1851
+ }],
1852
+ "mask-image-x-from-pos": [{
1853
+ "mask-x-from": h()
1854
+ }],
1855
+ "mask-image-x-to-pos": [{
1856
+ "mask-x-to": h()
1857
+ }],
1858
+ "mask-image-x-from-color": [{
1859
+ "mask-x-from": c()
1860
+ }],
1861
+ "mask-image-x-to-color": [{
1862
+ "mask-x-to": c()
1863
+ }],
1864
+ "mask-image-y-from-pos": [{
1865
+ "mask-y-from": h()
1866
+ }],
1867
+ "mask-image-y-to-pos": [{
1868
+ "mask-y-to": h()
1869
+ }],
1870
+ "mask-image-y-from-color": [{
1871
+ "mask-y-from": c()
1872
+ }],
1873
+ "mask-image-y-to-color": [{
1874
+ "mask-y-to": c()
1875
+ }],
1876
+ "mask-image-radial": [{
1877
+ "mask-radial": [n, s]
1878
+ }],
1879
+ "mask-image-radial-from-pos": [{
1880
+ "mask-radial-from": h()
1881
+ }],
1882
+ "mask-image-radial-to-pos": [{
1883
+ "mask-radial-to": h()
1884
+ }],
1885
+ "mask-image-radial-from-color": [{
1886
+ "mask-radial-from": c()
1887
+ }],
1888
+ "mask-image-radial-to-color": [{
1889
+ "mask-radial-to": c()
1890
+ }],
1891
+ "mask-image-radial-shape": [{
1892
+ "mask-radial": ["circle", "ellipse"]
1893
+ }],
1894
+ "mask-image-radial-size": [{
1895
+ "mask-radial": [{
1896
+ closest: ["side", "corner"],
1897
+ farthest: ["side", "corner"]
1898
+ }]
1899
+ }],
1900
+ "mask-image-radial-pos": [{
1901
+ "mask-radial-at": G()
1902
+ }],
1903
+ "mask-image-conic-pos": [{
1904
+ "mask-conic": [u]
1905
+ }],
1906
+ "mask-image-conic-from-pos": [{
1907
+ "mask-conic-from": h()
1908
+ }],
1909
+ "mask-image-conic-to-pos": [{
1910
+ "mask-conic-to": h()
1911
+ }],
1912
+ "mask-image-conic-from-color": [{
1913
+ "mask-conic-from": c()
1914
+ }],
1915
+ "mask-image-conic-to-color": [{
1916
+ "mask-conic-to": c()
1917
+ }],
1918
+ /**
1919
+ * Mask Mode
1920
+ * @see https://tailwindcss.com/docs/mask-mode
1921
+ */
1922
+ "mask-mode": [{
1923
+ mask: ["alpha", "luminance", "match"]
1924
+ }],
1925
+ /**
1926
+ * Mask Origin
1927
+ * @see https://tailwindcss.com/docs/mask-origin
1928
+ */
1929
+ "mask-origin": [{
1930
+ "mask-origin": ["border", "padding", "content", "fill", "stroke", "view"]
1931
+ }],
1932
+ /**
1933
+ * Mask Position
1934
+ * @see https://tailwindcss.com/docs/mask-position
1935
+ */
1936
+ "mask-position": [{
1937
+ mask: ce()
1938
+ }],
1939
+ /**
1940
+ * Mask Repeat
1941
+ * @see https://tailwindcss.com/docs/mask-repeat
1942
+ */
1943
+ "mask-repeat": [{
1944
+ mask: de()
1945
+ }],
1946
+ /**
1947
+ * Mask Size
1948
+ * @see https://tailwindcss.com/docs/mask-size
1949
+ */
1950
+ "mask-size": [{
1951
+ mask: me()
1952
+ }],
1953
+ /**
1954
+ * Mask Type
1955
+ * @see https://tailwindcss.com/docs/mask-type
1956
+ */
1957
+ "mask-type": [{
1958
+ "mask-type": ["alpha", "luminance"]
1959
+ }],
1960
+ /**
1961
+ * Mask Image
1962
+ * @see https://tailwindcss.com/docs/mask-image
1963
+ */
1964
+ "mask-image": [{
1965
+ mask: ["none", n, s]
1966
+ }],
1967
+ // ---------------
1968
+ // --- Filters ---
1969
+ // ---------------
1970
+ /**
1971
+ * Filter
1972
+ * @see https://tailwindcss.com/docs/filter
1973
+ */
1974
+ filter: [{
1975
+ filter: [
1976
+ // Deprecated since Tailwind CSS v3.0.0
1977
+ "",
1978
+ "none",
1979
+ n,
1980
+ s
1981
+ ]
1982
+ }],
1983
+ /**
1984
+ * Blur
1985
+ * @see https://tailwindcss.com/docs/blur
1986
+ */
1987
+ blur: [{
1988
+ blur: pe()
1989
+ }],
1990
+ /**
1991
+ * Brightness
1992
+ * @see https://tailwindcss.com/docs/brightness
1993
+ */
1994
+ brightness: [{
1995
+ brightness: [u, n, s]
1996
+ }],
1997
+ /**
1998
+ * Contrast
1999
+ * @see https://tailwindcss.com/docs/contrast
2000
+ */
2001
+ contrast: [{
2002
+ contrast: [u, n, s]
2003
+ }],
2004
+ /**
2005
+ * Drop Shadow
2006
+ * @see https://tailwindcss.com/docs/drop-shadow
2007
+ */
2008
+ "drop-shadow": [{
2009
+ "drop-shadow": [
2010
+ // Deprecated since Tailwind CSS v4.0.0
2011
+ "",
2012
+ "none",
2013
+ O,
2014
+ K,
2015
+ J
2016
+ ]
2017
+ }],
2018
+ /**
2019
+ * Drop Shadow Color
2020
+ * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
2021
+ */
2022
+ "drop-shadow-color": [{
2023
+ "drop-shadow": c()
2024
+ }],
2025
+ /**
2026
+ * Grayscale
2027
+ * @see https://tailwindcss.com/docs/grayscale
2028
+ */
2029
+ grayscale: [{
2030
+ grayscale: ["", u, n, s]
2031
+ }],
2032
+ /**
2033
+ * Hue Rotate
2034
+ * @see https://tailwindcss.com/docs/hue-rotate
2035
+ */
2036
+ "hue-rotate": [{
2037
+ "hue-rotate": [u, n, s]
2038
+ }],
2039
+ /**
2040
+ * Invert
2041
+ * @see https://tailwindcss.com/docs/invert
2042
+ */
2043
+ invert: [{
2044
+ invert: ["", u, n, s]
2045
+ }],
2046
+ /**
2047
+ * Saturate
2048
+ * @see https://tailwindcss.com/docs/saturate
2049
+ */
2050
+ saturate: [{
2051
+ saturate: [u, n, s]
2052
+ }],
2053
+ /**
2054
+ * Sepia
2055
+ * @see https://tailwindcss.com/docs/sepia
2056
+ */
2057
+ sepia: [{
2058
+ sepia: ["", u, n, s]
2059
+ }],
2060
+ /**
2061
+ * Backdrop Filter
2062
+ * @see https://tailwindcss.com/docs/backdrop-filter
2063
+ */
2064
+ "backdrop-filter": [{
2065
+ "backdrop-filter": [
2066
+ // Deprecated since Tailwind CSS v3.0.0
2067
+ "",
2068
+ "none",
2069
+ n,
2070
+ s
2071
+ ]
2072
+ }],
2073
+ /**
2074
+ * Backdrop Blur
2075
+ * @see https://tailwindcss.com/docs/backdrop-blur
2076
+ */
2077
+ "backdrop-blur": [{
2078
+ "backdrop-blur": pe()
2079
+ }],
2080
+ /**
2081
+ * Backdrop Brightness
2082
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2083
+ */
2084
+ "backdrop-brightness": [{
2085
+ "backdrop-brightness": [u, n, s]
2086
+ }],
2087
+ /**
2088
+ * Backdrop Contrast
2089
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2090
+ */
2091
+ "backdrop-contrast": [{
2092
+ "backdrop-contrast": [u, n, s]
2093
+ }],
2094
+ /**
2095
+ * Backdrop Grayscale
2096
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2097
+ */
2098
+ "backdrop-grayscale": [{
2099
+ "backdrop-grayscale": ["", u, n, s]
2100
+ }],
2101
+ /**
2102
+ * Backdrop Hue Rotate
2103
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2104
+ */
2105
+ "backdrop-hue-rotate": [{
2106
+ "backdrop-hue-rotate": [u, n, s]
2107
+ }],
2108
+ /**
2109
+ * Backdrop Invert
2110
+ * @see https://tailwindcss.com/docs/backdrop-invert
2111
+ */
2112
+ "backdrop-invert": [{
2113
+ "backdrop-invert": ["", u, n, s]
2114
+ }],
2115
+ /**
2116
+ * Backdrop Opacity
2117
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2118
+ */
2119
+ "backdrop-opacity": [{
2120
+ "backdrop-opacity": [u, n, s]
2121
+ }],
2122
+ /**
2123
+ * Backdrop Saturate
2124
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2125
+ */
2126
+ "backdrop-saturate": [{
2127
+ "backdrop-saturate": [u, n, s]
2128
+ }],
2129
+ /**
2130
+ * Backdrop Sepia
2131
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2132
+ */
2133
+ "backdrop-sepia": [{
2134
+ "backdrop-sepia": ["", u, n, s]
2135
+ }],
2136
+ // --------------
2137
+ // --- Tables ---
2138
+ // --------------
2139
+ /**
2140
+ * Border Collapse
2141
+ * @see https://tailwindcss.com/docs/border-collapse
2142
+ */
2143
+ "border-collapse": [{
2144
+ border: ["collapse", "separate"]
2145
+ }],
2146
+ /**
2147
+ * Border Spacing
2148
+ * @see https://tailwindcss.com/docs/border-spacing
2149
+ */
2150
+ "border-spacing": [{
2151
+ "border-spacing": d()
2152
+ }],
2153
+ /**
2154
+ * Border Spacing X
2155
+ * @see https://tailwindcss.com/docs/border-spacing
2156
+ */
2157
+ "border-spacing-x": [{
2158
+ "border-spacing-x": d()
2159
+ }],
2160
+ /**
2161
+ * Border Spacing Y
2162
+ * @see https://tailwindcss.com/docs/border-spacing
2163
+ */
2164
+ "border-spacing-y": [{
2165
+ "border-spacing-y": d()
2166
+ }],
2167
+ /**
2168
+ * Table Layout
2169
+ * @see https://tailwindcss.com/docs/table-layout
2170
+ */
2171
+ "table-layout": [{
2172
+ table: ["auto", "fixed"]
2173
+ }],
2174
+ /**
2175
+ * Caption Side
2176
+ * @see https://tailwindcss.com/docs/caption-side
2177
+ */
2178
+ caption: [{
2179
+ caption: ["top", "bottom"]
2180
+ }],
2181
+ // ---------------------------------
2182
+ // --- Transitions and Animation ---
2183
+ // ---------------------------------
2184
+ /**
2185
+ * Transition Property
2186
+ * @see https://tailwindcss.com/docs/transition-property
2187
+ */
2188
+ transition: [{
2189
+ transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", n, s]
2190
+ }],
2191
+ /**
2192
+ * Transition Behavior
2193
+ * @see https://tailwindcss.com/docs/transition-behavior
2194
+ */
2195
+ "transition-behavior": [{
2196
+ transition: ["normal", "discrete"]
2197
+ }],
2198
+ /**
2199
+ * Transition Duration
2200
+ * @see https://tailwindcss.com/docs/transition-duration
2201
+ */
2202
+ duration: [{
2203
+ duration: [u, "initial", n, s]
2204
+ }],
2205
+ /**
2206
+ * Transition Timing Function
2207
+ * @see https://tailwindcss.com/docs/transition-timing-function
2208
+ */
2209
+ ease: [{
2210
+ ease: ["linear", "initial", M, n, s]
2211
+ }],
2212
+ /**
2213
+ * Transition Delay
2214
+ * @see https://tailwindcss.com/docs/transition-delay
2215
+ */
2216
+ delay: [{
2217
+ delay: [u, n, s]
2218
+ }],
2219
+ /**
2220
+ * Animation
2221
+ * @see https://tailwindcss.com/docs/animation
2222
+ */
2223
+ animate: [{
2224
+ animate: ["none", U, n, s]
2225
+ }],
2226
+ // ------------------
2227
+ // --- Transforms ---
2228
+ // ------------------
2229
+ /**
2230
+ * Backface Visibility
2231
+ * @see https://tailwindcss.com/docs/backface-visibility
2232
+ */
2233
+ backface: [{
2234
+ backface: ["hidden", "visible"]
2235
+ }],
2236
+ /**
2237
+ * Perspective
2238
+ * @see https://tailwindcss.com/docs/perspective
2239
+ */
2240
+ perspective: [{
2241
+ perspective: [k, n, s]
2242
+ }],
2243
+ /**
2244
+ * Perspective Origin
2245
+ * @see https://tailwindcss.com/docs/perspective-origin
2246
+ */
2247
+ "perspective-origin": [{
2248
+ "perspective-origin": N()
2249
+ }],
2250
+ /**
2251
+ * Rotate
2252
+ * @see https://tailwindcss.com/docs/rotate
2253
+ */
2254
+ rotate: [{
2255
+ rotate: q()
2256
+ }],
2257
+ /**
2258
+ * Rotate X
2259
+ * @see https://tailwindcss.com/docs/rotate
2260
+ */
2261
+ "rotate-x": [{
2262
+ "rotate-x": q()
2263
+ }],
2264
+ /**
2265
+ * Rotate Y
2266
+ * @see https://tailwindcss.com/docs/rotate
2267
+ */
2268
+ "rotate-y": [{
2269
+ "rotate-y": q()
2270
+ }],
2271
+ /**
2272
+ * Rotate Z
2273
+ * @see https://tailwindcss.com/docs/rotate
2274
+ */
2275
+ "rotate-z": [{
2276
+ "rotate-z": q()
2277
+ }],
2278
+ /**
2279
+ * Scale
2280
+ * @see https://tailwindcss.com/docs/scale
2281
+ */
2282
+ scale: [{
2283
+ scale: Z()
2284
+ }],
2285
+ /**
2286
+ * Scale X
2287
+ * @see https://tailwindcss.com/docs/scale
2288
+ */
2289
+ "scale-x": [{
2290
+ "scale-x": Z()
2291
+ }],
2292
+ /**
2293
+ * Scale Y
2294
+ * @see https://tailwindcss.com/docs/scale
2295
+ */
2296
+ "scale-y": [{
2297
+ "scale-y": Z()
2298
+ }],
2299
+ /**
2300
+ * Scale Z
2301
+ * @see https://tailwindcss.com/docs/scale
2302
+ */
2303
+ "scale-z": [{
2304
+ "scale-z": Z()
2305
+ }],
2306
+ /**
2307
+ * Scale 3D
2308
+ * @see https://tailwindcss.com/docs/scale
2309
+ */
2310
+ "scale-3d": ["scale-3d"],
2311
+ /**
2312
+ * Skew
2313
+ * @see https://tailwindcss.com/docs/skew
2314
+ */
2315
+ skew: [{
2316
+ skew: Y()
2317
+ }],
2318
+ /**
2319
+ * Skew X
2320
+ * @see https://tailwindcss.com/docs/skew
2321
+ */
2322
+ "skew-x": [{
2323
+ "skew-x": Y()
2324
+ }],
2325
+ /**
2326
+ * Skew Y
2327
+ * @see https://tailwindcss.com/docs/skew
2328
+ */
2329
+ "skew-y": [{
2330
+ "skew-y": Y()
2331
+ }],
2332
+ /**
2333
+ * Transform
2334
+ * @see https://tailwindcss.com/docs/transform
2335
+ */
2336
+ transform: [{
2337
+ transform: [n, s, "", "none", "gpu", "cpu"]
2338
+ }],
2339
+ /**
2340
+ * Transform Origin
2341
+ * @see https://tailwindcss.com/docs/transform-origin
2342
+ */
2343
+ "transform-origin": [{
2344
+ origin: N()
2345
+ }],
2346
+ /**
2347
+ * Transform Style
2348
+ * @see https://tailwindcss.com/docs/transform-style
2349
+ */
2350
+ "transform-style": [{
2351
+ transform: ["3d", "flat"]
2352
+ }],
2353
+ /**
2354
+ * Translate
2355
+ * @see https://tailwindcss.com/docs/translate
2356
+ */
2357
+ translate: [{
2358
+ translate: H()
2359
+ }],
2360
+ /**
2361
+ * Translate X
2362
+ * @see https://tailwindcss.com/docs/translate
2363
+ */
2364
+ "translate-x": [{
2365
+ "translate-x": H()
2366
+ }],
2367
+ /**
2368
+ * Translate Y
2369
+ * @see https://tailwindcss.com/docs/translate
2370
+ */
2371
+ "translate-y": [{
2372
+ "translate-y": H()
2373
+ }],
2374
+ /**
2375
+ * Translate Z
2376
+ * @see https://tailwindcss.com/docs/translate
2377
+ */
2378
+ "translate-z": [{
2379
+ "translate-z": H()
2380
+ }],
2381
+ /**
2382
+ * Translate None
2383
+ * @see https://tailwindcss.com/docs/translate
2384
+ */
2385
+ "translate-none": ["translate-none"],
2386
+ // ---------------------
2387
+ // --- Interactivity ---
2388
+ // ---------------------
2389
+ /**
2390
+ * Accent Color
2391
+ * @see https://tailwindcss.com/docs/accent-color
2392
+ */
2393
+ accent: [{
2394
+ accent: c()
2395
+ }],
2396
+ /**
2397
+ * Appearance
2398
+ * @see https://tailwindcss.com/docs/appearance
2399
+ */
2400
+ appearance: [{
2401
+ appearance: ["none", "auto"]
2402
+ }],
2403
+ /**
2404
+ * Caret Color
2405
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2406
+ */
2407
+ "caret-color": [{
2408
+ caret: c()
2409
+ }],
2410
+ /**
2411
+ * Color Scheme
2412
+ * @see https://tailwindcss.com/docs/color-scheme
2413
+ */
2414
+ "color-scheme": [{
2415
+ scheme: ["normal", "dark", "light", "light-dark", "only-dark", "only-light"]
2416
+ }],
2417
+ /**
2418
+ * Cursor
2419
+ * @see https://tailwindcss.com/docs/cursor
2420
+ */
2421
+ cursor: [{
2422
+ cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", n, s]
2423
+ }],
2424
+ /**
2425
+ * Field Sizing
2426
+ * @see https://tailwindcss.com/docs/field-sizing
2427
+ */
2428
+ "field-sizing": [{
2429
+ "field-sizing": ["fixed", "content"]
2430
+ }],
2431
+ /**
2432
+ * Pointer Events
2433
+ * @see https://tailwindcss.com/docs/pointer-events
2434
+ */
2435
+ "pointer-events": [{
2436
+ "pointer-events": ["auto", "none"]
2437
+ }],
2438
+ /**
2439
+ * Resize
2440
+ * @see https://tailwindcss.com/docs/resize
2441
+ */
2442
+ resize: [{
2443
+ resize: ["none", "", "y", "x"]
2444
+ }],
2445
+ /**
2446
+ * Scroll Behavior
2447
+ * @see https://tailwindcss.com/docs/scroll-behavior
2448
+ */
2449
+ "scroll-behavior": [{
2450
+ scroll: ["auto", "smooth"]
2451
+ }],
2452
+ /**
2453
+ * Scroll Margin
2454
+ * @see https://tailwindcss.com/docs/scroll-margin
2455
+ */
2456
+ "scroll-m": [{
2457
+ "scroll-m": d()
2458
+ }],
2459
+ /**
2460
+ * Scroll Margin X
2461
+ * @see https://tailwindcss.com/docs/scroll-margin
2462
+ */
2463
+ "scroll-mx": [{
2464
+ "scroll-mx": d()
2465
+ }],
2466
+ /**
2467
+ * Scroll Margin Y
2468
+ * @see https://tailwindcss.com/docs/scroll-margin
2469
+ */
2470
+ "scroll-my": [{
2471
+ "scroll-my": d()
2472
+ }],
2473
+ /**
2474
+ * Scroll Margin Start
2475
+ * @see https://tailwindcss.com/docs/scroll-margin
2476
+ */
2477
+ "scroll-ms": [{
2478
+ "scroll-ms": d()
2479
+ }],
2480
+ /**
2481
+ * Scroll Margin End
2482
+ * @see https://tailwindcss.com/docs/scroll-margin
2483
+ */
2484
+ "scroll-me": [{
2485
+ "scroll-me": d()
2486
+ }],
2487
+ /**
2488
+ * Scroll Margin Top
2489
+ * @see https://tailwindcss.com/docs/scroll-margin
2490
+ */
2491
+ "scroll-mt": [{
2492
+ "scroll-mt": d()
2493
+ }],
2494
+ /**
2495
+ * Scroll Margin Right
2496
+ * @see https://tailwindcss.com/docs/scroll-margin
2497
+ */
2498
+ "scroll-mr": [{
2499
+ "scroll-mr": d()
2500
+ }],
2501
+ /**
2502
+ * Scroll Margin Bottom
2503
+ * @see https://tailwindcss.com/docs/scroll-margin
2504
+ */
2505
+ "scroll-mb": [{
2506
+ "scroll-mb": d()
2507
+ }],
2508
+ /**
2509
+ * Scroll Margin Left
2510
+ * @see https://tailwindcss.com/docs/scroll-margin
2511
+ */
2512
+ "scroll-ml": [{
2513
+ "scroll-ml": d()
2514
+ }],
2515
+ /**
2516
+ * Scroll Padding
2517
+ * @see https://tailwindcss.com/docs/scroll-padding
2518
+ */
2519
+ "scroll-p": [{
2520
+ "scroll-p": d()
2521
+ }],
2522
+ /**
2523
+ * Scroll Padding X
2524
+ * @see https://tailwindcss.com/docs/scroll-padding
2525
+ */
2526
+ "scroll-px": [{
2527
+ "scroll-px": d()
2528
+ }],
2529
+ /**
2530
+ * Scroll Padding Y
2531
+ * @see https://tailwindcss.com/docs/scroll-padding
2532
+ */
2533
+ "scroll-py": [{
2534
+ "scroll-py": d()
2535
+ }],
2536
+ /**
2537
+ * Scroll Padding Start
2538
+ * @see https://tailwindcss.com/docs/scroll-padding
2539
+ */
2540
+ "scroll-ps": [{
2541
+ "scroll-ps": d()
2542
+ }],
2543
+ /**
2544
+ * Scroll Padding End
2545
+ * @see https://tailwindcss.com/docs/scroll-padding
2546
+ */
2547
+ "scroll-pe": [{
2548
+ "scroll-pe": d()
2549
+ }],
2550
+ /**
2551
+ * Scroll Padding Top
2552
+ * @see https://tailwindcss.com/docs/scroll-padding
2553
+ */
2554
+ "scroll-pt": [{
2555
+ "scroll-pt": d()
2556
+ }],
2557
+ /**
2558
+ * Scroll Padding Right
2559
+ * @see https://tailwindcss.com/docs/scroll-padding
2560
+ */
2561
+ "scroll-pr": [{
2562
+ "scroll-pr": d()
2563
+ }],
2564
+ /**
2565
+ * Scroll Padding Bottom
2566
+ * @see https://tailwindcss.com/docs/scroll-padding
2567
+ */
2568
+ "scroll-pb": [{
2569
+ "scroll-pb": d()
2570
+ }],
2571
+ /**
2572
+ * Scroll Padding Left
2573
+ * @see https://tailwindcss.com/docs/scroll-padding
2574
+ */
2575
+ "scroll-pl": [{
2576
+ "scroll-pl": d()
2577
+ }],
2578
+ /**
2579
+ * Scroll Snap Align
2580
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2581
+ */
2582
+ "snap-align": [{
2583
+ snap: ["start", "end", "center", "align-none"]
2584
+ }],
2585
+ /**
2586
+ * Scroll Snap Stop
2587
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2588
+ */
2589
+ "snap-stop": [{
2590
+ snap: ["normal", "always"]
2591
+ }],
2592
+ /**
2593
+ * Scroll Snap Type
2594
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2595
+ */
2596
+ "snap-type": [{
2597
+ snap: ["none", "x", "y", "both"]
2598
+ }],
2599
+ /**
2600
+ * Scroll Snap Type Strictness
2601
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2602
+ */
2603
+ "snap-strictness": [{
2604
+ snap: ["mandatory", "proximity"]
2605
+ }],
2606
+ /**
2607
+ * Touch Action
2608
+ * @see https://tailwindcss.com/docs/touch-action
2609
+ */
2610
+ touch: [{
2611
+ touch: ["auto", "none", "manipulation"]
2612
+ }],
2613
+ /**
2614
+ * Touch Action X
2615
+ * @see https://tailwindcss.com/docs/touch-action
2616
+ */
2617
+ "touch-x": [{
2618
+ "touch-pan": ["x", "left", "right"]
2619
+ }],
2620
+ /**
2621
+ * Touch Action Y
2622
+ * @see https://tailwindcss.com/docs/touch-action
2623
+ */
2624
+ "touch-y": [{
2625
+ "touch-pan": ["y", "up", "down"]
2626
+ }],
2627
+ /**
2628
+ * Touch Action Pinch Zoom
2629
+ * @see https://tailwindcss.com/docs/touch-action
2630
+ */
2631
+ "touch-pz": ["touch-pinch-zoom"],
2632
+ /**
2633
+ * User Select
2634
+ * @see https://tailwindcss.com/docs/user-select
2635
+ */
2636
+ select: [{
2637
+ select: ["none", "text", "all", "auto"]
2638
+ }],
2639
+ /**
2640
+ * Will Change
2641
+ * @see https://tailwindcss.com/docs/will-change
2642
+ */
2643
+ "will-change": [{
2644
+ "will-change": ["auto", "scroll", "contents", "transform", n, s]
2645
+ }],
2646
+ // -----------
2647
+ // --- SVG ---
2648
+ // -----------
2649
+ /**
2650
+ * Fill
2651
+ * @see https://tailwindcss.com/docs/fill
2652
+ */
2653
+ fill: [{
2654
+ fill: ["none", ...c()]
2655
+ }],
2656
+ /**
2657
+ * Stroke Width
2658
+ * @see https://tailwindcss.com/docs/stroke-width
2659
+ */
2660
+ "stroke-w": [{
2661
+ stroke: [u, B, R, oe]
2662
+ }],
2663
+ /**
2664
+ * Stroke
2665
+ * @see https://tailwindcss.com/docs/stroke
2666
+ */
2667
+ stroke: [{
2668
+ stroke: ["none", ...c()]
2669
+ }],
2670
+ // ---------------------
2671
+ // --- Accessibility ---
2672
+ // ---------------------
2673
+ /**
2674
+ * Forced Color Adjust
2675
+ * @see https://tailwindcss.com/docs/forced-color-adjust
2676
+ */
2677
+ "forced-color-adjust": [{
2678
+ "forced-color-adjust": ["auto", "none"]
2679
+ }]
2680
+ },
2681
+ conflictingClassGroups: {
2682
+ overflow: ["overflow-x", "overflow-y"],
2683
+ overscroll: ["overscroll-x", "overscroll-y"],
2684
+ inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
2685
+ "inset-x": ["right", "left"],
2686
+ "inset-y": ["top", "bottom"],
2687
+ flex: ["basis", "grow", "shrink"],
2688
+ gap: ["gap-x", "gap-y"],
2689
+ p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
2690
+ px: ["pr", "pl"],
2691
+ py: ["pt", "pb"],
2692
+ m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
2693
+ mx: ["mr", "ml"],
2694
+ my: ["mt", "mb"],
2695
+ size: ["w", "h"],
2696
+ "font-size": ["leading"],
2697
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2698
+ "fvn-ordinal": ["fvn-normal"],
2699
+ "fvn-slashed-zero": ["fvn-normal"],
2700
+ "fvn-figure": ["fvn-normal"],
2701
+ "fvn-spacing": ["fvn-normal"],
2702
+ "fvn-fraction": ["fvn-normal"],
2703
+ "line-clamp": ["display", "overflow"],
2704
+ rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
2705
+ "rounded-s": ["rounded-ss", "rounded-es"],
2706
+ "rounded-e": ["rounded-se", "rounded-ee"],
2707
+ "rounded-t": ["rounded-tl", "rounded-tr"],
2708
+ "rounded-r": ["rounded-tr", "rounded-br"],
2709
+ "rounded-b": ["rounded-br", "rounded-bl"],
2710
+ "rounded-l": ["rounded-tl", "rounded-bl"],
2711
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
2712
+ "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2713
+ "border-w-x": ["border-w-r", "border-w-l"],
2714
+ "border-w-y": ["border-w-t", "border-w-b"],
2715
+ "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2716
+ "border-color-x": ["border-color-r", "border-color-l"],
2717
+ "border-color-y": ["border-color-t", "border-color-b"],
2718
+ translate: ["translate-x", "translate-y", "translate-none"],
2719
+ "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
2720
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2721
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
2722
+ "scroll-my": ["scroll-mt", "scroll-mb"],
2723
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2724
+ "scroll-px": ["scroll-pr", "scroll-pl"],
2725
+ "scroll-py": ["scroll-pt", "scroll-pb"],
2726
+ touch: ["touch-x", "touch-y", "touch-pz"],
2727
+ "touch-x": ["touch"],
2728
+ "touch-y": ["touch"],
2729
+ "touch-pz": ["touch"]
2730
+ },
2731
+ conflictingClassGroupModifiers: {
2732
+ "font-size": ["leading"]
2733
+ },
2734
+ orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2735
+ };
2736
+ }, Te = /* @__PURE__ */ De(mo);
2737
+ function po(...e) {
2738
+ return Te(ye(e));
2739
+ }
2740
+ function fo(e) {
2741
+ if (isNaN(e) || !isFinite(e))
2742
+ return "0:00";
2743
+ const r = Math.floor(e / 3600), t = Math.floor(e % 3600 / 60), o = Math.floor(e % 60);
2744
+ return r > 0 ? `${r}:${t.toString().padStart(2, "0")}:${o.toString().padStart(2, "0")}` : `${t}:${o.toString().padStart(2, "0")}`;
2745
+ }
2746
+ function go(e) {
2747
+ const r = e.split(":").map(Number);
2748
+ if (r.length === 2) {
2749
+ const [t = 0, o = 0] = r;
2750
+ return t * 60 + o;
2751
+ } else if (r.length === 3) {
2752
+ const [t = 0, o = 0, a = 0] = r;
2753
+ return t * 3600 + o * 60 + a;
2754
+ }
2755
+ return 0;
2756
+ }
2757
+ function bo(...e) {
2758
+ return Te(ye(...e));
2759
+ }
2760
+ /**
2761
+ * @license lucide-react v0.511.0 - ISC
2762
+ *
2763
+ * This source code is licensed under the ISC license.
2764
+ * See the LICENSE file in the root directory of this source tree.
2765
+ */
2766
+ const ho = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), uo = (e) => e.replace(
2767
+ /^([A-Z])|[\s-_]+(\w)/g,
2768
+ (r, t, o) => o ? o.toUpperCase() : t.toLowerCase()
2769
+ ), wo = (e) => {
2770
+ const r = uo(e);
2771
+ return r.charAt(0).toUpperCase() + r.slice(1);
2772
+ }, xo = (...e) => e.filter((r, t, o) => !!r && r.trim() !== "" && o.indexOf(r) === t).join(" ").trim(), yo = (e) => {
2773
+ for (const r in e)
2774
+ if (r.startsWith("aria-") || r === "role" || r === "title")
2775
+ return !0;
2776
+ }, we = /* @__PURE__ */ new Set();
2777
+ function ko(e, r, t = "2.0") {
2778
+ const o = `${e}-${r}-${t}`;
2779
+ we.has(o) || (we.add(o), console.warn(
2780
+ `⚠️ [BaroiPlayer] DEPRECATION WARNING: ${e} is deprecated and will be removed in v${t}.
2781
+ Please replace it with: ${r}
2782
+ See https://github.com/baroi/baroiplayer/blob/main/MIGRATION.md for migration guide.`
2783
+ ));
2784
+ }
2785
+ function vo(e, r, t = {
2786
+ leading: !0,
2787
+ trailing: !0
2788
+ }) {
2789
+ let o, a = 0, i = null;
2790
+ const { leading: l = !0, trailing: p = !0 } = t;
2791
+ return ((...m) => {
2792
+ const f = Date.now(), g = r - (f - a), v = () => {
2793
+ a = Date.now(), i = null, o = e(...m);
2794
+ };
2795
+ return a ? g <= 0 ? (i && (clearTimeout(i), i = null), o = e(...m), a = f) : p && !i && (i = setTimeout(() => v(), g)) : (l && (o = e(...m)), a = f), o;
2796
+ });
2797
+ }
2798
+ function zo(e, r, t = {}) {
2799
+ let o = null;
2800
+ const { immediate: a = !1 } = t;
2801
+ return ((...i) => {
2802
+ const l = () => (o = null, e(...i)), p = () => {
2803
+ if (o = null, !a)
2804
+ return e(...i);
2805
+ }, f = a && !o ? e(...i) : void 0;
2806
+ return o && clearTimeout(o), o = setTimeout(a ? p : l, r), f;
2807
+ });
2808
+ }
2809
+ function Co(e, r) {
2810
+ let t = e, o = 0, a = e;
2811
+ return { update: (f) => {
2812
+ t = f;
2813
+ const g = Date.now();
2814
+ g - o >= r && (a = f, o = g);
2815
+ }, getThrottledValue: () => a, getLatestValue: () => t, forceUpdate: () => {
2816
+ a = t, o = Date.now();
2817
+ } };
2818
+ }
2819
+ function So(e) {
2820
+ let r = [], t = !1;
2821
+ const o = () => {
2822
+ r.length > 0 && (e(r), r = []), t = !1;
2823
+ };
2824
+ return (...a) => {
2825
+ r.push(a), t || (t = !0, setTimeout(() => o(), 0));
2826
+ };
2827
+ }
2828
+ export {
2829
+ ye as a,
2830
+ bo as b,
2831
+ po as c,
2832
+ wo as d,
2833
+ vo as e,
2834
+ fo as f,
2835
+ zo as g,
2836
+ yo as h,
2837
+ Co as i,
2838
+ So as j,
2839
+ xo as m,
2840
+ go as p,
2841
+ ko as s,
2842
+ ho as t
2843
+ };
2844
+ //# sourceMappingURL=utils-Dzpl2ArK.js.map