lexgui 0.4.0 → 0.4.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/README.md +1 -1
- package/build/components/nodegraph.js +84 -78
- package/build/lexgui.css +29 -3
- package/build/lexgui.js +299 -216
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +299 -216
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +15 -1
- package/demo.js +4 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 0.4.
|
|
5
|
+
## 0.4.1 (master)
|
|
6
|
+
|
|
7
|
+
Widgets:
|
|
8
|
+
- Text: Skip callback if no changes.
|
|
9
|
+
|
|
10
|
+
Updated NodeGraph Editor sidebar.
|
|
11
|
+
Expose `Sidebar.update` to rebuild from current items.
|
|
12
|
+
Added `force` option to force sidebar collapse status in `Sidebar.toggleCollapsed(force)`.
|
|
13
|
+
Added Sidebar search bar to filter entries.
|
|
14
|
+
Set overflow ellipsis on large toast texts.
|
|
15
|
+
Fixed Menubar menus with scroll > 0.
|
|
16
|
+
Removed padding when no PocketDialog content.
|
|
17
|
+
Sidebar docs updated.
|
|
18
|
+
|
|
19
|
+
## 0.4.0
|
|
6
20
|
|
|
7
21
|
Widgets:
|
|
8
22
|
- Support new RadioGroup Widget.
|
package/demo.js
CHANGED
|
@@ -13,7 +13,10 @@ let area = LX.init( { strictViewport: false } );
|
|
|
13
13
|
|
|
14
14
|
m.setButtonImage("lexgui.js", "images/icon.png", () => {window.open("https://jxarco.github.io/lexgui.js/")}, {float: "left"})
|
|
15
15
|
|
|
16
|
-
m.add( "Docs", { icon: "fa-solid fa-magnifying-glass", short: "F1", callback: () => { window.open("./docs/") }});
|
|
16
|
+
// m.add( "Docs", { icon: "fa-solid fa-magnifying-glass", short: "F1", callback: () => { window.open("./docs/") }});
|
|
17
|
+
m.add( "Docs/Pepe", { icon: "fa-solid fa-magnifying-glass", short: "F1", callback: () => { window.open("./docs/") }});
|
|
18
|
+
m.add( "Docs/Luis/ac", { icon: "fa-solid fa-magnifying-glass", short: "F1", callback: () => { window.open("./docs/") }});
|
|
19
|
+
m.add( "Docs/Luis/vrr", { icon: "fa-solid fa-magnifying-glass", short: "F1", callback: () => { window.open("./docs/") }});
|
|
17
20
|
|
|
18
21
|
const panel = new LX.Panel();
|
|
19
22
|
panel.addButton(null, "Search command...", () => { LX.setCommandbarState( true ) }, { width: "256px", className: "right", buttonClass: "outline left" });
|