material-react-table 1.14.0 → 1.15.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.
package/README.md CHANGED
@@ -73,6 +73,7 @@ _**Fully Fleshed out [Docs](https://www.material-react-table.com/docs/guides#gui
73
73
  - [x] Data Editing (4 different editing modes)
74
74
  - [x] Density Toggle
75
75
  - [x] Detail Panels (Expansion)
76
+ - [x] Faceted Value Generation for Filter Options
76
77
  - [x] Filtering (supports client-side and server-side)
77
78
  - [x] Filter Match Highlighting
78
79
  - [x] Full Screen Mode
package/dist/cjs/index.js CHANGED
@@ -179,6 +179,10 @@ function __rest(s, e) {
179
179
  }
180
180
  return t;
181
181
  }
182
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
183
+ var e = new Error(message);
184
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
185
+ };
182
186
 
183
187
  const MRT_AggregationFns = Object.assign({}, reactTable.aggregationFns);
184
188
 
@@ -2517,7 +2521,7 @@ const MRT_TableBodyCell = ({ cell, measureElement, numRows, rowIndex, rowRef, ta
2517
2521
  table,
2518
2522
  theme,
2519
2523
  tableCellProps,
2520
- })), draggingBorders)), children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [cell.getIsPlaceholder() ? ((_b = (_a = columnDef.PlaceholderCell) === null || _a === void 0 ? void 0 : _a.call(columnDef, { cell, column, row, table })) !== null && _b !== void 0 ? _b : null) : isLoading || showSkeletons ? (jsxRuntime.jsx(Skeleton__default["default"], Object.assign({ animation: "wave", height: 20, width: skeletonWidth }, skeletonProps))) : enableRowNumbers &&
2524
+ })), draggingBorders)), children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [cell.getIsPlaceholder() ? ((_b = (_a = columnDef.PlaceholderCell) === null || _a === void 0 ? void 0 : _a.call(columnDef, { cell, column, row, table })) !== null && _b !== void 0 ? _b : null) : (isLoading || showSkeletons) && cell.getValue() === null ? (jsxRuntime.jsx(Skeleton__default["default"], Object.assign({ animation: "wave", height: 20, width: skeletonWidth }, skeletonProps))) : enableRowNumbers &&
2521
2525
  rowNumberMode === 'static' &&
2522
2526
  column.id === 'mrt-row-numbers' ? (rowIndex + 1) : column.id === 'mrt-row-drag' ? (jsxRuntime.jsx(MRT_TableBodyRowGrabHandle, { cell: cell, rowRef: rowRef, table: table })) : columnDefType === 'display' &&
2523
2527
  (column.id === 'mrt-row-select' ||