@remotion/shapes 4.0.432 → 4.0.434

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.
@@ -81,7 +81,9 @@ const RenderSvg = ({ width, height, path, style, pathStyle, transformOrigin, deb
81
81
  }
82
82
  const prevX = prevInstruction.x;
83
83
  const prevY = prevInstruction.y;
84
- return (jsx_runtime_1.jsxs(react_1.default.Fragment, { children: [
84
+ return (
85
+ // eslint-disable-next-line react/no-array-index-key
86
+ jsx_runtime_1.jsxs(react_1.default.Fragment, { children: [
85
87
  jsx_runtime_1.jsx("path", { d: `M ${prevX} ${prevY} ${i.cp1x} ${i.cp1y}`, strokeWidth: 2, stroke: "rgba(0, 0, 0, 0.4)" }), jsx_runtime_1.jsx("path", { d: `M ${i.x} ${i.y} ${i.cp2x} ${i.cp2y}`, strokeWidth: 2, stroke: "rgba(0, 0, 0, 0.4)" }), jsx_runtime_1.jsx("circle", { cx: i.cp1x, cy: i.cp1y, r: 3, fill: "white", strokeWidth: 2, stroke: "black" }), jsx_runtime_1.jsx("circle", { cx: i.cp2x, cy: i.cp2y, r: 3, strokeWidth: 2, fill: "white", stroke: "black" })
86
88
  ] }, index));
87
89
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/shapes"
4
4
  },
5
5
  "name": "@remotion/shapes",
6
- "version": "4.0.432",
6
+ "version": "4.0.434",
7
7
  "description": "Generate SVG shapes",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -35,9 +35,9 @@
35
35
  "react": "19.2.3",
36
36
  "react-dom": "19.2.3",
37
37
  "@happy-dom/global-registrator": "14.5.1",
38
- "@remotion/eslint-config-internal": "4.0.432",
38
+ "@remotion/eslint-config-internal": "4.0.434",
39
39
  "eslint": "9.19.0",
40
- "@typescript/native-preview": "7.0.0-dev.20260301.1"
40
+ "@typescript/native-preview": "7.0.0-dev.20260217.1"
41
41
  },
42
42
  "keywords": [
43
43
  "svg",
@@ -52,7 +52,7 @@
52
52
  "react-dom": ">=16.8.0"
53
53
  },
54
54
  "dependencies": {
55
- "@remotion/paths": "4.0.432"
55
+ "@remotion/paths": "4.0.434"
56
56
  },
57
57
  "homepage": "https://www.remotion.dev/docs/shapes"
58
58
  }