@remotion/studio 4.0.464 → 4.0.465

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.
@@ -207,7 +207,7 @@ var renderContent = (Root) => {
207
207
  renderToDOM(/* @__PURE__ */ jsx("div", {
208
208
  children: /* @__PURE__ */ jsx(DelayedSpinner, {})
209
209
  }));
210
- import("./chunk-mawnnpzg.js").then(({ StudioInternals }) => {
210
+ import("./chunk-pqk2qd0d.js").then(({ StudioInternals }) => {
211
211
  window.remotion_isStudio = true;
212
212
  window.remotion_isReadOnlyStudio = true;
213
213
  window.remotion_inputProps = "{}";
@@ -0,0 +1,3 @@
1
+ import type { SymbolicatedStackFrame } from '@remotion/studio-shared';
2
+ import type { ResolvedStackLocation } from 'remotion';
3
+ export declare const resolvedStackToSymbolicated: (location: ResolvedStackLocation | null) => SymbolicatedStackFrame | null;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resolvedStackToSymbolicated = void 0;
4
+ const resolvedStackToSymbolicated = (location) => {
5
+ if (!(location === null || location === void 0 ? void 0 : location.source)) {
6
+ return null;
7
+ }
8
+ return {
9
+ originalFileName: location.source,
10
+ originalLineNumber: location.line,
11
+ originalColumnNumber: location.column,
12
+ originalFunctionName: null,
13
+ originalScriptCode: null,
14
+ };
15
+ };
16
+ exports.resolvedStackToSymbolicated = resolvedStackToSymbolicated;
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.464",
6
+ "version": "4.0.465",
7
7
  "description": "APIs for interacting with the Remotion Studio",
8
8
  "main": "dist",
9
9
  "scripts": {
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "semver": "7.5.3",
28
- "remotion": "4.0.464",
29
- "@remotion/player": "4.0.464",
30
- "@remotion/media-utils": "4.0.464",
31
- "@remotion/renderer": "4.0.464",
32
- "@remotion/web-renderer": "4.0.464",
33
- "@remotion/studio-shared": "4.0.464",
34
- "@remotion/timeline-utils": "4.0.464",
35
- "@remotion/zod-types": "4.0.464",
28
+ "remotion": "4.0.465",
29
+ "@remotion/player": "4.0.465",
30
+ "@remotion/media-utils": "4.0.465",
31
+ "@remotion/renderer": "4.0.465",
32
+ "@remotion/web-renderer": "4.0.465",
33
+ "@remotion/studio-shared": "4.0.465",
34
+ "@remotion/timeline-utils": "4.0.465",
35
+ "@remotion/zod-types": "4.0.465",
36
36
  "@jridgewell/trace-mapping": "0.3.31",
37
37
  "mediabunny": "1.45.0",
38
38
  "memfs": "3.4.3",
@@ -43,7 +43,7 @@
43
43
  "react": "19.2.3",
44
44
  "react-dom": "19.2.3",
45
45
  "@types/semver": "7.5.3",
46
- "@remotion/eslint-config-internal": "4.0.464",
46
+ "@remotion/eslint-config-internal": "4.0.465",
47
47
  "eslint": "9.19.0",
48
48
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
49
49
  },