@remotion/studio 4.0.526 → 4.0.528

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 (309) hide show
  1. package/dist/components/AgentPrompt.js +1 -2
  2. package/dist/components/AudioWaveform.d.ts +1 -0
  3. package/dist/components/AudioWaveform.js +10 -14
  4. package/dist/components/Canvas.js +88 -26
  5. package/dist/components/CanvasCaptureDropHandler.js +63 -0
  6. package/dist/components/CanvasOrLoading.js +10 -2
  7. package/dist/components/CodeFrame.js +1 -1
  8. package/dist/components/ColorPicker/checker.d.ts +1 -1
  9. package/dist/components/CompositionSelectorItem.js +1 -0
  10. package/dist/components/CurrentAsset.js +4 -2
  11. package/dist/components/EditorRuler/Ruler.js +6 -3
  12. package/dist/components/EffectPickerModal.js +69 -43
  13. package/dist/components/ElementInstallConfirmation.js +3 -3
  14. package/dist/components/ElementLibrariesSettings.d.ts +2 -0
  15. package/dist/components/ElementLibrariesSettings.js +200 -0
  16. package/dist/components/InitialCompositionLoader.js +4 -2
  17. package/dist/components/InlineDropdown.js +26 -2
  18. package/dist/components/InlineEditableTitle.js +1 -0
  19. package/dist/components/InspectorOpenInEditor.js +13 -0
  20. package/dist/components/InspectorPanel/AlignmentControls.js +28 -9
  21. package/dist/components/InspectorPanel/CollapsibleInspectorSectionHeader.js +2 -1
  22. package/dist/components/InspectorPanel/CompositionInspector.js +3 -3
  23. package/dist/components/InspectorPanel/CompositionMetadata.js +4 -0
  24. package/dist/components/InspectorPanel/EasingInspector.js +6 -2
  25. package/dist/components/InspectorPanel/ElementLibraryButton.js +2 -1
  26. package/dist/components/InspectorPanel/KeyframeEasingNavigator.js +1 -1
  27. package/dist/components/InspectorPanel/KeyframeInspector.js +28 -24
  28. package/dist/components/InspectorPanel/MultiSequenceInspector.js +32 -1
  29. package/dist/components/InspectorPanel/MultiSequenceNumberField.js +1 -1
  30. package/dist/components/InspectorPanel/SequenceInspectorHeader.d.ts +3 -1
  31. package/dist/components/InspectorPanel/SequenceSelectionInspector.js +70 -2
  32. package/dist/components/InspectorPanel/SequenceWrapAction.d.ts +8 -0
  33. package/dist/components/InspectorPanel/SequenceWrapAction.js +151 -0
  34. package/dist/components/InspectorPanel/common.js +1 -0
  35. package/dist/components/InspectorPanel/easing-inspector-selection.d.ts +2 -1
  36. package/dist/components/InspectorPanel/easing-inspector-selection.js +4 -3
  37. package/dist/components/InspectorPanel/keyframe-inspector-frame.d.ts +2 -1
  38. package/dist/components/InspectorPanel/keyframe-inspector-frame.js +2 -2
  39. package/dist/components/InspectorPanel/styles.js +2 -0
  40. package/dist/components/InspectorPanel/use-composition-actions.js +1 -0
  41. package/dist/components/InspectorSequenceSection.d.ts +1 -0
  42. package/dist/components/InspectorSequenceSection.js +7 -5
  43. package/dist/components/InspectorSourceLocation.js +3 -0
  44. package/dist/components/KeyboardShortcutsSettings.js +1 -1
  45. package/dist/components/Menu/styles.d.ts +2 -2
  46. package/dist/components/MenuBuildIndicator.js +1 -0
  47. package/dist/components/Modals.js +7 -6
  48. package/dist/components/ModelManager.js +10 -9
  49. package/dist/components/NewComposition/CancelButton.js +11 -5
  50. package/dist/components/NewComposition/InputDragger.d.ts +3 -1
  51. package/dist/components/NewComposition/InputDragger.js +28 -9
  52. package/dist/components/NewComposition/NewComposition.js +7 -6
  53. package/dist/components/NewComposition/RemInput.d.ts +1 -1
  54. package/dist/components/NewComposition/menu-typeahead.js +1 -1
  55. package/dist/components/Preview.js +4 -0
  56. package/dist/components/QuickSwitcher/ExplorerQuickSwitcherTrigger.js +1 -0
  57. package/dist/components/QuickSwitcher/QuickSwitcherContent.js +1 -0
  58. package/dist/components/RadioButton.js +1 -0
  59. package/dist/components/RenderModal/DataEditor.js +4 -1
  60. package/dist/components/RenderModal/SchemaEditor/create-zod-values.js +1 -2
  61. package/dist/components/RenderModal/WebRenderModalPicture.js +1 -2
  62. package/dist/components/RenderQueue/CaptionQueueItem.js +19 -7
  63. package/dist/components/RenderQueue/CaptionQueueProcessor.js +65 -15
  64. package/dist/components/RenderQueue/QueueJobError.d.ts +8 -0
  65. package/dist/components/RenderQueue/QueueJobError.js +24 -0
  66. package/dist/components/RenderQueue/QueueJobErrorModal.d.ts +8 -0
  67. package/dist/components/RenderQueue/QueueJobErrorModal.js +63 -0
  68. package/dist/components/RenderQueue/RenderQueueItemCancelButton.d.ts +3 -1
  69. package/dist/components/RenderQueue/RenderQueueItemCancelButton.js +11 -4
  70. package/dist/components/RenderQueue/RenderQueueRepeat.d.ts +3 -1
  71. package/dist/components/RenderQueue/RenderQueueRepeat.js +20 -3
  72. package/dist/components/RenderQueue/VideoMattingQueueItem.js +25 -27
  73. package/dist/components/RenderQueue/VideoMattingQueueProcessor.js +68 -28
  74. package/dist/components/RenderQueue/caption-job-types.d.ts +9 -1
  75. package/dist/components/RenderQueue/context.d.ts +4 -0
  76. package/dist/components/RenderQueue/context.js +58 -8
  77. package/dist/components/RenderQueue/index.js +3 -3
  78. package/dist/components/RenderQueue/load-model-for-job.d.ts +2 -1
  79. package/dist/components/RenderQueue/load-model-for-job.js +5 -1
  80. package/dist/components/RenderQueue/video-matting-job-types.d.ts +13 -6
  81. package/dist/components/RendersTab.js +2 -0
  82. package/dist/components/SelectedOutlineCropControls.js +2 -1
  83. package/dist/components/SelectedOutlineEditingHandles.js +9 -2
  84. package/dist/components/SelectedOutlineElement.js +9 -3
  85. package/dist/components/SelectedOutlineKeyboardControls.d.ts +2 -4
  86. package/dist/components/SelectedOutlineKeyboardControls.js +4 -22
  87. package/dist/components/SelectedOutlineOverlay.js +152 -106
  88. package/dist/components/SelectedOutlinePathPoints.d.ts +8 -0
  89. package/dist/components/SelectedOutlinePathPoints.js +433 -0
  90. package/dist/components/SelectedOutlinePolygon.js +21 -46
  91. package/dist/components/SelectedOutlineRenderer.d.ts +3 -5
  92. package/dist/components/SelectedOutlineRenderer.js +32 -136
  93. package/dist/components/SelectedOutlineSnapIndicators.d.ts +6 -0
  94. package/dist/components/SelectedOutlineSnapIndicators.js +16 -12
  95. package/dist/components/SelectedOutlineTransformOriginHandle.js +3 -2
  96. package/dist/components/SelectedOutlineUvControls.js +12 -7
  97. package/dist/components/SequencePropsSubscriptionProvider.d.ts +3 -0
  98. package/dist/components/SequencePropsSubscriptionProvider.js +8 -6
  99. package/dist/components/SettingsModal.js +30 -3
  100. package/dist/components/SettingsModalFooter.d.ts +1 -0
  101. package/dist/components/SettingsModalFooter.js +7 -3
  102. package/dist/components/ShowOutlinesProvider.js +1 -1
  103. package/dist/components/SkillsSettings.d.ts +0 -1
  104. package/dist/components/SkillsSettings.js +13 -14
  105. package/dist/components/Splitter/SplitterElement.js +1 -2
  106. package/dist/components/TimeValue.js +1 -1
  107. package/dist/components/Timeline/LoopedTimelineIndicators.d.ts +1 -0
  108. package/dist/components/Timeline/LoopedTimelineIndicators.js +7 -6
  109. package/dist/components/Timeline/TimelineArrayField.js +1 -1
  110. package/dist/components/Timeline/TimelineClipboardKeybindings.js +0 -1
  111. package/dist/components/Timeline/TimelineColorField.js +1 -1
  112. package/dist/components/Timeline/TimelineDeleteKeybindings.js +6 -9
  113. package/dist/components/Timeline/TimelineDragHandler.js +1 -1
  114. package/dist/components/Timeline/TimelineEffectItem.js +1 -0
  115. package/dist/components/Timeline/TimelineEffectPropItem.d.ts +1 -0
  116. package/dist/components/Timeline/TimelineEffectPropItem.js +12 -5
  117. package/dist/components/Timeline/TimelineExpandArrowButton.js +1 -0
  118. package/dist/components/Timeline/TimelineExpandedRow.d.ts +1 -0
  119. package/dist/components/Timeline/TimelineExpandedRow.js +6 -4
  120. package/dist/components/Timeline/TimelineExpandedSection.d.ts +1 -0
  121. package/dist/components/Timeline/TimelineExpandedSection.js +2 -2
  122. package/dist/components/Timeline/TimelineExpandedTrackKeyframes.d.ts +1 -0
  123. package/dist/components/Timeline/TimelineExpandedTrackKeyframes.js +3 -1
  124. package/dist/components/Timeline/TimelineFieldLabel.js +1 -0
  125. package/dist/components/Timeline/TimelineFontFamilyField.js +12 -12
  126. package/dist/components/Timeline/TimelineKeyframeControls.d.ts +1 -0
  127. package/dist/components/Timeline/TimelineKeyframeControls.js +40 -28
  128. package/dist/components/Timeline/TimelineLayerChildren.js +1 -1
  129. package/dist/components/Timeline/TimelineList.js +1 -1
  130. package/dist/components/Timeline/TimelineNumberField.js +2 -4
  131. package/dist/components/Timeline/TimelinePrimitiveFieldValue.js +1 -1
  132. package/dist/components/Timeline/TimelineSelection.d.ts +9 -9
  133. package/dist/components/Timeline/TimelineSelection.js +16 -9
  134. package/dist/components/Timeline/TimelineSequence.d.ts +3 -1
  135. package/dist/components/Timeline/TimelineSequence.js +65 -21
  136. package/dist/components/Timeline/TimelineSequenceFrame.js +1 -0
  137. package/dist/components/Timeline/TimelineSequenceItem.d.ts +1 -0
  138. package/dist/components/Timeline/TimelineSequenceItem.js +46 -8
  139. package/dist/components/Timeline/TimelineSequencePropItem.d.ts +3 -0
  140. package/dist/components/Timeline/TimelineSequencePropItem.js +262 -25
  141. package/dist/components/Timeline/TimelineSequenceRightEdgeDragHandle.d.ts +11 -13
  142. package/dist/components/Timeline/TimelineSequenceRightEdgeDragHandle.js +98 -77
  143. package/dist/components/Timeline/TimelineTextContentField.js +27 -4
  144. package/dist/components/Timeline/TimelineTimeIndicators.js +10 -5
  145. package/dist/components/Timeline/TimelineTrack.js +1 -1
  146. package/dist/components/Timeline/TimelineTrimTooltip.d.ts +11 -0
  147. package/dist/components/Timeline/TimelineTrimTooltip.js +41 -0
  148. package/dist/components/Timeline/TimelineVideoInfo.d.ts +1 -0
  149. package/dist/components/Timeline/TimelineVideoInfo.js +13 -10
  150. package/dist/components/Timeline/TimelineViewport.d.ts +1 -0
  151. package/dist/components/Timeline/TimelineViewport.js +10 -1
  152. package/dist/components/Timeline/delete-selected-keyframe.js +22 -8
  153. package/dist/components/Timeline/delete-selected-timeline-item.d.ts +1 -5
  154. package/dist/components/Timeline/delete-selected-timeline-item.js +9 -95
  155. package/dist/components/Timeline/get-animation-item-selection-for-frame.d.ts +2 -1
  156. package/dist/components/Timeline/get-animation-item-selection-for-frame.js +7 -5
  157. package/dist/components/Timeline/get-keyframed-sequence-drag-targets.d.ts +23 -0
  158. package/dist/components/Timeline/get-keyframed-sequence-drag-targets.js +57 -0
  159. package/dist/components/Timeline/get-node-keyframes.d.ts +2 -1
  160. package/dist/components/Timeline/get-node-keyframes.js +6 -4
  161. package/dist/components/Timeline/get-playback-rate-keyframe-changes.d.ts +21 -0
  162. package/dist/components/Timeline/get-playback-rate-keyframe-changes.js +142 -0
  163. package/dist/components/Timeline/get-sequence-context-menu-items.d.ts +3 -1
  164. package/dist/components/Timeline/get-sequence-context-menu-items.js +13 -1
  165. package/dist/components/Timeline/get-timeline-keyframes.d.ts +15 -2
  166. package/dist/components/Timeline/get-timeline-keyframes.js +44 -6
  167. package/dist/components/Timeline/keyframe-clipboard.js +17 -3
  168. package/dist/components/Timeline/split-selected-timeline-item.d.ts +13 -10
  169. package/dist/components/Timeline/split-selected-timeline-item.js +61 -35
  170. package/dist/components/Timeline/timeline-field-display-utils.js +1 -0
  171. package/dist/components/Timeline/timeline-field-row-layout.js +1 -0
  172. package/dist/components/Timeline/use-delete-timeline-items.js +17 -11
  173. package/dist/components/Timeline/use-expanded-track-keyframe-rows.d.ts +2 -1
  174. package/dist/components/Timeline/use-expanded-track-keyframe-rows.js +3 -1
  175. package/dist/components/Timeline/use-sequence-freeze-frame-menu-item.js +7 -3
  176. package/dist/components/Timeline/use-timeline-keyframe-drag.js +28 -19
  177. package/dist/components/TimelineCombobox.js +1 -0
  178. package/dist/components/Transcription/Models.js +1 -1
  179. package/dist/components/Transcription/TranscriptionModal.js +18 -11
  180. package/dist/components/Transcription/TranscriptionModalWithOptionalWhisper.js +1 -1
  181. package/dist/components/Transcription/resample-media-to-16-khz.d.ts +2 -1
  182. package/dist/components/Transcription/resample-media-to-16-khz.js +20 -2
  183. package/dist/components/UpdatesSettings.js +2 -0
  184. package/dist/components/VideoMatting/Models.js +1 -1
  185. package/dist/components/VideoMatting/VideoMattingModal.js +30 -47
  186. package/dist/components/VideoMatting/VideoMattingModalWithOptionalPackage.js +1 -1
  187. package/dist/components/WebMcp.js +23 -40
  188. package/dist/components/composition-drop-preview.d.ts +9 -2
  189. package/dist/components/composition-drop-preview.js +8 -4
  190. package/dist/components/composition-menu-items.js +4 -4
  191. package/dist/components/delete-jsx-nodes-api.d.ts +2 -0
  192. package/dist/components/{delete-jsx-node-api.js → delete-jsx-nodes-api.js} +5 -5
  193. package/dist/components/effect-drag-and-drop.d.ts +13 -5
  194. package/dist/components/effect-drag-and-drop.js +19 -4
  195. package/dist/components/get-open-in-menu-items.d.ts +2 -1
  196. package/dist/components/get-open-in-menu-items.js +24 -8
  197. package/dist/components/keyboard-shortcuts.d.ts +4 -4
  198. package/dist/components/keyboard-shortcuts.js +3 -1
  199. package/dist/components/public-output-name.d.ts +1 -0
  200. package/dist/components/public-output-name.js +7 -3
  201. package/dist/components/selected-outline-drag.d.ts +1 -6
  202. package/dist/components/selected-outline-drag.js +22 -6
  203. package/dist/components/selected-outline-geometry.d.ts +2 -18
  204. package/dist/components/selected-outline-measurement.d.ts +23 -41
  205. package/dist/components/selected-outline-measurement.js +14 -252
  206. package/dist/components/selected-outline-order.d.ts +4 -11
  207. package/dist/components/selected-outline-order.js +2 -254
  208. package/dist/components/selected-outline-snap.d.ts +1 -1
  209. package/dist/components/selected-outline-snap.js +2 -1
  210. package/dist/components/selected-outline-types.d.ts +18 -28
  211. package/dist/components/selected-outline-uv.d.ts +4 -4
  212. package/dist/components/selected-outline-uv.js +6 -111
  213. package/dist/components/sequence-props-api.js +0 -10
  214. package/dist/components/use-selected-outline-control-target.js +12 -21
  215. package/dist/components/wrap-jsx-node-api.d.ts +2 -0
  216. package/dist/components/wrap-jsx-node-api.js +13 -0
  217. package/dist/error-overlay/remotion-overlay/OpenInEditor.js +45 -2
  218. package/dist/error-overlay/remotion-overlay/StackFrame.js +32 -3
  219. package/dist/esm/{CaptionQueueProcessor-k0yrm3dj.mjs → CaptionQueueProcessor-nr7hjcga.mjs} +96 -19
  220. package/dist/esm/LazyModels-ajkn7fs3.mjs +12 -0
  221. package/dist/esm/LazyModels-g1g7cf4e.mjs +12 -0
  222. package/dist/esm/{TranscriptionModal-ymnx1c7m.mjs → TranscriptionModal-e18bzbkb.mjs} +30 -22
  223. package/dist/esm/{VideoMattingModal-05vpczks.mjs → VideoMattingModal-5bz2s4rs.mjs} +47 -62
  224. package/dist/esm/{VideoMattingQueueProcessor-t1hgm2rm.mjs → VideoMattingQueueProcessor-4tkj0f4k.mjs} +69 -26
  225. package/dist/esm/{index-v4tr1bft.mjs → index-09txs1bj.mjs} +5 -0
  226. package/dist/esm/{index-4dsz9035.mjs → index-5ycb9e9q.mjs} +2 -4
  227. package/dist/esm/index-890dd9b3.mjs +768 -0
  228. package/dist/esm/{index-5bfxbpca.mjs → index-8nt6a0mw.mjs} +3 -3
  229. package/dist/esm/{index-5gd8k9yv.mjs → index-9q9w8v9p.mjs} +3 -3
  230. package/dist/esm/{index-x40wwfmt.mjs → index-c2wabcdt.mjs} +8 -6
  231. package/dist/esm/index-dfy1t576.mjs +129 -0
  232. package/dist/esm/index-dh3zk2hv.mjs +220 -0
  233. package/dist/esm/{index-0gewwxse.mjs → index-dpyss74p.mjs} +6179 -5011
  234. package/dist/esm/{index-9x6e1dq0.mjs → index-hqxc6tzp.mjs} +40 -6
  235. package/dist/esm/{index-cdy8v54v.mjs → index-qve7mdfp.mjs} +36 -539
  236. package/dist/esm/{index-eb5txqp6.mjs → index-s6qya2gg.mjs} +8 -88
  237. package/dist/esm/index-t7tbt980.mjs +103 -0
  238. package/dist/esm/{index-g7k2dvar.mjs → index-t7xnxdf8.mjs} +44 -26
  239. package/dist/esm/index-wqc43mw0.mjs +158 -0
  240. package/dist/esm/{index-bs39wngg.mjs → index-x6r9bn12.mjs} +5623 -6218
  241. package/dist/esm/{index-f97r9e2g.mjs → index-xac20sv4.mjs} +46 -57
  242. package/dist/esm/index.mjs +4 -4
  243. package/dist/esm/internals.mjs +13 -10
  244. package/dist/esm/previewEntry.mjs +18 -12
  245. package/dist/esm/renderEntry.mjs +5 -1
  246. package/dist/esm/{resolve-composition-component-location-bt2d6qxq.mjs → resolve-composition-component-location-2hgf6g0a.mjs} +1 -1
  247. package/dist/helpers/calculate-timeline.d.ts +5 -1
  248. package/dist/helpers/calculate-timeline.js +1 -1
  249. package/dist/helpers/checkerboard-background.d.ts +2 -2
  250. package/dist/helpers/colors.d.ts +132 -112
  251. package/dist/helpers/colors.js +117 -95
  252. package/dist/helpers/copy-text.js +1 -16
  253. package/dist/helpers/create-folder-tree.js +2 -1
  254. package/dist/helpers/editor-guide-selection.d.ts +1 -1
  255. package/dist/helpers/editor-ruler.js +23 -12
  256. package/dist/helpers/get-connected-compositions.d.ts +6 -1
  257. package/dist/helpers/get-connected-compositions.js +1 -1
  258. package/dist/helpers/get-sequence-double-click-action.js +1 -1
  259. package/dist/helpers/get-sequence-visible-range.d.ts +1 -1
  260. package/dist/helpers/get-sequence-visible-range.js +2 -5
  261. package/dist/helpers/get-timeline-nestedness.d.ts +1 -1
  262. package/dist/helpers/get-timeline-nestedness.js +1 -1
  263. package/dist/helpers/get-timeline-sequence-sort-key.d.ts +1 -1
  264. package/dist/helpers/get-timeline-sequence-sort-key.js +1 -1
  265. package/dist/helpers/hoverable.js +6 -5
  266. package/dist/helpers/inject-css.js +5 -7
  267. package/dist/helpers/open-in-editor.js +1 -1
  268. package/dist/helpers/prism-vsc-dark-plus.d.ts +1 -1
  269. package/dist/helpers/prism-vsc-dark-plus.js +52 -51
  270. package/dist/helpers/resolve-studio-color.d.ts +1 -0
  271. package/dist/helpers/resolve-studio-color.js +11 -0
  272. package/dist/helpers/studio-css-variables.d.ts +1 -0
  273. package/dist/helpers/studio-css-variables.js +105 -0
  274. package/dist/helpers/studio-pixel-ratio.d.ts +1 -0
  275. package/dist/helpers/studio-pixel-ratio.js +7 -0
  276. package/dist/helpers/studio-runtime-config.d.ts +1 -1
  277. package/dist/helpers/timeline-node-path-key.d.ts +1 -1
  278. package/dist/helpers/timeline-node-path-key.js +2 -2
  279. package/dist/helpers/use-keybinding.d.ts +1 -1
  280. package/dist/helpers/use-keyboard-shortcut-label.d.ts +2 -2
  281. package/dist/helpers/use-menu-structure.js +15 -9
  282. package/dist/helpers/use-runtime-values.js +2 -28
  283. package/dist/hot-middleware-client/client.js +5 -3
  284. package/dist/icons/align-center-horizontal.js +2 -1
  285. package/dist/icons/align-left.js +2 -1
  286. package/dist/icons/align-right.js +2 -1
  287. package/dist/icons/{separation.d.ts → background-removal.d.ts} +1 -1
  288. package/dist/icons/background-removal.js +9 -0
  289. package/dist/icons/wrap.d.ts +4 -0
  290. package/dist/icons/wrap.js +10 -0
  291. package/dist/previewEntry.js +2 -0
  292. package/dist/renderEntry.js +2 -0
  293. package/dist/state/modals.d.ts +20 -1
  294. package/dist/state/timeline-sequence-hover.d.ts +6 -16
  295. package/dist/state/timeline-sequence-hover.js +6 -67
  296. package/dist/state/timeline-zoom.js +4 -0
  297. package/package.json +20 -19
  298. package/dist/components/Timeline/get-easing-selection-after-keyframe-delete.d.ts +0 -15
  299. package/dist/components/Timeline/get-easing-selection-after-keyframe-delete.js +0 -31
  300. package/dist/components/delete-jsx-node-api.d.ts +0 -2
  301. package/dist/esm/LazyModels-mtggyjye.mjs +0 -11
  302. package/dist/esm/LazyModels-nk7py0zt.mjs +0 -11
  303. package/dist/esm/index-cw0pnpg5.mjs +0 -50
  304. package/dist/esm/index-k426ye99.mjs +0 -139
  305. package/dist/helpers/get-box-quads-polyfill-internals.d.ts +0 -82
  306. package/dist/helpers/get-box-quads-polyfill-internals.js +0 -2403
  307. package/dist/helpers/get-box-quads-ponyfill.d.ts +0 -10
  308. package/dist/helpers/get-box-quads-ponyfill.js +0 -23
  309. package/dist/icons/separation.js +0 -7
