lexgui 0.6.10 → 0.6.11

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/changelog.md CHANGED
@@ -2,7 +2,20 @@
2
2
 
3
3
  ## dev
4
4
 
5
- ## 0.6.10 (master)
5
+ ## 0.6.11 (master)
6
+
7
+ Widgets:
8
+ - Fixed Progress Widget value clamp and callback.
9
+ - Fixed Form data entries initial value if not an Object. Added support for Form `entryData.label`.
10
+ - Fixed Vector reset issue getting old values after reset.
11
+
12
+ Popover are now allowed to be created without a trigger element using `options.reference`.
13
+ Added support for DropdownMenu and Popover `options.sideOffset` and `options.alignOffset`.
14
+ Added support for new `LX.Tour` Component to guide users through an app.
15
+ Fixed light-dark themes in docs css.
16
+ Docs updated.
17
+
18
+ ## 0.6.10
6
19
 
7
20
  Timeline:
8
21
  - Added support for cloning clips and tracks.
package/demo.js CHANGED
@@ -89,6 +89,33 @@ const area = await LX.init( { layoutMode: "document", rootClass: "wrapper" } );
89
89
  ] },
90
90
  { name: "Help", submenu: [
91
91
  { name: "Search Help", icon: "Search", kbd: "F1" },
92
+ { name: "Start Tour", icon: "CircleHelp", callback: () => {
93
+ const exampleTour = new LX.Tour([
94
+ {
95
+ title: "Welcome to LexGUI.js",
96
+ content: "This is the main canvas where you can draw your application.",
97
+ reference: canvas,
98
+ side: "top",
99
+ align: "center"
100
+ },
101
+ {
102
+ title: "Menubar",
103
+ content: "This menubar contains all the main actions and settings for your application.",
104
+ reference: menubar.root,
105
+ side: "bottom",
106
+ align: "center"
107
+ },
108
+ {
109
+ title: "Side Panel",
110
+ content: "This panel contains various widgets and settings for your application.",
111
+ reference: sidePanel.root,
112
+ side: "left",
113
+ align: "start"
114
+ }
115
+ ], { xoffset: 8, xradius: 12, xhorizontalOffset: 46, xverticalOffset: 46 });
116
+
117
+ exampleTour.begin();
118
+ } },
92
119
  { name: "Support LexGUI", icon: "Heart" },
93
120
  ] },
94
121
  ], { sticky: false });
@@ -1073,7 +1073,7 @@
1073
1073
 
1074
1074
  p.attach(assetView);
1075
1075
  let assetData = [];
1076
- const values = ['brow_lowerer.png', 'godot_pixelart.png', 'godot_canvas.png'];
1076
+ const values = ['brow_lowerer.png', 'godot_pixelart.png', 'realizer_signon.png'];
1077
1077
 
1078
1078
  for (let i = 0; i < values.length; i++) {
1079
1079
  let data = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lexgui",
3
- "version": "0.6.10",
3
+ "version": "0.6.11",
4
4
  "description": "JS library to create web graphical user interfaces",
5
5
  "type": "module",
6
6
  "main": "./build/lexgui.js",