@abi-software/scaffoldvuer 1.7.1 → 1.8.0-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/scaffoldvuer",
3
- "version": "1.7.1",
3
+ "version": "1.8.0-beta.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,8 +41,8 @@
41
41
  "*.js"
42
42
  ],
43
43
  "dependencies": {
44
- "@abi-software/map-utilities": "^1.3.1",
45
- "@abi-software/sparc-annotation": "^0.3.1",
44
+ "@abi-software/map-utilities": "^1.3.2",
45
+ "@abi-software/sparc-annotation": "^0.3.2",
46
46
  "@abi-software/svg-sprite": "^1.0.1",
47
47
  "@element-plus/icons-vue": "^2.3.1",
48
48
  "core-js": "^3.22.5",
@@ -54,7 +54,7 @@
54
54
  "vue": "^3.4.21",
55
55
  "vue-router": "^4.2.5",
56
56
  "vue3-component-svg-sprite": "^0.0.1",
57
- "zincjs": "^1.11.6"
57
+ "zincjs": "^1.12.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@vitejs/plugin-vue": "^4.6.2",
@@ -174,7 +174,11 @@ export default {
174
174
  this.x = morph.position.x;
175
175
  this.y = morph.position.y;
176
176
  this.z = morph.position.z;
177
- this.scale = morph.scale.x;
177
+ if (this.zincObject.isGlyphset) {
178
+ this.scale = this.zincObject.globalScale;
179
+ } else {
180
+ this.scale = morph.scale.x;
181
+ }
178
182
  }
179
183
  } else {
180
184
  this.zincObject = undefined;