feat(base): add row selection atoms

This commit is contained in:
Philipinho
2026-04-18 16:35:07 +01:00
parent 8d793ec26b
commit 0d824dcd24
@@ -10,3 +10,6 @@ export const activePropertyMenuAtom = atom<string | null>(null);
export const propertyMenuDirtyAtom = atom<boolean>(false);
export const propertyMenuCloseRequestAtom = atom<number>(0);
export const selectedRowIdsAtom = atom<Set<string>>(new Set<string>());
export const lastToggledRowIndexAtom = atom<number | null>(null);