lexgui 0.6.7 → 0.6.8
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 +49 -19
- package/build/lexgui.css +2 -3
- package/build/lexgui.js +75 -14
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +75 -14
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +22 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
+
## 0.6.8 (master)
|
|
6
|
+
|
|
7
|
+
Widgets:
|
|
8
|
+
- Support `options.onCreate` on register Custom Widget.
|
|
9
|
+
- Table:
|
|
10
|
+
- Add support for `Table.getSelectedRows`.
|
|
11
|
+
- Manually sorting now emits signal `@on_table_sort`.
|
|
12
|
+
- Defined property `centered` to allow dynamic changes.
|
|
13
|
+
- Exposed table data.
|
|
14
|
+
|
|
15
|
+
CodeEditor:
|
|
16
|
+
- Default scrolling behaviour (Space key) is now prevented.
|
|
17
|
+
- Fix `Shift+Home` selection when first char is a space.
|
|
18
|
+
- Fixed hide autocomplete when tab changes.
|
|
19
|
+
|
|
20
|
+
Fixed vertical area split resize when `sizes: "auto"`.
|
|
21
|
+
Docs updated.
|
|
22
|
+
Minor CSS tweaks.
|
|
23
|
+
|
|
24
|
+
## 0.6.7
|
|
25
|
+
|
|
5
26
|
Widgets:
|
|
6
27
|
- Button Widget now allows `options.fileInput` to request a file on click.
|
|
7
28
|
- Custom Widgets now allow getter and setter options to process non-native types.
|
|
@@ -18,7 +39,7 @@ Added `MAKE_NUMBERED_LIST` to docmaker.js component.
|
|
|
18
39
|
Clean docmaker css.
|
|
19
40
|
Docs updated.
|
|
20
41
|
|
|
21
|
-
## 0.6.6
|
|
42
|
+
## 0.6.6
|
|
22
43
|
|
|
23
44
|
Fixed horizontal scroll in Table Widget.
|
|
24
45
|
Fixed checkbox in Dropdown item.
|