@zhangqingcq/vgce 0.1.18 → 0.1.20
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -2
- package/dist/style.css +1 -1
- package/dist/vgce.js +6397 -6310
- package/dist/vgce.umd.cjs +23 -23
- package/package.json +2 -2
- package/src/components/svg-editor/center-panel.vue +35 -1
- package/src/components/svg-editor/top-panel.vue +1 -1
- package/src/components/svg-viewer.vue +10 -3
- package/src/config/svg/animation/thermometer.ts +1 -1
- package/src/config/svg/custom/clock-a.ts +1 -1
- package/src/config/svg/custom/light.ts +1 -1
- package/src/config/svg/custom/svg-text.ts +1 -1
- package/src/config/svg/custom/switch-r.ts +1 -1
- package/src/config/svg/stateful/alert-light.ts +1 -1
- package/src/config/vue/component/button.ts +1 -1
- package/src/config/vue/component/common-table.ts +1 -1
- package/src/config/vue/component/progress.ts +1 -1
- package/src/config/vue/component/tag.ts +1 -1
- package/src/config/vue/echarts/pie-charts.ts +1 -1
- package/src/utils/mqtt-net.ts +62 -47
- package/src/views/Preview.vue +1 -1
package/README.md
CHANGED
@@ -7,13 +7,13 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
7
7
|
### 1. install 安装依赖
|
8
8
|
|
9
9
|
```
|
10
|
-
npm i @zhangqingcq/vgce element-plus@2.8.
|
10
|
+
npm i @zhangqingcq/vgce element-plus@2.8.6 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1
|
11
11
|
```
|
12
12
|
|
13
13
|
or
|
14
14
|
|
15
15
|
```
|
16
|
-
pnpm add @zhangqingcq/vgce element-plus@2.8.
|
16
|
+
pnpm add @zhangqingcq/vgce element-plus@2.8.6 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1
|
17
17
|
```
|
18
18
|
|
19
19
|
### 2. change main.ts or main.js 修改项目主文件
|