lexgui 8.1.1 → 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.
- package/build/components/AlertDialog.d.ts +7 -7
- package/build/components/Counter.d.ts +9 -9
- package/build/components/Dialog.d.ts +20 -20
- package/build/components/Footer.d.ts +14 -14
- package/build/components/Menubar.d.ts +59 -59
- package/build/core/Area.d.ts +143 -143
- package/build/core/Namespace.js +1 -1
- package/build/core/Namespace.js.map +1 -1
- package/build/core/Panel.d.ts +538 -538
- package/build/extensions/Audio.js +163 -163
- package/build/extensions/CodeEditor.d.ts +350 -350
- package/build/extensions/CodeEditor.js +5022 -5022
- package/build/extensions/DocMaker.d.ts +27 -27
- package/build/extensions/DocMaker.js +327 -327
- package/build/extensions/GraphEditor.js +2760 -2760
- package/build/extensions/ImUi.js +227 -227
- package/build/extensions/Timeline.d.ts +670 -670
- package/build/extensions/Timeline.js +3956 -3955
- package/build/extensions/Timeline.js.map +1 -1
- package/build/extensions/VideoEditor.d.ts +128 -128
- package/build/extensions/VideoEditor.js +900 -898
- package/build/extensions/VideoEditor.js.map +1 -1
- package/build/extensions/index.d.ts +8 -8
- package/build/extensions/index.js +10 -10
- package/build/index.all.d.ts +2 -2
- package/build/index.css.d.ts +4 -4
- package/build/index.d.ts +56 -56
- package/build/lexgui.all.js +4 -1
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +4 -1
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +2 -2
- package/build/lexgui.js +1 -1
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +2 -2
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +1 -1
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +11 -1
- package/examples/editor.html +1 -46
- package/package.json +1 -1
|
@@ -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.
|
|
13
|
+
version: '8.1.2',
|
|
14
14
|
ready: false,
|
|
15
15
|
extensions: [], // Store extensions used
|
|
16
16
|
extraCommandbarEntries: [], // User specific entries for command bar
|
|
@@ -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],
|