@remotion/cli 4.0.79 → 4.0.81
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/cloudrun-command.js +3 -4
- package/dist/config/image-format.d.ts +1 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/config/index.js +3 -4
- package/dist/download-progress.d.ts +1 -1
- package/dist/download-progress.js +2 -2
- package/dist/editor/components/NewComposition/RemInput.d.ts +1 -1
- package/dist/editor/components/RenderModal/SchemaEditor/ZodArrayEditor.js +2 -1
- package/dist/editor/helpers/colors.d.ts +1 -1
- package/dist/get-cli-options.d.ts +2 -2
- package/dist/get-composition-id.js +2 -2
- package/dist/get-env.js +2 -2
- package/dist/get-render-defaults.d.ts +2 -0
- package/dist/get-render-defaults.js +71 -0
- package/dist/index.d.ts +9 -9
- package/dist/index.js +4 -4
- package/dist/lambda-command.js +3 -4
- package/dist/list-of-remotion-packages.js +1 -0
- package/dist/make-on-download.d.ts +1 -1
- package/dist/make-on-download.js +4 -2
- package/dist/progress-bar.d.ts +1 -9
- package/dist/progress-bar.js +3 -4
- package/dist/progress-types.d.ts +1 -31
- package/dist/render-flows/render.d.ts +1 -1
- package/dist/render-flows/still.d.ts +1 -1
- package/dist/render-queue/process-still.d.ts +8 -0
- package/dist/render-queue/process-still.js +49 -0
- package/dist/render-queue/process-video.d.ts +10 -0
- package/dist/render-queue/process-video.js +70 -0
- package/dist/render-queue/queue.d.ts +11 -0
- package/dist/render-queue/queue.js +220 -0
- package/dist/setup-cache.d.ts +1 -1
- package/dist/studio.js +30 -102
- package/dist/upgrade.js +4 -5
- package/dist/user-passed-output-location.js +2 -2
- package/package.json +10 -14
- package/styles/styles.css +0 -123
- package/types/global.d.ts +0 -4
- package/web/favicon.png +0 -0
package/styles/styles.css
DELETED
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
html {
|
|
2
|
-
--remotion-cli-internals-blue: #0b84f3;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
body {
|
|
6
|
-
overscroll-behavior-y: none;
|
|
7
|
-
overscroll-behavior-x: none;
|
|
8
|
-
/* Override Chakra UI position: relative on body */
|
|
9
|
-
position: static !important;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.remotion-splitter {
|
|
13
|
-
user-select: none;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.remotion-splitter-horizontal {
|
|
17
|
-
transform: scaleY(2);
|
|
18
|
-
background: linear-gradient(
|
|
19
|
-
to bottom,
|
|
20
|
-
transparent 25%,
|
|
21
|
-
black 25%,
|
|
22
|
-
black 75%,
|
|
23
|
-
transparent
|
|
24
|
-
);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.remotion-splitter-horizontal:hover,
|
|
28
|
-
.remotion-splitter-horizontal.remotion-splitter-active {
|
|
29
|
-
background: linear-gradient(
|
|
30
|
-
to bottom,
|
|
31
|
-
var(--remotion-cli-internals-blue),
|
|
32
|
-
var(--remotion-cli-internals-blue)
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.remotion-splitter-vertical {
|
|
37
|
-
transform: scaleX(2);
|
|
38
|
-
background: linear-gradient(
|
|
39
|
-
to right,
|
|
40
|
-
transparent 25%,
|
|
41
|
-
black 25%,
|
|
42
|
-
black 75%,
|
|
43
|
-
transparent
|
|
44
|
-
);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.remotion-splitter-vertical:hover,
|
|
48
|
-
.remotion-splitter-vertical.remotion-splitter-active {
|
|
49
|
-
background: linear-gradient(
|
|
50
|
-
to right,
|
|
51
|
-
var(--remotion-cli-internals-blue),
|
|
52
|
-
var(--remotion-cli-internals-blue)
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
input::-webkit-outer-spin-button,
|
|
57
|
-
input::-webkit-inner-spin-button {
|
|
58
|
-
-webkit-appearance: none;
|
|
59
|
-
margin: 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
input:focus,
|
|
63
|
-
textarea:focus,
|
|
64
|
-
button:focus,
|
|
65
|
-
a:focus {
|
|
66
|
-
outline: none;
|
|
67
|
-
box-shadow:
|
|
68
|
-
inset 1px 1px #555,
|
|
69
|
-
inset -1px -1px #555,
|
|
70
|
-
inset 1px -1px #555,
|
|
71
|
-
inset -1px 1px #555;
|
|
72
|
-
border-radius: 0 !important;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
input[type='color'].__remotion_color_picker::-webkit-color-swatch-wrapper {
|
|
76
|
-
padding: 0;
|
|
77
|
-
}
|
|
78
|
-
input[type='color'].__remotion_color_picker::-webkit-color-swatch {
|
|
79
|
-
border: none;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.__remotion_thumb,
|
|
83
|
-
.__remotion_thumb::-webkit-slider-thumb {
|
|
84
|
-
-webkit-appearance: none;
|
|
85
|
-
-webkit-tap-highlight-color: transparent;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.__remotion_thumb {
|
|
89
|
-
pointer-events: none;
|
|
90
|
-
position: absolute;
|
|
91
|
-
height: 0;
|
|
92
|
-
outline: none;
|
|
93
|
-
top: 15.5px;
|
|
94
|
-
width: 221px;
|
|
95
|
-
margin-left: -2px;
|
|
96
|
-
z-index: 2;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* For Firefox browsers */
|
|
100
|
-
.__remotion_thumb::-moz-range-thumb {
|
|
101
|
-
border: 1px solid black;
|
|
102
|
-
border-radius: 2px;
|
|
103
|
-
cursor: pointer;
|
|
104
|
-
height: 37px;
|
|
105
|
-
width: 10px;
|
|
106
|
-
pointer-events: all;
|
|
107
|
-
border-color: black;
|
|
108
|
-
background-color: white;
|
|
109
|
-
position: relative;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
/* For Chrome browsers */
|
|
113
|
-
.__remotion_thumb::-webkit-slider-thumb {
|
|
114
|
-
border: 1px solid black;
|
|
115
|
-
border-radius: 2px;
|
|
116
|
-
cursor: pointer;
|
|
117
|
-
height: 39px;
|
|
118
|
-
width: 10px;
|
|
119
|
-
pointer-events: all;
|
|
120
|
-
border-color: black;
|
|
121
|
-
background-color: white;
|
|
122
|
-
position: relative;
|
|
123
|
-
}
|
package/types/global.d.ts
DELETED
package/web/favicon.png
DELETED
|
Binary file
|