@@ -9,32 +9,21 @@ import {
9
9
  label,
10
10
  optionRow,
11
11
  rightRow,
12
- showNotification,
13
12
  useCopyFeedback,
14
13
  validatePublicOutputName
15
- } from "./index-bs39wngg.mjs";
14
+ } from "./index-x6r9bn12.mjs";
15
+ import {
16
+ showNotification
17
+ } from "./index-dh3zk2hv.mjs";
16
18
  import {
17
19
  Spacing
18
- } from "./index-cdy8v54v.mjs";
20
+ } from "./index-890dd9b3.mjs";
19
21
  import {
20
22
  BLUE,
21
- CURRENT_COLOR_LOWERCASE,
22
23
  INPUT_BACKGROUND,
23
24
  LIGHT_TEXT,
24
25
  WHITE
25
- } from "./index-k426ye99.mjs";
26
-
27
- // src/icons/gear.tsx
28
- import { jsx } from "react/jsx-runtime";
29
- var GearIcon = ({ color, ...props }) => /* @__PURE__ */ jsx("svg", {
30
- xmlns: "http://www.w3.org/2000/svg",
31
- viewBox: "0 0 512 512",
32
- ...props,
33
- children: /* @__PURE__ */ jsx("path", {
34
- fill: color ?? CURRENT_COLOR_LOWERCASE,
35
- 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"
36
- })
37
- });
26
+ } from "./index-wqc43mw0.mjs";
38
27
 
