lexgui 0.1.28 → 0.1.30
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 +18 -24
- package/build/components/nodegraph.js +3246 -397
- package/build/lexgui.css +340 -56
- package/build/lexgui.js +265 -135
- package/build/lexgui.module.js +251 -121
- package/changelog.md +30 -0
- package/examples/index.html +1 -1
- package/examples/node_graph.html +2 -1
- package/examples/previews/code_editor.png +0 -0
- package/examples/previews/dialogs.png +0 -0
- package/examples/previews/node_graph.png +0 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# lexgui.js changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.30
|
|
4
|
+
|
|
5
|
+
GraphEditor:
|
|
6
|
+
- Snap Multiplier (x1, x2, x3)
|
|
7
|
+
- Added Sidebar to change between graphs/functions.
|
|
8
|
+
- Start/Stop graph buttons in top buttons.
|
|
9
|
+
- Initial support for creating Graph Functions.
|
|
10
|
+
- Improved performance hiding nodes outside the viewport.
|
|
11
|
+
- Groundwork for graph/function renaming.
|
|
12
|
+
- Support "Autoconnect" nodes.
|
|
13
|
+
- Import/Export Groups + Move groups inside groups.
|
|
14
|
+
|
|
15
|
+
Support adding class to overlay buttons.
|
|
16
|
+
Add custom "title" on hover for Sidebar elements.
|
|
17
|
+
Added Sidebar.select method.
|
|
18
|
+
Improved select animation "fit" tabs.
|
|
19
|
+
Doc updates.
|
|
20
|
+
Minor bug fixes.
|
|
21
|
+
|
|
22
|
+
## 0.1.29
|
|
23
|
+
|
|
24
|
+
GraphEditor:
|
|
25
|
+
- Graphs front end (Nodes, links, groups).
|
|
26
|
+
- Editor stuff (Panning, zoom, moving elements, serialize graph, Snapping...)
|
|
27
|
+
- Basic execution functionality.
|
|
28
|
+
|
|
29
|
+
Improved draggable elements.
|
|
30
|
+
Added "onBeforeLoad" callback in File widget.
|
|
31
|
+
Minor bug fixes.
|
|
32
|
+
|
|
3
33
|
## 0.1.28
|
|
4
34
|
|
|
5
35
|
GraphEditor:
|
package/examples/index.html
CHANGED
package/examples/node_graph.html
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|