@remotion/effects 4.0.471 → 4.0.473
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 +14 -8
- package/dist/esm/grayscale.mjs +7 -4
- package/dist/esm/halftone-linear-gradient.mjs +15 -8
- package/dist/esm/halftone.mjs +16 -11
- package/dist/esm/hue.mjs +7 -4
- package/dist/esm/index.mjs +24 -15
- package/dist/esm/invert.mjs +7 -4
- package/dist/esm/linear-progressive-blur.mjs +531 -0
- package/dist/esm/lines.mjs +14 -10
- package/dist/esm/mirror.mjs +9 -5
- package/dist/esm/noise.mjs +11 -6
- package/dist/esm/pixel-dissolve.mjs +17 -9
- package/dist/esm/rings.mjs +13 -7
- 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 +20 -13
- package/dist/esm/white-noise.mjs +11 -6
- package/dist/esm/zigzag.mjs +18 -12
- package/dist/evolve.d.ts +2 -0
- package/dist/halftone-linear-gradient.d.ts +4 -0
- package/dist/halftone.d.ts +5 -3
- 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 +4 -3
- package/dist/rings.d.ts +3 -0
- package/dist/tint.d.ts +1 -0
- package/dist/vignette.d.ts +13 -0
- package/dist/waves.d.ts +7 -3
- package/dist/zigzag.d.ts +6 -3
- package/package.json +19 -3
- package/dist/effect-internals.d.ts +0 -8
- package/dist/entrypoints/blur.d.ts +0 -6
package/dist/waves.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare const wavesSchema: {
|
|
|
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 wavesSchema: {
|
|
|
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,6 +38,7 @@ export declare const wavesSchema: {
|
|
|
38
38
|
readonly step: 0.1;
|
|
39
39
|
readonly default: 0;
|
|
40
40
|
readonly description: "Offset";
|
|
41
|
+
readonly hiddenFromList: false;
|
|
41
42
|
};
|
|
42
43
|
readonly amplitude: {
|
|
43
44
|
readonly type: "number";
|
|
@@ -46,6 +47,7 @@ export declare const wavesSchema: {
|
|
|
46
47
|
readonly step: 0.1;
|
|
47
48
|
readonly default: 24;
|
|
48
49
|
readonly description: "Amplitude";
|
|
50
|
+
readonly hiddenFromList: false;
|
|
49
51
|
};
|
|
50
52
|
readonly wavelength: {
|
|
51
53
|
readonly type: "number";
|
|
@@ -54,6 +56,7 @@ export declare const wavesSchema: {
|
|
|
54
56
|
readonly step: 1;
|
|
55
57
|
readonly default: 160;
|
|
56
58
|
readonly description: "Wavelength";
|
|
59
|
+
readonly hiddenFromList: false;
|
|
57
60
|
};
|
|
58
61
|
readonly phase: {
|
|
59
62
|
readonly type: "number";
|
|
@@ -62,6 +65,7 @@ export declare const wavesSchema: {
|
|
|
62
65
|
readonly step: 1;
|
|
63
66
|
readonly default: 0;
|
|
64
67
|
readonly description: "Phase";
|
|
68
|
+
readonly hiddenFromList: false;
|
|
65
69
|
};
|
|
66
70
|
};
|
|
67
71
|
export type WavesDirection = (typeof WAVE_DIRECTIONS)[number];
|
package/dist/zigzag.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare const zigzagSchema: {
|
|
|
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 zigzagSchema: {
|
|
|
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,6 +38,7 @@ export declare const zigzagSchema: {
|
|
|
38
38
|
readonly step: 0.1;
|
|
39
39
|
readonly default: 0;
|
|
40
40
|
readonly description: "Offset";
|
|
41
|
+
readonly hiddenFromList: false;
|
|
41
42
|
};
|
|
42
43
|
readonly amplitude: {
|
|
43
44
|
readonly type: "number";
|
|
@@ -46,6 +47,7 @@ export declare const zigzagSchema: {
|
|
|
46
47
|
readonly step: 0.1;
|
|
47
48
|
readonly default: 40;
|
|
48
49
|
readonly description: "Amplitude";
|
|
50
|
+
readonly hiddenFromList: false;
|
|
49
51
|
};
|
|
50
52
|
readonly wavelength: {
|
|
51
53
|
readonly type: "number";
|
|
@@ -54,6 +56,7 @@ export declare const zigzagSchema: {
|
|
|
54
56
|
readonly step: 1;
|
|
55
57
|
readonly default: 160;
|
|
56
58
|
readonly description: "Wavelength";
|
|
59
|
+
readonly hiddenFromList: false;
|
|
57
60
|
};
|
|
58
61
|
};
|
|
59
62
|
export type ZigzagDirection = (typeof ZIGZAG_DIRECTIONS)[number];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/effects",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.473",
|
|
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.473"
|
|
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",
|
|
@@ -119,6 +124,11 @@
|
|
|
119
124
|
"module": "./dist/esm/lines.mjs",
|
|
120
125
|
"import": "./dist/esm/lines.mjs"
|
|
121
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
|
+
},
|
|
122
132
|
"./dot-grid": {
|
|
123
133
|
"types": "./dist/dot-grid.d.ts",
|
|
124
134
|
"module": "./dist/esm/dot-grid.mjs",
|
|
@@ -212,6 +222,9 @@
|
|
|
212
222
|
"chromatic-aberration": [
|
|
213
223
|
"dist/chromatic-aberration.d.ts"
|
|
214
224
|
],
|
|
225
|
+
"color-key": [
|
|
226
|
+
"dist/color-key.d.ts"
|
|
227
|
+
],
|
|
215
228
|
"brightness": [
|
|
216
229
|
"dist/brightness.d.ts"
|
|
217
230
|
],
|
|
@@ -254,6 +267,9 @@
|
|
|
254
267
|
"lines": [
|
|
255
268
|
"dist/lines.d.ts"
|
|
256
269
|
],
|
|
270
|
+
"linear-progressive-blur": [
|
|
271
|
+
"dist/linear-progressive-blur.d.ts"
|
|
272
|
+
],
|
|
257
273
|
"dot-grid": [
|
|
258
274
|
"dist/dot-grid.d.ts"
|
|
259
275
|
],
|
|
@@ -306,7 +322,7 @@
|
|
|
306
322
|
},
|
|
307
323
|
"homepage": "https://www.remotion.dev/docs/effects/api",
|
|
308
324
|
"devDependencies": {
|
|
309
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
325
|
+
"@remotion/eslint-config-internal": "4.0.473",
|
|
310
326
|
"@vitest/browser-playwright": "4.0.9",
|
|
311
327
|
"eslint": "9.19.0",
|
|
312
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 };
|