@tanstack/table-core 9.0.1 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/features/row-pagination/createPaginatedRowModel.js +6 -3
  2. package/dist/features/row-pagination/rowPaginationFeature.js +2 -1
  3. package/dist/features/row-pagination/rowPaginationFeature.types.d.ts +10 -1
  4. package/dist/features/row-pagination/rowPaginationFeature.utils.d.ts +15 -2
  5. package/dist/features/row-pagination/rowPaginationFeature.utils.js +30 -6
  6. package/dist/static-functions.d.ts +2 -2
  7. package/dist/static-functions.js +2 -2
  8. package/package.json +1 -1
  9. package/skills/aggregation/SKILL.md +1 -1
  10. package/skills/api-not-found/SKILL.md +1 -1
  11. package/skills/cell-selection/SKILL.md +1 -1
  12. package/skills/cell-spanning/SKILL.md +1 -1
  13. package/skills/client-vs-server/SKILL.md +1 -1
  14. package/skills/column-faceting/SKILL.md +1 -1
  15. package/skills/column-filtering/SKILL.md +1 -1
  16. package/skills/column-ordering/SKILL.md +1 -1
  17. package/skills/column-pinning/SKILL.md +1 -1
  18. package/skills/column-resizing/SKILL.md +1 -1
  19. package/skills/column-sizing/SKILL.md +1 -1
  20. package/skills/column-visibility/SKILL.md +1 -1
  21. package/skills/core/SKILL.md +1 -1
  22. package/skills/custom-features/SKILL.md +1 -1
  23. package/skills/expanding/SKILL.md +1 -1
  24. package/skills/global-filtering/SKILL.md +1 -1
  25. package/skills/grouping/SKILL.md +1 -1
  26. package/skills/migrate-v8-to-v9/SKILL.md +1 -1
  27. package/skills/pagination/SKILL.md +1 -1
  28. package/skills/row-pinning/SKILL.md +1 -1
  29. package/skills/row-selection/SKILL.md +1 -1
  30. package/skills/sorting/SKILL.md +1 -1
  31. package/skills/table-features/SKILL.md +1 -1
  32. package/skills/typescript/SKILL.md +1 -1
