lexgui 0.5.0 → 0.5.2
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 +4 -4
- package/build/components/nodegraph.js +3 -3
- package/build/components/timeline.js +37 -17
- package/build/lexgui.css +186 -82
- package/build/lexgui.js +814 -465
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +814 -465
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +29 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,6 +1,34 @@
|
|
|
1
1
|
# lexgui.js changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## dev
|
|
4
|
+
|
|
5
|
+
## 0.5.2 (master)
|
|
6
|
+
|
|
7
|
+
Table Widget:
|
|
8
|
+
- Fixed manual-sort not modifying inner data.
|
|
9
|
+
- Use Dropdown for menu actions `options.onMenuAction`.
|
|
10
|
+
- Added initial support for data filters. `options.filter` and `options.customFilters`.
|
|
11
|
+
|
|
12
|
+
Fixed some widget resizing issues.
|
|
13
|
+
No `justify` by default in inline widgets. Use `Panel.endLine(justify)` instead.
|
|
14
|
+
Fixed preview image in AssetView.
|
|
15
|
+
General styling fixes.
|
|
16
|
+
Docs updated.
|
|
17
|
+
|
|
18
|
+
## 0.5.1
|
|
19
|
+
|
|
20
|
+
Widgets:
|
|
21
|
+
- Added support for `text centering` all/specific columns in Table Widget.
|
|
22
|
+
- Fixed widget content size when using `options.nameWidth`. First fix for sizes in inline widgets.
|
|
23
|
+
- Fixed issue in Tree Widget when selecting from code using `NodeTree.select`.
|
|
24
|
+
- Support for closing all Node items recursively by using `Alt+Close` on a specific node.
|
|
25
|
+
|
|
26
|
+
Fixed Area tabs drag&drop when `fit` mode.
|
|
27
|
+
Fixed issue on open/destroy dropdown.
|
|
28
|
+
Fixed label text wrap on Checkbox&Toggle widgets.
|
|
29
|
+
Added `contrast` theme for supported Widgets.
|
|
30
|
+
|
|
31
|
+
## 0.5.0
|
|
4
32
|
|
|
5
33
|
Widgets:
|
|
6
34
|
- Created classes for each widget to create them at any place.
|