free-figma-mcp 0.1.0

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.
Files changed (91) hide show
  1. package/cli.js +298 -0
  2. package/data/motion-presets.json +4316 -0
  3. package/figma-plugin/code.js +1805 -0
  4. package/figma-plugin/manifest.json +14 -0
  5. package/figma-plugin/ui.html +486 -0
  6. package/package.json +57 -0
  7. package/powers/local-figma/POWER.md +112 -0
  8. package/powers/local-figma/mcp.json +13 -0
  9. package/powers/local-figma/steering/code-connect.md +32 -0
  10. package/powers/local-figma/steering/config-2026.md +28 -0
  11. package/powers/local-figma/steering/implement-design.md +37 -0
  12. package/powers/local-figma/steering/setup.md +68 -0
  13. package/powers/local-figma/steering/use-figjam.md +24 -0
  14. package/powers/local-figma/steering/use-figma.md +40 -0
  15. package/server.js +47 -0
  16. package/skills/figma-code-connect/SKILL.md +527 -0
  17. package/skills/figma-code-connect/references/advanced-patterns.md +286 -0
  18. package/skills/figma-code-connect/references/api.md +1014 -0
  19. package/skills/figma-create-design-system-rules/SKILL.md +538 -0
  20. package/skills/figma-generate-design/SKILL.md +410 -0
  21. package/skills/figma-generate-diagram/SKILL.md +112 -0
  22. package/skills/figma-generate-diagram/references/architecture.md +150 -0
  23. package/skills/figma-generate-diagram/references/erd.md +313 -0
  24. package/skills/figma-generate-diagram/references/flowchart.md +392 -0
  25. package/skills/figma-generate-diagram/references/gantt.md +242 -0
  26. package/skills/figma-generate-diagram/references/sequence.md +251 -0
  27. package/skills/figma-generate-diagram/references/state.md +310 -0
  28. package/skills/figma-generate-diagram/references/workflow.md +130 -0
  29. package/skills/figma-generate-library/SKILL.md +315 -0
  30. package/skills/figma-generate-library/references/code-connect-setup.md +260 -0
  31. package/skills/figma-generate-library/references/component-creation.md +972 -0
  32. package/skills/figma-generate-library/references/discovery-phase.md +495 -0
  33. package/skills/figma-generate-library/references/documentation-creation.md +802 -0
  34. package/skills/figma-generate-library/references/error-recovery.md +514 -0
  35. package/skills/figma-generate-library/references/naming-conventions.md +527 -0
  36. package/skills/figma-generate-library/references/token-creation.md +897 -0
  37. package/skills/figma-generate-library/scripts/bindVariablesToComponent.js +110 -0
  38. package/skills/figma-generate-library/scripts/cleanupOrphans.js +127 -0
  39. package/skills/figma-generate-library/scripts/createComponentWithVariants.js +148 -0
  40. package/skills/figma-generate-library/scripts/createDocumentationPage.js +145 -0
  41. package/skills/figma-generate-library/scripts/createSemanticTokens.js +108 -0
  42. package/skills/figma-generate-library/scripts/createVariableCollection.js +49 -0
  43. package/skills/figma-generate-library/scripts/inspectFileStructure.js +121 -0
  44. package/skills/figma-generate-library/scripts/rehydrateState.js +92 -0
  45. package/skills/figma-generate-library/scripts/validateCreation.js +83 -0
  46. package/skills/figma-motion/SKILL.md +52 -0
  47. package/skills/figma-motion-replicate/SKILL.md +113 -0
  48. package/skills/figma-shaders/SKILL.md +38 -0
  49. package/skills/figma-slots/SKILL.md +41 -0
  50. package/skills/figma-text-motion/SKILL.md +53 -0
  51. package/skills/generate-project-plan/SKILL.md +494 -0
  52. package/skills/generate-project-plan/references/blocks/diagram-section.md +249 -0
  53. package/skills/generate-project-plan/references/blocks/intro-callout.md +82 -0
  54. package/skills/generate-project-plan/references/blocks/metadata-strip.md +101 -0
  55. package/skills/generate-project-plan/references/blocks/multi-column-text.md +151 -0
  56. package/skills/generate-project-plan/references/blocks/nested-section.md +105 -0
  57. package/skills/generate-project-plan/references/blocks/section.md +70 -0
  58. package/skills/generate-project-plan/references/blocks/sticky-column.md +83 -0
  59. package/skills/generate-project-plan/references/blocks/table.md +112 -0
  60. package/skills/generate-project-plan/references/blocks/text-primitives.md +114 -0
  61. package/skills/generate-project-plan/references/foundation/codebase-grounding.md +92 -0
  62. package/skills/generate-project-plan/references/foundation/layout.md +112 -0
  63. package/skills/generate-project-plan/references/foundation/palette.md +155 -0
  64. package/skills/generate-project-plan/references/foundation/plugin-api-traps.md +180 -0
  65. package/skills/generate-project-plan/references/section-catalog.md +198 -0
  66. package/skills/local-figma-implement-design/SKILL.md +66 -0
  67. package/skills/local-figma-use/SKILL.md +76 -0
  68. package/skills/local-figma-use/references/common-patterns.md +112 -0
  69. package/skills/local-figma-use/references/component-patterns.md +130 -0
  70. package/skills/local-figma-use/references/gotchas.md +120 -0
  71. package/skills/local-figma-use/references/validation-and-recovery.md +53 -0
  72. package/skills/local-figma-use/references/variable-patterns.md +98 -0
  73. package/skills/local-figma-use-figjam/SKILL.md +31 -0
  74. package/skills/local-figma-use-figjam/references/diagram-patterns.md +55 -0
  75. package/skills/local-figma-use-figjam/references/figjam-patterns.md +68 -0
  76. package/skills/local-figma-use-figjam/references/validation.md +46 -0
  77. package/src/api-catalog.js +100 -0
  78. package/src/bridge.js +374 -0
  79. package/src/capabilities.js +86 -0
  80. package/src/code-connect-store.js +38 -0
  81. package/src/config.js +43 -0
  82. package/src/content.js +27 -0
  83. package/src/generators/motion.js +184 -0
  84. package/src/generators/preset-bake.js +121 -0
  85. package/src/generators/scene-replicate.js +129 -0
  86. package/src/generators/typewriter.js +91 -0
  87. package/src/guidance.js +83 -0
  88. package/src/installer.js +507 -0
  89. package/src/preset-store.js +49 -0
  90. package/src/schema-probe.js +119 -0
  91. package/src/tools.js +646 -0
