material-react-table 0.7.0-alpha.4 → 0.7.0-alpha.5

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.
@@ -2897,18 +2897,18 @@ var MRT_TableRoot = function MRT_TableRoot(props) {
2897
2897
  }, [props.data, props.isLoading]); //@ts-ignore
2898
2898
 
2899
2899
  var tableInstance = useTable(table, _extends({}, props, {
2900
- //@ts-ignore
2901
- filterTypes: defaultFilterFNs,
2902
- debugAll: false,
2903
- globalFilterType: currentGlobalFilterType,
2904
2900
  columnFilterRowsFn: columnFilterRowsFn,
2905
2901
  columns: columns,
2906
2902
  data: data,
2903
+ debugAll: false,
2907
2904
  expandRowsFn: expandRowsFn,
2905
+ //@ts-ignore
2906
+ filterTypes: defaultFilterFNs,
2908
2907
  getSubRows: (_props$getSubRows = props.getSubRows) != null ? _props$getSubRows : function (originalRow) {
2909
2908
  return originalRow.subRows;
2910
2909
  },
2911
2910
  globalFilterRowsFn: globalFilterRowsFn,
2911
+ globalFilterType: currentGlobalFilterType,
2912
2912
  groupRowsFn: groupRowsFn,
2913
2913
  idPrefix: idPrefix,
2914
2914
  onPaginationChange: function onPaginationChange(updater) {
@@ -2943,6 +2943,12 @@ var MRT_TableRoot = function MRT_TableRoot(props) {
2943
2943
  };
2944
2944
 
2945
2945
  var _excluded$5 = ["enableColumnActions", "enableColumnFilters", "enableDensePaddingToggle", "enableExpandAll", "enableFullScreenToggle", "enableGlobalFilter", "enableHiding", "enablePagination", "enableSelectAll", "enableSorting", "enableStickyHeader", "icons", "localization", "positionActionsColumn", "positionPagination", "positionToolbarActions", "positionToolbarAlertBanner"];
2946
+
2947
+ window.performance = window.performance || {
2948
+ now: function now() {
2949
+ return new Date().getTime();
2950
+ }
2951
+ };
2946
2952
  var MaterialReactTable = (function (_ref) {
2947
2953
  var _ref$enableColumnActi = _ref.enableColumnActions,
2948
2954
  enableColumnActions = _ref$enableColumnActi === void 0 ? true : _ref$enableColumnActi,