@remotion/studio 4.0.173 → 4.0.175

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,4 +1,4 @@
1
1
 
2
- > @remotion/studio@4.0.172 build /Users/jonathanburger/remotion/packages/studio
2
+ > @remotion/studio@4.0.174 build /Users/jonathanburger/remotion/packages/studio
3
3
  > bun --env-file=../.env.bundle bundle.ts
4
4
 
@@ -5801,7 +5801,7 @@ var TimelineInOutPointToggle = () => {
5801
5801
  }
5802
5802
  setInAndOutFrames((prev) => {
5803
5803
  const prevInFrame = prev[videoConfig.id]?.inFrame;
5804
- const smallestPossible = prevInFrame === null || prevInFrame === undefined ? (-Infinity) : prevInFrame + 1;
5804
+ const smallestPossible = prevInFrame === null || prevInFrame === undefined ? -Infinity : prevInFrame + 1;
5805
5805
  const selected = Math.max(timelinePosition, smallestPossible);
5806
5806
  if (selected === videoConfig.durationInFrames - 1) {
5807
5807
  return {
@@ -13235,13 +13235,13 @@ var fullWidth6 = {
13235
13235
  var getMinValue = (schema) => {
13236
13236
  const minCheck = schema._def.checks.find((c) => c.kind === "min");
13237
13237
  if (!minCheck) {
13238
- return (-Infinity);
13238
+ return -Infinity;
13239
13239
  }
13240
13240
  if (minCheck.kind !== "min") {
13241
13241
  throw new Error("Expected min check");
13242
13242
  }
13243
13243
  if (!minCheck.inclusive) {
13244
- return (-Infinity);
13244
+ return -Infinity;
13245
13245
  }
13246
13246
  return minCheck.value;
13247
13247
  };
@@ -18137,7 +18137,7 @@ var Inner2 = () => {
18137
18137
  setInOutDragging({
18138
18138
  dragging: "in",
18139
18139
  initialOffset: getClientXWithScroll(e.clientX),
18140
- boundaries: [(-Infinity), outMarker - inMarker]
18140
+ boundaries: [-Infinity, outMarker - inMarker]
18141
18141
  });
18142
18142
  return;
18143
18143
  }
@@ -18146,7 +18146,7 @@ var Inner2 = () => {
18146
18146
  throw new Error("expected outframe");
18147
18147
  }
18148
18148
  const outMarker = get(outFrame);
18149
- const inMarker = inFrame === null ? (-Infinity) : get(inFrame + 1);
18149
+ const inMarker = inFrame === null ? -Infinity : get(inFrame + 1);
18150
18150
  setInOutDragging({
18151
18151
  dragging: "out",
18152
18152
  initialOffset: getClientXWithScroll(e.clientX),
@@ -18357,7 +18357,7 @@ var Inner2 = () => {
18357
18357
  }
18358
18358
  }));
18359
18359
  }
18360
- const minFrame = inFrame === null ? (-Infinity) : inFrame + 1;
18360
+ const minFrame = inFrame === null ? -Infinity : inFrame + 1;
18361
18361
  setInAndOutFrames((prev) => ({
18362
18362
  ...prev,
18363
18363
  [videoConfig.id]: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/studio",
3
- "version": "4.0.173",
3
+ "version": "4.0.175",
4
4
  "description": "Remotion Editor",
5
5
  "main": "dist",
6
6
  "sideEffects": false,
@@ -18,11 +18,11 @@
18
18
  "memfs": "3.4.3",
19
19
  "source-map": "0.7.3",
20
20
  "open": "^8.4.2",
21
- "remotion": "4.0.173",
22
- "@remotion/player": "4.0.173",
23
- "@remotion/renderer": "4.0.173",
24
- "@remotion/media-utils": "4.0.173",
25
- "@remotion/studio-shared": "4.0.173"
21
+ "remotion": "4.0.175",
22
+ "@remotion/media-utils": "4.0.175",
23
+ "@remotion/player": "4.0.175",
24
+ "@remotion/renderer": "4.0.175",
25
+ "@remotion/studio-shared": "4.0.175"
26
26
  },
27
27
  "devDependencies": {
28
28
  "react": "18.3.1",
@@ -39,7 +39,7 @@
39
39
  "@types/semver": "^7.3.4",
40
40
  "prettier-plugin-organize-imports": "3.2.4",
41
41
  "zod": "3.22.3",
42
- "@remotion/zod-types": "4.0.173"
42
+ "@remotion/zod-types": "4.0.175"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"