feat: masks, properties refactor, shaders, storage migrations, and more

This commit is contained in:
Maze Winther
2026-03-25 16:47:22 +01:00
parent 4aca4e7756
commit 08f5b92c3d
690 changed files with 35574 additions and 7308 deletions
@@ -0,0 +1,25 @@
import type {
ImageElement,
StickerElement,
VideoElement,
} from "@/types/timeline";
import { BlendingSection, TransformSection } from "./sections";
export function VideoProperties({
element,
trackId,
}: {
element: VideoElement | ImageElement | StickerElement;
trackId: string;
}) {
return (
<div className="flex h-full flex-col">
<TransformSection
element={element}
trackId={trackId}
showTopBorder={false}
/>
<BlendingSection element={element} trackId={trackId} />
</div>
);
}