@zhangqingcq/vgce 0.1.22 → 0.1.25

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhangqingcq/vgce",
3
- "version": "0.1.22",
3
+ "version": "0.1.25",
4
4
  "description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -964,6 +964,18 @@
964
964
  }
965
965
  }
966
966
 
967
+ const onHandleKeyUp = (e: KeyboardEvent) => {
968
+ const t = ['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight']
969
+ if (!e.ctrlKey && t.indexOf(e.key) > -1) {
970
+ //群组移动了,从新计算移动过的组件各种坐标信息
971
+ for (let e of globalStore.done_json) {
972
+ if (e.selected) {
973
+ setSvgActualInfo(e)
974
+ }
975
+ }
976
+ }
977
+ }
978
+
967
979
  const resizeBox = () => {
968
980
  setSvgActualInfo(globalStore.done_json[globalStore.handle_svg_info!.index], true)
969
981
  }
@@ -998,6 +1010,7 @@
998
1010
  @mouseup="onCanvasMouseUp"
999
1011
  @contextmenu="onCanvasContextMenuEvent"
1000
1012
  @keydown="onHandleKeyDown"
1013
+ @keyup="onHandleKeyUp"
1001
1014
  @mousewheel="onMousewheel"
1002
1015
  >
1003
1016
  <slot name="background" />
@@ -131,7 +131,7 @@
131
131
  if (e.wheelDelta > 0) {
132
132
  preview_data.config.svg.scale = myFixed(preview_data.config.svg.scale + 0.1, 1)
133
133
  getZoomPosition(e, preview_data.config.svg.scale, preview_data.layout_center, true)
134
- } else {
134
+ } else if (preview_data.config.svg.scale > 0.1) {
135
135
  preview_data.config.svg.scale = myFixed(preview_data.config.svg.scale - 0.1, 1)
136
136
  getZoomPosition(e, preview_data.config.svg.scale, preview_data.layout_center, false)
137
137
  }
@@ -17,7 +17,7 @@ class Link {
17
17
  this.client = connect(_url, {
18
18
  username: user.trim(),
19
19
  password: pwd.trim(),
20
- reconnectPeriod: 600000 /*如果连不上,10分钟后重试*/
20
+ reconnectPeriod: 120000 /*如果连不上,2分钟后重试*/
21
21
  })
22
22
 
23
23
  this.client?.on('connect', () => {