39
28
  // src/components/Transcription/caption-output-name.ts
40
29
  var getDefaultCaptionOutputName = (src, displayName = "captions") => {
@@ -50,7 +39,7 @@ import { BrowserSafeApis } from "@remotion/renderer/client";
50
39
 
51
40
  // src/components/RenderModal/CliCopyButton.tsx
52
41
  import { useCallback, useMemo, useState } from "react";
53
- import { jsx as jsx2 } from "react/jsx-runtime";
42
+ import { jsx } from "react/jsx-runtime";
54
43
  var svgStyle = {
55
44
  width: 16,
56
45
  height: 16,
@@ -73,7 +62,7 @@ var CliCopyButton = ({
73
62
  const fillColor = useMemo(() => {
74
63
  return hovered ? WHITE : LIGHT_TEXT;
75
64
  }, [hovered]);
76
- const copyIcon = /* @__PURE__ */ jsx2(CopyIcon, {
65
+ const copyIcon = /* @__PURE__ */ jsx(CopyIcon, {
77
66
  copied,
78
67
  color: fillColor,
79
68
  style: svgStyle
@@ -84,7 +73,7 @@ var CliCopyButton = ({
84
73
  const onPointerLeave = useCallback(() => {
85
74
  setHovered(false);
86
75
  }, []);
87
- return /* @__PURE__ */ jsx2("button", {
76
+ return /* @__PURE__ */ jsx("button", {
88
77
  type: "button",
89
78
  onPointerEnter,
90
79
  onPointerLeave,
@@ -99,7 +88,7 @@ var CliCopyButton = ({
99
88
  };
100
89
 
101
90
  // src/components/RenderModal/OptionExplainer.tsx
102
- import { jsx as jsx3, jsxs, Fragment } from "react/jsx-runtime";
91
+ import { jsx as jsx2, jsxs, Fragment } from "react/jsx-runtime";
103
92
  var container = {
104
93
  fontSize: 14,
105
94
  paddingTop: 10,
@@ -166,16 +155,16 @@ var OptionExplainer = ({
166
155
  children: [
167
156
  /* @__PURE__ */ jsxs("div", {
168
157
  children: [
169
- /* @__PURE__ */ jsx3("strong", {
158
+ /* @__PURE__ */ jsx2("strong", {
170
159
  style: title,
171
160
  children: option.name
172
161
  }),
173
162
  option.docLink ? /* @__PURE__ */ jsxs(Fragment, {
174
163
  children: [
175
- /* @__PURE__ */ jsx3(Spacing, {
164
+ /* @__PURE__ */ jsx2(Spacing, {
176
165
  x: 1
177
166
  }),
178
- /* @__PURE__ */ jsx3("a", {
167
+ /* @__PURE__ */ jsx2("a", {
179
168
  style: link,
180
169
  href: option.docLink,
181
170
  target: "_blank",
@@ -188,7 +177,7 @@ var OptionExplainer = ({
188
177
  /* @__PURE__ */ jsxs("div", {
189
178
  style: description,
190
179
  children: [
191
- /* @__PURE__ */ jsx3("style", {
180
+ /* @__PURE__ */ jsx2("style", {
192
181
  children: `
193
182
  .__remotion-option-explainer-description,
194
183
  .__remotion-option-explainer-description * {
@@ -208,7 +197,7 @@ var OptionExplainer = ({
208
197
  }
209
198
  `
210
199
  }),
211
- /* @__PURE__ */ jsx3("div", {
200
+ /* @__PURE__ */ jsx2("div", {
212
201
  className: "__remotion-option-explainer-description",
213
202
  children: option.description("ssr")
214
203
  })
@@ -218,12 +207,12 @@ var OptionExplainer = ({
218
207
  }),
219
208
  hasInfoRows ? /* @__PURE__ */ jsxs(Fragment, {
220
209
  children: [
221
- /* @__PURE__ */ jsx3(Spacing, {
210
+ /* @__PURE__ */ jsx2(Spacing, {
222
211
  y: 0.5,
223
212
  block: true
224
213
  }),
225
- /* @__PURE__ */ jsx3(MenuDivider, {}),
226
- /* @__PURE__ */ jsx3(Spacing, {
214
+ /* @__PURE__ */ jsx2(MenuDivider, {}),
215
+ /* @__PURE__ */ jsx2(Spacing, {
227
216
  y: 0.5,
228
217
  block: true
229
218
  }),
@@ -232,19 +221,19 @@ var OptionExplainer = ({
232
221
  extraInfoRows.map((row) => /* @__PURE__ */ jsxs("div", {
233
222
  style: infoRow,
234
223
  children: [
235
- /* @__PURE__ */ jsx3("div", {
224
+ /* @__PURE__ */ jsx2("div", {
236
225
  style: infoRowLabel,
237
226
  children: row.label
238
227
  }),
239
- /* @__PURE__ */ jsx3("div", {
228
+ /* @__PURE__ */ jsx2("div", {
240
229
  style: flexSpacer
241
230
  }),
242
- /* @__PURE__ */ jsx3("code", {
231
+ /* @__PURE__ */ jsx2("code", {
243
232
  children: row.value
244
233
  }),
245
- /* @__PURE__ */ jsx3("div", {
234
+ /* @__PURE__ */ jsx2("div", {
246
235
  style: copyWrapper,
247
- children: /* @__PURE__ */ jsx3(CliCopyButton, {
236
+ children: /* @__PURE__ */ jsx2(CliCopyButton, {
248
237
  valueToCopy: row.value
249
238
  })
250
239
  })
@@ -253,11 +242,11 @@ var OptionExplainer = ({
253
242
  shouldShowCliFlag ? /* @__PURE__ */ jsxs("div", {
254
243
  style: infoRow,
255
244
  children: [
256
- /* @__PURE__ */ jsx3("div", {
245
+ /* @__PURE__ */ jsx2("div", {
257
246
  style: infoRowLabel,
258
247
  children: "CLI flag"
259
248
  }),
260
- /* @__PURE__ */ jsx3("div", {
249
+ /* @__PURE__ */ jsx2("div", {
261
250
  style: flexSpacer
262
251
  }),
263
252
  /* @__PURE__ */ jsxs("code", {
@@ -266,9 +255,9 @@ var OptionExplainer = ({
266
255
  option.cliFlag
267
256
  ]
268
257
  }),
269
- /* @__PURE__ */ jsx3("div", {
258
+ /* @__PURE__ */ jsx2("div", {
270
259
  style: copyWrapper,
271
- children: /* @__PURE__ */ jsx3(CliCopyButton, {
260
+ children: /* @__PURE__ */ jsx2(CliCopyButton, {
272
261
  valueToCopy: option.cliFlag
273
262
  })
274
263
  })
@@ -277,22 +266,22 @@ var OptionExplainer = ({
277
266
  shouldShowApiOption ? /* @__PURE__ */ jsxs("div", {
278
267
  style: infoRow,
279
268
  children: [
280
- /* @__PURE__ */ jsx3("div", {
269
+ /* @__PURE__ */ jsx2("div", {
281
270
  style: infoRowLabel,
282
271
  children: "API option"
283
272
  }),
284
- /* @__PURE__ */ jsx3("div", {
273
+ /* @__PURE__ */ jsx2("div", {
285
274
  style: flexSpacer
286
275
  }),
287
- /* @__PURE__ */ jsx3("code", {
276
+ /* @__PURE__ */ jsx2("code", {
288
277
  children: option.ssrName
289
278
  }),
290
- /* @__PURE__ */ jsx3(Spacing, {
279
+ /* @__PURE__ */ jsx2(Spacing, {
291
280
  x: 3.75
292
281
  })
293
282
  ]
294
283
  }) : null,
295
- /* @__PURE__ */ jsx3("div", {
284
+ /* @__PURE__ */ jsx2("div", {
296
285
  style: infoRow
297
286
  })
298
287
  ]
@@ -304,12 +293,12 @@ var OptionExplainer = ({
304
293
  };
305
294
 
306
295
  // src/components/RenderModal/OptionExplainerBubble.tsx
307
- import { jsx as jsx4 } from "react/jsx-runtime";
296
+ import { jsx as jsx3 } from "react/jsx-runtime";
308
297
  var OptionExplainerBubble = ({ id, extraInfoRows, showApiOption, showCliFlag }) => {
309
298
  const option = BrowserSafeApis.options[id];
310
- return /* @__PURE__ */ jsx4(InfoBubble, {
299
+ return /* @__PURE__ */ jsx3(InfoBubble, {
311
300
  title: "Learn more about this option",
312
- children: /* @__PURE__ */ jsx4(OptionExplainer, {
301
+ children: /* @__PURE__ */ jsx3(OptionExplainer, {
313
302
  extraInfoRows,
314
303
  option,
315
304
  showApiOption,
@@ -318,7 +307,7 @@ var OptionExplainerBubble = ({ id, extraInfoRows, showApiOption, showCliFlag })
318
307
  });
319
308
  };
320
309
  var WebRendererOptionExplainerBubble = ({ id, apiName }) => {
321
- return /* @__PURE__ */ jsx4(OptionExplainerBubble, {
310
+ return /* @__PURE__ */ jsx3(OptionExplainerBubble, {
322
311
  extraInfoRows: [{ label: "API option", value: apiName }],
323
312
  id,
324
313
  showApiOption: false,
@@ -332,9 +321,9 @@ var WebRendererCustomOptionExplainerBubble = ({ apiName, description: descriptio
332
321
  name,
333
322
  ssrName: null
334
323
  };
335
- return /* @__PURE__ */ jsx4(InfoBubble, {
324
+ return /* @__PURE__ */ jsx3(InfoBubble, {
336
325
  title: "Learn more about this option",
337
- children: /* @__PURE__ */ jsx4(OptionExplainer, {
326
+ children: /* @__PURE__ */ jsx3(OptionExplainer, {
338
327
  extraInfoRows: [{ label: "API option", value: apiName }],
339
328
  option,
340
329
  showApiOption: false,
@@ -344,7 +333,7 @@ var WebRendererCustomOptionExplainerBubble = ({ apiName, description: descriptio
344
333
  };
345
334
 
346
335
  // src/components/RenderModal/NumberSetting.tsx
347
- import { jsx as jsx5, jsxs as jsxs2, Fragment as Fragment2 } from "react/jsx-runtime";
336
+ import { jsx as jsx4, jsxs as jsxs2, Fragment as Fragment2 } from "react/jsx-runtime";
348
337
  var NumberSetting = ({ name, value, step, hint, onValueChanged, max, min, formatter }) => {
349
338
  const onTextChanged = useCallback2((e) => {
350
339
  onValueChanged((q) => {
@@ -367,12 +356,12 @@ var NumberSetting = ({ name, value, step, hint, onValueChanged, max, min, format
367
356
  name,
368
357
  hint ? /* @__PURE__ */ jsxs2(Fragment2, {
369
358
  children: [
370
- /* @__PURE__ */ jsx5(Spacing, {
359
+ /* @__PURE__ */ jsx4(Spacing, {
371
360
  x: 0.5
372
361
  }),
373
- typeof hint === "string" ? /* @__PURE__ */ jsx5(OptionExplainerBubble, {
362
+ typeof hint === "string" ? /* @__PURE__ */ jsx4(OptionExplainerBubble, {
374
363
  id: hint
375
- }) : /* @__PURE__ */ jsx5(InfoBubble, {
364
+ }) : /* @__PURE__ */ jsx4(InfoBubble, {
376
365
  title: hint.title,
377
366
  children: hint.content
378
367
  })
@@ -380,10 +369,10 @@ var NumberSetting = ({ name, value, step, hint, onValueChanged, max, min, format
380
369
  }) : null
381
370
  ]
382
371
  }),
383
- /* @__PURE__ */ jsx5("div", {
372
+ /* @__PURE__ */ jsx4("div", {
384
373
  style: rightRow,
385
- children: /* @__PURE__ */ jsx5(RightAlignInput, {
386
- children: /* @__PURE__ */ jsx5(InputDragger, {
374
+ children: /* @__PURE__ */ jsx4(RightAlignInput, {
375
+ children: /* @__PURE__ */ jsx4(InputDragger, {
387
376
  value,
388
377
  name: name.toLowerCase(),
389
378
  "aria-label": `${name}: ${formatter ? formatter(value) : value}`,
@@ -403,4 +392,4 @@ var NumberSetting = ({ name, value, step, hint, onValueChanged, max, min, format
403
392
  });
404
393
  };
405
394
 
406
- export { GearIcon, getDefaultCaptionOutputName, validateCaptionOutputName, OptionExplainerBubble, WebRendererOptionExplainerBubble, WebRendererCustomOptionExplainerBubble, NumberSetting };
395
+ export { getDefaultCaptionOutputName, validateCaptionOutputName, OptionExplainerBubble, WebRendererOptionExplainerBubble, WebRendererCustomOptionExplainerBubble, NumberSetting };
@@ -3,7 +3,7 @@ import {
3
3
  play,
4
4
  seek,
5
5
  shutDownStudio
6
- } from "./index-4dsz9035.mjs";
6
+ } from "./index-5ycb9e9q.mjs";
7
7
  import {
8
8
  CodingAgentIcon,
9
9
  DEFAULT_PROPS_PATH_ACTIVE_CLASSNAME,
@@ -21,13 +21,13 @@ import {
21
21
  visualControlRef,
22
22
  visualControlStore,
23
23
  watchPublicFolder
24
- } from "./index-eb5txqp6.mjs";
24
+ } from "./index-s6qya2gg.mjs";
25
25
  import {
26
26
  getBrowserStudioOperations,
27
27
  writeStaticFile
28
- } from "./index-cw0pnpg5.mjs";
28
+ } from "./index-dfy1t576.mjs";
29
29
  import"./index-5zrb1ft4.mjs";
30
- import"./index-k426ye99.mjs";
30
+ import"./index-wqc43mw0.mjs";
31
31
  import {
32
32
  __require,
33
33
  __toESM
@@ -1,16 +1,19 @@
1
1
  import {
2
2
  Studio
3
- } from "./index-0gewwxse.mjs";
4
- import"./index-f97r9e2g.mjs";
5
- import"./index-x40wwfmt.mjs";
6
- import"./index-bs39wngg.mjs";
7
- import"./index-9x6e1dq0.mjs";
8
- import"./index-4dsz9035.mjs";
9
- import"./index-eb5txqp6.mjs";
10
- import"./index-cw0pnpg5.mjs";
11
- import"./index-cdy8v54v.mjs";
3
+ } from "./index-dpyss74p.mjs";
4
+ import"./index-xac20sv4.mjs";
5
+ import"./index-c2wabcdt.mjs";
6
+ import"./index-x6r9bn12.mjs";
7
+ import"./index-dh3zk2hv.mjs";
8
+ import"./index-hqxc6tzp.mjs";
9
+ import"./index-5ycb9e9q.mjs";
10
+ import"./index-s6qya2gg.mjs";
11
+ import"./index-dfy1t576.mjs";
12
+ import"./index-t7tbt980.mjs";
13
+ import"./index-890dd9b3.mjs";
14
+ import"./index-qve7mdfp.mjs";
12
15
  import"./index-5zrb1ft4.mjs";
13
- import"./index-k426ye99.mjs";
16
+ import"./index-wqc43mw0.mjs";
14
17
  import"./index-rcv7qkt5.mjs";
15
18
 
16
19
  // src/internals.ts
@@ -5,25 +5,28 @@ import {
5
5
  markErrorMessageAsLoggedByServer,
6
6
  setErrorsRef,
7
7
  startReportingRuntimeErrors
8
- } from "./index-0gewwxse.mjs";
9
- import"./index-f97r9e2g.mjs";
10
- import"./index-x40wwfmt.mjs";
8
+ } from "./index-dpyss74p.mjs";
9
+ import"./index-xac20sv4.mjs";
10
+ import"./index-c2wabcdt.mjs";
11
11
  import {
12
12
  reloadUrl,
13
13
  subscribeToPreviewServerEvents
14
- } from "./index-bs39wngg.mjs";
15
- import"./index-9x6e1dq0.mjs";
16
- import"./index-4dsz9035.mjs";
17
- import"./index-eb5txqp6.mjs";
18
- import"./index-cw0pnpg5.mjs";
19
- import"./index-cdy8v54v.mjs";
14
+ } from "./index-x6r9bn12.mjs";
15
+ import"./index-dh3zk2hv.mjs";
16
+ import"./index-hqxc6tzp.mjs";
17
+ import"./index-5ycb9e9q.mjs";
18
+ import"./index-s6qya2gg.mjs";
19
+ import"./index-dfy1t576.mjs";
20
+ import {
21
+ studioCssVariables
22
+ } from "./index-t7tbt980.mjs";
23
+ import"./index-890dd9b3.mjs";
24
+ import"./index-qve7mdfp.mjs";
20
25
  import"./index-5zrb1ft4.mjs";
21
26
  import {
22
27
  BACKGROUND_HEX,
23
- HOT_MIDDLEWARE_ERROR_STYLE,
24
- HOT_MIDDLEWARE_WARNING_STYLE,
25
28
  WHITE
26
- } from "./index-k426ye99.mjs";
29
+ } from "./index-wqc43mw0.mjs";
27
30
  import"./index-rcv7qkt5.mjs";
28
31
 
29
32
  // src/previewEntry.tsx
@@ -325,6 +328,8 @@ var processUpdate = function(hash, moduleMap, options) {
325
328
  };
326
329
 
327
330
  // src/hot-middleware-client/client.ts
331
+ var HOT_MIDDLEWARE_ERROR_STYLE = "color: #ff0000;";
332
+ var HOT_MIDDLEWARE_WARNING_STYLE = "color: #999933;";
328
333
  function createReporter() {
329
334
  const styles = {
330
335
  errors: HOT_MIDDLEWARE_ERROR_STYLE,
@@ -435,6 +440,7 @@ var enableHotMiddleware = () => {
435
440
  // src/previewEntry.tsx
436
441
  import { jsx as jsx3 } from "react/jsx-runtime";
437
442
  installFiberCommitOrderObserver(window);
443
+ Internals3.CSSUtils.injectCSS(studioCssVariables);
438
444
  Internals3.CSSUtils.injectCSS(Internals3.CSSUtils.makeDefaultPreviewCSS(null, BACKGROUND_HEX));
439
445
  if (!window.__remotionOverlayStarted) {
440
446
  window.__remotionOverlayStarted = true;
@@ -1,8 +1,11 @@
1
+ import {
2
+ studioCssVariables
3
+ } from "./index-t7tbt980.mjs";
1
4
  import {
2
5
  BACKGROUND_HEX,
3
6
  TRANSPARENT,
4
7
  WHITE
5
- } from "./index-k426ye99.mjs";
8
+ } from "./index-wqc43mw0.mjs";
6
9
  import {
7
10
  __require,
8
11
  __toESM
@@ -30,6 +33,7 @@ var setBundleMode = (state) => {
30
33
  var getBundleMode = () => {
31
34
  return currentBundleMode;
32
35
  };
36
+ Internals.CSSUtils.injectCSS(studioCssVariables);
33
37
  Internals.CSSUtils.injectCSS(Internals.CSSUtils.makeDefaultPreviewCSS(null, BACKGROUND_HEX));
34
38
  var getCanSerializeDefaultProps = (object) => {
35
39
  try {
@@ -1,6 +1,6 @@
1
1
  import"./index-rcv7qkt5.mjs";
2
2
 
3
- // ../studio-codemods/dist/esm/resolve-composition-component-location.mjs
3
+ // ../codemods/dist/esm/resolve-composition-component-location.mjs
4
4
  var __create = Object.create;
5
5
  var __getProtoOf = Object.getPrototypeOf;
6
6
  var __defProp = Object.defineProperty;
@@ -1 +1,5 @@
1
- export { calculateTimeline } from '@remotion/canvas';
1
+ export declare const calculateTimeline: ({ sequences, overrideIdsToNodePaths, compositions, }: {
2
+ sequences: import("remotion").TSequence[];
3
+ overrideIdsToNodePaths: import("remotion").OverrideIdToNodePaths;
4
+ compositions?: readonly import("remotion").AnyComposition[] | undefined;
5
+ }) => import("@remotion/canvas").TimelineTrackData[];
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.calculateTimeline = void 0;
4
4
  const canvas_1 = require("@remotion/canvas");
5
- Object.defineProperty(exports, "calculateTimeline", { enumerable: true, get: function () { return canvas_1.calculateTimeline; } });
5
+ ({ calculateTimeline: exports.calculateTimeline } = canvas_1.CanvasInternals);
@@ -1,4 +1,4 @@
1
1
  export declare const getCheckerboardBackgroundSize: (size: number) => string;
2
2
  export declare const getCheckerboardBackgroundPos: (size: number) => string;
3
- export declare const checkerboardBackgroundColor: (checkerboard: boolean) => "black" | "white";
4
- export declare const checkerboardBackgroundImage: (checkerboard: boolean) => "\n linear-gradient(\n 45deg,\n rgba(0, 0, 0, 0.1) 25%,\n transparent 25%\n ),\n linear-gradient(135deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),\n linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%),\n linear-gradient(135deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%)\n " | undefined;
3
+ export declare const checkerboardBackgroundColor: (checkerboard: boolean) => "var(--remotion-studio-black)" | "var(--remotion-studio-white)";
4
+ export declare const checkerboardBackgroundImage: (checkerboard: boolean) => "\n linear-gradient(\n 45deg,\n var(--remotion-studio-black-alpha-10) 25%,\n var(--remotion-studio-transparent) 25%\n ),\n linear-gradient(135deg, var(--remotion-studio-black-alpha-10) 25%, var(--remotion-studio-transparent) 25%),\n linear-gradient(45deg, var(--remotion-studio-transparent) 75%, var(--remotion-studio-black-alpha-10) 75%),\n linear-gradient(135deg, var(--remotion-studio-transparent) 75%, var(--remotion-studio-black-alpha-10) 75%)\n " | undefined;