@remotion/studio 4.0.259 → 4.0.260
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/.turbo/turbo-formatting.log +7 -0
- package/.turbo/turbo-lint.log +15 -0
- package/.turbo/turbo-make.log +1 -1
- package/bundle.ts +7 -1
- package/dist/api/seek.js +2 -2
- package/dist/components/TimeValue.d.ts +0 -4
- package/dist/components/TimeValue.js +3 -27
- package/dist/esm/index.mjs +26 -3739
- package/dist/esm/internals.mjs +1686 -1687
- package/dist/helpers/colors.d.ts +1 -1
- package/dist/helpers/use-menu-structure.js +1 -2
- package/package.json +10 -10
- package/tsconfig.tsbuildinfo +1 -1
package/dist/helpers/colors.d.ts
CHANGED
|
@@ -24,4 +24,4 @@ export declare const TIMELINE_TRACK_SEPARATOR = "rgba(0, 0, 0, 0.3)";
|
|
|
24
24
|
export declare const getBackgroundFromHoverState: ({ selected, hovered, }: {
|
|
25
25
|
selected: boolean;
|
|
26
26
|
hovered: boolean;
|
|
27
|
-
}) => "hsla(0, 0%, 100%, 0.15)" | "hsla(0, 0%, 100%, 0.25)" | "rgba(255, 255, 255, 0.06)"
|
|
27
|
+
}) => "transparent" | "hsla(0, 0%, 100%, 0.15)" | "hsla(0, 0%, 100%, 0.25)" | "rgba(255, 255, 255, 0.06)";
|
|
@@ -8,7 +8,6 @@ const no_react_1 = require("remotion/no-react");
|
|
|
8
8
|
const restart_studio_1 = require("../api/restart-studio");
|
|
9
9
|
const NotificationCenter_1 = require("../components/Notifications/NotificationCenter");
|
|
10
10
|
const SizeSelector_1 = require("../components/SizeSelector");
|
|
11
|
-
const TimeValue_1 = require("../components/TimeValue");
|
|
12
11
|
const TimelineInOutToggle_1 = require("../components/TimelineInOutToggle");
|
|
13
12
|
const layout_1 = require("../components/layout");
|
|
14
13
|
const ShortcutHint_1 = require("../error-overlay/remotion-overlay/ShortcutHint");
|
|
@@ -507,7 +506,7 @@ const useMenuStructure = (closeMenu, readOnlyStudio) => {
|
|
|
507
506
|
onClick: () => {
|
|
508
507
|
var _a;
|
|
509
508
|
closeMenu();
|
|
510
|
-
(_a =
|
|
509
|
+
(_a = remotion_1.Internals.timeValueRef.current) === null || _a === void 0 ? void 0 : _a.goToFrame();
|
|
511
510
|
},
|
|
512
511
|
subMenu: null,
|
|
513
512
|
type: 'item',
|
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.260",
|
|
7
7
|
"description": "APIs for interacting with the Remotion Studio",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"memfs": "3.4.3",
|
|
19
19
|
"source-map": "0.7.3",
|
|
20
20
|
"open": "^8.4.2",
|
|
21
|
-
"
|
|
22
|
-
"remotion": "4.0.
|
|
23
|
-
"@remotion/
|
|
24
|
-
"@remotion/renderer": "4.0.
|
|
25
|
-
"@remotion/media-parser": "4.0.
|
|
26
|
-
"@remotion/
|
|
21
|
+
"remotion": "4.0.260",
|
|
22
|
+
"@remotion/player": "4.0.260",
|
|
23
|
+
"@remotion/media-utils": "4.0.260",
|
|
24
|
+
"@remotion/renderer": "4.0.260",
|
|
25
|
+
"@remotion/media-parser": "4.0.260",
|
|
26
|
+
"@remotion/studio-shared": "4.0.260"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "19.0.0",
|
|
30
30
|
"react-dom": "19.0.0",
|
|
31
31
|
"@types/semver": "^7.3.4",
|
|
32
32
|
"zod": "3.22.3",
|
|
33
|
-
"eslint": "9.
|
|
34
|
-
"@remotion/zod-types": "4.0.
|
|
35
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
33
|
+
"eslint": "9.19.0",
|
|
34
|
+
"@remotion/zod-types": "4.0.260",
|
|
35
|
+
"@remotion/eslint-config-internal": "4.0.260"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|