@remotion/studio 4.0.147 → 4.0.149

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.147 build /Users/jonathanburger/remotion/packages/studio
3
- > tsc -d && bun bundle.ts
2
+ > @remotion/studio@4.0.148 build /Users/jonathanburger/remotion/packages/studio
3
+ > bun bundle.ts
4
4
 
@@ -12,6 +12,6 @@ export declare const getInputBorderColor: ({ status, isFocused, isHovered, }: {
12
12
  status: 'error' | 'warning' | 'ok';
13
13
  isFocused: boolean;
14
14
  isHovered: boolean;
15
- }) => "hsla(0, 0%, 100%, 0.15)" | "rgba(0, 0, 0, 0.6)" | "rgba(255, 255, 255, 0.05)" | "#ff3232" | "#f1c40f";
15
+ }) => "hsla(0, 0%, 100%, 0.15)" | "#ff3232" | "#f1c40f" | "rgba(0, 0, 0, 0.6)" | "rgba(255, 255, 255, 0.05)";
16
16
  export declare const RemotionInput: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<HTMLInputElement>>;
17
17
  export {};
@@ -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) => "black" | "white";
3
+ export declare const checkerboardBackgroundColor: (checkerboard: boolean) => "white" | "black";
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.15)" | "hsla(0, 0%, 100%, 0.25)" | "rgba(255, 255, 255, 0.06)";
26
+ }) => "transparent" | "hsla(0, 0%, 100%, 0.25)" | "hsla(0, 0%, 100%, 0.15)" | "rgba(255, 255, 255, 0.06)";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/studio",
3
- "version": "4.0.147",
3
+ "version": "4.0.149",
4
4
  "description": "Remotion Editor",
5
5
  "main": "dist",
6
6
  "sideEffects": false,
@@ -18,19 +18,19 @@
18
18
  "memfs": "3.4.3",
19
19
  "source-map": "0.7.3",
20
20
  "open": "^8.4.2",
21
- "remotion": "4.0.147",
22
- "@remotion/player": "4.0.147",
23
- "@remotion/renderer": "4.0.147",
24
- "@remotion/media-utils": "4.0.147",
25
- "@remotion/studio-shared": "4.0.147"
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"
26
26
  },
27
27
  "devDependencies": {
28
- "react": "18.2.0",
29
- "react-dom": "18.2.0",
28
+ "react": "18.3.1",
29
+ "react-dom": "18.3.1",
30
30
  "@jonny/eslint-config": "3.0.281",
31
31
  "@types/node": "18.14.6",
32
- "@types/react": "18.2.48",
33
- "@types/react-dom": "18.2.18",
32
+ "@types/react": "18.3.1",
33
+ "@types/react-dom": "18.3.0",
34
34
  "eslint": "8.56.0",
35
35
  "eslint-plugin-10x": "1.5.2",
36
36
  "eslint-plugin-react": "7.32.2",
@@ -38,8 +38,8 @@
38
38
  "prettier": "3.2.5",
39
39
  "@types/semver": "^7.3.4",
40
40
  "prettier-plugin-organize-imports": "3.2.4",
41
- "zod": "^3.22.3",
42
- "@remotion/zod-types": "4.0.147"
41
+ "zod": "3.22.3",
42
+ "@remotion/zod-types": "4.0.149"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
@@ -62,8 +62,7 @@
62
62
  },
63
63
  "scripts": {
64
64
  "lint": "eslint src --ext ts,tsx",
65
- "watch": "tsc -w",
66
- "build": "tsc -d && bun bundle.ts",
65
+ "build": "bun bundle.ts",
67
66
  "test": "bun test src",
68
67
  "formatting": "prettier src --check"
69
68
  }