@zhangqingcq/vgce 0.0.7 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/style.css +1 -1
- package/dist/vgce.js +56814 -34561
- package/dist/vgce.umd.cjs +969 -59
- package/package.json +4 -3
- package/types/index.d.ts +11 -0
package/package.json
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zhangqingcq/vgce",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.9",
|
4
4
|
"description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
7
7
|
},
|
8
8
|
"files": [
|
9
|
-
"dist"
|
9
|
+
"dist",
|
10
|
+
"types"
|
10
11
|
],
|
11
12
|
"main": "./dist/vgce.umd.cjs",
|
12
13
|
"module": "./dist/vgce.js",
|
@@ -16,7 +17,7 @@
|
|
16
17
|
"require": "./dist/vgce.umd.cjs",
|
17
18
|
"types": "./types/index.d.ts"
|
18
19
|
},
|
19
|
-
"./
|
20
|
+
"./style": {
|
20
21
|
"import": "./dist/style.css",
|
21
22
|
"require": "./dist/style.css"
|
22
23
|
}
|
package/types/index.d.ts
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
/**
|
2
|
+
* @description vgce 声明文件入口
|
3
|
+
* @author Ricky email:zhangqingcq@foxmail.com
|
4
|
+
* @created 2023.07.10
|
5
|
+
*/
|
6
|
+
|
7
|
+
import type { App } from 'vue'
|
8
|
+
declare const _default: {
|
9
|
+
install: (app: App<any>, options?: Record<string, any>) => void
|
10
|
+
}
|
11
|
+
export default _default
|