@zhangqingcq/vgce 0.1.1 → 0.1.2

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.1",
3
+ "version": "0.1.2",
4
4
  "description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -125,7 +125,7 @@ export const connection_line_system: ISystemStraightLine = {
125
125
  color: {
126
126
  title: '颜色',
127
127
  type: EConfigItemPropsType.Color,
128
- val: '#0a7ae2'
128
+ val: '#602a00'
129
129
  },
130
130
  reverse: {
131
131
  title: '反转动画',
@@ -47,7 +47,7 @@
47
47
  fill="none"
48
48
  fill-opacity="0"
49
49
  stroke="#DE4517"
50
- :stroke-width="props.itemInfo.props['stroke-width'].val + 1"
50
+ :stroke-width="Math.ceil(props.itemInfo.props['stroke-width'].val * 1.2) + 1"
51
51
  stroke-linecap="round"
52
52
  stroke-linejoin="round"
53
53
  v-show="props.itemInfo.selected || props.itemInfo.id === globalStore.handle_svg_info?.info.id"
@@ -143,7 +143,7 @@
143
143
  :r="props.itemInfo.props.point_r.val + 1"
144
144
  fill="none"
145
145
  fill-opacity="0"
146
- stroke-width="1"
146
+ :stroke-width="Math.ceil(props.itemInfo.props.point_r.val * 0.2) + 1"
147
147
  stroke="#DE4517"
148
148
  v-show="props.itemInfo.selected || props.itemInfo.id === globalStore.handle_svg_info?.info.id"
149
149
  />