remotion 3.3.102 → 3.3.103
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/spring/index.js +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/spring/index.js
CHANGED
|
@@ -52,7 +52,7 @@ function spring({ frame: passedFrame, fps, config = {}, from = 0, to = 1, durati
|
|
|
52
52
|
};
|
|
53
53
|
const frame = (reverse
|
|
54
54
|
? (passedDurationInFrames !== null && passedDurationInFrames !== void 0 ? passedDurationInFrames : naturalDurationGetter.get()) - passedFrame
|
|
55
|
-
: passedFrame) - delay;
|
|
55
|
+
: passedFrame) - (reverse ? -delay : delay);
|
|
56
56
|
const spr = (0, spring_utils_js_1.springCalculation)({
|
|
57
57
|
fps,
|
|
58
58
|
frame: passedDurationInFrames === undefined
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.3.
|
|
1
|
+
export declare const VERSION = "3.3.103";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/index.mjs
CHANGED
|
@@ -58,7 +58,7 @@ function truthy(value) {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
// Automatically generated on publish
|
|
61
|
-
const VERSION = '3.3.
|
|
61
|
+
const VERSION = '3.3.103';
|
|
62
62
|
|
|
63
63
|
const checkMultipleRemotionVersions = () => {
|
|
64
64
|
if (typeof globalThis === 'undefined') {
|
|
@@ -3625,7 +3625,7 @@ function spring({ frame: passedFrame, fps, config = {}, from = 0, to = 1, durati
|
|
|
3625
3625
|
};
|
|
3626
3626
|
const frame = (reverse
|
|
3627
3627
|
? (passedDurationInFrames !== null && passedDurationInFrames !== void 0 ? passedDurationInFrames : naturalDurationGetter.get()) - passedFrame
|
|
3628
|
-
: passedFrame) - delay;
|
|
3628
|
+
: passedFrame) - (reverse ? -delay : delay);
|
|
3629
3629
|
const spr = springCalculation({
|
|
3630
3630
|
fps,
|
|
3631
3631
|
frame: passedDurationInFrames === undefined
|
package/dist/esm/version.mjs
CHANGED