@remotion/studio 4.0.255 → 4.0.256
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/.turbo/turbo-make.log
CHANGED
|
@@ -72,6 +72,7 @@ const InstallPackageModal = ({ packageManager }) => {
|
|
|
72
72
|
'@remotion/skia': false,
|
|
73
73
|
'@remotion/studio': false,
|
|
74
74
|
'@remotion/tailwind': false,
|
|
75
|
+
'@remotion/tailwind-v4': false,
|
|
75
76
|
'@remotion/three': false,
|
|
76
77
|
'@remotion/transitions': false,
|
|
77
78
|
'@remotion/zod-types': false,
|
package/dist/esm/internals.mjs
CHANGED
|
@@ -4886,7 +4886,7 @@ var Spinner = ({ size, duration }) => {
|
|
|
4886
4886
|
/* @__PURE__ */ jsx47("style", {
|
|
4887
4887
|
type: "text/css",
|
|
4888
4888
|
children: `
|
|
4889
|
-
|
|
4889
|
+
@keyframes ${remotionSpinnerAnimation} {
|
|
4890
4890
|
0% {
|
|
4891
4891
|
opacity: 1;
|
|
4892
4892
|
}
|
|
@@ -4898,7 +4898,7 @@ var Spinner = ({ size, duration }) => {
|
|
|
4898
4898
|
.${className} {
|
|
4899
4899
|
animation: ${remotionSpinnerAnimation} ${duration}s linear infinite;
|
|
4900
4900
|
}
|
|
4901
|
-
|
|
4901
|
+
`
|
|
4902
4902
|
}),
|
|
4903
4903
|
/* @__PURE__ */ jsx47("svg", {
|
|
4904
4904
|
style: style2,
|
|
@@ -19515,12 +19515,12 @@ var Inner4 = ({ s, windowWidth }) => {
|
|
|
19515
19515
|
width: premountWidth,
|
|
19516
19516
|
height: "100%",
|
|
19517
19517
|
background: `repeating-linear-gradient(
|
|
19518
|
-
|
|
19519
|
-
|
|
19520
|
-
|
|
19521
|
-
|
|
19522
|
-
|
|
19523
|
-
|
|
19518
|
+
-45deg,
|
|
19519
|
+
transparent,
|
|
19520
|
+
transparent 2px,
|
|
19521
|
+
rgba(255, 255, 255, ${isPremounting ? 0.5 : 0.2}) 2px,
|
|
19522
|
+
rgba(255, 255, 255, ${isPremounting ? 0.5 : 0.2}) 4px
|
|
19523
|
+
)`,
|
|
19524
19524
|
position: "absolute"
|
|
19525
19525
|
}
|
|
19526
19526
|
}) : null,
|
|
@@ -20053,6 +20053,7 @@ var InstallPackageModal = ({ packageManager }) => {
|
|
|
20053
20053
|
"@remotion/skia": false,
|
|
20054
20054
|
"@remotion/studio": false,
|
|
20055
20055
|
"@remotion/tailwind": false,
|
|
20056
|
+
"@remotion/tailwind-v4": false,
|
|
20056
20057
|
"@remotion/three": false,
|
|
20057
20058
|
"@remotion/transitions": false,
|
|
20058
20059
|
"@remotion/zod-types": false,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.256",
|
|
7
7
|
"description": "APIs for interacting with the Remotion Studio",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"memfs": "3.4.3",
|
|
19
19
|
"source-map": "0.7.3",
|
|
20
20
|
"open": "^8.4.2",
|
|
21
|
-
"remotion": "4.0.
|
|
22
|
-
"@remotion/
|
|
23
|
-
"@remotion/
|
|
24
|
-
"@remotion/
|
|
25
|
-
"@remotion/renderer": "4.0.
|
|
26
|
-
"@remotion/
|
|
21
|
+
"remotion": "4.0.256",
|
|
22
|
+
"@remotion/player": "4.0.256",
|
|
23
|
+
"@remotion/media-parser": "4.0.256",
|
|
24
|
+
"@remotion/studio-shared": "4.0.256",
|
|
25
|
+
"@remotion/renderer": "4.0.256",
|
|
26
|
+
"@remotion/media-utils": "4.0.256"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "19.0.0",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"@types/semver": "^7.3.4",
|
|
32
32
|
"zod": "3.22.3",
|
|
33
33
|
"eslint": "9.14.0",
|
|
34
|
-
"@remotion/zod-types": "4.0.
|
|
35
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/zod-types": "4.0.256",
|
|
35
|
+
"@remotion/eslint-config-internal": "4.0.256"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|