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