@remotion/cli 4.0.111 → 4.0.113

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 (834) hide show
  1. package/dist/ansi/ansi-diff.d.ts +42 -0
  2. package/dist/ansi/ansi-diff.js +220 -0
  3. package/dist/ansi/ansi-split.d.ts +2 -0
  4. package/dist/ansi/ansi-split.js +44 -0
  5. package/dist/better-opn/index.d.ts +5 -0
  6. package/dist/better-opn/index.js +202 -0
  7. package/dist/codemods/stringify-with-path.d.ts +5 -0
  8. package/dist/codemods/stringify-with-path.js +49 -0
  9. package/dist/codemods/update-default-props.d.ts +7 -0
  10. package/dist/codemods/update-default-props.js +133 -0
  11. package/dist/color-math.d.ts +2 -0
  12. package/dist/color-math.js +13 -0
  13. package/dist/config/max-timeline-tracks.d.ts +2 -0
  14. package/dist/config/max-timeline-tracks.js +25 -0
  15. package/dist/editor/components/AssetSelector.d.ts +2 -0
  16. package/dist/editor/components/AssetSelector.js +102 -0
  17. package/dist/editor/components/AssetSelectorItem.d.ts +24 -0
  18. package/dist/editor/components/AssetSelectorItem.js +196 -0
  19. package/dist/editor/components/AudioWaveform.d.ts +11 -0
  20. package/dist/editor/components/AudioWaveform.js +122 -0
  21. package/dist/editor/components/AudioWaveformBar.d.ts +6 -0
  22. package/dist/editor/components/AudioWaveformBar.js +24 -0
  23. package/dist/editor/components/Canvas.d.ts +5 -0
  24. package/dist/editor/components/Canvas.js +260 -0
  25. package/dist/editor/components/CanvasOrLoading.d.ts +5 -0
  26. package/dist/editor/components/CanvasOrLoading.js +96 -0
  27. package/dist/editor/components/CheckboardToggle.d.ts +2 -0
  28. package/dist/editor/components/CheckboardToggle.js +26 -0
  29. package/dist/editor/components/Checkbox.d.ts +7 -0
  30. package/dist/editor/components/Checkbox.js +42 -0
  31. package/dist/editor/components/CheckerboardProvider.d.ts +4 -0
  32. package/dist/editor/components/CheckerboardProvider.js +24 -0
  33. package/dist/editor/components/CompositionSelector.d.ts +6 -0
  34. package/dist/editor/components/CompositionSelector.js +102 -0
  35. package/dist/editor/components/CompositionSelectorItem.d.ts +22 -0
  36. package/dist/editor/components/CompositionSelectorItem.js +131 -0
  37. package/dist/editor/components/ContextMenu.d.ts +6 -0
  38. package/dist/editor/components/ContextMenu.js +91 -0
  39. package/dist/editor/components/ControlButton.d.ts +5 -0
  40. package/dist/editor/components/ControlButton.js +21 -0
  41. package/dist/editor/components/CopyButton.d.ts +6 -0
  42. package/dist/editor/components/CopyButton.js +43 -0
  43. package/dist/editor/components/CurrentComposition.d.ts +2 -0
  44. package/dist/editor/components/CurrentComposition.js +45 -0
  45. package/dist/editor/components/CurrentCompositionSideEffects.d.ts +3 -0
  46. package/dist/editor/components/CurrentCompositionSideEffects.js +67 -0
  47. package/dist/editor/components/Editor.d.ts +2 -0
  48. package/dist/editor/components/Editor.js +57 -0
  49. package/dist/editor/components/EditorContent.d.ts +2 -0
  50. package/dist/editor/components/EditorContent.js +24 -0
  51. package/dist/editor/components/EditorContexts.d.ts +4 -0
  52. package/dist/editor/components/EditorContexts.js +24 -0
  53. package/dist/editor/components/EditorGuides/Guide.d.ts +13 -0
  54. package/dist/editor/components/EditorGuides/Guide.js +91 -0
  55. package/dist/editor/components/EditorGuides/index.d.ts +10 -0
  56. package/dist/editor/components/EditorGuides/index.js +32 -0
  57. package/dist/editor/components/EditorRuler/Ruler.d.ts +17 -0
  58. package/dist/editor/components/EditorRuler/Ruler.js +107 -0
  59. package/dist/editor/components/EditorRuler/index.d.ts +10 -0
  60. package/dist/editor/components/EditorRuler/index.js +167 -0
  61. package/dist/editor/components/EditorRuler/use-is-ruler-visible.d.ts +1 -0
  62. package/dist/editor/components/EditorRuler/use-is-ruler-visible.js +12 -0
  63. package/dist/editor/components/ExplorerPanel.d.ts +8 -0
  64. package/dist/editor/components/ExplorerPanel.js +54 -0
  65. package/dist/editor/components/FilePreview.d.ts +9 -0
  66. package/dist/editor/components/FilePreview.js +40 -0
  67. package/dist/editor/components/FpsCounter.d.ts +4 -0
  68. package/dist/editor/components/FpsCounter.js +74 -0
  69. package/dist/editor/components/FramePersistor.d.ts +2 -0
  70. package/dist/editor/components/FramePersistor.js +17 -0
  71. package/dist/editor/components/FullscreenToggle.d.ts +2 -0
  72. package/dist/editor/components/FullscreenToggle.js +48 -0
  73. package/dist/editor/components/GlobalKeybindings.d.ts +2 -0
  74. package/dist/editor/components/GlobalKeybindings.js +77 -0
  75. package/dist/editor/components/InitialCompositionLoader.d.ts +4 -0
  76. package/dist/editor/components/InitialCompositionLoader.js +115 -0
  77. package/dist/editor/components/InlineAction.d.ts +8 -0
  78. package/dist/editor/components/InlineAction.js +34 -0
  79. package/dist/editor/components/JSONViewer.d.ts +4 -0
  80. package/dist/editor/components/JSONViewer.js +26 -0
  81. package/dist/editor/components/KeyboardShortcutsExplainer.d.ts +2 -0
  82. package/dist/editor/components/KeyboardShortcutsExplainer.js +57 -0
  83. package/dist/editor/components/KnownBugs.d.ts +5 -0
  84. package/dist/editor/components/KnownBugs.js +21 -0
  85. package/dist/editor/components/LoopToggle.d.ts +5 -0
  86. package/dist/editor/components/LoopToggle.js +19 -0
  87. package/dist/editor/components/MediaVolumeProvider.d.ts +4 -0
  88. package/dist/editor/components/MediaVolumeProvider.js +25 -0
  89. package/dist/editor/components/Menu/MenuDivider.d.ts +2 -0
  90. package/dist/editor/components/Menu/MenuDivider.js +15 -0
  91. package/dist/editor/components/Menu/MenuItem.d.ts +22 -0
  92. package/dist/editor/components/Menu/MenuItem.js +96 -0
  93. package/dist/editor/components/Menu/MenuSubItem.d.ts +19 -0
  94. package/dist/editor/components/Menu/MenuSubItem.js +105 -0
  95. package/dist/editor/components/Menu/SubMenu.d.ts +10 -0
  96. package/dist/editor/components/Menu/SubMenu.js +14 -0
  97. package/dist/editor/components/Menu/is-menu-item.d.ts +5 -0
  98. package/dist/editor/components/Menu/is-menu-item.js +14 -0
  99. package/dist/editor/components/Menu/portals.d.ts +1 -0
  100. package/dist/editor/components/Menu/portals.js +15 -0
  101. package/dist/editor/components/Menu/styles.d.ts +11 -0
  102. package/dist/editor/components/Menu/styles.js +38 -0
  103. package/dist/editor/components/MenuBuildIndicator.d.ts +2 -0
  104. package/dist/editor/components/MenuBuildIndicator.js +45 -0
  105. package/dist/editor/components/MenuToolbar.d.ts +2 -0
  106. package/dist/editor/components/MenuToolbar.js +82 -0
  107. package/dist/editor/components/ModalContainer.d.ts +8 -0
  108. package/dist/editor/components/ModalContainer.js +34 -0
  109. package/dist/editor/components/ModalHeader.d.ts +4 -0
  110. package/dist/editor/components/ModalHeader.js +32 -0
  111. package/dist/editor/components/Modals.d.ts +2 -0
  112. package/dist/editor/components/Modals.js +23 -0
  113. package/dist/editor/components/ModalsProvider.d.ts +4 -0
  114. package/dist/editor/components/ModalsProvider.js +17 -0
  115. package/dist/editor/components/MuteToggle.d.ts +5 -0
  116. package/dist/editor/components/MuteToggle.js +19 -0
  117. package/dist/editor/components/NewComposition/CancelButton.d.ts +5 -0
  118. package/dist/editor/components/NewComposition/CancelButton.js +20 -0
  119. package/dist/editor/components/NewComposition/ComboBox.d.ts +29 -0
  120. package/dist/editor/components/NewComposition/ComboBox.js +159 -0
  121. package/dist/editor/components/NewComposition/CopyHint.d.ts +2 -0
  122. package/dist/editor/components/NewComposition/CopyHint.js +30 -0
  123. package/dist/editor/components/NewComposition/InputDragger.d.ts +12 -0
  124. package/dist/editor/components/NewComposition/InputDragger.js +122 -0
  125. package/dist/editor/components/NewComposition/MenuContent.d.ts +12 -0
  126. package/dist/editor/components/NewComposition/MenuContent.js +245 -0
  127. package/dist/editor/components/NewComposition/NewCompAspectRatio.d.ts +7 -0
  128. package/dist/editor/components/NewComposition/NewCompAspectRatio.js +20 -0
  129. package/dist/editor/components/NewComposition/NewCompCode.d.ts +9 -0
  130. package/dist/editor/components/NewComposition/NewCompCode.js +67 -0
  131. package/dist/editor/components/NewComposition/NewCompDuration.d.ts +6 -0
  132. package/dist/editor/components/NewComposition/NewCompDuration.js +23 -0
  133. package/dist/editor/components/NewComposition/NewComposition.d.ts +6 -0
  134. package/dist/editor/components/NewComposition/NewComposition.js +204 -0
  135. package/dist/editor/components/NewComposition/RemInput.d.ts +17 -0
  136. package/dist/editor/components/NewComposition/RemInput.js +74 -0
  137. package/dist/editor/components/NewComposition/RemInputTypeColor.d.ts +8 -0
  138. package/dist/editor/components/NewComposition/RemInputTypeColor.js +53 -0
  139. package/dist/editor/components/NewComposition/RemTextarea.d.ts +7 -0
  140. package/dist/editor/components/NewComposition/RemTextarea.js +92 -0
  141. package/dist/editor/components/NewComposition/ToggleAspectRatio.d.ts +5 -0
  142. package/dist/editor/components/NewComposition/ToggleAspectRatio.js +26 -0
  143. package/dist/editor/components/NewComposition/ValidationMessage.d.ts +8 -0
  144. package/dist/editor/components/NewComposition/ValidationMessage.js +34 -0
  145. package/dist/editor/components/NewComposition/new-comp-layout.d.ts +4 -0
  146. package/dist/editor/components/NewComposition/new-comp-layout.js +20 -0
  147. package/dist/editor/components/NewComposition/render-aspect-ratio.d.ts +1 -0
  148. package/dist/editor/components/NewComposition/render-aspect-ratio.js +23 -0
  149. package/dist/editor/components/NoRegisterRoot.d.ts +2 -0
  150. package/dist/editor/components/NoRegisterRoot.js +41 -0
  151. package/dist/editor/components/Notifications/ColorDot.d.ts +4 -0
  152. package/dist/editor/components/Notifications/ColorDot.js +22 -0
  153. package/dist/editor/components/Notifications/Notification.d.ts +8 -0
  154. package/dist/editor/components/Notifications/Notification.js +31 -0
  155. package/dist/editor/components/Notifications/NotificationCenter.d.ts +14 -0
  156. package/dist/editor/components/Notifications/NotificationCenter.js +50 -0
  157. package/dist/editor/components/Notifications/ServerDisconnected.d.ts +2 -0
  158. package/dist/editor/components/Notifications/ServerDisconnected.js +53 -0
  159. package/dist/editor/components/OpenEditorButton.d.ts +2 -0
  160. package/dist/editor/components/OpenEditorButton.js +55 -0
  161. package/dist/editor/components/OptionsPanel.d.ts +8 -0
  162. package/dist/editor/components/OptionsPanel.js +112 -0
  163. package/dist/editor/components/PlayPause.d.ts +5 -0
  164. package/dist/editor/components/PlayPause.js +209 -0
  165. package/dist/editor/components/PlaybackKeyboardShortcutsManager.d.ts +4 -0
  166. package/dist/editor/components/PlaybackKeyboardShortcutsManager.js +80 -0
  167. package/dist/editor/components/PlaybackRatePersistor.d.ts +2 -0
  168. package/dist/editor/components/PlaybackRatePersistor.js +17 -0
  169. package/dist/editor/components/PlaybackRateSelector.d.ts +5 -0
  170. package/dist/editor/components/PlaybackRateSelector.js +59 -0
  171. package/dist/editor/components/PlayerEmitterContext.d.ts +4 -0
  172. package/dist/editor/components/PlayerEmitterContext.js +11 -0
  173. package/dist/editor/components/Preview.d.ts +13 -0
  174. package/dist/editor/components/Preview.js +158 -0
  175. package/dist/editor/components/PreviewToolbar.d.ts +2 -0
  176. package/dist/editor/components/PreviewToolbar.js +55 -0
  177. package/dist/editor/components/QuickSwitcher/AlgoliaCredit.d.ts +2 -0
  178. package/dist/editor/components/QuickSwitcher/AlgoliaCredit.js +11 -0
  179. package/dist/editor/components/QuickSwitcher/NoResults.d.ts +6 -0
  180. package/dist/editor/components/QuickSwitcher/NoResults.js +20 -0
  181. package/dist/editor/components/QuickSwitcher/QuickSwitcher.d.ts +7 -0
  182. package/dist/editor/components/QuickSwitcher/QuickSwitcher.js +16 -0
  183. package/dist/editor/components/QuickSwitcher/QuickSwitcherContent.d.ts +6 -0
  184. package/dist/editor/components/QuickSwitcher/QuickSwitcherContent.js +303 -0
  185. package/dist/editor/components/QuickSwitcher/QuickSwitcherResult.d.ts +21 -0
  186. package/dist/editor/components/QuickSwitcher/QuickSwitcherResult.js +112 -0
  187. package/dist/editor/components/QuickSwitcher/algolia-search.d.ts +2 -0
  188. package/dist/editor/components/QuickSwitcher/algolia-search.js +62 -0
  189. package/dist/editor/components/QuickSwitcher/fuzzy-search.d.ts +2 -0
  190. package/dist/editor/components/QuickSwitcher/fuzzy-search.js +26 -0
  191. package/dist/editor/components/RenderButton.d.ts +2 -0
  192. package/dist/editor/components/RenderButton.js +94 -0
  193. package/dist/editor/components/RenderModal/CliCopyButton.d.ts +4 -0
  194. package/dist/editor/components/RenderModal/CliCopyButton.js +60 -0
  195. package/dist/editor/components/RenderModal/CrfSetting.d.ts +15 -0
  196. package/dist/editor/components/RenderModal/CrfSetting.js +42 -0
  197. package/dist/editor/components/RenderModal/DataEditor.d.ts +22 -0
  198. package/dist/editor/components/RenderModal/DataEditor.js +301 -0
  199. package/dist/editor/components/RenderModal/EnforceAudioTrackSetting.d.ts +8 -0
  200. package/dist/editor/components/RenderModal/EnforceAudioTrackSetting.js +17 -0
  201. package/dist/editor/components/RenderModal/EnvInput.d.ts +11 -0
  202. package/dist/editor/components/RenderModal/EnvInput.js +74 -0
  203. package/dist/editor/components/RenderModal/FrameRangeSetting.d.ts +8 -0
  204. package/dist/editor/components/RenderModal/FrameRangeSetting.js +26 -0
  205. package/dist/editor/components/RenderModal/GuiRenderStatus.d.ts +5 -0
  206. package/dist/editor/components/RenderModal/GuiRenderStatus.js +78 -0
  207. package/dist/editor/components/RenderModal/InfoBubble.d.ts +5 -0
  208. package/dist/editor/components/RenderModal/InfoBubble.js +116 -0
  209. package/dist/editor/components/RenderModal/InfoTooltip.d.ts +6 -0
  210. package/dist/editor/components/RenderModal/InfoTooltip.js +41 -0
  211. package/dist/editor/components/RenderModal/InlineEyeIcon.d.ts +5 -0
  212. package/dist/editor/components/RenderModal/InlineEyeIcon.js +17 -0
  213. package/dist/editor/components/RenderModal/InlineRemoveButton.d.ts +4 -0
  214. package/dist/editor/components/RenderModal/InlineRemoveButton.js +17 -0
  215. package/dist/editor/components/RenderModal/JpegQualitySetting.d.ts +5 -0
  216. package/dist/editor/components/RenderModal/JpegQualitySetting.js +12 -0
  217. package/dist/editor/components/RenderModal/MultiRangeSlider.d.ts +12 -0
  218. package/dist/editor/components/RenderModal/MultiRangeSlider.js +47 -0
  219. package/dist/editor/components/RenderModal/MutedSetting.d.ts +8 -0
  220. package/dist/editor/components/RenderModal/MutedSetting.js +17 -0
  221. package/dist/editor/components/RenderModal/NumberOfLoopsSetting.d.ts +5 -0
  222. package/dist/editor/components/RenderModal/NumberOfLoopsSetting.js +26 -0
  223. package/dist/editor/components/RenderModal/NumberSetting.d.ts +12 -0
  224. package/dist/editor/components/RenderModal/NumberSetting.js +29 -0
  225. package/dist/editor/components/RenderModal/OptionExplainer.d.ts +5 -0
  226. package/dist/editor/components/RenderModal/OptionExplainer.js +56 -0
  227. package/dist/editor/components/RenderModal/RenderModal.d.ts +39 -0
  228. package/dist/editor/components/RenderModal/RenderModal.js +790 -0
  229. package/dist/editor/components/RenderModal/RenderModalAdvanced.d.ts +34 -0
  230. package/dist/editor/components/RenderModal/RenderModalAdvanced.js +109 -0
  231. package/dist/editor/components/RenderModal/RenderModalAudio.d.ts +17 -0
  232. package/dist/editor/components/RenderModal/RenderModalAudio.js +46 -0
  233. package/dist/editor/components/RenderModal/RenderModalBasic.d.ts +23 -0
  234. package/dist/editor/components/RenderModal/RenderModalBasic.js +80 -0
  235. package/dist/editor/components/RenderModal/RenderModalEnvironmentVariables.d.ts +5 -0
  236. package/dist/editor/components/RenderModal/RenderModalEnvironmentVariables.js +55 -0
  237. package/dist/editor/components/RenderModal/RenderModalGif.d.ts +9 -0
  238. package/dist/editor/components/RenderModal/RenderModalGif.js +19 -0
  239. package/dist/editor/components/RenderModal/RenderModalHr.d.ts +2 -0
  240. package/dist/editor/components/RenderModal/RenderModalHr.js +18 -0
  241. package/dist/editor/components/RenderModal/RenderModalInput.d.ts +12 -0
  242. package/dist/editor/components/RenderModal/RenderModalInput.js +13 -0
  243. package/dist/editor/components/RenderModal/RenderModalJSONPropsEditor.d.ts +13 -0
  244. package/dist/editor/components/RenderModal/RenderModalJSONPropsEditor.js +143 -0
  245. package/dist/editor/components/RenderModal/RenderModalPicture.d.ts +30 -0
  246. package/dist/editor/components/RenderModal/RenderModalPicture.js +73 -0
  247. package/dist/editor/components/RenderModal/RenderStatusModal.d.ts +4 -0
  248. package/dist/editor/components/RenderModal/RenderStatusModal.js +70 -0
  249. package/dist/editor/components/RenderModal/ScaleSetting.d.ts +5 -0
  250. package/dist/editor/components/RenderModal/ScaleSetting.js +17 -0
  251. package/dist/editor/components/RenderModal/SchemaEditor/Fieldset.d.ts +7 -0
  252. package/dist/editor/components/RenderModal/SchemaEditor/Fieldset.js +26 -0
  253. package/dist/editor/components/RenderModal/SchemaEditor/SchemaEditor.d.ts +13 -0
  254. package/dist/editor/components/RenderModal/SchemaEditor/SchemaEditor.js +69 -0
  255. package/dist/editor/components/RenderModal/SchemaEditor/SchemaErrorMessages.d.ts +15 -0
  256. package/dist/editor/components/RenderModal/SchemaEditor/SchemaErrorMessages.js +60 -0
  257. package/dist/editor/components/RenderModal/SchemaEditor/SchemaLabel.d.ts +14 -0
  258. package/dist/editor/components/RenderModal/SchemaEditor/SchemaLabel.js +32 -0
  259. package/dist/editor/components/RenderModal/SchemaEditor/SchemaResetButton.d.ts +4 -0
  260. package/dist/editor/components/RenderModal/SchemaEditor/SchemaResetButton.js +17 -0
  261. package/dist/editor/components/RenderModal/SchemaEditor/SchemaSaveButton.d.ts +5 -0
  262. package/dist/editor/components/RenderModal/SchemaEditor/SchemaSaveButton.js +18 -0
  263. package/dist/editor/components/RenderModal/SchemaEditor/SchemaSeparationLine.d.ts +2 -0
  264. package/dist/editor/components/RenderModal/SchemaEditor/SchemaSeparationLine.js +11 -0
  265. package/dist/editor/components/RenderModal/SchemaEditor/SchemaVerticalGuide.d.ts +5 -0
  266. package/dist/editor/components/RenderModal/SchemaEditor/SchemaVerticalGuide.js +13 -0
  267. package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayEditor.d.ts +17 -0
  268. package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayEditor.js +83 -0
  269. package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayItemEditor.d.ts +16 -0
  270. package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayItemEditor.js +28 -0
  271. package/dist/editor/components/RenderModal/SchemaEditor/ZodBooleanEditor.d.ts +17 -0
  272. package/dist/editor/components/RenderModal/SchemaEditor/ZodBooleanEditor.js +28 -0
  273. package/dist/editor/components/RenderModal/SchemaEditor/ZodColorEditor.d.ts +17 -0
  274. package/dist/editor/components/RenderModal/SchemaEditor/ZodColorEditor.js +71 -0
  275. package/dist/editor/components/RenderModal/SchemaEditor/ZodDateEditor.d.ts +17 -0
  276. package/dist/editor/components/RenderModal/SchemaEditor/ZodDateEditor.js +62 -0
  277. package/dist/editor/components/RenderModal/SchemaEditor/ZodDefaultEditor.d.ts +17 -0
  278. package/dist/editor/components/RenderModal/SchemaEditor/ZodDefaultEditor.js +10 -0
  279. package/dist/editor/components/RenderModal/SchemaEditor/ZodDiscriminatedUnionEditor.d.ts +17 -0
  280. package/dist/editor/components/RenderModal/SchemaEditor/ZodDiscriminatedUnionEditor.js +83 -0
  281. package/dist/editor/components/RenderModal/SchemaEditor/ZodEffectEditor.d.ts +16 -0
  282. package/dist/editor/components/RenderModal/SchemaEditor/ZodEffectEditor.js +31 -0
  283. package/dist/editor/components/RenderModal/SchemaEditor/ZodEnumEditor.d.ts +15 -0
  284. package/dist/editor/components/RenderModal/SchemaEditor/ZodEnumEditor.js +55 -0
  285. package/dist/editor/components/RenderModal/SchemaEditor/ZodErrorMessages.d.ts +6 -0
  286. package/dist/editor/components/RenderModal/SchemaEditor/ZodErrorMessages.js +48 -0
  287. package/dist/editor/components/RenderModal/SchemaEditor/ZodFieldValidation.d.ts +7 -0
  288. package/dist/editor/components/RenderModal/SchemaEditor/ZodFieldValidation.js +27 -0
  289. package/dist/editor/components/RenderModal/SchemaEditor/ZodNonEditableValue.d.ts +9 -0
  290. package/dist/editor/components/RenderModal/SchemaEditor/ZodNonEditableValue.js +27 -0
  291. package/dist/editor/components/RenderModal/SchemaEditor/ZodNullableEditor.d.ts +17 -0
  292. package/dist/editor/components/RenderModal/SchemaEditor/ZodNullableEditor.js +10 -0
  293. package/dist/editor/components/RenderModal/SchemaEditor/ZodNumberEditor.d.ts +17 -0
  294. package/dist/editor/components/RenderModal/SchemaEditor/ZodNumberEditor.js +69 -0
  295. package/dist/editor/components/RenderModal/SchemaEditor/ZodObjectEditor.d.ts +22 -0
  296. package/dist/editor/components/RenderModal/SchemaEditor/ZodObjectEditor.js +88 -0
  297. package/dist/editor/components/RenderModal/SchemaEditor/ZodOptionalEditor.d.ts +17 -0
  298. package/dist/editor/components/RenderModal/SchemaEditor/ZodOptionalEditor.js +10 -0
  299. package/dist/editor/components/RenderModal/SchemaEditor/ZodOrNullishEditor.d.ts +19 -0
  300. package/dist/editor/components/RenderModal/SchemaEditor/ZodOrNullishEditor.js +50 -0
  301. package/dist/editor/components/RenderModal/SchemaEditor/ZodStaticFileEditor.d.ts +17 -0
  302. package/dist/editor/components/RenderModal/SchemaEditor/ZodStaticFileEditor.js +56 -0
  303. package/dist/editor/components/RenderModal/SchemaEditor/ZodStringEditor.d.ts +17 -0
  304. package/dist/editor/components/RenderModal/SchemaEditor/ZodStringEditor.js +34 -0
  305. package/dist/editor/components/RenderModal/SchemaEditor/ZodSwitch.d.ts +17 -0
  306. package/dist/editor/components/RenderModal/SchemaEditor/ZodSwitch.js +101 -0
  307. package/dist/editor/components/RenderModal/SchemaEditor/ZodTextareaEditor.d.ts +17 -0
  308. package/dist/editor/components/RenderModal/SchemaEditor/ZodTextareaEditor.js +42 -0
  309. package/dist/editor/components/RenderModal/SchemaEditor/ZodUnionEditor.d.ts +17 -0
  310. package/dist/editor/components/RenderModal/SchemaEditor/ZodUnionEditor.js +49 -0
  311. package/dist/editor/components/RenderModal/SchemaEditor/create-zod-values.d.ts +2 -0
  312. package/dist/editor/components/RenderModal/SchemaEditor/create-zod-values.js +163 -0
  313. package/dist/editor/components/RenderModal/SchemaEditor/deep-equal.d.ts +1 -0
  314. package/dist/editor/components/RenderModal/SchemaEditor/deep-equal.js +30 -0
  315. package/dist/editor/components/RenderModal/SchemaEditor/extract-enum-json-paths.d.ts +3 -0
  316. package/dist/editor/components/RenderModal/SchemaEditor/extract-enum-json-paths.js +126 -0
  317. package/dist/editor/components/RenderModal/SchemaEditor/get-schema-label.d.ts +2 -0
  318. package/dist/editor/components/RenderModal/SchemaEditor/get-schema-label.js +15 -0
  319. package/dist/editor/components/RenderModal/SchemaEditor/local-state.d.ts +21 -0
  320. package/dist/editor/components/RenderModal/SchemaEditor/local-state.js +85 -0
  321. package/dist/editor/components/RenderModal/SchemaEditor/zod-types.d.ts +1 -0
  322. package/dist/editor/components/RenderModal/SchemaEditor/zod-types.js +2 -0
  323. package/dist/editor/components/RenderModal/WarningIndicatorButton.d.ts +6 -0
  324. package/dist/editor/components/RenderModal/WarningIndicatorButton.js +49 -0
  325. package/dist/editor/components/RenderModal/get-render-modal-warnings.d.ts +19 -0
  326. package/dist/editor/components/RenderModal/get-render-modal-warnings.js +60 -0
  327. package/dist/editor/components/RenderModal/human-readable-audio-codecs.d.ts +2 -0
  328. package/dist/editor/components/RenderModal/human-readable-audio-codecs.js +18 -0
  329. package/dist/editor/components/RenderModal/human-readable-codec.d.ts +2 -0
  330. package/dist/editor/components/RenderModal/human-readable-codec.js +36 -0
  331. package/dist/editor/components/RenderModal/layout.d.ts +6 -0
  332. package/dist/editor/components/RenderModal/layout.js +42 -0
  333. package/dist/editor/components/RenderModal/out-name-checker.d.ts +14 -0
  334. package/dist/editor/components/RenderModal/out-name-checker.js +75 -0
  335. package/dist/editor/components/RenderPreview.d.ts +6 -0
  336. package/dist/editor/components/RenderPreview.js +31 -0
  337. package/dist/editor/components/RenderQueue/CircularProgress.d.ts +5 -0
  338. package/dist/editor/components/RenderQueue/CircularProgress.js +18 -0
  339. package/dist/editor/components/RenderQueue/RenderQueueCopyToClipboard.d.ts +6 -0
  340. package/dist/editor/components/RenderQueue/RenderQueueCopyToClipboard.js +52 -0
  341. package/dist/editor/components/RenderQueue/RenderQueueError.d.ts +5 -0
  342. package/dist/editor/components/RenderQueue/RenderQueueError.js +26 -0
  343. package/dist/editor/components/RenderQueue/RenderQueueItem.d.ts +6 -0
  344. package/dist/editor/components/RenderQueue/RenderQueueItem.js +94 -0
  345. package/dist/editor/components/RenderQueue/RenderQueueItemCancelButton.d.ts +5 -0
  346. package/dist/editor/components/RenderQueue/RenderQueueItemCancelButton.js +27 -0
  347. package/dist/editor/components/RenderQueue/RenderQueueItemStatus.d.ts +5 -0
  348. package/dist/editor/components/RenderQueue/RenderQueueItemStatus.js +74 -0
  349. package/dist/editor/components/RenderQueue/RenderQueueOpenInFolder.d.ts +5 -0
  350. package/dist/editor/components/RenderQueue/RenderQueueOpenInFolder.js +28 -0
  351. package/dist/editor/components/RenderQueue/RenderQueueOutputName.d.ts +5 -0
  352. package/dist/editor/components/RenderQueue/RenderQueueOutputName.js +18 -0
  353. package/dist/editor/components/RenderQueue/RenderQueueProgressMessage.d.ts +5 -0
  354. package/dist/editor/components/RenderQueue/RenderQueueProgressMessage.js +26 -0
  355. package/dist/editor/components/RenderQueue/RenderQueueRemoveItem.d.ts +5 -0
  356. package/dist/editor/components/RenderQueue/RenderQueueRemoveItem.js +37 -0
  357. package/dist/editor/components/RenderQueue/RenderQueueRepeat.d.ts +5 -0
  358. package/dist/editor/components/RenderQueue/RenderQueueRepeat.js +27 -0
  359. package/dist/editor/components/RenderQueue/SuccessIcon.d.ts +2 -0
  360. package/dist/editor/components/RenderQueue/SuccessIcon.js +14 -0
  361. package/dist/editor/components/RenderQueue/actions.d.ts +87 -0
  362. package/dist/editor/components/RenderQueue/actions.js +176 -0
  363. package/dist/editor/components/RenderQueue/context.d.ts +18 -0
  364. package/dist/editor/components/RenderQueue/context.js +49 -0
  365. package/dist/editor/components/RenderQueue/index.d.ts +2 -0
  366. package/dist/editor/components/RenderQueue/index.js +103 -0
  367. package/dist/editor/components/RenderQueue/item-style.d.ts +2 -0
  368. package/dist/editor/components/RenderQueue/item-style.js +21 -0
  369. package/dist/editor/components/RendersTab.d.ts +6 -0
  370. package/dist/editor/components/RendersTab.js +51 -0
  371. package/dist/editor/components/ResetZoomButton.d.ts +4 -0
  372. package/dist/editor/components/ResetZoomButton.js +9 -0
  373. package/dist/editor/components/SegmentedControl.d.ts +11 -0
  374. package/dist/editor/components/SegmentedControl.js +65 -0
  375. package/dist/editor/components/SetTimelineInOutProvider.d.ts +4 -0
  376. package/dist/editor/components/SetTimelineInOutProvider.js +20 -0
  377. package/dist/editor/components/ShowGuidesProvider.d.ts +4 -0
  378. package/dist/editor/components/ShowGuidesProvider.js +43 -0
  379. package/dist/editor/components/ShowRulersProvider.d.ts +4 -0
  380. package/dist/editor/components/ShowRulersProvider.js +24 -0
  381. package/dist/editor/components/SidebarCollapserControls.d.ts +2 -0
  382. package/dist/editor/components/SidebarCollapserControls.js +138 -0
  383. package/dist/editor/components/SidebarRenderButton.d.ts +6 -0
  384. package/dist/editor/components/SidebarRenderButton.js +74 -0
  385. package/dist/editor/components/SizeSelector.d.ts +5 -0
  386. package/dist/editor/components/SizeSelector.js +120 -0
  387. package/dist/editor/components/Spinner.d.ts +5 -0
  388. package/dist/editor/components/Spinner.js +41 -0
  389. package/dist/editor/components/Splitter/SplitterContainer.d.ts +10 -0
  390. package/dist/editor/components/Splitter/SplitterContainer.js +68 -0
  391. package/dist/editor/components/Splitter/SplitterContext.d.ts +22 -0
  392. package/dist/editor/components/Splitter/SplitterContext.js +19 -0
  393. package/dist/editor/components/Splitter/SplitterElement.d.ts +5 -0
  394. package/dist/editor/components/Splitter/SplitterElement.js +22 -0
  395. package/dist/editor/components/Splitter/SplitterHandle.d.ts +5 -0
  396. package/dist/editor/components/Splitter/SplitterHandle.js +128 -0
  397. package/dist/editor/components/StaticFilePreview.d.ts +6 -0
  398. package/dist/editor/components/StaticFilePreview.js +39 -0
  399. package/dist/editor/components/Tabs/index.d.ts +11 -0
  400. package/dist/editor/components/Tabs/index.js +56 -0
  401. package/dist/editor/components/Tabs/vertical.d.ts +7 -0
  402. package/dist/editor/components/Tabs/vertical.js +43 -0
  403. package/dist/editor/components/TextViewer.d.ts +4 -0
  404. package/dist/editor/components/TextViewer.js +26 -0
  405. package/dist/editor/components/TimeValue.d.ts +2 -0
  406. package/dist/editor/components/TimeValue.js +41 -0
  407. package/dist/editor/components/Timeline/LoopedIndicator.d.ts +2 -0
  408. package/dist/editor/components/Timeline/LoopedIndicator.js +44 -0
  409. package/dist/editor/components/Timeline/LoopedTimelineIndicators.d.ts +4 -0
  410. package/dist/editor/components/Timeline/LoopedTimelineIndicators.js +22 -0
  411. package/dist/editor/components/Timeline/MaxTimelineTracks.d.ts +5 -0
  412. package/dist/editor/components/Timeline/MaxTimelineTracks.js +24 -0
  413. package/dist/editor/components/Timeline/Timeline.d.ts +2 -0
  414. package/dist/editor/components/Timeline/Timeline.js +92 -0
  415. package/dist/editor/components/Timeline/TimelineCollapseToggle.d.ts +5 -0
  416. package/dist/editor/components/Timeline/TimelineCollapseToggle.js +18 -0
  417. package/dist/editor/components/Timeline/TimelineDragHandler.d.ts +2 -0
  418. package/dist/editor/components/Timeline/TimelineDragHandler.js +445 -0
  419. package/dist/editor/components/Timeline/TimelineInOutPointer.d.ts +4 -0
  420. package/dist/editor/components/Timeline/TimelineInOutPointer.js +37 -0
  421. package/dist/editor/components/Timeline/TimelineInOutPointerHandle.d.ts +10 -0
  422. package/dist/editor/components/Timeline/TimelineInOutPointerHandle.js +43 -0
  423. package/dist/editor/components/Timeline/TimelineList.d.ts +8 -0
  424. package/dist/editor/components/Timeline/TimelineList.js +21 -0
  425. package/dist/editor/components/Timeline/TimelineListItem.d.ts +13 -0
  426. package/dist/editor/components/Timeline/TimelineListItem.js +104 -0
  427. package/dist/editor/components/Timeline/TimelinePlayCursorSyncer.d.ts +2 -0
  428. package/dist/editor/components/Timeline/TimelinePlayCursorSyncer.js +77 -0
  429. package/dist/editor/components/Timeline/TimelineScrollable.d.ts +4 -0
  430. package/dist/editor/components/Timeline/TimelineScrollable.js +26 -0
  431. package/dist/editor/components/Timeline/TimelineSequence.d.ts +5 -0
  432. package/dist/editor/components/Timeline/TimelineSequence.js +64 -0
  433. package/dist/editor/components/Timeline/TimelineSequenceFrame.d.ts +5 -0
  434. package/dist/editor/components/Timeline/TimelineSequenceFrame.js +32 -0
  435. package/dist/editor/components/Timeline/TimelineSlider.d.ts +5 -0
  436. package/dist/editor/components/Timeline/TimelineSlider.js +79 -0
  437. package/dist/editor/components/Timeline/TimelineSliderHandle.d.ts +2 -0
  438. package/dist/editor/components/Timeline/TimelineSliderHandle.js +14 -0
  439. package/dist/editor/components/Timeline/TimelineTimeIndicators.d.ts +5 -0
  440. package/dist/editor/components/Timeline/TimelineTimeIndicators.js +166 -0
  441. package/dist/editor/components/Timeline/TimelineTracks.d.ts +8 -0
  442. package/dist/editor/components/Timeline/TimelineTracks.js +37 -0
  443. package/dist/editor/components/Timeline/TimelineVideoInfo.d.ts +4 -0
  444. package/dist/editor/components/Timeline/TimelineVideoInfo.js +51 -0
  445. package/dist/editor/components/Timeline/TimelineWidthProvider.d.ts +7 -0
  446. package/dist/editor/components/Timeline/TimelineWidthProvider.js +17 -0
  447. package/dist/editor/components/Timeline/TimelineZoomControls.d.ts +2 -0
  448. package/dist/editor/components/Timeline/TimelineZoomControls.js +46 -0
  449. package/dist/editor/components/Timeline/imperative-state.d.ts +8 -0
  450. package/dist/editor/components/Timeline/imperative-state.js +39 -0
  451. package/dist/editor/components/Timeline/is-collapsed.d.ts +4 -0
  452. package/dist/editor/components/Timeline/is-collapsed.js +26 -0
  453. package/dist/editor/components/Timeline/timeline-refs.d.ts +4 -0
  454. package/dist/editor/components/Timeline/timeline-refs.js +10 -0
  455. package/dist/editor/components/Timeline/timeline-scroll-logic.d.ts +43 -0
  456. package/dist/editor/components/Timeline/timeline-scroll-logic.js +217 -0
  457. package/dist/editor/components/Timeline/timeline-state-reducer.d.ts +19 -0
  458. package/dist/editor/components/Timeline/timeline-state-reducer.js +47 -0
  459. package/dist/editor/components/TimelineInOutToggle.d.ts +9 -0
  460. package/dist/editor/components/TimelineInOutToggle.js +240 -0
  461. package/dist/editor/components/TopPanel.d.ts +3 -0
  462. package/dist/editor/components/TopPanel.js +72 -0
  463. package/dist/editor/components/UpdateCheck.d.ts +15 -0
  464. package/dist/editor/components/UpdateCheck.js +95 -0
  465. package/dist/editor/components/UpdateModal/OpenIssueButton.d.ts +4 -0
  466. package/dist/editor/components/UpdateModal/OpenIssueButton.js +37 -0
  467. package/dist/editor/components/UpdateModal/UpdateModal.d.ts +6 -0
  468. package/dist/editor/components/UpdateModal/UpdateModal.js +63 -0
  469. package/dist/editor/components/ZoomGesturesProvider.d.ts +4 -0
  470. package/dist/editor/components/ZoomGesturesProvider.js +24 -0
  471. package/dist/editor/components/ZoomPersistor.d.ts +5 -0
  472. package/dist/editor/components/ZoomPersistor.js +64 -0
  473. package/dist/editor/components/get-zod-if-possible.d.ts +10 -0
  474. package/dist/editor/components/get-zod-if-possible.js +79 -0
  475. package/dist/editor/components/layout.d.ts +26 -0
  476. package/dist/editor/components/layout.js +48 -0
  477. package/dist/editor/helpers/calculate-timeline.d.ts +6 -0
  478. package/dist/editor/helpers/calculate-timeline.js +84 -0
  479. package/dist/editor/helpers/checkerboard-background.d.ts +4 -0
  480. package/dist/editor/helpers/checkerboard-background.js +30 -0
  481. package/dist/editor/helpers/client-id.d.ts +17 -0
  482. package/dist/editor/helpers/client-id.js +46 -0
  483. package/dist/editor/helpers/colors.d.ts +24 -0
  484. package/dist/editor/helpers/colors.js +37 -0
  485. package/dist/editor/helpers/convert-env-variables.d.ts +8 -0
  486. package/dist/editor/helpers/convert-env-variables.js +20 -0
  487. package/dist/editor/helpers/copy-text.d.ts +1 -0
  488. package/dist/editor/helpers/copy-text.js +23 -0
  489. package/dist/editor/helpers/create-folder-tree.d.ts +17 -0
  490. package/dist/editor/helpers/create-folder-tree.js +134 -0
  491. package/dist/editor/helpers/document-title.d.ts +4 -0
  492. package/dist/editor/helpers/document-title.js +67 -0
  493. package/dist/editor/helpers/editor-ruler.d.ts +53 -0
  494. package/dist/editor/helpers/editor-ruler.js +183 -0
  495. package/dist/editor/helpers/get-asset-metadata.d.ts +11 -0
  496. package/dist/editor/helpers/get-asset-metadata.js +64 -0
  497. package/dist/editor/helpers/get-effective-translation.d.ts +26 -0
  498. package/dist/editor/helpers/get-effective-translation.js +45 -0
  499. package/dist/editor/helpers/get-left-of-timeline-slider.d.ts +1 -0
  500. package/dist/editor/helpers/get-left-of-timeline-slider.js +9 -0
  501. package/dist/editor/helpers/get-sequence-visible-range.d.ts +4 -0
  502. package/dist/editor/helpers/get-sequence-visible-range.js +39 -0
  503. package/dist/editor/helpers/get-timeline-nestedness.d.ts +2 -0
  504. package/dist/editor/helpers/get-timeline-nestedness.js +14 -0
  505. package/dist/editor/helpers/get-timeline-sequence-hash.d.ts +6 -0
  506. package/dist/editor/helpers/get-timeline-sequence-hash.js +33 -0
  507. package/dist/editor/helpers/get-timeline-sequence-layout.d.ts +13 -0
  508. package/dist/editor/helpers/get-timeline-sequence-layout.js +45 -0
  509. package/dist/editor/helpers/get-timeline-sequence-sort-key.d.ts +18 -0
  510. package/dist/editor/helpers/get-timeline-sequence-sort-key.js +24 -0
  511. package/dist/editor/helpers/is-composition-still.d.ts +3 -0
  512. package/dist/editor/helpers/is-composition-still.js +10 -0
  513. package/dist/editor/helpers/is-current-selected-still.d.ts +6 -0
  514. package/dist/editor/helpers/is-current-selected-still.js +26 -0
  515. package/dist/editor/helpers/noop.d.ts +1 -0
  516. package/dist/editor/helpers/noop.js +5 -0
  517. package/dist/editor/helpers/open-in-editor.d.ts +2 -0
  518. package/dist/editor/helpers/open-in-editor.js +22 -0
  519. package/dist/editor/helpers/persist-open-folders.d.ts +6 -0
  520. package/dist/editor/helpers/persist-open-folders.js +22 -0
  521. package/dist/editor/helpers/pick-color.d.ts +1 -0
  522. package/dist/editor/helpers/pick-color.js +41 -0
  523. package/dist/editor/helpers/presets-labels.d.ts +2 -0
  524. package/dist/editor/helpers/presets-labels.js +37 -0
  525. package/dist/editor/helpers/prores-labels.d.ts +2 -0
  526. package/dist/editor/helpers/prores-labels.js +25 -0
  527. package/dist/editor/helpers/render-modal-sections.d.ts +9 -0
  528. package/dist/editor/helpers/render-modal-sections.js +35 -0
  529. package/dist/editor/helpers/timeline-layout.d.ts +3 -0
  530. package/dist/editor/helpers/timeline-layout.js +6 -0
  531. package/dist/editor/helpers/use-breakpoint.d.ts +1 -0
  532. package/dist/editor/helpers/use-breakpoint.js +17 -0
  533. package/dist/editor/helpers/use-file-existence.d.ts +1 -0
  534. package/dist/editor/helpers/use-file-existence.js +66 -0
  535. package/dist/editor/helpers/use-keybinding.d.ts +16 -0
  536. package/dist/editor/helpers/use-keybinding.js +70 -0
  537. package/dist/editor/helpers/use-menu-structure.d.ts +7 -0
  538. package/dist/editor/helpers/use-menu-structure.js +770 -0
  539. package/dist/editor/helpers/use-studio-canvas-dimensions.d.ts +16 -0
  540. package/dist/editor/helpers/use-studio-canvas-dimensions.js +59 -0
  541. package/dist/editor/helpers/validate-new-comp-data.d.ts +4 -0
  542. package/dist/editor/helpers/validate-new-comp-data.js +40 -0
  543. package/dist/editor/icons/Checkmark.d.ts +1 -0
  544. package/dist/editor/icons/Checkmark.js +10 -0
  545. package/dist/editor/icons/audio.d.ts +2 -0
  546. package/dist/editor/icons/audio.js +6 -0
  547. package/dist/editor/icons/caret.d.ts +6 -0
  548. package/dist/editor/icons/caret.js +32 -0
  549. package/dist/editor/icons/clipboard.d.ts +4 -0
  550. package/dist/editor/icons/clipboard.js +6 -0
  551. package/dist/editor/icons/data.d.ts +2 -0
  552. package/dist/editor/icons/data.js +8 -0
  553. package/dist/editor/icons/file.d.ts +4 -0
  554. package/dist/editor/icons/file.js +6 -0
  555. package/dist/editor/icons/folder.d.ts +11 -0
  556. package/dist/editor/icons/folder.js +16 -0
  557. package/dist/editor/icons/frame.d.ts +2 -0
  558. package/dist/editor/icons/frame.js +6 -0
  559. package/dist/editor/icons/gear.d.ts +2 -0
  560. package/dist/editor/icons/gear.js +6 -0
  561. package/dist/editor/icons/gif.d.ts +2 -0
  562. package/dist/editor/icons/gif.js +6 -0
  563. package/dist/editor/icons/jump-to-start.d.ts +2 -0
  564. package/dist/editor/icons/jump-to-start.js +8 -0
  565. package/dist/editor/icons/keys.d.ts +4 -0
  566. package/dist/editor/icons/keys.js +20 -0
  567. package/dist/editor/icons/lock.d.ts +4 -0
  568. package/dist/editor/icons/lock.js +12 -0
  569. package/dist/editor/icons/media-volume.d.ts +3 -0
  570. package/dist/editor/icons/media-volume.js +14 -0
  571. package/dist/editor/icons/minus.d.ts +3 -0
  572. package/dist/editor/icons/minus.js +8 -0
  573. package/dist/editor/icons/pause.d.ts +3 -0
  574. package/dist/editor/icons/pause.js +6 -0
  575. package/dist/editor/icons/play.d.ts +3 -0
  576. package/dist/editor/icons/play.js +6 -0
  577. package/dist/editor/icons/plus.d.ts +5 -0
  578. package/dist/editor/icons/plus.js +8 -0
  579. package/dist/editor/icons/render.d.ts +9 -0
  580. package/dist/editor/icons/render.js +12 -0
  581. package/dist/editor/icons/step-back.d.ts +3 -0
  582. package/dist/editor/icons/step-back.js +8 -0
  583. package/dist/editor/icons/step-forward.d.ts +3 -0
  584. package/dist/editor/icons/step-forward.js +8 -0
  585. package/dist/editor/icons/still.d.ts +5 -0
  586. package/dist/editor/icons/still.js +8 -0
  587. package/dist/editor/icons/timelineInOutPointer.d.ts +4 -0
  588. package/dist/editor/icons/timelineInOutPointer.js +12 -0
  589. package/dist/editor/icons/video.d.ts +5 -0
  590. package/dist/editor/icons/video.js +8 -0
  591. package/dist/editor/state/aspect-ratio-locked.d.ts +2 -0
  592. package/dist/editor/state/aspect-ratio-locked.js +16 -0
  593. package/dist/editor/state/canvas-ref.d.ts +2 -0
  594. package/dist/editor/state/canvas-ref.js +5 -0
  595. package/dist/editor/state/checkerboard.d.ts +9 -0
  596. package/dist/editor/state/checkerboard.js +17 -0
  597. package/dist/editor/state/editor-guides.d.ts +25 -0
  598. package/dist/editor/state/editor-guides.js +34 -0
  599. package/dist/editor/state/editor-rulers.d.ts +14 -0
  600. package/dist/editor/state/editor-rulers.js +24 -0
  601. package/dist/editor/state/editor-zoom-gestures.d.ts +9 -0
  602. package/dist/editor/state/editor-zoom-gestures.js +17 -0
  603. package/dist/editor/state/folders.d.ts +13 -0
  604. package/dist/editor/state/folders.js +30 -0
  605. package/dist/editor/state/highest-z-index.d.ts +11 -0
  606. package/dist/editor/state/highest-z-index.js +35 -0
  607. package/dist/editor/state/in-out.d.ts +13 -0
  608. package/dist/editor/state/in-out.js +40 -0
  609. package/dist/editor/state/input-dragger-click-lock.d.ts +2 -0
  610. package/dist/editor/state/input-dragger-click-lock.js +10 -0
  611. package/dist/editor/state/keybindings.d.ts +20 -0
  612. package/dist/editor/state/keybindings.js +43 -0
  613. package/dist/editor/state/loop.d.ts +2 -0
  614. package/dist/editor/state/loop.js +13 -0
  615. package/dist/editor/state/marks.d.ts +3 -0
  616. package/dist/editor/state/marks.js +16 -0
  617. package/dist/editor/state/modals.d.ts +61 -0
  618. package/dist/editor/state/modals.js +8 -0
  619. package/dist/editor/state/mute.d.ts +2 -0
  620. package/dist/editor/state/mute.js +13 -0
  621. package/dist/editor/state/playbackrate.d.ts +2 -0
  622. package/dist/editor/state/playbackrate.js +19 -0
  623. package/dist/editor/state/preview-size.d.ts +12 -0
  624. package/dist/editor/state/preview-size.js +63 -0
  625. package/dist/editor/state/render-frame.d.ts +1 -0
  626. package/dist/editor/state/render-frame.js +20 -0
  627. package/dist/editor/state/sidebar.d.ts +16 -0
  628. package/dist/editor/state/sidebar.js +69 -0
  629. package/dist/editor/state/timeline-ref.d.ts +7 -0
  630. package/dist/editor/state/timeline-ref.js +5 -0
  631. package/dist/editor/state/timeline-zoom.d.ts +10 -0
  632. package/dist/editor/state/timeline-zoom.js +38 -0
  633. package/dist/editor/state/timeline.d.ts +1 -0
  634. package/dist/editor/state/timeline.js +18 -0
  635. package/dist/editor/state/z-index.d.ts +12 -0
  636. package/dist/editor/state/z-index.js +96 -0
  637. package/dist/event-source-events.d.ts +31 -0
  638. package/dist/event-source-events.js +2 -0
  639. package/dist/event-source.d.ts +3 -0
  640. package/dist/event-source.js +67 -0
  641. package/dist/file-watcher.d.ts +9 -0
  642. package/dist/file-watcher.js +35 -0
  643. package/dist/format-bytes.d.ts +6 -0
  644. package/dist/format-bytes.js +103 -0
  645. package/dist/get-default-out-name.d.ts +5 -0
  646. package/dist/get-default-out-name.js +10 -0
  647. package/dist/get-latest-remotion-version.d.ts +1 -0
  648. package/dist/get-latest-remotion-version.js +31 -0
  649. package/dist/get-network-address.d.ts +1 -0
  650. package/dist/get-network-address.js +16 -0
  651. package/dist/index.d.ts +2 -2
  652. package/dist/preview-server/api-routes.d.ts +4 -0
  653. package/dist/preview-server/api-routes.js +25 -0
  654. package/dist/preview-server/api-types.d.ts +29 -0
  655. package/dist/preview-server/api-types.js +2 -0
  656. package/dist/preview-server/dev-middleware/compatible-api.d.ts +8 -0
  657. package/dist/preview-server/dev-middleware/compatible-api.js +20 -0
  658. package/dist/preview-server/dev-middleware/get-paths.d.ts +7 -0
  659. package/dist/preview-server/dev-middleware/get-paths.js +19 -0
  660. package/dist/preview-server/dev-middleware/index.d.ts +3 -0
  661. package/dist/preview-server/dev-middleware/index.js +27 -0
  662. package/dist/preview-server/dev-middleware/middleware.d.ts +9 -0
  663. package/dist/preview-server/dev-middleware/middleware.js +222 -0
  664. package/dist/preview-server/dev-middleware/range-parser.d.ts +15 -0
  665. package/dist/preview-server/dev-middleware/range-parser.js +96 -0
  666. package/dist/preview-server/dev-middleware/ready.d.ts +3 -0
  667. package/dist/preview-server/dev-middleware/ready.js +11 -0
  668. package/dist/preview-server/dev-middleware/setup-hooks.d.ts +2 -0
  669. package/dist/preview-server/dev-middleware/setup-hooks.js +53 -0
  670. package/dist/preview-server/dev-middleware/setup-output-filesystem.d.ts +2 -0
  671. package/dist/preview-server/dev-middleware/setup-output-filesystem.js +13 -0
  672. package/dist/preview-server/dev-middleware/types.d.ts +10 -0
  673. package/dist/preview-server/dev-middleware/types.js +2 -0
  674. package/dist/preview-server/env-supports-fs-recursive.d.ts +1 -0
  675. package/dist/preview-server/env-supports-fs-recursive.js +18 -0
  676. package/dist/preview-server/error-overlay/entry-basic.d.ts +1 -0
  677. package/dist/preview-server/error-overlay/entry-basic.js +21 -0
  678. package/dist/preview-server/error-overlay/react-overlay/effects/format-warning.d.ts +11 -0
  679. package/dist/preview-server/error-overlay/react-overlay/effects/format-warning.js +41 -0
  680. package/dist/preview-server/error-overlay/react-overlay/effects/map-error-to-react-stack.d.ts +7 -0
  681. package/dist/preview-server/error-overlay/react-overlay/effects/map-error-to-react-stack.js +46 -0
  682. package/dist/preview-server/error-overlay/react-overlay/effects/proxy-console.d.ts +24 -0
  683. package/dist/preview-server/error-overlay/react-overlay/effects/proxy-console.js +64 -0
  684. package/dist/preview-server/error-overlay/react-overlay/effects/resolve-file-source.d.ts +3 -0
  685. package/dist/preview-server/error-overlay/react-overlay/effects/resolve-file-source.js +31 -0
  686. package/dist/preview-server/error-overlay/react-overlay/effects/stack-trace-limit.d.ts +3 -0
  687. package/dist/preview-server/error-overlay/react-overlay/effects/stack-trace-limit.js +43 -0
  688. package/dist/preview-server/error-overlay/react-overlay/effects/unhandled-error.d.ts +4 -0
  689. package/dist/preview-server/error-overlay/react-overlay/effects/unhandled-error.js +45 -0
  690. package/dist/preview-server/error-overlay/react-overlay/effects/unhandled-rejection.d.ts +4 -0
  691. package/dist/preview-server/error-overlay/react-overlay/effects/unhandled-rejection.js +41 -0
  692. package/dist/preview-server/error-overlay/react-overlay/index.d.ts +2 -0
  693. package/dist/preview-server/error-overlay/react-overlay/index.js +21 -0
  694. package/dist/preview-server/error-overlay/react-overlay/listen-to-runtime-errors.d.ts +8 -0
  695. package/dist/preview-server/error-overlay/react-overlay/listen-to-runtime-errors.js +88 -0
  696. package/dist/preview-server/error-overlay/react-overlay/utils/get-file-source.d.ts +1 -0
  697. package/dist/preview-server/error-overlay/react-overlay/utils/get-file-source.js +22 -0
  698. package/dist/preview-server/error-overlay/react-overlay/utils/get-lines-around.d.ts +14 -0
  699. package/dist/preview-server/error-overlay/react-overlay/utils/get-lines-around.js +24 -0
  700. package/dist/preview-server/error-overlay/react-overlay/utils/get-source-map.d.ts +7 -0
  701. package/dist/preview-server/error-overlay/react-overlay/utils/get-source-map.js +51 -0
  702. package/dist/preview-server/error-overlay/react-overlay/utils/get-stack-frames.d.ts +2 -0
  703. package/dist/preview-server/error-overlay/react-overlay/utils/get-stack-frames.js +25 -0
  704. package/dist/preview-server/error-overlay/react-overlay/utils/open-in-editor.d.ts +16 -0
  705. package/dist/preview-server/error-overlay/react-overlay/utils/open-in-editor.js +493 -0
  706. package/dist/preview-server/error-overlay/react-overlay/utils/parser.d.ts +2 -0
  707. package/dist/preview-server/error-overlay/react-overlay/utils/parser.js +117 -0
  708. package/dist/preview-server/error-overlay/react-overlay/utils/stack-frame.d.ts +40 -0
  709. package/dist/preview-server/error-overlay/react-overlay/utils/stack-frame.js +31 -0
  710. package/dist/preview-server/error-overlay/react-overlay/utils/unmapper.d.ts +2 -0
  711. package/dist/preview-server/error-overlay/react-overlay/utils/unmapper.js +64 -0
  712. package/dist/preview-server/error-overlay/remotion-overlay/AskOnDiscord.d.ts +4 -0
  713. package/dist/preview-server/error-overlay/remotion-overlay/AskOnDiscord.js +35 -0
  714. package/dist/preview-server/error-overlay/remotion-overlay/Button.d.ts +11 -0
  715. package/dist/preview-server/error-overlay/remotion-overlay/Button.js +35 -0
  716. package/dist/preview-server/error-overlay/remotion-overlay/CalculateMetadataErrorExplainer.d.ts +2 -0
  717. package/dist/preview-server/error-overlay/remotion-overlay/CalculateMetadataErrorExplainer.js +18 -0
  718. package/dist/preview-server/error-overlay/remotion-overlay/CodeFrame.d.ts +6 -0
  719. package/dist/preview-server/error-overlay/remotion-overlay/CodeFrame.js +48 -0
  720. package/dist/preview-server/error-overlay/remotion-overlay/DismissButton.d.ts +2 -0
  721. package/dist/preview-server/error-overlay/remotion-overlay/DismissButton.js +23 -0
  722. package/dist/preview-server/error-overlay/remotion-overlay/ErrorDisplay.d.ts +10 -0
  723. package/dist/preview-server/error-overlay/remotion-overlay/ErrorDisplay.js +52 -0
  724. package/dist/preview-server/error-overlay/remotion-overlay/ErrorLoader.d.ts +9 -0
  725. package/dist/preview-server/error-overlay/remotion-overlay/ErrorLoader.js +61 -0
  726. package/dist/preview-server/error-overlay/remotion-overlay/ErrorMessage.d.ts +4 -0
  727. package/dist/preview-server/error-overlay/remotion-overlay/ErrorMessage.js +69 -0
  728. package/dist/preview-server/error-overlay/remotion-overlay/ErrorTitle.d.ts +7 -0
  729. package/dist/preview-server/error-overlay/remotion-overlay/ErrorTitle.js +38 -0
  730. package/dist/preview-server/error-overlay/remotion-overlay/HelpLink.d.ts +6 -0
  731. package/dist/preview-server/error-overlay/remotion-overlay/HelpLink.js +39 -0
  732. package/dist/preview-server/error-overlay/remotion-overlay/OpenInEditor.d.ts +6 -0
  733. package/dist/preview-server/error-overlay/remotion-overlay/OpenInEditor.js +105 -0
  734. package/dist/preview-server/error-overlay/remotion-overlay/Overlay.d.ts +14 -0
  735. package/dist/preview-server/error-overlay/remotion-overlay/Overlay.js +50 -0
  736. package/dist/preview-server/error-overlay/remotion-overlay/Retry.d.ts +4 -0
  737. package/dist/preview-server/error-overlay/remotion-overlay/Retry.js +9 -0
  738. package/dist/preview-server/error-overlay/remotion-overlay/SearchGitHubIssues.d.ts +5 -0
  739. package/dist/preview-server/error-overlay/remotion-overlay/SearchGitHubIssues.js +34 -0
  740. package/dist/preview-server/error-overlay/remotion-overlay/ShortcutHint.d.ts +6 -0
  741. package/dist/preview-server/error-overlay/remotion-overlay/ShortcutHint.js +31 -0
  742. package/dist/preview-server/error-overlay/remotion-overlay/StackFrame.d.ts +8 -0
  743. package/dist/preview-server/error-overlay/remotion-overlay/StackFrame.js +50 -0
  744. package/dist/preview-server/error-overlay/remotion-overlay/Symbolicating.d.ts +2 -0
  745. package/dist/preview-server/error-overlay/remotion-overlay/Symbolicating.js +8 -0
  746. package/dist/preview-server/error-overlay/remotion-overlay/carets.d.ts +5 -0
  747. package/dist/preview-server/error-overlay/remotion-overlay/carets.js +12 -0
  748. package/dist/preview-server/error-overlay/remotion-overlay/format-location.d.ts +1 -0
  749. package/dist/preview-server/error-overlay/remotion-overlay/format-location.js +10 -0
  750. package/dist/preview-server/error-overlay/remotion-overlay/get-help-link.d.ts +5 -0
  751. package/dist/preview-server/error-overlay/remotion-overlay/get-help-link.js +49 -0
  752. package/dist/preview-server/error-overlay/remotion-overlay/index.d.ts +1 -0
  753. package/dist/preview-server/error-overlay/remotion-overlay/index.js +18 -0
  754. package/dist/preview-server/file-existence-watchers.d.ts +13 -0
  755. package/dist/preview-server/file-existence-watchers.js +62 -0
  756. package/dist/preview-server/get-absolute-public-dir.d.ts +4 -0
  757. package/dist/preview-server/get-absolute-public-dir.js +14 -0
  758. package/dist/preview-server/get-package-manager.d.ts +10 -0
  759. package/dist/preview-server/get-package-manager.js +62 -0
  760. package/dist/preview-server/handler.d.ts +11 -0
  761. package/dist/preview-server/handler.js +35 -0
  762. package/dist/preview-server/hot-middleware/client.d.ts +21 -0
  763. package/dist/preview-server/hot-middleware/client.js +179 -0
  764. package/dist/preview-server/hot-middleware/index.d.ts +102 -0
  765. package/dist/preview-server/hot-middleware/index.js +149 -0
  766. package/dist/preview-server/hot-middleware/process-update.d.ts +7 -0
  767. package/dist/preview-server/hot-middleware/process-update.js +162 -0
  768. package/dist/preview-server/hot-middleware/types.d.ts +27 -0
  769. package/dist/preview-server/hot-middleware/types.js +10 -0
  770. package/dist/preview-server/live-events.d.ts +10 -0
  771. package/dist/preview-server/live-events.js +76 -0
  772. package/dist/preview-server/parse-body.d.ts +2 -0
  773. package/dist/preview-server/parse-body.js +16 -0
  774. package/dist/preview-server/project-info.d.ts +5 -0
  775. package/dist/preview-server/project-info.js +32 -0
  776. package/dist/preview-server/public-folder.d.ts +12 -0
  777. package/dist/preview-server/public-folder.js +58 -0
  778. package/dist/preview-server/render-queue/copy-still-to-clipboard.d.ts +1 -0
  779. package/dist/preview-server/render-queue/copy-still-to-clipboard.js +8 -0
  780. package/dist/preview-server/render-queue/get-default-video-contexts.d.ts +14 -0
  781. package/dist/preview-server/render-queue/get-default-video-contexts.js +29 -0
  782. package/dist/preview-server/render-queue/job.d.ts +187 -0
  783. package/dist/preview-server/render-queue/job.js +2 -0
  784. package/dist/preview-server/render-queue/make-retry-payload.d.ts +3 -0
  785. package/dist/preview-server/render-queue/make-retry-payload.js +127 -0
  786. package/dist/preview-server/render-queue/open-directory-in-finder.d.ts +1 -0
  787. package/dist/preview-server/render-queue/open-directory-in-finder.js +49 -0
  788. package/dist/preview-server/render-queue/process-still.d.ts +8 -0
  789. package/dist/preview-server/render-queue/process-still.js +49 -0
  790. package/dist/preview-server/render-queue/process-video.d.ts +10 -0
  791. package/dist/preview-server/render-queue/process-video.js +68 -0
  792. package/dist/preview-server/render-queue/queue.d.ts +11 -0
  793. package/dist/preview-server/render-queue/queue.js +221 -0
  794. package/dist/preview-server/routes/add-render.d.ts +3 -0
  795. package/dist/preview-server/routes/add-render.js +115 -0
  796. package/dist/preview-server/routes/can-update-default-props.d.ts +4 -0
  797. package/dist/preview-server/routes/can-update-default-props.js +40 -0
  798. package/dist/preview-server/routes/cancel-render.d.ts +3 -0
  799. package/dist/preview-server/routes/cancel-render.js +9 -0
  800. package/dist/preview-server/routes/copy-still-to-clipboard-handler.d.ts +3 -0
  801. package/dist/preview-server/routes/copy-still-to-clipboard-handler.js +17 -0
  802. package/dist/preview-server/routes/open-in-file-explorer.d.ts +3 -0
  803. package/dist/preview-server/routes/open-in-file-explorer.js +8 -0
  804. package/dist/preview-server/routes/remove-render.d.ts +3 -0
  805. package/dist/preview-server/routes/remove-render.js +9 -0
  806. package/dist/preview-server/routes/subscribe-to-file-existence.d.ts +3 -0
  807. package/dist/preview-server/routes/subscribe-to-file-existence.js +13 -0
  808. package/dist/preview-server/routes/unsubscribe-from-file-existence.d.ts +3 -0
  809. package/dist/preview-server/routes/unsubscribe-from-file-existence.js +13 -0
  810. package/dist/preview-server/routes/update-available.d.ts +3 -0
  811. package/dist/preview-server/routes/update-available.js +9 -0
  812. package/dist/preview-server/routes/update-default-props.d.ts +3 -0
  813. package/dist/preview-server/routes/update-default-props.js +34 -0
  814. package/dist/preview-server/routes.d.ts +18 -0
  815. package/dist/preview-server/routes.js +272 -0
  816. package/dist/preview-server/serve-static.d.ts +14 -0
  817. package/dist/preview-server/serve-static.js +75 -0
  818. package/dist/preview-server/start-server.d.ts +25 -0
  819. package/dist/preview-server/start-server.js +125 -0
  820. package/dist/preview-server/update-available.d.ts +3 -0
  821. package/dist/preview-server/update-available.js +47 -0
  822. package/dist/previewEntry.d.ts +1 -0
  823. package/dist/previewEntry.js +26 -0
  824. package/dist/required-chromium-options.d.ts +3 -0
  825. package/dist/required-chromium-options.js +2 -0
  826. package/dist/server-ready-comment.d.ts +2 -0
  827. package/dist/server-ready-comment.js +13 -0
  828. package/dist/smooth-zoom.d.ts +4 -0
  829. package/dist/smooth-zoom.js +20 -0
  830. package/dist/step.d.ts +1 -0
  831. package/dist/step.js +2 -0
  832. package/dist/watch-root-file.d.ts +1 -0
  833. package/dist/watch-root-file.js +22 -0
  834. package/package.json +10 -10
