@remotion/effects 4.0.470 → 4.0.472
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/color-key.d.ts +47 -0
- package/dist/color-utils.d.ts +4 -1
- package/dist/dot-grid.d.ts +2 -0
- package/dist/duotone.d.ts +1 -0
- package/dist/esm/barrel-distortion.mjs +9 -5
- package/dist/esm/blur.mjs +2 -1
- package/dist/esm/brightness.mjs +7 -4
- package/dist/esm/chromatic-aberration.mjs +10 -6
- package/dist/esm/color-key.mjs +419 -0
- package/dist/esm/contrast.mjs +7 -4
- package/dist/esm/dot-grid.mjs +11 -6
- package/dist/esm/drop-shadow.mjs +15 -8
- package/dist/esm/duotone.mjs +9 -5
- package/dist/esm/evolve.mjs +11 -6
- package/dist/esm/fisheye.mjs +13 -7
- package/dist/esm/glow.mjs +13 -7
- package/dist/esm/grayscale.mjs +7 -4
- package/dist/esm/halftone-linear-gradient.mjs +13 -7
- package/dist/esm/halftone.mjs +16 -11
- package/dist/esm/hue.mjs +7 -4
- package/dist/esm/index.mjs +902 -0
- package/dist/esm/invert.mjs +7 -4
- package/dist/esm/linear-progressive-blur.mjs +530 -0
- package/dist/esm/lines.mjs +15 -11
- package/dist/esm/mirror.mjs +9 -5
- package/dist/esm/noise.mjs +11 -6
- package/dist/esm/pixel-dissolve.mjs +377 -0
- package/dist/esm/rings.mjs +467 -0
- package/dist/esm/saturation.mjs +7 -4
- package/dist/esm/scale.mjs +2 -1
- package/dist/esm/scanlines.mjs +15 -8
- package/dist/esm/shine.mjs +18 -12
- package/dist/esm/speckle.mjs +13 -7
- package/dist/esm/tint.mjs +9 -5
- package/dist/esm/translate.mjs +15 -8
- package/dist/esm/vignette.mjs +40 -12
- package/dist/esm/wave.mjs +6 -3
- package/dist/esm/waves.mjs +547 -0
- package/dist/esm/white-noise.mjs +11 -6
- package/dist/esm/zigzag.mjs +537 -0
- package/dist/evolve.d.ts +2 -0
- package/dist/halftone-linear-gradient.d.ts +3 -0
- package/dist/halftone.d.ts +5 -3
- package/dist/index.d.ts +2 -1
- package/dist/linear-progressive-blur/index.d.ts +28 -0
- package/dist/linear-progressive-blur/linear-progressive-blur-runtime.d.ts +32 -0
- package/dist/linear-progressive-blur/linear-progressive-blur-shaders.d.ts +2 -0
- package/dist/linear-progressive-blur.d.ts +1 -0
- package/dist/lines.d.ts +5 -4
- package/dist/pixel-dissolve.d.ts +10 -0
- package/dist/rings.d.ts +51 -0
- package/dist/tint.d.ts +1 -0
- package/dist/vignette.d.ts +13 -0
- package/dist/waves.d.ts +95 -0
- package/dist/zigzag.d.ts +84 -0
- package/package.json +51 -3
- package/dist/effect-internals.d.ts +0 -8
- package/dist/entrypoints/blur.d.ts +0 -6
package/dist/lines.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare const linesSchema: {
|
|
|
16
16
|
readonly step: 0.1;
|
|
17
17
|
readonly default: 40;
|
|
18
18
|
readonly description: "Thickness";
|
|
19
|
+
readonly hiddenFromList: false;
|
|
19
20
|
};
|
|
20
21
|
readonly gap: {
|
|
21
22
|
readonly type: "number";
|
|
@@ -24,11 +25,10 @@ export declare const linesSchema: {
|
|
|
24
25
|
readonly step: 0.1;
|
|
25
26
|
readonly default: 0;
|
|
26
27
|
readonly description: "Gap";
|
|
28
|
+
readonly hiddenFromList: false;
|
|
27
29
|
};
|
|
28
30
|
readonly angle: {
|
|
29
|
-
readonly type: "
|
|
30
|
-
readonly min: -180;
|
|
31
|
-
readonly max: 180;
|
|
31
|
+
readonly type: "rotation-degrees";
|
|
32
32
|
readonly step: 1;
|
|
33
33
|
readonly default: 0;
|
|
34
34
|
readonly description: "Angle";
|
|
@@ -38,11 +38,12 @@ export declare const linesSchema: {
|
|
|
38
38
|
readonly step: 0.1;
|
|
39
39
|
readonly default: 0;
|
|
40
40
|
readonly description: "Offset";
|
|
41
|
+
readonly hiddenFromList: false;
|
|
41
42
|
};
|
|
42
43
|
};
|
|
43
44
|
export type LinesDirection = (typeof LINE_DIRECTIONS)[number];
|
|
44
45
|
export type LinesParams = {
|
|
45
|
-
/** Stripe colors, assigned cyclically. Defaults to light blue
|
|
46
|
+
/** Stripe colors, assigned cyclically. Defaults to light blue shades. */
|
|
46
47
|
readonly colors?: readonly string[];
|
|
47
48
|
/** Line direction. Defaults to `horizontal`. */
|
|
48
49
|
readonly direction?: LinesDirection;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type PixelDissolveParams = {
|
|
2
|
+
readonly progress?: number;
|
|
3
|
+
readonly columns?: number;
|
|
4
|
+
readonly rows?: number;
|
|
5
|
+
readonly seed?: number;
|
|
6
|
+
readonly feather?: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const pixelDissolve: (params?: (PixelDissolveParams & {
|
|
9
|
+
readonly disabled?: boolean | undefined;
|
|
10
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
package/dist/rings.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export declare const ringsSchema: {
|
|
2
|
+
readonly center: {
|
|
3
|
+
readonly type: "uv-coordinate";
|
|
4
|
+
readonly min: 0;
|
|
5
|
+
readonly max: 1;
|
|
6
|
+
readonly step: 0.01;
|
|
7
|
+
readonly default: readonly [0.5, 0.5];
|
|
8
|
+
readonly description: "Center";
|
|
9
|
+
};
|
|
10
|
+
readonly thickness: {
|
|
11
|
+
readonly type: "number";
|
|
12
|
+
readonly min: 0.1;
|
|
13
|
+
readonly max: 400;
|
|
14
|
+
readonly step: 0.1;
|
|
15
|
+
readonly default: 40;
|
|
16
|
+
readonly description: "Thickness";
|
|
17
|
+
readonly hiddenFromList: false;
|
|
18
|
+
};
|
|
19
|
+
readonly gap: {
|
|
20
|
+
readonly type: "number";
|
|
21
|
+
readonly min: 0;
|
|
22
|
+
readonly max: 400;
|
|
23
|
+
readonly step: 0.1;
|
|
24
|
+
readonly default: 0;
|
|
25
|
+
readonly description: "Gap";
|
|
26
|
+
readonly hiddenFromList: false;
|
|
27
|
+
};
|
|
28
|
+
readonly offset: {
|
|
29
|
+
readonly type: "number";
|
|
30
|
+
readonly step: 0.1;
|
|
31
|
+
readonly default: 0;
|
|
32
|
+
readonly description: "Offset";
|
|
33
|
+
readonly hiddenFromList: false;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export type RingsCenter = readonly [number, number];
|
|
37
|
+
export type RingsParams = {
|
|
38
|
+
/** Ring colors, assigned cyclically. Same semantics as lines(). */
|
|
39
|
+
readonly colors?: readonly string[];
|
|
40
|
+
/** Center of the rings, normalized from `0` to `1` in x/y. */
|
|
41
|
+
readonly center?: RingsCenter;
|
|
42
|
+
/** Thickness of each colored ring in pixels. Same as lines(). */
|
|
43
|
+
readonly thickness?: number;
|
|
44
|
+
/** Transparent gap in pixels between rings. Same as lines(). */
|
|
45
|
+
readonly gap?: number;
|
|
46
|
+
/** Radial offset in pixels. Animate to expand or contract the rings. */
|
|
47
|
+
readonly offset?: number;
|
|
48
|
+
};
|
|
49
|
+
export declare const rings: (params?: (RingsParams & {
|
|
50
|
+
readonly disabled?: boolean | undefined;
|
|
51
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
package/dist/tint.d.ts
CHANGED
package/dist/vignette.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare const vignetteSchema: {
|
|
|
7
7
|
readonly step: 0.01;
|
|
8
8
|
readonly default: 0.5;
|
|
9
9
|
readonly description: "Amount";
|
|
10
|
+
readonly hiddenFromList: false;
|
|
10
11
|
};
|
|
11
12
|
readonly radius: {
|
|
12
13
|
readonly type: "number";
|
|
@@ -15,6 +16,7 @@ export declare const vignetteSchema: {
|
|
|
15
16
|
readonly step: 0.01;
|
|
16
17
|
readonly default: 0.65;
|
|
17
18
|
readonly description: "Radius";
|
|
19
|
+
readonly hiddenFromList: false;
|
|
18
20
|
};
|
|
19
21
|
readonly feather: {
|
|
20
22
|
readonly type: "number";
|
|
@@ -23,6 +25,7 @@ export declare const vignetteSchema: {
|
|
|
23
25
|
readonly step: 0.01;
|
|
24
26
|
readonly default: 0.35;
|
|
25
27
|
readonly description: "Feather";
|
|
28
|
+
readonly hiddenFromList: false;
|
|
26
29
|
};
|
|
27
30
|
readonly roundness: {
|
|
28
31
|
readonly type: "number";
|
|
@@ -31,6 +34,7 @@ export declare const vignetteSchema: {
|
|
|
31
34
|
readonly step: 0.01;
|
|
32
35
|
readonly default: 1;
|
|
33
36
|
readonly description: "Roundness";
|
|
37
|
+
readonly hiddenFromList: false;
|
|
34
38
|
};
|
|
35
39
|
readonly color: {
|
|
36
40
|
readonly type: "color";
|
|
@@ -46,8 +50,15 @@ export declare const vignetteSchema: {
|
|
|
46
50
|
readonly alpha: {};
|
|
47
51
|
};
|
|
48
52
|
};
|
|
53
|
+
readonly center: {
|
|
54
|
+
readonly type: "uv-coordinate";
|
|
55
|
+
readonly step: 0.01;
|
|
56
|
+
readonly default: readonly [0.5, 0.5];
|
|
57
|
+
readonly description: "Center";
|
|
58
|
+
};
|
|
49
59
|
};
|
|
50
60
|
export type VignetteMode = (typeof VIGNETTE_MODES)[number];
|
|
61
|
+
export type VignetteCenter = readonly [number, number];
|
|
51
62
|
export type VignetteParams = {
|
|
52
63
|
/** Strength of the vignette from `0` to `1`. Defaults to `0.5`. */
|
|
53
64
|
readonly amount?: number;
|
|
@@ -61,6 +72,8 @@ export type VignetteParams = {
|
|
|
61
72
|
readonly color?: string;
|
|
62
73
|
/** `color` blends a color into the edges, `alpha` fades edges transparent. Defaults to `color`. */
|
|
63
74
|
readonly mode?: VignetteMode;
|
|
75
|
+
/** Center of the vignette in UV coordinates. Defaults to `[0.5, 0.5]`. */
|
|
76
|
+
readonly center?: VignetteCenter;
|
|
64
77
|
};
|
|
65
78
|
export declare const vignette: (params?: (VignetteParams & {
|
|
66
79
|
readonly disabled?: boolean | undefined;
|
package/dist/waves.d.ts
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
declare const WAVE_DIRECTIONS: readonly ["horizontal", "vertical"];
|
|
2
|
+
export declare const wavesSchema: {
|
|
3
|
+
readonly direction: {
|
|
4
|
+
readonly type: "enum";
|
|
5
|
+
readonly variants: {
|
|
6
|
+
readonly horizontal: {};
|
|
7
|
+
readonly vertical: {};
|
|
8
|
+
};
|
|
9
|
+
readonly default: "horizontal";
|
|
10
|
+
readonly description: "Direction";
|
|
11
|
+
};
|
|
12
|
+
readonly thickness: {
|
|
13
|
+
readonly type: "number";
|
|
14
|
+
readonly min: 0.1;
|
|
15
|
+
readonly max: 400;
|
|
16
|
+
readonly step: 0.1;
|
|
17
|
+
readonly default: 40;
|
|
18
|
+
readonly description: "Thickness";
|
|
19
|
+
readonly hiddenFromList: false;
|
|
20
|
+
};
|
|
21
|
+
readonly gap: {
|
|
22
|
+
readonly type: "number";
|
|
23
|
+
readonly min: 0;
|
|
24
|
+
readonly max: 400;
|
|
25
|
+
readonly step: 0.1;
|
|
26
|
+
readonly default: 0;
|
|
27
|
+
readonly description: "Gap";
|
|
28
|
+
readonly hiddenFromList: false;
|
|
29
|
+
};
|
|
30
|
+
readonly angle: {
|
|
31
|
+
readonly type: "rotation-degrees";
|
|
32
|
+
readonly step: 1;
|
|
33
|
+
readonly default: 0;
|
|
34
|
+
readonly description: "Angle";
|
|
35
|
+
};
|
|
36
|
+
readonly offset: {
|
|
37
|
+
readonly type: "number";
|
|
38
|
+
readonly step: 0.1;
|
|
39
|
+
readonly default: 0;
|
|
40
|
+
readonly description: "Offset";
|
|
41
|
+
readonly hiddenFromList: false;
|
|
42
|
+
};
|
|
43
|
+
readonly amplitude: {
|
|
44
|
+
readonly type: "number";
|
|
45
|
+
readonly min: 0;
|
|
46
|
+
readonly max: 500;
|
|
47
|
+
readonly step: 0.1;
|
|
48
|
+
readonly default: 24;
|
|
49
|
+
readonly description: "Amplitude";
|
|
50
|
+
readonly hiddenFromList: false;
|
|
51
|
+
};
|
|
52
|
+
readonly wavelength: {
|
|
53
|
+
readonly type: "number";
|
|
54
|
+
readonly min: 1;
|
|
55
|
+
readonly max: 2000;
|
|
56
|
+
readonly step: 1;
|
|
57
|
+
readonly default: 160;
|
|
58
|
+
readonly description: "Wavelength";
|
|
59
|
+
readonly hiddenFromList: false;
|
|
60
|
+
};
|
|
61
|
+
readonly phase: {
|
|
62
|
+
readonly type: "number";
|
|
63
|
+
readonly min: -360;
|
|
64
|
+
readonly max: 360;
|
|
65
|
+
readonly step: 1;
|
|
66
|
+
readonly default: 0;
|
|
67
|
+
readonly description: "Phase";
|
|
68
|
+
readonly hiddenFromList: false;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
export type WavesDirection = (typeof WAVE_DIRECTIONS)[number];
|
|
72
|
+
export type WavesParams = {
|
|
73
|
+
/** Stripe colors, assigned cyclically. Defaults to light blue shades. */
|
|
74
|
+
readonly colors?: readonly string[];
|
|
75
|
+
/** Base band direction. Defaults to `horizontal`. */
|
|
76
|
+
readonly direction?: WavesDirection;
|
|
77
|
+
/** Thickness of each stripe in pixels. Defaults to `40`. */
|
|
78
|
+
readonly thickness?: number;
|
|
79
|
+
/** Transparent gap in pixels between each stripe. Defaults to `0`. */
|
|
80
|
+
readonly gap?: number;
|
|
81
|
+
/** Rotates the pattern in degrees. Defaults to `0`. */
|
|
82
|
+
readonly angle?: number;
|
|
83
|
+
/** Offset in pixels. Animate to scroll through the bands. Defaults to `0`. */
|
|
84
|
+
readonly offset?: number;
|
|
85
|
+
/** Wave displacement in pixels. Defaults to `24`. */
|
|
86
|
+
readonly amplitude?: number;
|
|
87
|
+
/** Distance in pixels before the wave repeats. Defaults to `160`. */
|
|
88
|
+
readonly wavelength?: number;
|
|
89
|
+
/** Wave phase in degrees. Defaults to `0`. */
|
|
90
|
+
readonly phase?: number;
|
|
91
|
+
};
|
|
92
|
+
export declare const waves: (params?: (WavesParams & {
|
|
93
|
+
readonly disabled?: boolean | undefined;
|
|
94
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
95
|
+
export {};
|
package/dist/zigzag.d.ts
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
declare const ZIGZAG_DIRECTIONS: readonly ["horizontal", "vertical"];
|
|
2
|
+
export declare const zigzagSchema: {
|
|
3
|
+
readonly direction: {
|
|
4
|
+
readonly type: "enum";
|
|
5
|
+
readonly variants: {
|
|
6
|
+
readonly horizontal: {};
|
|
7
|
+
readonly vertical: {};
|
|
8
|
+
};
|
|
9
|
+
readonly default: "horizontal";
|
|
10
|
+
readonly description: "Direction";
|
|
11
|
+
};
|
|
12
|
+
readonly thickness: {
|
|
13
|
+
readonly type: "number";
|
|
14
|
+
readonly min: 0.1;
|
|
15
|
+
readonly max: 400;
|
|
16
|
+
readonly step: 0.1;
|
|
17
|
+
readonly default: 40;
|
|
18
|
+
readonly description: "Thickness";
|
|
19
|
+
readonly hiddenFromList: false;
|
|
20
|
+
};
|
|
21
|
+
readonly gap: {
|
|
22
|
+
readonly type: "number";
|
|
23
|
+
readonly min: 0;
|
|
24
|
+
readonly max: 400;
|
|
25
|
+
readonly step: 0.1;
|
|
26
|
+
readonly default: 0;
|
|
27
|
+
readonly description: "Gap";
|
|
28
|
+
readonly hiddenFromList: false;
|
|
29
|
+
};
|
|
30
|
+
readonly angle: {
|
|
31
|
+
readonly type: "rotation-degrees";
|
|
32
|
+
readonly step: 1;
|
|
33
|
+
readonly default: 0;
|
|
34
|
+
readonly description: "Angle";
|
|
35
|
+
};
|
|
36
|
+
readonly offset: {
|
|
37
|
+
readonly type: "number";
|
|
38
|
+
readonly step: 0.1;
|
|
39
|
+
readonly default: 0;
|
|
40
|
+
readonly description: "Offset";
|
|
41
|
+
readonly hiddenFromList: false;
|
|
42
|
+
};
|
|
43
|
+
readonly amplitude: {
|
|
44
|
+
readonly type: "number";
|
|
45
|
+
readonly min: 0;
|
|
46
|
+
readonly max: 500;
|
|
47
|
+
readonly step: 0.1;
|
|
48
|
+
readonly default: 40;
|
|
49
|
+
readonly description: "Amplitude";
|
|
50
|
+
readonly hiddenFromList: false;
|
|
51
|
+
};
|
|
52
|
+
readonly wavelength: {
|
|
53
|
+
readonly type: "number";
|
|
54
|
+
readonly min: 1;
|
|
55
|
+
readonly max: 2000;
|
|
56
|
+
readonly step: 1;
|
|
57
|
+
readonly default: 160;
|
|
58
|
+
readonly description: "Wavelength";
|
|
59
|
+
readonly hiddenFromList: false;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
export type ZigzagDirection = (typeof ZIGZAG_DIRECTIONS)[number];
|
|
63
|
+
export type ZigzagParams = {
|
|
64
|
+
/** Stripe colors, assigned cyclically. Same semantics as lines(). */
|
|
65
|
+
readonly colors?: readonly string[];
|
|
66
|
+
/** Base band direction before zig-zag displacement. Same as lines(). */
|
|
67
|
+
readonly direction?: ZigzagDirection;
|
|
68
|
+
/** Thickness of each colored band in pixels. Same as lines(). */
|
|
69
|
+
readonly thickness?: number;
|
|
70
|
+
/** Transparent gap in pixels between bands. Same as lines(). */
|
|
71
|
+
readonly gap?: number;
|
|
72
|
+
/** Rotates the full pattern in degrees. Same as lines(). */
|
|
73
|
+
readonly angle?: number;
|
|
74
|
+
/** Offset in pixels. Animate to scroll the bands. Same as lines(). */
|
|
75
|
+
readonly offset?: number;
|
|
76
|
+
/** Zig-zag displacement in pixels. */
|
|
77
|
+
readonly amplitude?: number;
|
|
78
|
+
/** Distance in pixels before the zig-zag repeats. */
|
|
79
|
+
readonly wavelength?: number;
|
|
80
|
+
};
|
|
81
|
+
export declare const zigzag: (params?: (ZigzagParams & {
|
|
82
|
+
readonly disabled?: boolean | undefined;
|
|
83
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
84
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/effects",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.472",
|
|
4
4
|
"description": "Effects that can be applied to Remotion-based canvas components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"remotion": "4.0.
|
|
29
|
+
"remotion": "4.0.472"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
@@ -49,6 +49,11 @@
|
|
|
49
49
|
"module": "./dist/esm/chromatic-aberration.mjs",
|
|
50
50
|
"import": "./dist/esm/chromatic-aberration.mjs"
|
|
51
51
|
},
|
|
52
|
+
"./color-key": {
|
|
53
|
+
"types": "./dist/color-key.d.ts",
|
|
54
|
+
"module": "./dist/esm/color-key.mjs",
|
|
55
|
+
"import": "./dist/esm/color-key.mjs"
|
|
56
|
+
},
|
|
52
57
|
"./brightness": {
|
|
53
58
|
"types": "./dist/brightness.d.ts",
|
|
54
59
|
"module": "./dist/esm/brightness.mjs",
|
|
@@ -94,6 +99,11 @@
|
|
|
94
99
|
"module": "./dist/esm/halftone-linear-gradient.mjs",
|
|
95
100
|
"import": "./dist/esm/halftone-linear-gradient.mjs"
|
|
96
101
|
},
|
|
102
|
+
"./pixel-dissolve": {
|
|
103
|
+
"types": "./dist/pixel-dissolve.d.ts",
|
|
104
|
+
"module": "./dist/esm/pixel-dissolve.mjs",
|
|
105
|
+
"import": "./dist/esm/pixel-dissolve.mjs"
|
|
106
|
+
},
|
|
97
107
|
"./grayscale": {
|
|
98
108
|
"types": "./dist/grayscale.d.ts",
|
|
99
109
|
"module": "./dist/esm/grayscale.mjs",
|
|
@@ -114,6 +124,11 @@
|
|
|
114
124
|
"module": "./dist/esm/lines.mjs",
|
|
115
125
|
"import": "./dist/esm/lines.mjs"
|
|
116
126
|
},
|
|
127
|
+
"./linear-progressive-blur": {
|
|
128
|
+
"types": "./dist/linear-progressive-blur.d.ts",
|
|
129
|
+
"module": "./dist/esm/linear-progressive-blur.mjs",
|
|
130
|
+
"import": "./dist/esm/linear-progressive-blur.mjs"
|
|
131
|
+
},
|
|
117
132
|
"./dot-grid": {
|
|
118
133
|
"types": "./dist/dot-grid.d.ts",
|
|
119
134
|
"module": "./dist/esm/dot-grid.mjs",
|
|
@@ -129,6 +144,11 @@
|
|
|
129
144
|
"module": "./dist/esm/noise.mjs",
|
|
130
145
|
"import": "./dist/esm/noise.mjs"
|
|
131
146
|
},
|
|
147
|
+
"./rings": {
|
|
148
|
+
"types": "./dist/rings.d.ts",
|
|
149
|
+
"module": "./dist/esm/rings.mjs",
|
|
150
|
+
"import": "./dist/esm/rings.mjs"
|
|
151
|
+
},
|
|
132
152
|
"./saturation": {
|
|
133
153
|
"types": "./dist/saturation.d.ts",
|
|
134
154
|
"module": "./dist/esm/saturation.mjs",
|
|
@@ -174,11 +194,21 @@
|
|
|
174
194
|
"module": "./dist/esm/wave.mjs",
|
|
175
195
|
"import": "./dist/esm/wave.mjs"
|
|
176
196
|
},
|
|
197
|
+
"./waves": {
|
|
198
|
+
"types": "./dist/waves.d.ts",
|
|
199
|
+
"module": "./dist/esm/waves.mjs",
|
|
200
|
+
"import": "./dist/esm/waves.mjs"
|
|
201
|
+
},
|
|
177
202
|
"./white-noise": {
|
|
178
203
|
"types": "./dist/white-noise.d.ts",
|
|
179
204
|
"module": "./dist/esm/white-noise.mjs",
|
|
180
205
|
"import": "./dist/esm/white-noise.mjs"
|
|
181
206
|
},
|
|
207
|
+
"./zigzag": {
|
|
208
|
+
"types": "./dist/zigzag.d.ts",
|
|
209
|
+
"module": "./dist/esm/zigzag.mjs",
|
|
210
|
+
"import": "./dist/esm/zigzag.mjs"
|
|
211
|
+
},
|
|
182
212
|
"./package.json": "./package.json"
|
|
183
213
|
},
|
|
184
214
|
"typesVersions": {
|
|
@@ -192,6 +222,9 @@
|
|
|
192
222
|
"chromatic-aberration": [
|
|
193
223
|
"dist/chromatic-aberration.d.ts"
|
|
194
224
|
],
|
|
225
|
+
"color-key": [
|
|
226
|
+
"dist/color-key.d.ts"
|
|
227
|
+
],
|
|
195
228
|
"brightness": [
|
|
196
229
|
"dist/brightness.d.ts"
|
|
197
230
|
],
|
|
@@ -219,6 +252,9 @@
|
|
|
219
252
|
"halftone-linear-gradient": [
|
|
220
253
|
"dist/halftone-linear-gradient.d.ts"
|
|
221
254
|
],
|
|
255
|
+
"pixel-dissolve": [
|
|
256
|
+
"dist/pixel-dissolve.d.ts"
|
|
257
|
+
],
|
|
222
258
|
"grayscale": [
|
|
223
259
|
"dist/grayscale.d.ts"
|
|
224
260
|
],
|
|
@@ -231,6 +267,9 @@
|
|
|
231
267
|
"lines": [
|
|
232
268
|
"dist/lines.d.ts"
|
|
233
269
|
],
|
|
270
|
+
"linear-progressive-blur": [
|
|
271
|
+
"dist/linear-progressive-blur.d.ts"
|
|
272
|
+
],
|
|
234
273
|
"dot-grid": [
|
|
235
274
|
"dist/dot-grid.d.ts"
|
|
236
275
|
],
|
|
@@ -240,6 +279,9 @@
|
|
|
240
279
|
"noise": [
|
|
241
280
|
"dist/noise.d.ts"
|
|
242
281
|
],
|
|
282
|
+
"rings": [
|
|
283
|
+
"dist/rings.d.ts"
|
|
284
|
+
],
|
|
243
285
|
"saturation": [
|
|
244
286
|
"dist/saturation.d.ts"
|
|
245
287
|
],
|
|
@@ -267,6 +309,12 @@
|
|
|
267
309
|
"wave": [
|
|
268
310
|
"dist/wave.d.ts"
|
|
269
311
|
],
|
|
312
|
+
"waves": [
|
|
313
|
+
"dist/waves.d.ts"
|
|
314
|
+
],
|
|
315
|
+
"zigzag": [
|
|
316
|
+
"dist/zigzag.d.ts"
|
|
317
|
+
],
|
|
270
318
|
"white-noise": [
|
|
271
319
|
"dist/white-noise.d.ts"
|
|
272
320
|
]
|
|
@@ -274,7 +322,7 @@
|
|
|
274
322
|
},
|
|
275
323
|
"homepage": "https://www.remotion.dev/docs/effects/api",
|
|
276
324
|
"devDependencies": {
|
|
277
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
325
|
+
"@remotion/eslint-config-internal": "4.0.472",
|
|
278
326
|
"@vitest/browser-playwright": "4.0.9",
|
|
279
327
|
"eslint": "9.19.0",
|
|
280
328
|
"vitest": "4.0.9",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const EffectInternals: {
|
|
2
|
-
readonly halftone: (params?: (import("./halftone.js").HalftoneParams & {
|
|
3
|
-
readonly disabled?: boolean | undefined;
|
|
4
|
-
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
5
|
-
readonly tint: (params: import("./tint.js").TintParams & {
|
|
6
|
-
readonly disabled?: boolean | undefined;
|
|
7
|
-
}) => import("remotion").EffectDescriptor<unknown>;
|
|
8
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as blurExports from '../blur/index.js';
|
|
2
|
-
export type { BlurParams } from '../blur/index.js';
|
|
3
|
-
declare const blur: (params: blurExports.BlurParams & {
|
|
4
|
-
readonly disabled?: boolean | undefined;
|
|
5
|
-
}) => import("remotion").EffectDescriptor<unknown>;
|
|
6
|
-
export { blur };
|