@monolith-forensics/monolith-ui 1.2.87 → 1.2.88

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.
@@ -299,6 +299,16 @@ const TableProvider = (_a) => {
299
299
  return !value.find((v) => v == row[dataField]);
300
300
  });
301
301
  break;
302
+ case "isEmpty":
303
+ processedData = processedData.filter((row) => {
304
+ return !row[dataField];
305
+ });
306
+ break;
307
+ case "isNotEmpty":
308
+ processedData = processedData.filter((row) => {
309
+ return row[dataField];
310
+ });
311
+ break;
302
312
  default:
303
313
  break;
304
314
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolith-forensics/monolith-ui",
3
- "version": "1.2.87",
3
+ "version": "1.2.88",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Matt Danner (Monolith Forensics LLC)",