🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

remotion

Package Overview
Dependencies
Maintainers
1
Versions
1220
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remotion - npm Package Compare versions

Comparing version
4.0.479
to
4.0.481
+1
-0
dist/cjs/animated-image/AnimatedImage.js

@@ -178,2 +178,3 @@ "use strict";

Component: AnimatedImageInner,
componentName: '<AnimatedImage>',
componentIdentity: 'dev.remotion.remotion.AnimatedImage',

@@ -180,0 +181,0 @@ schema: animatedImageSchema,

@@ -301,2 +301,3 @@ "use strict";

Component: CanvasImageInner,
componentName: '<CanvasImage>',
componentIdentity: 'dev.remotion.remotion.CanvasImage',

@@ -303,0 +304,0 @@ schema: exports.canvasImageSchema,

@@ -62,2 +62,3 @@ import type { ComponentType, LazyExoticComponent } from 'react';

componentIdentity: JsxComponentIdentity | null;
componentName: string;
};

@@ -64,0 +65,0 @@ export type TSequence = {

@@ -153,2 +153,3 @@ "use strict";

Component: SolidOuter,
componentName: '<Solid>',
componentIdentity: 'dev.remotion.remotion.Solid',

@@ -155,0 +156,0 @@ schema: solidSchema,

@@ -302,2 +302,3 @@ "use strict";

Component: HtmlInCanvasInner,
componentName: '<HtmlInCanvas>',
componentIdentity: 'dev.remotion.remotion.HtmlInCanvas',

@@ -304,0 +305,0 @@ schema: htmlInCanvasSchema,

@@ -263,2 +263,3 @@ "use strict";

Component: ImgInner,
componentName: '<Img>',
componentIdentity: 'dev.remotion.remotion.Img',

@@ -265,0 +266,0 @@ schema: exports.imgSchema,

+2
-1

@@ -196,6 +196,7 @@ import React from 'react';

};
withSchema: <S extends InteractivitySchema, Props extends object>({ Component, componentIdentity, schema, supportsEffects, }: {
withSchema: <S extends InteractivitySchema, Props extends object>({ Component, componentName, componentIdentity, schema, supportsEffects, }: {
Component: React.ComponentType<Props & {
readonly controls: SequenceControls | undefined;
}>;
componentName: string;
componentIdentity: string | null;

@@ -202,0 +203,0 @@ schema: S;

@@ -71,2 +71,3 @@ "use strict";

Component: Inner,
componentName: displayName,
componentIdentity: `dev.remotion.remotion.${displayName.slice(1, -1)}`,

@@ -73,0 +74,0 @@ schema: interactiveElementSchema,

@@ -380,2 +380,3 @@ "use strict";

Component: SequenceInner,
componentName: '<Sequence>',
componentIdentity: 'dev.remotion.remotion.Sequence',

@@ -387,2 +388,3 @@ schema: interactivity_schema_js_1.sequenceSchema,

Component: SequenceInner,
componentName: '<Sequence>',
componentIdentity: null,

@@ -389,0 +391,0 @@ schema: interactivity_schema_js_1.sequenceSchemaWithoutFrom,

@@ -70,2 +70,3 @@ "use strict";

Component: SeriesInner,
componentName: '<Series>',
componentIdentity: 'dev.remotion.remotion.Series',

@@ -72,0 +73,0 @@ schema: interactivity_schema_js_1.sequenceSchemaDefaultLayoutNone,

@@ -6,2 +6,2 @@ /**

*/
export declare const VERSION = "4.0.479";
export declare const VERSION = "4.0.481";

@@ -10,2 +10,2 @@ "use strict";

*/
exports.VERSION = '4.0.479';
exports.VERSION = '4.0.481';

@@ -13,6 +13,7 @@ import React from 'react';

}) => Record<string, unknown>;
export declare const withInteractivitySchema: <S extends InteractivitySchema, Props extends object>({ Component, componentIdentity, schema, supportsEffects, }: {
export declare const withInteractivitySchema: <S extends InteractivitySchema, Props extends object>({ Component, componentName, componentIdentity, schema, supportsEffects, }: {
Component: React.ComponentType<Props & {
readonly controls: SequenceControls | undefined;
}>;
componentName: string;
componentIdentity: string | null;

@@ -19,0 +20,0 @@ schema: S;

@@ -101,3 +101,3 @@ "use strict";

const stackToOverrideMap = {};
const withInteractivitySchema = ({ Component, componentIdentity, schema, supportsEffects, }) => {
const withInteractivitySchema = ({ Component, componentName, componentIdentity, schema, supportsEffects, }) => {
// Schema is static for a component, so we move this outside

@@ -165,2 +165,3 @@ const schemaWithSequenceName = (0, interactivity_schema_js_1.extendSchemaWithSequenceName)(schema);

componentIdentity,
componentName,
};

@@ -167,0 +168,0 @@ }, [currentRuntimeValueDotNotation, overrideId]);

// src/version.ts
var VERSION = "4.0.479";
var VERSION = "4.0.481";
export {
VERSION
};

@@ -6,3 +6,3 @@ {

"name": "remotion",
"version": "4.0.479",
"version": "4.0.481",
"description": "Make videos programmatically",

@@ -39,3 +39,3 @@ "main": "dist/cjs/index.js",

"zod": "4.3.6",
"@remotion/eslint-config-internal": "4.0.479",
"@remotion/eslint-config-internal": "4.0.481",
"eslint": "9.19.0",

@@ -42,0 +42,0 @@ "@typescript/native-preview": "7.0.0-dev.20260217.1"

Sorry, the diff of this file is too big to display