mirror of
https://github.com/ashim-hq/ashim
synced 2026-04-21 13:37:52 +00:00
feat: register stitch component in web tool registry
This commit is contained in:
parent
330bfcf162
commit
7ec5d86d91
1 changed files with 4 additions and 0 deletions
|
|
@ -136,6 +136,9 @@ const BarcodeReadSettings = lazy(() =>
|
|||
const CollageSettings = lazy(() =>
|
||||
import("@/components/tools/collage-settings").then((m) => ({ default: m.CollageSettings })),
|
||||
);
|
||||
const StitchSettings = lazy(() =>
|
||||
import("@/components/tools/stitch-settings").then((m) => ({ default: m.StitchSettings })),
|
||||
);
|
||||
const SplitSettings = lazy(() =>
|
||||
import("@/components/tools/split-settings").then((m) => ({ default: m.SplitSettings })),
|
||||
);
|
||||
|
|
@ -274,6 +277,7 @@ export const toolRegistry = new Map<string, ToolRegistryEntry>([
|
|||
|
||||
// Layout & Composition
|
||||
["collage", { displayMode: "before-after", Settings: CollageSettings }],
|
||||
["stitch", { displayMode: "no-comparison", Settings: StitchSettings }],
|
||||
["split", { displayMode: "before-after", Settings: SplitSettings }],
|
||||
["border", { displayMode: "before-after", Settings: BorderSettings }],
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue