@tanstack/table-core 8.0.0-alpha.34 → 8.0.0-alpha.38

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.
@@ -1,4 +1,3 @@
1
- import { MouseEvent, TouchEvent } from 'react';
2
1
  import { RowModel } from '..';
3
2
  import { Getter, OnChangeFn, AnyGenerics, PropGetterValue, TableInstance, Row, Updater } from '../types';
4
3
  export declare type ExpandedStateList = Record<string, boolean>;
@@ -1,4 +1,3 @@
1
- import { MouseEvent, TouchEvent } from 'react';
2
1
  import { RowModel } from '..';
3
2
  import { BuiltInSortType } from '../sortTypes';
4
3
  import { Column, Getter, OnChangeFn, AnyGenerics, PropGetterValue, TableInstance, Row, Updater } from '../types';
@@ -4688,7 +4688,7 @@
4688
4688
  };
4689
4689
 
4690
4690
  if (filterFromLeafRows) {
4691
- filterRowModelFromLeafs(rowModel.rows, filterRows, instance);
4691
+ return filterRowModelFromLeafs(rowModel.rows, filterRows, instance);
4692
4692
  }
4693
4693
 
4694
4694
  return filterRowModelFromRoot(rowModel.rows, filterRows, instance);