@zhangqingcq/vgce 0.1.10 → 0.1.11
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 +2 -2
- package/dist/style.css +1 -1
- package/dist/vgce.js +20101 -20148
- package/dist/vgce.umd.cjs +38 -35
- package/package.json +4 -4
- package/src/components/svg-editor/top-panel.vue +1 -16
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zhangqingcq/vgce",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.11",
|
4
4
|
"description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -54,13 +54,13 @@
|
|
54
54
|
"dependencies": {
|
55
55
|
"@element-plus/icons-vue": "^2.1.0",
|
56
56
|
"@types/lodash-es": "^4.17.8",
|
57
|
-
"ace-builds": "
|
57
|
+
"ace-builds": "1.14.0",
|
58
58
|
"animate.css": "^4.1.1",
|
59
59
|
"axios": "^1.4.0",
|
60
60
|
"echarts": "^5.4.1",
|
61
|
-
"element-plus": "
|
61
|
+
"element-plus": "2.8.0",
|
62
62
|
"lodash-es": "^4.17.21",
|
63
|
-
"mqtt": "
|
63
|
+
"mqtt": "5.1.3",
|
64
64
|
"pinia": "^2.1.3",
|
65
65
|
"vue": "^3.3.4",
|
66
66
|
"vue-echarts": "^6.5.1",
|
@@ -153,7 +153,7 @@
|
|
153
153
|
</el-icon>
|
154
154
|
</div>
|
155
155
|
</div>
|
156
|
-
<el-dialog v-model="open" title="使用说明" width="60%"
|
156
|
+
<el-dialog v-model="open" title="使用说明" width="60%">
|
157
157
|
<el-scrollbar max-height="60vh">
|
158
158
|
<div class="font-bold mb-10px text-15px guide-title" style="padding-top: 16px">多选</div>
|
159
159
|
<div
|
@@ -232,18 +232,3 @@
|
|
232
232
|
}
|
233
233
|
}
|
234
234
|
</style>
|
235
|
-
<style lang="less">
|
236
|
-
.guide-dialog {
|
237
|
-
.el-dialog__header {
|
238
|
-
background-color: #f1f1f5;
|
239
|
-
margin-right: 0;
|
240
|
-
padding-right: 16px;
|
241
|
-
}
|
242
|
-
|
243
|
-
.el-dialog__body {
|
244
|
-
padding-top: 0;
|
245
|
-
padding-bottom: 8px;
|
246
|
-
padding-right: 8px;
|
247
|
-
}
|
248
|
-
}
|
249
|
-
</style>
|