aleman 1.0.4 → 1.0.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.
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import {select} from '../globals/menu/menu.js';
|
|
2
|
+
|
|
1
3
|
export const name = 'menu';
|
|
2
4
|
export const events = ['mouseenter'];
|
|
3
|
-
export const listener = ({render}) => {
|
|
5
|
+
export const listener = ({render, storage}) => {
|
|
6
|
+
storage.set('index', -1);
|
|
4
7
|
render('unselect-all');
|
|
5
8
|
};
|
|
9
|
+
|
package/lib/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as start from './addons/start-click.js';
|
|
2
2
|
import * as stop from './addons/stop-click.js';
|
|
3
3
|
import * as inputChange from './addons/input-change.js';
|
|
4
|
-
import * as menuClick from './addons/menu-click.js';
|
|
4
|
+
import * as menuClick from './addons/show-menu-click.js';
|
|
5
5
|
import * as menuItemClick from './addons/menu-item-click.js';
|
|
6
6
|
import * as menuMouseOver from './addons/menu-mouse-over.js';
|
|
7
7
|
import menu from './globals/menu.js';
|
package/package.json
CHANGED
|
File without changes
|