@tanstack/table-core 9.0.0-beta.54 → 9.0.0-beta.56

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 (85) hide show
  1. package/dist/core/cells/constructCell.d.ts +2 -2
  2. package/dist/core/cells/constructCell.js +2 -0
  3. package/dist/core/cells/coreCellsFeature.types.d.ts +2 -2
  4. package/dist/core/cells/coreCellsFeature.utils.d.ts +2 -2
  5. package/dist/core/columns/constructColumn.js +5 -4
  6. package/dist/core/headers/buildHeaderGroups.js +2 -0
  7. package/dist/core/headers/constructHeader.js +2 -0
  8. package/dist/core/row-models/coreRowModelsFeature.types.d.ts +4 -4
  9. package/dist/core/row-models/coreRowModelsFeature.utils.d.ts +1 -1
  10. package/dist/core/row-models/createCoreRowModel.d.ts +1 -1
  11. package/dist/core/rows/constructRow.d.ts +1 -1
  12. package/dist/core/rows/constructRow.js +2 -2
  13. package/dist/core/rows/coreRowsFeature.types.d.ts +2 -2
  14. package/dist/core/rows/coreRowsFeature.utils.d.ts +4 -4
  15. package/dist/core/rows/coreRowsFeature.utils.js +4 -3
  16. package/dist/core/table/constructTable.js +19 -1
  17. package/dist/core/table/coreTablesFeature.types.d.ts +21 -1
  18. package/dist/features/column-faceting/columnFacetingFeature.utils.d.ts +1 -1
  19. package/dist/features/column-faceting/createFacetedRowModel.d.ts +1 -1
  20. package/dist/features/column-faceting/createFacetedRowModel.js +3 -2
  21. package/dist/features/column-filtering/columnFilteringFeature.types.d.ts +1 -1
  22. package/dist/features/column-filtering/columnFilteringFeature.utils.d.ts +1 -1
  23. package/dist/features/column-filtering/columnFilteringFeature.utils.js +9 -2
  24. package/dist/features/column-filtering/createFilteredRowModel.d.ts +1 -1
  25. package/dist/features/column-filtering/createFilteredRowModel.js +3 -2
  26. package/dist/features/column-grouping/columnGroupingFeature.utils.d.ts +3 -3
  27. package/dist/features/column-grouping/createGroupedRowModel.d.ts +1 -1
  28. package/dist/features/column-pinning/columnPinningFeature.types.d.ts +1 -1
  29. package/dist/features/column-pinning/columnPinningFeature.utils.d.ts +3 -3
  30. package/dist/features/column-resizing/columnResizingFeature.utils.js +1 -2
  31. package/dist/features/column-sizing/columnSizingFeature.utils.d.ts +1 -1
  32. package/dist/features/column-visibility/columnVisibilityFeature.types.d.ts +1 -1
  33. package/dist/features/column-visibility/columnVisibilityFeature.utils.d.ts +3 -3
  34. package/dist/features/global-filtering/globalFilteringFeature.types.d.ts +1 -1
  35. package/dist/features/global-filtering/globalFilteringFeature.utils.d.ts +1 -1
  36. package/dist/features/row-aggregation/rowAggregationFeature.types.d.ts +2 -2
  37. package/dist/features/row-aggregation/rowAggregationFeature.utils.d.ts +2 -2
  38. package/dist/features/row-expanding/createExpandedRowModel.d.ts +1 -1
  39. package/dist/features/row-expanding/createExpandedRowModel.js +3 -2
  40. package/dist/features/row-expanding/rowExpandingFeature.utils.d.ts +2 -5
  41. package/dist/features/row-expanding/rowExpandingFeature.utils.js +1 -5
  42. package/dist/features/row-pagination/createPaginatedRowModel.d.ts +1 -1
  43. package/dist/features/row-pinning/rowPinningFeature.utils.d.ts +1 -1
  44. package/dist/features/row-selection/rowSelectionFeature.utils.d.ts +2 -3
  45. package/dist/features/row-selection/rowSelectionFeature.utils.js +1 -3
  46. package/dist/features/row-sorting/createSortedRowModel.d.ts +1 -1
  47. package/dist/features/row-sorting/rowSortingFeature.utils.d.ts +2 -3
  48. package/dist/features/row-sorting/rowSortingFeature.utils.js +2 -4
  49. package/dist/index.d.ts +20 -20
  50. package/dist/types/Cell.d.ts +1 -1
  51. package/dist/types/Column.d.ts +7 -7
  52. package/dist/types/ColumnDef.d.ts +5 -5
  53. package/dist/types/Header.d.ts +1 -1
  54. package/dist/types/Row.d.ts +4 -4
  55. package/dist/types/RowModel.d.ts +4 -4
  56. package/dist/types/Table.d.ts +12 -12
  57. package/dist/types/TableFeatures.d.ts +40 -5
  58. package/dist/types/TableOptions.d.ts +12 -12
  59. package/dist/types/TableState.d.ts +8 -8
  60. package/dist/types/type-utils.d.ts +1 -1
  61. package/dist/worker/createWorkerRowModel.d.ts +1 -1
  62. package/dist/worker/initTableWorker.js +1 -1
  63. package/package.json +1 -1
  64. package/skills/aggregation/SKILL.md +1 -1
  65. package/skills/api-not-found/SKILL.md +1 -1
  66. package/skills/client-vs-server/SKILL.md +1 -1
  67. package/skills/column-faceting/SKILL.md +1 -1
  68. package/skills/column-filtering/SKILL.md +1 -1
  69. package/skills/column-ordering/SKILL.md +1 -1
  70. package/skills/column-pinning/SKILL.md +1 -1
  71. package/skills/column-resizing/SKILL.md +1 -1
  72. package/skills/column-sizing/SKILL.md +1 -1
  73. package/skills/column-visibility/SKILL.md +1 -1
  74. package/skills/core/SKILL.md +1 -1
  75. package/skills/custom-features/SKILL.md +1 -1
  76. package/skills/expanding/SKILL.md +1 -1
  77. package/skills/global-filtering/SKILL.md +1 -1
  78. package/skills/grouping/SKILL.md +1 -1
  79. package/skills/migrate-v8-to-v9/SKILL.md +1 -1
  80. package/skills/pagination/SKILL.md +1 -1
  81. package/skills/row-pinning/SKILL.md +1 -1
  82. package/skills/row-selection/SKILL.md +1 -1
  83. package/skills/sorting/SKILL.md +1 -1
  84. package/skills/table-features/SKILL.md +1 -1
  85. package/skills/typescript/SKILL.md +1 -1
@@ -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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54'
8
+ library_version: '9.0.0-beta.56'
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.54'
8
+ library_version: '9.0.0-beta.56'
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54'
8
+ library_version: '9.0.0-beta.56'
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54',
9
+ library_version: '9.0.0-beta.56',
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.54'
8
+ library_version: '9.0.0-beta.56'
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.54'
8
+ library_version: '9.0.0-beta.56'
9
9
  requires: ['core', 'table-features']
10
10
  sources:
11
11
  - 'TanStack/table:docs/guide/helpers.md'