@processmaker/modeler 1.20.1 → 1.21.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/dist/modeler.common.js +63 -61
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +63 -61
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +1 -1
- package/dist/modeler.umd.min.js.map +1 -1
- package/package-lock.json +16 -29
- package/package.json +4 -4
- package/public/js/css/vendors~tinymce.3fb13796.css +1 -0
- package/public/js/css/vendors~tinymce.4353f1df.css +1 -0
- package/public/js/vue-form-elements.common.tinymce.js +36 -0
- package/public/js/vue-form-elements.common.tinymce.js.map +1 -0
- package/public/js/vue-form-elements.common.vendors~tinymce.js +67057 -0
- package/public/js/vue-form-elements.common.vendors~tinymce.js.map +1 -0
- package/public/js/vue-form-elements.umd.min.tinymce.js +2 -0
- package/public/js/vue-form-elements.umd.min.tinymce.js.map +1 -0
- package/public/js/vue-form-elements.umd.min.vendors~tinymce.js +2 -0
- package/public/js/vue-form-elements.umd.min.vendors~tinymce.js.map +1 -0
- package/public/js/vue-form-elements.umd.tinymce.js +36 -0
- package/public/js/vue-form-elements.umd.tinymce.js.map +1 -0
- package/public/js/vue-form-elements.umd.vendors~tinymce.js +67057 -0
- package/public/js/vue-form-elements.umd.vendors~tinymce.js.map +1 -0
- package/src/components/crown/utils.js +4 -4
- package/src/mixins/linkConfig.js +1 -2
- package/public/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
|
@@ -108,12 +108,12 @@ export function getOrFindDataInput(moddle, task, sourceNode) {
|
|
|
108
108
|
const dataInputId = `data_input_${sourceNodeId}`;
|
|
109
109
|
// Check if ioSpecification exists
|
|
110
110
|
if (!task.definition.ioSpecification) {
|
|
111
|
-
task.definition.
|
|
111
|
+
task.definition.ioSpecification = moddle.create('bpmn:InputOutputSpecification', {
|
|
112
112
|
dataInputs: [],
|
|
113
113
|
dataOutputs: [],
|
|
114
114
|
inputSets: [],
|
|
115
115
|
outputSets: [],
|
|
116
|
-
})
|
|
116
|
+
});
|
|
117
117
|
}
|
|
118
118
|
// Check if dataInput exists
|
|
119
119
|
if (!task.definition.ioSpecification.dataInputs) {
|
|
@@ -133,7 +133,7 @@ export function getOrFindDataInput(moddle, task, sourceNode) {
|
|
|
133
133
|
if (!task.definition.ioSpecification.outputSets) {
|
|
134
134
|
task.definition.ioSpecification.set('outputSets', [
|
|
135
135
|
moddle.create('bpmn:OutputSet', {
|
|
136
|
-
|
|
136
|
+
dataOutputRefs: [],
|
|
137
137
|
}),
|
|
138
138
|
]);
|
|
139
139
|
}
|
|
@@ -141,7 +141,7 @@ export function getOrFindDataInput(moddle, task, sourceNode) {
|
|
|
141
141
|
if (!outputSet) {
|
|
142
142
|
task.definition.ioSpecification.set('outputSets', [
|
|
143
143
|
moddle.create('bpmn:OutputSet', {
|
|
144
|
-
|
|
144
|
+
dataOutputRefs: [],
|
|
145
145
|
}),
|
|
146
146
|
]);
|
|
147
147
|
}
|
package/src/mixins/linkConfig.js
CHANGED
|
@@ -214,9 +214,8 @@ export default {
|
|
|
214
214
|
|
|
215
215
|
const sourceAnchorTool = new linkTools.SourceAnchor({ snap: this.getAnchorPointFunction('source') });
|
|
216
216
|
const targetAnchorTool = new linkTools.TargetAnchor({ snap: this.getAnchorPointFunction('target') });
|
|
217
|
-
const segmentsTool = new linkTools.Segments();
|
|
218
217
|
const toolsView = new dia.ToolsView({
|
|
219
|
-
tools: [verticesTool,
|
|
218
|
+
tools: [verticesTool, sourceAnchorTool, targetAnchorTool],
|
|
220
219
|
});
|
|
221
220
|
|
|
222
221
|
this.shapeView.addTools(toolsView);
|
package/public/.DS_Store
DELETED
|
Binary file
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/components/.DS_Store
DELETED
|
Binary file
|