@remotion/studio 4.0.149 → 4.0.150

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
  export declare const getCheckerboardBackgroundSize: (size: number) => string;
2
2
  export declare const getCheckerboardBackgroundPos: (size: number) => string;
3
- export declare const checkerboardBackgroundColor: (checkerboard: boolean) => "white" | "black";
3
+ export declare const checkerboardBackgroundColor: (checkerboard: boolean) => "black" | "white";
4
4
  export declare const checkerboardBackgroundImage: (checkerboard: boolean) => "\n linear-gradient(\n 45deg,\n rgba(0, 0, 0, 0.1) 25%,\n transparent 25%\n ),\n linear-gradient(135deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),\n linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%),\n linear-gradient(135deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%)\n " | undefined;
@@ -23,4 +23,4 @@ export declare const TIMELINE_TRACK_SEPARATOR = "rgba(0, 0, 0, 0.3)";
23
23
  export declare const getBackgroundFromHoverState: ({ selected, hovered, }: {
24
24
  selected: boolean;
25
25
  hovered: boolean;
26
- }) => "transparent" | "hsla(0, 0%, 100%, 0.25)" | "hsla(0, 0%, 100%, 0.15)" | "rgba(255, 255, 255, 0.06)";
26
+ }) => "hsla(0, 0%, 100%, 0.15)" | "hsla(0, 0%, 100%, 0.25)" | "rgba(255, 255, 255, 0.06)" | "transparent";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/studio",
3
- "version": "4.0.149",
3
+ "version": "4.0.150",
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.149",
22
- "@remotion/player": "4.0.149",
23
- "@remotion/media-utils": "4.0.149",
24
- "@remotion/renderer": "4.0.149",
25
- "@remotion/studio-shared": "4.0.149"
21
+ "remotion": "4.0.150",
22
+ "@remotion/player": "4.0.150",
23
+ "@remotion/renderer": "4.0.150",
24
+ "@remotion/studio-shared": "4.0.150",
25
+ "@remotion/media-utils": "4.0.150"
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.149"
42
+ "@remotion/zod-types": "4.0.150"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "scripts": {
64
64
  "lint": "eslint src --ext ts,tsx",
65
- "build": "bun bundle.ts",
65
+ "build": "bun --env-file=../.env.bundle bundle.ts",
66
66
  "test": "bun test src",
67
67
  "formatting": "prettier src --check"
68
68
  }