@remotion/gif 4.0.476 → 4.0.477

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.
package/dist/cjs/Gif.js CHANGED
@@ -9,7 +9,7 @@ const react_1 = __importDefault(require("react"));
9
9
  const remotion_1 = require("remotion");
10
10
  const GifForDevelopment_1 = require("./GifForDevelopment");
11
11
  const GifForRendering_1 = require("./GifForRendering");
12
- const { addSequenceStackTraces, useMemoizedEffectDefinitions, useMemoizedEffects, wrapInSchema, durationInFramesField, fromField, } = remotion_1.Internals;
12
+ const { addSequenceStackTraces, useMemoizedEffectDefinitions, useMemoizedEffects, wrapInSchema, durationInFramesField, freezeField, fromField, } = remotion_1.Internals;
13
13
  /*
14
14
  * @description Displays a GIF that synchronizes with Remotions useCurrentFrame().
15
15
  * @see [Documentation](https://remotion.dev/docs/gif)
@@ -17,6 +17,7 @@ const { addSequenceStackTraces, useMemoizedEffectDefinitions, useMemoizedEffects
17
17
  const gifSchema = {
18
18
  durationInFrames: durationInFramesField,
19
19
  from: fromField,
20
+ freeze: freezeField,
20
21
  playbackRate: {
21
22
  type: 'number',
22
23
  min: 0,
@@ -61,6 +62,7 @@ const GifInner = ({ src, width, height, onLoad, onError, fit, playbackRate, loop
61
62
  };
62
63
  exports.Gif = wrapInSchema({
63
64
  Component: GifInner,
65
+ componentIdentity: 'dev.remotion.gif.Gif',
64
66
  schema: gifSchema,
65
67
  supportsEffects: true,
66
68
  });
@@ -1439,11 +1439,13 @@ var {
1439
1439
  useMemoizedEffects,
1440
1440
  wrapInSchema,
1441
1441
  durationInFramesField,
1442
+ freezeField,
1442
1443
  fromField
1443
1444
  } = Internals3;
1444
1445
  var gifSchema = {
1445
1446
  durationInFrames: durationInFramesField,
1446
1447
  from: fromField,
1448
+ freeze: freezeField,
1447
1449
  playbackRate: {
1448
1450
  type: "number",
1449
1451
  min: 0,
@@ -1522,6 +1524,7 @@ var GifInner = ({
1522
1524
  };
1523
1525
  var Gif = wrapInSchema({
1524
1526
  Component: GifInner,
1527
+ componentIdentity: "dev.remotion.gif.Gif",
1525
1528
  schema: gifSchema,
1526
1529
  supportsEffects: true
1527
1530
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/gif"
4
4
  },
5
5
  "name": "@remotion/gif",
6
- "version": "4.0.476",
6
+ "version": "4.0.477",
7
7
  "description": "Embed GIFs in a Remotion video",
8
8
  "bugs": {
9
9
  "url": "https://github.com/remotion-dev/remotion/issues"
@@ -30,15 +30,15 @@
30
30
  }
31
31
  },
32
32
  "dependencies": {
33
- "remotion": "4.0.476"
33
+ "remotion": "4.0.477"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@testing-library/react": "16.1.0",
37
- "esbuild": "0.28.0",
37
+ "esbuild": "0.28.1",
38
38
  "react": "19.2.3",
39
39
  "react-dom": "19.2.3",
40
40
  "webpack": "5.105.0",
41
- "@remotion/eslint-config-internal": "4.0.476",
41
+ "@remotion/eslint-config-internal": "4.0.477",
42
42
  "eslint": "9.19.0",
43
43
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
44
44
  },