@tanstack/table-core 9.0.0-beta.76 → 9.0.0-beta.77

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 (31) hide show
  1. package/dist/features/row-expanding/rowExpandingFeature.utils.d.ts +15 -6
  2. package/dist/features/row-expanding/rowExpandingFeature.utils.js +38 -15
  3. package/dist/features/row-pagination/createPaginatedRowModel.js +3 -0
  4. package/dist/features/row-sorting/rowSortingFeature.types.d.ts +9 -3
  5. package/dist/features/row-sorting/rowSortingFeature.utils.d.ts +8 -5
  6. package/dist/features/row-sorting/rowSortingFeature.utils.js +15 -8
  7. package/package.json +1 -1
  8. package/skills/aggregation/SKILL.md +1 -1
  9. package/skills/api-not-found/SKILL.md +1 -1
  10. package/skills/cell-selection/SKILL.md +1 -1
  11. package/skills/cell-spanning/SKILL.md +1 -1
  12. package/skills/client-vs-server/SKILL.md +1 -1
  13. package/skills/column-faceting/SKILL.md +1 -1
  14. package/skills/column-filtering/SKILL.md +1 -1
  15. package/skills/column-ordering/SKILL.md +1 -1
  16. package/skills/column-pinning/SKILL.md +1 -1
  17. package/skills/column-resizing/SKILL.md +1 -1
  18. package/skills/column-sizing/SKILL.md +1 -1
  19. package/skills/column-visibility/SKILL.md +1 -1
  20. package/skills/core/SKILL.md +1 -1
  21. package/skills/custom-features/SKILL.md +1 -1
  22. package/skills/expanding/SKILL.md +1 -1
  23. package/skills/global-filtering/SKILL.md +1 -1
  24. package/skills/grouping/SKILL.md +1 -1
  25. package/skills/migrate-v8-to-v9/SKILL.md +1 -1
  26. package/skills/pagination/SKILL.md +1 -1
  27. package/skills/row-pinning/SKILL.md +1 -1
  28. package/skills/row-selection/SKILL.md +1 -1
  29. package/skills/sorting/SKILL.md +1 -1
  30. package/skills/table-features/SKILL.md +1 -1
  31. package/skills/typescript/SKILL.md +1 -1
@@ -48,6 +48,9 @@ declare function table_setExpanded<TFeatures extends TableFeatures, TData extend
48
48
  * an empty map. Omitting the value toggles based on whether all rows are
49
49
  * currently expanded.
50
50
  *
51
+ * The call is a no-op (no `onExpandedChange`) when no row can expand or when
52
+ * the requested state matches the current state exactly.
53
+ *
51
54
  * @example
52
55
  * ```ts
53
56
  * table_toggleAllRowsExpanded(table)
@@ -100,10 +103,12 @@ declare function table_getToggleAllRowsExpandedHandler<TFeatures extends TableFe
100
103
  */
101
104
  declare function table_getIsSomeRowsExpanded<TFeatures extends TableFeatures, TData extends RowData>(table: Table<TFeatures, TData>): boolean;
102
105
  /**
103
- * Checks whether every row in the current row model is expanded.
106
+ * Checks whether every expandable row in the current row model is expanded.
104
107
  *
105
108
  * The special expanded-all value `true` returns true immediately. Empty
106
- * expanded state returns false.
109
+ * expanded state returns false. Rows that cannot expand are ignored, so a
110
+ * materialized expanded-all map (which only contains expandable row ids)
111
+ * still counts as all rows expanded.
107
112
  *
108
113
  * @example
109
114
  * ```ts
