vdrag-topo-utils 1.0.2 → 1.0.3

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.
@@ -0,0 +1,2 @@
1
+ declare const bus: any;
2
+ export default bus;
@@ -0,0 +1,5 @@
1
+ import { EventEmitter as t } from "eventemitter3";
2
+ const o = new t();
3
+ export {
4
+ o as default
5
+ };
@@ -1 +1,2 @@
1
1
  export { default as withInstall } from "./withinstall";
2
+ export { default as bus } from "./bus";
package/dist/es/index.js CHANGED
@@ -1,4 +1,6 @@
1
- import { default as l } from "./withinstall/index.js";
1
+ import { default as e } from "./withinstall/index.js";
2
+ import { default as l } from "./bus/index.js";
2
3
  export {
3
- l as withInstall
4
+ l as bus,
5
+ e as withInstall
4
6
  };
@@ -1,4 +1,4 @@
1
1
  import type { Plugin } from "vue";
2
- export declare type SFCWithInstall<T> = T & Plugin;
2
+ export type SFCWithInstall<T> = T & Plugin;
3
3
  declare const _default: <T>(comp: T) => SFCWithInstall<T>;
4
4
  export default _default;
@@ -0,0 +1,2 @@
1
+ declare const bus: any;
2
+ export default bus;
@@ -0,0 +1 @@
1
+ "use strict";const e=require("eventemitter3"),t=new e.EventEmitter;module.exports=t;
@@ -1 +1,2 @@
1
1
  export { default as withInstall } from "./withinstall";
2
+ export { default as bus } from "./bus";
package/dist/lib/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./withinstall/index.js");exports.withInstall=e;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./withinstall/index.js"),t=require("./bus/index.js");exports.withInstall=e;exports.bus=t;
@@ -1,4 +1,4 @@
1
1
  import type { Plugin } from "vue";
2
- export declare type SFCWithInstall<T> = T & Plugin;
2
+ export type SFCWithInstall<T> = T & Plugin;
3
3
  declare const _default: <T>(comp: T) => SFCWithInstall<T>;
4
4
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vdrag-topo-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "main": "dist/lib/index.js",
6
6
  "module": "dist/es/index.js",