lexgui 8.1.0 → 8.1.2

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.
@@ -10,7 +10,7 @@ const g = globalThis;
10
10
  let LX = g.LX;
11
11
  if (!LX) {
12
12
  LX = {
13
- version: '8.1.0',
13
+ version: '8.1.2',
14
14
  ready: false,
15
15
  extensions: [], // Store extensions used
16
16
  extraCommandbarEntries: [], // User specific entries for command bar
@@ -6346,7 +6346,7 @@ class Table extends BaseComponent {
6346
6346
  }
6347
6347
  this.data = data;
6348
6348
  this.filter = options.filter ?? false;
6349
- this.customFilters = options.customFilters;
6349
+ this.customFilters = options.customFilters ?? null;
6350
6350
  this.activeCustomFilters = {};
6351
6351
  this._toggleColumns = options.toggleColumns ?? false;
6352
6352
  this._sortColumns = options.sortColumns ?? true;