@@ -0,0 +1,4316 @@
1
+ {
2
+ "Burst": {
3
+ "name": "Burst",
4
+ "category": "enter",
5
+ "speed": "Fast",
6
+ "source": "figma-ui-bake",
7
+ "durationSec": 0.3,
8
+ "tracks": [
9
+ {
10
+ "property": "OPACITY",
11
+ "keyframes": [
12
+ {
13
+ "timelinePosition": 0,
14
+ "value": {
15
+ "type": "FLOAT",
16
+ "value": 0
17
+ },
18
+ "easing": {
19
+ "type": "CUSTOM_CUBIC_BEZIER",
20
+ "easingFunctionCubicBezier": {
21
+ "x1": 0.5,
22
+ "y1": 0,
23
+ "x2": 0.5,
24
+ "y2": 1
25
+ }
26
+ }
27
+ },
28
+ {
29
+ "timelinePosition": 0.03,
30
+ "value": {
31
+ "type": "FLOAT",
32
+ "value": 1
33
+ },
34
+ "easing": {
35
+ "type": "CUSTOM_CUBIC_BEZIER",
36
+ "easingFunctionCubicBezier": {
37
+ "x1": 0.5,
38
+ "y1": 0,
39
+ "x2": 0.5,
40
+ "y2": 1
41
+ }
42
+ }
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "property": "ROTATION",
48
+ "keyframes": [
49
+ {
50
+ "timelinePosition": 0,
51
+ "value": {
52
+ "type": "FLOAT",
53
+ "value": 90
54
+ },
55
+ "easing": {
56
+ "type": "CUSTOM_CUBIC_BEZIER",
57
+ "easingFunctionCubicBezier": {
58
+ "x1": 0.07,
59
+ "y1": 0.97,
60
+ "x2": 0.58,
61
+ "y2": 1
62
+ }
63
+ }
64
+ },
65
+ {
66
+ "timelinePosition": 0.3,
67
+ "value": {
68
+ "type": "FLOAT",
69
+ "value": 0
70
+ },
71
+ "easing": {
72
+ "type": "CUSTOM_CUBIC_BEZIER",
73
+ "easingFunctionCubicBezier": {
74
+ "x1": 0.07,
75
+ "y1": 0.97,
76
+ "x2": 0.58,
77
+ "y2": 1
78
+ }
79
+ }
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "property": "SCALE_X",
85
+ "keyframes": [
86
+ {
87
+ "timelinePosition": 0,
88
+ "value": {
89
+ "type": "FLOAT",
90
+ "value": 0.8
91
+ },
92
+ "easing": {
93
+ "type": "CUSTOM_CUBIC_BEZIER",
94
+ "easingFunctionCubicBezier": {
95
+ "x1": 0.07,
96
+ "y1": 0.97,
97
+ "x2": 0.58,
98
+ "y2": 1
99
+ }
100
+ }
101
+ },
102
+ {
103
+ "timelinePosition": 0.3,
104
+ "value": {
105
+ "type": "FLOAT",
106
+ "value": 1
107
+ },
108
+ "easing": {
109
+ "type": "CUSTOM_CUBIC_BEZIER",
110
+ "easingFunctionCubicBezier": {
111
+ "x1": 0.07,
112
+ "y1": 0.97,
113
+ "x2": 0.58,
114
+ "y2": 1
115
+ }
116
+ }
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ "property": "SCALE_Y",
122
+ "keyframes": [
123
+ {
124
+ "timelinePosition": 0,
125
+ "value": {
126
+ "type": "FLOAT",
127
+ "value": 0.8
128
+ },
129
+ "easing": {
130
+ "type": "CUSTOM_CUBIC_BEZIER",
131
+ "easingFunctionCubicBezier": {
132
+ "x1": 0.07,
133
+ "y1": 0.97,
134
+ "x2": 0.58,
135
+ "y2": 1
136
+ }
137
+ }
138
+ },
139
+ {
140
+ "timelinePosition": 0.3,
141
+ "value": {
142
+ "type": "FLOAT",
143
+ "value": 1
144
+ },
145
+ "easing": {
146
+ "type": "CUSTOM_CUBIC_BEZIER",
147
+ "easingFunctionCubicBezier": {
148
+ "x1": 0.07,
149
+ "y1": 0.97,
150
+ "x2": 0.58,
151
+ "y2": 1
152
+ }
153
+ }
154
+ }
155
+ ]
156
+ },
157
+ {
158
+ "property": "TRANSLATION_Y",
159
+ "keyframes": [
160
+ {
161
+ "timelinePosition": 0,
162
+ "value": {
163
+ "type": "FLOAT",
164
+ "value": 116
165
+ },
166
+ "easing": {
167
+ "type": "CUSTOM_CUBIC_BEZIER",
168
+ "easingFunctionCubicBezier": {
169
+ "x1": 0.07,
170
+ "y1": 0.97,
171
+ "x2": 0.58,
172
+ "y2": 1
173
+ }
174
+ }
175
+ },
176
+ {
177
+ "timelinePosition": 0.3,
178
+ "value": {
179
+ "type": "FLOAT",
180
+ "value": 0
181
+ },
182
+ "easing": {
183
+ "type": "CUSTOM_CUBIC_BEZIER",
184
+ "easingFunctionCubicBezier": {
185
+ "x1": 0.07,
186
+ "y1": 0.97,
187
+ "x2": 0.58,
188
+ "y2": 1
189
+ }
190
+ }
191
+ }
192
+ ]
193
+ }
194
+ ]
195
+ },
196
+ "Ignite": {
197
+ "name": "Ignite",
198
+ "category": "enter",
199
+ "speed": "Fast",
200
+ "source": "figma-ui-bake",
201
+ "durationSec": 0.3,
202
+ "tracks": [
203
+ {
204
+ "property": "OPACITY",
205
+ "keyframes": [
206
+ {
207
+ "timelinePosition": 0,
208
+ "value": {
209
+ "type": "FLOAT",
210
+ "value": 0
211
+ },
212
+ "easing": {
213
+ "type": "CUSTOM_CUBIC_BEZIER",
214
+ "easingFunctionCubicBezier": {
215
+ "x1": 0.5,
216
+ "y1": 0,
217
+ "x2": 0.5,
218
+ "y2": 1
219
+ }
220
+ }
221
+ },
222
+ {
223
+ "timelinePosition": 0.08,
224
+ "value": {
225
+ "type": "FLOAT",
226
+ "value": 1
227
+ },
228
+ "easing": {
229
+ "type": "CUSTOM_CUBIC_BEZIER",
230
+ "easingFunctionCubicBezier": {
231
+ "x1": 0.5,
232
+ "y1": 0,
233
+ "x2": 0.5,
234
+ "y2": 1
235
+ }
236
+ }
237
+ }
238
+ ]
239
+ },
240
+ {
241
+ "property": "ROTATION",
242
+ "keyframes": [
243
+ {
244
+ "timelinePosition": 0,
245
+ "value": {
246
+ "type": "FLOAT",
247
+ "value": -60
248
+ },
249
+ "easing": {
250
+ "type": "CUSTOM_CUBIC_BEZIER",
251
+ "easingFunctionCubicBezier": {
252
+ "x1": 0.15,
253
+ "y1": 0.85,
254
+ "x2": 0.3,
255
+ "y2": 1
256
+ }
257
+ }
258
+ },
259
+ {
260
+ "timelinePosition": 0.3,
261
+ "value": {
262
+ "type": "FLOAT",
263
+ "value": 0
264
+ },
265
+ "easing": {
266
+ "type": "CUSTOM_CUBIC_BEZIER",
267
+ "easingFunctionCubicBezier": {
268
+ "x1": 0.15,
269
+ "y1": 0.85,
270
+ "x2": 0.3,
271
+ "y2": 1
272
+ }
273
+ }
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "property": "SCALE_X",
279
+ "keyframes": [
280
+ {
281
+ "timelinePosition": 0,
282
+ "value": {
283
+ "type": "FLOAT",
284
+ "value": 0
285
+ },
286
+ "easing": {
287
+ "type": "CUSTOM_CUBIC_BEZIER",
288
+ "easingFunctionCubicBezier": {
289
+ "x1": 0.15,
290
+ "y1": 0.85,
291
+ "x2": 0.3,
292
+ "y2": 1
293
+ }
294
+ }
295
+ },
296
+ {
297
+ "timelinePosition": 0.3,
298
+ "value": {
299
+ "type": "FLOAT",
300
+ "value": 1
301
+ },
302
+ "easing": {
303
+ "type": "CUSTOM_CUBIC_BEZIER",
304
+ "easingFunctionCubicBezier": {
305
+ "x1": 0.15,
306
+ "y1": 0.85,
307
+ "x2": 0.3,
308
+ "y2": 1
309
+ }
310
+ }
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "property": "SCALE_Y",
316
+ "keyframes": [
317
+ {
318
+ "timelinePosition": 0,
319
+ "value": {
320
+ "type": "FLOAT",
321
+ "value": 0
322
+ },
323
+ "easing": {
324
+ "type": "CUSTOM_CUBIC_BEZIER",
325
+ "easingFunctionCubicBezier": {
326
+ "x1": 0.15,
327
+ "y1": 0.85,
328
+ "x2": 0.3,
329
+ "y2": 1
330
+ }
331
+ }
332
+ },
333
+ {
334
+ "timelinePosition": 0.3,
335
+ "value": {
336
+ "type": "FLOAT",
337
+ "value": 1
338
+ },
339
+ "easing": {
340
+ "type": "CUSTOM_CUBIC_BEZIER",
341
+ "easingFunctionCubicBezier": {
342
+ "x1": 0.15,
343
+ "y1": 0.85,
344
+ "x2": 0.3,
345
+ "y2": 1
346
+ }
347
+ }
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "property": "TRANSLATION_Y",
353
+ "keyframes": [
354
+ {
355
+ "timelinePosition": 0,
356
+ "value": {
357
+ "type": "FLOAT",
358
+ "value": 20
359
+ },
360
+ "easing": {
361
+ "type": "CUSTOM_CUBIC_BEZIER",
362
+ "easingFunctionCubicBezier": {
363
+ "x1": 0.15,
364
+ "y1": 0.85,
365
+ "x2": 0.3,
366
+ "y2": 1
367
+ }
368
+ }
369
+ },
370
+ {
371
+ "timelinePosition": 0.3,
372
+ "value": {
373
+ "type": "FLOAT",
374
+ "value": 0
375
+ },
376
+ "easing": {
377
+ "type": "CUSTOM_CUBIC_BEZIER",
378
+ "easingFunctionCubicBezier": {
379
+ "x1": 0.15,
380
+ "y1": 0.85,
381
+ "x2": 0.3,
382
+ "y2": 1
383
+ }
384
+ }
385
+ }
386
+ ]
387
+ }
388
+ ]
389
+ },
390
+ "Sweep": {
391
+ "name": "Sweep",
392
+ "category": "enter",
393
+ "speed": "Fast",
394
+ "source": "figma-ui-bake",
395
+ "durationSec": 0.3,
396
+ "tracks": [
397
+ {
398
+ "property": "OPACITY",
399
+ "keyframes": [
400
+ {
401
+ "timelinePosition": 0,
402
+ "value": {
403
+ "type": "FLOAT",
404
+ "value": 0
405
+ },
406
+ "easing": {
407
+ "type": "CUSTOM_CUBIC_BEZIER",
408
+ "easingFunctionCubicBezier": {
409
+ "x1": 0.5,
410
+ "y1": 0,
411
+ "x2": 0.5,
412
+ "y2": 1
413
+ }
414
+ }
415
+ },
416
+ {
417
+ "timelinePosition": 0.08,
418
+ "value": {
419
+ "type": "FLOAT",
420
+ "value": 1
421
+ },
422
+ "easing": {
423
+ "type": "CUSTOM_CUBIC_BEZIER",
424
+ "easingFunctionCubicBezier": {
425
+ "x1": 0.5,
426
+ "y1": 0,
427
+ "x2": 0.5,
428
+ "y2": 1
429
+ }
430
+ }
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "property": "TRANSLATION_X",
436
+ "keyframes": [
437
+ {
438
+ "timelinePosition": 0,
439
+ "value": {
440
+ "type": "FLOAT",
441
+ "value": 120
442
+ },
443
+ "easing": {
444
+ "type": "CUSTOM_CUBIC_BEZIER",
445
+ "easingFunctionCubicBezier": {
446
+ "x1": 0.5,
447
+ "y1": 1.7,
448
+ "x2": 0.3,
449
+ "y2": 1
450
+ }
451
+ }
452
+ },
453
+ {
454
+ "timelinePosition": 0.3,
455
+ "value": {
456
+ "type": "FLOAT",
457
+ "value": 0
458
+ },
459
+ "easing": {
460
+ "type": "CUSTOM_CUBIC_BEZIER",
461
+ "easingFunctionCubicBezier": {
462
+ "x1": 0.5,
463
+ "y1": 1.7,
464
+ "x2": 0.3,
465
+ "y2": 1
466
+ }
467
+ }
468
+ }
469
+ ]
470
+ }
471
+ ]
472
+ },
473
+ "Slam": {
474
+ "name": "Slam",
475
+ "category": "enter",
476
+ "speed": "Fast",
477
+ "source": "figma-ui-bake",
478
+ "durationSec": 0.1,
479
+ "tracks": [
480
+ {
481
+ "property": "OPACITY",
482
+ "keyframes": [
483
+ {
484
+ "timelinePosition": 0,
485
+ "value": {
486
+ "type": "FLOAT",
487
+ "value": 0
488
+ },
489
+ "easing": {
490
+ "type": "CUSTOM_CUBIC_BEZIER",
491
+ "easingFunctionCubicBezier": {
492
+ "x1": 0.5,
493
+ "y1": 0,
494
+ "x2": 0.5,
495
+ "y2": 1
496
+ }
497
+ }
498
+ },
499
+ {
500
+ "timelinePosition": 0.08,
501
+ "value": {
502
+ "type": "FLOAT",
503
+ "value": 1
504
+ },
505
+ "easing": {
506
+ "type": "CUSTOM_CUBIC_BEZIER",
507
+ "easingFunctionCubicBezier": {
508
+ "x1": 0.5,
509
+ "y1": 0,
510
+ "x2": 0.5,
511
+ "y2": 1
512
+ }
513
+ }
514
+ }
515
+ ]
516
+ },
517
+ {
518
+ "property": "SCALE_X",
519
+ "keyframes": [
520
+ {
521
+ "timelinePosition": 0,
522
+ "value": {
523
+ "type": "FLOAT",
524
+ "value": 1
525
+ },
526
+ "easing": {
527
+ "type": "CUSTOM_CUBIC_BEZIER",
528
+ "easingFunctionCubicBezier": {
529
+ "x1": 0.15,
530
+ "y1": 0.85,
531
+ "x2": 0.3,
532
+ "y2": 1
533
+ }
534
+ }
535
+ },
536
+ {
537
+ "timelinePosition": 0.03,
538
+ "value": {
539
+ "type": "FLOAT",
540
+ "value": 1.2
541
+ },
542
+ "easing": {
543
+ "type": "CUSTOM_CUBIC_BEZIER",
544
+ "easingFunctionCubicBezier": {
545
+ "x1": 0.15,
546
+ "y1": 0.85,
547
+ "x2": 0.3,
548
+ "y2": 1
549
+ }
550
+ }
551
+ }
552
+ ]
553
+ },
554
+ {
555
+ "property": "SCALE_Y",
556
+ "keyframes": [
557
+ {
558
+ "timelinePosition": 0,
559
+ "value": {
560
+ "type": "FLOAT",
561
+ "value": 1
562
+ },
563
+ "easing": {
564
+ "type": "CUSTOM_CUBIC_BEZIER",
565
+ "easingFunctionCubicBezier": {
566
+ "x1": 0.15,
567
+ "y1": 0.85,
568
+ "x2": 0.3,
569
+ "y2": 1
570
+ }
571
+ }
572
+ },
573
+ {
574
+ "timelinePosition": 0.03,
575
+ "value": {
576
+ "type": "FLOAT",
577
+ "value": 0.8
578
+ },
579
+ "easing": {
580
+ "type": "CUSTOM_CUBIC_BEZIER",
581
+ "easingFunctionCubicBezier": {
582
+ "x1": 0.15,
583
+ "y1": 0.85,
584
+ "x2": 0.3,
585
+ "y2": 1
586
+ }
587
+ }
588
+ }
589
+ ]
590
+ },
591
+ {
592
+ "property": "TRANSLATION_Y",
593
+ "keyframes": [
594
+ {
595
+ "timelinePosition": 0,
596
+ "value": {
597
+ "type": "FLOAT",
598
+ "value": -120
599
+ },
600
+ "easing": {
601
+ "type": "CUSTOM_CUBIC_BEZIER",
602
+ "easingFunctionCubicBezier": {
603
+ "x1": 0.58,
604
+ "y1": 0.26,
605
+ "x2": 1,
606
+ "y2": 1
607
+ }
608
+ }
609
+ },
610
+ {
611
+ "timelinePosition": 0.1,
612
+ "value": {
613
+ "type": "FLOAT",
614
+ "value": 0
615
+ },
616
+ "easing": {
617
+ "type": "CUSTOM_CUBIC_BEZIER",
618
+ "easingFunctionCubicBezier": {
619
+ "x1": 0.58,
620
+ "y1": 0.26,
621
+ "x2": 1,
622
+ "y2": 1
623
+ }
624
+ }
625
+ }
626
+ ]
627
+ }
628
+ ]
629
+ },
630
+ "Descend": {
631
+ "name": "Descend",
632
+ "category": "enter",
633
+ "speed": "Medium",
634
+ "source": "figma-ui-bake",
635
+ "durationSec": 0.6,
636
+ "tracks": [
637
+ {
638
+ "property": "OPACITY",
639
+ "keyframes": [
640
+ {
641
+ "timelinePosition": 0,
642
+ "value": {
643
+ "type": "FLOAT",
644
+ "value": 0
645
+ },
646
+ "easing": {
647
+ "type": "CUSTOM_CUBIC_BEZIER",
648
+ "easingFunctionCubicBezier": {
649
+ "x1": 0.5,
650
+ "y1": 0,
651
+ "x2": 0.5,
652
+ "y2": 1
653
+ }
654
+ }
655
+ },
656
+ {
657
+ "timelinePosition": 0.4,
658
+ "value": {
659
+ "type": "FLOAT",
660
+ "value": 1
661
+ },
662
+ "easing": {
663
+ "type": "CUSTOM_CUBIC_BEZIER",
664
+ "easingFunctionCubicBezier": {
665
+ "x1": 0.5,
666
+ "y1": 0,
667
+ "x2": 0.5,
668
+ "y2": 1
669
+ }
670
+ }
671
+ }
672
+ ]
673
+ },
674
+ {
675
+ "property": "TRANSLATION_Y",
676
+ "keyframes": [
677
+ {
678
+ "timelinePosition": 0,
679
+ "value": {
680
+ "type": "FLOAT",
681
+ "value": -40
682
+ },
683
+ "easing": {
684
+ "type": "CUSTOM_CUBIC_BEZIER",
685
+ "easingFunctionCubicBezier": {
686
+ "x1": 0.05,
687
+ "y1": 0.4,
688
+ "x2": 0.5,
689
+ "y2": 1
690
+ }
691
+ }
692
+ },
693
+ {
694
+ "timelinePosition": 0.6,
695
+ "value": {
696
+ "type": "FLOAT",
697
+ "value": 0
698
+ },
699
+ "easing": {
700
+ "type": "CUSTOM_CUBIC_BEZIER",
701
+ "easingFunctionCubicBezier": {
702
+ "x1": 0.05,
703
+ "y1": 0.4,
704
+ "x2": 0.5,
705
+ "y2": 1
706
+ }
707
+ }
708
+ }
709
+ ]
710
+ }
711
+ ]
712
+ },
713
+ "Magnify": {
714
+ "name": "Magnify",
715
+ "category": "enter",
716
+ "speed": "Medium",
717
+ "source": "figma-ui-bake",
718
+ "durationSec": 0.9,
719
+ "tracks": [
720
+ {
721
+ "property": "SCALE_X",
722
+ "keyframes": [
723
+ {
724
+ "timelinePosition": 0,
725
+ "value": {
726
+ "type": "FLOAT",
727
+ "value": 0
728
+ },
729
+ "easing": {
730
+ "type": "CUSTOM_CUBIC_BEZIER",
731
+ "easingFunctionCubicBezier": {
732
+ "x1": 0.4,
733
+ "y1": 1.75,
734
+ "x2": 0.3,
735
+ "y2": 1
736
+ }
737
+ }
738
+ },
739
+ {
740
+ "timelinePosition": 0.9,
741
+ "value": {
742
+ "type": "FLOAT",
743
+ "value": 1
744
+ },
745
+ "easing": {
746
+ "type": "CUSTOM_CUBIC_BEZIER",
747
+ "easingFunctionCubicBezier": {
748
+ "x1": 0.4,
749
+ "y1": 1.75,
750
+ "x2": 0.3,
751
+ "y2": 1
752
+ }
753
+ }
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "property": "SCALE_Y",
759
+ "keyframes": [
760
+ {
761
+ "timelinePosition": 0,
762
+ "value": {
763
+ "type": "FLOAT",
764
+ "value": 0
765
+ },
766
+ "easing": {
767
+ "type": "CUSTOM_CUBIC_BEZIER",
768
+ "easingFunctionCubicBezier": {
769
+ "x1": 0.4,
770
+ "y1": 1.75,
771
+ "x2": 0.3,
772
+ "y2": 1
773
+ }
774
+ }
775
+ },
776
+ {
777
+ "timelinePosition": 0.9,
778
+ "value": {
779
+ "type": "FLOAT",
780
+ "value": 1
781
+ },
782
+ "easing": {
783
+ "type": "CUSTOM_CUBIC_BEZIER",
784
+ "easingFunctionCubicBezier": {
785
+ "x1": 0.4,
786
+ "y1": 1.75,
787
+ "x2": 0.3,
788
+ "y2": 1
789
+ }
790
+ }
791
+ }
792
+ ]
793
+ }
794
+ ]
795
+ },
796
+ "Glide": {
797
+ "name": "Glide",
798
+ "category": "enter",
799
+ "speed": "Medium",
800
+ "source": "figma-ui-bake",
801
+ "durationSec": 0.6,
802
+ "tracks": [
803
+ {
804
+ "property": "OPACITY",
805
+ "keyframes": [
806
+ {
807
+ "timelinePosition": 0,
808
+ "value": {
809
+ "type": "FLOAT",
810
+ "value": 0
811
+ },
812
+ "easing": {
813
+ "type": "CUSTOM_CUBIC_BEZIER",
814
+ "easingFunctionCubicBezier": {
815
+ "x1": 0.5,
816
+ "y1": 0,
817
+ "x2": 0.5,
818
+ "y2": 1
819
+ }
820
+ }
821
+ },
822
+ {
823
+ "timelinePosition": 0.15,
824
+ "value": {
825
+ "type": "FLOAT",
826
+ "value": 1
827
+ },
828
+ "easing": {
829
+ "type": "CUSTOM_CUBIC_BEZIER",
830
+ "easingFunctionCubicBezier": {
831
+ "x1": 0.5,
832
+ "y1": 0,
833
+ "x2": 0.5,
834
+ "y2": 1
835
+ }
836
+ }
837
+ }
838
+ ]
839
+ },
840
+ {
841
+ "property": "TRANSLATION_X",
842
+ "keyframes": [
843
+ {
844
+ "timelinePosition": 0,
845
+ "value": {
846
+ "type": "FLOAT",
847
+ "value": -120
848
+ },
849
+ "easing": {
850
+ "type": "CUSTOM_CUBIC_BEZIER",
851
+ "easingFunctionCubicBezier": {
852
+ "x1": 0.05,
853
+ "y1": 0.4,
854
+ "x2": 0.5,
855
+ "y2": 1
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "timelinePosition": 0.6,
861
+ "value": {
862
+ "type": "FLOAT",
863
+ "value": 0
864
+ },
865
+ "easing": {
866
+ "type": "CUSTOM_CUBIC_BEZIER",
867
+ "easingFunctionCubicBezier": {
868
+ "x1": 0.05,
869
+ "y1": 0.4,
870
+ "x2": 0.5,
871
+ "y2": 1
872
+ }
873
+ }
874
+ }
875
+ ]
876
+ }
877
+ ]
878
+ },
879
+ "Drop": {
880
+ "name": "Drop",
881
+ "category": "enter",
882
+ "speed": "Medium",
883
+ "source": "figma-ui-bake",
884
+ "durationSec": 1.2,
885
+ "tracks": [
886
+ {
887
+ "property": "OPACITY",
888
+ "keyframes": [
889
+ {
890
+ "timelinePosition": 0,
891
+ "value": {
892
+ "type": "FLOAT",
893
+ "value": 0
894
+ },
895
+ "easing": {
896
+ "type": "CUSTOM_CUBIC_BEZIER",
897
+ "easingFunctionCubicBezier": {
898
+ "x1": 0.5,
899
+ "y1": 0,
900
+ "x2": 0.5,
901
+ "y2": 1
902
+ }
903
+ }
904
+ },
905
+ {
906
+ "timelinePosition": 0.15,
907
+ "value": {
908
+ "type": "FLOAT",
909
+ "value": 1
910
+ },
911
+ "easing": {
912
+ "type": "CUSTOM_CUBIC_BEZIER",
913
+ "easingFunctionCubicBezier": {
914
+ "x1": 0.5,
915
+ "y1": 0,
916
+ "x2": 0.5,
917
+ "y2": 1
918
+ }
919
+ }
920
+ }
921
+ ]
922
+ },
923
+ {
924
+ "property": "TRANSLATION_Y",
925
+ "keyframes": [
926
+ {
927
+ "timelinePosition": 0,
928
+ "value": {
929
+ "type": "FLOAT",
930
+ "value": -60
931
+ },
932
+ "easing": {
933
+ "type": "CUSTOM_SPRING",
934
+ "easingFunctionSpring": {
935
+ "bounce": 0.6536
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "timelinePosition": 1.2,
941
+ "value": {
942
+ "type": "FLOAT",
943
+ "value": 0
944
+ },
945
+ "easing": {
946
+ "type": "CUSTOM_SPRING",
947
+ "easingFunctionSpring": {
948
+ "bounce": 0.6536
949
+ }
950
+ }
951
+ }
952
+ ]
953
+ }
954
+ ]
955
+ },
956
+ "Reveal": {
957
+ "name": "Reveal",
958
+ "category": "enter",
959
+ "speed": "Slow",
960
+ "source": "figma-ui-bake",
961
+ "durationSec": 1,
962
+ "tracks": [
963
+ {
964
+ "property": "OPACITY",
965
+ "keyframes": [
966
+ {
967
+ "timelinePosition": 0,
968
+ "value": {
969
+ "type": "FLOAT",
970
+ "value": 0
971
+ },
972
+ "easing": {
973
+ "type": "CUSTOM_CUBIC_BEZIER",
974
+ "easingFunctionCubicBezier": {
975
+ "x1": 0.09,
976
+ "y1": 0.55,
977
+ "x2": 0.5,
978
+ "y2": 1
979
+ }
980
+ }
981
+ },
982
+ {
983
+ "timelinePosition": 0.4,
984
+ "value": {
985
+ "type": "FLOAT",
986
+ "value": 1
987
+ },
988
+ "easing": {
989
+ "type": "CUSTOM_CUBIC_BEZIER",
990
+ "easingFunctionCubicBezier": {
991
+ "x1": 0.09,
992
+ "y1": 0.55,
993
+ "x2": 0.5,
994
+ "y2": 1
995
+ }
996
+ }
997
+ }
998
+ ]
999
+ },
1000
+ {
1001
+ "property": "SCALE_X",
1002
+ "keyframes": [
1003
+ {
1004
+ "timelinePosition": 0,
1005
+ "value": {
1006
+ "type": "FLOAT",
1007
+ "value": 0.6
1008
+ },
1009
+ "easing": {
1010
+ "type": "CUSTOM_CUBIC_BEZIER",
1011
+ "easingFunctionCubicBezier": {
1012
+ "x1": 0.15,
1013
+ "y1": 0.52,
1014
+ "x2": 0.5,
1015
+ "y2": 1
1016
+ }
1017
+ }
1018
+ },
1019
+ {
1020
+ "timelinePosition": 0.78,
1021
+ "value": {
1022
+ "type": "FLOAT",
1023
+ "value": 1
1024
+ },
1025
+ "easing": {
1026
+ "type": "CUSTOM_CUBIC_BEZIER",
1027
+ "easingFunctionCubicBezier": {
1028
+ "x1": 0.15,
1029
+ "y1": 0.52,
1030
+ "x2": 0.5,
1031
+ "y2": 1
1032
+ }
1033
+ }
1034
+ }
1035
+ ]
1036
+ },
1037
+ {
1038
+ "property": "SCALE_Y",
1039
+ "keyframes": [
1040
+ {
1041
+ "timelinePosition": 0,
1042
+ "value": {
1043
+ "type": "FLOAT",
1044
+ "value": 0.6
1045
+ },
1046
+ "easing": {
1047
+ "type": "CUSTOM_CUBIC_BEZIER",
1048
+ "easingFunctionCubicBezier": {
1049
+ "x1": 0.15,
1050
+ "y1": 0.52,
1051
+ "x2": 0.5,
1052
+ "y2": 1
1053
+ }
1054
+ }
1055
+ },
1056
+ {
1057
+ "timelinePosition": 0.78,
1058
+ "value": {
1059
+ "type": "FLOAT",
1060
+ "value": 1
1061
+ },
1062
+ "easing": {
1063
+ "type": "CUSTOM_CUBIC_BEZIER",
1064
+ "easingFunctionCubicBezier": {
1065
+ "x1": 0.15,
1066
+ "y1": 0.52,
1067
+ "x2": 0.5,
1068
+ "y2": 1
1069
+ }
1070
+ }
1071
+ }
1072
+ ]
1073
+ },
1074
+ {
1075
+ "property": "TRANSLATION_Y",
1076
+ "keyframes": [
1077
+ {
1078
+ "timelinePosition": 0,
1079
+ "value": {
1080
+ "type": "FLOAT",
1081
+ "value": 20
1082
+ },
1083
+ "easing": {
1084
+ "type": "CUSTOM_CUBIC_BEZIER",
1085
+ "easingFunctionCubicBezier": {
1086
+ "x1": 0.3,
1087
+ "y1": -1.2,
1088
+ "x2": 0.45,
1089
+ "y2": 1
1090
+ }
1091
+ }
1092
+ },
1093
+ {
1094
+ "timelinePosition": 1,
1095
+ "value": {
1096
+ "type": "FLOAT",
1097
+ "value": 0
1098
+ },
1099
+ "easing": {
1100
+ "type": "CUSTOM_CUBIC_BEZIER",
1101
+ "easingFunctionCubicBezier": {
1102
+ "x1": 0.3,
1103
+ "y1": -1.2,
1104
+ "x2": 0.45,
1105
+ "y2": 1
1106
+ }
1107
+ }
1108
+ }
1109
+ ]
1110
+ }
1111
+ ]
1112
+ },
1113
+ "Rise": {
1114
+ "name": "Rise",
1115
+ "category": "enter",
1116
+ "speed": "Slow",
1117
+ "source": "figma-ui-bake",
1118
+ "durationSec": 1,
1119
+ "tracks": [
1120
+ {
1121
+ "property": "OPACITY",
1122
+ "keyframes": [
1123
+ {
1124
+ "timelinePosition": 0,
1125
+ "value": {
1126
+ "type": "FLOAT",
1127
+ "value": 0
1128
+ },
1129
+ "easing": {
1130
+ "type": "CUSTOM_CUBIC_BEZIER",
1131
+ "easingFunctionCubicBezier": {
1132
+ "x1": 0.5,
1133
+ "y1": 0,
1134
+ "x2": 0.5,
1135
+ "y2": 1
1136
+ }
1137
+ }
1138
+ },
1139
+ {
1140
+ "timelinePosition": 0.4,
1141
+ "value": {
1142
+ "type": "FLOAT",
1143
+ "value": 1
1144
+ },
1145
+ "easing": {
1146
+ "type": "CUSTOM_CUBIC_BEZIER",
1147
+ "easingFunctionCubicBezier": {
1148
+ "x1": 0.5,
1149
+ "y1": 0,
1150
+ "x2": 0.5,
1151
+ "y2": 1
1152
+ }
1153
+ }
1154
+ }
1155
+ ]
1156
+ },
1157
+ {
1158
+ "property": "ROTATION",
1159
+ "keyframes": [
1160
+ {
1161
+ "timelinePosition": 0,
1162
+ "value": {
1163
+ "type": "FLOAT",
1164
+ "value": -60
1165
+ },
1166
+ "easing": {
1167
+ "type": "CUSTOM_CUBIC_BEZIER",
1168
+ "easingFunctionCubicBezier": {
1169
+ "x1": 0.05,
1170
+ "y1": 0.4,
1171
+ "x2": 0.5,
1172
+ "y2": 1
1173
+ }
1174
+ }
1175
+ },
1176
+ {
1177
+ "timelinePosition": 1,
1178
+ "value": {
1179
+ "type": "FLOAT",
1180
+ "value": 0
1181
+ },
1182
+ "easing": {
1183
+ "type": "CUSTOM_CUBIC_BEZIER",
1184
+ "easingFunctionCubicBezier": {
1185
+ "x1": 0.05,
1186
+ "y1": 0.4,
1187
+ "x2": 0.5,
1188
+ "y2": 1
1189
+ }
1190
+ }
1191
+ }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "property": "SCALE_X",
1196
+ "keyframes": [
1197
+ {
1198
+ "timelinePosition": 0,
1199
+ "value": {
1200
+ "type": "FLOAT",
1201
+ "value": 0
1202
+ },
1203
+ "easing": {
1204
+ "type": "CUSTOM_CUBIC_BEZIER",
1205
+ "easingFunctionCubicBezier": {
1206
+ "x1": 0.05,
1207
+ "y1": 0.4,
1208
+ "x2": 0.5,
1209
+ "y2": 1
1210
+ }
1211
+ }
1212
+ },
1213
+ {
1214
+ "timelinePosition": 1,
1215
+ "value": {
1216
+ "type": "FLOAT",
1217
+ "value": 1
1218
+ },
1219
+ "easing": {
1220
+ "type": "CUSTOM_CUBIC_BEZIER",
1221
+ "easingFunctionCubicBezier": {
1222
+ "x1": 0.05,
1223
+ "y1": 0.4,
1224
+ "x2": 0.5,
1225
+ "y2": 1
1226
+ }
1227
+ }
1228
+ }
1229
+ ]
1230
+ },
1231
+ {
1232
+ "property": "SCALE_Y",
1233
+ "keyframes": [
1234
+ {
1235
+ "timelinePosition": 0,
1236
+ "value": {
1237
+ "type": "FLOAT",
1238
+ "value": 0
1239
+ },
1240
+ "easing": {
1241
+ "type": "CUSTOM_CUBIC_BEZIER",
1242
+ "easingFunctionCubicBezier": {
1243
+ "x1": 0.05,
1244
+ "y1": 0.4,
1245
+ "x2": 0.5,
1246
+ "y2": 1
1247
+ }
1248
+ }
1249
+ },
1250
+ {
1251
+ "timelinePosition": 1,
1252
+ "value": {
1253
+ "type": "FLOAT",
1254
+ "value": 1
1255
+ },
1256
+ "easing": {
1257
+ "type": "CUSTOM_CUBIC_BEZIER",
1258
+ "easingFunctionCubicBezier": {
1259
+ "x1": 0.05,
1260
+ "y1": 0.4,
1261
+ "x2": 0.5,
1262
+ "y2": 1
1263
+ }
1264
+ }
1265
+ }
1266
+ ]
1267
+ },
1268
+ {
1269
+ "property": "TRANSLATION_X",
1270
+ "keyframes": [
1271
+ {
1272
+ "timelinePosition": 0,
1273
+ "value": {
1274
+ "type": "FLOAT",
1275
+ "value": 30
1276
+ },
1277
+ "easing": {
1278
+ "type": "CUSTOM_CUBIC_BEZIER",
1279
+ "easingFunctionCubicBezier": {
1280
+ "x1": 0.24,
1281
+ "y1": 0.08,
1282
+ "x2": 0.5,
1283
+ "y2": 1
1284
+ }
1285
+ }
1286
+ },
1287
+ {
1288
+ "timelinePosition": 1,
1289
+ "value": {
1290
+ "type": "FLOAT",
1291
+ "value": 0
1292
+ },
1293
+ "easing": {
1294
+ "type": "CUSTOM_CUBIC_BEZIER",
1295
+ "easingFunctionCubicBezier": {
1296
+ "x1": 0.24,
1297
+ "y1": 0.08,
1298
+ "x2": 0.5,
1299
+ "y2": 1
1300
+ }
1301
+ }
1302
+ }
1303
+ ]
1304
+ }
1305
+ ]
1306
+ },
1307
+ "Tip": {
1308
+ "name": "Tip",
1309
+ "category": "enter",
1310
+ "speed": "Slow",
1311
+ "source": "figma-ui-bake",
1312
+ "durationSec": 1,
1313
+ "tracks": [
1314
+ {
1315
+ "property": "OPACITY",
1316
+ "keyframes": [
1317
+ {
1318
+ "timelinePosition": 0,
1319
+ "value": {
1320
+ "type": "FLOAT",
1321
+ "value": 0
1322
+ },
1323
+ "easing": {
1324
+ "type": "CUSTOM_CUBIC_BEZIER",
1325
+ "easingFunctionCubicBezier": {
1326
+ "x1": 0.5,
1327
+ "y1": 0,
1328
+ "x2": 0.5,
1329
+ "y2": 1
1330
+ }
1331
+ }
1332
+ },
1333
+ {
1334
+ "timelinePosition": 0.4,
1335
+ "value": {
1336
+ "type": "FLOAT",
1337
+ "value": 1
1338
+ },
1339
+ "easing": {
1340
+ "type": "CUSTOM_CUBIC_BEZIER",
1341
+ "easingFunctionCubicBezier": {
1342
+ "x1": 0.5,
1343
+ "y1": 0,
1344
+ "x2": 0.5,
1345
+ "y2": 1
1346
+ }
1347
+ }
1348
+ }
1349
+ ]
1350
+ },
1351
+ {
1352
+ "property": "ROTATION",
1353
+ "keyframes": [
1354
+ {
1355
+ "timelinePosition": 0,
1356
+ "value": {
1357
+ "type": "FLOAT",
1358
+ "value": 20
1359
+ },
1360
+ "easing": {
1361
+ "type": "CUSTOM_CUBIC_BEZIER",
1362
+ "easingFunctionCubicBezier": {
1363
+ "x1": 0.05,
1364
+ "y1": 0.4,
1365
+ "x2": 0.5,
1366
+ "y2": 1
1367
+ }
1368
+ }
1369
+ },
1370
+ {
1371
+ "timelinePosition": 0.9,
1372
+ "value": {
1373
+ "type": "FLOAT",
1374
+ "value": 0
1375
+ },
1376
+ "easing": {
1377
+ "type": "CUSTOM_CUBIC_BEZIER",
1378
+ "easingFunctionCubicBezier": {
1379
+ "x1": 0.05,
1380
+ "y1": 0.4,
1381
+ "x2": 0.5,
1382
+ "y2": 1
1383
+ }
1384
+ }
1385
+ }
1386
+ ]
1387
+ },
1388
+ {
1389
+ "property": "SCALE_X",
1390
+ "keyframes": [
1391
+ {
1392
+ "timelinePosition": 0,
1393
+ "value": {
1394
+ "type": "FLOAT",
1395
+ "value": 0.9
1396
+ },
1397
+ "easing": {
1398
+ "type": "CUSTOM_CUBIC_BEZIER",
1399
+ "easingFunctionCubicBezier": {
1400
+ "x1": 0.05,
1401
+ "y1": 0.4,
1402
+ "x2": 0.5,
1403
+ "y2": 1
1404
+ }
1405
+ }
1406
+ },
1407
+ {
1408
+ "timelinePosition": 0.8,
1409
+ "value": {
1410
+ "type": "FLOAT",
1411
+ "value": 1
1412
+ },
1413
+ "easing": {
1414
+ "type": "CUSTOM_CUBIC_BEZIER",
1415
+ "easingFunctionCubicBezier": {
1416
+ "x1": 0.05,
1417
+ "y1": 0.4,
1418
+ "x2": 0.5,
1419
+ "y2": 1
1420
+ }
1421
+ }
1422
+ }
1423
+ ]
1424
+ },
1425
+ {
1426
+ "property": "SCALE_Y",
1427
+ "keyframes": [
1428
+ {
1429
+ "timelinePosition": 0,
1430
+ "value": {
1431
+ "type": "FLOAT",
1432
+ "value": 0.9
1433
+ },
1434
+ "easing": {
1435
+ "type": "CUSTOM_CUBIC_BEZIER",
1436
+ "easingFunctionCubicBezier": {
1437
+ "x1": 0.05,
1438
+ "y1": 0.4,
1439
+ "x2": 0.5,
1440
+ "y2": 1
1441
+ }
1442
+ }
1443
+ },
1444
+ {
1445
+ "timelinePosition": 0.8,
1446
+ "value": {
1447
+ "type": "FLOAT",
1448
+ "value": 1
1449
+ },
1450
+ "easing": {
1451
+ "type": "CUSTOM_CUBIC_BEZIER",
1452
+ "easingFunctionCubicBezier": {
1453
+ "x1": 0.05,
1454
+ "y1": 0.4,
1455
+ "x2": 0.5,
1456
+ "y2": 1
1457
+ }
1458
+ }
1459
+ }
1460
+ ]
1461
+ },
1462
+ {
1463
+ "property": "TRANSLATION_Y",
1464
+ "keyframes": [
1465
+ {
1466
+ "timelinePosition": 0,
1467
+ "value": {
1468
+ "type": "FLOAT",
1469
+ "value": 10
1470
+ },
1471
+ "easing": {
1472
+ "type": "CUSTOM_CUBIC_BEZIER",
1473
+ "easingFunctionCubicBezier": {
1474
+ "x1": 0.05,
1475
+ "y1": 0.4,
1476
+ "x2": 0.5,
1477
+ "y2": 1
1478
+ }
1479
+ }
1480
+ },
1481
+ {
1482
+ "timelinePosition": 1,
1483
+ "value": {
1484
+ "type": "FLOAT",
1485
+ "value": 0
1486
+ },
1487
+ "easing": {
1488
+ "type": "CUSTOM_CUBIC_BEZIER",
1489
+ "easingFunctionCubicBezier": {
1490
+ "x1": 0.05,
1491
+ "y1": 0.4,
1492
+ "x2": 0.5,
1493
+ "y2": 1
1494
+ }
1495
+ }
1496
+ }
1497
+ ]
1498
+ }
1499
+ ]
1500
+ },
1501
+ "Feather": {
1502
+ "name": "Feather",
1503
+ "category": "enter",
1504
+ "speed": "Slow",
1505
+ "source": "figma-ui-bake",
1506
+ "durationSec": 1,
1507
+ "tracks": [
1508
+ {
1509
+ "property": "OPACITY",
1510
+ "keyframes": [
1511
+ {
1512
+ "timelinePosition": 0,
1513
+ "value": {
1514
+ "type": "FLOAT",
1515
+ "value": 0
1516
+ },
1517
+ "easing": {
1518
+ "type": "CUSTOM_CUBIC_BEZIER",
1519
+ "easingFunctionCubicBezier": {
1520
+ "x1": 0.5,
1521
+ "y1": 0,
1522
+ "x2": 0.5,
1523
+ "y2": 1
1524
+ }
1525
+ }
1526
+ },
1527
+ {
1528
+ "timelinePosition": 0.5,
1529
+ "value": {
1530
+ "type": "FLOAT",
1531
+ "value": 1
1532
+ },
1533
+ "easing": {
1534
+ "type": "CUSTOM_CUBIC_BEZIER",
1535
+ "easingFunctionCubicBezier": {
1536
+ "x1": 0.5,
1537
+ "y1": 0,
1538
+ "x2": 0.5,
1539
+ "y2": 1
1540
+ }
1541
+ }
1542
+ }
1543
+ ]
1544
+ },
1545
+ {
1546
+ "property": "TRANSLATION_Y",
1547
+ "keyframes": [
1548
+ {
1549
+ "timelinePosition": 0,
1550
+ "value": {
1551
+ "type": "FLOAT",
1552
+ "value": -80
1553
+ },
1554
+ "easing": {
1555
+ "type": "CUSTOM_CUBIC_BEZIER",
1556
+ "easingFunctionCubicBezier": {
1557
+ "x1": 0.15,
1558
+ "y1": 0.55,
1559
+ "x2": 0.7,
1560
+ "y2": 1
1561
+ }
1562
+ }
1563
+ },
1564
+ {
1565
+ "timelinePosition": 1,
1566
+ "value": {
1567
+ "type": "FLOAT",
1568
+ "value": 0
1569
+ },
1570
+ "easing": {
1571
+ "type": "CUSTOM_CUBIC_BEZIER",
1572
+ "easingFunctionCubicBezier": {
1573
+ "x1": 0.15,
1574
+ "y1": 0.55,
1575
+ "x2": 0.7,
1576
+ "y2": 1
1577
+ }
1578
+ }
1579
+ }
1580
+ ]
1581
+ }
1582
+ ]
1583
+ },
1584
+ "Crank": {
1585
+ "name": "Crank",
1586
+ "category": "cycle",
1587
+ "speed": "Fast",
1588
+ "source": "figma-ui-bake",
1589
+ "durationSec": 0.75,
1590
+ "loop": true,
1591
+ "tracks": [
1592
+ {
1593
+ "property": "ROTATION",
1594
+ "keyframes": [
1595
+ {
1596
+ "timelinePosition": 0,
1597
+ "value": {
1598
+ "type": "FLOAT",
1599
+ "value": 0
1600
+ },
1601
+ "easing": {
1602
+ "type": "CUSTOM_SPRING",
1603
+ "easingFunctionSpring": {
1604
+ "bounce": 0.4024
1605
+ }
1606
+ }
1607
+ },
1608
+ {
1609
+ "timelinePosition": 0.75,
1610
+ "value": {
1611
+ "type": "FLOAT",
1612
+ "value": -90
1613
+ },
1614
+ "easing": {
1615
+ "type": "CUSTOM_SPRING",
1616
+ "easingFunctionSpring": {
1617
+ "bounce": 0.4024
1618
+ }
1619
+ }
1620
+ }
1621
+ ]
1622
+ }
1623
+ ]
1624
+ },
1625
+ "Press": {
1626
+ "name": "Press",
1627
+ "category": "cycle",
1628
+ "speed": "Fast",
1629
+ "source": "figma-ui-bake",
1630
+ "durationSec": 0.05,
1631
+ "loop": true,
1632
+ "tracks": [
1633
+ {
1634
+ "property": "OPACITY",
1635
+ "keyframes": [
1636
+ {
1637
+ "timelinePosition": 0,
1638
+ "value": {
1639
+ "type": "FLOAT",
1640
+ "value": 1
1641
+ },
1642
+ "easing": {
1643
+ "type": "CUSTOM_CUBIC_BEZIER",
1644
+ "easingFunctionCubicBezier": {
1645
+ "x1": 0.15,
1646
+ "y1": 0.85,
1647
+ "x2": 0.3,
1648
+ "y2": 1
1649
+ }
1650
+ }
1651
+ },
1652
+ {
1653
+ "timelinePosition": 0.045,
1654
+ "value": {
1655
+ "type": "FLOAT",
1656
+ "value": 0.5
1657
+ },
1658
+ "easing": {
1659
+ "type": "CUSTOM_CUBIC_BEZIER",
1660
+ "easingFunctionCubicBezier": {
1661
+ "x1": 0.15,
1662
+ "y1": 0.85,
1663
+ "x2": 0.3,
1664
+ "y2": 1
1665
+ }
1666
+ }
1667
+ }
1668
+ ]
1669
+ },
1670
+ {
1671
+ "property": "SCALE_X",
1672
+ "keyframes": [
1673
+ {
1674
+ "timelinePosition": 0,
1675
+ "value": {
1676
+ "type": "FLOAT",
1677
+ "value": 1
1678
+ },
1679
+ "easing": {
1680
+ "type": "CUSTOM_CUBIC_BEZIER",
1681
+ "easingFunctionCubicBezier": {
1682
+ "x1": 0.15,
1683
+ "y1": 0.85,
1684
+ "x2": 0.3,
1685
+ "y2": 1
1686
+ }
1687
+ }
1688
+ },
1689
+ {
1690
+ "timelinePosition": 0.05,
1691
+ "value": {
1692
+ "type": "FLOAT",
1693
+ "value": 0.8
1694
+ },
1695
+ "easing": {
1696
+ "type": "CUSTOM_CUBIC_BEZIER",
1697
+ "easingFunctionCubicBezier": {
1698
+ "x1": 0.15,
1699
+ "y1": 0.85,
1700
+ "x2": 0.3,
1701
+ "y2": 1
1702
+ }
1703
+ }
1704
+ }
1705
+ ]
1706
+ },
1707
+ {
1708
+ "property": "SCALE_Y",
1709
+ "keyframes": [
1710
+ {
1711
+ "timelinePosition": 0,
1712
+ "value": {
1713
+ "type": "FLOAT",
1714
+ "value": 1
1715
+ },
1716
+ "easing": {
1717
+ "type": "CUSTOM_CUBIC_BEZIER",
1718
+ "easingFunctionCubicBezier": {
1719
+ "x1": 0.15,
1720
+ "y1": 0.85,
1721
+ "x2": 0.3,
1722
+ "y2": 1
1723
+ }
1724
+ }
1725
+ },
1726
+ {
1727
+ "timelinePosition": 0.05,
1728
+ "value": {
1729
+ "type": "FLOAT",
1730
+ "value": 0.8
1731
+ },
1732
+ "easing": {
1733
+ "type": "CUSTOM_CUBIC_BEZIER",
1734
+ "easingFunctionCubicBezier": {
1735
+ "x1": 0.15,
1736
+ "y1": 0.85,
1737
+ "x2": 0.3,
1738
+ "y2": 1
1739
+ }
1740
+ }
1741
+ }
1742
+ ]
1743
+ }
1744
+ ]
1745
+ },
1746
+ "Pop": {
1747
+ "name": "Pop",
1748
+ "category": "cycle",
1749
+ "speed": "Fast",
1750
+ "source": "figma-ui-bake",
1751
+ "durationSec": 0.3,
1752
+ "loop": true,
1753
+ "tracks": [
1754
+ {
1755
+ "property": "SCALE_X",
1756
+ "keyframes": [
1757
+ {
1758
+ "timelinePosition": 0,
1759
+ "value": {
1760
+ "type": "FLOAT",
1761
+ "value": 1
1762
+ },
1763
+ "easing": {
1764
+ "type": "CUSTOM_CUBIC_BEZIER",
1765
+ "easingFunctionCubicBezier": {
1766
+ "x1": 0.15,
1767
+ "y1": 0.85,
1768
+ "x2": 0.3,
1769
+ "y2": 1
1770
+ }
1771
+ }
1772
+ },
1773
+ {
1774
+ "timelinePosition": 0.3,
1775
+ "value": {
1776
+ "type": "FLOAT",
1777
+ "value": 1.2
1778
+ },
1779
+ "easing": {
1780
+ "type": "CUSTOM_CUBIC_BEZIER",
1781
+ "easingFunctionCubicBezier": {
1782
+ "x1": 0.15,
1783
+ "y1": 0.85,
1784
+ "x2": 0.3,
1785
+ "y2": 1
1786
+ }
1787
+ }
1788
+ }
1789
+ ]
1790
+ },
1791
+ {
1792
+ "property": "SCALE_Y",
1793
+ "keyframes": [
1794
+ {
1795
+ "timelinePosition": 0,
1796
+ "value": {
1797
+ "type": "FLOAT",
1798
+ "value": 1
1799
+ },
1800
+ "easing": {
1801
+ "type": "CUSTOM_CUBIC_BEZIER",
1802
+ "easingFunctionCubicBezier": {
1803
+ "x1": 0.15,
1804
+ "y1": 0.85,
1805
+ "x2": 0.3,
1806
+ "y2": 1
1807
+ }
1808
+ }
1809
+ },
1810
+ {
1811
+ "timelinePosition": 0.3,
1812
+ "value": {
1813
+ "type": "FLOAT",
1814
+ "value": 1.2
1815
+ },
1816
+ "easing": {
1817
+ "type": "CUSTOM_CUBIC_BEZIER",
1818
+ "easingFunctionCubicBezier": {
1819
+ "x1": 0.15,
1820
+ "y1": 0.85,
1821
+ "x2": 0.3,
1822
+ "y2": 1
1823
+ }
1824
+ }
1825
+ }
1826
+ ]
1827
+ }
1828
+ ]
1829
+ },
1830
+ "Scoot": {
1831
+ "name": "Scoot",
1832
+ "category": "cycle",
1833
+ "speed": "Fast",
1834
+ "source": "figma-ui-bake",
1835
+ "durationSec": 0.22,
1836
+ "loop": true,
1837
+ "tracks": [
1838
+ {
1839
+ "property": "OPACITY",
1840
+ "keyframes": [
1841
+ {
1842
+ "timelinePosition": 0,
1843
+ "value": {
1844
+ "type": "FLOAT",
1845
+ "value": 0
1846
+ },
1847
+ "easing": {
1848
+ "type": "CUSTOM_CUBIC_BEZIER",
1849
+ "easingFunctionCubicBezier": {
1850
+ "x1": 0.5,
1851
+ "y1": 0,
1852
+ "x2": 0.5,
1853
+ "y2": 1
1854
+ }
1855
+ }
1856
+ },
1857
+ {
1858
+ "timelinePosition": 0.02,
1859
+ "value": {
1860
+ "type": "FLOAT",
1861
+ "value": 1
1862
+ },
1863
+ "easing": {
1864
+ "type": "CUSTOM_CUBIC_BEZIER",
1865
+ "easingFunctionCubicBezier": {
1866
+ "x1": 0.5,
1867
+ "y1": 0,
1868
+ "x2": 0.5,
1869
+ "y2": 1
1870
+ }
1871
+ }
1872
+ }
1873
+ ]
1874
+ },
1875
+ {
1876
+ "property": "TRANSLATION_X",
1877
+ "keyframes": [
1878
+ {
1879
+ "timelinePosition": 0,
1880
+ "value": {
1881
+ "type": "FLOAT",
1882
+ "value": -130
1883
+ },
1884
+ "easing": {
1885
+ "type": "CUSTOM_CUBIC_BEZIER",
1886
+ "easingFunctionCubicBezier": {
1887
+ "x1": 0.15,
1888
+ "y1": 0.95,
1889
+ "x2": 0.5,
1890
+ "y2": 1
1891
+ }
1892
+ }
1893
+ },
1894
+ {
1895
+ "timelinePosition": 0.22,
1896
+ "value": {
1897
+ "type": "FLOAT",
1898
+ "value": -10
1899
+ },
1900
+ "easing": {
1901
+ "type": "CUSTOM_CUBIC_BEZIER",
1902
+ "easingFunctionCubicBezier": {
1903
+ "x1": 0.15,
1904
+ "y1": 0.95,
1905
+ "x2": 0.5,
1906
+ "y2": 1
1907
+ }
1908
+ }
1909
+ }
1910
+ ]
1911
+ }
1912
+ ]
1913
+ },
1914
+ "Spin": {
1915
+ "name": "Spin",
1916
+ "category": "cycle",
1917
+ "speed": "Medium",
1918
+ "source": "figma-ui-bake",
1919
+ "durationSec": 2,
1920
+ "loop": true,
1921
+ "tracks": [
1922
+ {
1923
+ "property": "ROTATION",
1924
+ "keyframes": [
1925
+ {
1926
+ "timelinePosition": 0,
1927
+ "value": {
1928
+ "type": "FLOAT",
1929
+ "value": 0
1930
+ },
1931
+ "easing": {
1932
+ "type": "CUSTOM_CUBIC_BEZIER",
1933
+ "easingFunctionCubicBezier": {
1934
+ "x1": 0.5,
1935
+ "y1": 0,
1936
+ "x2": 0.1,
1937
+ "y2": 1
1938
+ }
1939
+ }
1940
+ },
1941
+ {
1942
+ "timelinePosition": 2,
1943
+ "value": {
1944
+ "type": "FLOAT",
1945
+ "value": -360
1946
+ },
1947
+ "easing": {
1948
+ "type": "CUSTOM_CUBIC_BEZIER",
1949
+ "easingFunctionCubicBezier": {
1950
+ "x1": 0.5,
1951
+ "y1": 0,
1952
+ "x2": 0.1,
1953
+ "y2": 1
1954
+ }
1955
+ }
1956
+ }
1957
+ ]
1958
+ }
1959
+ ]
1960
+ },
1961
+ "Flip": {
1962
+ "name": "Flip",
1963
+ "category": "cycle",
1964
+ "speed": "Medium",
1965
+ "source": "figma-ui-bake",
1966
+ "durationSec": 0.5,
1967
+ "loop": true,
1968
+ "tracks": [
1969
+ {
1970
+ "property": "ROTATION",
1971
+ "keyframes": [
1972
+ {
1973
+ "timelinePosition": 0,
1974
+ "value": {
1975
+ "type": "FLOAT",
1976
+ "value": 0
1977
+ },
1978
+ "easing": {
1979
+ "type": "CUSTOM_CUBIC_BEZIER",
1980
+ "easingFunctionCubicBezier": {
1981
+ "x1": 0.5,
1982
+ "y1": 0,
1983
+ "x2": 0.5,
1984
+ "y2": 1
1985
+ }
1986
+ }
1987
+ },
1988
+ {
1989
+ "timelinePosition": 0.5,
1990
+ "value": {
1991
+ "type": "FLOAT",
1992
+ "value": 360
1993
+ },
1994
+ "easing": {
1995
+ "type": "CUSTOM_CUBIC_BEZIER",
1996
+ "easingFunctionCubicBezier": {
1997
+ "x1": 0.5,
1998
+ "y1": 0,
1999
+ "x2": 0.5,
2000
+ "y2": 1
2001
+ }
2002
+ }
2003
+ }
2004
+ ]
2005
+ },
2006
+ {
2007
+ "property": "TRANSLATION_Y",
2008
+ "keyframes": [
2009
+ {
2010
+ "timelinePosition": 0,
2011
+ "value": {
2012
+ "type": "FLOAT",
2013
+ "value": 0
2014
+ },
2015
+ "easing": {
2016
+ "type": "CUSTOM_CUBIC_BEZIER",
2017
+ "easingFunctionCubicBezier": {
2018
+ "x1": 0.5,
2019
+ "y1": 0,
2020
+ "x2": 0.1,
2021
+ "y2": 1
2022
+ }
2023
+ }
2024
+ },
2025
+ {
2026
+ "timelinePosition": 0.115,
2027
+ "value": {
2028
+ "type": "FLOAT",
2029
+ "value": 4
2030
+ },
2031
+ "easing": {
2032
+ "type": "CUSTOM_CUBIC_BEZIER",
2033
+ "easingFunctionCubicBezier": {
2034
+ "x1": 0.5,
2035
+ "y1": 0,
2036
+ "x2": 0.1,
2037
+ "y2": 1
2038
+ }
2039
+ }
2040
+ }
2041
+ ]
2042
+ }
2043
+ ]
2044
+ },
2045
+ "Tick": {
2046
+ "name": "Tick",
2047
+ "category": "cycle",
2048
+ "speed": "Medium",
2049
+ "source": "figma-ui-bake",
2050
+ "durationSec": 1,
2051
+ "loop": true,
2052
+ "tracks": [
2053
+ {
2054
+ "property": "ROTATION",
2055
+ "keyframes": [
2056
+ {
2057
+ "timelinePosition": 0,
2058
+ "value": {
2059
+ "type": "FLOAT",
2060
+ "value": 0
2061
+ },
2062
+ "easing": {
2063
+ "type": "CUSTOM_SPRING",
2064
+ "easingFunctionSpring": {
2065
+ "bounce": 0.7924
2066
+ }
2067
+ }
2068
+ },
2069
+ {
2070
+ "timelinePosition": 1,
2071
+ "value": {
2072
+ "type": "FLOAT",
2073
+ "value": -6
2074
+ },
2075
+ "easing": {
2076
+ "type": "CUSTOM_SPRING",
2077
+ "easingFunctionSpring": {
2078
+ "bounce": 0.7924
2079
+ }
2080
+ }
2081
+ }
2082
+ ]
2083
+ }
2084
+ ]
2085
+ },
2086
+ "Creep": {
2087
+ "name": "Creep",
2088
+ "category": "cycle",
2089
+ "speed": "Medium",
2090
+ "source": "figma-ui-bake",
2091
+ "durationSec": 0.2,
2092
+ "loop": true,
2093
+ "tracks": [
2094
+ {
2095
+ "property": "SCALE_X",
2096
+ "keyframes": [
2097
+ {
2098
+ "timelinePosition": 0,
2099
+ "value": {
2100
+ "type": "FLOAT",
2101
+ "value": 1
2102
+ },
2103
+ "easing": {
2104
+ "type": "CUSTOM_CUBIC_BEZIER",
2105
+ "easingFunctionCubicBezier": {
2106
+ "x1": 0.5,
2107
+ "y1": 0,
2108
+ "x2": 0.1,
2109
+ "y2": 1
2110
+ }
2111
+ }
2112
+ },
2113
+ {
2114
+ "timelinePosition": 0.2,
2115
+ "value": {
2116
+ "type": "FLOAT",
2117
+ "value": 1.2
2118
+ },
2119
+ "easing": {
2120
+ "type": "CUSTOM_CUBIC_BEZIER",
2121
+ "easingFunctionCubicBezier": {
2122
+ "x1": 0.5,
2123
+ "y1": 0,
2124
+ "x2": 0.1,
2125
+ "y2": 1
2126
+ }
2127
+ }
2128
+ }
2129
+ ]
2130
+ },
2131
+ {
2132
+ "property": "SCALE_Y",
2133
+ "keyframes": [
2134
+ {
2135
+ "timelinePosition": 0,
2136
+ "value": {
2137
+ "type": "FLOAT",
2138
+ "value": 1
2139
+ },
2140
+ "easing": {
2141
+ "type": "CUSTOM_CUBIC_BEZIER",
2142
+ "easingFunctionCubicBezier": {
2143
+ "x1": 0.5,
2144
+ "y1": 0,
2145
+ "x2": 0.1,
2146
+ "y2": 1
2147
+ }
2148
+ }
2149
+ },
2150
+ {
2151
+ "timelinePosition": 0.2,
2152
+ "value": {
2153
+ "type": "FLOAT",
2154
+ "value": 1.2
2155
+ },
2156
+ "easing": {
2157
+ "type": "CUSTOM_CUBIC_BEZIER",
2158
+ "easingFunctionCubicBezier": {
2159
+ "x1": 0.5,
2160
+ "y1": 0,
2161
+ "x2": 0.1,
2162
+ "y2": 1
2163
+ }
2164
+ }
2165
+ }
2166
+ ]
2167
+ },
2168
+ {
2169
+ "property": "TRANSLATION_X",
2170
+ "keyframes": [
2171
+ {
2172
+ "timelinePosition": 0,
2173
+ "value": {
2174
+ "type": "FLOAT",
2175
+ "value": 0
2176
+ },
2177
+ "easing": {
2178
+ "type": "CUSTOM_CUBIC_BEZIER",
2179
+ "easingFunctionCubicBezier": {
2180
+ "x1": 0.5,
2181
+ "y1": 0,
2182
+ "x2": 0.1,
2183
+ "y2": 1
2184
+ }
2185
+ }
2186
+ },
2187
+ {
2188
+ "timelinePosition": 0.2,
2189
+ "value": {
2190
+ "type": "FLOAT",
2191
+ "value": 20
2192
+ },
2193
+ "easing": {
2194
+ "type": "CUSTOM_CUBIC_BEZIER",
2195
+ "easingFunctionCubicBezier": {
2196
+ "x1": 0.5,
2197
+ "y1": 0,
2198
+ "x2": 0.1,
2199
+ "y2": 1
2200
+ }
2201
+ }
2202
+ }
2203
+ ]
2204
+ }
2205
+ ]
2206
+ },
2207
+ "Float": {
2208
+ "name": "Float",
2209
+ "category": "cycle",
2210
+ "speed": "Slow",
2211
+ "source": "figma-ui-bake",
2212
+ "durationSec": 1.25,
2213
+ "loop": true,
2214
+ "tracks": [
2215
+ {
2216
+ "property": "TRANSLATION_X",
2217
+ "keyframes": [
2218
+ {
2219
+ "timelinePosition": 0,
2220
+ "value": {
2221
+ "type": "FLOAT",
2222
+ "value": 0
2223
+ },
2224
+ "easing": {
2225
+ "type": "CUSTOM_CUBIC_BEZIER",
2226
+ "easingFunctionCubicBezier": {
2227
+ "x1": 0.61,
2228
+ "y1": 1,
2229
+ "x2": 0.88,
2230
+ "y2": 1
2231
+ }
2232
+ }
2233
+ },
2234
+ {
2235
+ "timelinePosition": 0.416,
2236
+ "value": {
2237
+ "type": "FLOAT",
2238
+ "value": -2
2239
+ },
2240
+ "easing": {
2241
+ "type": "CUSTOM_CUBIC_BEZIER",
2242
+ "easingFunctionCubicBezier": {
2243
+ "x1": 0.61,
2244
+ "y1": 1,
2245
+ "x2": 0.88,
2246
+ "y2": 1
2247
+ }
2248
+ }
2249
+ }
2250
+ ]
2251
+ },
2252
+ {
2253
+ "property": "TRANSLATION_Y",
2254
+ "keyframes": [
2255
+ {
2256
+ "timelinePosition": 0,
2257
+ "value": {
2258
+ "type": "FLOAT",
2259
+ "value": 0
2260
+ },
2261
+ "easing": {
2262
+ "type": "CUSTOM_CUBIC_BEZIER",
2263
+ "easingFunctionCubicBezier": {
2264
+ "x1": 0.37,
2265
+ "y1": 0,
2266
+ "x2": 0.63,
2267
+ "y2": 1
2268
+ }
2269
+ }
2270
+ },
2271
+ {
2272
+ "timelinePosition": 1.25,
2273
+ "value": {
2274
+ "type": "FLOAT",
2275
+ "value": -10
2276
+ },
2277
+ "easing": {
2278
+ "type": "CUSTOM_CUBIC_BEZIER",
2279
+ "easingFunctionCubicBezier": {
2280
+ "x1": 0.37,
2281
+ "y1": 0,
2282
+ "x2": 0.63,
2283
+ "y2": 1
2284
+ }
2285
+ }
2286
+ }
2287
+ ]
2288
+ }
2289
+ ]
2290
+ },
2291
+ "Orbit": {
2292
+ "name": "Orbit",
2293
+ "category": "cycle",
2294
+ "speed": "Slow",
2295
+ "source": "figma-ui-bake",
2296
+ "durationSec": 0.9,
2297
+ "loop": true,
2298
+ "tracks": [
2299
+ {
2300
+ "property": "OPACITY",
2301
+ "keyframes": [
2302
+ {
2303
+ "timelinePosition": 0,
2304
+ "value": {
2305
+ "type": "FLOAT",
2306
+ "value": 0
2307
+ },
2308
+ "easing": {
2309
+ "type": "CUSTOM_CUBIC_BEZIER",
2310
+ "easingFunctionCubicBezier": {
2311
+ "x1": 0.5,
2312
+ "y1": 0,
2313
+ "x2": 0.2,
2314
+ "y2": 1
2315
+ }
2316
+ }
2317
+ },
2318
+ {
2319
+ "timelinePosition": 0.7,
2320
+ "value": {
2321
+ "type": "FLOAT",
2322
+ "value": 1
2323
+ },
2324
+ "easing": {
2325
+ "type": "CUSTOM_CUBIC_BEZIER",
2326
+ "easingFunctionCubicBezier": {
2327
+ "x1": 0.5,
2328
+ "y1": 0,
2329
+ "x2": 0.2,
2330
+ "y2": 1
2331
+ }
2332
+ }
2333
+ }
2334
+ ]
2335
+ },
2336
+ {
2337
+ "property": "SCALE_X",
2338
+ "keyframes": [
2339
+ {
2340
+ "timelinePosition": 0,
2341
+ "value": {
2342
+ "type": "FLOAT",
2343
+ "value": 1
2344
+ },
2345
+ "easing": {
2346
+ "type": "CUSTOM_CUBIC_BEZIER",
2347
+ "easingFunctionCubicBezier": {
2348
+ "x1": 0.5,
2349
+ "y1": 0,
2350
+ "x2": 0.2,
2351
+ "y2": 1
2352
+ }
2353
+ }
2354
+ },
2355
+ {
2356
+ "timelinePosition": 0.9,
2357
+ "value": {
2358
+ "type": "FLOAT",
2359
+ "value": 1.2
2360
+ },
2361
+ "easing": {
2362
+ "type": "CUSTOM_CUBIC_BEZIER",
2363
+ "easingFunctionCubicBezier": {
2364
+ "x1": 0.5,
2365
+ "y1": 0,
2366
+ "x2": 0.2,
2367
+ "y2": 1
2368
+ }
2369
+ }
2370
+ }
2371
+ ]
2372
+ },
2373
+ {
2374
+ "property": "SCALE_Y",
2375
+ "keyframes": [
2376
+ {
2377
+ "timelinePosition": 0,
2378
+ "value": {
2379
+ "type": "FLOAT",
2380
+ "value": 1
2381
+ },
2382
+ "easing": {
2383
+ "type": "CUSTOM_CUBIC_BEZIER",
2384
+ "easingFunctionCubicBezier": {
2385
+ "x1": 0.5,
2386
+ "y1": 0,
2387
+ "x2": 0.2,
2388
+ "y2": 1
2389
+ }
2390
+ }
2391
+ },
2392
+ {
2393
+ "timelinePosition": 0.9,
2394
+ "value": {
2395
+ "type": "FLOAT",
2396
+ "value": 1.2
2397
+ },
2398
+ "easing": {
2399
+ "type": "CUSTOM_CUBIC_BEZIER",
2400
+ "easingFunctionCubicBezier": {
2401
+ "x1": 0.5,
2402
+ "y1": 0,
2403
+ "x2": 0.2,
2404
+ "y2": 1
2405
+ }
2406
+ }
2407
+ }
2408
+ ]
2409
+ }
2410
+ ]
2411
+ },
2412
+ "Breathe": {
2413
+ "name": "Breathe",
2414
+ "category": "cycle",
2415
+ "speed": "Slow",
2416
+ "source": "figma-ui-bake",
2417
+ "durationSec": 0.9,
2418
+ "loop": true,
2419
+ "tracks": [
2420
+ {
2421
+ "property": "OPACITY",
2422
+ "keyframes": [
2423
+ {
2424
+ "timelinePosition": 0,
2425
+ "value": {
2426
+ "type": "FLOAT",
2427
+ "value": 0
2428
+ },
2429
+ "easing": {
2430
+ "type": "CUSTOM_CUBIC_BEZIER",
2431
+ "easingFunctionCubicBezier": {
2432
+ "x1": 0.5,
2433
+ "y1": 0,
2434
+ "x2": 0.2,
2435
+ "y2": 1
2436
+ }
2437
+ }
2438
+ },
2439
+ {
2440
+ "timelinePosition": 0.7,
2441
+ "value": {
2442
+ "type": "FLOAT",
2443
+ "value": 1
2444
+ },
2445
+ "easing": {
2446
+ "type": "CUSTOM_CUBIC_BEZIER",
2447
+ "easingFunctionCubicBezier": {
2448
+ "x1": 0.5,
2449
+ "y1": 0,
2450
+ "x2": 0.2,
2451
+ "y2": 1
2452
+ }
2453
+ }
2454
+ }
2455
+ ]
2456
+ },
2457
+ {
2458
+ "property": "SCALE_X",
2459
+ "keyframes": [
2460
+ {
2461
+ "timelinePosition": 0,
2462
+ "value": {
2463
+ "type": "FLOAT",
2464
+ "value": 1
2465
+ },
2466
+ "easing": {
2467
+ "type": "CUSTOM_CUBIC_BEZIER",
2468
+ "easingFunctionCubicBezier": {
2469
+ "x1": 0.5,
2470
+ "y1": 0,
2471
+ "x2": 0.2,
2472
+ "y2": 1
2473
+ }
2474
+ }
2475
+ },
2476
+ {
2477
+ "timelinePosition": 0.9,
2478
+ "value": {
2479
+ "type": "FLOAT",
2480
+ "value": 1.2
2481
+ },
2482
+ "easing": {
2483
+ "type": "CUSTOM_CUBIC_BEZIER",
2484
+ "easingFunctionCubicBezier": {
2485
+ "x1": 0.5,
2486
+ "y1": 0,
2487
+ "x2": 0.2,
2488
+ "y2": 1
2489
+ }
2490
+ }
2491
+ }
2492
+ ]
2493
+ },
2494
+ {
2495
+ "property": "SCALE_Y",
2496
+ "keyframes": [
2497
+ {
2498
+ "timelinePosition": 0,
2499
+ "value": {
2500
+ "type": "FLOAT",
2501
+ "value": 1
2502
+ },
2503
+ "easing": {
2504
+ "type": "CUSTOM_CUBIC_BEZIER",
2505
+ "easingFunctionCubicBezier": {
2506
+ "x1": 0.5,
2507
+ "y1": 0,
2508
+ "x2": 0.2,
2509
+ "y2": 1
2510
+ }
2511
+ }
2512
+ },
2513
+ {
2514
+ "timelinePosition": 0.9,
2515
+ "value": {
2516
+ "type": "FLOAT",
2517
+ "value": 1.2
2518
+ },
2519
+ "easing": {
2520
+ "type": "CUSTOM_CUBIC_BEZIER",
2521
+ "easingFunctionCubicBezier": {
2522
+ "x1": 0.5,
2523
+ "y1": 0,
2524
+ "x2": 0.2,
2525
+ "y2": 1
2526
+ }
2527
+ }
2528
+ }
2529
+ ]
2530
+ }
2531
+ ]
2532
+ },
2533
+ "Pulse": {
2534
+ "name": "Pulse",
2535
+ "category": "cycle",
2536
+ "speed": "Slow",
2537
+ "source": "figma-ui-bake",
2538
+ "durationSec": 2.2,
2539
+ "loop": true,
2540
+ "tracks": [
2541
+ {
2542
+ "property": "OPACITY",
2543
+ "keyframes": [
2544
+ {
2545
+ "timelinePosition": 0,
2546
+ "value": {
2547
+ "type": "FLOAT",
2548
+ "value": 1
2549
+ },
2550
+ "easing": {
2551
+ "type": "CUSTOM_CUBIC_BEZIER",
2552
+ "easingFunctionCubicBezier": {
2553
+ "x1": 0.3,
2554
+ "y1": 0,
2555
+ "x2": 0.45,
2556
+ "y2": 0.65
2557
+ }
2558
+ }
2559
+ },
2560
+ {
2561
+ "timelinePosition": 1.7,
2562
+ "value": {
2563
+ "type": "FLOAT",
2564
+ "value": 0
2565
+ },
2566
+ "easing": {
2567
+ "type": "CUSTOM_CUBIC_BEZIER",
2568
+ "easingFunctionCubicBezier": {
2569
+ "x1": 0.3,
2570
+ "y1": 0,
2571
+ "x2": 0.45,
2572
+ "y2": 0.65
2573
+ }
2574
+ }
2575
+ }
2576
+ ]
2577
+ },
2578
+ {
2579
+ "property": "SCALE_X",
2580
+ "keyframes": [
2581
+ {
2582
+ "timelinePosition": 0,
2583
+ "value": {
2584
+ "type": "FLOAT",
2585
+ "value": 1
2586
+ },
2587
+ "easing": {
2588
+ "type": "CUSTOM_CUBIC_BEZIER",
2589
+ "easingFunctionCubicBezier": {
2590
+ "x1": 0.5,
2591
+ "y1": 0,
2592
+ "x2": 0.1,
2593
+ "y2": 1
2594
+ }
2595
+ }
2596
+ },
2597
+ {
2598
+ "timelinePosition": 2.2,
2599
+ "value": {
2600
+ "type": "FLOAT",
2601
+ "value": 2
2602
+ },
2603
+ "easing": {
2604
+ "type": "CUSTOM_CUBIC_BEZIER",
2605
+ "easingFunctionCubicBezier": {
2606
+ "x1": 0.5,
2607
+ "y1": 0,
2608
+ "x2": 0.1,
2609
+ "y2": 1
2610
+ }
2611
+ }
2612
+ }
2613
+ ]
2614
+ },
2615
+ {
2616
+ "property": "SCALE_Y",
2617
+ "keyframes": [
2618
+ {
2619
+ "timelinePosition": 0,
2620
+ "value": {
2621
+ "type": "FLOAT",
2622
+ "value": 1
2623
+ },
2624
+ "easing": {
2625
+ "type": "CUSTOM_CUBIC_BEZIER",
2626
+ "easingFunctionCubicBezier": {
2627
+ "x1": 0.5,
2628
+ "y1": 0,
2629
+ "x2": 0.1,
2630
+ "y2": 1
2631
+ }
2632
+ }
2633
+ },
2634
+ {
2635
+ "timelinePosition": 2.2,
2636
+ "value": {
2637
+ "type": "FLOAT",
2638
+ "value": 2
2639
+ },
2640
+ "easing": {
2641
+ "type": "CUSTOM_CUBIC_BEZIER",
2642
+ "easingFunctionCubicBezier": {
2643
+ "x1": 0.5,
2644
+ "y1": 0,
2645
+ "x2": 0.1,
2646
+ "y2": 1
2647
+ }
2648
+ }
2649
+ }
2650
+ ]
2651
+ }
2652
+ ]
2653
+ },
2654
+ "Launch": {
2655
+ "name": "Launch",
2656
+ "category": "exit",
2657
+ "speed": "Fast",
2658
+ "source": "figma-ui-bake",
2659
+ "durationSec": 0.3,
2660
+ "tracks": [
2661
+ {
2662
+ "property": "OPACITY",
2663
+ "keyframes": [
2664
+ {
2665
+ "timelinePosition": 0,
2666
+ "value": {
2667
+ "type": "FLOAT",
2668
+ "value": 1
2669
+ },
2670
+ "easing": {
2671
+ "type": "CUSTOM_CUBIC_BEZIER",
2672
+ "easingFunctionCubicBezier": {
2673
+ "x1": 0.5,
2674
+ "y1": 0,
2675
+ "x2": 0.5,
2676
+ "y2": 1
2677
+ }
2678
+ }
2679
+ },
2680
+ {
2681
+ "timelinePosition": 0.03,
2682
+ "value": {
2683
+ "type": "FLOAT",
2684
+ "value": 0
2685
+ },
2686
+ "easing": {
2687
+ "type": "CUSTOM_CUBIC_BEZIER",
2688
+ "easingFunctionCubicBezier": {
2689
+ "x1": 0.5,
2690
+ "y1": 0,
2691
+ "x2": 0.5,
2692
+ "y2": 1
2693
+ }
2694
+ }
2695
+ }
2696
+ ]
2697
+ },
2698
+ {
2699
+ "property": "ROTATION",
2700
+ "keyframes": [
2701
+ {
2702
+ "timelinePosition": 0,
2703
+ "value": {
2704
+ "type": "FLOAT",
2705
+ "value": 0
2706
+ },
2707
+ "easing": {
2708
+ "type": "CUSTOM_CUBIC_BEZIER",
2709
+ "easingFunctionCubicBezier": {
2710
+ "x1": 0.7,
2711
+ "y1": 0,
2712
+ "x2": 0.85,
2713
+ "y2": 0.15
2714
+ }
2715
+ }
2716
+ },
2717
+ {
2718
+ "timelinePosition": 0.3,
2719
+ "value": {
2720
+ "type": "FLOAT",
2721
+ "value": -90
2722
+ },
2723
+ "easing": {
2724
+ "type": "CUSTOM_CUBIC_BEZIER",
2725
+ "easingFunctionCubicBezier": {
2726
+ "x1": 0.7,
2727
+ "y1": 0,
2728
+ "x2": 0.85,
2729
+ "y2": 0.15
2730
+ }
2731
+ }
2732
+ }
2733
+ ]
2734
+ },
2735
+ {
2736
+ "property": "SCALE_X",
2737
+ "keyframes": [
2738
+ {
2739
+ "timelinePosition": 0,
2740
+ "value": {
2741
+ "type": "FLOAT",
2742
+ "value": 1
2743
+ },
2744
+ "easing": {
2745
+ "type": "CUSTOM_CUBIC_BEZIER",
2746
+ "easingFunctionCubicBezier": {
2747
+ "x1": 0.7,
2748
+ "y1": 0,
2749
+ "x2": 0.85,
2750
+ "y2": 0.15
2751
+ }
2752
+ }
2753
+ },
2754
+ {
2755
+ "timelinePosition": 0.3,
2756
+ "value": {
2757
+ "type": "FLOAT",
2758
+ "value": 0.8
2759
+ },
2760
+ "easing": {
2761
+ "type": "CUSTOM_CUBIC_BEZIER",
2762
+ "easingFunctionCubicBezier": {
2763
+ "x1": 0.7,
2764
+ "y1": 0,
2765
+ "x2": 0.85,
2766
+ "y2": 0.15
2767
+ }
2768
+ }
2769
+ }
2770
+ ]
2771
+ },
2772
+ {
2773
+ "property": "SCALE_Y",
2774
+ "keyframes": [
2775
+ {
2776
+ "timelinePosition": 0,
2777
+ "value": {
2778
+ "type": "FLOAT",
2779
+ "value": 1
2780
+ },
2781
+ "easing": {
2782
+ "type": "CUSTOM_CUBIC_BEZIER",
2783
+ "easingFunctionCubicBezier": {
2784
+ "x1": 0.7,
2785
+ "y1": 0,
2786
+ "x2": 0.85,
2787
+ "y2": 0.15
2788
+ }
2789
+ }
2790
+ },
2791
+ {
2792
+ "timelinePosition": 0.3,
2793
+ "value": {
2794
+ "type": "FLOAT",
2795
+ "value": 0.8
2796
+ },
2797
+ "easing": {
2798
+ "type": "CUSTOM_CUBIC_BEZIER",
2799
+ "easingFunctionCubicBezier": {
2800
+ "x1": 0.7,
2801
+ "y1": 0,
2802
+ "x2": 0.85,
2803
+ "y2": 0.15
2804
+ }
2805
+ }
2806
+ }
2807
+ ]
2808
+ },
2809
+ {
2810
+ "property": "TRANSLATION_Y",
2811
+ "keyframes": [
2812
+ {
2813
+ "timelinePosition": 0,
2814
+ "value": {
2815
+ "type": "FLOAT",
2816
+ "value": 0
2817
+ },
2818
+ "easing": {
2819
+ "type": "CUSTOM_CUBIC_BEZIER",
2820
+ "easingFunctionCubicBezier": {
2821
+ "x1": 0.7,
2822
+ "y1": 0,
2823
+ "x2": 0.85,
2824
+ "y2": 0.15
2825
+ }
2826
+ }
2827
+ },
2828
+ {
2829
+ "timelinePosition": 0.3,
2830
+ "value": {
2831
+ "type": "FLOAT",
2832
+ "value": -116
2833
+ },
2834
+ "easing": {
2835
+ "type": "CUSTOM_CUBIC_BEZIER",
2836
+ "easingFunctionCubicBezier": {
2837
+ "x1": 0.7,
2838
+ "y1": 0,
2839
+ "x2": 0.85,
2840
+ "y2": 0.15
2841
+ }
2842
+ }
2843
+ }
2844
+ ]
2845
+ }
2846
+ ]
2847
+ },
2848
+ "Vanish": {
2849
+ "name": "Vanish",
2850
+ "category": "exit",
2851
+ "speed": "Fast",
2852
+ "source": "figma-ui-bake",
2853
+ "durationSec": 0.3,
2854
+ "tracks": [
2855
+ {
2856
+ "property": "OPACITY",
2857
+ "keyframes": [
2858
+ {
2859
+ "timelinePosition": 0,
2860
+ "value": {
2861
+ "type": "FLOAT",
2862
+ "value": 1
2863
+ },
2864
+ "easing": {
2865
+ "type": "CUSTOM_CUBIC_BEZIER",
2866
+ "easingFunctionCubicBezier": {
2867
+ "x1": 0.5,
2868
+ "y1": 0,
2869
+ "x2": 0.5,
2870
+ "y2": 1
2871
+ }
2872
+ }
2873
+ },
2874
+ {
2875
+ "timelinePosition": 0.25,
2876
+ "value": {
2877
+ "type": "FLOAT",
2878
+ "value": 0
2879
+ },
2880
+ "easing": {
2881
+ "type": "CUSTOM_CUBIC_BEZIER",
2882
+ "easingFunctionCubicBezier": {
2883
+ "x1": 0.5,
2884
+ "y1": 0,
2885
+ "x2": 0.5,
2886
+ "y2": 1
2887
+ }
2888
+ }
2889
+ }
2890
+ ]
2891
+ },
2892
+ {
2893
+ "property": "SCALE_X",
2894
+ "keyframes": [
2895
+ {
2896
+ "timelinePosition": 0,
2897
+ "value": {
2898
+ "type": "FLOAT",
2899
+ "value": 1
2900
+ },
2901
+ "easing": {
2902
+ "type": "CUSTOM_CUBIC_BEZIER",
2903
+ "easingFunctionCubicBezier": {
2904
+ "x1": 0.7,
2905
+ "y1": 0,
2906
+ "x2": 0.85,
2907
+ "y2": 0.15
2908
+ }
2909
+ }
2910
+ },
2911
+ {
2912
+ "timelinePosition": 0.3,
2913
+ "value": {
2914
+ "type": "FLOAT",
2915
+ "value": 0
2916
+ },
2917
+ "easing": {
2918
+ "type": "CUSTOM_CUBIC_BEZIER",
2919
+ "easingFunctionCubicBezier": {
2920
+ "x1": 0.7,
2921
+ "y1": 0,
2922
+ "x2": 0.85,
2923
+ "y2": 0.15
2924
+ }
2925
+ }
2926
+ }
2927
+ ]
2928
+ },
2929
+ {
2930
+ "property": "SCALE_Y",
2931
+ "keyframes": [
2932
+ {
2933
+ "timelinePosition": 0,
2934
+ "value": {
2935
+ "type": "FLOAT",
2936
+ "value": 1
2937
+ },
2938
+ "easing": {
2939
+ "type": "CUSTOM_CUBIC_BEZIER",
2940
+ "easingFunctionCubicBezier": {
2941
+ "x1": 0.7,
2942
+ "y1": 0,
2943
+ "x2": 0.85,
2944
+ "y2": 0.15
2945
+ }
2946
+ }
2947
+ },
2948
+ {
2949
+ "timelinePosition": 0.3,
2950
+ "value": {
2951
+ "type": "FLOAT",
2952
+ "value": 0
2953
+ },
2954
+ "easing": {
2955
+ "type": "CUSTOM_CUBIC_BEZIER",
2956
+ "easingFunctionCubicBezier": {
2957
+ "x1": 0.7,
2958
+ "y1": 0,
2959
+ "x2": 0.85,
2960
+ "y2": 0.15
2961
+ }
2962
+ }
2963
+ }
2964
+ ]
2965
+ },
2966
+ {
2967
+ "property": "TRANSLATION_X",
2968
+ "keyframes": [
2969
+ {
2970
+ "timelinePosition": 0,
2971
+ "value": {
2972
+ "type": "FLOAT",
2973
+ "value": 0
2974
+ },
2975
+ "easing": {
2976
+ "type": "CUSTOM_CUBIC_BEZIER",
2977
+ "easingFunctionCubicBezier": {
2978
+ "x1": 0.7,
2979
+ "y1": 0,
2980
+ "x2": 0.85,
2981
+ "y2": 0.15
2982
+ }
2983
+ }
2984
+ },
2985
+ {
2986
+ "timelinePosition": 0.04,
2987
+ "value": {
2988
+ "type": "FLOAT",
2989
+ "value": -5
2990
+ },
2991
+ "easing": {
2992
+ "type": "CUSTOM_CUBIC_BEZIER",
2993
+ "easingFunctionCubicBezier": {
2994
+ "x1": 0.7,
2995
+ "y1": 0,
2996
+ "x2": 0.85,
2997
+ "y2": 0.15
2998
+ }
2999
+ }
3000
+ }
3001
+ ]
3002
+ }
3003
+ ]
3004
+ },
3005
+ "Flick": {
3006
+ "name": "Flick",
3007
+ "category": "exit",
3008
+ "speed": "Fast",
3009
+ "source": "figma-ui-bake",
3010
+ "durationSec": 0.3,
3011
+ "tracks": [
3012
+ {
3013
+ "property": "OPACITY",
3014
+ "keyframes": [
3015
+ {
3016
+ "timelinePosition": 0,
3017
+ "value": {
3018
+ "type": "FLOAT",
3019
+ "value": 1
3020
+ },
3021
+ "easing": {
3022
+ "type": "CUSTOM_CUBIC_BEZIER",
3023
+ "easingFunctionCubicBezier": {
3024
+ "x1": 0.5,
3025
+ "y1": 0,
3026
+ "x2": 0.5,
3027
+ "y2": 1
3028
+ }
3029
+ }
3030
+ },
3031
+ {
3032
+ "timelinePosition": 0.15,
3033
+ "value": {
3034
+ "type": "FLOAT",
3035
+ "value": 0
3036
+ },
3037
+ "easing": {
3038
+ "type": "CUSTOM_CUBIC_BEZIER",
3039
+ "easingFunctionCubicBezier": {
3040
+ "x1": 0.5,
3041
+ "y1": 0,
3042
+ "x2": 0.5,
3043
+ "y2": 1
3044
+ }
3045
+ }
3046
+ }
3047
+ ]
3048
+ },
3049
+ {
3050
+ "property": "TRANSLATION_X",
3051
+ "keyframes": [
3052
+ {
3053
+ "timelinePosition": 0,
3054
+ "value": {
3055
+ "type": "FLOAT",
3056
+ "value": 0
3057
+ },
3058
+ "easing": {
3059
+ "type": "CUSTOM_CUBIC_BEZIER",
3060
+ "easingFunctionCubicBezier": {
3061
+ "x1": 0.7,
3062
+ "y1": 0,
3063
+ "x2": 0.5,
3064
+ "y2": -0.7
3065
+ }
3066
+ }
3067
+ },
3068
+ {
3069
+ "timelinePosition": 0.3,
3070
+ "value": {
3071
+ "type": "FLOAT",
3072
+ "value": 120
3073
+ },
3074
+ "easing": {
3075
+ "type": "CUSTOM_CUBIC_BEZIER",
3076
+ "easingFunctionCubicBezier": {
3077
+ "x1": 0.7,
3078
+ "y1": 0,
3079
+ "x2": 0.5,
3080
+ "y2": -0.7
3081
+ }
3082
+ }
3083
+ }
3084
+ ]
3085
+ }
3086
+ ]
3087
+ },
3088
+ "Swipe": {
3089
+ "name": "Swipe",
3090
+ "category": "exit",
3091
+ "speed": "Fast",
3092
+ "source": "figma-ui-bake",
3093
+ "durationSec": 0.3,
3094
+ "tracks": [
3095
+ {
3096
+ "property": "OPACITY",
3097
+ "keyframes": [
3098
+ {
3099
+ "timelinePosition": 0,
3100
+ "value": {
3101
+ "type": "FLOAT",
3102
+ "value": 1
3103
+ },
3104
+ "easing": {
3105
+ "type": "CUSTOM_CUBIC_BEZIER",
3106
+ "easingFunctionCubicBezier": {
3107
+ "x1": 0.5,
3108
+ "y1": 0,
3109
+ "x2": 0.5,
3110
+ "y2": 1
3111
+ }
3112
+ }
3113
+ },
3114
+ {
3115
+ "timelinePosition": 0.15,
3116
+ "value": {
3117
+ "type": "FLOAT",
3118
+ "value": 0
3119
+ },
3120
+ "easing": {
3121
+ "type": "CUSTOM_CUBIC_BEZIER",
3122
+ "easingFunctionCubicBezier": {
3123
+ "x1": 0.5,
3124
+ "y1": 0,
3125
+ "x2": 0.5,
3126
+ "y2": 1
3127
+ }
3128
+ }
3129
+ }
3130
+ ]
3131
+ },
3132
+ {
3133
+ "property": "SCALE_X",
3134
+ "keyframes": [
3135
+ {
3136
+ "timelinePosition": 0,
3137
+ "value": {
3138
+ "type": "FLOAT",
3139
+ "value": 1
3140
+ },
3141
+ "easing": {
3142
+ "type": "CUSTOM_CUBIC_BEZIER",
3143
+ "easingFunctionCubicBezier": {
3144
+ "x1": 0.7,
3145
+ "y1": 0,
3146
+ "x2": 0.85,
3147
+ "y2": 0.15
3148
+ }
3149
+ }
3150
+ },
3151
+ {
3152
+ "timelinePosition": 0.3,
3153
+ "value": {
3154
+ "type": "FLOAT",
3155
+ "value": 0.6
3156
+ },
3157
+ "easing": {
3158
+ "type": "CUSTOM_CUBIC_BEZIER",
3159
+ "easingFunctionCubicBezier": {
3160
+ "x1": 0.7,
3161
+ "y1": 0,
3162
+ "x2": 0.85,
3163
+ "y2": 0.15
3164
+ }
3165
+ }
3166
+ }
3167
+ ]
3168
+ },
3169
+ {
3170
+ "property": "SCALE_Y",
3171
+ "keyframes": [
3172
+ {
3173
+ "timelinePosition": 0,
3174
+ "value": {
3175
+ "type": "FLOAT",
3176
+ "value": 1
3177
+ },
3178
+ "easing": {
3179
+ "type": "CUSTOM_CUBIC_BEZIER",
3180
+ "easingFunctionCubicBezier": {
3181
+ "x1": 0.7,
3182
+ "y1": 0,
3183
+ "x2": 0.85,
3184
+ "y2": 0.15
3185
+ }
3186
+ }
3187
+ },
3188
+ {
3189
+ "timelinePosition": 0.3,
3190
+ "value": {
3191
+ "type": "FLOAT",
3192
+ "value": 0.6
3193
+ },
3194
+ "easing": {
3195
+ "type": "CUSTOM_CUBIC_BEZIER",
3196
+ "easingFunctionCubicBezier": {
3197
+ "x1": 0.7,
3198
+ "y1": 0,
3199
+ "x2": 0.85,
3200
+ "y2": 0.15
3201
+ }
3202
+ }
3203
+ }
3204
+ ]
3205
+ },
3206
+ {
3207
+ "property": "TRANSLATION_X",
3208
+ "keyframes": [
3209
+ {
3210
+ "timelinePosition": 0,
3211
+ "value": {
3212
+ "type": "FLOAT",
3213
+ "value": 0
3214
+ },
3215
+ "easing": {
3216
+ "type": "CUSTOM_CUBIC_BEZIER",
3217
+ "easingFunctionCubicBezier": {
3218
+ "x1": 0.7,
3219
+ "y1": 0,
3220
+ "x2": 0.85,
3221
+ "y2": 0.15
3222
+ }
3223
+ }
3224
+ },
3225
+ {
3226
+ "timelinePosition": 0.3,
3227
+ "value": {
3228
+ "type": "FLOAT",
3229
+ "value": -120
3230
+ },
3231
+ "easing": {
3232
+ "type": "CUSTOM_CUBIC_BEZIER",
3233
+ "easingFunctionCubicBezier": {
3234
+ "x1": 0.7,
3235
+ "y1": 0,
3236
+ "x2": 0.85,
3237
+ "y2": 0.15
3238
+ }
3239
+ }
3240
+ }
3241
+ ]
3242
+ }
3243
+ ]
3244
+ },
3245
+ "Poof": {
3246
+ "name": "Poof",
3247
+ "category": "exit",
3248
+ "speed": "Medium",
3249
+ "source": "figma-ui-bake",
3250
+ "durationSec": 0.6,
3251
+ "tracks": [
3252
+ {
3253
+ "property": "OPACITY",
3254
+ "keyframes": [
3255
+ {
3256
+ "timelinePosition": 0,
3257
+ "value": {
3258
+ "type": "FLOAT",
3259
+ "value": 1
3260
+ },
3261
+ "easing": {
3262
+ "type": "CUSTOM_CUBIC_BEZIER",
3263
+ "easingFunctionCubicBezier": {
3264
+ "x1": 0.15,
3265
+ "y1": 0.85,
3266
+ "x2": 0.3,
3267
+ "y2": 1
3268
+ }
3269
+ }
3270
+ },
3271
+ {
3272
+ "timelinePosition": 0.45,
3273
+ "value": {
3274
+ "type": "FLOAT",
3275
+ "value": 0
3276
+ },
3277
+ "easing": {
3278
+ "type": "CUSTOM_CUBIC_BEZIER",
3279
+ "easingFunctionCubicBezier": {
3280
+ "x1": 0.15,
3281
+ "y1": 0.85,
3282
+ "x2": 0.3,
3283
+ "y2": 1
3284
+ }
3285
+ }
3286
+ }
3287
+ ]
3288
+ },
3289
+ {
3290
+ "property": "SCALE_X",
3291
+ "keyframes": [
3292
+ {
3293
+ "timelinePosition": 0,
3294
+ "value": {
3295
+ "type": "FLOAT",
3296
+ "value": 1
3297
+ },
3298
+ "easing": {
3299
+ "type": "CUSTOM_CUBIC_BEZIER",
3300
+ "easingFunctionCubicBezier": {
3301
+ "x1": 0.15,
3302
+ "y1": 0.85,
3303
+ "x2": 0.3,
3304
+ "y2": 1
3305
+ }
3306
+ }
3307
+ },
3308
+ {
3309
+ "timelinePosition": 0.6,
3310
+ "value": {
3311
+ "type": "FLOAT",
3312
+ "value": 2.5
3313
+ },
3314
+ "easing": {
3315
+ "type": "CUSTOM_CUBIC_BEZIER",
3316
+ "easingFunctionCubicBezier": {
3317
+ "x1": 0.15,
3318
+ "y1": 0.85,
3319
+ "x2": 0.3,
3320
+ "y2": 1
3321
+ }
3322
+ }
3323
+ }
3324
+ ]
3325
+ },
3326
+ {
3327
+ "property": "SCALE_Y",
3328
+ "keyframes": [
3329
+ {
3330
+ "timelinePosition": 0,
3331
+ "value": {
3332
+ "type": "FLOAT",
3333
+ "value": 1
3334
+ },
3335
+ "easing": {
3336
+ "type": "CUSTOM_CUBIC_BEZIER",
3337
+ "easingFunctionCubicBezier": {
3338
+ "x1": 0.15,
3339
+ "y1": 0.85,
3340
+ "x2": 0.3,
3341
+ "y2": 1
3342
+ }
3343
+ }
3344
+ },
3345
+ {
3346
+ "timelinePosition": 0.6,
3347
+ "value": {
3348
+ "type": "FLOAT",
3349
+ "value": 2.5
3350
+ },
3351
+ "easing": {
3352
+ "type": "CUSTOM_CUBIC_BEZIER",
3353
+ "easingFunctionCubicBezier": {
3354
+ "x1": 0.15,
3355
+ "y1": 0.85,
3356
+ "x2": 0.3,
3357
+ "y2": 1
3358
+ }
3359
+ }
3360
+ }
3361
+ ]
3362
+ }
3363
+ ]
3364
+ },
3365
+ "Deflate": {
3366
+ "name": "Deflate",
3367
+ "category": "exit",
3368
+ "speed": "Medium",
3369
+ "source": "figma-ui-bake",
3370
+ "durationSec": 0.6,
3371
+ "tracks": [
3372
+ {
3373
+ "property": "OPACITY",
3374
+ "keyframes": [
3375
+ {
3376
+ "timelinePosition": 0,
3377
+ "value": {
3378
+ "type": "FLOAT",
3379
+ "value": 1
3380
+ },
3381
+ "easing": {
3382
+ "type": "CUSTOM_CUBIC_BEZIER",
3383
+ "easingFunctionCubicBezier": {
3384
+ "x1": 0.7,
3385
+ "y1": 0,
3386
+ "x2": 0.85,
3387
+ "y2": 0.15
3388
+ }
3389
+ }
3390
+ },
3391
+ {
3392
+ "timelinePosition": 0.5,
3393
+ "value": {
3394
+ "type": "FLOAT",
3395
+ "value": 0
3396
+ },
3397
+ "easing": {
3398
+ "type": "CUSTOM_CUBIC_BEZIER",
3399
+ "easingFunctionCubicBezier": {
3400
+ "x1": 0.7,
3401
+ "y1": 0,
3402
+ "x2": 0.85,
3403
+ "y2": 0.15
3404
+ }
3405
+ }
3406
+ }
3407
+ ]
3408
+ },
3409
+ {
3410
+ "property": "SCALE_X",
3411
+ "keyframes": [
3412
+ {
3413
+ "timelinePosition": 0,
3414
+ "value": {
3415
+ "type": "FLOAT",
3416
+ "value": 1
3417
+ },
3418
+ "easing": {
3419
+ "type": "CUSTOM_CUBIC_BEZIER",
3420
+ "easingFunctionCubicBezier": {
3421
+ "x1": 0.7,
3422
+ "y1": 0,
3423
+ "x2": 0.85,
3424
+ "y2": 0.15
3425
+ }
3426
+ }
3427
+ },
3428
+ {
3429
+ "timelinePosition": 0.6,
3430
+ "value": {
3431
+ "type": "FLOAT",
3432
+ "value": 0.6
3433
+ },
3434
+ "easing": {
3435
+ "type": "CUSTOM_CUBIC_BEZIER",
3436
+ "easingFunctionCubicBezier": {
3437
+ "x1": 0.7,
3438
+ "y1": 0,
3439
+ "x2": 0.85,
3440
+ "y2": 0.15
3441
+ }
3442
+ }
3443
+ }
3444
+ ]
3445
+ },
3446
+ {
3447
+ "property": "SCALE_Y",
3448
+ "keyframes": [
3449
+ {
3450
+ "timelinePosition": 0,
3451
+ "value": {
3452
+ "type": "FLOAT",
3453
+ "value": 1
3454
+ },
3455
+ "easing": {
3456
+ "type": "CUSTOM_CUBIC_BEZIER",
3457
+ "easingFunctionCubicBezier": {
3458
+ "x1": 0.7,
3459
+ "y1": 0,
3460
+ "x2": 0.85,
3461
+ "y2": 0.15
3462
+ }
3463
+ }
3464
+ },
3465
+ {
3466
+ "timelinePosition": 0.6,
3467
+ "value": {
3468
+ "type": "FLOAT",
3469
+ "value": 0.6
3470
+ },
3471
+ "easing": {
3472
+ "type": "CUSTOM_CUBIC_BEZIER",
3473
+ "easingFunctionCubicBezier": {
3474
+ "x1": 0.7,
3475
+ "y1": 0,
3476
+ "x2": 0.85,
3477
+ "y2": 0.15
3478
+ }
3479
+ }
3480
+ }
3481
+ ]
3482
+ }
3483
+ ]
3484
+ },
3485
+ "Fling": {
3486
+ "name": "Fling",
3487
+ "category": "exit",
3488
+ "speed": "Medium",
3489
+ "source": "figma-ui-bake",
3490
+ "durationSec": 0.6,
3491
+ "tracks": [
3492
+ {
3493
+ "property": "OPACITY",
3494
+ "keyframes": [
3495
+ {
3496
+ "timelinePosition": 0,
3497
+ "value": {
3498
+ "type": "FLOAT",
3499
+ "value": 1
3500
+ },
3501
+ "easing": {
3502
+ "type": "CUSTOM_CUBIC_BEZIER",
3503
+ "easingFunctionCubicBezier": {
3504
+ "x1": 0.5,
3505
+ "y1": 0,
3506
+ "x2": 0.95,
3507
+ "y2": 0.6
3508
+ }
3509
+ }
3510
+ },
3511
+ {
3512
+ "timelinePosition": 0.3,
3513
+ "value": {
3514
+ "type": "FLOAT",
3515
+ "value": 0
3516
+ },
3517
+ "easing": {
3518
+ "type": "CUSTOM_CUBIC_BEZIER",
3519
+ "easingFunctionCubicBezier": {
3520
+ "x1": 0.5,
3521
+ "y1": 0,
3522
+ "x2": 0.95,
3523
+ "y2": 0.6
3524
+ }
3525
+ }
3526
+ }
3527
+ ]
3528
+ },
3529
+ {
3530
+ "property": "ROTATION",
3531
+ "keyframes": [
3532
+ {
3533
+ "timelinePosition": 0,
3534
+ "value": {
3535
+ "type": "FLOAT",
3536
+ "value": 0
3537
+ },
3538
+ "easing": {
3539
+ "type": "CUSTOM_CUBIC_BEZIER",
3540
+ "easingFunctionCubicBezier": {
3541
+ "x1": 0.7,
3542
+ "y1": 0,
3543
+ "x2": 0.5,
3544
+ "y2": -0.7
3545
+ }
3546
+ }
3547
+ },
3548
+ {
3549
+ "timelinePosition": 0.6,
3550
+ "value": {
3551
+ "type": "FLOAT",
3552
+ "value": 180
3553
+ },
3554
+ "easing": {
3555
+ "type": "CUSTOM_CUBIC_BEZIER",
3556
+ "easingFunctionCubicBezier": {
3557
+ "x1": 0.7,
3558
+ "y1": 0,
3559
+ "x2": 0.5,
3560
+ "y2": -0.7
3561
+ }
3562
+ }
3563
+ }
3564
+ ]
3565
+ },
3566
+ {
3567
+ "property": "TRANSLATION_X",
3568
+ "keyframes": [
3569
+ {
3570
+ "timelinePosition": 0,
3571
+ "value": {
3572
+ "type": "FLOAT",
3573
+ "value": 0
3574
+ },
3575
+ "easing": {
3576
+ "type": "CUSTOM_CUBIC_BEZIER",
3577
+ "easingFunctionCubicBezier": {
3578
+ "x1": 0.6,
3579
+ "y1": 0,
3580
+ "x2": 0.7,
3581
+ "y2": -0.5
3582
+ }
3583
+ }
3584
+ },
3585
+ {
3586
+ "timelinePosition": 0.6,
3587
+ "value": {
3588
+ "type": "FLOAT",
3589
+ "value": -60
3590
+ },
3591
+ "easing": {
3592
+ "type": "CUSTOM_CUBIC_BEZIER",
3593
+ "easingFunctionCubicBezier": {
3594
+ "x1": 0.6,
3595
+ "y1": 0,
3596
+ "x2": 0.7,
3597
+ "y2": -0.5
3598
+ }
3599
+ }
3600
+ }
3601
+ ]
3602
+ }
3603
+ ]
3604
+ },
3605
+ "Splat": {
3606
+ "name": "Splat",
3607
+ "category": "exit",
3608
+ "speed": "Medium",
3609
+ "source": "figma-ui-bake",
3610
+ "durationSec": 0.3,
3611
+ "tracks": [
3612
+ {
3613
+ "property": "OPACITY",
3614
+ "keyframes": [
3615
+ {
3616
+ "timelinePosition": 0,
3617
+ "value": {
3618
+ "type": "FLOAT",
3619
+ "value": 1
3620
+ },
3621
+ "easing": {
3622
+ "type": "CUSTOM_CUBIC_BEZIER",
3623
+ "easingFunctionCubicBezier": {
3624
+ "x1": 0.5,
3625
+ "y1": 0,
3626
+ "x2": 0.95,
3627
+ "y2": 0.6
3628
+ }
3629
+ }
3630
+ },
3631
+ {
3632
+ "timelinePosition": 0.08,
3633
+ "value": {
3634
+ "type": "FLOAT",
3635
+ "value": 0
3636
+ },
3637
+ "easing": {
3638
+ "type": "CUSTOM_CUBIC_BEZIER",
3639
+ "easingFunctionCubicBezier": {
3640
+ "x1": 0.5,
3641
+ "y1": 0,
3642
+ "x2": 0.95,
3643
+ "y2": 0.6
3644
+ }
3645
+ }
3646
+ }
3647
+ ]
3648
+ },
3649
+ {
3650
+ "property": "SCALE_X",
3651
+ "keyframes": [
3652
+ {
3653
+ "timelinePosition": 0,
3654
+ "value": {
3655
+ "type": "FLOAT",
3656
+ "value": 1
3657
+ },
3658
+ "easing": {
3659
+ "type": "CUSTOM_CUBIC_BEZIER",
3660
+ "easingFunctionCubicBezier": {
3661
+ "x1": 0.15,
3662
+ "y1": 0.85,
3663
+ "x2": 0.3,
3664
+ "y2": 1
3665
+ }
3666
+ }
3667
+ },
3668
+ {
3669
+ "timelinePosition": 0.1,
3670
+ "value": {
3671
+ "type": "FLOAT",
3672
+ "value": 1.75
3673
+ },
3674
+ "easing": {
3675
+ "type": "CUSTOM_CUBIC_BEZIER",
3676
+ "easingFunctionCubicBezier": {
3677
+ "x1": 0.15,
3678
+ "y1": 0.85,
3679
+ "x2": 0.3,
3680
+ "y2": 1
3681
+ }
3682
+ }
3683
+ }
3684
+ ]
3685
+ },
3686
+ {
3687
+ "property": "SCALE_Y",
3688
+ "keyframes": [
3689
+ {
3690
+ "timelinePosition": 0,
3691
+ "value": {
3692
+ "type": "FLOAT",
3693
+ "value": 1.2
3694
+ },
3695
+ "easing": {
3696
+ "type": "CUSTOM_CUBIC_BEZIER",
3697
+ "easingFunctionCubicBezier": {
3698
+ "x1": 0.15,
3699
+ "y1": 0.85,
3700
+ "x2": 0.3,
3701
+ "y2": 1
3702
+ }
3703
+ }
3704
+ },
3705
+ {
3706
+ "timelinePosition": 0.1,
3707
+ "value": {
3708
+ "type": "FLOAT",
3709
+ "value": 0.05
3710
+ },
3711
+ "easing": {
3712
+ "type": "CUSTOM_CUBIC_BEZIER",
3713
+ "easingFunctionCubicBezier": {
3714
+ "x1": 0.15,
3715
+ "y1": 0.85,
3716
+ "x2": 0.3,
3717
+ "y2": 1
3718
+ }
3719
+ }
3720
+ }
3721
+ ]
3722
+ },
3723
+ {
3724
+ "property": "TRANSLATION_Y",
3725
+ "keyframes": [
3726
+ {
3727
+ "timelinePosition": 0,
3728
+ "value": {
3729
+ "type": "FLOAT",
3730
+ "value": 0
3731
+ },
3732
+ "easing": {
3733
+ "type": "CUSTOM_CUBIC_BEZIER",
3734
+ "easingFunctionCubicBezier": {
3735
+ "x1": 0.7,
3736
+ "y1": 0,
3737
+ "x2": 0.85,
3738
+ "y2": 0.15
3739
+ }
3740
+ }
3741
+ },
3742
+ {
3743
+ "timelinePosition": 0.3,
3744
+ "value": {
3745
+ "type": "FLOAT",
3746
+ "value": 70
3747
+ },
3748
+ "easing": {
3749
+ "type": "CUSTOM_CUBIC_BEZIER",
3750
+ "easingFunctionCubicBezier": {
3751
+ "x1": 0.7,
3752
+ "y1": 0,
3753
+ "x2": 0.85,
3754
+ "y2": 0.15
3755
+ }
3756
+ }
3757
+ }
3758
+ ]
3759
+ }
3760
+ ]
3761
+ },
3762
+ "Evaporate": {
3763
+ "name": "Evaporate",
3764
+ "category": "exit",
3765
+ "speed": "Slow",
3766
+ "source": "figma-ui-bake",
3767
+ "durationSec": 1.5,
3768
+ "tracks": [
3769
+ {
3770
+ "property": "OPACITY",
3771
+ "keyframes": [
3772
+ {
3773
+ "timelinePosition": 0,
3774
+ "value": {
3775
+ "type": "FLOAT",
3776
+ "value": 1
3777
+ },
3778
+ "easing": {
3779
+ "type": "CUSTOM_CUBIC_BEZIER",
3780
+ "easingFunctionCubicBezier": {
3781
+ "x1": 0.6,
3782
+ "y1": 0,
3783
+ "x2": 0.5,
3784
+ "y2": 0.9
3785
+ }
3786
+ }
3787
+ },
3788
+ {
3789
+ "timelinePosition": 1.5,
3790
+ "value": {
3791
+ "type": "FLOAT",
3792
+ "value": 0
3793
+ },
3794
+ "easing": {
3795
+ "type": "CUSTOM_CUBIC_BEZIER",
3796
+ "easingFunctionCubicBezier": {
3797
+ "x1": 0.6,
3798
+ "y1": 0,
3799
+ "x2": 0.5,
3800
+ "y2": 0.9
3801
+ }
3802
+ }
3803
+ }
3804
+ ]
3805
+ },
3806
+ {
3807
+ "property": "SCALE_X",
3808
+ "keyframes": [
3809
+ {
3810
+ "timelinePosition": 0,
3811
+ "value": {
3812
+ "type": "FLOAT",
3813
+ "value": 1
3814
+ },
3815
+ "easing": {
3816
+ "type": "CUSTOM_CUBIC_BEZIER",
3817
+ "easingFunctionCubicBezier": {
3818
+ "x1": 0.5,
3819
+ "y1": 0,
3820
+ "x2": 0.95,
3821
+ "y2": 0.6
3822
+ }
3823
+ }
3824
+ },
3825
+ {
3826
+ "timelinePosition": 1.5,
3827
+ "value": {
3828
+ "type": "FLOAT",
3829
+ "value": 1.5
3830
+ },
3831
+ "easing": {
3832
+ "type": "CUSTOM_CUBIC_BEZIER",
3833
+ "easingFunctionCubicBezier": {
3834
+ "x1": 0.5,
3835
+ "y1": 0,
3836
+ "x2": 0.95,
3837
+ "y2": 0.6
3838
+ }
3839
+ }
3840
+ }
3841
+ ]
3842
+ },
3843
+ {
3844
+ "property": "SCALE_Y",
3845
+ "keyframes": [
3846
+ {
3847
+ "timelinePosition": 0,
3848
+ "value": {
3849
+ "type": "FLOAT",
3850
+ "value": 1
3851
+ },
3852
+ "easing": {
3853
+ "type": "CUSTOM_CUBIC_BEZIER",
3854
+ "easingFunctionCubicBezier": {
3855
+ "x1": 0.5,
3856
+ "y1": 0,
3857
+ "x2": 0.95,
3858
+ "y2": 0.6
3859
+ }
3860
+ }
3861
+ },
3862
+ {
3863
+ "timelinePosition": 1.5,
3864
+ "value": {
3865
+ "type": "FLOAT",
3866
+ "value": 1.5
3867
+ },
3868
+ "easing": {
3869
+ "type": "CUSTOM_CUBIC_BEZIER",
3870
+ "easingFunctionCubicBezier": {
3871
+ "x1": 0.5,
3872
+ "y1": 0,
3873
+ "x2": 0.95,
3874
+ "y2": 0.6
3875
+ }
3876
+ }
3877
+ }
3878
+ ]
3879
+ },
3880
+ {
3881
+ "property": "TRANSLATION_Y",
3882
+ "keyframes": [
3883
+ {
3884
+ "timelinePosition": 0,
3885
+ "value": {
3886
+ "type": "FLOAT",
3887
+ "value": 0
3888
+ },
3889
+ "easing": {
3890
+ "type": "CUSTOM_CUBIC_BEZIER",
3891
+ "easingFunctionCubicBezier": {
3892
+ "x1": 0.5,
3893
+ "y1": 0,
3894
+ "x2": 0.95,
3895
+ "y2": 0.6
3896
+ }
3897
+ }
3898
+ },
3899
+ {
3900
+ "timelinePosition": 1.5,
3901
+ "value": {
3902
+ "type": "FLOAT",
3903
+ "value": -40
3904
+ },
3905
+ "easing": {
3906
+ "type": "CUSTOM_CUBIC_BEZIER",
3907
+ "easingFunctionCubicBezier": {
3908
+ "x1": 0.5,
3909
+ "y1": 0,
3910
+ "x2": 0.95,
3911
+ "y2": 0.6
3912
+ }
3913
+ }
3914
+ }
3915
+ ]
3916
+ }
3917
+ ]
3918
+ },
3919
+ "Recede": {
3920
+ "name": "Recede",
3921
+ "category": "exit",
3922
+ "speed": "Slow",
3923
+ "source": "figma-ui-bake",
3924
+ "durationSec": 1.5,
3925
+ "tracks": [
3926
+ {
3927
+ "property": "OPACITY",
3928
+ "keyframes": [
3929
+ {
3930
+ "timelinePosition": 0,
3931
+ "value": {
3932
+ "type": "FLOAT",
3933
+ "value": 1
3934
+ },
3935
+ "easing": {
3936
+ "type": "CUSTOM_CUBIC_BEZIER",
3937
+ "easingFunctionCubicBezier": {
3938
+ "x1": 0.6,
3939
+ "y1": 0,
3940
+ "x2": 0.5,
3941
+ "y2": 0.9
3942
+ }
3943
+ }
3944
+ },
3945
+ {
3946
+ "timelinePosition": 1.25,
3947
+ "value": {
3948
+ "type": "FLOAT",
3949
+ "value": 0
3950
+ },
3951
+ "easing": {
3952
+ "type": "CUSTOM_CUBIC_BEZIER",
3953
+ "easingFunctionCubicBezier": {
3954
+ "x1": 0.6,
3955
+ "y1": 0,
3956
+ "x2": 0.5,
3957
+ "y2": 0.9
3958
+ }
3959
+ }
3960
+ }
3961
+ ]
3962
+ },
3963
+ {
3964
+ "property": "SCALE_X",
3965
+ "keyframes": [
3966
+ {
3967
+ "timelinePosition": 0,
3968
+ "value": {
3969
+ "type": "FLOAT",
3970
+ "value": 1
3971
+ },
3972
+ "easing": {
3973
+ "type": "CUSTOM_CUBIC_BEZIER",
3974
+ "easingFunctionCubicBezier": {
3975
+ "x1": 0.5,
3976
+ "y1": 0,
3977
+ "x2": 0.95,
3978
+ "y2": 0.6
3979
+ }
3980
+ }
3981
+ },
3982
+ {
3983
+ "timelinePosition": 1.5,
3984
+ "value": {
3985
+ "type": "FLOAT",
3986
+ "value": 0.8
3987
+ },
3988
+ "easing": {
3989
+ "type": "CUSTOM_CUBIC_BEZIER",
3990
+ "easingFunctionCubicBezier": {
3991
+ "x1": 0.5,
3992
+ "y1": 0,
3993
+ "x2": 0.95,
3994
+ "y2": 0.6
3995
+ }
3996
+ }
3997
+ }
3998
+ ]
3999
+ },
4000
+ {
4001
+ "property": "SCALE_Y",
4002
+ "keyframes": [
4003
+ {
4004
+ "timelinePosition": 0,
4005
+ "value": {
4006
+ "type": "FLOAT",
4007
+ "value": 1
4008
+ },
4009
+ "easing": {
4010
+ "type": "CUSTOM_CUBIC_BEZIER",
4011
+ "easingFunctionCubicBezier": {
4012
+ "x1": 0.5,
4013
+ "y1": 0,
4014
+ "x2": 0.95,
4015
+ "y2": 0.6
4016
+ }
4017
+ }
4018
+ },
4019
+ {
4020
+ "timelinePosition": 1.5,
4021
+ "value": {
4022
+ "type": "FLOAT",
4023
+ "value": 0.8
4024
+ },
4025
+ "easing": {
4026
+ "type": "CUSTOM_CUBIC_BEZIER",
4027
+ "easingFunctionCubicBezier": {
4028
+ "x1": 0.5,
4029
+ "y1": 0,
4030
+ "x2": 0.95,
4031
+ "y2": 0.6
4032
+ }
4033
+ }
4034
+ }
4035
+ ]
4036
+ }
4037
+ ]
4038
+ },
4039
+ "Sink": {
4040
+ "name": "Sink",
4041
+ "category": "exit",
4042
+ "speed": "Slow",
4043
+ "source": "figma-ui-bake",
4044
+ "durationSec": 1.5,
4045
+ "tracks": [
4046
+ {
4047
+ "property": "OPACITY",
4048
+ "keyframes": [
4049
+ {
4050
+ "timelinePosition": 0,
4051
+ "value": {
4052
+ "type": "FLOAT",
4053
+ "value": 1
4054
+ },
4055
+ "easing": {
4056
+ "type": "CUSTOM_CUBIC_BEZIER",
4057
+ "easingFunctionCubicBezier": {
4058
+ "x1": 0.6,
4059
+ "y1": 0,
4060
+ "x2": 0.5,
4061
+ "y2": 0.9
4062
+ }
4063
+ }
4064
+ },
4065
+ {
4066
+ "timelinePosition": 0.75,
4067
+ "value": {
4068
+ "type": "FLOAT",
4069
+ "value": 0
4070
+ },
4071
+ "easing": {
4072
+ "type": "CUSTOM_CUBIC_BEZIER",
4073
+ "easingFunctionCubicBezier": {
4074
+ "x1": 0.6,
4075
+ "y1": 0,
4076
+ "x2": 0.5,
4077
+ "y2": 0.9
4078
+ }
4079
+ }
4080
+ }
4081
+ ]
4082
+ },
4083
+ {
4084
+ "property": "SCALE_X",
4085
+ "keyframes": [
4086
+ {
4087
+ "timelinePosition": 0,
4088
+ "value": {
4089
+ "type": "FLOAT",
4090
+ "value": 1
4091
+ },
4092
+ "easing": {
4093
+ "type": "CUSTOM_CUBIC_BEZIER",
4094
+ "easingFunctionCubicBezier": {
4095
+ "x1": 0.5,
4096
+ "y1": 0,
4097
+ "x2": 0.7,
4098
+ "y2": 0.7
4099
+ }
4100
+ }
4101
+ },
4102
+ {
4103
+ "timelinePosition": 1.05,
4104
+ "value": {
4105
+ "type": "FLOAT",
4106
+ "value": 0.8
4107
+ },
4108
+ "easing": {
4109
+ "type": "CUSTOM_CUBIC_BEZIER",
4110
+ "easingFunctionCubicBezier": {
4111
+ "x1": 0.5,
4112
+ "y1": 0,
4113
+ "x2": 0.7,
4114
+ "y2": 0.7
4115
+ }
4116
+ }
4117
+ }
4118
+ ]
4119
+ },
4120
+ {
4121
+ "property": "SCALE_Y",
4122
+ "keyframes": [
4123
+ {
4124
+ "timelinePosition": 0,
4125
+ "value": {
4126
+ "type": "FLOAT",
4127
+ "value": 1
4128
+ },
4129
+ "easing": {
4130
+ "type": "CUSTOM_CUBIC_BEZIER",
4131
+ "easingFunctionCubicBezier": {
4132
+ "x1": 0.5,
4133
+ "y1": 0,
4134
+ "x2": 0.7,
4135
+ "y2": 0.7
4136
+ }
4137
+ }
4138
+ },
4139
+ {
4140
+ "timelinePosition": 1.05,
4141
+ "value": {
4142
+ "type": "FLOAT",
4143
+ "value": 0.8
4144
+ },
4145
+ "easing": {
4146
+ "type": "CUSTOM_CUBIC_BEZIER",
4147
+ "easingFunctionCubicBezier": {
4148
+ "x1": 0.5,
4149
+ "y1": 0,
4150
+ "x2": 0.7,
4151
+ "y2": 0.7
4152
+ }
4153
+ }
4154
+ }
4155
+ ]
4156
+ },
4157
+ {
4158
+ "property": "TRANSLATION_Y",
4159
+ "keyframes": [
4160
+ {
4161
+ "timelinePosition": 0,
4162
+ "value": {
4163
+ "type": "FLOAT",
4164
+ "value": 0
4165
+ },
4166
+ "easing": {
4167
+ "type": "CUSTOM_CUBIC_BEZIER",
4168
+ "easingFunctionCubicBezier": {
4169
+ "x1": 0.5,
4170
+ "y1": 0,
4171
+ "x2": 0.7,
4172
+ "y2": 0.7
4173
+ }
4174
+ }
4175
+ },
4176
+ {
4177
+ "timelinePosition": 1.5,
4178
+ "value": {
4179
+ "type": "FLOAT",
4180
+ "value": 60
4181
+ },
4182
+ "easing": {
4183
+ "type": "CUSTOM_CUBIC_BEZIER",
4184
+ "easingFunctionCubicBezier": {
4185
+ "x1": 0.5,
4186
+ "y1": 0,
4187
+ "x2": 0.7,
4188
+ "y2": 0.7
4189
+ }
4190
+ }
4191
+ }
4192
+ ]
4193
+ }
4194
+ ]
4195
+ },
4196
+ "Tumble": {
4197
+ "name": "Tumble",
4198
+ "category": "exit",
4199
+ "speed": "Slow",
4200
+ "source": "figma-ui-bake",
4201
+ "durationSec": 1.5,
4202
+ "tracks": [
4203
+ {
4204
+ "property": "OPACITY",
4205
+ "keyframes": [
4206
+ {
4207
+ "timelinePosition": 0,
4208
+ "value": {
4209
+ "type": "FLOAT",
4210
+ "value": 1
4211
+ },
4212
+ "easing": {
4213
+ "type": "CUSTOM_CUBIC_BEZIER",
4214
+ "easingFunctionCubicBezier": {
4215
+ "x1": 0.5,
4216
+ "y1": 0,
4217
+ "x2": 0.5,
4218
+ "y2": 1
4219
+ }
4220
+ }
4221
+ },
4222
+ {
4223
+ "timelinePosition": 0.41,
4224
+ "value": {
4225
+ "type": "FLOAT",
4226
+ "value": 0
4227
+ },
4228
+ "easing": {
4229
+ "type": "CUSTOM_CUBIC_BEZIER",
4230
+ "easingFunctionCubicBezier": {
4231
+ "x1": 0.5,
4232
+ "y1": 0,
4233
+ "x2": 0.5,
4234
+ "y2": 1
4235
+ }
4236
+ }
4237
+ }
4238
+ ]
4239
+ },
4240
+ {
4241
+ "property": "ROTATION",
4242
+ "keyframes": [
4243
+ {
4244
+ "timelinePosition": 0,
4245
+ "value": {
4246
+ "type": "FLOAT",
4247
+ "value": 0
4248
+ },
4249
+ "easing": {
4250
+ "type": "CUSTOM_CUBIC_BEZIER",
4251
+ "easingFunctionCubicBezier": {
4252
+ "x1": 0.5,
4253
+ "y1": 0,
4254
+ "x2": 0.95,
4255
+ "y2": 0.6
4256
+ }
4257
+ }
4258
+ },
4259
+ {
4260
+ "timelinePosition": 1.5,
4261
+ "value": {
4262
+ "type": "FLOAT",
4263
+ "value": -180
4264
+ },
4265
+ "easing": {
4266
+ "type": "CUSTOM_CUBIC_BEZIER",
4267
+ "easingFunctionCubicBezier": {
4268
+ "x1": 0.5,
4269
+ "y1": 0,
4270
+ "x2": 0.95,
4271
+ "y2": 0.6
4272
+ }
4273
+ }
4274
+ }
4275
+ ]
4276
+ },
4277
+ {
4278
+ "property": "TRANSLATION_X",
4279
+ "keyframes": [
4280
+ {
4281
+ "timelinePosition": 0,
4282
+ "value": {
4283
+ "type": "FLOAT",
4284
+ "value": 0
4285
+ },
4286
+ "easing": {
4287
+ "type": "CUSTOM_CUBIC_BEZIER",
4288
+ "easingFunctionCubicBezier": {
4289
+ "x1": 0.5,
4290
+ "y1": 0,
4291
+ "x2": 0.95,
4292
+ "y2": 0.6
4293
+ }
4294
+ }
4295
+ },
4296
+ {
4297
+ "timelinePosition": 1.5,
4298
+ "value": {
4299
+ "type": "FLOAT",
4300
+ "value": 120
4301
+ },
4302
+ "easing": {
4303
+ "type": "CUSTOM_CUBIC_BEZIER",
4304
+ "easingFunctionCubicBezier": {
4305
+ "x1": 0.5,
4306
+ "y1": 0,
4307
+ "x2": 0.95,
4308
+ "y2": 0.6
4309
+ }
4310
+ }
4311
+ }
4312
+ ]
4313
+ }
4314
+ ]
4315
+ }
4316
+ }