@tanstack/react-table 8.1.4 → 8.2.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.
@@ -2891,9 +2891,9 @@ function createTable(options) {
2891
2891
  header: props => props.header.column.id,
2892
2892
  footer: props => props.header.column.id,
2893
2893
  cell: props => {
2894
- var _toString, _props$renderValue;
2894
+ var _props$renderValue$to, _props$renderValue;
2895
2895
 
2896
- return (_toString = (_props$renderValue = props.renderValue()) == null ? void 0 : _props$renderValue.toString == null ? void 0 : _props$renderValue.toString()) != null ? _toString : null;
2896
+ return (_props$renderValue$to = (_props$renderValue = props.renderValue()) == null ? void 0 : _props$renderValue.toString == null ? void 0 : _props$renderValue.toString()) != null ? _props$renderValue$to : null;
2897
2897
  },
2898
2898
  ...table._features.reduce((obj, feature) => {
2899
2899
  return Object.assign(obj, feature.getDefaultColumnDef == null ? void 0 : feature.getDefaultColumnDef());
@@ -3423,9 +3423,7 @@ function getFacetedMinMaxValues() {
3423
3423
  let facetedMinMaxValues = [firstValue, firstValue];
3424
3424
 
3425
3425
  for (let i = 0; i < facetedRowModel.flatRows.length; i++) {
3426
- var _facetedRowModel$flat2;
3427
-
3428
- const value = (_facetedRowModel$flat2 = facetedRowModel.flatRows[i]) == null ? void 0 : _facetedRowModel$flat2.getValue(columnId);
3426
+ const value = facetedRowModel.flatRows[i].getValue(columnId);
3429
3427
 
3430
3428
  if (value < facetedMinMaxValues[0]) {
3431
3429
  facetedMinMaxValues[0] = value;