@web-utils/component 3.3.13 → 3.3.14
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/flow-designer/index.mjs +6 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/flow-designer/index.mjs
CHANGED
|
@@ -6432,10 +6432,15 @@ const ai = {
|
|
|
6432
6432
|
})), n;
|
|
6433
6433
|
}
|
|
6434
6434
|
},
|
|
6435
|
+
watch: {
|
|
6436
|
+
value(n) {
|
|
6437
|
+
this.createNewDiagram(n);
|
|
6438
|
+
}
|
|
6439
|
+
},
|
|
6435
6440
|
mounted() {
|
|
6436
6441
|
this.initBpmnModeler(), this.createNewDiagram(this.value), this.$once("hook:beforeDestroy", () => {
|
|
6437
6442
|
this.bpmnModeler && this.bpmnModeler.destroy(), this.$emit("destroy", this.bpmnModeler), this.bpmnModeler = null;
|
|
6438
|
-
})
|
|
6443
|
+
});
|
|
6439
6444
|
},
|
|
6440
6445
|
methods: {
|
|
6441
6446
|
initBpmnModeler() {
|
package/package.json
CHANGED