remotion 4.0.114 → 4.0.115

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.
@@ -1,6 +1,6 @@
1
1
  import type { ForwardRefExoticComponent, RefAttributes } from 'react';
2
2
  import React from 'react';
3
- export declare const AudioForDevelopment: ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "nonce" | "onEnded" | "onResize" | "onResizeCapture" | "autoPlay" | "controls"> & {
3
+ export declare const AudioForDevelopment: ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "autoPlay" | "controls" | "onEnded" | "nonce" | "onResize" | "onResizeCapture"> & {
4
4
  name?: string | undefined;
5
5
  volume?: import("../volume-prop.js").VolumeProp | undefined;
6
6
  playbackRate?: number | undefined;
@@ -0,0 +1,5 @@
1
+ export declare const useBufferState: () => {
2
+ delayPlayback: () => {
3
+ unblock: () => void;
4
+ };
5
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useBufferState = void 0;
4
+ const react_1 = require("react");
5
+ const buffering_1 = require("./buffering");
6
+ const CanUseRemotionHooks_1 = require("./CanUseRemotionHooks");
7
+ const useBufferState = () => {
8
+ const canUseRemotionHooks = (0, react_1.useContext)(CanUseRemotionHooks_1.CanUseRemotionHooks);
9
+ if (!canUseRemotionHooks) {
10
+ if (typeof window !== 'undefined' && window.remotion_isPlayer) {
11
+ throw new Error(`useCurrentFrame can only be called inside a component that was passed to <Player>. See: https://www.remotion.dev/docs/player/examples`);
12
+ }
13
+ throw new Error(`useCurrentFrame() can only be called inside a component that was registered as a composition. See https://www.remotion.dev/docs/the-fundamentals#defining-compositions`);
14
+ }
15
+ const buffer = (0, react_1.useContext)(buffering_1.BufferingContextReact);
16
+ if (!buffer) {
17
+ throw new Error('BufferingContextReact was unexpectedly not found. Most likely your Remotion versions are mismatching.');
18
+ }
19
+ return (0, react_1.useMemo)(() => ({
20
+ delayPlayback: () => {
21
+ const { unblock } = buffer.addBlock({
22
+ id: String(Math.random()),
23
+ });
24
+ return { unblock };
25
+ },
26
+ }), [buffer]);
27
+ };
28
+ exports.useBufferState = useBufferState;
@@ -1 +1 @@
1
- export declare const VERSION = "4.0.114";
1
+ export declare const VERSION = "4.0.115";
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // Automatically generated on publish
5
- exports.VERSION = '4.0.114';
5
+ exports.VERSION = '4.0.115';
@@ -1,6 +1,6 @@
1
1
  import type { ForwardRefExoticComponent, RefAttributes } from 'react';
2
2
  import React from 'react';
3
- export declare const VideoForDevelopment: ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "nonce" | "onEnded" | "autoPlay" | "controls"> & {
3
+ export declare const VideoForDevelopment: ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "autoPlay" | "controls" | "onEnded" | "nonce"> & {
4
4
  name?: string | undefined;
5
5
  volume?: import("../volume-prop.js").VolumeProp | undefined;
6
6
  playbackRate?: number | undefined;
@@ -105,7 +105,7 @@ function truthy(value) {
105
105
  }
106
106
 
107
107
  // Automatically generated on publish
108
- const VERSION = '4.0.114';
108
+ const VERSION = '4.0.115';
109
109
 
110
110
  const checkMultipleRemotionVersions = () => {
111
111
  if (typeof globalThis === 'undefined') {
@@ -1,4 +1,4 @@
1
1
  // Automatically generated on publish
2
- const VERSION = '4.0.114';
2
+ const VERSION = '4.0.115';
3
3
 
4
4
  export { VERSION };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remotion",
3
- "version": "4.0.114",
3
+ "version": "4.0.115",
4
4
  "description": "Render videos in React",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/cjs/index.d.ts",
@@ -1 +0,0 @@
1
- export declare const getTimelineClipName: (children: React.ReactNode) => string;
@@ -1,25 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getTimelineClipName = void 0;
4
- const react_1 = require("react");
5
- const HIDDEN_NAMES = ['__WEBPACK_DEFAULT_EXPORT__'];
6
- const getTimelineClipName = (children) => {
7
- var _a;
8
- const tree = (_a = react_1.Children.map(children, (ch) => {
9
- if (!(0, react_1.isValidElement)(ch)) {
10
- return null;
11
- }
12
- // Must be name, not ID
13
- const name = typeof ch.type !== 'string' && ch.type.name;
14
- if (name && !HIDDEN_NAMES.includes(name)) {
15
- return name;
16
- }
17
- if (ch.props.children) {
18
- const chName = (0, exports.getTimelineClipName)(ch.props.children);
19
- return chName;
20
- }
21
- return null;
22
- })) === null || _a === void 0 ? void 0 : _a.filter(Boolean);
23
- return (tree === null || tree === void 0 ? void 0 : tree.length) ? tree[0] : '';
24
- };
25
- exports.getTimelineClipName = getTimelineClipName;