@@ -0,0 +1,16 @@
1
+ import type { Size } from '@remotion/player';
2
+ import type { AssetMetadata } from './get-asset-metadata';
3
+ import type { Dimensions } from './is-current-selected-still';
4
+ export declare const useStudioCanvasDimensions: ({ canvasSize, contentDimensions, assetMetadata, }: {
5
+ canvasSize: Size | null;
6
+ contentDimensions: Dimensions | 'none' | null;
7
+ assetMetadata: AssetMetadata | null;
8
+ }) => {
9
+ canvasDimensions: {
10
+ left: number;
11
+ top: number;
12
+ width: number;
13
+ height: number;
14
+ };
15
+ scale: number;
16
+ };
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useStudioCanvasDimensions = void 0;
4
+ const player_1 = require("@remotion/player");
5
+ const react_1 = require("react");
6
+ const preview_size_1 = require("../state/preview-size");
7
+ const useStudioCanvasDimensions = ({ canvasSize, contentDimensions, assetMetadata, }) => {
8
+ const { size: previewSize } = (0, react_1.useContext)(preview_size_1.PreviewSizeContext);
9
+ const { centerX, centerY, scale } = (0, react_1.useMemo)(() => {
10
+ if (contentDimensions === 'none' ||
11
+ contentDimensions === null ||
12
+ (assetMetadata && assetMetadata.type === 'not-found') ||
13
+ !canvasSize) {
14
+ return {
15
+ centerX: previewSize.translation.x,
16
+ centerY: previewSize.translation.y,
17
+ scale: 1,
18
+ };
19
+ }
20
+ return player_1.PlayerInternals.calculateCanvasTransformation({
21
+ canvasSize,
22
+ compositionHeight: contentDimensions.height,
23
+ compositionWidth: contentDimensions.width,
24
+ previewSize: previewSize.size,
25
+ });
26
+ }, [
27
+ canvasSize,
28
+ contentDimensions,
29
+ previewSize.size,
30
+ previewSize.translation.y,
31
+ previewSize.translation.x,
32
+ assetMetadata,
33
+ ]);
34
+ const canvasDimensions = (0, react_1.useMemo)(() => {
35
+ return {
36
+ left: centerX - previewSize.translation.x,
37
+ top: centerY - previewSize.translation.y,
38
+ width: contentDimensions === 'none' || !contentDimensions
39
+ ? (canvasSize === null || canvasSize === void 0 ? void 0 : canvasSize.width) || 0
40
+ : contentDimensions.width * scale,
41
+ height: contentDimensions === 'none' || !contentDimensions
42
+ ? (canvasSize === null || canvasSize === void 0 ? void 0 : canvasSize.height) || 0
43
+ : contentDimensions.height * scale,
44
+ };
45
+ }, [
46
+ scale,
47
+ centerX,
48
+ previewSize.translation.x,
49
+ previewSize.translation.y,
50
+ centerY,
51
+ canvasSize,
52
+ contentDimensions,
53
+ ]);
54
+ return {
55
+ canvasDimensions,
56
+ scale,
57
+ };
58
+ };
59
+ exports.useStudioCanvasDimensions = useStudioCanvasDimensions;
@@ -0,0 +1,4 @@
1
+ import type { AnyComposition } from 'remotion';
2
+ export declare const validateCompositionName: (compName: string, compositions: AnyComposition[]) => string | null;
3
+ export declare const validateCompositionDimension: (dimension: 'Width' | 'Height', value: string) => string | null;
4
+ export declare const validateCompositionDuration: (value: string) => string | null;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateCompositionDuration = exports.validateCompositionDimension = exports.validateCompositionName = void 0;
4
+ const remotion_1 = require("remotion");
5
+ const validateCompositionName = (compName, compositions) => {
6
+ if (!remotion_1.Internals.isCompositionIdValid(compName)) {
7
+ return remotion_1.Internals.invalidCompositionErrorMessage;
8
+ }
9
+ if (compositions.find((c) => c.id === compName)) {
10
+ return `A composition with that name already exists.`;
11
+ }
12
+ return null;
13
+ };
14
+ exports.validateCompositionName = validateCompositionName;
15
+ const validateCompositionDimension = (dimension, value) => {
16
+ if (Number(value) % 2 !== 0) {
17
+ return `${dimension} should be divisible by 2, since H264 codec doesn't support odd dimensions.`;
18
+ }
19
+ if (Number.isNaN(Number(value))) {
20
+ return 'Invalid number.';
21
+ }
22
+ if (Number(value) === 0) {
23
+ return dimension + ' cannot be zero.';
24
+ }
25
+ return null;
26
+ };
27
+ exports.validateCompositionDimension = validateCompositionDimension;
28
+ const validateCompositionDuration = (value) => {
29
+ if (Number(value) % 1 !== 0) {
30
+ return `Duration must be an integer.`;
31
+ }
32
+ if (Number.isNaN(Number(value))) {
33
+ return 'Invalid number.';
34
+ }
35
+ if (Number(value) === 0) {
36
+ return 'Duration cannot be zero.';
37
+ }
38
+ return null;
39
+ };
40
+ exports.validateCompositionDuration = validateCompositionDuration;
@@ -0,0 +1 @@
1
+ export declare const Checkmark: () => JSX.Element;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Checkmark = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const style = {
6
+ width: 14,
7
+ height: 14,
8
+ };
9
+ const Checkmark = () => ((0, jsx_runtime_1.jsx)("svg", { focusable: "false", role: "img", viewBox: "0 0 512 512", style: style, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z" }) }));
10
+ exports.Checkmark = Checkmark;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const AudioIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AudioIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const AudioIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentcolor", d: "M243 32.32C105.5 39.15 0 157.8 0 295.5v120.4C0 451.3 28.63 480 64 480h32c17.62 0 32-14.38 32-32V288c0-17.62-14.38-32-32-32H64c-10.79 0-20.8 2.9-29.72 7.7 14.2-106.8 100.5-193.9 210.4-199.4 120.5-5.965 221.7 83.92 234 199.9-9.08-5.1-19.48-8.2-30.68-8.2h-32c-17.62 0-32 14.38-32 32v160c0 17.62 14.38 32 32 32h32c35.38 0 64-28.75 64-64.13V287.9c0-145.4-122-262.88-269-255.58zM64 288h32v160H64c-17.62 0-32-14.5-32-32.13v-95.75C32 302.5 46.38 288 64 288zm416 127.9c0 17.6-14.4 32.1-32 32.1h-32V288h32c17.62 0 32 14.5 32 32.13v95.77z" }) }));
6
+ exports.AudioIcon = AudioIcon;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const CaretRight: () => JSX.Element;
3
+ export declare const CaretDown: () => JSX.Element;
4
+ export declare const AngleDown: React.FC<{
5
+ down: boolean;
6
+ }>;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AngleDown = exports.CaretDown = exports.CaretRight = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
+ const colors_1 = require("../helpers/colors");
7
+ const caret = {
8
+ height: 12,
9
+ };
10
+ const caretDown = {
11
+ width: 10,
12
+ };
13
+ const angleDown = {
14
+ width: 10,
15
+ };
16
+ const CaretRight = () => ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 192 512", style: caret, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" }) }));
17
+ exports.CaretRight = CaretRight;
18
+ const CaretDown = () => {
19
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 320 512", style: caretDown, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z" }) }));
20
+ };
21
+ exports.CaretDown = CaretDown;
22
+ const AngleDown = ({ down }) => {
23
+ const style = (0, react_1.useMemo)(() => {
24
+ return {
25
+ ...angleDown,
26
+ transform: down ? 'rotate(180deg)' : 'rotate(0deg)',
27
+ marginTop: 1,
28
+ };
29
+ }, [down]);
30
+ return ((0, jsx_runtime_1.jsx)("svg", { style: style, viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: colors_1.LIGHT_TEXT, d: "M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" }) }));
31
+ };
32
+ exports.AngleDown = AngleDown;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const ClipboardIcon: React.FC<SVGProps<SVGSVGElement> & {
3
+ color?: string;
4
+ }>;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ClipboardIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const ClipboardIcon = ({ color, ...props }) => ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 384 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm144 418c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h42v36c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-36h42c3.3 0 6 2.7 6 6z" }) }));
6
+ exports.ClipboardIcon = ClipboardIcon;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const DataIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const DataIcon = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentcolor", d: "M224 512C100.3 512 0 476.2 0 432V80C0 35.82 100.3 0 224 0C347.7 0 448 35.82 448 80V432C448 476.2 347.7 512 224 512zM416 80.45C415.7 79.69 414.4 77.27 409.8 73.31C402.4 67.11 389.9 60.09 371.6 53.57C335.4 40.62 283.2 32 224 32C164.8 32 112.6 40.62 76.37 53.57C58.1 60.09 45.59 67.11 38.25 73.31C33.55 77.27 32.29 79.69 32 80.45V182.1C46.47 192.7 69.9 202.8 100.9 210.4C135.5 218.9 177.1 224 224 224C270 224 312.5 218.9 347.1 210.4C378.1 202.8 401.5 192.7 416 182.1V80.45zM416 219.5C398.8 228.4 377.9 235.8 354.8 241.5C317.3 250.7 272.2 256 224 256C175.8 256 130.7 250.7 93.22 241.5C70.11 235.8 49.18 228.4 32 219.5V310.1C46.47 320.7 69.9 330.8 100.9 338.4C135.5 346.9 177.1 352 224 352C270 352 312.5 346.9 347.1 338.4C378.1 330.8 401.5 320.7 416 310.1V219.5zM38.25 438.7C45.59 444.9 58.1 451.9 76.37 458.4C112.6 471.4 164.8 480 224 480C283.2 480 335.4 471.4 371.6 458.4C389.9 451.9 402.4 444.9 409.8 438.7C414.4 434.7 415.7 432.3 416 431.6V347.5C398.8 356.4 377.9 363.8 354.8 369.5C317.3 378.7 272.2 384 224 384C175.8 384 130.7 378.7 93.22 369.5C70.11 363.8 49.18 356.4 32 347.5V431.6C32.29 432.3 33.55 434.7 38.25 438.7zM416 431.4C416.1 431.3 416.1 431.3 416.1 431.3L416 431.4zM31.96 431.4C31.94 431.3 31.93 431.3 31.92 431.3L31.96 431.4zM31.96 80.56C31.93 80.65 31.92 80.7 31.92 80.7L31.96 80.56zM416.1 80.7C416.1 80.7 416.1 80.65 416 80.56z" }) }));
7
+ };
8
+ exports.DataIcon = DataIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const FileIcon: React.FC<SVGProps<SVGSVGElement> & {
3
+ color?: string;
4
+ }>;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FileIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const FileIcon = ({ color, ...props }) => ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: color !== null && color !== void 0 ? color : 'currentColor', d: "M0 64C0 28.65 28.65 0 64 0h156.1c12.7 0 25 5.057 34 14.06L369.9 129.9c9 9 14.1 21.3 14.1 34V448c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V64zm352 128H240c-26.5 0-48-21.5-48-48V32H64c-17.67 0-32 14.33-32 32v384c0 17.7 14.33 32 32 32h256c17.7 0 32-14.3 32-32V192zm-4.7-39.4L231.4 36.69c-2-2.07-4.6-3.51-7.4-4.21V144c0 8.8 7.2 16 16 16h111.5c-.7-2.8-2.1-5.4-4.2-7.4z" }) }));
6
+ exports.FileIcon = FileIcon;
@@ -0,0 +1,11 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const CollapsedFolderIcon: React.FC<SVGProps<SVGSVGElement> & {
4
+ color: string;
5
+ }>;
6
+ export declare const ExpandedFolderIcon: React.FC<SVGProps<SVGSVGElement> & {
7
+ color: string;
8
+ }>;
9
+ export declare const ExpandedFolderIconSolid: React.FC<SVGProps<SVGSVGElement> & {
10
+ color: string;
11
+ }>;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ExpandedFolderIconSolid = exports.ExpandedFolderIcon = exports.CollapsedFolderIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const CollapsedFolderIcon = ({ color, ...props }) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 512 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M447.1 96H272L226.7 50.75C214.7 38.74 198.5 32 181.5 32H63.1c-35.35 0-64 28.65-64 64v320c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V160C511.1 124.7 483.3 96 447.1 96zM480 416c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V96c0-17.64 14.36-32 32-32h117.5c8.549 0 16.58 3.328 22.63 9.375L258.7 128H448c17.64 0 32 14.36 32 32V416z" }) }));
7
+ };
8
+ exports.CollapsedFolderIcon = CollapsedFolderIcon;
9
+ const ExpandedFolderIcon = ({ color, ...props }) => {
10
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 576 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M566.6 211.6C557.5 199.1 543.4 192 527.1 192H134.2C114.3 192 96.2 204.5 89.23 223.1L32 375.8V96c0-17.64 14.36-32 32-32h117.5c8.549 0 16.58 3.328 22.63 9.375L258.7 128H448c17.64 0 32 14.36 32 32h32c0-35.35-28.65-64-64-64H272L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h403.1c21.11 0 39.53-13.53 45.81-33.69l60-192C578.4 239.6 575.8 224 566.6 211.6zM543.2 244.8l-60 192C481.1 443.5 475 448 467.1 448H64c-3.322 0-6.357-.9551-9.373-1.898c-2.184-1.17-4.109-2.832-5.596-4.977c-3.031-4.375-3.703-9.75-1.828-14.73l72-192C121.5 228.2 127.5 224 134.2 224h393.8c5.141 0 9.844 2.375 12.89 6.516C543.9 234.7 544.8 239.9 543.2 244.8z" }) }));
11
+ };
12
+ exports.ExpandedFolderIcon = ExpandedFolderIcon;
13
+ const ExpandedFolderIconSolid = ({ color, ...props }) => {
14
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 576 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1 .1-32.1S555.5 224 544 224H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16H181.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H87.7 384z" }) }));
15
+ };
16
+ exports.ExpandedFolderIconSolid = ExpandedFolderIconSolid;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const PicIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PicIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const PicIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentcolor", d: "M324.9 157.8c-11.38-17.38-39.89-17.31-51.23-.063L200.5 268.5l-16.4-22.6c-11.4-16.8-38.2-16-49.7 0l-64.52 89.16c-6.797 9.406-7.75 21.72-2.547 32C72.53 377.5 83.05 384 94.75 384h322.5c11.41 0 21.8-6.281 27.14-16.38a30.922 30.922 0 0 0-1.516-31.56L324.9 157.8zM95.8 352l62.39-87.38 29.91 41.34c3.1 4.24 8.3 7.24 13.3 6.64 5.25-.125 10.12-2.781 13.02-7.188l83.83-129.9L415 352H95.8zM447.1 32h-384C28.65 32-.01 60.65-.01 96v320c0 35.35 28.65 64 63.1 64h384c35.35 0 64-28.65 64-64V96c.01-35.35-27.79-64-63.99-64zM480 416c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V96c0-17.64 14.36-32 32-32h384c17.64 0 32 14.36 32 32v320zM144 192c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48zm0-64c8.822 0 15.1 7.178 15.1 16s-6.3 16-15.1 16-16-7.2-16-16 7.2-16 16-16z" }) }));
6
+ exports.PicIcon = PicIcon;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const GearIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GearIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const GearIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentcolor", d: "M168 255.1c0-47.7 39.4-88 88-88s88 40.3 88 88c0 49.5-39.4 88.9-88 88.9s-88-39.4-88-88.9zm88-56c-30.9 0-56 26-56 56 0 31.8 25.1 56 56 56s56-24.2 56-56c0-30-25.1-56-56-56zM65.67 230.6l-40.33-36.8c-11.12-10.1-13.68-26.6-6.16-39.6l30.24-52.4c7.52-13.02 23.09-19.05 37.42-14.48l51.96 16.58c13.4-10.34 28.2-18.94 44-25.47l11.7-53.27C197.7 10.47 210.7 0 225.8 0h60.4c15.1 0 28.1 10.47 31.3 25.16l11.7 53.27c14.9 6.53 30.6 15.13 44 25.47l52-16.58c14.3-4.57 29.9 1.46 37.4 14.48l30.2 52.4c7.5 13 5 29.5-6.1 39.6l-40.4 36.8c1.1 8.3 1.7 16.8 1.7 24.5 0 9.5-.6 18-1.7 26.3l40.4 36.8c11.1 10.1 13.6 26.6 6.1 39.6l-30.2 52.4c-7.5 13-23.1 19-37.4 14.5l-52-16.6c-13.4 10.3-29.1 18.9-44 25.5l-11.7 53.2c-3.2 14.7-16.2 25.2-31.3 25.2h-60.4c-15.1 0-28.1-10.5-31.3-25.2l-11.7-53.2c-15.8-6.6-30.6-15.2-44-25.5l-51.96 16.6c-14.33 4.5-29.9-1.5-37.42-14.5l-30.24-52.4c-7.52-13-4.96-29.5 6.16-39.6l40.33-36.8c-1.1-8.3-1.67-16.8-1.67-26.3 0-7.7.57-16.2 1.67-24.5zm92.73-101.4-13.3 10.3-67.97-21.7-30.24 52.4 52.69 48-2.19 16.6c-.92 6.9-1.39 14-1.39 20.3 0 8.1.47 15.2 1.39 22.1l2.19 16.6-52.69 48 30.24 52.4 67.97-21.7 13.3 10.3c11.1 8.6 23.5 15.8 36.6 20.3l15.5 7.3 15.3 69.6h60.4l15.3-69.6 14.6-7.3c14-4.5 26.4-11.7 37.5-20.3l13.3-10.3 68 21.7 30.2-52.4-52.7-48 2.2-16.6c.9-6.9 1.4-14 1.4-21.2 0-7.2-.5-14.3-1.4-21.2l-2.2-16.6 52.7-48-30.2-52.4-68 21.7-13.3-10.3c-11.1-8.6-23.5-15.8-37.5-21.2l-14.6-6.4L286.2 32h-60.4l-15.3 69.6L195 108c-13.1 5.4-25.5 12.6-36.6 21.2z" }) }));
6
+ exports.GearIcon = GearIcon;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const GifIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GifIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const GifIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentcolor", d: "M512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96c0-35.35-28.7-64-64-64zm32 384c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V96c0-17.64 14.36-32 32-32h448c17.64 0 32 14.36 32 32v320zm-80-256h-96c-8.8 0-16 7.2-16 16v160c0 8.844 7.156 16 16 16s16-7.156 16-16v-64h56c8.844 0 16-7.156 16-16s-7.156-16-16-16h-56v-48h80c8.8 0 16-7.2 16-16s-7.2-16-16-16zm-160 0c-8.8 0-16 7.2-16 16v160c0 8.844 7.156 16 16 16s16-7.156 16-16V176c0-8.8-7.2-16-16-16zm-64 80h-64c-8.8 0-16 7.2-16 16s7.156 16 16 16h48v33.45c-24.83 19.91-69.13 18.16-91.48-4.203-24.95-24.95-24.95-65.55 0-90.5 25.03-25 64.19-25 89.22 0 6.25 6.25 16.38 6.25 22.62 0s6.25-16.38 0-22.62c-37.69-37.72-96.78-37.72-134.5 0-37.42 37.42-37.42 98.33 0 135.8C127.8 341.8 153.5 352 180.6 352c27.06 0 52.84-10.25 70.7-28.12 3-2.98 4.7-7.08 4.7-11.28V256c0-8.8-7.2-16-16-16z" }) }));
6
+ exports.GifIcon = GifIcon;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare const JumpToStart: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JumpToStart = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const JumpToStart = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M0 415.1V96.03c0-17.67 14.33-31.1 31.1-31.1C49.67 64.03 64 78.36 64 96.03v131.8l171.5-156.5C256.1 54.28 288 68.66 288 96.03v131.9l171.5-156.5C480.1 54.28 512 68.66 512 96.03v319.9c0 27.37-31.88 41.74-52.5 24.62L288 285.2v130.7c0 27.37-31.88 41.74-52.5 24.62L64 285.2v130.7c0 17.67-14.33 31.1-31.1 31.1C14.33 447.1 0 433.6 0 415.1z" }) }));
7
+ };
8
+ exports.JumpToStart = JumpToStart;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const ShiftIcon: React.FC;
3
+ export declare const ArrowLeft: React.FC;
4
+ export declare const ArrowRight: React.FC;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ArrowRight = exports.ArrowLeft = exports.ShiftIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const iconStyle = {
6
+ width: 10,
7
+ display: 'inline',
8
+ };
9
+ const ShiftIcon = () => {
10
+ return ((0, jsx_runtime_1.jsx)("svg", { style: iconStyle, viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M48.048 304h73.798v128c0 26.51 21.49 48 48 48h108.308c26.51 0 48-21.49 48-48V304h73.789c42.638 0 64.151-51.731 33.941-81.941l-175.943-176c-18.745-18.745-49.137-18.746-67.882 0l-175.952 176C-16.042 252.208 5.325 304 48.048 304zM224 80l176 176H278.154v176H169.846V256H48L224 80z" }) }));
11
+ };
12
+ exports.ShiftIcon = ShiftIcon;
13
+ const ArrowLeft = () => {
14
+ return ((0, jsx_runtime_1.jsx)("svg", { style: iconStyle, viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z" }) }));
15
+ };
16
+ exports.ArrowLeft = ArrowLeft;
17
+ const ArrowRight = () => {
18
+ return ((0, jsx_runtime_1.jsx)("svg", { style: iconStyle, viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z" }) }));
19
+ };
20
+ exports.ArrowRight = ArrowRight;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const LockIcon: React.FC<SVGProps<SVGSVGElement>>;
4
+ export declare const UnlockIcon: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UnlockIcon = exports.LockIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const LockIcon = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 448 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z" }) }));
7
+ };
8
+ exports.LockIcon = LockIcon;
9
+ const UnlockIcon = (props) => {
10
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 448 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z" }) }));
11
+ };
12
+ exports.UnlockIcon = UnlockIcon;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const VolumeOffIcon: React.FC;
3
+ export declare const VolumeOnIcon: React.FC;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VolumeOnIcon = exports.VolumeOffIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const colors_1 = require("../helpers/colors");
6
+ const size = 22;
7
+ const VolumeOffIcon = () => {
8
+ return ((0, jsx_runtime_1.jsx)("svg", { width: size, height: size, viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M3.63 3.63a.996.996 0 000 1.41L7.29 8.7 7 9H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71v-4.17l4.18 4.18c-.49.37-1.02.68-1.6.91-.36.15-.58.53-.58.92 0 .72.73 1.18 1.39.91.8-.33 1.55-.77 2.22-1.31l1.34 1.34a.996.996 0 101.41-1.41L5.05 3.63c-.39-.39-1.02-.39-1.42 0zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-3.83-2.4-7.11-5.78-8.4-.59-.23-1.22.23-1.22.86v.19c0 .38.25.71.61.85C17.18 6.54 19 9.06 19 12zm-8.71-6.29l-.17.17L12 7.76V6.41c0-.89-1.08-1.33-1.71-.7zM16.5 12A4.5 4.5 0 0014 7.97v1.79l2.48 2.48c.01-.08.02-.16.02-.24z", fill: colors_1.BLUE }) }));
9
+ };
10
+ exports.VolumeOffIcon = VolumeOffIcon;
11
+ const VolumeOnIcon = () => {
12
+ return ((0, jsx_runtime_1.jsx)("svg", { width: size, height: size, viewBox: "0 0 24 24", children: (0, jsx_runtime_1.jsx)("path", { d: "M3 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L7 9H4c-.55 0-1 .45-1 1zm13.5 2A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 4.45v.2c0 .38.25.71.6.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-.36.14-.6.47-.6.85v.2c0 .63.63 1.07 1.21.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4c-.58-.23-1.21.22-1.21.85z", fill: "#fff" }) }));
13
+ };
14
+ exports.VolumeOnIcon = VolumeOnIcon;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const Minus: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Minus = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const Minus = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M400 288h-352c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h352c17.69 0 32 14.3 32 31.99S417.7 288 400 288z" }) }));
7
+ };
8
+ exports.Minus = Minus;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const Pause: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Pause = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const Pause = (props) => ((0, jsx_runtime_1.jsx)("svg", { ...props, "aria-hidden": "true", focusable: "false", "data-prefix": "fas", "data-icon": "pause", className: "svg-inline--fa fa-pause fa-w-14", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z" }) }));
6
+ exports.Pause = Pause;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const Play: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Play = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const Play = (props) => ((0, jsx_runtime_1.jsx)("svg", { ...props, "aria-hidden": "true", focusable: "false", "data-prefix": "fas", "data-icon": "play", className: "svg-inline--fa fa-play fa-w-14", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z" }) }));
6
+ exports.Play = Play;
@@ -0,0 +1,5 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const Plus: React.FC<SVGProps<SVGSVGElement> & {
4
+ color: string;
5
+ }>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Plus = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const Plus = ({ color, ...props }) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z" }) }));
7
+ };
8
+ exports.Plus = Plus;
@@ -0,0 +1,9 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const RenderIcon: React.FC<{
4
+ svgProps: SVGProps<SVGSVGElement>;
5
+ }>;
6
+ export declare const ThinRenderIcon: React.FC<{
7
+ svgProps: SVGProps<SVGSVGElement>;
8
+ fill: string;
9
+ }>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ThinRenderIcon = exports.RenderIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const RenderIcon = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props.svgProps, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", children: (0, jsx_runtime_1.jsx)("path", { fill: 'currentColor', d: "M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" }) }));
7
+ };
8
+ exports.RenderIcon = RenderIcon;
9
+ const ThinRenderIcon = (props) => {
10
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props.svgProps, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", children: (0, jsx_runtime_1.jsx)("path", { fill: props.fill, d: "M188.9 372l-50.4-50.4c18.6-42.6 61.7-137.7 95.1-187C304.6 30.1 409 24.6 475.7 36.3c11.7 66.7 6.2 171.1-98.4 242c-49.4 33.5-145.5 75.6-188.4 93.7zm-79.9-62.8c-5.2 11.9-2.5 25.7 6.7 34.9l50.7 50.7c9.1 9.1 22.7 11.9 34.5 6.9c6.5-2.7 14.3-6 23-9.8L224 496c0 5.5 2.9 10.7 7.6 13.6s10.6 3.2 15.6 .7l101.5-50.7c21.7-10.8 35.4-33 35.4-57.2V312.1c4-2.5 7.7-4.9 11.3-7.3C516.1 222.9 520.1 100.9 506.7 28.1c-2.1-11.6-11.2-20.6-22.8-22.8C411.1-8.1 289.1-4.1 207.2 116.7c-2.4 3.6-4.9 7.3-7.3 11.3l-90.2 0c-24.2 0-46.4 13.7-57.2 35.4L1.7 264.8c-2.5 5-2.2 10.8 .7 15.6s8.1 7.6 13.6 7.6H118.5c-3.6 8-6.8 15.2-9.4 21.2zM256 470.1l0-92.5c30.3-13.7 65.4-30.3 96-47v71.7c0 12.1-6.8 23.2-17.7 28.6L256 470.1zM109.7 160h71.5c-16.9 30.7-34 65.8-48.1 96H41.9L81 177.7c5.4-10.8 16.5-17.7 28.6-17.7zM392 144a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM368 88a56 56 0 1 0 0 112 56 56 0 1 0 0-112z" }) }));
11
+ };
12
+ exports.ThinRenderIcon = ThinRenderIcon;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const StepBack: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StepBack = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const StepBack = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 448 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z" }) }));
7
+ };
8
+ exports.StepBack = StepBack;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const StepForward: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StepForward = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const StepForward = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 448 512", ...props, children: (0, jsx_runtime_1.jsx)("path", { fill: "currentColor", d: "M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z" }) }));
7
+ };
8
+ exports.StepForward = StepForward;
@@ -0,0 +1,5 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const StillIcon: React.FC<SVGProps<SVGSVGElement> & {
4
+ color: string;
5
+ }>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StillIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const StillIcon = ({ color, ...props }) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props, viewBox: "0 0 512 512", children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M144 288C144 226.1 194.1 176 256 176C317.9 176 368 226.1 368 288C368 349.9 317.9 400 256 400C194.1 400 144 349.9 144 288zM256 208C211.8 208 176 243.8 176 288C176 332.2 211.8 368 256 368C300.2 368 336 332.2 336 288C336 243.8 300.2 208 256 208zM362.9 64.82L373.3 96H448C483.3 96 512 124.7 512 160V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V160C0 124.7 28.65 96 64 96H138.7L149.1 64.82C155.6 45.22 173.9 32 194.6 32H317.4C338.1 32 356.4 45.22 362.9 64.82H362.9zM64 128C46.33 128 32 142.3 32 160V416C32 433.7 46.33 448 64 448H448C465.7 448 480 433.7 480 416V160C480 142.3 465.7 128 448 128H350.3L332.6 74.94C330.4 68.41 324.3 64 317.4 64H194.6C187.7 64 181.6 68.41 179.4 74.94L161.7 128H64z" }) }));
7
+ };
8
+ exports.StillIcon = StillIcon;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const TimelineInPointer: React.FC<SVGProps<SVGSVGElement>>;
4
+ export declare const TimelineOutPointer: React.FC<SVGProps<SVGSVGElement>>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TimelineOutPointer = exports.TimelineInPointer = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const TimelineInPointer = (props) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 256 256", fill: "none", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M158 25H99V230.5H158", stroke: props.color, strokeWidth: "42", strokeLinecap: "round", strokeLinejoin: "round" }) }));
7
+ };
8
+ exports.TimelineInPointer = TimelineInPointer;
9
+ const TimelineOutPointer = (props) => {
10
+ return ((0, jsx_runtime_1.jsx)("svg", { viewBox: "0 0 256 256", fill: "none", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M98 25H157V230.5H98", stroke: props.color, strokeWidth: "42", strokeLinecap: "round", strokeLinejoin: "round" }) }));
11
+ };
12
+ exports.TimelineOutPointer = TimelineOutPointer;
@@ -0,0 +1,5 @@
1
+ import type { SVGProps } from 'react';
2
+ import React from 'react';
3
+ export declare const FilmIcon: React.FC<SVGProps<SVGSVGElement> & {
4
+ color: string;
5
+ }>;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FilmIcon = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const FilmIcon = ({ color, ...props }) => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", { ...props, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", children: (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M448 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V96C512 60.65 483.3 32 448 32zM384 64v176H128V64H384zM32 96c0-17.64 14.36-32 32-32h32v80H32V96zM32 176h64v64H32V176zM32 272h64v64H32V272zM64 448c-17.64 0-32-14.36-32-32v-48h64V448H64zM128 448V272h256V448H128zM480 416c0 17.64-14.36 32-32 32h-32v-80h64V416zM480 336h-64v-64h64V336zM480 240h-64v-64h64V240zM480 144h-64V64h32c17.64 0 32 14.36 32 32V144z" }) }));
7
+ };
8
+ exports.FilmIcon = FilmIcon;
@@ -0,0 +1,2 @@
1
+ export declare const persistAspectRatioOption: (option: boolean) => void;
2
+ export declare const loadAspectRatioOption: () => boolean;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.loadAspectRatioOption = exports.persistAspectRatioOption = void 0;
4
+ const aspectRatioLocalStorageKey = 'aspectRatio';
5
+ const persistAspectRatioOption = (option) => {
6
+ localStorage.setItem(aspectRatioLocalStorageKey, String(option));
7
+ };
8
+ exports.persistAspectRatioOption = persistAspectRatioOption;
9
+ const loadAspectRatioOption = () => {
10
+ const item = localStorage.getItem(aspectRatioLocalStorageKey);
11
+ if (item === null) {
12
+ return true;
13
+ }
14
+ return item !== 'false';
15
+ };
16
+ exports.loadAspectRatioOption = loadAspectRatioOption;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const canvasRef: import("react").RefObject<HTMLDivElement>;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.canvasRef = void 0;
4
+ const react_1 = require("react");
5
+ exports.canvasRef = (0, react_1.createRef)();