@abi-software/scaffoldvuer 1.13.1-beta.1 → 1.13.1-beta.2
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/dist/scaffoldvuer.js +14 -10
- package/dist/scaffoldvuer.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/components/ScaffoldVuer.vue +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/scaffoldvuer",
|
|
3
|
-
"version": "1.13.1-beta.
|
|
3
|
+
"version": "1.13.1-beta.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"*.js"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@abi-software/map-utilities": "^1.7.
|
|
44
|
+
"@abi-software/map-utilities": "^1.7.8-beta.0",
|
|
45
45
|
"@abi-software/sparc-annotation": "^0.3.2",
|
|
46
46
|
"@abi-software/svg-sprite": "1.0.3",
|
|
47
47
|
"@element-plus/icons-vue": "^2.3.1",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"unplugin-vue-components": "^0.26.0",
|
|
54
54
|
"vue": "^3.4.21",
|
|
55
55
|
"vue-router": "^4.2.5",
|
|
56
|
-
"zincjs": "^1.16.
|
|
56
|
+
"zincjs": "^1.16.4"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@babel/eslint-parser": "^7.28.0",
|
|
@@ -817,6 +817,7 @@ export default {
|
|
|
817
817
|
drawingBox: false,
|
|
818
818
|
toBeConfirmed: false,
|
|
819
819
|
points: [],
|
|
820
|
+
tempGroupName: "",
|
|
820
821
|
shape: "",
|
|
821
822
|
x: 0,
|
|
822
823
|
y: 0,
|
|
@@ -1653,8 +1654,8 @@ export default {
|
|
|
1653
1654
|
(this.createData.editingIndex > -1 && this.createData.faceIndex > -1)) {
|
|
1654
1655
|
if (this.createData.points.length === 1) {
|
|
1655
1656
|
this.showRegionTooltipWithAnnotations(identifiers, true, false);
|
|
1656
|
-
this.tData.x = 50;
|
|
1657
|
-
this.tData.y = 200;
|
|
1657
|
+
//this.tData.x = 50;
|
|
1658
|
+
//this.tData.y = 200;
|
|
1658
1659
|
if (this._tempLine) {
|
|
1659
1660
|
const positionAttribute = this._tempLine.geometry.getAttribute( 'position' );
|
|
1660
1661
|
positionAttribute.setXYZ(1, worldCoords[0], worldCoords[1], worldCoords[2]);
|
|
@@ -1794,12 +1795,14 @@ export default {
|
|
|
1794
1795
|
this._editingZincObject = zincObject;
|
|
1795
1796
|
this.createData.faceIndex = -1;
|
|
1796
1797
|
this.createData.editingIndex = index;
|
|
1798
|
+
this.createData.tempGroupName = this._editingZincObject.groupName;
|
|
1797
1799
|
//this.drawPoint(point, undefined);
|
|
1798
1800
|
},
|
|
1799
1801
|
activateLineEditingMode: function(zincObject, faceIndex, vertexIndex, point) {
|
|
1800
1802
|
this._editingZincObject = zincObject;
|
|
1801
1803
|
this.createData.faceIndex = faceIndex;
|
|
1802
1804
|
this.createData.editingIndex = vertexIndex;
|
|
1805
|
+
this.createData.tempGroupName = this._editingZincObject.groupName;
|
|
1803
1806
|
this.drawLine(point, undefined);
|
|
1804
1807
|
},
|
|
1805
1808
|
/**
|