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/changelog.md CHANGED
@@ -2,7 +2,22 @@
2
2
 
3
3
  ## dev
4
4
 
5
- ## 8.3.1 (master)
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
@@ -742,6 +742,8 @@ interface Vec2 {
742
742
  y: number;
743
743
  }
744
744
 
745
+ const hexColor = "#ff4532";
746
+
745
747
  type Callback<T> = (value: T) => void;
746
748
 
747
749
  class Timer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lexgui",
3
- "version": "8.3.1",
3
+ "version": "8.3.2",
4
4
  "description": "JS library to create web graphical user interfaces",
5
5
  "type": "module",
6
6
  "main": "./build/lexgui.js",