lexgui 0.6.4 → 0.6.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/components/codeeditor.js +10 -10
- package/build/components/docmaker.js +417 -0
- package/build/components/nodegraph.js +12 -12
- package/build/components/timeline.js +170 -175
- package/build/lexgui-docs.css +410 -0
- package/build/lexgui.css +11 -0
- package/build/lexgui.js +1226 -1139
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +1236 -1149
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +21 -1
- package/demo.js +1 -1
- package/examples/all_widgets.html +1 -1
- package/examples/editor.html +1 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 0.6.
|
|
5
|
+
## 0.6.6 (master)
|
|
6
|
+
|
|
7
|
+
Fixed horizontal scroll in Table Widget.
|
|
8
|
+
Fixed checkbox in Dropdown item.
|
|
9
|
+
Callbacks in collapsable sidebar entries are now executed.
|
|
10
|
+
Add `docmaker.js` script (Documentation maker) as new LX component.
|
|
11
|
+
Added `hover:scale` CSS selectors.
|
|
12
|
+
|
|
13
|
+
## 0.6.5
|
|
14
|
+
|
|
15
|
+
Timeline:
|
|
16
|
+
- Refactored undo-redo.
|
|
17
|
+
- ClipsTimeline: added an argument on `addClip` to start search at a particular track.
|
|
18
|
+
- Documentation updated.
|
|
19
|
+
- Minor fixes.
|
|
20
|
+
|
|
21
|
+
Use sidebar inside Sheet element on mobile.
|
|
22
|
+
Removed LX.UTILS. Moved methods to global namespace `LX`.
|
|
23
|
+
Minor fixes in example demos.
|
|
24
|
+
|
|
25
|
+
## 0.6.4
|
|
6
26
|
|
|
7
27
|
Timeline:
|
|
8
28
|
- Paste refactor.
|
package/demo.js
CHANGED
|
@@ -469,7 +469,7 @@ const area = await LX.init( { layoutMode: "document", rootClass: "wrapper" } );
|
|
|
469
469
|
toggleColumns: true,
|
|
470
470
|
filter: "Name",
|
|
471
471
|
customFilters: [
|
|
472
|
-
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "
|
|
472
|
+
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "Canceled"] },
|
|
473
473
|
{ name: "Priority", options: ["Low", "Medium", "High"] },
|
|
474
474
|
{ name: "ID", type: "range", min: 0, max: 9, step: 1, units: "hr" },
|
|
475
475
|
],
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
toggleColumns: true,
|
|
382
382
|
filter: "Name",
|
|
383
383
|
customFilters: [
|
|
384
|
-
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "
|
|
384
|
+
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "Canceled"] },
|
|
385
385
|
{ name: "Priority", options: ["Low", "Medium", "High"] },
|
|
386
386
|
],
|
|
387
387
|
rowActions: [
|
package/examples/editor.html
CHANGED
|
@@ -925,7 +925,7 @@
|
|
|
925
925
|
toggleColumns: true,
|
|
926
926
|
filter: "Name",
|
|
927
927
|
customFilters: [
|
|
928
|
-
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "
|
|
928
|
+
{ name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "Canceled"] },
|
|
929
929
|
{ name: "Priority", options: ["Low", "Medium", "High"] },
|
|
930
930
|
{ name: "ID", type: "range", min: 0, max: 9, step: 1, units: "hr" },
|
|
931
931
|
],
|