UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

10 lines (9 loc) 309 B
import { getAllIds } from "../navigation/get-all-ids.js"; export function toggleAllSelections(ctx) { const allIds = getAllIds(ctx.panel); const selection = ctx.selection; if (allIds.isSubsetOf(selection)) ctx.onSelectionChange(new Set()); else ctx.onSelectionChange(allIds); }