aleman 1.1.39 → 1.1.40

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 CHANGED
@@ -1,3 +1,8 @@
1
+ 2025.08.30, v1.1.40
2
+
3
+ feature:
4
+ - 55cd365 aleman: menu: f9: get rid of
5
+
1
6
  2025.08.30, v1.1.39
2
7
 
3
8
  fix:
@@ -11,7 +11,7 @@ export const listener = ({event, state, options}) => {
11
11
  ...state,
12
12
  position: {
13
13
  x: event.clientX,
14
- y: event.clientY - 10,
14
+ y: event.clientY,
15
15
  },
16
16
  });
17
17
 
@@ -21,7 +21,7 @@ export const listener = ({event, state, options}) => {
21
21
  command,
22
22
  position: {
23
23
  x: event.clientX,
24
- y: event.clientY - 14,
24
+ y: event.clientY - 10,
25
25
  },
26
26
  };
27
27
  };
@@ -3,7 +3,6 @@ import * as click from './click.js';
3
3
  import * as escape from './escape.js';
4
4
  import * as down from './down.js';
5
5
  import * as up from './up.js';
6
- import * as f9 from './f9.js';
7
6
  import * as enter from './enter.js';
8
7
 
9
8
  export const addons = [
@@ -12,6 +11,5 @@ export const addons = [
12
11
  escape,
13
12
  down,
14
13
  up,
15
- f9,
16
14
  enter,
17
15
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aleman",
3
- "version": "1.1.39",
3
+ "version": "1.1.40",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊Putout-based framework for web",
package/menu/addons/f9.js DELETED
@@ -1,14 +0,0 @@
1
- export const key = 'F9';
2
-
3
- export const filter = ({state, options}) => {
4
- const {beforeShow} = options;
5
-
6
- if (!beforeShow)
7
- return true;
8
-
9
- return options.beforeShow?.(state);
10
- };
11
-
12
- export const listener = () => ({
13
- command: 'show',
14
- });