morghulis 1.0.11 → 1.0.12
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/README.md +108 -17
- package/dist/morghulis.es.js +426 -19
- package/dist/morghulis.es.js.map +1 -0
- package/dist/morghulis.umd.js +2 -1
- package/dist/morghulis.umd.js.map +1 -0
- package/dist/style.css +4 -0
- package/package.json +37 -13
- package/types/index.d.ts +15 -0
- package/dist/App.vue.d.ts +0 -3
- package/dist/App.vue.d.ts.map +0 -1
- package/dist/components/LypButton.vue.d.ts +0 -3
- package/dist/components/LypButton.vue.d.ts.map +0 -1
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +0 -8
- package/dist/index.d.ts.map +0 -1
- package/dist/main.d.ts +0 -1
- package/dist/main.d.ts.map +0 -1
- package/dist/morghulis.css +0 -1
package/package.json
CHANGED
@@ -1,22 +1,46 @@
|
|
1
1
|
{
|
2
2
|
"name": "morghulis",
|
3
|
-
"version": "1.0.
|
4
|
-
"
|
3
|
+
"version": "1.0.12",
|
4
|
+
"description": "基于Vue 3和TypeScript的数据库便捷搭建UI组件库",
|
5
|
+
"main": "dist/morghulis.umd.js",
|
5
6
|
"module": "dist/morghulis.es.js",
|
6
|
-
"
|
7
|
-
|
7
|
+
"files": [
|
8
|
+
"dist",
|
9
|
+
"README.md",
|
10
|
+
"types"
|
11
|
+
],
|
8
12
|
"scripts": {
|
13
|
+
"dev": "vite",
|
9
14
|
"build": "vite build",
|
10
|
-
"
|
15
|
+
"preview": "vite preview"
|
16
|
+
},
|
17
|
+
"dependencies": {
|
18
|
+
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
19
|
+
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
20
|
+
"@fortawesome/vue-fontawesome": "^3.0.3",
|
21
|
+
"element-plus": "^2.3.0",
|
22
|
+
"font-awesome": "^4.7.0",
|
23
|
+
"lodash": "^4.17.21",
|
24
|
+
"vue": "^3.3.0"
|
11
25
|
},
|
12
|
-
"license": "MIT",
|
13
26
|
"devDependencies": {
|
14
|
-
"@
|
15
|
-
"
|
16
|
-
"
|
17
|
-
"
|
27
|
+
"@types/lodash": "^4.14.195",
|
28
|
+
"@types/node": "^20.3.1",
|
29
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
30
|
+
"typescript": "^5.8.2",
|
31
|
+
"vite": "^4.3.9",
|
32
|
+
"vue-tsc": "^1.8.27"
|
18
33
|
},
|
19
|
-
"
|
20
|
-
"vue": "^3.
|
21
|
-
}
|
34
|
+
"peerDependencies": {
|
35
|
+
"vue": "^3.3.0"
|
36
|
+
},
|
37
|
+
"types": "dist/index.d.ts",
|
38
|
+
"keywords": [
|
39
|
+
"vue",
|
40
|
+
"typescript",
|
41
|
+
"ui",
|
42
|
+
"components"
|
43
|
+
],
|
44
|
+
"author": "",
|
45
|
+
"license": "MIT"
|
22
46
|
}
|
package/types/index.d.ts
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
import { App } from 'vue';
|
2
|
+
import { MorDialogProps } from '../src/types/dialog.types';
|
3
|
+
import { MorOption } from '../src/types/io.types';
|
4
|
+
|
5
|
+
export { MorDialogProps, MorOption };
|
6
|
+
|
7
|
+
export declare function createMorghulis(options?: MorOption): {
|
8
|
+
install: (Vue: App) => void;
|
9
|
+
};
|
10
|
+
|
11
|
+
declare module '@vue/runtime-core' {
|
12
|
+
export interface GlobalComponents {
|
13
|
+
MDialog: typeof import('../src/components/dialog/MDialog.vue')['default'];
|
14
|
+
}
|
15
|
+
}
|
package/dist/App.vue.d.ts
DELETED
@@ -1,3 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
3
|
-
//# sourceMappingURL=App.vue.d.ts.map
|
package/dist/App.vue.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":";AAwDA,wBAMG"}
|
@@ -1,3 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
3
|
-
//# sourceMappingURL=LypButton.vue.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"LypButton.vue.d.ts","sourceRoot":"","sources":["../../src/components/LypButton.vue"],"names":[],"mappings":"AAKA;;AA6BA,wBAEG"}
|
package/dist/favicon.ico
DELETED
Binary file
|
package/dist/index.d.ts
DELETED
package/dist/index.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAC1B,OAAO,SAAS,MAAM,4BAA4B,CAAC;AAEnD,OAAO,EAAE,SAAS,EAAE,CAAC;;iBAIN,GAAG;;AADlB,wBAIE"}
|
package/dist/main.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
//# sourceMappingURL=main.d.ts.map
|
package/dist/main.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAA"}
|
package/dist/morghulis.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
.my-button{padding:10px 20px;border:none;background-color:#42b983;color:#fff;font-size:16px;border-radius:5px;cursor:pointer}
|