@@ -30,9 +30,12 @@ function _createPaginatedRowModel(table) {
30
30
  if (!prePaginatedRowModel.rows.length) return prePaginatedRowModel;
31
31
  const { pageSize, pageIndex } = pagination ?? getDefaultPaginationState();
32
32
  const { rows, flatRows, rowsById } = prePaginatedRowModel;
33
- const pageStart = pageSize * pageIndex;
34
- const pageEnd = pageStart + pageSize;
35
- const paginatedRows = rows.slice(pageStart, pageEnd);
33
+ let paginatedRows = rows;
34
+ if (pageSize !== Infinity || pageIndex !== 0) {
35
+ const pageStart = pageSize * pageIndex;
36
+ const pageEnd = pageStart + pageSize;
37
+ paginatedRows = rows.slice(pageStart, pageEnd);
38
+ }
36
39
  let paginatedRowModel;
37
40
  if (!table.options.paginateExpandedRows) paginatedRowModel = expandRows({
38
41
  rows: paginatedRows,
@@ -1,5 +1,5 @@
1
1
  import { assignTableAPIs, makeStateUpdater } from "../../utils.js";
2
- import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./rowPaginationFeature.utils.js";
2
+ import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./rowPaginationFeature.utils.js";
3
3
 
4
4
  //#region src/features/row-pagination/rowPaginationFeature.ts
5
5
  /**
@@ -31,6 +31,7 @@ const rowPaginationFeature = {
31
31
  table_getPageOptions: { fn: () => table_getPageOptions(table) },
32
32
  table_getCanPreviousPage: { fn: () => table_getCanPreviousPage(table) },
33
33
  table_getCanNextPage: { fn: () => table_getCanNextPage(table) },
34
+ table_getCanLastPage: { fn: () => table_getCanLastPage(table) },
34
35
  table_previousPage: { fn: () => table_previousPage(table) },
35
36
  table_nextPage: { fn: () => table_nextPage(table) },
36
37
  table_firstPage: { fn: () => table_firstPage(table) },
@@ -4,6 +4,10 @@ import { TableFeatures } from "../../types/TableFeatures.js";
4
4
  //#region src/features/row-pagination/rowPaginationFeature.types.d.ts
5
5
  interface PaginationState {
6
6
  pageIndex: number;
7
+ /**
8
+ * The number of rows per page. Set to `Infinity` to place all rows on a
9
+ * single page.
10
+ */
7
11
  pageSize: number;
8
12
  }
9
13
  interface TableState_RowPagination {
@@ -42,6 +46,10 @@ interface Table_RowPagination<in out _TFeatures extends TableFeatures, in out _T
42
46
  * Checks whether the current page index can move forward.
43
47
  */
44
48
  getCanNextPage: () => boolean;
49
+ /**
50
+ * Checks whether a known, finite last page exists after the current page.
51
+ */
52
+ getCanLastPage: () => boolean;
45
53
  /**
46
54
  * Checks whether the current page index can move backward.
47
55
  */
@@ -74,7 +82,8 @@ interface Table_RowPagination<in out _TFeatures extends TableFeatures, in out _T
74
82
  */
75
83
  firstPage: () => void;
76
84
  /**
77
- * Sets the page index to the last page.
85
+ * Sets the page index to the last known page. Does nothing when the page
86
+ * count is unknown, empty, or non-finite.
78
87
  */
79
88
  lastPage: () => void;
80
89
  /**
@@ -141,6 +141,18 @@ declare function table_getCanPreviousPage<TFeatures extends TableFeatures, TData
141
141
  * ```
142
142
  */
143
143
  declare function table_getCanNextPage<TFeatures extends TableFeatures, TData extends RowData>(table: Table<TFeatures, TData>): boolean;
144
+ /**
145
+ * Checks whether a known, finite last page exists after the current page.
146
+ *
147
+ * Unknown (`-1`), empty, and non-finite page counts do not have a navigable
148
+ * last page.
149
+ *
150
+ * @example
151
+ * ```ts
152
+ * const canGoToLastPage = table_getCanLastPage(table)
153
+ * ```
154
+ */
155
+ declare function table_getCanLastPage<TFeatures extends TableFeatures, TData extends RowData>(table: Table<TFeatures, TData>): boolean;
144
156
  /**
145
157
  * Moves the table to the previous page.
146
158
  *
@@ -179,7 +191,8 @@ declare function table_firstPage<TFeatures extends TableFeatures, TData extends
179
191
  /**
180
192
  * Moves the table to the last known page.
181
193
  *
182
- * The target page is derived from `table_getPageCount(table) - 1`.
194
+ * Unknown, empty, and non-finite page counts do not have a navigable last
195
+ * page, so this does nothing for those states.
183
196
  *
184
197
  * @example
185
198
  * ```ts
@@ -213,4 +226,4 @@ declare function table_getPageCount<TFeatures extends TableFeatures, TData exten
213
226
  */
214
227
  declare function table_getRowCount<TFeatures extends TableFeatures, TData extends RowData>(table: Table<TFeatures, TData>): number;
215
228
  //#endregion
216
- export { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination };
229
+ export { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination };
@@ -141,8 +141,8 @@ function table_resetPageSize(table, defaultState) {
141
141
  function table_setPageSize(table, updater) {
142
142
  table_setPagination(table, (old) => {
143
143
  const pageSize = Math.max(1, functionalUpdate(updater, old.pageSize));
144
- const topRowIndex = old.pageSize * old.pageIndex;
145
- const pageIndex = Math.floor(topRowIndex / pageSize);
144
+ const topRowIndex = old.pageSize === Infinity ? 0 : old.pageSize * old.pageIndex;
145
+ const pageIndex = pageSize === Infinity ? 0 : Math.floor(topRowIndex / pageSize);
146
146
  return {
147
147
  ...old,
148
148
  pageIndex,
@@ -200,6 +200,22 @@ function table_getCanNextPage(table) {
200
200
  return pageIndex < pageCount - 1;
201
201
  }
202
202
  /**
203
+ * Checks whether a known, finite last page exists after the current page.
204
+ *
205
+ * Unknown (`-1`), empty, and non-finite page counts do not have a navigable
206
+ * last page.
207
+ *
208
+ * @example
209
+ * ```ts
210
+ * const canGoToLastPage = table_getCanLastPage(table)
211
+ * ```
212
+ */
213
+ function table_getCanLastPage(table) {
214
+ const pageIndex = table.atoms.pagination?.get()?.pageIndex ?? defaultPageIndex;
215
+ const pageCount = table_getPageCount(table);
216
+ return Number.isFinite(pageCount) && pageCount > 0 && pageIndex < pageCount - 1;
217
+ }
218
+ /**
203
219
  * Moves the table to the previous page.
204
220
  *
205
221
  * This delegates to `table_setPageIndex` so pagination state ownership and
@@ -245,7 +261,8 @@ function table_firstPage(table) {
245
261
  /**
246
262
  * Moves the table to the last known page.
247
263
  *
248
- * The target page is derived from `table_getPageCount(table) - 1`.
264
+ * Unknown, empty, and non-finite page counts do not have a navigable last
265
+ * page, so this does nothing for those states.
249
266
  *
250
267
  * @example
251
268
  * ```ts
@@ -253,7 +270,9 @@ function table_firstPage(table) {
253
270
  * ```
254
271
  */
255
272
  function table_lastPage(table) {
256
- return table_setPageIndex(table, table_getPageCount(table) - 1);
273
+ const pageCount = table_getPageCount(table);
274
+ if (!Number.isFinite(pageCount) || pageCount <= 0) return;
275
+ return table_setPageIndex(table, pageCount - 1);
257
276
  }
258
277
  /**
259
278
  * Resolves the number of pages for the current pagination state.
@@ -267,7 +286,12 @@ function table_lastPage(table) {
267
286
  * ```
268
287
  */
269
288
  function table_getPageCount(table) {
270
- return table.options.pageCount ?? Math.ceil(table_getRowCount(table) / (table.atoms.pagination?.get()?.pageSize ?? defaultPageSize));
289
+ const configuredPageCount = table.options.pageCount;
290
+ if (configuredPageCount != null) return configuredPageCount;
291
+ const rowCount = table_getRowCount(table);
292
+ const pageSize = table.atoms.pagination?.get()?.pageSize ?? defaultPageSize;
293
+ if (pageSize === Infinity && Number.isFinite(rowCount) && rowCount > 0) return 1;
294
+ return Math.ceil(rowCount / pageSize);
271
295
  }
272
296
  /**
273
297
  * Resolves the total row count used for pagination math.
@@ -286,4 +310,4 @@ function table_getRowCount(table) {
286
310
  }
287
311
 
288
312
  //#endregion
289
- export { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination };
313
+ export { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination };
@@ -17,8 +17,8 @@ import { column_getAfter, column_getSize, column_getStart, column_resetSize, get
17
17
  import { column_getCanHide, column_getIsVisible, column_getToggleVisibilityHandler, column_toggleVisibility, getDefaultColumnVisibilityState, row_getVisibleCells, row_getVisibleCellsByColumnId, table_getIsAllColumnsVisible, table_getIsSomeColumnsVisible, table_getToggleAllColumnsVisibilityHandler, table_getVisibleFlatColumns, table_getVisibleLeafColumns, table_resetColumnVisibility, table_setColumnVisibility, table_toggleAllColumnsVisible } from "./features/column-visibility/columnVisibilityFeature.utils.js";
18
18
  import { column_getCanGlobalFilter, table_getGlobalAutoFilterFn, table_getGlobalFilterFn, table_resetGlobalFilter, table_setGlobalFilter } from "./features/global-filtering/globalFilteringFeature.utils.js";
19
19
  import { getDefaultExpandedState, row_getCanExpand, row_getIsAllParentsExpanded, row_getIsExpanded, row_getToggleExpandedHandler, row_toggleExpanded, table_autoResetExpanded, table_getCanSomeRowsExpand, table_getExpandedDepth, table_getIsAllRowsExpanded, table_getIsSomeRowsExpanded, table_getToggleAllRowsExpandedHandler, table_resetExpanded, table_setExpanded, table_toggleAllRowsExpanded } from "./features/row-expanding/rowExpandingFeature.utils.js";
20
- import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./features/row-pagination/rowPaginationFeature.utils.js";
20
+ import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./features/row-pagination/rowPaginationFeature.utils.js";
21
21
  import { getDefaultRowPinningState, row_getCanPin, row_getIsPinned, row_getPinnedIndex, row_pin, table_getBottomRows, table_getCenterRows, table_getIsSomeRowsPinned, table_getTopRows, table_resetRowPinning, table_setRowPinning } from "./features/row-pinning/rowPinningFeature.utils.js";
22
22
  import { getDefaultRowSelectionState, isRowSelected, isSubRowSelected, row_getCanMultiSelect, row_getCanSelect, row_getCanSelectSubRows, row_getIsAllSubRowsSelected, row_getIsSelected, row_getIsSomeSelected, row_getToggleSelectedHandler, row_toggleSelected, selectRowsFn, table_getFilteredSelectedRowModel, table_getGroupedSelectedRowModel, table_getIsAllPageRowsSelected, table_getIsAllRowsSelected, table_getIsSomePageRowsSelected, table_getIsSomeRowsSelected, table_getPreSelectedRowModel, table_getSelectedRowIds, table_getSelectedRowModel, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsSelectedHandler, table_resetRowSelection, table_setRowSelection, table_toggleAllPageRowsSelected, table_toggleAllRowsSelected } from "./features/row-selection/rowSelectionFeature.utils.js";
23
23
  import { column_clearSorting, column_getAutoSortDir, column_getAutoSortFn, column_getCanMultiSort, column_getCanSort, column_getFirstSortDir, column_getIsSorted, column_getNextSortingOrder, column_getSortFn, column_getSortIndex, column_getToggleSortingHandler, column_toggleSorting, getDefaultSortingState, table_autoResetSorting, table_resetSorting, table_setSorting } from "./features/row-sorting/rowSortingFeature.utils.js";
24
- export { aggregateColumnValue, cell_getCanSelect, cell_getColSpan, cell_getContext, cell_getIsAggregated, cell_getIsCovered, cell_getIsFocused, cell_getIsGrouped, cell_getIsPlaceholder, cell_getIsSelected, cell_getRowSpan, cell_getSelectionEdges, cell_getSelectionExtendHandler, cell_getSelectionStartHandler, cell_getTabIndex, cell_getValue, cell_renderValue, column_clearSorting, column_getAfter, column_getAggregationFns, column_getAggregationValue, column_getAutoAggregationFn, column_getAutoFilterFn, column_getAutoSortDir, column_getAutoSortFn, column_getCanFilter, column_getCanGlobalFilter, column_getCanGroup, column_getCanHide, column_getCanMultiSort, column_getCanPin, column_getCanResize, column_getCanSort, column_getCanSpan, column_getFacetedMinMaxValues, column_getFacetedRowModel, column_getFacetedUniqueValues, column_getFilterFn, column_getFilterIndex, column_getFilterValue, column_getFirstSortDir, column_getFlatColumns, column_getGroupedIndex, column_getIndex, column_getIsFiltered, column_getIsFirstColumn, column_getIsGrouped, column_getIsLastColumn, column_getIsPinned, column_getIsResizing, column_getIsSorted, column_getIsVisible, column_getLeafColumns, column_getNextSortingOrder, column_getPinnedIndex, column_getSize, column_getSortFn, column_getSortIndex, column_getStart, column_getToggleGroupingHandler, column_getToggleSortingHandler, column_getToggleVisibilityHandler, column_pin, column_resetSize, column_setFilterValue, column_toggleGrouping, column_toggleSorting, column_toggleVisibility, formatAggregatedCellValue, getDefaultCellSelectionState, getDefaultColumnFiltersState, getDefaultColumnOrderState, getDefaultColumnPinningState, getDefaultColumnResizingState, getDefaultColumnSizingColumnDef, getDefaultColumnSizingState, getDefaultColumnVisibilityState, getDefaultExpandedState, getDefaultGroupingState, getDefaultPaginationState, getDefaultRowPinningState, getDefaultRowSelectionState, getDefaultSortingState, header_getContext, header_getLeafHeaders, header_getResizeHandler, header_getSize, header_getStart, isRowSelected, isSubRowSelected, isTouchStartEvent, normalizeAggregationRows, normalizeUniqueAggregationRows, orderColumns, passiveEventSupported, row_getAllCells, row_getAllCellsByColumnId, row_getCanExpand, row_getCanMultiSelect, row_getCanPin, row_getCanSelect, row_getCanSelectSubRows, row_getCenterVisibleCells, row_getDisplayIndex, row_getEndVisibleCells, row_getGroupingValue, row_getIsAllParentsExpanded, row_getIsAllSubRowsSelected, row_getIsExpanded, row_getIsGrouped, row_getIsPinned, row_getIsSelected, row_getIsSomeSelected, row_getLeafRows, row_getParentRow, row_getParentRows, row_getPinnedIndex, row_getStartVisibleCells, row_getToggleExpandedHandler, row_getToggleSelectedHandler, row_getUniqueValues, row_getValue, row_getVisibleCells, row_getVisibleCellsByColumnId, row_pin, row_renderValue, row_toggleExpanded, row_toggleSelected, selectRowsFn, shouldAutoRemoveFilter, table_autoResetCellSelection, table_autoResetExpanded, table_autoResetPageIndex, table_autoResetSorting, table_extendCellSelection, table_firstPage, table_getAllColumns, table_getAllFlatColumns, table_getAllFlatColumnsById, table_getAllLeafColumns, table_getAllLeafColumnsById, table_getBottomRows, table_getCanNextPage, table_getCanPreviousPage, table_getCanSomeRowsExpand, table_getCellSelectionBounds, table_getCellSelectionColumnIds, table_getCellSelectionColumnIndexes, table_getCellSelectionMergeBounds, table_getCellSelectionRowIds, table_getCellSpanIndex, table_getCenterFlatHeaders, table_getCenterFooterGroups, table_getCenterHeaderGroups, table_getCenterLeafColumns, table_getCenterLeafHeaders, table_getCenterRows, table_getCenterTotalSize, table_getCenterVisibleLeafColumns, table_getColumn, table_getColumnIndexes, table_getColumnOffsets, table_getCoreRowModel, table_getDefaultColumnDef, table_getEndFlatHeaders, table_getEndFooterGroups, table_getEndHeaderGroups, table_getEndLeafColumns, table_getEndLeafHeaders, table_getEndTotalSize, table_getEndVisibleLeafColumns, table_getExpandedDepth, table_getExpandedRowModel, table_getFilteredRowModel, table_getFilteredSelectedRowModel, table_getFlatHeaders, table_getFocusedCell, table_getFooterGroups, table_getGlobalAutoFilterFn, table_getGlobalFacetedMinMaxValues, table_getGlobalFacetedRowModel, table_getGlobalFacetedUniqueValues, table_getGlobalFilterFn, table_getGroupedRowModel, table_getGroupedSelectedRowModel, table_getHeaderGroups, table_getIsAllColumnsVisible, table_getIsAllPageRowsSelected, table_getIsAllRowsExpanded, table_getIsAllRowsSelected, table_getIsSomeColumnsPinned, table_getIsSomeColumnsVisible, table_getIsSomePageRowsSelected, table_getIsSomeRowsExpanded, table_getIsSomeRowsPinned, table_getIsSomeRowsSelected, table_getLeafHeaders, table_getMaxSubRowDepth, table_getOrderColumnsFn, table_getPageCount, table_getPageOptions, table_getPaginatedRowModel, table_getPinnedLeafColumns, table_getPinnedVisibleLeafColumns, table_getPreExpandedRowModel, table_getPreFilteredRowModel, table_getPreGroupedRowModel, table_getPrePaginatedRowModel, table_getPreSelectedRowModel, table_getPreSortedRowModel, table_getRow, table_getRowCount, table_getRowId, table_getRowModel, table_getRowsInDisplayOrder, table_getSelectedCellCount, table_getSelectedCellIds, table_getSelectedCellRangesData, table_getSelectedRowIds, table_getSelectedRowModel, table_getSortedRowModel, table_getStartFlatHeaders, table_getStartFooterGroups, table_getStartHeaderGroups, table_getStartLeafColumns, table_getStartLeafHeaders, table_getStartTotalSize, table_getStartVisibleLeafColumns, table_getToggleAllColumnsVisibilityHandler, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsExpandedHandler, table_getToggleAllRowsSelectedHandler, table_getTopRows, table_getTotalSize, table_getVisibleFlatColumns, table_getVisibleLeafColumns, table_lastPage, table_mergeOptions, table_moveCellSelection, table_nextPage, table_previousPage, table_publishExternalState, table_reset, table_resetCellSelection, table_resetColumnFilters, table_resetColumnOrder, table_resetColumnPinning, table_resetColumnSizing, table_resetColumnVisibility, table_resetExpanded, table_resetGlobalFilter, table_resetGrouping, table_resetHeaderSizeInfo, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_resetRowPinning, table_resetRowSelection, table_resetSorting, table_selectAllCells, table_selectCellRange, table_setCellSelection, table_setColumnFilters, table_setColumnOrder, table_setColumnPinning, table_setColumnResizing, table_setColumnSizing, table_setColumnVisibility, table_setExpanded, table_setFocusedCell, table_setGlobalFilter, table_setGrouping, table_setOptions, table_setPageIndex, table_setPageSize, table_setPagination, table_setRowPinning, table_setRowSelection, table_setSorting, table_syncExternalStateToBaseAtoms, table_toggleAllColumnsVisible, table_toggleAllPageRowsSelected, table_toggleAllRowsExpanded, table_toggleAllRowsSelected };
24
+ export { aggregateColumnValue, cell_getCanSelect, cell_getColSpan, cell_getContext, cell_getIsAggregated, cell_getIsCovered, cell_getIsFocused, cell_getIsGrouped, cell_getIsPlaceholder, cell_getIsSelected, cell_getRowSpan, cell_getSelectionEdges, cell_getSelectionExtendHandler, cell_getSelectionStartHandler, cell_getTabIndex, cell_getValue, cell_renderValue, column_clearSorting, column_getAfter, column_getAggregationFns, column_getAggregationValue, column_getAutoAggregationFn, column_getAutoFilterFn, column_getAutoSortDir, column_getAutoSortFn, column_getCanFilter, column_getCanGlobalFilter, column_getCanGroup, column_getCanHide, column_getCanMultiSort, column_getCanPin, column_getCanResize, column_getCanSort, column_getCanSpan, column_getFacetedMinMaxValues, column_getFacetedRowModel, column_getFacetedUniqueValues, column_getFilterFn, column_getFilterIndex, column_getFilterValue, column_getFirstSortDir, column_getFlatColumns, column_getGroupedIndex, column_getIndex, column_getIsFiltered, column_getIsFirstColumn, column_getIsGrouped, column_getIsLastColumn, column_getIsPinned, column_getIsResizing, column_getIsSorted, column_getIsVisible, column_getLeafColumns, column_getNextSortingOrder, column_getPinnedIndex, column_getSize, column_getSortFn, column_getSortIndex, column_getStart, column_getToggleGroupingHandler, column_getToggleSortingHandler, column_getToggleVisibilityHandler, column_pin, column_resetSize, column_setFilterValue, column_toggleGrouping, column_toggleSorting, column_toggleVisibility, formatAggregatedCellValue, getDefaultCellSelectionState, getDefaultColumnFiltersState, getDefaultColumnOrderState, getDefaultColumnPinningState, getDefaultColumnResizingState, getDefaultColumnSizingColumnDef, getDefaultColumnSizingState, getDefaultColumnVisibilityState, getDefaultExpandedState, getDefaultGroupingState, getDefaultPaginationState, getDefaultRowPinningState, getDefaultRowSelectionState, getDefaultSortingState, header_getContext, header_getLeafHeaders, header_getResizeHandler, header_getSize, header_getStart, isRowSelected, isSubRowSelected, isTouchStartEvent, normalizeAggregationRows, normalizeUniqueAggregationRows, orderColumns, passiveEventSupported, row_getAllCells, row_getAllCellsByColumnId, row_getCanExpand, row_getCanMultiSelect, row_getCanPin, row_getCanSelect, row_getCanSelectSubRows, row_getCenterVisibleCells, row_getDisplayIndex, row_getEndVisibleCells, row_getGroupingValue, row_getIsAllParentsExpanded, row_getIsAllSubRowsSelected, row_getIsExpanded, row_getIsGrouped, row_getIsPinned, row_getIsSelected, row_getIsSomeSelected, row_getLeafRows, row_getParentRow, row_getParentRows, row_getPinnedIndex, row_getStartVisibleCells, row_getToggleExpandedHandler, row_getToggleSelectedHandler, row_getUniqueValues, row_getValue, row_getVisibleCells, row_getVisibleCellsByColumnId, row_pin, row_renderValue, row_toggleExpanded, row_toggleSelected, selectRowsFn, shouldAutoRemoveFilter, table_autoResetCellSelection, table_autoResetExpanded, table_autoResetPageIndex, table_autoResetSorting, table_extendCellSelection, table_firstPage, table_getAllColumns, table_getAllFlatColumns, table_getAllFlatColumnsById, table_getAllLeafColumns, table_getAllLeafColumnsById, table_getBottomRows, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getCanSomeRowsExpand, table_getCellSelectionBounds, table_getCellSelectionColumnIds, table_getCellSelectionColumnIndexes, table_getCellSelectionMergeBounds, table_getCellSelectionRowIds, table_getCellSpanIndex, table_getCenterFlatHeaders, table_getCenterFooterGroups, table_getCenterHeaderGroups, table_getCenterLeafColumns, table_getCenterLeafHeaders, table_getCenterRows, table_getCenterTotalSize, table_getCenterVisibleLeafColumns, table_getColumn, table_getColumnIndexes, table_getColumnOffsets, table_getCoreRowModel, table_getDefaultColumnDef, table_getEndFlatHeaders, table_getEndFooterGroups, table_getEndHeaderGroups, table_getEndLeafColumns, table_getEndLeafHeaders, table_getEndTotalSize, table_getEndVisibleLeafColumns, table_getExpandedDepth, table_getExpandedRowModel, table_getFilteredRowModel, table_getFilteredSelectedRowModel, table_getFlatHeaders, table_getFocusedCell, table_getFooterGroups, table_getGlobalAutoFilterFn, table_getGlobalFacetedMinMaxValues, table_getGlobalFacetedRowModel, table_getGlobalFacetedUniqueValues, table_getGlobalFilterFn, table_getGroupedRowModel, table_getGroupedSelectedRowModel, table_getHeaderGroups, table_getIsAllColumnsVisible, table_getIsAllPageRowsSelected, table_getIsAllRowsExpanded, table_getIsAllRowsSelected, table_getIsSomeColumnsPinned, table_getIsSomeColumnsVisible, table_getIsSomePageRowsSelected, table_getIsSomeRowsExpanded, table_getIsSomeRowsPinned, table_getIsSomeRowsSelected, table_getLeafHeaders, table_getMaxSubRowDepth, table_getOrderColumnsFn, table_getPageCount, table_getPageOptions, table_getPaginatedRowModel, table_getPinnedLeafColumns, table_getPinnedVisibleLeafColumns, table_getPreExpandedRowModel, table_getPreFilteredRowModel, table_getPreGroupedRowModel, table_getPrePaginatedRowModel, table_getPreSelectedRowModel, table_getPreSortedRowModel, table_getRow, table_getRowCount, table_getRowId, table_getRowModel, table_getRowsInDisplayOrder, table_getSelectedCellCount, table_getSelectedCellIds, table_getSelectedCellRangesData, table_getSelectedRowIds, table_getSelectedRowModel, table_getSortedRowModel, table_getStartFlatHeaders, table_getStartFooterGroups, table_getStartHeaderGroups, table_getStartLeafColumns, table_getStartLeafHeaders, table_getStartTotalSize, table_getStartVisibleLeafColumns, table_getToggleAllColumnsVisibilityHandler, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsExpandedHandler, table_getToggleAllRowsSelectedHandler, table_getTopRows, table_getTotalSize, table_getVisibleFlatColumns, table_getVisibleLeafColumns, table_lastPage, table_mergeOptions, table_moveCellSelection, table_nextPage, table_previousPage, table_publishExternalState, table_reset, table_resetCellSelection, table_resetColumnFilters, table_resetColumnOrder, table_resetColumnPinning, table_resetColumnSizing, table_resetColumnVisibility, table_resetExpanded, table_resetGlobalFilter, table_resetGrouping, table_resetHeaderSizeInfo, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_resetRowPinning, table_resetRowSelection, table_resetSorting, table_selectAllCells, table_selectCellRange, table_setCellSelection, table_setColumnFilters, table_setColumnOrder, table_setColumnPinning, table_setColumnResizing, table_setColumnSizing, table_setColumnVisibility, table_setExpanded, table_setFocusedCell, table_setGlobalFilter, table_setGrouping, table_setOptions, table_setPageIndex, table_setPageSize, table_setPagination, table_setRowPinning, table_setRowSelection, table_setSorting, table_syncExternalStateToBaseAtoms, table_toggleAllColumnsVisible, table_toggleAllPageRowsSelected, table_toggleAllRowsExpanded, table_toggleAllRowsSelected };
@@ -6,7 +6,7 @@ import { column_getFlatColumns, column_getLeafColumns, table_getAllColumns, tabl
6
6
  import { header_getContext, header_getLeafHeaders, table_getFlatHeaders, table_getFooterGroups, table_getHeaderGroups, table_getLeafHeaders } from "./core/headers/coreHeadersFeature.utils.js";
7
7
  import { cell_getCanSelect, cell_getIsFocused, cell_getIsSelected, cell_getSelectionEdges, cell_getSelectionExtendHandler, cell_getSelectionStartHandler, cell_getTabIndex, getDefaultCellSelectionState, table_autoResetCellSelection, table_extendCellSelection, table_getCellSelectionBounds, table_getCellSelectionColumnIds, table_getCellSelectionColumnIndexes, table_getCellSelectionMergeBounds, table_getCellSelectionRowIds, table_getFocusedCell, table_getSelectedCellCount, table_getSelectedCellIds, table_getSelectedCellRangesData, table_moveCellSelection, table_resetCellSelection, table_selectAllCells, table_selectCellRange, table_setCellSelection, table_setFocusedCell } from "./features/cell-selection/cellSelectionFeature.utils.js";
8
8
  import { getDefaultExpandedState, row_getCanExpand, row_getIsAllParentsExpanded, row_getIsExpanded, row_getToggleExpandedHandler, row_toggleExpanded, table_autoResetExpanded, table_getCanSomeRowsExpand, table_getExpandedDepth, table_getIsAllRowsExpanded, table_getIsSomeRowsExpanded, table_getToggleAllRowsExpandedHandler, table_resetExpanded, table_setExpanded, table_toggleAllRowsExpanded } from "./features/row-expanding/rowExpandingFeature.utils.js";
9
- import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./features/row-pagination/rowPaginationFeature.utils.js";
9
+ import { getDefaultPaginationState, table_autoResetPageIndex, table_firstPage, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getPageCount, table_getPageOptions, table_getRowCount, table_lastPage, table_nextPage, table_previousPage, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_setPageIndex, table_setPageSize, table_setPagination } from "./features/row-pagination/rowPaginationFeature.utils.js";
10
10
  import { column_clearSorting, column_getAutoSortDir, column_getAutoSortFn, column_getCanMultiSort, column_getCanSort, column_getFirstSortDir, column_getIsSorted, column_getNextSortingOrder, column_getSortFn, column_getSortIndex, column_getToggleSortingHandler, column_toggleSorting, getDefaultSortingState, table_autoResetSorting, table_resetSorting, table_setSorting } from "./features/row-sorting/rowSortingFeature.utils.js";
11
11
  import { table_getCoreRowModel, table_getExpandedRowModel, table_getFilteredRowModel, table_getGroupedRowModel, table_getPaginatedRowModel, table_getPreExpandedRowModel, table_getPreFilteredRowModel, table_getPreGroupedRowModel, table_getPrePaginatedRowModel, table_getPreSortedRowModel, table_getRowModel, table_getSortedRowModel } from "./core/row-models/coreRowModelsFeature.utils.js";
12
12
  import { row_getAllCells, row_getAllCellsByColumnId, row_getDisplayIndex, row_getLeafRows, row_getParentRow, row_getParentRows, row_getUniqueValues, row_getValue, row_renderValue, table_getMaxSubRowDepth, table_getRow, table_getRowId, table_getRowsInDisplayOrder } from "./core/rows/coreRowsFeature.utils.js";
@@ -22,4 +22,4 @@ import { column_getCanGlobalFilter, table_getGlobalAutoFilterFn, table_getGlobal
22
22
  import { getDefaultRowPinningState, row_getCanPin, row_getIsPinned, row_getPinnedIndex, row_pin, table_getBottomRows, table_getCenterRows, table_getIsSomeRowsPinned, table_getTopRows, table_resetRowPinning, table_setRowPinning } from "./features/row-pinning/rowPinningFeature.utils.js";
23
23
  import { getDefaultRowSelectionState, isRowSelected, isSubRowSelected, row_getCanMultiSelect, row_getCanSelect, row_getCanSelectSubRows, row_getIsAllSubRowsSelected, row_getIsSelected, row_getIsSomeSelected, row_getToggleSelectedHandler, row_toggleSelected, selectRowsFn, table_getFilteredSelectedRowModel, table_getGroupedSelectedRowModel, table_getIsAllPageRowsSelected, table_getIsAllRowsSelected, table_getIsSomePageRowsSelected, table_getIsSomeRowsSelected, table_getPreSelectedRowModel, table_getSelectedRowIds, table_getSelectedRowModel, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsSelectedHandler, table_resetRowSelection, table_setRowSelection, table_toggleAllPageRowsSelected, table_toggleAllRowsSelected } from "./features/row-selection/rowSelectionFeature.utils.js";
24
24
 
25
- export { aggregateColumnValue, cell_getCanSelect, cell_getColSpan, cell_getContext, cell_getIsAggregated, cell_getIsCovered, cell_getIsFocused, cell_getIsGrouped, cell_getIsPlaceholder, cell_getIsSelected, cell_getRowSpan, cell_getSelectionEdges, cell_getSelectionExtendHandler, cell_getSelectionStartHandler, cell_getTabIndex, cell_getValue, cell_renderValue, column_clearSorting, column_getAfter, column_getAggregationFns, column_getAggregationValue, column_getAutoAggregationFn, column_getAutoFilterFn, column_getAutoSortDir, column_getAutoSortFn, column_getCanFilter, column_getCanGlobalFilter, column_getCanGroup, column_getCanHide, column_getCanMultiSort, column_getCanPin, column_getCanResize, column_getCanSort, column_getCanSpan, column_getFacetedMinMaxValues, column_getFacetedRowModel, column_getFacetedUniqueValues, column_getFilterFn, column_getFilterIndex, column_getFilterValue, column_getFirstSortDir, column_getFlatColumns, column_getGroupedIndex, column_getIndex, column_getIsFiltered, column_getIsFirstColumn, column_getIsGrouped, column_getIsLastColumn, column_getIsPinned, column_getIsResizing, column_getIsSorted, column_getIsVisible, column_getLeafColumns, column_getNextSortingOrder, column_getPinnedIndex, column_getSize, column_getSortFn, column_getSortIndex, column_getStart, column_getToggleGroupingHandler, column_getToggleSortingHandler, column_getToggleVisibilityHandler, column_pin, column_resetSize, column_setFilterValue, column_toggleGrouping, column_toggleSorting, column_toggleVisibility, formatAggregatedCellValue, getDefaultCellSelectionState, getDefaultColumnFiltersState, getDefaultColumnOrderState, getDefaultColumnPinningState, getDefaultColumnResizingState, getDefaultColumnSizingColumnDef, getDefaultColumnSizingState, getDefaultColumnVisibilityState, getDefaultExpandedState, getDefaultGroupingState, getDefaultPaginationState, getDefaultRowPinningState, getDefaultRowSelectionState, getDefaultSortingState, header_getContext, header_getLeafHeaders, header_getResizeHandler, header_getSize, header_getStart, isRowSelected, isSubRowSelected, isTouchStartEvent, normalizeAggregationRows, normalizeUniqueAggregationRows, orderColumns, passiveEventSupported, row_getAllCells, row_getAllCellsByColumnId, row_getCanExpand, row_getCanMultiSelect, row_getCanPin, row_getCanSelect, row_getCanSelectSubRows, row_getCenterVisibleCells, row_getDisplayIndex, row_getEndVisibleCells, row_getGroupingValue, row_getIsAllParentsExpanded, row_getIsAllSubRowsSelected, row_getIsExpanded, row_getIsGrouped, row_getIsPinned, row_getIsSelected, row_getIsSomeSelected, row_getLeafRows, row_getParentRow, row_getParentRows, row_getPinnedIndex, row_getStartVisibleCells, row_getToggleExpandedHandler, row_getToggleSelectedHandler, row_getUniqueValues, row_getValue, row_getVisibleCells, row_getVisibleCellsByColumnId, row_pin, row_renderValue, row_toggleExpanded, row_toggleSelected, selectRowsFn, shouldAutoRemoveFilter, table_autoResetCellSelection, table_autoResetExpanded, table_autoResetPageIndex, table_autoResetSorting, table_extendCellSelection, table_firstPage, table_getAllColumns, table_getAllFlatColumns, table_getAllFlatColumnsById, table_getAllLeafColumns, table_getAllLeafColumnsById, table_getBottomRows, table_getCanNextPage, table_getCanPreviousPage, table_getCanSomeRowsExpand, table_getCellSelectionBounds, table_getCellSelectionColumnIds, table_getCellSelectionColumnIndexes, table_getCellSelectionMergeBounds, table_getCellSelectionRowIds, table_getCellSpanIndex, table_getCenterFlatHeaders, table_getCenterFooterGroups, table_getCenterHeaderGroups, table_getCenterLeafColumns, table_getCenterLeafHeaders, table_getCenterRows, table_getCenterTotalSize, table_getCenterVisibleLeafColumns, table_getColumn, table_getColumnIndexes, table_getColumnOffsets, table_getCoreRowModel, table_getDefaultColumnDef, table_getEndFlatHeaders, table_getEndFooterGroups, table_getEndHeaderGroups, table_getEndLeafColumns, table_getEndLeafHeaders, table_getEndTotalSize, table_getEndVisibleLeafColumns, table_getExpandedDepth, table_getExpandedRowModel, table_getFilteredRowModel, table_getFilteredSelectedRowModel, table_getFlatHeaders, table_getFocusedCell, table_getFooterGroups, table_getGlobalAutoFilterFn, table_getGlobalFacetedMinMaxValues, table_getGlobalFacetedRowModel, table_getGlobalFacetedUniqueValues, table_getGlobalFilterFn, table_getGroupedRowModel, table_getGroupedSelectedRowModel, table_getHeaderGroups, table_getIsAllColumnsVisible, table_getIsAllPageRowsSelected, table_getIsAllRowsExpanded, table_getIsAllRowsSelected, table_getIsSomeColumnsPinned, table_getIsSomeColumnsVisible, table_getIsSomePageRowsSelected, table_getIsSomeRowsExpanded, table_getIsSomeRowsPinned, table_getIsSomeRowsSelected, table_getLeafHeaders, table_getMaxSubRowDepth, table_getOrderColumnsFn, table_getPageCount, table_getPageOptions, table_getPaginatedRowModel, table_getPinnedLeafColumns, table_getPinnedVisibleLeafColumns, table_getPreExpandedRowModel, table_getPreFilteredRowModel, table_getPreGroupedRowModel, table_getPrePaginatedRowModel, table_getPreSelectedRowModel, table_getPreSortedRowModel, table_getRow, table_getRowCount, table_getRowId, table_getRowModel, table_getRowsInDisplayOrder, table_getSelectedCellCount, table_getSelectedCellIds, table_getSelectedCellRangesData, table_getSelectedRowIds, table_getSelectedRowModel, table_getSortedRowModel, table_getStartFlatHeaders, table_getStartFooterGroups, table_getStartHeaderGroups, table_getStartLeafColumns, table_getStartLeafHeaders, table_getStartTotalSize, table_getStartVisibleLeafColumns, table_getToggleAllColumnsVisibilityHandler, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsExpandedHandler, table_getToggleAllRowsSelectedHandler, table_getTopRows, table_getTotalSize, table_getVisibleFlatColumns, table_getVisibleLeafColumns, table_lastPage, table_mergeOptions, table_moveCellSelection, table_nextPage, table_previousPage, table_publishExternalState, table_reset, table_resetCellSelection, table_resetColumnFilters, table_resetColumnOrder, table_resetColumnPinning, table_resetColumnSizing, table_resetColumnVisibility, table_resetExpanded, table_resetGlobalFilter, table_resetGrouping, table_resetHeaderSizeInfo, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_resetRowPinning, table_resetRowSelection, table_resetSorting, table_selectAllCells, table_selectCellRange, table_setCellSelection, table_setColumnFilters, table_setColumnOrder, table_setColumnPinning, table_setColumnResizing, table_setColumnSizing, table_setColumnVisibility, table_setExpanded, table_setFocusedCell, table_setGlobalFilter, table_setGrouping, table_setOptions, table_setPageIndex, table_setPageSize, table_setPagination, table_setRowPinning, table_setRowSelection, table_setSorting, table_syncExternalStateToBaseAtoms, table_toggleAllColumnsVisible, table_toggleAllPageRowsSelected, table_toggleAllRowsExpanded, table_toggleAllRowsSelected };
25
+ export { aggregateColumnValue, cell_getCanSelect, cell_getColSpan, cell_getContext, cell_getIsAggregated, cell_getIsCovered, cell_getIsFocused, cell_getIsGrouped, cell_getIsPlaceholder, cell_getIsSelected, cell_getRowSpan, cell_getSelectionEdges, cell_getSelectionExtendHandler, cell_getSelectionStartHandler, cell_getTabIndex, cell_getValue, cell_renderValue, column_clearSorting, column_getAfter, column_getAggregationFns, column_getAggregationValue, column_getAutoAggregationFn, column_getAutoFilterFn, column_getAutoSortDir, column_getAutoSortFn, column_getCanFilter, column_getCanGlobalFilter, column_getCanGroup, column_getCanHide, column_getCanMultiSort, column_getCanPin, column_getCanResize, column_getCanSort, column_getCanSpan, column_getFacetedMinMaxValues, column_getFacetedRowModel, column_getFacetedUniqueValues, column_getFilterFn, column_getFilterIndex, column_getFilterValue, column_getFirstSortDir, column_getFlatColumns, column_getGroupedIndex, column_getIndex, column_getIsFiltered, column_getIsFirstColumn, column_getIsGrouped, column_getIsLastColumn, column_getIsPinned, column_getIsResizing, column_getIsSorted, column_getIsVisible, column_getLeafColumns, column_getNextSortingOrder, column_getPinnedIndex, column_getSize, column_getSortFn, column_getSortIndex, column_getStart, column_getToggleGroupingHandler, column_getToggleSortingHandler, column_getToggleVisibilityHandler, column_pin, column_resetSize, column_setFilterValue, column_toggleGrouping, column_toggleSorting, column_toggleVisibility, formatAggregatedCellValue, getDefaultCellSelectionState, getDefaultColumnFiltersState, getDefaultColumnOrderState, getDefaultColumnPinningState, getDefaultColumnResizingState, getDefaultColumnSizingColumnDef, getDefaultColumnSizingState, getDefaultColumnVisibilityState, getDefaultExpandedState, getDefaultGroupingState, getDefaultPaginationState, getDefaultRowPinningState, getDefaultRowSelectionState, getDefaultSortingState, header_getContext, header_getLeafHeaders, header_getResizeHandler, header_getSize, header_getStart, isRowSelected, isSubRowSelected, isTouchStartEvent, normalizeAggregationRows, normalizeUniqueAggregationRows, orderColumns, passiveEventSupported, row_getAllCells, row_getAllCellsByColumnId, row_getCanExpand, row_getCanMultiSelect, row_getCanPin, row_getCanSelect, row_getCanSelectSubRows, row_getCenterVisibleCells, row_getDisplayIndex, row_getEndVisibleCells, row_getGroupingValue, row_getIsAllParentsExpanded, row_getIsAllSubRowsSelected, row_getIsExpanded, row_getIsGrouped, row_getIsPinned, row_getIsSelected, row_getIsSomeSelected, row_getLeafRows, row_getParentRow, row_getParentRows, row_getPinnedIndex, row_getStartVisibleCells, row_getToggleExpandedHandler, row_getToggleSelectedHandler, row_getUniqueValues, row_getValue, row_getVisibleCells, row_getVisibleCellsByColumnId, row_pin, row_renderValue, row_toggleExpanded, row_toggleSelected, selectRowsFn, shouldAutoRemoveFilter, table_autoResetCellSelection, table_autoResetExpanded, table_autoResetPageIndex, table_autoResetSorting, table_extendCellSelection, table_firstPage, table_getAllColumns, table_getAllFlatColumns, table_getAllFlatColumnsById, table_getAllLeafColumns, table_getAllLeafColumnsById, table_getBottomRows, table_getCanLastPage, table_getCanNextPage, table_getCanPreviousPage, table_getCanSomeRowsExpand, table_getCellSelectionBounds, table_getCellSelectionColumnIds, table_getCellSelectionColumnIndexes, table_getCellSelectionMergeBounds, table_getCellSelectionRowIds, table_getCellSpanIndex, table_getCenterFlatHeaders, table_getCenterFooterGroups, table_getCenterHeaderGroups, table_getCenterLeafColumns, table_getCenterLeafHeaders, table_getCenterRows, table_getCenterTotalSize, table_getCenterVisibleLeafColumns, table_getColumn, table_getColumnIndexes, table_getColumnOffsets, table_getCoreRowModel, table_getDefaultColumnDef, table_getEndFlatHeaders, table_getEndFooterGroups, table_getEndHeaderGroups, table_getEndLeafColumns, table_getEndLeafHeaders, table_getEndTotalSize, table_getEndVisibleLeafColumns, table_getExpandedDepth, table_getExpandedRowModel, table_getFilteredRowModel, table_getFilteredSelectedRowModel, table_getFlatHeaders, table_getFocusedCell, table_getFooterGroups, table_getGlobalAutoFilterFn, table_getGlobalFacetedMinMaxValues, table_getGlobalFacetedRowModel, table_getGlobalFacetedUniqueValues, table_getGlobalFilterFn, table_getGroupedRowModel, table_getGroupedSelectedRowModel, table_getHeaderGroups, table_getIsAllColumnsVisible, table_getIsAllPageRowsSelected, table_getIsAllRowsExpanded, table_getIsAllRowsSelected, table_getIsSomeColumnsPinned, table_getIsSomeColumnsVisible, table_getIsSomePageRowsSelected, table_getIsSomeRowsExpanded, table_getIsSomeRowsPinned, table_getIsSomeRowsSelected, table_getLeafHeaders, table_getMaxSubRowDepth, table_getOrderColumnsFn, table_getPageCount, table_getPageOptions, table_getPaginatedRowModel, table_getPinnedLeafColumns, table_getPinnedVisibleLeafColumns, table_getPreExpandedRowModel, table_getPreFilteredRowModel, table_getPreGroupedRowModel, table_getPrePaginatedRowModel, table_getPreSelectedRowModel, table_getPreSortedRowModel, table_getRow, table_getRowCount, table_getRowId, table_getRowModel, table_getRowsInDisplayOrder, table_getSelectedCellCount, table_getSelectedCellIds, table_getSelectedCellRangesData, table_getSelectedRowIds, table_getSelectedRowModel, table_getSortedRowModel, table_getStartFlatHeaders, table_getStartFooterGroups, table_getStartHeaderGroups, table_getStartLeafColumns, table_getStartLeafHeaders, table_getStartTotalSize, table_getStartVisibleLeafColumns, table_getToggleAllColumnsVisibilityHandler, table_getToggleAllPageRowsSelectedHandler, table_getToggleAllRowsExpandedHandler, table_getToggleAllRowsSelectedHandler, table_getTopRows, table_getTotalSize, table_getVisibleFlatColumns, table_getVisibleLeafColumns, table_lastPage, table_mergeOptions, table_moveCellSelection, table_nextPage, table_previousPage, table_publishExternalState, table_reset, table_resetCellSelection, table_resetColumnFilters, table_resetColumnOrder, table_resetColumnPinning, table_resetColumnSizing, table_resetColumnVisibility, table_resetExpanded, table_resetGlobalFilter, table_resetGrouping, table_resetHeaderSizeInfo, table_resetPageIndex, table_resetPageSize, table_resetPagination, table_resetRowPinning, table_resetRowSelection, table_resetSorting, table_selectAllCells, table_selectCellRange, table_setCellSelection, table_setColumnFilters, table_setColumnOrder, table_setColumnPinning, table_setColumnResizing, table_setColumnSizing, table_setColumnVisibility, table_setExpanded, table_setFocusedCell, table_setGlobalFilter, table_setGrouping, table_setOptions, table_setPageIndex, table_setPageSize, table_setPagination, table_setRowPinning, table_setRowSelection, table_setSorting, table_syncExternalStateToBaseAtoms, table_toggleAllColumnsVisible, table_toggleAllPageRowsSelected, table_toggleAllRowsExpanded, table_toggleAllRowsSelected };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
- "version": "9.0.1",
3
+ "version": "9.1.0",
4
4
  "description": "Headless UI for building powerful tables & datagrids for TS/JS.",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -3,7 +3,7 @@ name: aggregation
3
3
  description: >
4
4
  Aggregate TanStack Table columns independently of grouping, including grand totals, caller-selected row totals, multiple keyed aggregations, custom context-based definitions, grouped merges, manual values, and worker constraints.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/guide/aggregation.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:packages/table-core/src/index.ts'
@@ -3,7 +3,7 @@ name: cell-selection
3
3
  description: >
4
4
  Select, add, and subtract rectangular cell ranges with cellSelectionFeature: ordered include/exclude operations keyed by row and column id, modifier dragging, final positive bounds, selection edges, render-order resolution under pinning, and autoResetCellSelection. Load for spreadsheet-style selection, “select all except” behavior, unexpected range changes after sorting or reordering, drag performance, or copy-to-clipboard.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/cell-selection.md'
@@ -3,7 +3,7 @@ name: cell-spanning
3
3
  description: >
4
4
  Merge adjacent body cells with cellSpanningFeature: value-based rowSpan opt-in per column via spanRows, per-row colSpan via spanColumns, and the covered-cell convention where a span of 0 means skip the cell. Load for merged data grids, spans that disappear after sorting or paginating, ragged table rows, or a cell that unexpectedly merges down the whole tbody.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/cell-spanning.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/row-models.md'
@@ -3,7 +3,7 @@ name: column-faceting
3
3
  description: >
4
4
  Build faceted filter UIs with columnFacetingFeature, facetedRowModel, facetedUniqueValues, and facetedMinMaxValues. Load for facet counts, numeric ranges, own-filter exclusion, or server-page facet completeness.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'column-filtering']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-faceting.md'
@@ -3,7 +3,7 @@ name: column-filtering
3
3
  description: >
4
4
  Filter columns with columnFilteringFeature, filteredRowModel, filterFns, filterMeta, nested-row direction, and manualFiltering. Load for accessor compatibility, controlled filter updaters, fuzzy metadata, or client/server ownership.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-filtering.md'
@@ -3,7 +3,7 @@ name: column-ordering
3
3
  description: >
4
4
  Control TanStack Table v9 leaf columnOrder with stable IDs while accounting for pinning regions, visibility, and groupedColumnMode precedence. Load for drag-and-drop columns or rendered order that differs from state.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-ordering.md'
@@ -3,7 +3,7 @@ name: column-pinning
3
3
  description: >
4
4
  Pin columns into logical start, center, and end regions with columnPinningFeature and renderer-owned sticky CSS. Load for RTL offsets, z-index, backgrounds, overflow, widths, gaps, or overlaps.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'column-sizing']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-pinning.md'
@@ -3,7 +3,7 @@ name: column-resizing
3
3
  description: >
4
4
  Wire columnResizingFeature, header.getResizeHandler, resize mode and direction, pointer or touch events, and performant CSS-variable updates. Load when resize state changes but widths do not, or large tables resize slowly.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'column-sizing']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-resizing.md'
@@ -3,7 +3,7 @@ name: column-sizing
3
3
  description: >
4
4
  Use columnSizingFeature numeric size, minSize, maxSize, getSize, getStart, getAfter, and total-size APIs in table, grid, or flex CSS. Load for auto or percentage misconceptions and sizing/pinning layout mismatch.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-sizing.md'
@@ -3,7 +3,7 @@ name: column-visibility
3
3
  description: >
4
4
  Hide columns with columnVisibilityFeature while rendering visibility-aware header, column, and cell collections. Load when hidden columns remain in the DOM, false-versus-absent state is confused, or enableHiding is misunderstood.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/column-visibility.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: core
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  sources:
10
10
  - 'TanStack/table:docs/overview.md'
11
11
  - 'TanStack/table:docs/guide/tables.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core', 'table-features', 'typescript']
10
10
  sources:
11
11
  - 'TanStack/table:docs/framework/react/guide/custom-features.md'
@@ -3,7 +3,7 @@ name: expanding
3
3
  description: >
4
4
  Expand hierarchical subrows or custom detail panels with rowExpandingFeature, expandedRowModel, getSubRows, getRowCanExpand, manualExpanding, and paginateExpandedRows. Load when expansion state changes but no UI appears.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/expanding.md'
@@ -3,7 +3,7 @@ name: global-filtering
3
3
  description: >
4
4
  Apply globalFilter across eligible columns with globalFilteringFeature, columnFilteringFeature, filteredRowModel, globalFilterFn, and manual server filtering. Load when columns unexpectedly participate or a global filter changes state without changing rows.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server', 'column-filtering']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/global-filtering.md'
@@ -3,7 +3,7 @@ name: grouping
3
3
  description: >
4
4
  Group rows with columnGroupingFeature, groupedRowModel, groupedColumnMode, and manualGrouping. Load for grouped or placeholder cells and grouping interactions with expansion or pagination.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/grouping.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: lifecycle
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core', 'table-features', 'typescript']
10
10
  sources:
11
11
  - 'TanStack/table:docs/framework/react/guide/migrating.md'
@@ -3,7 +3,7 @@ name: pagination
3
3
  description: >
4
4
  Paginate with rowPaginationFeature and paginatedRowModel or manualPagination. Load for pageIndex/pageSize state, rowCount/pageCount, unknown next-page limits, already-paginated server data, or autoResetPageIndex surprises.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/pagination.md'
@@ -3,7 +3,7 @@ name: row-pinning
3
3
  description: >
4
4
  Pin stable row IDs into top, center, and bottom collections with rowPinningFeature and keepPinnedRows. Load for filtering/pagination visibility, explicit region rendering, or renderer-owned sticky CSS.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/row-pinning.md'
@@ -3,7 +3,7 @@ name: row-selection
3
3
  description: >
4
4
  Maintain rowSelection ID state with stable getRowId, single, multi, subrow, and Shift-range rules, selected row models, handler anchors, and manual-pagination semantics. Load when implementing getToggleSelectedHandler, enableRowRangeSelection, selectChildren, deselectParents, or selected IDs that outlive loaded Row objects.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/row-selection.md'
@@ -3,7 +3,7 @@ name: sorting
3
3
  description: >
4
4
  Sort with rowSortingFeature, sortedRowModel, sortFns, multi-sort and removal options, sortUndefined, and manualSorting. Load for comparator direction, incoming server order, or product-specific sorting cycles.
5
5
  metadata:
6
- { type: sub-skill, library: '@tanstack/table-core', library_version: '9.0.1' }
6
+ { type: sub-skill, library: '@tanstack/table-core', library_version: '9.1.0' }
7
7
  requires: ['core', 'table-features', 'client-vs-server']
8
8
  sources:
9
9
  - 'TanStack/table:docs/framework/react/guide/sorting.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/row-models.md'
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.1'
8
+ library_version: '9.1.0'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/helpers.md'