morghulis 3.1.10 → 3.1.13
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.css +1 -1
- package/dist/morghulis.es.js +1317 -1307
- package/dist/morghulis.es.js.map +1 -1
- package/dist/morghulis.umd.js +13 -13
- package/dist/morghulis.umd.js.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
@@ -3,11 +3,13 @@ import { App } from "vue";
|
|
3
3
|
import { MorghulisOptions } from "./core/types";
|
4
4
|
import { createChannel } from "./hooks/use-channel";
|
5
5
|
import 'element-plus/dist/index.css';
|
6
|
+
import MApp from "./MApp.vue";
|
6
7
|
declare module "vue" {
|
7
8
|
interface GlobalComponents {
|
9
|
+
MApp: typeof MApp;
|
8
10
|
}
|
9
11
|
}
|
10
12
|
declare const createMorghulis: (options?: MorghulisOptions) => {
|
11
13
|
install(Vue: App): void;
|
12
14
|
};
|
13
|
-
export { createMorghulis, createChannel, };
|
15
|
+
export { MApp, createMorghulis, createChannel, };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "morghulis",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.13",
|
4
4
|
"type": "module",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -14,7 +14,7 @@
|
|
14
14
|
"import": "./dist/morghulis.es.js",
|
15
15
|
"require": "./dist/morghulis.umd.js"
|
16
16
|
},
|
17
|
-
"./
|
17
|
+
"./dist/index.css": "./dist/index.css"
|
18
18
|
},
|
19
19
|
"scripts": {
|
20
20
|
"dev": "vite",
|