lexgui 0.7.5 → 0.7.6
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/extensions/codeeditor.js +69 -14
- package/build/lexgui.css +4 -0
- package/build/lexgui.js +59 -17
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +59 -17
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +16 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 0.7.
|
|
5
|
+
## 0.7.6 (master)
|
|
6
|
+
|
|
7
|
+
The last color scheme applied (dark|light) is now stored.
|
|
8
|
+
Added `LX.setSystemTheme()` to revert back auto color scheme mode.
|
|
9
|
+
Callbacks are now not skipped in Form Component, instead return validation errors `callback(value, errors, event)`.
|
|
10
|
+
Added support for `options.indexOffset (default -1 to append last)` on adding tabs to Tabs Area class.
|
|
11
|
+
|
|
12
|
+
Sidebar:
|
|
13
|
+
- Fixed checkbox change order in Checkbox entries.
|
|
14
|
+
- Added swap value to entry callback parameters (2nd).
|
|
15
|
+
|
|
16
|
+
CodeEditor:
|
|
17
|
+
- Added support to use different name for URL/Path loaded files.
|
|
18
|
+
- Added support to load initial files async using `options.filesAsync` list.
|
|
19
|
+
|
|
20
|
+
## 0.7.5
|
|
6
21
|
|
|
7
22
|
CodeEditor:
|
|
8
23
|
- Hotfixed issue not processing lines in some cases.
|