@remotion/cli 4.0.63 → 4.0.66

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 (63) hide show
  1. package/dist/better-opn/index.d.ts +2 -0
  2. package/dist/config/image-format.d.ts +1 -1
  3. package/dist/config/index.d.ts +2 -2
  4. package/dist/editor/components/AudioWaveform.js +2 -2
  5. package/dist/editor/components/Canvas.js +10 -1
  6. package/dist/editor/components/CompositionSelectorItem.js +42 -1
  7. package/dist/editor/components/ContextMenu.d.ts +6 -0
  8. package/dist/editor/components/ContextMenu.js +91 -0
  9. package/dist/editor/components/CurrentComposition.d.ts +1 -0
  10. package/dist/editor/components/EditorContexts.js +3 -1
  11. package/dist/editor/components/EditorGuides/Guide.d.ts +13 -0
  12. package/dist/editor/components/EditorGuides/Guide.js +91 -0
  13. package/dist/editor/components/EditorGuides/index.d.ts +10 -0
  14. package/dist/editor/components/EditorGuides/index.js +32 -0
  15. package/dist/editor/components/EditorRuler/Ruler.d.ts +1 -0
  16. package/dist/editor/components/EditorRuler/Ruler.js +81 -16
  17. package/dist/editor/components/EditorRuler/index.js +117 -48
  18. package/dist/editor/components/EditorRuler/use-is-ruler-visible.d.ts +1 -0
  19. package/dist/editor/components/EditorRuler/use-is-ruler-visible.js +12 -0
  20. package/dist/editor/components/Menu/MenuItem.js +6 -3
  21. package/dist/editor/components/Menu/MenuSubItem.d.ts +2 -1
  22. package/dist/editor/components/Menu/MenuSubItem.js +2 -2
  23. package/dist/editor/components/NewComposition/ComboBox.d.ts +1 -1
  24. package/dist/editor/components/NewComposition/CopyHint.js +1 -0
  25. package/dist/editor/components/NewComposition/InputDragger.js +4 -1
  26. package/dist/editor/components/NewComposition/MenuContent.js +3 -3
  27. package/dist/editor/components/NewComposition/NewCompCode.d.ts +1 -0
  28. package/dist/editor/components/NewComposition/RemInput.d.ts +1 -1
  29. package/dist/editor/components/NewComposition/RemInputTypeColor.d.ts +1 -1
  30. package/dist/editor/components/OpenEditorButton.js +1 -0
  31. package/dist/editor/components/RenderModal/DataEditor.js +1 -0
  32. package/dist/editor/components/RenderModal/RenderStatusModal.js +0 -2
  33. package/dist/editor/components/RenderModal/human-readable-codec.d.ts +1 -1
  34. package/dist/editor/components/RenderQueue/RenderQueueRemoveItem.js +0 -1
  35. package/dist/editor/components/ShowGuidesProvider.js +20 -1
  36. package/dist/editor/components/Splitter/SplitterHandle.js +3 -0
  37. package/dist/editor/components/Timeline/TimelineDragHandler.js +85 -5
  38. package/dist/editor/components/Timeline/TimelineInOutPointerHandle.js +2 -1
  39. package/dist/editor/components/Timeline/TimelineVideoInfo.js +1 -0
  40. package/dist/editor/components/TopPanel.js +10 -5
  41. package/dist/editor/components/UpdateCheck.d.ts +1 -0
  42. package/dist/editor/components/UpdateCheck.js +2 -0
  43. package/dist/editor/helpers/colors.d.ts +6 -1
  44. package/dist/editor/helpers/colors.js +7 -2
  45. package/dist/editor/helpers/convert-env-variables.d.ts +2 -8
  46. package/dist/editor/helpers/create-folder-tree.js +1 -0
  47. package/dist/editor/helpers/editor-ruler.d.ts +20 -1
  48. package/dist/editor/helpers/editor-ruler.js +119 -20
  49. package/dist/editor/helpers/presets-labels.d.ts +1 -1
  50. package/dist/editor/helpers/render-modal-sections.d.ts +1 -0
  51. package/dist/editor/helpers/use-keybinding.js +1 -0
  52. package/dist/editor/helpers/use-menu-structure.js +42 -1
  53. package/dist/editor/helpers/use-studio-canvas-dimensions.d.ts +16 -0
  54. package/dist/editor/helpers/use-studio-canvas-dimensions.js +59 -0
  55. package/dist/editor/icons/Checkmark.d.ts +1 -0
  56. package/dist/editor/state/editor-guides.d.ts +19 -3
  57. package/dist/editor/state/editor-guides.js +19 -2
  58. package/dist/get-cli-options.d.ts +2 -2
  59. package/dist/index.d.ts +7 -7
  60. package/dist/preview-server/dev-middleware/range-parser.d.ts +1 -1
  61. package/dist/preview-server/public-folder.js +1 -1
  62. package/dist/preview-server/routes.d.ts +1 -0
  63. package/package.json +8 -8
@@ -19,7 +19,7 @@ const fetchFolder = ({ publicDir, staticHash, }) => {
19
19
  folder: '.',
20
20
  startPath: publicDir,
21
21
  staticHash,
22
- limit: 1000,
22
+ limit: 10000,
23
23
  }).map((f) => {
24
24
  return {
25
25
  ...f,
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import type { LogLevel } from '@remotion/renderer';
2
3
  import type { IncomingMessage, ServerResponse } from 'node:http';
3
4
  import type { LiveEventsServer } from './live-events';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/cli",
3
- "version": "4.0.63",
3
+ "version": "4.0.66",
4
4
  "description": "CLI for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -35,11 +35,11 @@
35
35
  "prompts": "2.4.1",
36
36
  "semver": "7.5.3",
37
37
  "source-map": "0.6.1",
38
- "@remotion/bundler": "4.0.63",
39
- "@remotion/player": "4.0.63",
40
- "@remotion/media-utils": "4.0.63",
41
- "@remotion/renderer": "4.0.63",
42
- "remotion": "4.0.63"
38
+ "@remotion/bundler": "4.0.66",
39
+ "@remotion/media-utils": "4.0.66",
40
+ "@remotion/player": "4.0.66",
41
+ "@remotion/renderer": "4.0.66",
42
+ "remotion": "4.0.66"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": ">=16.8.0",
@@ -65,8 +65,8 @@
65
65
  "react-dom": "18.2.0",
66
66
  "vitest": "0.31.1",
67
67
  "zod": "^3.22.3",
68
- "@remotion/zod-types": "4.0.63",
69
- "@remotion/tailwind": "4.0.63"
68
+ "@remotion/zod-types": "4.0.66",
69
+ "@remotion/tailwind": "4.0.66"
70
70
  },
71
71
  "keywords": [
72
72
  "remotion",