@remotion/player 3.0.31 → 3.1.0

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/Player.js +1 -1
  2. package/package.json +3 -3
package/dist/Player.js CHANGED
@@ -59,7 +59,7 @@ const PlayerFn = ({ durationInFrames, compositionHeight, compositionWidth, fps,
59
59
  remotion_1.Internals.validateDimension(compositionHeight, 'compositionHeight', 'of the <Player /> component');
60
60
  remotion_1.Internals.validateDimension(compositionWidth, 'compositionWidth', 'of the <Player /> component');
61
61
  remotion_1.Internals.validateDurationInFrames(durationInFrames, 'of the <Player/> component');
62
- remotion_1.Internals.validateFps(fps, 'as a prop of the <Player/> component');
62
+ remotion_1.Internals.validateFps(fps, 'as a prop of the <Player/> component', null);
63
63
  if (typeof controls !== 'boolean' && typeof controls !== 'undefined') {
64
64
  throw new TypeError(`'controls' must be a boolean or undefined but got '${typeof controls}' instead`);
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/player",
3
- "version": "3.0.31",
3
+ "version": "3.1.0",
4
4
  "description": "Remotion Player",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -28,7 +28,7 @@
28
28
  ],
29
29
  "license": "SEE LICENSE IN LICENSE.md",
30
30
  "dependencies": {
31
- "remotion": "3.0.31"
31
+ "remotion": "3.1.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": ">=16.8.0",
@@ -63,5 +63,5 @@
63
63
  "publishConfig": {
64
64
  "access": "public"
65
65
  },
66
- "gitHead": "9342296ce1634b8b7b6dbdaee810a961f6922516"
66
+ "gitHead": "482c66127662171577aa427f10fe265fa1bc933b"
67
67
  }