feat(tools): 2.0 phase 5 wave 5a - image gap-fill (11 tools) (#225)

This commit is contained in:
SnapOtter
2026-06-13 10:19:16 +08:00
parent fc7c1f850e
commit 6e1b9865f1
79 changed files with 7992 additions and 728 deletions
@@ -169,6 +169,41 @@ vi.mock("@/components/tools/split-csv-settings", () => ({
SplitCsvSettings: () => null,
}));
// Wave 5a: Image gap-fill tools
vi.mock("@/components/tools/barcode-generate-settings", () => ({
BarcodeGenerateSettings: () => null,
}));
vi.mock("@/components/tools/chart-maker-settings", () => ({
ChartMakerSettings: () => null,
}));
vi.mock("@/components/tools/circle-crop-settings", () => ({
CircleCropSettings: () => null,
}));
vi.mock("@/components/tools/duotone-settings", () => ({
DuotoneSettings: () => null,
}));
vi.mock("@/components/tools/gif-webp-settings", () => ({
GifWebpSettings: () => null,
}));
vi.mock("@/components/tools/histogram-settings", () => ({
HistogramSettings: () => null,
}));
vi.mock("@/components/tools/image-pad-settings", () => ({
ImagePadSettings: () => null,
}));
vi.mock("@/components/tools/lqip-placeholder-settings", () => ({
LqipPlaceholderSettings: () => null,
}));
vi.mock("@/components/tools/pixelate-settings", () => ({
PixelateSettings: () => null,
}));
vi.mock("@/components/tools/sprite-sheet-settings", () => ({
SpriteSheetSettings: () => null,
}));
vi.mock("@/components/tools/vignette-settings", () => ({
VignetteSettings: () => null,
}));
import { TOOLS } from "@snapotter/shared";
import type { DisplayMode, ToolRegistryEntry } from "@/lib/tool-registry";
import { getToolRegistryEntry, toolRegistry } from "@/lib/tool-registry";