feat: streamline Kiku duplicate grouping and popup flow

This commit is contained in:
2026-03-31 22:23:02 -07:00
parent 3502cdc607
commit a5faef5aee
25 changed files with 864 additions and 25 deletions

View File

@@ -0,0 +1,7 @@
export function prepareForKikuFieldGroupingOpen(options: {
closeLookupWindow: () => boolean;
pausePlayback: () => void;
}): void {
options.closeLookupWindow();
options.pausePlayback();
}