lexgui 8.2.0 → 8.2.1
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/Avatar.d.ts +15 -15
- package/build/components/NodeTree.d.ts +51 -51
- package/build/components/Vector.d.ts +10 -10
- package/build/core/Event.d.ts +6 -6
- 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/AssetView.d.ts +137 -137
- package/build/extensions/AssetView.js +5 -6
- package/build/extensions/AssetView.js.map +1 -1
- package/build/extensions/CodeEditor.d.ts +358 -358
- package/build/extensions/CodeEditor.js +7 -7
- package/build/extensions/CodeEditor.js.map +1 -1
- package/build/extensions/DocMaker.js +1 -0
- package/build/extensions/DocMaker.js.map +1 -1
- package/build/extensions/GraphEditor.js +2754 -2754
- package/build/extensions/Timeline.d.ts +668 -668
- package/build/extensions/Timeline.js +2 -2
- package/build/extensions/Timeline.js.map +1 -1
- package/build/extensions/VideoEditor.d.ts +37 -15
- package/build/extensions/VideoEditor.js +287 -166
- package/build/extensions/VideoEditor.js.map +1 -1
- package/build/index.css.d.ts +3 -3
- package/build/index.d.ts +57 -57
- package/build/lexgui.all.js +327 -185
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +327 -185
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +213 -220
- package/build/lexgui.js +25 -4
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +25 -4
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +23 -1
- package/examples/all-components.html +3 -4
- package/examples/code-editor.html +11 -0
- package/examples/dialogs.html +13 -2
- package/package.json +1 -1
|
@@ -555,11 +555,11 @@ class CodeEditor {
|
|
|
555
555
|
rename: false,
|
|
556
556
|
skipDefaultIcon: true
|
|
557
557
|
});
|
|
558
|
-
this.explorer.on(
|
|
558
|
+
this.explorer.on('dblClick', (event) => {
|
|
559
559
|
const node = event.items[0];
|
|
560
560
|
this.loadTab(node.id);
|
|
561
561
|
});
|
|
562
|
-
this.explorer.on(
|
|
562
|
+
this.explorer.on('delete', (event) => {
|
|
563
563
|
const node = event.items[0];
|
|
564
564
|
this.closeTab(node.id);
|
|
565
565
|
});
|
|
@@ -1375,12 +1375,12 @@ class CodeEditor {
|
|
|
1375
1375
|
this.codeArea.root.style.height = `calc(100% - ${this._fullVerticalOffset}px)`;
|
|
1376
1376
|
// Process lines on finish computing final sizes
|
|
1377
1377
|
this.processLines();
|
|
1378
|
+
this._preparedAt = performance.now();
|
|
1379
|
+
if (this.onReady) {
|
|
1380
|
+
this.onReady(this);
|
|
1381
|
+
}
|
|
1382
|
+
console.log(`[LX.CodeEditor] Ready! (font size: ${this.fontSize}px)`);
|
|
1378
1383
|
}, 50);
|
|
1379
|
-
if (this.onReady) {
|
|
1380
|
-
this.onReady(this);
|
|
1381
|
-
}
|
|
1382
|
-
this._preparedAt = performance.now();
|
|
1383
|
-
console.log(`[LX.CodeEditor] Ready! (font size: ${this.fontSize}px)`);
|
|
1384
1384
|
}
|
|
1385
1385
|
// Clear signals
|
|
1386
1386
|
clear() {
|