@remotion/studio-shared 4.0.477 → 4.0.479

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.
@@ -0,0 +1,598 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EFFECT_CATALOG = exports.getEffectCatalogCategories = exports.makeEffectDragDataFromCatalogItem = exports.getEffectPreviewAlt = exports.getEffectPreviewSource = exports.getEffectDocumentationLink = exports.getEffectDocumentationPath = void 0;
4
+ const getEffectDocumentationPath = (item) => {
5
+ if (item.id === 'effects-light-leak') {
6
+ return '/docs/light-leaks/light-leak-effect';
7
+ }
8
+ if (item.id === 'effects-starburst') {
9
+ return '/docs/starburst/starburst-effect';
10
+ }
11
+ return `/docs/effects/${item.id.slice('effects-'.length)}`;
12
+ };
13
+ exports.getEffectDocumentationPath = getEffectDocumentationPath;
14
+ const getEffectDocumentationLink = (item) => {
15
+ return `https://www.remotion.dev${(0, exports.getEffectDocumentationPath)(item)}`;
16
+ };
17
+ exports.getEffectDocumentationLink = getEffectDocumentationLink;
18
+ const getEffectPreviewSource = (item) => {
19
+ return `/img/${item.id}-preview.png`;
20
+ };
21
+ exports.getEffectPreviewSource = getEffectPreviewSource;
22
+ const getEffectPreviewAlt = (item) => {
23
+ const effectName = item.id
24
+ .slice('effects-'.length)
25
+ .replaceAll('-', ' ')
26
+ .replace(/^uv /, 'UV ')
27
+ .replace(/^xy /, 'XY ')
28
+ .replace(/^tv /, 'TV ');
29
+ return `${effectName} effect preview`;
30
+ };
31
+ exports.getEffectPreviewAlt = getEffectPreviewAlt;
32
+ const makeEffectDragDataFromCatalogItem = (item) => {
33
+ return {
34
+ type: 'remotion-effect',
35
+ version: 1,
36
+ effect: item.effect,
37
+ };
38
+ };
39
+ exports.makeEffectDragDataFromCatalogItem = makeEffectDragDataFromCatalogItem;
40
+ const getEffectCatalogCategories = (items) => {
41
+ const categories = [];
42
+ for (const item of items) {
43
+ const last = categories[categories.length - 1];
44
+ if ((last === null || last === void 0 ? void 0 : last.title) === item.category) {
45
+ categories[categories.length - 1] = {
46
+ ...last,
47
+ effects: [...last.effects, item],
48
+ };
49
+ continue;
50
+ }
51
+ categories.push({
52
+ title: item.category,
53
+ effects: [item],
54
+ });
55
+ }
56
+ return categories;
57
+ };
58
+ exports.getEffectCatalogCategories = getEffectCatalogCategories;
59
+ exports.EFFECT_CATALOG = [
60
+ {
61
+ id: 'effects-brightness',
62
+ category: 'Color',
63
+ label: 'brightness()',
64
+ description: 'Brightness adjustment effect',
65
+ effect: {
66
+ name: 'brightness',
67
+ importPath: '@remotion/effects/brightness',
68
+ config: {},
69
+ },
70
+ },
71
+ {
72
+ id: 'effects-contrast',
73
+ category: 'Color',
74
+ label: 'contrast()',
75
+ description: 'Contrast adjustment effect',
76
+ effect: {
77
+ name: 'contrast',
78
+ importPath: '@remotion/effects/contrast',
79
+ config: {},
80
+ },
81
+ },
82
+ {
83
+ id: 'effects-color-key',
84
+ category: 'Color',
85
+ label: 'colorKey()',
86
+ description: 'Remove a key color (greenscreen)',
87
+ effect: {
88
+ name: 'colorKey',
89
+ importPath: '@remotion/effects/color-key',
90
+ config: {
91
+ similarity: 0.45,
92
+ },
93
+ },
94
+ },
95
+ {
96
+ id: 'effects-duotone',
97
+ category: 'Color',
98
+ label: 'duotone()',
99
+ description: 'Two-color threshold effect',
100
+ effect: {
101
+ name: 'duotone',
102
+ importPath: '@remotion/effects/duotone',
103
+ config: {},
104
+ },
105
+ },
106
+ {
107
+ id: 'effects-grayscale',
108
+ category: 'Color',
109
+ label: 'grayscale()',
110
+ description: 'Black-and-white effect',
111
+ effect: {
112
+ name: 'grayscale',
113
+ importPath: '@remotion/effects/grayscale',
114
+ config: {},
115
+ },
116
+ },
117
+ {
118
+ id: 'effects-hue',
119
+ category: 'Color',
120
+ label: 'hue()',
121
+ description: 'Hue rotation effect',
122
+ effect: {
123
+ name: 'hue',
124
+ importPath: '@remotion/effects/hue',
125
+ config: {},
126
+ },
127
+ },
128
+ {
129
+ id: 'effects-invert',
130
+ category: 'Color',
131
+ label: 'invert()',
132
+ description: 'Negative color effect',
133
+ effect: {
134
+ name: 'invert',
135
+ importPath: '@remotion/effects/invert',
136
+ config: {},
137
+ },
138
+ },
139
+ {
140
+ id: 'effects-saturation',
141
+ category: 'Color',
142
+ label: 'saturation()',
143
+ description: 'Saturation adjustment effect',
144
+ effect: {
145
+ name: 'saturation',
146
+ importPath: '@remotion/effects/saturation',
147
+ config: {},
148
+ },
149
+ },
150
+ {
151
+ id: 'effects-tint',
152
+ category: 'Color',
153
+ label: 'tint()',
154
+ description: 'Color tint effect',
155
+ effect: {
156
+ name: 'tint',
157
+ importPath: '@remotion/effects/tint',
158
+ config: {
159
+ color: '#1ec8ff',
160
+ },
161
+ },
162
+ },
163
+ {
164
+ id: 'effects-thermal-vision',
165
+ category: 'Color',
166
+ label: 'thermalVision()',
167
+ description: 'Thermal heat-map color effect',
168
+ effect: {
169
+ name: 'thermalVision',
170
+ importPath: '@remotion/effects/thermal-vision',
171
+ config: {},
172
+ },
173
+ },
174
+ {
175
+ id: 'effects-blur',
176
+ category: 'Blur & Shadow',
177
+ label: 'blur()',
178
+ description: 'Gaussian blur effect',
179
+ effect: {
180
+ name: 'blur',
181
+ importPath: '@remotion/effects/blur',
182
+ config: {
183
+ radius: 40,
184
+ },
185
+ },
186
+ },
187
+ {
188
+ id: 'effects-linear-progressive-blur',
189
+ category: 'Blur & Shadow',
190
+ label: 'linearProgressiveBlur()',
191
+ description: 'Gradient-controlled blur effect',
192
+ effect: {
193
+ name: 'linearProgressiveBlur',
194
+ importPath: '@remotion/effects/linear-progressive-blur',
195
+ config: {},
196
+ },
197
+ },
198
+ {
199
+ id: 'effects-drop-shadow',
200
+ category: 'Blur & Shadow',
201
+ label: 'dropShadow()',
202
+ description: 'Blurred alpha shadow effect',
203
+ effect: {
204
+ name: 'dropShadow',
205
+ importPath: '@remotion/effects/drop-shadow',
206
+ config: {},
207
+ },
208
+ },
209
+ {
210
+ id: 'effects-glow',
211
+ category: 'Blur & Shadow',
212
+ label: 'glow()',
213
+ description: 'Soft halo effect',
214
+ effect: {
215
+ name: 'glow',
216
+ importPath: '@remotion/effects/glow',
217
+ config: {},
218
+ },
219
+ },
220
+ {
221
+ id: 'effects-evolve',
222
+ category: 'Reveal',
223
+ label: 'evolve()',
224
+ description: 'Directional reveal effect',
225
+ effect: {
226
+ name: 'evolve',
227
+ importPath: '@remotion/effects/evolve',
228
+ config: {},
229
+ },
230
+ },
231
+ {
232
+ id: 'effects-mirror',
233
+ category: 'Transform',
234
+ label: 'mirror()',
235
+ description: 'Mirror reflection effect',
236
+ effect: {
237
+ name: 'mirror',
238
+ importPath: '@remotion/effects/mirror',
239
+ config: {},
240
+ },
241
+ },
242
+ {
243
+ id: 'effects-scale',
244
+ category: 'Transform',
245
+ label: 'scale()',
246
+ description: 'Scale transform effect',
247
+ effect: {
248
+ name: 'scale',
249
+ importPath: '@remotion/effects/scale',
250
+ config: {
251
+ scale: 1,
252
+ },
253
+ },
254
+ },
255
+ {
256
+ id: 'effects-uv-translate',
257
+ category: 'Transform',
258
+ label: 'uvTranslate()',
259
+ description: 'UV-based translate effect',
260
+ effect: {
261
+ name: 'uvTranslate',
262
+ importPath: '@remotion/effects/translate',
263
+ config: {},
264
+ },
265
+ },
266
+ {
267
+ id: 'effects-xy-translate',
268
+ category: 'Transform',
269
+ label: 'xyTranslate()',
270
+ description: 'Pixel-based translate effect',
271
+ effect: {
272
+ name: 'xyTranslate',
273
+ importPath: '@remotion/effects/translate',
274
+ config: {},
275
+ },
276
+ },
277
+ {
278
+ id: 'effects-barrel-distortion',
279
+ category: 'Distort',
280
+ label: 'barrelDistortion()',
281
+ description: 'Barrel distortion effect',
282
+ effect: {
283
+ name: 'barrelDistortion',
284
+ importPath: '@remotion/effects/barrel-distortion',
285
+ config: {},
286
+ },
287
+ },
288
+ {
289
+ id: 'effects-chromatic-aberration',
290
+ category: 'Distort',
291
+ label: 'chromaticAberration()',
292
+ description: 'RGB channel split effect',
293
+ effect: {
294
+ name: 'chromaticAberration',
295
+ importPath: '@remotion/effects/chromatic-aberration',
296
+ config: {},
297
+ },
298
+ },
299
+ {
300
+ id: 'effects-fisheye',
301
+ category: 'Distort',
302
+ label: 'fisheye()',
303
+ description: 'Ultra-wide-angle lens effect',
304
+ effect: {
305
+ name: 'fisheye',
306
+ importPath: '@remotion/effects/fisheye',
307
+ config: {},
308
+ },
309
+ },
310
+ {
311
+ id: 'effects-wave',
312
+ category: 'Distort',
313
+ label: 'wave()',
314
+ description: 'Sine wave distortion',
315
+ effect: {
316
+ name: 'wave',
317
+ importPath: '@remotion/effects/wave',
318
+ config: {},
319
+ },
320
+ },
321
+ {
322
+ id: 'effects-burlap',
323
+ category: 'Stylize',
324
+ label: 'burlap()',
325
+ description: 'Procedural woven texture effect',
326
+ effect: {
327
+ name: 'burlap',
328
+ importPath: '@remotion/effects/burlap',
329
+ config: {},
330
+ },
331
+ },
332
+ {
333
+ id: 'effects-dot-grid',
334
+ category: 'Stylize',
335
+ label: 'dotGrid()',
336
+ description: 'Source-color dot mask effect',
337
+ effect: {
338
+ name: 'dotGrid',
339
+ importPath: '@remotion/effects/dot-grid',
340
+ config: {},
341
+ },
342
+ },
343
+ {
344
+ id: 'effects-halftone',
345
+ category: 'Stylize',
346
+ label: 'halftone()',
347
+ description: 'Source-image halftone effect',
348
+ effect: {
349
+ name: 'halftone',
350
+ importPath: '@remotion/effects/halftone',
351
+ config: {},
352
+ },
353
+ },
354
+ {
355
+ id: 'effects-noise',
356
+ category: 'Stylize',
357
+ label: 'noise()',
358
+ description: 'Procedural grain effect',
359
+ effect: {
360
+ name: 'noise',
361
+ importPath: '@remotion/effects/noise',
362
+ config: {},
363
+ },
364
+ },
365
+ {
366
+ id: 'effects-noise-displacement',
367
+ category: 'Stylize',
368
+ label: 'noiseDisplacement()',
369
+ description: 'Localized noisy displacement',
370
+ effect: {
371
+ name: 'noiseDisplacement',
372
+ importPath: '@remotion/effects/noise-displacement',
373
+ config: {
374
+ center: [0.6124309308853857, 0.5010527449123625],
375
+ radius: 0.41,
376
+ strength: 15.5,
377
+ seed: 78,
378
+ grainSize: 0.9,
379
+ passes: 12,
380
+ blur: 0,
381
+ feather: 1,
382
+ biasDirection: 313,
383
+ biasAmount: 1,
384
+ },
385
+ },
386
+ },
387
+ {
388
+ id: 'effects-pattern',
389
+ category: 'Stylize',
390
+ label: 'pattern()',
391
+ description: 'Repeated source tile effect',
392
+ effect: {
393
+ name: 'pattern',
394
+ importPath: '@remotion/effects/pattern',
395
+ config: {},
396
+ },
397
+ },
398
+ {
399
+ id: 'effects-pixel-dissolve',
400
+ category: 'Stylize',
401
+ label: 'pixelDissolve()',
402
+ description: 'Pixelated dissolve effect',
403
+ effect: {
404
+ name: 'pixelDissolve',
405
+ importPath: '@remotion/effects/pixel-dissolve',
406
+ config: {},
407
+ },
408
+ },
409
+ {
410
+ id: 'effects-pixelate',
411
+ category: 'Stylize',
412
+ label: 'pixelate()',
413
+ description: 'Pixelation effect',
414
+ effect: {
415
+ name: 'pixelate',
416
+ importPath: '@remotion/effects/pixelate',
417
+ config: {
418
+ blockSize: 20,
419
+ },
420
+ },
421
+ },
422
+ {
423
+ id: 'effects-scanlines',
424
+ category: 'Stylize',
425
+ label: 'scanlines()',
426
+ description: 'Additive horizontal scanlines',
427
+ effect: {
428
+ name: 'scanlines',
429
+ importPath: '@remotion/effects/scanlines',
430
+ config: {},
431
+ },
432
+ },
433
+ {
434
+ id: 'effects-speckle',
435
+ category: 'Stylize',
436
+ label: 'speckle()',
437
+ description: 'Random alpha-hole effect',
438
+ effect: {
439
+ name: 'speckle',
440
+ importPath: '@remotion/effects/speckle',
441
+ config: {},
442
+ },
443
+ },
444
+ {
445
+ id: 'effects-shine',
446
+ category: 'Stylize',
447
+ label: 'shine()',
448
+ description: 'Glossy light sweep effect',
449
+ effect: {
450
+ name: 'shine',
451
+ importPath: '@remotion/effects/shine',
452
+ config: {},
453
+ },
454
+ },
455
+ {
456
+ id: 'effects-shrinkwrap',
457
+ category: 'Stylize',
458
+ label: 'shrinkwrap()',
459
+ description: 'Procedural plastic wrap effect',
460
+ effect: {
461
+ name: 'shrinkwrap',
462
+ importPath: '@remotion/effects/shrinkwrap',
463
+ config: {
464
+ amount: 0.94,
465
+ displacement: 13.5,
466
+ highlightIntensity: 1.54,
467
+ wrinkleDensity: 0.87,
468
+ edgeTension: 0.58,
469
+ phase: 0,
470
+ seed: 12,
471
+ },
472
+ },
473
+ },
474
+ {
475
+ id: 'effects-vignette',
476
+ category: 'Stylize',
477
+ label: 'vignette()',
478
+ description: 'Edge darkening or transparency effect',
479
+ effect: {
480
+ name: 'vignette',
481
+ importPath: '@remotion/effects/vignette',
482
+ config: {},
483
+ },
484
+ },
485
+ {
486
+ id: 'effects-contour-lines',
487
+ category: 'Generate',
488
+ label: 'contourLines()',
489
+ description: 'Topographic line overlay effect',
490
+ effect: {
491
+ name: 'contourLines',
492
+ importPath: '@remotion/effects/contour-lines',
493
+ config: {},
494
+ },
495
+ },
496
+ {
497
+ id: 'effects-halftone-linear-gradient',
498
+ category: 'Generate',
499
+ label: 'halftoneLinearGradient()',
500
+ description: 'Procedural dot gradient effect',
501
+ effect: {
502
+ name: 'halftoneLinearGradient',
503
+ importPath: '@remotion/effects/halftone-linear-gradient',
504
+ config: {},
505
+ },
506
+ },
507
+ {
508
+ id: 'effects-white-noise',
509
+ category: 'Generate',
510
+ label: 'whiteNoise()',
511
+ description: 'Random grayscale noise layer',
512
+ effect: {
513
+ name: 'whiteNoise',
514
+ importPath: '@remotion/effects/white-noise',
515
+ config: {},
516
+ },
517
+ },
518
+ {
519
+ id: 'effects-tv-signal-off',
520
+ category: 'Generate',
521
+ label: 'tvSignalOff()',
522
+ description: 'TV color bars test pattern',
523
+ effect: {
524
+ name: 'tvSignalOff',
525
+ importPath: '@remotion/effects/tv-signal-off',
526
+ config: {},
527
+ },
528
+ },
529
+ {
530
+ id: 'effects-lines',
531
+ category: 'Generate',
532
+ label: 'lines()',
533
+ description: 'Alternating line pattern effect',
534
+ effect: {
535
+ name: 'lines',
536
+ importPath: '@remotion/effects/lines',
537
+ config: {},
538
+ },
539
+ },
540
+ {
541
+ id: 'effects-rings',
542
+ category: 'Generate',
543
+ label: 'rings()',
544
+ description: 'Concentric ring pattern effect',
545
+ effect: {
546
+ name: 'rings',
547
+ importPath: '@remotion/effects/rings',
548
+ config: {},
549
+ },
550
+ },
551
+ {
552
+ id: 'effects-waves',
553
+ category: 'Generate',
554
+ label: 'waves()',
555
+ description: 'Wavy band pattern effect',
556
+ effect: {
557
+ name: 'waves',
558
+ importPath: '@remotion/effects/waves',
559
+ config: {},
560
+ },
561
+ },
562
+ {
563
+ id: 'effects-zigzag',
564
+ category: 'Generate',
565
+ label: 'zigzag()',
566
+ description: 'Zig-zag band pattern effect',
567
+ effect: {
568
+ name: 'zigzag',
569
+ importPath: '@remotion/effects/zigzag',
570
+ config: {},
571
+ },
572
+ },
573
+ {
574
+ id: 'effects-light-leak',
575
+ category: 'Generate',
576
+ label: 'lightLeak()',
577
+ description: 'Light leak overlay effect',
578
+ effect: {
579
+ name: 'lightLeak',
580
+ importPath: '@remotion/light-leaks',
581
+ config: {},
582
+ },
583
+ },
584
+ {
585
+ id: 'effects-starburst',
586
+ category: 'Generate',
587
+ label: 'starburst()',
588
+ description: 'Starburst ray effect',
589
+ effect: {
590
+ name: 'starburst',
591
+ importPath: '@remotion/starburst',
592
+ config: {
593
+ rays: 16,
594
+ colors: ['#ff6600', '#ffff00'],
595
+ },
596
+ },
597
+ },
598
+ ];
@@ -1,3 +1,4 @@
1
+ import type { KeyframeEasing } from './keyframe-easing-presets';
1
2
  import { type KeyframeInterpolationFunction } from './keyframe-interpolation-function';
