UNPKG

@tanstack/table-core

Version:

Headless UI for building powerful tables & datagrids for TS/JS.

13 lines 541 B
import { TableFeature } from "../../types/TableFeatures.js"; //#region src/features/cell-spanning/cellSpanningFeature.d.ts /** * Feature that merges adjacent cells that share a value into row-spanning * cells, and lets a column def declare column-spanning cells per row. * * Stateless: spans are always derived from the rows that are currently * rendered, so there is nothing to persist and nothing to configure beyond the * column defs. */ declare const cellSpanningFeature: TableFeature; //#endregion export { cellSpanningFeature };