@lemonadejs/contextmenu 1.1.0 → 1.1.1

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/dist/index.js CHANGED
@@ -365,7 +365,7 @@ if (! Modal && typeof (require) === 'function') {
365
365
  // Create event for focus out
366
366
  self.root.addEventListener("focusout", (e) => {
367
367
  if (! self.root.contains(e.relatedTarget)) {
368
- self.close(0);
368
+ //self.close(0);
369
369
  }
370
370
  });
371
371
 
package/dist/style.css CHANGED
@@ -19,7 +19,7 @@
19
19
  .lm-menu-submenu > div.lm-menu-item {
20
20
  box-sizing: border-box;
21
21
  display: flex;
22
- padding: 0 8px 0 32px;
22
+ padding: 0 8px 0 8px;
23
23
  width: 250px;
24
24
  font-size: 11px;
25
25
  font-family:sans-serif;
@@ -64,7 +64,7 @@
64
64
  content: attr(data-icon);
65
65
  font-family: 'Material Icons';
66
66
  font-size: 16px;
67
- position: absolute;
68
- left: 9px;
69
67
  line-height: 24px;
68
+ margin-right: 10px;
69
+ width: 16px;
70
70
  }
package/package.json CHANGED
@@ -14,10 +14,10 @@
14
14
  "build": "webpack --config webpack.config.js"
15
15
  },
16
16
  "dependencies": {
17
- "@lemonadejs/modal": "^2.7.0",
17
+ "@lemonadejs/modal": "^2.7.1",
18
18
  "lemonadejs": "^4.0.7"
19
19
  },
20
20
  "main": "dist/index.js",
21
21
  "types": "dist/index.d.ts",
22
- "version": "1.1.0"
22
+ "version": "1.1.1"
23
23
  }