@mx-sose-front/mx-sose-graph 1.2.6 → 1.2.7
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/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/store/graphStore.ts +2 -2
package/package.json
CHANGED
package/src/store/graphStore.ts
CHANGED
|
@@ -798,12 +798,12 @@ export const useGraphStore = defineStore('graph', () => {
|
|
|
798
798
|
}
|
|
799
799
|
}
|
|
800
800
|
}
|
|
801
|
-
console.log('1. endDragShape start')
|
|
801
|
+
console.log('1. endDragShape start')
|
|
802
802
|
// 更新相关 edge 的 waypoints
|
|
803
803
|
await EdgeUtils.updateRelatedEdgesAsync(shapes.value, changedIds, (shape) => {
|
|
804
804
|
updateShape(shape.id, shape)
|
|
805
805
|
}, edgesByNodeId.value, shapeMap.value)
|
|
806
|
-
console.log('
|
|
806
|
+
console.log('2. updateRelatedEdgesAsync done')
|
|
807
807
|
//对“本次直接拖动的隔间”做一次自动扩容检查
|
|
808
808
|
autoExpandMovedCompartmentsAfterDrag(shapes.value, changedIds, updateShape)
|
|
809
809
|
// 把 clone 也并入“需要同步 comparents 的变更集合”
|