@processmaker/modeler 1.36.7 → 1.36.9
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 +11 -14
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +11 -14
- 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.json +1 -1
- package/src/components/nodes/boundaryTimerEvent/boundaryTimerEvent.vue +9 -0
- package/src/components/nodes/inclusiveGateway/index.js +2 -8
- package/src/components/nodes/parallelGateway/index.js +2 -8
package/package.json
CHANGED
|
@@ -11,5 +11,14 @@ export default {
|
|
|
11
11
|
nodeIcon: timerEventIcon,
|
|
12
12
|
};
|
|
13
13
|
},
|
|
14
|
+
methods: {
|
|
15
|
+
addTimerEventDefinitionId() {
|
|
16
|
+
const id = `${this.id}_timer_event_definition`;
|
|
17
|
+
this.node.definition.get('eventDefinitions')[0].id = id;
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
mounted() {
|
|
21
|
+
this.addTimerEventDefinitionId();
|
|
22
|
+
},
|
|
14
23
|
};
|
|
15
24
|
</script>
|
|
@@ -2,8 +2,8 @@ import component from './inclusiveGateway.vue';
|
|
|
2
2
|
import { gatewayDirection } from '../gateway/gatewayConfig';
|
|
3
3
|
import idConfigSettings from '@/components/inspectors/idConfigSettings';
|
|
4
4
|
import nameConfigSettings from '@/components/inspectors/nameConfigSettings';
|
|
5
|
-
import DocumentationFormTextArea from '@/components/inspectors/DocumentationFormTextArea';
|
|
6
5
|
import defaultNames from '@/components/nodes/gateway/defaultNames';
|
|
6
|
+
import documentationAccordionConfig from '@/components/inspectors/documentationAccordionConfig';
|
|
7
7
|
|
|
8
8
|
const id = 'processmaker-modeler-inclusive-gateway';
|
|
9
9
|
|
|
@@ -48,6 +48,7 @@ export default {
|
|
|
48
48
|
},
|
|
49
49
|
],
|
|
50
50
|
},
|
|
51
|
+
documentationAccordionConfig,
|
|
51
52
|
{
|
|
52
53
|
component: 'FormAccordion',
|
|
53
54
|
container: true,
|
|
@@ -74,13 +75,6 @@ export default {
|
|
|
74
75
|
],
|
|
75
76
|
},
|
|
76
77
|
},
|
|
77
|
-
{
|
|
78
|
-
component: DocumentationFormTextArea,
|
|
79
|
-
config: {
|
|
80
|
-
label: 'Description',
|
|
81
|
-
name: 'documentation',
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
78
|
],
|
|
85
79
|
},
|
|
86
80
|
],
|
|
@@ -2,7 +2,7 @@ import component from './parallelGateway.vue';
|
|
|
2
2
|
import { gatewayDirection } from '../gateway/gatewayConfig';
|
|
3
3
|
import idConfigSettings from '@/components/inspectors/idConfigSettings';
|
|
4
4
|
import nameConfigSettings from '@/components/inspectors/nameConfigSettings';
|
|
5
|
-
import
|
|
5
|
+
import documentationAccordionConfig from '@/components/inspectors/documentationAccordionConfig';
|
|
6
6
|
|
|
7
7
|
export default {
|
|
8
8
|
id: 'processmaker-modeler-parallel-gateway',
|
|
@@ -45,6 +45,7 @@ export default {
|
|
|
45
45
|
},
|
|
46
46
|
],
|
|
47
47
|
},
|
|
48
|
+
documentationAccordionConfig,
|
|
48
49
|
{
|
|
49
50
|
component: 'FormAccordion',
|
|
50
51
|
container: true,
|
|
@@ -71,13 +72,6 @@ export default {
|
|
|
71
72
|
],
|
|
72
73
|
},
|
|
73
74
|
},
|
|
74
|
-
{
|
|
75
|
-
component: DocumentationFormTextArea,
|
|
76
|
-
config: {
|
|
77
|
-
label: 'Description',
|
|
78
|
-
name: 'documentation',
|
|
79
|
-
},
|
|
80
|
-
},
|
|
81
75
|
],
|
|
82
76
|
},
|
|
83
77
|
],
|