lexgui 0.7.10 → 0.7.12
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/timeline.js +275 -205
- package/build/lexgui.css +0 -1
- package/build/lexgui.js +327 -271
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +351 -295
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +34 -1
- package/examples/editor.html +2 -2
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,7 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## dev
|
|
4
4
|
|
|
5
|
-
## 0.7.
|
|
5
|
+
## 0.7.12 (master)
|
|
6
|
+
|
|
7
|
+
Added support column actions in Table Component.
|
|
8
|
+
|
|
9
|
+
Timeline:
|
|
10
|
+
- Added `setTrackLock` method.
|
|
11
|
+
- Renamed `onLockTrack` to `onSetTrackLock`.
|
|
12
|
+
- Added `updateTrackTree` parameter to `setTrackState` and `deselectAllTracks`.
|
|
13
|
+
- Renamed `selectTrack` to `setTrackSelection`.
|
|
14
|
+
|
|
15
|
+
NodeTree:
|
|
16
|
+
- Fixed styling of actions button inputs.
|
|
17
|
+
|
|
18
|
+
## 0.7.11
|
|
19
|
+
|
|
20
|
+
Fixed `Menubar.getSubItem`.
|
|
21
|
+
|
|
22
|
+
Timeline:
|
|
23
|
+
- Adjust scroll if left panel size changes.
|
|
24
|
+
- Keyframe selection now uses the correct keyframeSize values.
|
|
25
|
+
- Added `onTrackTreeEvent`.
|
|
26
|
+
- On curve tracks, `Alt` key now saves state before modifying keyframes.
|
|
27
|
+
- Fixed tracks resize on refresh.
|
|
28
|
+
|
|
29
|
+
NodeTree Component:
|
|
30
|
+
- Item actions are now standard buttons instead of icons.
|
|
31
|
+
- Fix select when filter is present.
|
|
32
|
+
- Allow null id to unselect all.
|
|
33
|
+
|
|
34
|
+
TreeEvent:
|
|
35
|
+
- Added event attribute to store mouse/keyboard/system.
|
|
36
|
+
- Homogenised calls to TreeEvent so node, value and event are consistent.
|
|
37
|
+
|
|
38
|
+
## 0.7.10
|
|
6
39
|
|
|
7
40
|
Removed Fit-Tabs thumb CSS transition on `Tabs.add`.
|
|
8
41
|
Added Popover documentation.
|
package/examples/editor.html
CHANGED
|
@@ -635,13 +635,13 @@
|
|
|
635
635
|
switch (event.type) {
|
|
636
636
|
case LX.TreeEvent.NODE_SELECTED:
|
|
637
637
|
if (event.multiple)
|
|
638
|
-
console.log("Selected: ", event.
|
|
638
|
+
console.log("Selected: ", event.value);
|
|
639
639
|
else
|
|
640
640
|
console.log(event.node.id + " selected");
|
|
641
641
|
break;
|
|
642
642
|
case LX.TreeEvent.NODE_DELETED:
|
|
643
643
|
if (event.multiple)
|
|
644
|
-
console.log("Deleted: ", event.
|
|
644
|
+
console.log("Deleted: ", event.value);
|
|
645
645
|
else
|
|
646
646
|
console.log(event.node.id + " deleted");
|
|
647
647
|
break;
|