remotion 4.0.102 → 4.0.104
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/LICENSE.md +1 -1
- package/dist/cjs/portal-node.js +5 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/index.mjs +6 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/LICENSE.md
CHANGED
package/dist/cjs/portal-node.js
CHANGED
|
@@ -17,6 +17,11 @@ const portalNode = () => {
|
|
|
17
17
|
_portalNode.style.height = '100%';
|
|
18
18
|
_portalNode.style.display = 'flex';
|
|
19
19
|
_portalNode.style.flexDirection = 'column';
|
|
20
|
+
const containerNode = document.createElement('div');
|
|
21
|
+
containerNode.style.position = 'fixed';
|
|
22
|
+
containerNode.style.top = -999999 + 'px';
|
|
23
|
+
containerNode.appendChild(_portalNode);
|
|
24
|
+
document.body.appendChild(containerNode);
|
|
20
25
|
}
|
|
21
26
|
return _portalNode;
|
|
22
27
|
};
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "4.0.
|
|
1
|
+
export declare const VERSION = "4.0.104";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/index.mjs
CHANGED
|
@@ -105,7 +105,7 @@ function truthy(value) {
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
// Automatically generated on publish
|
|
108
|
-
const VERSION = '4.0.
|
|
108
|
+
const VERSION = '4.0.104';
|
|
109
109
|
|
|
110
110
|
const checkMultipleRemotionVersions = () => {
|
|
111
111
|
if (typeof globalThis === 'undefined') {
|
|
@@ -2786,6 +2786,11 @@ const portalNode = () => {
|
|
|
2786
2786
|
_portalNode.style.height = '100%';
|
|
2787
2787
|
_portalNode.style.display = 'flex';
|
|
2788
2788
|
_portalNode.style.flexDirection = 'column';
|
|
2789
|
+
const containerNode = document.createElement('div');
|
|
2790
|
+
containerNode.style.position = 'fixed';
|
|
2791
|
+
containerNode.style.top = -999999 + 'px';
|
|
2792
|
+
containerNode.appendChild(_portalNode);
|
|
2793
|
+
document.body.appendChild(containerNode);
|
|
2789
2794
|
}
|
|
2790
2795
|
return _portalNode;
|
|
2791
2796
|
};
|
package/dist/esm/version.mjs
CHANGED