@tanstack/table-core 8.5.12 → 8.5.13

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.
@@ -1903,7 +1903,7 @@
1903
1903
  }),
1904
1904
  getRightVisibleCells: memo(() => [row._getAllVisibleCells(), table.getState().columnPinning.right], (allCells, right) => {
1905
1905
  const cells = (right != null ? right : []).map(columnId => allCells.find(cell => cell.column.id === columnId)).filter(Boolean).map(d => ({ ...d,
1906
- position: 'left'
1906
+ position: 'right'
1907
1907
  }));
1908
1908
  return cells;
1909
1909
  }, {