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/changelog.md CHANGED
@@ -2,7 +2,27 @@
2
2
 
3
3
  ## dev
4
4
 
5
- ## 0.6.4 (master)
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", "Cancelled"] },
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", "Cancelled"] },
384
+ { name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "Canceled"] },
385
385
  { name: "Priority", options: ["Low", "Medium", "High"] },
386
386
  ],
387
387
  rowActions: [
@@ -925,7 +925,7 @@
925
925
  toggleColumns: true,
926
926
  filter: "Name",
927
927
  customFilters: [
928
- { name: "Status", options: ["Backlog", "Todo", "In Progress", "Done", "Cancelled"] },
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
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lexgui",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "JS library to create web graphical user interfaces",
5
5
  "type": "module",
6
6
  "main": "./build/lexgui.js",