@remotion/three 3.0.4 → 3.0.7

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.
@@ -2,4 +2,3 @@ import React from 'react';
2
2
  export declare const SuspenseLoader: React.FC<{
3
3
  children: React.ReactNode;
4
4
  }>;
5
- //# sourceMappingURL=SuspenseLoader.d.ts.map
@@ -17,4 +17,3 @@ const SuspenseLoader = ({ children }) => {
17
17
  return (0, jsx_runtime_1.jsx)(react_1.Suspense, { fallback: (0, jsx_runtime_1.jsx)(Unblocker, {}, void 0), children: children }, void 0);
18
18
  };
19
19
  exports.SuspenseLoader = SuspenseLoader;
20
- //# sourceMappingURL=SuspenseLoader.js.map
@@ -6,4 +6,3 @@ export declare type ThreeCanvasProps = React.ComponentProps<typeof Canvas> & {
6
6
  children: React.ReactNode;
7
7
  };
8
8
  export declare const ThreeCanvas: (props: ThreeCanvasProps) => JSX.Element;
9
- //# sourceMappingURL=ThreeCanvas.d.ts.map
@@ -34,4 +34,3 @@ const ThreeCanvas = (props) => {
34
34
  return ((0, jsx_runtime_1.jsx)(SuspenseLoader_1.SuspenseLoader, { children: (0, jsx_runtime_1.jsxs)(fiber_1.Canvas, { style: actualStyle, ...rest, onCreated: remotion_onCreated, children: [(0, jsx_runtime_1.jsx)(Scale, { width: width, height: height }, void 0), (0, jsx_runtime_1.jsx)(remotion_1.Internals.RemotionContextProvider, { contexts: contexts, children: children }, void 0)] }, void 0) }, void 0));
35
35
  };
36
36
  exports.ThreeCanvas = ThreeCanvas;
37
- //# sourceMappingURL=ThreeCanvas.js.map
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  export { ThreeCanvas, ThreeCanvasProps } from './ThreeCanvas';
2
2
  export { useVideoTexture, UseVideoTextureOptions } from './use-video-texture';
3
- //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -5,4 +5,3 @@ var ThreeCanvas_1 = require("./ThreeCanvas");
5
5
  Object.defineProperty(exports, "ThreeCanvas", { enumerable: true, get: function () { return ThreeCanvas_1.ThreeCanvas; } });
6
6
  var use_video_texture_1 = require("./use-video-texture");
7
7
  Object.defineProperty(exports, "useVideoTexture", { enumerable: true, get: function () { return use_video_texture_1.useVideoTexture; } });
8
- //# sourceMappingURL=index.js.map
@@ -8,4 +8,3 @@ declare global {
8
8
  }
9
9
  export declare type UseVideoTextureOptions = React.ComponentProps<typeof Video>;
10
10
  export declare const useVideoTexture: (videoRef: React.RefObject<HTMLVideoElement>) => VideoTexture | null;
11
- //# sourceMappingURL=use-video-texture.d.ts.map
@@ -80,4 +80,3 @@ const useVideoTexture = (videoRef) => {
80
80
  return videoTexture;
81
81
  };
82
82
  exports.useVideoTexture = useVideoTexture;
83
- //# sourceMappingURL=use-video-texture.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/three",
3
- "version": "3.0.4",
3
+ "version": "3.0.7",
4
4
  "description": "Utility functions for using react-three-fiber with remotion",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "url": "https://github.com/remotion-dev/remotion/issues"
21
21
  },
22
22
  "dependencies": {
23
- "remotion": "3.0.4"
23
+ "remotion": "3.0.7"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@react-three/fiber": ">=7.0.19",
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "fe6cd08c090ed8aa6c2a1b610851c0ab97749a2c"
57
+ "gitHead": "e44469b9a64608db9bec219339bf93a0ac6e9655"
58
58
  }