feat(studio): bulk-edit easing for merged keyframes

This commit is contained in:
Miguel Angel Simon Sierra
2026-07-29 03:39:51 +02:00
parent 7482c22d82
commit 10d45def05
22 changed files with 687 additions and 65 deletions
@@ -71,6 +71,7 @@ export interface DomEditActionsValue extends Pick<
| "commitMutation"
| "applyMarqueeSelection"
| "handleUpdateKeyframeEase"
| "handleUpdateSegmentEase"
| "handleSetAllKeyframeEases"
> {}
@@ -200,6 +201,7 @@ export function DomEditProvider({
applyMarqueeSelection,
handleUpdateKeyframeEase,
handleSetAllKeyframeEases,
handleUpdateSegmentEase,
},
children,
}: {
@@ -281,6 +283,7 @@ export function DomEditProvider({
commitMutation: stableCommitMutation,
applyMarqueeSelection,
handleUpdateKeyframeEase,
handleUpdateSegmentEase,
handleSetAllKeyframeEases,
}),
[
@@ -349,6 +352,7 @@ export function DomEditProvider({
stableCommitMutation,
applyMarqueeSelection,
handleUpdateKeyframeEase,
handleUpdateSegmentEase,
handleSetAllKeyframeEases,
],
);