@@ -114,8 +119,8 @@ declare function table_getIsAllRowsExpanded<TFeatures extends TableFeatures, TDa
114
119
  /**
115
120
  * Computes the deepest expanded row id depth.
116
121
  *
117
- * Row ids are split on `.`; expanded-all state scans the current row model,
118
- * while explicit expanded state scans its expanded id keys.
122
+ * Row ids are split on `.`; expanded-all state scans the current row model's
123
+ * expandable rows, while explicit expanded state scans its expanded id keys.
119
124
  *
120
125
  * @example
121
126
  * ```ts
@@ -127,8 +132,12 @@ declare function table_getExpandedDepth<TFeatures extends TableFeatures, TData e
127
132
  * Expands or collapses this row.
128
133
  *
129
134
  * Omitting `expanded` toggles the row. If the current state is expanded-all,
130
- * the function first materializes that state into a row-id map before applying
131
- * the row-specific change.
135
+ * the function first materializes that state into a row-id map (containing
136
+ * only expandable row ids) before applying the row-specific change.
137
+ *
138
+ * The call is a no-op (no `onExpandedChange`) when the requested state matches
139
+ * the current state, or when expanding a row that cannot expand. Collapsing is
140
+ * always allowed so stale expanded ids can be cleaned up.
132
141
  *
133
142
  * @example
134
143
  * ```ts
@@ -52,14 +52,24 @@ function table_setExpanded(table, updater) {
52
52
  * an empty map. Omitting the value toggles based on whether all rows are
53
53
  * currently expanded.
54
54
  *
55
+ * The call is a no-op (no `onExpandedChange`) when no row can expand or when
56
+ * the requested state matches the current state exactly.
57
+ *
55
58
  * @example
56
59
  * ```ts
57
60
  * table_toggleAllRowsExpanded(table)
58
61
  * ```
59
62
  */
60
63
  function table_toggleAllRowsExpanded(table, expanded) {
61
- if (expanded ?? !table_getIsAllRowsExpanded(table)) table_setExpanded(table, true);
62
- else table_setExpanded(table, makeObjectMap());
64
+ const currentExpanded = table.atoms.expanded?.get() ?? {};
65
+ if (expanded ?? !table_getIsAllRowsExpanded(table)) {
66
+ if (currentExpanded === true) return;
67
+ if (!table_getCanSomeRowsExpand(table)) return;
68
+ table_setExpanded(table, true);
69
+ } else {
70
+ if (currentExpanded !== true && !Object.keys(currentExpanded).length) return;
71
+ table_setExpanded(table, makeObjectMap());
72
+ }
63
73
  }
64
74
  /**
65
75
  * Resets `expanded` to the configured initial state or feature default.
@@ -119,10 +129,12 @@ function table_getIsSomeRowsExpanded(table) {
119
129
  return expanded === true || Object.values(expanded).some(Boolean);
120
130
  }
121
131
  /**
122
- * Checks whether every row in the current row model is expanded.
132
+ * Checks whether every expandable row in the current row model is expanded.
123
133
  *
124
134
  * The special expanded-all value `true` returns true immediately. Empty
125
- * expanded state returns false.
135
+ * expanded state returns false. Rows that cannot expand are ignored, so a
136
+ * materialized expanded-all map (which only contains expandable row ids)
137
+ * still counts as all rows expanded.
126
138
  *
127
139
  * @example
128
140
  * ```ts
@@ -133,14 +145,16 @@ function table_getIsAllRowsExpanded(table) {
133
145
  const expanded = table.atoms.expanded?.get() ?? {};
134
146
  if (expanded === true) return true;
135
147
  if (!Object.keys(expanded).length) return false;
136
- if (table.getRowModel().flatRows.some((row) => !row_getIsExpanded(row))) return false;
148
+ const expandableRows = table.getRowModel().flatRows.filter((row) => row_getCanExpand(row));
149
+ if (!expandableRows.length) return false;
150
+ if (expandableRows.some((row) => !row_getIsExpanded(row))) return false;
137
151
  return true;
138
152
  }
139
153
  /**
140
154
  * Computes the deepest expanded row id depth.
141
155
  *
142
- * Row ids are split on `.`; expanded-all state scans the current row model,
143
- * while explicit expanded state scans its expanded id keys.
156
+ * Row ids are split on `.`; expanded-all state scans the current row model's
157
+ * expandable rows, while explicit expanded state scans its expanded id keys.
144
158
  *
145
159
  * @example
146
160
  * ```ts
@@ -149,7 +163,8 @@ function table_getIsAllRowsExpanded(table) {
149
163
  */
