@remotion/renderer 4.0.305 → 4.0.308
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/client.d.ts +15 -0
- package/dist/esm/client.mjs +349 -311
- package/dist/options/cross-site-isolation.d.ts +15 -0
- package/dist/options/cross-site-isolation.js +29 -0
- package/dist/options/index.d.ts +15 -0
- package/dist/options/index.js +2 -0
- package/dist/options/option.d.ts +1 -1
- package/package.json +12 -12
- package/ensure-browser.mjs +0 -3311
package/dist/client.d.ts
CHANGED
|
@@ -902,6 +902,21 @@ export declare const BrowserSafeApis: {
|
|
|
902
902
|
};
|
|
903
903
|
setConfig: (profile: AudioContextLatencyCategory | null) => void;
|
|
904
904
|
};
|
|
905
|
+
enableCrossSiteIsolationOption: {
|
|
906
|
+
name: string;
|
|
907
|
+
cliFlag: "cross-site-isolation";
|
|
908
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
909
|
+
ssrName: null;
|
|
910
|
+
docLink: string;
|
|
911
|
+
type: boolean;
|
|
912
|
+
getValue: ({ commandLine }: {
|
|
913
|
+
commandLine: Record<string, unknown>;
|
|
914
|
+
}) => {
|
|
915
|
+
value: boolean;
|
|
916
|
+
source: string;
|
|
917
|
+
};
|
|
918
|
+
setConfig(value: boolean): void;
|
|
919
|
+
};
|
|
905
920
|
};
|
|
906
921
|
validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
|
|
907
922
|
optionsMap: {
|