@remotion/studio 4.0.444 → 4.0.446
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.
- package/dist/components/AssetSelectorItem.js +11 -1
- package/dist/components/Canvas.js +197 -42
- package/dist/components/CanvasOrLoading.js +4 -4
- package/dist/components/CompositionSelectorItem.js +15 -1
- package/dist/components/FilePreview.js +3 -0
- package/dist/components/InitialCompositionLoader.js +10 -4
- package/dist/components/Preview.d.ts +1 -0
- package/dist/components/Preview.js +14 -1
- package/dist/components/Timeline/Timeline.js +8 -5
- package/dist/components/Timeline/TimelineListItem.js +53 -2
- package/dist/components/Timeline/TimelinePinchZoom.d.ts +2 -0
- package/dist/components/Timeline/TimelinePinchZoom.js +240 -0
- package/dist/components/Timeline/TimelineSlider.js +22 -8
- package/dist/components/Timeline/TimelineZoomControls.js +6 -3
- package/dist/components/Timeline/timeline-scroll-logic.d.ts +13 -1
- package/dist/components/Timeline/timeline-scroll-logic.js +20 -6
- package/dist/components/Timeline/use-sequence-props-subscription.d.ts +4 -1
- package/dist/components/Timeline/use-sequence-props-subscription.js +10 -1
- package/dist/error-overlay/remotion-overlay/ErrorDisplay.js +1 -1
- package/dist/error-overlay/remotion-overlay/Retry.d.ts +1 -0
- package/dist/error-overlay/remotion-overlay/Retry.js +2 -2
- package/dist/esm/{chunk-1zvzzrkf.js → chunk-2dkkw8x5.js} +6255 -5577
- package/dist/esm/internals.mjs +6255 -5577
- package/dist/esm/previewEntry.mjs +2250 -1574
- package/dist/esm/renderEntry.mjs +1 -1
- package/dist/helpers/get-asset-metadata.d.ts +3 -0
- package/dist/helpers/get-asset-metadata.js +51 -43
- package/dist/helpers/get-effective-translation.d.ts +13 -1
- package/dist/helpers/get-effective-translation.js +45 -1
- package/dist/helpers/sidebar-scroll-into-view.d.ts +13 -0
- package/dist/helpers/sidebar-scroll-into-view.js +83 -0
- package/dist/helpers/use-studio-canvas-dimensions.js +3 -1
- package/dist/state/timeline-zoom.d.ts +5 -1
- package/dist/state/timeline-zoom.js +21 -16
- package/package.json +9 -9
package/dist/esm/renderEntry.mjs
CHANGED
|
@@ -208,7 +208,7 @@ var renderContent = (Root) => {
|
|
|
208
208
|
renderToDOM(/* @__PURE__ */ jsx("div", {
|
|
209
209
|
children: /* @__PURE__ */ jsx(DelayedSpinner, {})
|
|
210
210
|
}));
|
|
211
|
-
import("./chunk-
|
|
211
|
+
import("./chunk-2dkkw8x5.js").then(({ StudioInternals }) => {
|
|
212
212
|
window.remotion_isStudio = true;
|
|
213
213
|
window.remotion_isReadOnlyStudio = true;
|
|
214
214
|
window.remotion_inputProps = "{}";
|
|
@@ -23,55 +23,63 @@ const getAssetMetadata = async (canvasContent, addTime) => {
|
|
|
23
23
|
if (canvasContent.type === 'composition') {
|
|
24
24
|
throw new Error('cannot get dimensions for composition');
|
|
25
25
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
26
|
+
try {
|
|
27
|
+
const src = getSrcFromCanvasContent(canvasContent);
|
|
28
|
+
const file = await fetch(src, {
|
|
29
|
+
method: 'HEAD',
|
|
30
|
+
});
|
|
31
|
+
if (file.status === 404) {
|
|
32
|
+
return { type: 'not-found' };
|
|
33
|
+
}
|
|
34
|
+
if (file.status !== 200) {
|
|
35
|
+
throw new Error(`Expected status code 200 or 404 for file, got ${file.status}`);
|
|
36
|
+
}
|
|
37
|
+
const size = file.headers.get('content-length');
|
|
38
|
+
if (!size) {
|
|
39
|
+
throw new Error('Unexpected error: content-length is null');
|
|
40
|
+
}
|
|
41
|
+
const fetchedAt = Date.now();
|
|
42
|
+
const srcWithTime = addTime ? `${src}?date=${fetchedAt}` : src;
|
|
43
|
+
const fileType = (0, Preview_1.getPreviewFileType)(src);
|
|
44
|
+
if (fileType === 'video') {
|
|
45
|
+
const resolution = await (0, media_utils_1.getVideoMetadata)(srcWithTime);
|
|
46
|
+
return {
|
|
47
|
+
type: 'found',
|
|
48
|
+
size: Number(size),
|
|
49
|
+
dimensions: { width: resolution.width, height: resolution.height },
|
|
50
|
+
fetchedAt,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
if (fileType === 'image') {
|
|
54
|
+
const resolution = await new Promise((resolve, reject) => {
|
|
55
|
+
const img = new Image();
|
|
56
|
+
img.onload = () => {
|
|
57
|
+
resolve({
|
|
58
|
+
type: 'found',
|
|
59
|
+
size: Number(size),
|
|
60
|
+
dimensions: { width: img.width, height: img.height },
|
|
61
|
+
fetchedAt,
|
|
62
|
+
});
|
|
63
|
+
};
|
|
64
|
+
img.onerror = () => {
|
|
65
|
+
reject(new Error('Failed to load image'));
|
|
66
|
+
};
|
|
67
|
+
img.src = srcWithTime;
|
|
68
|
+
});
|
|
69
|
+
return resolution;
|
|
70
|
+
}
|
|
45
71
|
return {
|
|
46
72
|
type: 'found',
|
|
73
|
+
dimensions: 'none',
|
|
47
74
|
size: Number(size),
|
|
48
|
-
dimensions: { width: resolution.width, height: resolution.height },
|
|
49
75
|
fetchedAt,
|
|
50
76
|
};
|
|
51
77
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
type: 'found',
|
|
58
|
-
size: Number(size),
|
|
59
|
-
dimensions: { width: img.width, height: img.height },
|
|
60
|
-
fetchedAt,
|
|
61
|
-
});
|
|
62
|
-
};
|
|
63
|
-
img.onerror = () => {
|
|
64
|
-
reject(new Error('Failed to load image'));
|
|
65
|
-
};
|
|
66
|
-
img.src = srcWithTime;
|
|
67
|
-
});
|
|
68
|
-
return resolution;
|
|
78
|
+
catch (err) {
|
|
79
|
+
return {
|
|
80
|
+
type: 'metadata-error',
|
|
81
|
+
error: err instanceof Error ? err : new Error(String(err)),
|
|
82
|
+
};
|
|
69
83
|
}
|
|
70
|
-
return {
|
|
71
|
-
type: 'found',
|
|
72
|
-
dimensions: 'none',
|
|
73
|
-
size: Number(size),
|
|
74
|
-
fetchedAt,
|
|
75
|
-
};
|
|
76
84
|
};
|
|
77
85
|
exports.getAssetMetadata = getAssetMetadata;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Size } from '@remotion/player';
|
|
2
|
-
import type
|
|
2
|
+
import { type PreviewSize, type Translation } from 'remotion';
|
|
3
3
|
export declare const getEffectiveTranslation: ({ canvasSize, scale, compositionHeight, compositionWidth, translation, }: {
|
|
4
4
|
canvasSize: Size;
|
|
5
5
|
scale: number;
|
|
@@ -25,3 +25,15 @@ export declare const getCenterPointWhileScrolling: ({ size, clientX, clientY, co
|
|
|
25
25
|
centerX: number;
|
|
26
26
|
centerY: number;
|
|
27
27
|
};
|
|
28
|
+
export declare const applyZoomAroundFocalPoint: ({ canvasSize, contentDimensions, previewSizeBefore, oldNumericSize, newNumericSize, clientX, clientY, }: {
|
|
29
|
+
readonly canvasSize: Size;
|
|
30
|
+
readonly contentDimensions: {
|
|
31
|
+
width: number;
|
|
32
|
+
height: number;
|
|
33
|
+
};
|
|
34
|
+
readonly previewSizeBefore: PreviewSize;
|
|
35
|
+
readonly oldNumericSize: number;
|
|
36
|
+
readonly newNumericSize: number;
|
|
37
|
+
readonly clientX: number;
|
|
38
|
+
readonly clientY: number;
|
|
39
|
+
}) => PreviewSize;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getCenterPointWhileScrolling = exports.getEffectiveTranslation = void 0;
|
|
3
|
+
exports.applyZoomAroundFocalPoint = exports.getCenterPointWhileScrolling = exports.getEffectiveTranslation = void 0;
|
|
4
|
+
const remotion_1 = require("remotion");
|
|
5
|
+
const smooth_zoom_1 = require("./smooth-zoom");
|
|
4
6
|
const getEffectiveXTranslation = ({ canvasSize, scale, compositionWidth, translation, }) => {
|
|
5
7
|
const maxTranslation = Math.abs(canvasSize.width / 2 +
|
|
6
8
|
(scale * compositionWidth) / 2 -
|
|
@@ -43,3 +45,45 @@ const getCenterPointWhileScrolling = ({ size, clientX, clientY, compositionWidth
|
|
|
43
45
|
};
|
|
44
46
|
};
|
|
45
47
|
exports.getCenterPointWhileScrolling = getCenterPointWhileScrolling;
|
|
48
|
+
const applyZoomAroundFocalPoint = ({ canvasSize, contentDimensions, previewSizeBefore, oldNumericSize, newNumericSize, clientX, clientY, }) => {
|
|
49
|
+
const scale = remotion_1.Internals.calculateScale({
|
|
50
|
+
canvasSize,
|
|
51
|
+
compositionHeight: contentDimensions.height,
|
|
52
|
+
compositionWidth: contentDimensions.width,
|
|
53
|
+
previewSize: previewSizeBefore.size,
|
|
54
|
+
});
|
|
55
|
+
const clampedNew = Math.min(smooth_zoom_1.MAX_ZOOM, Math.max(smooth_zoom_1.MIN_ZOOM, newNumericSize));
|
|
56
|
+
if (clampedNew === oldNumericSize) {
|
|
57
|
+
return previewSizeBefore;
|
|
58
|
+
}
|
|
59
|
+
const { centerX, centerY } = (0, exports.getCenterPointWhileScrolling)({
|
|
60
|
+
size: canvasSize,
|
|
61
|
+
clientX,
|
|
62
|
+
clientY,
|
|
63
|
+
compositionWidth: contentDimensions.width,
|
|
64
|
+
compositionHeight: contentDimensions.height,
|
|
65
|
+
scale,
|
|
66
|
+
translation: previewSizeBefore.translation,
|
|
67
|
+
});
|
|
68
|
+
const zoomDifference = clampedNew - oldNumericSize;
|
|
69
|
+
const uvCoordinatesX = centerX / contentDimensions.width;
|
|
70
|
+
const uvCoordinatesY = centerY / contentDimensions.height;
|
|
71
|
+
const correctionLeft = -uvCoordinatesX * (zoomDifference * contentDimensions.width) +
|
|
72
|
+
(1 - uvCoordinatesX) * zoomDifference * contentDimensions.width;
|
|
73
|
+
const correctionTop = -uvCoordinatesY * (zoomDifference * contentDimensions.height) +
|
|
74
|
+
(1 - uvCoordinatesY) * zoomDifference * contentDimensions.height;
|
|
75
|
+
return {
|
|
76
|
+
size: clampedNew,
|
|
77
|
+
translation: (0, exports.getEffectiveTranslation)({
|
|
78
|
+
translation: {
|
|
79
|
+
x: previewSizeBefore.translation.x - correctionLeft / 2,
|
|
80
|
+
y: previewSizeBefore.translation.y - correctionTop / 2,
|
|
81
|
+
},
|
|
82
|
+
canvasSize,
|
|
83
|
+
compositionHeight: contentDimensions.height,
|
|
84
|
+
compositionWidth: contentDimensions.width,
|
|
85
|
+
scale,
|
|
86
|
+
}),
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
exports.applyZoomAroundFocalPoint = applyZoomAroundFocalPoint;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const scrollSidebarRowIntoViewIfNeeded: (element: HTMLElement | null) => void;
|
|
2
|
+
export declare const markCompositionSidebarScrollFromRowClick: (compositionId: string) => void;
|
|
3
|
+
export declare const maybeScrollCompositionSidebarRowIntoView: ({ element, compositionId, selected, }: {
|
|
4
|
+
element: HTMLElement | null;
|
|
5
|
+
compositionId: string;
|
|
6
|
+
selected: boolean;
|
|
7
|
+
}) => void;
|
|
8
|
+
export declare const markAssetSidebarScrollFromRowClick: (assetPath: string) => void;
|
|
9
|
+
export declare const maybeScrollAssetSidebarRowIntoView: ({ element, assetPath, selected, }: {
|
|
10
|
+
element: HTMLElement | null;
|
|
11
|
+
assetPath: string;
|
|
12
|
+
selected: boolean;
|
|
13
|
+
}) => void;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.maybeScrollAssetSidebarRowIntoView = exports.markAssetSidebarScrollFromRowClick = exports.maybeScrollCompositionSidebarRowIntoView = exports.markCompositionSidebarScrollFromRowClick = exports.scrollSidebarRowIntoViewIfNeeded = void 0;
|
|
4
|
+
const getComputedOverflowY = (el) => {
|
|
5
|
+
return getComputedStyle(el).overflowY;
|
|
6
|
+
};
|
|
7
|
+
const findVerticalScrollParent = (element) => {
|
|
8
|
+
var _a;
|
|
9
|
+
let cur = (_a = element === null || element === void 0 ? void 0 : element.parentElement) !== null && _a !== void 0 ? _a : null;
|
|
10
|
+
while (cur) {
|
|
11
|
+
const overflowY = getComputedOverflowY(cur);
|
|
12
|
+
if (overflowY === 'auto' ||
|
|
13
|
+
overflowY === 'scroll' ||
|
|
14
|
+
overflowY === 'overlay') {
|
|
15
|
+
return cur;
|
|
16
|
+
}
|
|
17
|
+
cur = cur.parentElement;
|
|
18
|
+
}
|
|
19
|
+
return null;
|
|
20
|
+
};
|
|
21
|
+
const isVerticallyFullyVisibleInSidebarList = (element) => {
|
|
22
|
+
const scrollParent = findVerticalScrollParent(element);
|
|
23
|
+
const rect = element.getBoundingClientRect();
|
|
24
|
+
if (!scrollParent) {
|
|
25
|
+
return rect.top >= 0 && rect.bottom <= window.innerHeight;
|
|
26
|
+
}
|
|
27
|
+
const parentRect = scrollParent.getBoundingClientRect();
|
|
28
|
+
return rect.top >= parentRect.top && rect.bottom <= parentRect.bottom;
|
|
29
|
+
};
|
|
30
|
+
const scrollSidebarRowIntoViewIfNeeded = (element) => {
|
|
31
|
+
if (!element) {
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
if (isVerticallyFullyVisibleInSidebarList(element)) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
element.scrollIntoView({ block: 'nearest', behavior: 'auto' });
|
|
38
|
+
};
|
|
39
|
+
exports.scrollSidebarRowIntoViewIfNeeded = scrollSidebarRowIntoViewIfNeeded;
|
|
40
|
+
let skipCompositionScrollIntoViewForId = null;
|
|
41
|
+
const markCompositionSidebarScrollFromRowClick = (compositionId) => {
|
|
42
|
+
skipCompositionScrollIntoViewForId = compositionId;
|
|
43
|
+
};
|
|
44
|
+
exports.markCompositionSidebarScrollFromRowClick = markCompositionSidebarScrollFromRowClick;
|
|
45
|
+
const shouldSkipCompositionScrollIntoView = (compositionId) => {
|
|
46
|
+
if (skipCompositionScrollIntoViewForId === compositionId) {
|
|
47
|
+
skipCompositionScrollIntoViewForId = null;
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
return false;
|
|
51
|
+
};
|
|
52
|
+
const maybeScrollCompositionSidebarRowIntoView = ({ element, compositionId, selected, }) => {
|
|
53
|
+
if (!selected) {
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
if (shouldSkipCompositionScrollIntoView(compositionId)) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
(0, exports.scrollSidebarRowIntoViewIfNeeded)(element);
|
|
60
|
+
};
|
|
61
|
+
exports.maybeScrollCompositionSidebarRowIntoView = maybeScrollCompositionSidebarRowIntoView;
|
|
62
|
+
let skipAssetScrollIntoViewForPath = null;
|
|
63
|
+
const markAssetSidebarScrollFromRowClick = (assetPath) => {
|
|
64
|
+
skipAssetScrollIntoViewForPath = assetPath;
|
|
65
|
+
};
|
|
66
|
+
exports.markAssetSidebarScrollFromRowClick = markAssetSidebarScrollFromRowClick;
|
|
67
|
+
const shouldSkipAssetScrollIntoView = (assetPath) => {
|
|
68
|
+
if (skipAssetScrollIntoViewForPath === assetPath) {
|
|
69
|
+
skipAssetScrollIntoViewForPath = null;
|
|
70
|
+
return true;
|
|
71
|
+
}
|
|
72
|
+
return false;
|
|
73
|
+
};
|
|
74
|
+
const maybeScrollAssetSidebarRowIntoView = ({ element, assetPath, selected, }) => {
|
|
75
|
+
if (!selected) {
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
if (shouldSkipAssetScrollIntoView(assetPath)) {
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
(0, exports.scrollSidebarRowIntoViewIfNeeded)(element);
|
|
82
|
+
};
|
|
83
|
+
exports.maybeScrollAssetSidebarRowIntoView = maybeScrollAssetSidebarRowIntoView;
|
|
@@ -9,7 +9,9 @@ const useStudioCanvasDimensions = ({ canvasSize, contentDimensions, assetMetadat
|
|
|
9
9
|
const { centerX, centerY, scale } = (0, react_1.useMemo)(() => {
|
|
10
10
|
if (contentDimensions === 'none' ||
|
|
11
11
|
contentDimensions === null ||
|
|
12
|
-
(assetMetadata &&
|
|
12
|
+
(assetMetadata &&
|
|
13
|
+
(assetMetadata.type === 'not-found' ||
|
|
14
|
+
assetMetadata.type === 'metadata-error')) ||
|
|
13
15
|
!canvasSize) {
|
|
14
16
|
return {
|
|
15
17
|
centerX: previewSize.translation.x,
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const TIMELINE_MIN_ZOOM = 1;
|
|
3
3
|
export declare const TIMELINE_MAX_ZOOM = 5;
|
|
4
|
+
export type TimelineSetZoomOptions = {
|
|
5
|
+
anchorFrame: number | null;
|
|
6
|
+
anchorContentX: number | null;
|
|
7
|
+
};
|
|
4
8
|
export declare const TimelineZoomCtx: React.Context<{
|
|
5
9
|
zoom: Record<string, number>;
|
|
6
|
-
setZoom: (compositionId: string, prev: (prevZoom: number) => number) => void;
|
|
10
|
+
setZoom: (compositionId: string, prev: (prevZoom: number) => number, options?: TimelineSetZoomOptions | undefined) => void;
|
|
7
11
|
}>;
|
|
8
12
|
export declare const TimelineZoomContext: React.FC<{
|
|
9
13
|
readonly children: React.ReactNode;
|
|
@@ -15,26 +15,31 @@ exports.TimelineZoomCtx = (0, react_1.createContext)({
|
|
|
15
15
|
},
|
|
16
16
|
});
|
|
17
17
|
const TimelineZoomContext = ({ children }) => {
|
|
18
|
-
const [zoom,
|
|
18
|
+
const [zoom, setZoomState] = (0, react_1.useState)(() => (0, ZoomPersistor_1.getZoomFromLocalStorage)());
|
|
19
|
+
const setZoom = (0, react_1.useCallback)((compositionId, callback, options) => {
|
|
20
|
+
setZoomState((prevZoomMap) => {
|
|
21
|
+
var _a, _b, _c, _d;
|
|
22
|
+
const newZoomWithFloatingPointErrors = Math.min(exports.TIMELINE_MAX_ZOOM, Math.max(exports.TIMELINE_MIN_ZOOM, callback((_a = prevZoomMap[compositionId]) !== null && _a !== void 0 ? _a : exports.TIMELINE_MIN_ZOOM)));
|
|
23
|
+
const newZoom = Math.round(newZoomWithFloatingPointErrors * 10) / 10;
|
|
24
|
+
const anchorFrame = (_b = options === null || options === void 0 ? void 0 : options.anchorFrame) !== null && _b !== void 0 ? _b : null;
|
|
25
|
+
const anchorContentX = (_c = options === null || options === void 0 ? void 0 : options.anchorContentX) !== null && _c !== void 0 ? _c : null;
|
|
26
|
+
(0, timeline_scroll_logic_1.zoomAndPreserveCursor)({
|
|
27
|
+
oldZoom: (_d = prevZoomMap[compositionId]) !== null && _d !== void 0 ? _d : exports.TIMELINE_MIN_ZOOM,
|
|
28
|
+
newZoom,
|
|
29
|
+
currentDurationInFrames: (0, imperative_state_1.getCurrentDuration)(),
|
|
30
|
+
currentFrame: (0, imperative_state_1.getCurrentFrame)(),
|
|
31
|
+
anchorFrame,
|
|
32
|
+
anchorContentX,
|
|
33
|
+
});
|
|
34
|
+
return { ...prevZoomMap, [compositionId]: newZoom };
|
|
35
|
+
});
|
|
36
|
+
}, []);
|
|
19
37
|
const value = (0, react_1.useMemo)(() => {
|
|
20
38
|
return {
|
|
21
39
|
zoom,
|
|
22
|
-
setZoom
|
|
23
|
-
setZoom((prevZoomMap) => {
|
|
24
|
-
var _a, _b;
|
|
25
|
-
const newZoomWithFloatingPointErrors = Math.min(exports.TIMELINE_MAX_ZOOM, Math.max(exports.TIMELINE_MIN_ZOOM, callback((_a = prevZoomMap[compositionId]) !== null && _a !== void 0 ? _a : exports.TIMELINE_MIN_ZOOM)));
|
|
26
|
-
const newZoom = Math.round(newZoomWithFloatingPointErrors * 10) / 10;
|
|
27
|
-
(0, timeline_scroll_logic_1.zoomAndPreserveCursor)({
|
|
28
|
-
oldZoom: (_b = prevZoomMap[compositionId]) !== null && _b !== void 0 ? _b : exports.TIMELINE_MIN_ZOOM,
|
|
29
|
-
newZoom,
|
|
30
|
-
currentDurationInFrames: (0, imperative_state_1.getCurrentDuration)(),
|
|
31
|
-
currentFrame: (0, imperative_state_1.getCurrentFrame)(),
|
|
32
|
-
});
|
|
33
|
-
return { ...prevZoomMap, [compositionId]: newZoom };
|
|
34
|
-
});
|
|
35
|
-
},
|
|
40
|
+
setZoom,
|
|
36
41
|
};
|
|
37
|
-
}, [zoom]);
|
|
42
|
+
}, [zoom, setZoom]);
|
|
38
43
|
return (jsx_runtime_1.jsx(exports.TimelineZoomCtx.Provider, { value: value, children: children }));
|
|
39
44
|
};
|
|
40
45
|
exports.TimelineZoomContext = TimelineZoomContext;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.446",
|
|
7
7
|
"description": "APIs for interacting with the Remotion Studio",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"semver": "7.5.3",
|
|
29
|
-
"remotion": "4.0.
|
|
30
|
-
"@remotion/player": "4.0.
|
|
31
|
-
"@remotion/media-utils": "4.0.
|
|
32
|
-
"@remotion/renderer": "4.0.
|
|
33
|
-
"@remotion/web-renderer": "4.0.
|
|
34
|
-
"@remotion/studio-shared": "4.0.
|
|
35
|
-
"@remotion/zod-types": "4.0.
|
|
29
|
+
"remotion": "4.0.446",
|
|
30
|
+
"@remotion/player": "4.0.446",
|
|
31
|
+
"@remotion/media-utils": "4.0.446",
|
|
32
|
+
"@remotion/renderer": "4.0.446",
|
|
33
|
+
"@remotion/web-renderer": "4.0.446",
|
|
34
|
+
"@remotion/studio-shared": "4.0.446",
|
|
35
|
+
"@remotion/zod-types": "4.0.446",
|
|
36
36
|
"mediabunny": "1.39.2",
|
|
37
37
|
"memfs": "3.4.3",
|
|
38
38
|
"source-map": "0.7.3",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"react": "19.2.3",
|
|
44
44
|
"react-dom": "19.2.3",
|
|
45
45
|
"@types/semver": "^7.3.4",
|
|
46
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.446",
|
|
47
47
|
"eslint": "9.19.0",
|
|
48
48
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
49
49
|
},
|