2
3
  export type EffectClipboardPasteType = 'effects-additive' | 'effects-replacing';
3
4
  export type EffectClipboardStaticParam = {
@@ -9,7 +10,7 @@ export type EffectClipboardKeyframe = {
9
10
  readonly frame: number;
10
11
  readonly value: unknown;
11
12
  };
12
- export type EffectClipboardEasing = 'linear' | [number, number, number, number];
13
+ export type EffectClipboardEasing = KeyframeEasing;
13
14
  export type EffectClipboardExtrapolateType = 'extend' | 'identity' | 'clamp' | 'wrap';
14
15
  export type EffectClipboardClamping = {
15
16
  readonly left: EffectClipboardExtrapolateType;
@@ -10,10 +10,18 @@ const isFiniteNumber = (value) => {
10
10
  return typeof value === 'number' && Number.isFinite(value);
11
11
  };
12
12
  const isEasing = (value) => {
13
- return (value === 'linear' ||
14
- (Array.isArray(value) &&
15
- value.length === 4 &&
16
- value.every((item) => isFiniteNumber(item))));
13
+ return (isRecord(value) &&
14
+ (value.type === 'linear' ||
15
+ (value.type === 'bezier' &&
16
+ isFiniteNumber(value.x1) &&
17
+ isFiniteNumber(value.y1) &&
18
+ isFiniteNumber(value.x2) &&
19
+ isFiniteNumber(value.y2)) ||
20
+ (value.type === 'spring' &&
21
+ isFiniteNumber(value.damping) &&
22
+ isFiniteNumber(value.mass) &&
23
+ isFiniteNumber(value.stiffness) &&
24
+ typeof value.overshootClamping === 'boolean')));
17
25
  };
18
26
  const isKeyframe = (value) => {
19
27
  return isRecord(value) && isFiniteNumber(value.frame) && 'value' in value;
@@ -1,2 +1,2 @@
1
- import type { SequenceSchema } from 'remotion';
2
- export declare const getAllSchemaKeys: (schema: SequenceSchema) => string[];
1
+ import type { InteractivitySchema } from 'remotion';
2
+ export declare const getAllSchemaKeys: (schema: InteractivitySchema) => string[];
package/dist/index.d.ts CHANGED
@@ -1,13 +1,15 @@
1
1
  export { splitAnsi, stripAnsi } from './ansi';
2
- export { AddEffectKeyframeRequest, AddEffectKeyframeResponse, AddKeyframesRequest, AddKeyframesResponse, AddEffectRequest, AddEffectResponse, AddRenderRequest, AddSequenceKeyframeRequest, AddSequenceKeyframeResponse, ApiRoutes, ApplyCodemodRequest, ApplyCodemodResponse, ApplyVisualControlRequest, ApplyVisualControlResponse, CanUpdateDefaultPropsResponse, CanUpdateSequencePropsRequest, CancelRenderRequest, CancelRenderResponse, CompositionComponentInfoRequest, CompositionComponentInfoResponse, CopyStillToClipboardRequest, DeleteEffectKeyframe, DeleteEffectRequest, DeleteEffectRequestItem, DeleteEffectResponse, DeleteJsxNodeRequest, DeleteJsxNodeRequestItem, DeleteJsxNodeResponse, DeleteKeyframesRequest, DeleteKeyframesResponse, DeleteSequenceKeyframe, DeleteStaticFileRequest, DeleteStaticFileResponse, DownloadRemoteAssetRequest, DownloadRemoteAssetResponse, DuplicateJsxNodeRequest, DuplicateJsxNodeResponse, InsertJsxElementRequest, InsertJsxElementResponse, InsertableCompositionElement, InsertableCompositionElementPosition, InstallPackageRequest, InstallPackageResponse, LogStudioErrorRequest, LogStudioErrorResponse, MoveEffectKeyframe, MoveKeyframesRequest, MoveKeyframesResponse, MoveSequenceKeyframe, OpenInEditorRequest, OpenInEditorResponse, OpenInFileExplorerRequest, PasteEffectsRequest, PasteEffectsResponse, ProjectInfoRequest, ProjectInfoResponse, RedoRequest, RedoResponse, RemoveRenderRequest, RenameStaticFileRequest, RenameStaticFileResponse, ReorderEffectRequest, ReorderEffectResponse, ReorderSequencePosition, ReorderSequenceRequest, ReorderSequenceResponse, RestartStudioRequest, RestartStudioResponse, SaveEffectPropsRequest, SaveEffectPropsResponse, SaveSequencePropEdit, SaveSequencePropsRequest, SaveSequencePropsResponse, SaveSequencePropsResult, SimpleDiff, SubscribeToDefaultPropsRequest, SubscribeToDefaultPropsResponse, SubscribeToFileExistenceRequest, SubscribeToFileExistenceResponse, SubscribeToSequencePropsRequest, SubscribeToSequencePropsResponse, UndoRequest, UndoResponse, UnsubscribeFromDefaultPropsRequest, UnsubscribeFromFileExistenceRequest, UnsubscribeFromSequencePropsRequest, UpdateAvailableRequest, UpdateAvailableResponse, UpdateDefaultPropsRequest, UpdateDefaultPropsResponse, UpdateEffectKeyframeSettingsRequest, UpdateEffectKeyframeSettingsResponse, UpdateSequenceKeyframeSettingsRequest, UpdateSequenceKeyframeSettingsResponse, type KeyframeSettings, type AddEffectKeyframe, type AddSequenceKeyframe, } from './api-requests';
2
+ export { AddEffectKeyframeRequest, AddEffectKeyframeResponse, AddKeyframesRequest, AddKeyframesResponse, AddEffectRequest, AddEffectResponse, AddRenderRequest, AddSequenceKeyframeRequest, AddSequenceKeyframeResponse, ApiRoutes, ApplyCodemodRequest, ApplyCodemodResponse, ApplyVisualControlRequest, ApplyVisualControlResponse, CanUpdateDefaultPropsResponse, CanUpdateSequencePropsRequest, CancelRenderRequest, CancelRenderResponse, CompositionComponentInfoRequest, CompositionComponentInfoResponse, CopyStillToClipboardRequest, DeleteEffectKeyframe, DeleteEffectRequest, DeleteEffectRequestItem, DeleteEffectResponse, DeleteJsxNodeRequest, DeleteJsxNodeRequestItem, DeleteJsxNodeResponse, DeleteKeyframesRequest, DeleteKeyframesResponse, DeleteSequenceKeyframe, DeleteStaticFileRequest, DeleteStaticFileResponse, DownloadRemoteAssetRequest, DownloadRemoteAssetResponse, DuplicateEffectRequest, DuplicateEffectRequestItem, DuplicateEffectResponse, DuplicateJsxNodeRequest, DuplicateJsxNodeResponse, InsertJsxElementRequest, InsertJsxElementResponse, InsertableCompositionElement, InsertableCompositionElementPosition, InstallPackageRequest, InstallPackageResponse, LogStudioErrorRequest, LogStudioErrorResponse, MoveEffectKeyframe, MoveKeyframesRequest, MoveKeyframesResponse, MoveSequenceKeyframe, OpenInEditorRequest, OpenInEditorResponse, OpenInFileExplorerRequest, PasteEffectsRequest, PasteEffectsResponse, ProjectInfoRequest, ProjectInfoResponse, RedoRequest, RedoResponse, RemoveRenderRequest, RenameStaticFileRequest, RenameStaticFileResponse, ReorderEffectRequest, ReorderEffectResponse, ReorderSequencePosition, ReorderSequenceRequest, ReorderSequenceResponse, RestartStudioRequest, RestartStudioResponse, SaveEffectPropsRequest, SaveEffectPropsResponse, SaveSequencePropEdit, SaveSequencePropsRequest, SaveSequencePropsResponse, SaveSequencePropsResult, SimpleDiff, SubscribeToDefaultPropsRequest, SubscribeToDefaultPropsResponse, SubscribeToFileExistenceRequest, SubscribeToFileExistenceResponse, SubscribeToSequencePropsRequest, SubscribeToSequencePropsResponse, UndoRequest, UndoResponse, UnsubscribeFromDefaultPropsRequest, UnsubscribeFromFileExistenceRequest, UnsubscribeFromSequencePropsRequest, UpdateAvailableRequest, UpdateAvailableResponse, UpdateDefaultPropsRequest, UpdateDefaultPropsResponse, UpdateEffectKeyframeSettingsRequest, UpdateEffectKeyframeSettingsResponse, UpdateSequenceKeyframeSettingsRequest, UpdateSequenceKeyframeSettingsResponse, type KeyframeSettings, type AddEffectKeyframe, type AddSequenceKeyframe, } from './api-requests';
3
3
  export { ASSET_DRAG_MIME_TYPE, makeAssetDragData, parseAssetDragData, type AssetDragData, } from './asset-drag-data';
4
4
  export type { ApplyVisualControlCodemod, RecastCodemod } from './codemods';
5
- export { COMPONENT_DRAG_MIME_TYPE, areComponentProps, isComponentIdentifier, isComponentImportPath, makeComponentDragData, parseComponentDragData, type ComponentDragData, type ComponentProp, } from './component-drag-data';
5
+ export { COMPONENT_DRAG_MIME_TYPE, areComponentProps, isComponentIdentifier, isComponentImportPath, makeComponentDragData, parseComponentDragData, type ComponentDimensions, type ComponentDragData, type ComponentProp, } from './component-drag-data';
6
6
  export { DEFAULT_BUFFER_STATE_DELAY_IN_MILLISECONDS } from './default-buffer-state-delay-in-milliseconds';
7
- export { KEYFRAME_EASING_PRESETS, type KeyframeEasingPreset, } from './keyframe-easing-presets';
7
+ export { KEYFRAME_EASING_PRESETS, LINEAR_KEYFRAME_EASING, type KeyframeEasing, type KeyframeEasingPreset, } from './keyframe-easing-presets';
8
8
  export { detectFileType, isImageFileType, type FileDimensions, type FileType, type ImageFileType, } from './detect-file-type';
9
+ export { parseEasingClipboardData, parseEasingClipboardDataResult, type EasingClipboardData, type EasingClipboardDataParseResult, } from './easing-clipboard-data';
9
10
  export { parseEffectClipboardData, parseEffectClipboardDataResult, parseEffectPropClipboardData, parseEffectPropClipboardDataResult, type EffectClipboardClamping, type EffectClipboardData, type EffectClipboardDataParseResult, type EffectClipboardEasing, type EffectClipboardExtrapolateType, type EffectClipboardInterpolationFunction, type EffectClipboardKeyframe, type EffectClipboardKeyframedParam, type EffectClipboardParam, type EffectClipboardPasteType, type EffectClipboardSnapshot, type EffectClipboardStaticParam, type EffectPropClipboardData, type EffectPropClipboardDataParseResult, } from './effect-clipboard-data';
10
11
  export { EFFECT_DRAG_MIME_TYPE, parseEffectDragData, type EffectDragData, } from './effect-drag-data';
12
+ export { EFFECT_CATALOG, getEffectCatalogCategories, getEffectDocumentationLink, getEffectDocumentationPath, getEffectPreviewAlt, getEffectPreviewSource, makeEffectDragDataFromCatalogItem, type EffectCatalogCategory, type EffectCatalogItem, } from './effect-catalog';
11
13
  export { EventSourceEvent } from './event-source-event';
12
14
  export { formatBytes } from './format-bytes';
13
15
  export { getAllSchemaKeys } from './get-all-keys';
@@ -16,7 +18,8 @@ export { ErrorLocation, getLocationFromBuildError, } from './get-location-from-b
16
18
  export { getProjectName } from './get-project-name';
17
19
  export type { GitSource } from './git-source';
18
20
  export { HotMiddlewareMessage, HotMiddlewareOptions, ModuleMap, hotMiddlewareOptions, } from './hot-middleware';
19
- export { getKeyframeInterpolationFunction, getKeyframeInterpolationFunctionForSchemaField, isKeyframeInterpolationFunction, isSchemaFieldKeyframable, isSequenceFieldSchemaKeyframable, keyframeInterpolationFunctions, type KeyframeInterpolationFunction, } from './keyframe-interpolation-function';
21
+ export { getKeyframeInterpolationFunction, getKeyframeInterpolationFunctionForSchemaField, isKeyframeInterpolationFunction, isSchemaFieldKeyframable, isInteractivitySchemaFieldKeyframable, keyframeInterpolationFunctions, type KeyframeInterpolationFunction, } from './keyframe-interpolation-function';
22
+ export { DEFAULT_SPRING_EASING, parseSpringEasingConfig, type SpringKeyframeEasing, } from './parse-spring-easing-config';
20
23
  export { DEFAULT_TIMELINE_TRACKS } from './max-timeline-tracks';
21
24
  export { Pkgs, apiDocs, descriptions, extraPackages, installableMap, packages, type ExtraPackage, } from './package-info';
22
25
  export { PackageManager } from './package-manager';
@@ -26,7 +29,7 @@ export { AggregateRenderProgress, ArtifactProgress, BrowserDownloadState, Browse
26
29
  export type { CompletedClientRender } from './render-job';
27
30
  export { getRequiredPackageForEffectImportPath, getRequiredPackageForInsertableElement, } from './required-package';
28
31
  export { SCHEMA_FIELD_ROW_HEIGHT, getEffectFieldsToShow, getFieldsToShow, } from './schema-field-info';
29
- export type { AnySchemaFieldInfo, DragOverrides, EffectSchemaFieldInfo, PropStatuses, SchemaFieldInfo, SequenceControls, SequenceSchemaFieldInfo, } from './schema-field-info';
32
+ export type { AnySchemaFieldInfo, DragOverrides, EffectSchemaFieldInfo, PropStatuses, SchemaFieldInfo, SequenceControls, InteractivitySchemaFieldInfo, } from './schema-field-info';
30
33
  export { SFX_DRAG_MIME_TYPE, parseSfxDragData, type SfxDragData, } from './sfx-drag-data';
31
34
  export { ScriptLine, SomeStackFrame, StackFrame, SymbolicatedStackFrame, } from './stack-types';
32
35
  export { EnumPath, stringifyDefaultProps } from './stringify-default-props';