refactor(web): replace asset-viewer listener based face hover with overlay elements (#27400)

This commit is contained in:
Min Idzelis
2026-04-27 06:08:34 -04:00
committed by GitHub
parent 9263e2f2e1
commit 45ccdb37fb
8 changed files with 104 additions and 86 deletions
-13
View File
@@ -1,13 +0,0 @@
import { writable } from 'svelte/store';
export interface Faces {
id: string;
imageHeight: number;
imageWidth: number;
boundingBoxX1: number;
boundingBoxX2: number;
boundingBoxY1: number;
boundingBoxY2: number;
}
export const boundingBoxesArray = writable<Faces[]>([]);