@lemonadejs/modal 2.4.5 → 2.4.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/dist/index.js CHANGED
@@ -356,7 +356,7 @@ if (!lemonade && typeof (require) === 'function') {
356
356
  }
357
357
  }
358
358
  }
359
- console.log(self)
359
+
360
360
  self.mousemove = function(e) {
361
361
  if (getButton(e)) {
362
362
  return;
package/dist/vue.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { h } from 'vue';
2
2
  import component from "./index.js";
3
3
 
4
- export default {
4
+ export const Modal = {
5
5
  inheritAttrs: false,
6
6
  mounted() {
7
7
  let options = {
@@ -49,3 +49,5 @@ export default {
49
49
  }
50
50
  }
51
51
  };
52
+
53
+ export default Modal;
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  },
18
18
  "main": "dist/index.js",
19
19
  "types": "dist/index.d.ts",
20
- "version": "2.4.5"
20
+ "version": "2.4.6"
21
21
  }