mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 06:30:03 +00:00
fix(studio): remove motion tab from right panel (#1391)
The motion panel was behind a feature flag defaulting to false and never shipped. Remove the tab button, MotionPanel component, feature flag, and all associated wiring (EaseCurveEditor, SpringEaseEditor, MotionPanelFields, MotionPathOverlay). The underlying motion data infrastructure (studioMotion, studioMotionOps) remains intact for the GSAP panel. Co-authored-by: Miguel Ángel <miguelangelsisi098@gmail.com>
This commit is contained in:
co-authored by
Miguel Ángel
parent
ad5229af83
commit
d0a7f7d839
@@ -16,13 +16,12 @@ describe("manual editing availability", () => {
|
||||
vi.resetModules();
|
||||
});
|
||||
|
||||
it("enables inspector selection and manual dragging by default while motion stays opt-in", async () => {
|
||||
it("enables inspector selection and manual dragging by default", async () => {
|
||||
const availability = await loadAvailabilityWithEnv({});
|
||||
|
||||
expect(availability.STUDIO_PREVIEW_MANUAL_EDITING_ENABLED).toBe(true);
|
||||
expect(availability.STUDIO_PREVIEW_SELECTION_ENABLED).toBe(true);
|
||||
expect(availability.STUDIO_INSPECTOR_PANELS_ENABLED).toBe(true);
|
||||
expect(availability.STUDIO_MOTION_PANEL_ENABLED).toBe(false);
|
||||
});
|
||||
|
||||
it("enables GSAP drag intercept by default", async () => {
|
||||
|
||||
Reference in New Issue
Block a user