remotion 4.0.65 → 4.0.66
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
|
@@ -57,7 +57,7 @@ function spring({ frame: passedFrame, fps, config = {}, from = 0, to = 1, durati
|
|
|
57
57
|
const durationProcessed = passedDurationInFrames === undefined
|
|
58
58
|
? delayProcessed
|
|
59
59
|
: delayProcessed / (passedDurationInFrames / naturalDurationGetter.get());
|
|
60
|
-
if (passedDurationInFrames &&
|
|
60
|
+
if (passedDurationInFrames && delayProcessed > passedDurationInFrames) {
|
|
61
61
|
return to;
|
|
62
62
|
}
|
|
63
63
|
const spr = (0, spring_utils_js_1.springCalculation)({
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.0.
|
|
1
|
+
export declare const VERSION = "4.0.66";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/index.mjs
CHANGED
|
@@ -59,7 +59,7 @@ function truthy(value) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
// Automatically generated on publish
|
|
62
|
-
const VERSION = '4.0.
|
|
62
|
+
const VERSION = '4.0.66';
|
|
63
63
|
|
|
64
64
|
const checkMultipleRemotionVersions = () => {
|
|
65
65
|
if (typeof globalThis === 'undefined') {
|
|
@@ -4391,7 +4391,7 @@ function spring({ frame: passedFrame, fps, config = {}, from = 0, to = 1, durati
|
|
|
4391
4391
|
const durationProcessed = passedDurationInFrames === undefined
|
|
4392
4392
|
? delayProcessed
|
|
4393
4393
|
: delayProcessed / (passedDurationInFrames / naturalDurationGetter.get());
|
|
4394
|
-
if (passedDurationInFrames &&
|
|
4394
|
+
if (passedDurationInFrames && delayProcessed > passedDurationInFrames) {
|
|
4395
4395
|
return to;
|
|
4396
4396
|
}
|
|
4397
4397
|
const spr = springCalculation({
|
package/dist/esm/version.mjs
CHANGED