@tanstack/table-core 8.0.0-alpha.43 → 8.0.0-alpha.44

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.
@@ -3823,8 +3823,10 @@
3823
3823
 
3824
3824
  return template;
3825
3825
  },
3826
- getRowId: function getRowId(_, index, parent) {
3827
- return "" + (parent ? [parent.id, index].join('.') : index);
3826
+ getRowId: function getRowId(row, index, parent) {
3827
+ var _instance$options$get;
3828
+
3829
+ return (_instance$options$get = instance.options.getRowId == null ? void 0 : instance.options.getRowId(row, index, parent)) != null ? _instance$options$get : "" + (parent ? [parent.id, index].join('.') : index);
3828
3830
  },
3829
3831
  getState: function getState() {
3830
3832
  return instance.options.state;