@remotion/web-renderer 4.0.456 → 4.0.458

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 (2) hide show
  1. package/dist/esm/index.mjs +1 -1
  2. package/package.json +10 -10
@@ -1636,7 +1636,7 @@ var turnSvgIntoDrawable = (svg) => {
1636
1636
  svg.style.color = originalColor;
1637
1637
  return new Promise((resolve, reject) => {
1638
1638
  const image = new Image;
1639
- const url = `data:image/svg+xml;base64,${btoa(svgData)}`;
1639
+ const url = `data:image/svg+xml;charset=utf-8,${encodeURIComponent(svgData)}`;
1640
1640
  image.onload = function() {
1641
1641
  resolve(image);
1642
1642
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/web-renderer"
4
4
  },
5
5
  "name": "@remotion/web-renderer",
6
- "version": "4.0.456",
6
+ "version": "4.0.458",
7
7
  "main": "dist/index.js",
8
8
  "type": "module",
9
9
  "scripts": {
@@ -22,19 +22,19 @@
22
22
  "@mediabunny/mp3-encoder": "1.42.0",
23
23
  "@mediabunny/aac-encoder": "1.42.0",
24
24
  "@mediabunny/flac-encoder": "1.42.0",
25
- "@remotion/licensing": "4.0.456",
26
- "remotion": "4.0.456",
25
+ "@remotion/licensing": "4.0.458",
26
+ "remotion": "4.0.458",
27
27
  "mediabunny": "1.42.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@react-three/fiber": "9.2.0",
31
- "@remotion/eslint-config-internal": "4.0.456",
32
- "@remotion/paths": "4.0.456",
33
- "@remotion/player": "4.0.456",
34
- "@remotion/media": "4.0.456",
35
- "@remotion/shapes": "4.0.456",
36
- "@remotion/three": "4.0.456",
37
- "@remotion/transitions": "4.0.456",
31
+ "@remotion/eslint-config-internal": "4.0.458",
32
+ "@remotion/paths": "4.0.458",
33
+ "@remotion/player": "4.0.458",
34
+ "@remotion/media": "4.0.458",
35
+ "@remotion/shapes": "4.0.458",
36
+ "@remotion/three": "4.0.458",
37
+ "@remotion/transitions": "4.0.458",
38
38
  "@types/three": "0.170.0",
39
39
  "@typescript/native-preview": "7.0.0-dev.20260217.1",
40
40
  "@vitejs/plugin-react": "4.3.4",