lexgui 0.7.4 → 0.7.5
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 +51 -14
- package/build/extensions/videoeditor.js +12 -1
- package/build/lexgui.css +20 -11
- package/build/lexgui.js +14 -7
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +14 -7
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +15 -1
- package/examples/code-editor.html +4 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 0.7.
|
|
5
|
+
## 0.7.5 (master)
|
|
6
|
+
|
|
7
|
+
CodeEditor:
|
|
8
|
+
- Hotfixed issue not processing lines in some cases.
|
|
9
|
+
- Minor restyle tabs and added options for closing tabs.
|
|
10
|
+
- Support for `options.onCreateFile` callback to modify new file options.
|
|
11
|
+
- Replaced old context menus for new Dropdowns.
|
|
12
|
+
|
|
13
|
+
VideoEditor:
|
|
14
|
+
- Added callback functions when change start/end values.
|
|
15
|
+
|
|
16
|
+
Added `options.event` to Dropdown to offset position based on event position.
|
|
17
|
+
Added some more CSS classes.
|
|
18
|
+
|
|
19
|
+
## 0.7.4
|
|
6
20
|
|
|
7
21
|
Added `LX.toKebabCase`.
|
|
8
22
|
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
// disableEdition: true,
|
|
58
58
|
// skipInfo: true,
|
|
59
59
|
fileExplorer: fileExplorer,
|
|
60
|
+
explorerName: "EXPLORER",
|
|
60
61
|
// statusShowFontSizeZoom: false,
|
|
61
62
|
// skipTabs: true,
|
|
62
63
|
files: [
|
|
@@ -79,6 +80,9 @@
|
|
|
79
80
|
onFilesLoaded: ( instance, numFilesLoaded ) => {
|
|
80
81
|
console.log( `CodeEditor: ${ numFilesLoaded } files loaded!` );
|
|
81
82
|
instance.loadTab("js_sample.js");
|
|
83
|
+
},
|
|
84
|
+
xonCreateFile: ( instance ) => {
|
|
85
|
+
return { name: "new_shader.wgsl", language: "WGSL" }
|
|
82
86
|
}
|
|
83
87
|
});
|
|
84
88
|
|