lexgui 8.3.1 → 8.3.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/core/Namespace.js +34 -34
- package/build/core/Namespace.js.map +1 -1
- package/build/extensions/CodeEditor.d.ts +521 -467
- package/build/extensions/CodeEditor.js +4895 -4422
- package/build/extensions/CodeEditor.js.map +1 -1
- package/build/extensions/VideoEditor.js +1021 -1021
- package/build/lexgui.all.js +28972 -28481
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +28897 -28406
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +7598 -7551
- package/build/lexgui.js +19071 -18580
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +19010 -18519
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +16 -1
- package/demo.js +2 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 8.3.
|
|
5
|
+
## 8.3.2 (master)
|
|
6
|
+
|
|
7
|
+
Added interest delay `options.delay` to Tooltip.
|
|
8
|
+
Fixed bug not removing tooltips when trigger is destroyed.
|
|
9
|
+
Added Tooltip docs.
|
|
10
|
+
Fixed some crashing doc pages.
|
|
11
|
+
|
|
12
|
+
CodeEditor:
|
|
13
|
+
- Added symbol hover info and inline color manipulation through LX.ColorInput.
|
|
14
|
+
- Support for `options.onHoverSymbol` to customize popup symbol data.
|
|
15
|
+
- Fixed issues normalizing imported text.
|
|
16
|
+
- Added scope braces detection.
|
|
17
|
+
- Suggestions icon, iconClass, sortText and filterText.
|
|
18
|
+
- Added missing GLSL highlight css.
|
|
19
|
+
|
|
20
|
+
## 8.3.1
|
|
6
21
|
|
|
7
22
|
Fixed `LX.toKebabCase`.
|
|
8
23
|
Added `LX.toSnakeCase(str)` util.
|
package/demo.js
CHANGED