lexgui 0.1.33 → 0.1.34
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/codeeditor.js +1 -1
- package/build/lexgui.css +13 -12
- package/build/lexgui.js +263 -228
- package/build/lexgui.module.js +307 -199
- package/changelog.md +11 -4
- package/demo.js +4 -13
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# lexgui.js changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.34
|
|
4
|
+
|
|
5
|
+
Fix setValue on Checkbox.
|
|
6
|
+
Fix position of Dropdown menu when content is scrolled.
|
|
7
|
+
`moveOutAction` option to delete or clamp curve points.
|
|
8
|
+
Minor tweaks.
|
|
9
|
+
|
|
3
10
|
## 0.1.33
|
|
4
11
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
12
|
+
Work on VideoEditor UI component.
|
|
13
|
+
Improvements Timeline.
|
|
14
|
+
Allow to select multiple options in AssetViewer.
|
|
15
|
+
Minor bug fixes.
|
|
9
16
|
|
|
10
17
|
## 0.1.32
|
|
11
18
|
|
package/demo.js
CHANGED
|
@@ -433,6 +433,7 @@ function fillPanel( panel ) {
|
|
|
433
433
|
window.tree = panel.addTree("Scene Tree", sceneData, {
|
|
434
434
|
icons: treeIcons,
|
|
435
435
|
// filter: false,
|
|
436
|
+
addDefault: true,
|
|
436
437
|
onevent: (event) => {
|
|
437
438
|
console.log(event.string());
|
|
438
439
|
|
|
@@ -453,19 +454,9 @@ function fillPanel( panel ) {
|
|
|
453
454
|
console.log(event.node.id + " dbl clicked");
|
|
454
455
|
break;
|
|
455
456
|
case LX.TreeEvent.NODE_CONTEXTMENU:
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
m.add( "Select Children", () => console.log("select children") );
|
|
461
|
-
m.add( "Clone", { callback: () => console.log("Clone"), color: "#0d5" } );
|
|
462
|
-
m.add( "Components/Transform");
|
|
463
|
-
m.add( "Components/MeshRenderer");
|
|
464
|
-
m.add( "Move before sibling" );
|
|
465
|
-
m.add( "Move after sibling" );
|
|
466
|
-
m.add( "Move to parent" );
|
|
467
|
-
m.add( "Delete" );
|
|
468
|
-
});
|
|
457
|
+
const m = event.panel;
|
|
458
|
+
m.add( "Components/Transform");
|
|
459
|
+
m.add( "Components/MeshRenderer");
|
|
469
460
|
break;
|
|
470
461
|
case LX.TreeEvent.NODE_DRAGGED:
|
|
471
462
|
console.log(event.node.id + " is now child of " + event.value.id);
|