@remotion/studio-shared 4.0.479 → 4.0.481

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.
@@ -195,6 +195,17 @@ exports.EFFECT_CATALOG = [
195
195
  config: {},
196
196
  },
197
197
  },
198
+ {
199
+ id: 'effects-zoom-blur',
200
+ category: 'Blur & Shadow',
201
+ label: 'zoomBlur()',
202
+ description: 'Radial zoom blur effect',
203
+ effect: {
204
+ name: 'zoomBlur',
205
+ importPath: '@remotion/effects/zoom-blur',
206
+ config: {},
207
+ },
208
+ },
198
209
  {
199
210
  id: 'effects-drop-shadow',
200
211
  category: 'Blur & Shadow',
@@ -329,6 +340,17 @@ exports.EFFECT_CATALOG = [
329
340
  config: {},
330
341
  },
331
342
  },
343
+ {
344
+ id: 'effects-emboss',
345
+ category: 'Stylize',
346
+ label: 'emboss()',
347
+ description: 'Procedural raised-line relief',
348
+ effect: {
349
+ name: 'emboss',
350
+ importPath: '@remotion/effects/emboss',
351
+ config: {},
352
+ },
353
+ },
332
354
  {
333
355
  id: 'effects-dot-grid',
334
356
  category: 'Stylize',
@@ -493,6 +515,17 @@ exports.EFFECT_CATALOG = [
493
515
  config: {},
494
516
  },
495
517
  },
518
+ {
519
+ id: 'effects-checkerboard',
520
+ category: 'Generate',
521
+ label: 'checkerboard()',
522
+ description: 'Checkerboard pattern effect',
523
+ effect: {
524
+ name: 'checkerboard',
525
+ importPath: '@remotion/effects/checkerboard',
526
+ config: {},
527
+ },
528
+ },
496
529
  {
497
530
  id: 'effects-halftone-linear-gradient',
498
531
  category: 'Generate',
@@ -504,6 +537,17 @@ exports.EFFECT_CATALOG = [
504
537
  config: {},
505
538
  },
506
539
  },
540
+ {
541
+ id: 'effects-gridlines',
542
+ category: 'Generate',
543
+ label: 'gridlines()',
544
+ description: 'Procedural grid pattern effect',
545
+ effect: {
546
+ name: 'gridlines',
547
+ importPath: '@remotion/effects/gridlines',
548
+ config: {},
549
+ },
550
+ },
507
551
  {
508
552
  id: 'effects-white-noise',
509
553
  category: 'Generate',
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-shared"
4
4
  },
5
5
  "name": "@remotion/studio-shared",
6
- "version": "4.0.479",
6
+ "version": "4.0.481",
7
7
  "description": "Internal package for shared objects between the Studio backend and frontend",
8
8
  "main": "dist",
9
9
  "scripts": {
@@ -20,11 +20,11 @@
20
20
  "url": "https://github.com/remotion-dev/remotion/issues"
21
21
  },
22
22
  "dependencies": {
23
- "remotion": "4.0.479"
23
+ "remotion": "4.0.481"
24
24
  },
25
25
  "devDependencies": {
26
- "@remotion/renderer": "4.0.479",
27
- "@remotion/eslint-config-internal": "4.0.479",
26
+ "@remotion/renderer": "4.0.481",
27
+ "@remotion/eslint-config-internal": "4.0.481",
28
28
  "eslint": "9.19.0",
29
29
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
30
30
  },