150
164
  function table_getExpandedDepth(table) {
151
165
  let maxDepth = 0;
152
- (table.atoms.expanded?.get() === true ? Object.keys(table.getRowModel().rowsById) : Object.keys(table.atoms.expanded?.get() ?? {})).forEach((id) => {
166
+ const expanded = table.atoms.expanded?.get();
167
+ (expanded === true ? Object.values(table.getRowModel().rowsById).filter((row) => row_getCanExpand(row)).map((row) => row.id) : Object.keys(expanded ?? {})).forEach((id) => {
153
168
  const splitId = id.split(".");
154
169
  maxDepth = Math.max(maxDepth, splitId.length);
155
170
  });
@@ -159,8 +174,12 @@ function table_getExpandedDepth(table) {
159
174
  * Expands or collapses this row.
160
175
  *
161
176
  * Omitting `expanded` toggles the row. If the current state is expanded-all,
162
- * the function first materializes that state into a row-id map before applying
163
- * the row-specific change.
177
+ * the function first materializes that state into a row-id map (containing
178
+ * only expandable row ids) before applying the row-specific change.
179
+ *
180
+ * The call is a no-op (no `onExpandedChange`) when the requested state matches
181
+ * the current state, or when expanding a row that cannot expand. Collapsing is
182
+ * always allowed so stale expanded ids can be cleaned up.
164
183
  *
165
184
  * @example
166
185
  * ```ts
@@ -168,19 +187,23 @@ function table_getExpandedDepth(table) {
168
187
  * ```
169
188
  */
170
189
  function row_toggleExpanded(row, expanded) {
190
+ const currentExpanded = row.table.atoms.expanded?.get() ?? {};
191
+ const currentExists = currentExpanded === true || isExpandedRowId(currentExpanded, row.id);
192
+ const targetExpanded = expanded ?? !currentExists;
193
+ if (targetExpanded === currentExists) return;
194
+ if (targetExpanded && !row_getCanExpand(row)) return;
171
195
  table_setExpanded(row.table, (old) => {
172
196
  const exists = old === true ? true : isExpandedRowId(old, row.id);
173
197
  let oldExpanded = makeObjectMap();
174
- if (old === true) Object.keys(row.table.getRowModel().rowsById).forEach((rowId) => {
175
- oldExpanded[rowId] = true;
198
+ if (old === true) Object.values(row.table.getRowModel().rowsById).forEach((rowModelRow) => {
199
+ if (row_getCanExpand(rowModelRow)) oldExpanded[rowModelRow.id] = true;
176
200
  });
177
201
  else oldExpanded = Object.assign(makeObjectMap(), old);
178
- expanded = expanded ?? !exists;
179
- if (!exists && expanded) {
202
+ if (!exists && targetExpanded) {
180
203
  oldExpanded[row.id] = true;
181
204
  return oldExpanded;
182
205
  }
183
- if (exists && !expanded) {
206
+ if (exists && !targetExpanded) {
184
207
  const rest = makeObjectMap();
185
208
  const rowIds = Object.keys(oldExpanded);
186
209
  for (let i = 0; i < rowIds.length; i++) {
@@ -45,7 +45,10 @@ function _createPaginatedRowModel(table) {
45
45
  rowsById
46
46
  };
47
47
  paginatedRowModel.flatRows = [];
48
+ const seenFlatRows = /* @__PURE__ */ new Set();
48
49
  const handleRow = (row) => {
50
+ if (seenFlatRows.has(row.id)) return;
51
+ seenFlatRows.add(row.id);
49
52
  paginatedRowModel.flatRows.push(row);
50
53
  if (row.subRows.length) row.subRows.forEach(handleRow);
51
54
  };
@@ -89,11 +89,15 @@ interface ColumnDef_RowSorting<in out TFeatures extends TableFeatures, in out TD
89
89
  /**
90
90
  * The priority of undefined values when sorting this column.
91
91
  * - `false`
92
- * - Undefined values will be considered tied and need to be sorted by the next column filter or original index (whichever applies)
92
+ * - Undefined values will be passed to the sorting function like any other value with no special handling; the sorting function is responsible for handling them
93
93
  * - `-1`
94
94
  * - Undefined values will be sorted with higher priority (ascending) (if ascending, undefined will appear on the beginning of the list)
95
95
  * - `1`
96
96
  * - Undefined values will be sorted with lower priority (descending) (if ascending, undefined will appear on the end of the list)
97
+ * - `'first'`
98
+ * - Undefined values will be pushed to the beginning of the list regardless of sort direction
99
+ * - `'last'`
100
+ * - Undefined values will be pushed to the end of the list regardless of sort direction
97
101
  */
98
102
  sortUndefined?: false | -1 | 1 | 'first' | 'last';
99
103
  }
@@ -127,9 +131,11 @@ interface Column_RowSorting<in out TFeatures extends TableFeatures, in out TData
127
131
  */
128
132
  getIsSorted: () => false | SortDirection;
129
133
  /**
130
- * Returns the next sorting order.
134
+ * Returns the next sorting order. Pass `multi` to resolve the order for a
135
+ * multi-sort toggle, where `enableMultiRemove` governs whether the cycle can
136
+ * remove the sort.
131
137
  */
132
- getNextSortingOrder: () => SortDirection | false;
138
+ getNextSortingOrder: (multi?: boolean) => SortDirection | false;
133
139
  /**
134
140
  * Finds this column's position in the ordered sorting state.
135
141
  */
@@ -67,10 +67,13 @@ declare function table_autoResetSorting<TFeatures extends TableFeatures, TData e
67
67
  */
68
68
  declare function column_getAutoSortFn<TFeatures extends TableFeatures, TData extends RowData, TValue extends CellData = CellData>(column: Column<TFeatures, TData, TValue>): SortFn<TFeatures, TData>;
69
69
  /**
70
- * Chooses the default first sort direction from the first filtered row value.
70
+ * Chooses the default first sort direction from sampled filtered row values.
71
71
  *
72
- * String columns start ascending so alphabetical order is natural; other value
73
- * types start descending.
72
+ * The first non-nullish value among the sampled rows decides: string columns
73
+ * start ascending so alphabetical order is natural; other value types (or
74
+ * columns with no non-nullish sample) start descending. Sampling past leading
75
+ * nullish values keeps the toggle cycle stable when sorting or a data swap
76
+ * moves an empty value into the first row.
74
77
  *
75
78
  * @example
76
79
  * ```ts
@@ -95,8 +98,8 @@ declare function column_getSortFn<TFeatures extends TableFeatures, TData extends
95
98
  * Applies the next sorting state for this column.
96
99
  *
97
100
  * The toggle can add, replace, flip, or remove this column's sort entry. Multi
98
- * sorting respects `enableMultiSort`, `maxMultiSortColCount`, and the `multi`
99
- * argument.
101
+ * sorting respects `enableMultiSort`, `enableMultiRemove`,
102
+ * `maxMultiSortColCount`, and the `multi` argument.
100
103
  *
101
104
  * @example
102
105
  * ```ts
@@ -103,10 +103,13 @@ function column_getAutoSortFn(column) {
103
103
  return sortFn_basic;
104
104
  }
105
105
  /**
106
- * Chooses the default first sort direction from the first filtered row value.
106
+ * Chooses the default first sort direction from sampled filtered row values.
107
107
  *
108
- * String columns start ascending so alphabetical order is natural; other value
109
- * types start descending.
108
+ * The first non-nullish value among the sampled rows decides: string columns
109
+ * start ascending so alphabetical order is natural; other value types (or
110
+ * columns with no non-nullish sample) start descending. Sampling past leading
111
+ * nullish values keeps the toggle cycle stable when sorting or a data swap
112
+ * moves an empty value into the first row.
110
113
  *
111
114
  * @example
112
115
  * ```ts
@@ -114,8 +117,12 @@ function column_getAutoSortFn(column) {
114
117
  * ```
115
118
  */
116
119
  function column_getAutoSortDir(column) {
117
- const firstRow = column.table.getFilteredRowModel().flatRows[0];
118
- if (typeof (firstRow ? firstRow.getValue(column.id) : void 0) === "string") return "asc";
120
+ const firstRows = column.table.getFilteredRowModel().flatRows.slice(0, 10);
121
+ for (let i = 0; i < firstRows.length; i++) {
122
+ const value = firstRows[i].getValue(column.id);
123
+ if (value == null) continue;
124
+ return typeof value === "string" ? "asc" : "desc";
125
+ }
119
126
  return "desc";
120
127
  }
121
128
  /**
@@ -142,8 +149,8 @@ function column_getSortFn(column) {
142
149
  * Applies the next sorting state for this column.
143
150
  *
144
151
  * The toggle can add, replace, flip, or remove this column's sort entry. Multi
145
- * sorting respects `enableMultiSort`, `maxMultiSortColCount`, and the `multi`
146
- * argument.
152
+ * sorting respects `enableMultiSort`, `enableMultiRemove`,
153
+ * `maxMultiSortColCount`, and the `multi` argument.
147
154
  *
148
155
  * @example
149
156
  * ```ts
@@ -151,7 +158,7 @@ function column_getSortFn(column) {
151
158
  * ```
152
159
  */
153
160
  function column_toggleSorting(column, desc, multi) {
154
- const nextSortingOrder = column_getNextSortingOrder(column);
161
+ const nextSortingOrder = column_getNextSortingOrder(column, multi && column_getCanMultiSort(column));
155
162
  const hasManualValue = typeof desc !== "undefined";
156
163
  table_setSorting(column.table, (old) => {
157
164
  const existingIndex = old.findIndex((d) => d.id === column.id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
- "version": "9.0.0-beta.76",
3
+ "version": "9.0.0-beta.77",
4
4
  "description": "Headless UI for building powerful tables & datagrids for TS/JS.",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:packages/table-core/src/index.ts'
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/row-models.md'
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'column-filtering']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'column-sizing']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'column-sizing']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: core
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
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.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
9
9
  requires: ['core', 'table-features', 'typescript']
10
10
  sources:
11
11
  - 'TanStack/table:docs/framework/react/guide/custom-features.md'
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server', 'column-filtering']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server']
12
12
  sources:
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: lifecycle
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
9
9
  requires: ['core', 'table-features', 'typescript']
10
10
  sources:
11
11
  - 'TanStack/table:docs/framework/react/guide/migrating.md'
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features']
12
12
  sources:
@@ -6,7 +6,7 @@ metadata:
6
6
  {
7
7
  type: sub-skill,
8
8
  library: '@tanstack/table-core',
9
- library_version: '9.0.0-beta.76',
9
+ library_version: '9.0.0-beta.77',
10
10
  }
11
11
  requires: ['core', 'table-features', 'client-vs-server']
12
12
  sources:
@@ -5,7 +5,7 @@ description: >
5
5
  metadata:
6
6
  type: sub-skill
7
7
  library: '@tanstack/table-core'
8
- library_version: '9.0.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
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.0-beta.76'
8
+ library_version: '9.0.0-beta.77'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/helpers.md'