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$2 = globalThis;
10
10
  let LX = g$2.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$1 {
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;
@@ -14632,7 +14632,7 @@ class AssetView {
14632
14632
  this.toolsPanel.refresh();
14633
14633
  this._refreshContent();
14634
14634
  }
14635
- _enterFolder(folderItem, storeCurrent = true) {
14635
+ async _enterFolder(folderItem, storeCurrent = true) {
14636
14636
  if (!folderItem) {
14637
14637
  return;
14638
14638
  }
@@ -14654,7 +14654,7 @@ class AssetView {
14654
14654
  to: folderItem,
14655
14655
  userInitiated: true
14656
14656
  };
14657
- const r = onEnterFolder(event);
14657
+ const r = await onEnterFolder(event);
14658
14658
  mustRefresh = mustRefresh || r;
14659
14659
  }
14660
14660
  // Update this after the event since the user might have added or modified the data
@@ -23772,6 +23772,7 @@ class Timeline {
23772
23772
  }
23773
23773
  this.updateTheme = updateTheme.bind(this);
23774
23774
  LX.addSignal('@on_new_color_scheme', this.updateTheme);
23775
+ this.updateTheme();
23775
23776
  }
23776
23777
  // makes it ready to be deleted
23777
23778
  clear() {
@@ -27925,6 +27926,7 @@ class VideoEditor {
27925
27926
  }
27926
27927
  if (options.videoArea) {
27927
27928
  options.videoArea.root.classList.add('lexvideoeditor');
27929
+ options.videoArea.root.style.position = "relative";
27928
27930
  options.videoArea.attach(this.cropArea);
27929
27931
  videoArea.attach(options.videoArea);
27930
27932
  }
@@ -27933,6 +27935,7 @@ class VideoEditor {
27933
27935
  videoArea.attach(this.cropArea);
27934
27936
  videoArea.root.classList.add('lexvideoeditor');
27935
27937
  }
27938
+ videoArea.root.style.position = "relative";
27936
27939
  this.controlsArea = controlsArea;
27937
27940
  // Create playing timeline area and attach panels
27938
27941
  let [topArea, bottomArea] = controlsArea.split({ type: 'vertical', sizes: ['50%', null],