@processmaker/modeler 1.7.6-RC1 → 1.7.8
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 +209 -65
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +209 -65
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +2 -2
- package/dist/modeler.umd.min.js.map +1 -1
- package/package-lock.json +96 -78
- package/package.json +2 -2
- package/src/.DS_Store +0 -0
- package/src/components/crown/crownButtons/genericFlowButton.vue +1 -0
- package/src/components/modeler/XMLManager.js +35 -0
- package/public/.DS_Store +0 -0
package/dist/modeler.umd.js
CHANGED
|
@@ -1537,6 +1537,57 @@ function baseIsMap(value) {
|
|
|
1537
1537
|
module.exports = baseIsMap;
|
|
1538
1538
|
|
|
1539
1539
|
|
|
1540
|
+
/***/ }),
|
|
1541
|
+
|
|
1542
|
+
/***/ "1a64":
|
|
1543
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1544
|
+
|
|
1545
|
+
const { isAny } = __webpack_require__("7b95");
|
|
1546
|
+
|
|
1547
|
+
/**
|
|
1548
|
+
* Rule that validates gateways according to the following rules:
|
|
1549
|
+
*
|
|
1550
|
+
* - An Event Based Gateway can only be connected to events.
|
|
1551
|
+
*/
|
|
1552
|
+
module.exports = function() {
|
|
1553
|
+
let gateway = null;
|
|
1554
|
+
|
|
1555
|
+
function outgoingFlowsAreValid(gateway) {
|
|
1556
|
+
const outgoing = gateway.get('outgoing');
|
|
1557
|
+
return outgoing.filter(sequenceFlow => {
|
|
1558
|
+
const target = sequenceFlow.get('targetRef');
|
|
1559
|
+
return !isAny(target, ['bpmn:IntermediateCatchEvent', 'bpmn:EndEvent']);
|
|
1560
|
+
}).length === 0;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
function check(gateway, reporter) {
|
|
1564
|
+
if (!isAny(gateway, ['bpmn:EventBasedGateway'])) {
|
|
1565
|
+
return;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
const outgoing = gateway.get('outgoing');
|
|
1569
|
+
const valid = outgoing.filter(sequenceFlow => {
|
|
1570
|
+
const target = sequenceFlow.get('targetRef');
|
|
1571
|
+
const isValidType = isAny(target, ['bpmn:IntermediateCatchEvent', 'bpmn:EndEvent']);
|
|
1572
|
+
const onlyOneIncoming = target.get('incoming').length === 1;
|
|
1573
|
+
if (!isValidType) {
|
|
1574
|
+
reporter.report(target.id, 'Event Gateways target elements must be Catch Events');
|
|
1575
|
+
}
|
|
1576
|
+
if (!onlyOneIncoming) {
|
|
1577
|
+
reporter.report(target.id, 'Event Gateway target elements must not have additional incoming Sequence Flows');
|
|
1578
|
+
}
|
|
1579
|
+
return !isValidType || !onlyOneIncoming;
|
|
1580
|
+
}).length === 0;
|
|
1581
|
+
|
|
1582
|
+
if (!valid) {
|
|
1583
|
+
reporter.report(gateway.id, 'Event Gateways target elements must be valid Catch Events');
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
return { check };
|
|
1588
|
+
};
|
|
1589
|
+
|
|
1590
|
+
|
|
1540
1591
|
/***/ }),
|
|
1541
1592
|
|
|
1542
1593
|
/***/ "1a8c":
|
|
@@ -7965,10 +8016,6 @@ module.exports = function() {
|
|
|
7965
8016
|
reporter.report(null, 'Element is missing ID');
|
|
7966
8017
|
return;
|
|
7967
8018
|
}
|
|
7968
|
-
|
|
7969
|
-
if (!nodeId.match(/^[a-zA-Z][^\s][a-zA-Z0-9_-]+$/)) {
|
|
7970
|
-
reporter.report(node.id, 'Element ID must be a valid QName')
|
|
7971
|
-
}
|
|
7972
8019
|
}
|
|
7973
8020
|
|
|
7974
8021
|
return { check };
|
|
@@ -15048,12 +15095,59 @@ module.exports = function() {
|
|
|
15048
15095
|
|
|
15049
15096
|
if (!hasChildProcess()) {
|
|
15050
15097
|
reporter.report(callActivity.id, 'Call Activity must have child process selected');
|
|
15098
|
+
return;
|
|
15099
|
+
}
|
|
15100
|
+
|
|
15101
|
+
if (typeof window !== 'undefined' && window.ProcessMaker.globalProcesses) {
|
|
15102
|
+
const processList = window.ProcessMaker.globalProcesses;
|
|
15103
|
+
let config = callActivity.get('config');
|
|
15104
|
+
try {
|
|
15105
|
+
config = JSON.parse(config);
|
|
15106
|
+
} catch (e) {
|
|
15107
|
+
config = false;
|
|
15108
|
+
}
|
|
15109
|
+
const isValid = config && checkValidProcesses(processList, callActivity.get('calledElement'), config.startEvent);
|
|
15110
|
+
if (!isValid) {
|
|
15111
|
+
reporter.report(callActivity.id, 'Call Activity must have a child process and a start event selected');
|
|
15112
|
+
}
|
|
15051
15113
|
}
|
|
15052
15114
|
}
|
|
15053
15115
|
|
|
15054
15116
|
return { check };
|
|
15055
15117
|
};
|
|
15056
15118
|
|
|
15119
|
+
function checkValidProcesses(processes, calledElement, startEvent) {
|
|
15120
|
+
const [bpmnId, processId] = calledElement.split('-');
|
|
15121
|
+
return processes.find(process => {
|
|
15122
|
+
if (process.id == processId) {
|
|
15123
|
+
return filterValidStartEvents(process.events).find(event => event.id == startEvent) != undefined;
|
|
15124
|
+
}
|
|
15125
|
+
return false;
|
|
15126
|
+
}) !== undefined;
|
|
15127
|
+
}
|
|
15128
|
+
|
|
15129
|
+
function filterValidStartEvents(events) {
|
|
15130
|
+
return events.filter(event => {
|
|
15131
|
+
// Should not have event definitions like (signal, message, timer, ...)
|
|
15132
|
+
if (event.eventDefinitions && event.eventDefinitions.length > 0) {
|
|
15133
|
+
return false;
|
|
15134
|
+
}
|
|
15135
|
+
// Should not be a web entry
|
|
15136
|
+
if (event.config) {
|
|
15137
|
+
try {
|
|
15138
|
+
const config = JSON.parse(event.config);
|
|
15139
|
+
if (config.web_entry) {
|
|
15140
|
+
return false;
|
|
15141
|
+
}
|
|
15142
|
+
} catch (e) {
|
|
15143
|
+
// Invalid config property
|
|
15144
|
+
return false;
|
|
15145
|
+
}
|
|
15146
|
+
}
|
|
15147
|
+
return true;
|
|
15148
|
+
});
|
|
15149
|
+
}
|
|
15150
|
+
|
|
15057
15151
|
|
|
15058
15152
|
/***/ }),
|
|
15059
15153
|
|
|
@@ -20014,7 +20108,7 @@ if (typeof window !== 'undefined') {
|
|
|
20014
20108
|
// Indicate to webpack that this file can be concatenated
|
|
20015
20109
|
/* harmony default export */ var setPublicPath = (null);
|
|
20016
20110
|
|
|
20017
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
20111
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/association/association.vue?vue&type=template&id=4a60d402&
|
|
20018
20112
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
20019
20113
|
var staticRenderFns = []
|
|
20020
20114
|
|
|
@@ -20955,7 +21049,7 @@ var associationConfig_direction = {
|
|
|
20955
21049
|
one: 'One',
|
|
20956
21050
|
both: 'Both'
|
|
20957
21051
|
};
|
|
20958
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21052
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownConfig/crownConfig.vue?vue&type=template&id=7cce75e8&
|
|
20959
21053
|
var crownConfigvue_type_template_id_7cce75e8_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.showCrown)?_c('div',{staticClass:"crown-config",style:(_vm.style),attrs:{"role":"menu"}},[_vm._t("default"),_c('association-flow-button',_vm._g({attrs:{"node":_vm.node,"moddle":_vm.moddle,"shape":_vm.shape},on:{"toggle-crown-state":function($event){_vm.showCrown = $event}}},_vm.$listeners)),_c('generic-flow-button',_vm._g({attrs:{"node":_vm.node,"node-registry":_vm.nodeRegistry,"moddle":_vm.moddle},on:{"toggle-crown-state":function($event){_vm.showCrown = $event}}},_vm.$listeners)),_c('data-association-flow-button',_vm._g({attrs:{"node":_vm.node,"moddle":_vm.moddle,"shape":_vm.shape},on:{"toggle-crown-state":function($event){_vm.showCrown = $event}}},_vm.$listeners)),_c('default-flow',_vm._g({attrs:{"node":_vm.node}},_vm.$listeners)),_c('crown-dropdowns',_vm._g({attrs:{"dropdown-data":_vm.dropdownData,"boundary-event-dropdown-data":_vm.boundaryEventDropdownData,"node":_vm.node,"node-registry":_vm.nodeRegistry,"moddle":_vm.moddle,"shape":_vm.shape,"task-dropdown-initially-open":_vm.taskDropdownInitiallyOpen,"showCustomIconPicker":_vm.showCustomIconPicker,"iconName":_vm.iconName},on:{"replace-node-type":_vm.replaceNodeTypePrompt}},_vm.$listeners)),_c('copy-button',_vm._g({attrs:{"node":_vm.node}},_vm.$listeners)),_c('delete-button',_vm._g({attrs:{"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node}},_vm.$listeners)),_c('b-modal',{ref:"modal",attrs:{"no-fade":_vm.runningInCypressTest,"id":"modal-prevent-closing","title":_vm.$t('Change Type'),"ok-title":_vm.$t('Confirm'),"cancel-title":_vm.$t('Cancel')},on:{"hidden":function($event){_vm.showReplaceModal = false},"ok":_vm.confirmedReplaceNodeType},model:{value:(_vm.showReplaceModal),callback:function ($$v) {_vm.showReplaceModal=$$v},expression:"showReplaceModal"}},[_c('p',[_vm._v(_vm._s(_vm.$t('Changing this type will replace your current configuration')))])])],2):_vm._e()}
|
|
20960
21054
|
var crownConfigvue_type_template_id_7cce75e8_staticRenderFns = []
|
|
20961
21055
|
|
|
@@ -20971,7 +21065,7 @@ var es_object_keys = __webpack_require__("b64b");
|
|
|
20971
21065
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
20972
21066
|
var es_string_includes = __webpack_require__("2532");
|
|
20973
21067
|
|
|
20974
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21068
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/deleteButton.vue?vue&type=template&id=795d8259&
|
|
20975
21069
|
var deleteButtonvue_type_template_id_795d8259_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Delete'),"role":"menuitem","id":"delete-button","aria-label":"Delete this node"},on:{"click":function($event){_vm.isPoolLane ? _vm.removePoolLaneShape() : _vm.removeShape()}}},[_c('img',{staticClass:"fa-trash-alt trash-icon",attrs:{"src":_vm.trashIcon,"aria-hidden":"true","data-prefix":"fas","data-icon":"trash-alt","alt":""}})])}
|
|
20976
21070
|
var deleteButtonvue_type_template_id_795d8259_staticRenderFns = []
|
|
20977
21071
|
|
|
@@ -20982,7 +21076,7 @@ var deleteButtonvue_type_template_id_795d8259_staticRenderFns = []
|
|
|
20982
21076
|
var trash_alt_solid = __webpack_require__("806c");
|
|
20983
21077
|
var trash_alt_solid_default = /*#__PURE__*/__webpack_require__.n(trash_alt_solid);
|
|
20984
21078
|
|
|
20985
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21079
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/crownButton.vue?vue&type=template&id=7403001b&scoped=true&
|
|
20986
21080
|
var crownButtonvue_type_template_id_7403001b_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('button',_vm._g({staticClass:"btn",attrs:{"id":_vm.id,"aria-label":_vm.ariaLabel}},_vm.$listeners),[_vm._t("default",[_c('img',{attrs:{"src":_vm.src,"alt":"","width":"width","height":"height"}})])],2)}
|
|
20987
21081
|
var crownButtonvue_type_template_id_7403001b_scoped_true_staticRenderFns = []
|
|
20988
21082
|
|
|
@@ -21411,12 +21505,12 @@ var deleteButton_component = normalizeComponent(
|
|
|
21411
21505
|
)
|
|
21412
21506
|
|
|
21413
21507
|
/* harmony default export */ var deleteButton = (deleteButton_component.exports);
|
|
21414
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21415
|
-
var
|
|
21416
|
-
var
|
|
21508
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/genericFlowButton.vue?vue&type=template&id=292a6409&
|
|
21509
|
+
var genericFlowButtonvue_type_template_id_292a6409_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.allowOutgoingSequenceFlow)?_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Flow'),"id":"generic-flow-button","aria-label":"Create a flow","src":_vm.sequenceFlow,"role":"menuitem"},on:{"click":_vm.addSequence}}):_vm._e()}
|
|
21510
|
+
var genericFlowButtonvue_type_template_id_292a6409_staticRenderFns = []
|
|
21417
21511
|
|
|
21418
21512
|
|
|
21419
|
-
// CONCATENATED MODULE: ./src/components/crown/crownButtons/genericFlowButton.vue?vue&type=template&id=
|
|
21513
|
+
// CONCATENATED MODULE: ./src/components/crown/crownButtons/genericFlowButton.vue?vue&type=template&id=292a6409&
|
|
21420
21514
|
|
|
21421
21515
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.some.js
|
|
21422
21516
|
var es_array_some = __webpack_require__("45fc");
|
|
@@ -21752,7 +21846,7 @@ var genericFlow_config_id = 'processmaker-modeler-generic-flow';
|
|
|
21752
21846
|
|
|
21753
21847
|
// Don't show the magic flow button on:
|
|
21754
21848
|
|
|
21755
|
-
var dontShowOn = ['processmaker-modeler-data-object', 'processmaker-modeler-data-store', 'processmaker-modeler-lane', 'processmaker-modeler-end-event', 'processmaker-modeler-error-end-event', 'processmaker-modeler-signal-end-event', 'processmaker-modeler-terminate-end-event', 'processmaker-modeler-text-annotation'];
|
|
21849
|
+
var dontShowOn = ['processmaker-modeler-data-object', 'processmaker-modeler-data-store', 'processmaker-modeler-lane', 'processmaker-modeler-end-event', 'processmaker-modeler-error-end-event', 'processmaker-modeler-signal-end-event', 'processmaker-modeler-terminate-end-event', 'processmaker-modeler-text-annotation', 'processmaker-modeler-sequence-flow'];
|
|
21756
21850
|
/* harmony default export */ var genericFlowButtonvue_type_script_lang_js_ = ({
|
|
21757
21851
|
components: {
|
|
21758
21852
|
CrownButton: crownButton
|
|
@@ -21809,8 +21903,8 @@ var dontShowOn = ['processmaker-modeler-data-object', 'processmaker-modeler-data
|
|
|
21809
21903
|
|
|
21810
21904
|
var genericFlowButton_component = normalizeComponent(
|
|
21811
21905
|
crownButtons_genericFlowButtonvue_type_script_lang_js_,
|
|
21812
|
-
|
|
21813
|
-
|
|
21906
|
+
genericFlowButtonvue_type_template_id_292a6409_render,
|
|
21907
|
+
genericFlowButtonvue_type_template_id_292a6409_staticRenderFns,
|
|
21814
21908
|
false,
|
|
21815
21909
|
null,
|
|
21816
21910
|
null,
|
|
@@ -21819,7 +21913,7 @@ var genericFlowButton_component = normalizeComponent(
|
|
|
21819
21913
|
)
|
|
21820
21914
|
|
|
21821
21915
|
/* harmony default export */ var genericFlowButton = (genericFlowButton_component.exports);
|
|
21822
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21916
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/associationFlowButton.vue?vue&type=template&id=2c7693fc&
|
|
21823
21917
|
var associationFlowButtonvue_type_template_id_2c7693fc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.node.isType('processmaker-modeler-text-annotation'))?_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Association Flow'),"id":"association-flow-button","aria-label":"Add association flow","src":_vm.connectIcon,"role":"menuitem"},on:{"click":_vm.addAssociation}}):_vm._e()}
|
|
21824
21918
|
var associationFlowButtonvue_type_template_id_2c7693fc_staticRenderFns = []
|
|
21825
21919
|
|
|
@@ -21895,7 +21989,7 @@ var associationFlowButton_component = normalizeComponent(
|
|
|
21895
21989
|
)
|
|
21896
21990
|
|
|
21897
21991
|
/* harmony default export */ var associationFlowButton = (associationFlowButton_component.exports);
|
|
21898
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
21992
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/dataAssociationFlowButton.vue?vue&type=template&id=4df84e4b&
|
|
21899
21993
|
var dataAssociationFlowButtonvue_type_template_id_4df84e4b_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.allowOutgoingDataAssociationFlow)?_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Data Association Flow'),"id":"association-flow-button","aria-label":"Add association flow","src":_vm.connectIcon,"role":"menuitem"},on:{"click":_vm.addDataAssociation}}):_vm._e()}
|
|
21900
21994
|
var dataAssociationFlowButtonvue_type_template_id_4df84e4b_staticRenderFns = []
|
|
21901
21995
|
|
|
@@ -22222,7 +22316,7 @@ var dataAssociationFlowButton_component = normalizeComponent(
|
|
|
22222
22316
|
)
|
|
22223
22317
|
|
|
22224
22318
|
/* harmony default export */ var dataAssociationFlowButton = (dataAssociationFlowButton_component.exports);
|
|
22225
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22319
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/copyButton.vue?vue&type=template&id=1f49fa47&
|
|
22226
22320
|
var copyButtonvue_type_template_id_1f49fa47_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.node.isBpmnType.apply(_vm.node, _vm.validCopyElements))?_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Copy Element'),"aria-label":"Copy Element","data-test":"copy-button","role":"menuitem","src":_vm.copyIcon},on:{"click":_vm.copyElement}}):_vm._e()}
|
|
22227
22321
|
var copyButtonvue_type_template_id_1f49fa47_staticRenderFns = []
|
|
22228
22322
|
|
|
@@ -22293,14 +22387,14 @@ var copyButton_component = normalizeComponent(
|
|
|
22293
22387
|
)
|
|
22294
22388
|
|
|
22295
22389
|
/* harmony default export */ var copyButton = (copyButton_component.exports);
|
|
22296
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22390
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/crownDropdowns.vue?vue&type=template&id=0a847d3c&scoped=true&
|
|
22297
22391
|
var crownDropdownsvue_type_template_id_0a847d3c_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"dropdown"}},[_c('crown-task-dropdown',_vm._g({attrs:{"dropdown-data":_vm.dropdownData,"dropdown-open":_vm.taskDropdownOpen,"node":_vm.node},on:{"toggle-dropdown-state":_vm.taskDropdownToggle}},_vm.$listeners)),_c('crown-boundary-event-dropdown',_vm._g({attrs:{"dropdown-data":_vm.boundaryEventDropdownData,"dropdown-open":_vm.boundaryEventDropdownOpen,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"node":_vm.node,"shape":_vm.shape},on:{"toggle-dropdown-state":_vm.boundaryEventDropdownToggle}},_vm.$listeners)),_c('crown-color-dropdown',_vm._g({attrs:{"dropdown-open":_vm.colorDropdownOpen,"node":_vm.node,"showCustomIconPicker":_vm.showCustomIconPicker,"iconName":_vm.iconName},on:{"toggle-dropdown-state":_vm.colorDropdownToggle}},_vm.$listeners))],1)}
|
|
22298
22392
|
var crownDropdownsvue_type_template_id_0a847d3c_scoped_true_staticRenderFns = []
|
|
22299
22393
|
|
|
22300
22394
|
|
|
22301
22395
|
// CONCATENATED MODULE: ./src/components/crown/crownButtons/crownDropdowns.vue?vue&type=template&id=0a847d3c&scoped=true&
|
|
22302
22396
|
|
|
22303
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22397
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/crownTaskDropdown.vue?vue&type=template&id=134c4728&scoped=true&
|
|
22304
22398
|
var crownTaskDropdownvue_type_template_id_134c4728_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.dropdownData.length > 0)?_c('div',{staticClass:"cog-container",attrs:{"role":"menuitem"}},[_c('crown-button',_vm._g({attrs:{"data-test":"select-type-dropdown","id":"dropdown-button","aria-label":"Select a type"},on:{"click":function($event){return _vm.$emit('toggle-dropdown-state', !_vm.dropdownOpen)}}},_vm.$listeners),[_c('i',{staticClass:"fas fa-cog cog-container--button"})]),(_vm.dropdownOpen)?_c('ul',{staticClass:"element-list",attrs:{"role":"list"}},_vm._l((_vm.dropdownData),function(ref){
|
|
22305
22399
|
var label = ref.label;
|
|
22306
22400
|
var nodeType = ref.nodeType;
|
|
@@ -22404,7 +22498,7 @@ var crownTaskDropdown_component = normalizeComponent(
|
|
|
22404
22498
|
)
|
|
22405
22499
|
|
|
22406
22500
|
/* harmony default export */ var crownTaskDropdown = (crownTaskDropdown_component.exports);
|
|
22407
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22501
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/crownBoundaryEventDropdown.vue?vue&type=template&id=59d91c2d&
|
|
22408
22502
|
var crownBoundaryEventDropdownvue_type_template_id_59d91c2d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.dropdownData.length > 0)?_c('div',{staticClass:"cog-container",attrs:{"role":"menuitem"}},[_c('crown-button',_vm._g({directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"id":"dropdown-button","aria-label":"Select a boundary event","src":_vm.boundaryEventIcon,"data-test":"boundary-event-dropdown","title":_vm.$t('Boundary Events')},on:{"click":function($event){return _vm.$emit('toggle-dropdown-state', !_vm.dropdownOpen)}}},_vm.$listeners)),(_vm.dropdownOpen)?_c('ul',{staticClass:"element-list",attrs:{"role":"list"}},_vm._l((_vm.dropdownData),function(ref){
|
|
22409
22503
|
var label = ref.label;
|
|
22410
22504
|
var nodeType = ref.nodeType;
|
|
@@ -22808,7 +22902,7 @@ var crownBoundaryEventDropdown_component = normalizeComponent(
|
|
|
22808
22902
|
)
|
|
22809
22903
|
|
|
22810
22904
|
/* harmony default export */ var crownBoundaryEventDropdown = (crownBoundaryEventDropdown_component.exports);
|
|
22811
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22905
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/crownColorDropdown.vue?vue&type=template&id=5e9576a8&scoped=true&
|
|
22812
22906
|
var crownColorDropdownvue_type_template_id_5e9576a8_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cog-container",attrs:{"role":"menuitem"}},[_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Open Color Palette'),"aria-label":_vm.$t('Open Color Palette'),"role":"menuitem","data-test":"picker-dropdown-button"},on:{"click":function($event){return _vm.$emit('toggle-dropdown-state', !_vm.dropdownOpen)}}},[_c('i',{staticClass:"fas fa-palette cog-container--button"})]),(_vm.dropdownOpen)?_c('div',{staticClass:"element-list color-list"},[_vm._l((_vm.colors.slice(0,4)),function(color){return _c('button',{key:color,staticClass:"color-button",style:({ backgroundColor: color }),attrs:{"type":"button","data-test":color},on:{"click":function($event){_vm.selectedColor = color}}})}),(_vm.showCustomIconPicker)?_c('button',{staticClass:"color-button p-0 fa fa-drafting-compass",attrs:{"type":"button","data-test":"set-custom-icon"},on:{"click":_vm.openIconSelector}}):_c('div'),_vm._l((_vm.colors.slice(4,8)),function(color){return _c('button',{key:color,staticClass:"color-button",style:({ backgroundColor: color }),attrs:{"type":"button","data-test":color},on:{"click":function($event){_vm.selectedColor = color}}})}),_c('button',{staticClass:"color-button toggle-picker",attrs:{"type":"button"},on:{"click":function($event){_vm.colorPickerOpen = !_vm.colorPickerOpen}}}),_c('button',{staticClass:"color-button p-0 fa fa-undo-alt",attrs:{"type":"button","data-test":"clear-color"},on:{"click":_vm.resetNodeStyling}}),(_vm.colorPickerOpen)?_c('sketch-picker',{staticClass:"color-picker",attrs:{"value":_vm.selectedColor || '#fff',"presetColors":null},on:{"input":_vm.setColorFromPicker}}):_vm._e()],2):_vm._e(),_c('b-modal',{ref:"icon-selector-modal",attrs:{"title":"Select a custom icon","cancel-title":"Reset to Default"},on:{"cancel":_vm.resetCustomIcon}},[_c('div',[_c('icon-selector',{attrs:{"value":_vm.iconName,"allow-custom":false},on:{"input":_vm.setCustomIcon}})],1)])],1)}
|
|
22813
22907
|
var crownColorDropdownvue_type_template_id_5e9576a8_scoped_true_staticRenderFns = []
|
|
22814
22908
|
|
|
@@ -22818,7 +22912,7 @@ var crownColorDropdownvue_type_template_id_5e9576a8_scoped_true_staticRenderFns
|
|
|
22818
22912
|
// EXTERNAL MODULE: ./node_modules/vue-color/dist/vue-color.min.js
|
|
22819
22913
|
var vue_color_min = __webpack_require__("c345");
|
|
22820
22914
|
|
|
22821
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
22915
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/IconSelector.vue?vue&type=template&id=2c2568be&
|
|
22822
22916
|
var IconSelectorvue_type_template_id_2c2568be_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"multiselect-icons"},[_c('b-input-group',[_c('multiselect',{ref:"multiselect",attrs:{"track-by":"value","label":"label","show-labels":false,"placeholder":_vm.placeholder,"options":_vm.list,"multiple":false,"searchable":true,"internal-search":false,"allow-empty":false},on:{"search-change":_vm.onSearch,"open":_vm.onOpen,"close":_vm.onClose},scopedSlots:_vm._u([{key:"singleLabel",fn:function(props){return [(props.option)?_c('span',[_c('i',{staticClass:"fas fa-fw",class:'fa-'+props.option.value}),_vm._v(" "+_vm._s(props.option.label)+" ")]):_vm._e()]}},{key:"option",fn:function(props){return [_c('div',{staticClass:"icon-square",on:{"mouseover":function($event){return _vm.onHover(props.option)}}},[_c('i',{staticClass:"fas fa-fw",class:'fa-'+props.option.value})])]}}]),model:{value:(_vm.icon),callback:function ($$v) {_vm.icon=$$v},expression:"icon"}},[_c('template',{slot:"noResult"},[(_vm.allowCustom)?_c('div',{staticClass:"multiselect-no-result text-muted my-2 text-center w-100"},[_c('strong',[_vm._v(_vm._s(_vm.$t('No icons found.')))]),_c('br'),_vm._v(" "+_vm._s(_vm.$t('Try a different search or'))+" "),_c('br'),_c('a',{staticClass:"text-primary link-upload",on:{"click":_vm.triggerUpload}},[_vm._v(_vm._s(_vm.$t('upload a custom icon')))]),_vm._v(". ")]):_c('div',{staticClass:"multiselect-no-result text-muted my-2 text-center w-100"},[_c('strong',[_vm._v(_vm._s(_vm.$t('No icons found.')))]),_c('br'),_vm._v(" "+_vm._s(_vm.$t('Try a different search.'))+" ")])]),_c('template',{slot:"placeholder"},[(this.file)?_c('span',[_vm._v(" "+_vm._s(_vm.$t('Custom Icon File'))+" "),(this.fileName)?_c('span',{staticClass:"text-muted"},[_vm._v("("+_vm._s(this.fileName)+")")]):_vm._e()]):_vm._e()])],2),(_vm.allowCustom)?_c('b-input-group-append',{staticClass:"multiselect-icons-upload"},[_c('file-upload-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip",value:({title: _vm.$t('Upload Custom Icon')}),expression:"{title: $t('Upload Custom Icon')}"}],ref:"fileUploadButton",attrs:{"accept":"image/png, image/svg+xml, image/gif","variant":"secondary"},model:{value:(_vm.uploadedFile),callback:function ($$v) {_vm.uploadedFile=$$v},expression:"uploadedFile"}},[_c('i',{staticClass:"fas fa-fw fa-upload"})])],1):_vm._e()],1)],1)}
|
|
22823
22917
|
var IconSelectorvue_type_template_id_2c2568be_staticRenderFns = []
|
|
22824
22918
|
|
|
@@ -22977,7 +23071,7 @@ String.prototype.titleCase = function () {
|
|
|
22977
23071
|
var vue_multiselect_min = __webpack_require__("8e5f");
|
|
22978
23072
|
var vue_multiselect_min_default = /*#__PURE__*/__webpack_require__.n(vue_multiselect_min);
|
|
22979
23073
|
|
|
22980
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
23074
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FileUploadButton.vue?vue&type=template&id=0146dc7d&
|
|
22981
23075
|
var FileUploadButtonvue_type_template_id_0146dc7d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-button',{staticClass:"file-upload-button",attrs:{"block":_vm.block,"disabled":_vm.disabled,"size":_vm.size,"variant":_vm.variant,"type":_vm.type,"tag":_vm.tag,"pill":_vm.pill,"squared":_vm.squared,"pressed":_vm.pressed},on:{"click":_vm.onClick}},[_c('b-form-file',_vm._b({ref:"fileUpload",staticClass:"file-upload-control",attrs:{"plain":"","accept":_vm.accept,"capture":_vm.capture,"multiple":_vm.multiple,"directory":_vm.directory,"no-traverse":_vm.noTraverse,"no-drop":_vm.noDrop,"file-name-formatter":_vm.fileNameFormatter},on:{"change":_vm.onChange,"input":_vm.onInput},model:{value:(_vm.file),callback:function ($$v) {_vm.file=$$v},expression:"file"}},'b-form-file',_vm.$attrs,false)),_vm._t("default")],2)}
|
|
22982
23076
|
var FileUploadButtonvue_type_template_id_0146dc7d_staticRenderFns = []
|
|
22983
23077
|
|
|
@@ -23731,7 +23825,7 @@ var crownDropdowns_component = normalizeComponent(
|
|
|
23731
23825
|
)
|
|
23732
23826
|
|
|
23733
23827
|
/* harmony default export */ var crownDropdowns = (crownDropdowns_component.exports);
|
|
23734
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
23828
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/defaultFlowButton.vue?vue&type=template&id=102c4cc4&
|
|
23735
23829
|
var defaultFlowButtonvue_type_template_id_102c4cc4_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.node.canBeDefaultFlow())?_c('crown-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],attrs:{"title":_vm.$t('Set as Default Flow'),"aria-label":"Default Flow","data-test":"default-flow","role":"menuitem","src":_vm.icon},on:{"click":_vm.click}}):_vm._e()}
|
|
23736
23830
|
var defaultFlowButtonvue_type_template_id_102c4cc4_staticRenderFns = []
|
|
23737
23831
|
|
|
@@ -24453,7 +24547,7 @@ var association_id = 'processmaker-modeler-association';
|
|
|
24453
24547
|
}]
|
|
24454
24548
|
}]
|
|
24455
24549
|
});
|
|
24456
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
24550
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/endEvent/endEvent.vue?vue&type=template&id=5b9ad491&
|
|
24457
24551
|
var endEventvue_type_template_id_5b9ad491_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdown-data":_vm.dropdownData}},_vm.$listeners))}
|
|
24458
24552
|
var endEventvue_type_template_id_5b9ad491_staticRenderFns = []
|
|
24459
24553
|
|
|
@@ -25035,7 +25129,7 @@ var nameConfigSettings = {
|
|
|
25035
25129
|
config: inspectors_idConfigSettings
|
|
25036
25130
|
}]
|
|
25037
25131
|
});
|
|
25038
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
25132
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/DocumentationFormTextArea.vue?vue&type=template&id=6b8af6d2&
|
|
25039
25133
|
var DocumentationFormTextAreavue_type_template_id_6b8af6d2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"d-flex justify-content-between align-items-end mb-2"},[_c('label',{staticClass:"m-0"},[_vm._v(_vm._s(_vm.$t(_vm.label)))]),_c('button',{directives:[{name:"b-modal",rawName:"v-b-modal.documentation-modal",modifiers:{"documentation-modal":true}}],staticClass:"btn-sm float-right",attrs:{"type":"button","data-test":"documentation-modal-button"}},[_c('i',{staticClass:"fas fa-expand"})])]),_c('form-text-area',_vm._b({staticClass:"documentation-input d-flex",attrs:{"value":_vm.textValue,"richtext":true,"data-test":"documentation-text-area","id":"documentation-editor"},on:{"input":function($event){return _vm.$emit('input', $event)}}},'form-text-area',_vm.$attrs,false)),_c('b-modal',{attrs:{"id":"documentation-modal","size":"lg","centered":"","title":_vm.$t('Description'),"header-close-content":"×","ok-only":"","ok-variant":"secondary","ok-title":"Close","no-enforce-focus":""}},[_c('form-text-area',_vm._b({staticClass:"documentation-input",attrs:{"rows":"5","value":_vm.textValue,"richtext":true,"data-test":"documentation-modal-text-area","id":"documentation-editor-modal"},on:{"input":function($event){return _vm.$emit('input', $event)}}},'form-text-area',_vm.$attrs,false))],1)],1)}
|
|
25040
25134
|
var DocumentationFormTextAreavue_type_template_id_6b8af6d2_staticRenderFns = []
|
|
25041
25135
|
|
|
@@ -25485,7 +25579,7 @@ var terminateEndEvent_id = 'processmaker-modeler-terminate-end-event';
|
|
|
25485
25579
|
});
|
|
25486
25580
|
}
|
|
25487
25581
|
}));
|
|
25488
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
25582
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/gateway/gateway.vue?vue&type=template&id=a60e4954&
|
|
25489
25583
|
var gatewayvue_type_template_id_a60e4954_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdown-data":_vm.dropdownData}},_vm.$listeners))}
|
|
25490
25584
|
var gatewayvue_type_template_id_a60e4954_staticRenderFns = []
|
|
25491
25585
|
|
|
@@ -26080,7 +26174,7 @@ var eventBasedGateway_id = 'processmaker-modeler-event-based-gateway';
|
|
|
26080
26174
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
26081
26175
|
}]
|
|
26082
26176
|
});
|
|
26083
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
26177
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/sequenceFlow/sequenceFlow.vue?vue&type=template&id=ea004378&
|
|
26084
26178
|
var sequenceFlowvue_type_template_id_ea004378_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
26085
26179
|
var sequenceFlowvue_type_template_id_ea004378_staticRenderFns = []
|
|
26086
26180
|
|
|
@@ -26442,7 +26536,7 @@ var sequenceFlow_id = 'processmaker-modeler-sequence-flow';
|
|
|
26442
26536
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
26443
26537
|
}]
|
|
26444
26538
|
});
|
|
26445
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
26539
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/messageFlow/messageFlow.vue?vue&type=template&id=2025c58d&
|
|
26446
26540
|
var messageFlowvue_type_template_id_2025c58d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',{attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering},on:{"remove-node":function($event){return _vm.$emit('remove-node', $event)},"add-node":function($event){return _vm.$emit('add-node', $event)},"save-state":function($event){return _vm.$emit('save-state', $event)}}})}
|
|
26447
26541
|
var messageFlowvue_type_template_id_2025c58d_staticRenderFns = []
|
|
26448
26542
|
|
|
@@ -26726,7 +26820,7 @@ var messageEndEvent_component = normalizeComponent(
|
|
|
26726
26820
|
)
|
|
26727
26821
|
|
|
26728
26822
|
/* harmony default export */ var messageEndEvent = (messageEndEvent_component.exports);
|
|
26729
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
26823
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/MessageSelect.vue?vue&type=template&id=cb848f88&scoped=true&
|
|
26730
26824
|
var MessageSelectvue_type_template_id_cb848f88_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('label',{staticClass:"typo__label"},[_vm._v(_vm._s(_vm.label))]),_c('div',{staticClass:"d-flex",class:{invalid: _vm.invalid}},[_c('multiselect',{attrs:{"value":_vm.selectedOption,"placeholder":_vm.$t(_vm.placeholder),"options":_vm.options,"multiple":_vm.multiple,"track-by":_vm.trackBy,"show-labels":false,"searchable":true,"internal-search":false,"label":"name","data-test":(_vm.name + ":select")},on:{"input":_vm.change,"search-change":_vm.loadOptionsDebounced,"open":_vm.loadOptions}},[_c('template',{slot:"noResult"},[_vm._t("noResult",[_vm._v(_vm._s(_vm.$t('Not found')))])],2),_c('template',{slot:"noOptions"},[_vm._t("noOptions",[_vm._v(_vm._s(_vm.$t('No Data Available')))])],2)],2),_c('div',{staticClass:"btn-group ml-1",attrs:{"role":"group"}},[_c('button',{staticClass:"btn btn-secondary btn-sm",attrs:{"type":"button","data-cy":"events-list"},on:{"click":_vm.toggleConfigMessage}},[_c('i',{staticClass:"fa fa-ellipsis-h"})])])],1),(_vm.invalid)?_c('div',{staticClass:"invalid-feedback d-block"},[_c('div',[_vm._v(" "+_vm._s(_vm.$t('Message reference is required'))+" ")])]):_vm._e(),(_vm.helper)?_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t(_vm.helper)))]):_vm._e(),(_vm.showNewMessage)?_c('div',{staticClass:"card"},[_c('div',{staticClass:"card-body p-2"},[_c('form-input',{attrs:{"label":_vm.$t('ID'),"error":_vm.getValidationErrorForNewId(_vm.messageId),"data-cy":"events-add-id"},model:{value:(_vm.messageId),callback:function ($$v) {_vm.messageId=$$v},expression:"messageId"}}),_c('form-input',{attrs:{"label":_vm.$t('Name'),"error":_vm.getValidationErrorForNewName(_vm.messageName),"data-cy":"events-add-name"},model:{value:(_vm.messageName),callback:function ($$v) {_vm.messageName=$$v},expression:"messageName"}})],1),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn-special-assignment-action btn-special-assignment-close btn btn-outline-secondary btn-sm",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":_vm.cancelAddMessage}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),_c('button',{staticClass:"btn-special-assignment-action btn btn-secondary btn-sm",attrs:{"disabled":!_vm.validNew,"type":"button","data-cy":"events-save"},on:{"click":_vm.addMessage}},[_vm._v(" "+_vm._s(_vm.$t('Save'))+" ")])])]):_vm._e(),(_vm.showEditMessage)?_c('div',{staticClass:"card"},[_c('div',{staticClass:"card-body p-2"},[_c('form-input',{attrs:{"label":_vm.$t('Name'),"error":_vm.getValidationErrorForNameUpdate(_vm.messageName),"data-cy":"events-edit-name"},model:{value:(_vm.messageName),callback:function ($$v) {_vm.messageName=$$v},expression:"messageName"}})],1),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn-special-assignment-action btn-special-assignment-close btn btn-outline-secondary btn-sm",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":_vm.cancelAddMessage}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),_c('button',{staticClass:"btn-special-assignment-action btn btn-secondary btn-sm",attrs:{"disabled":!_vm.validUpdate,"type":"button","data-cy":"events-save"},on:{"click":_vm.updateMessage}},[_vm._v(" "+_vm._s(_vm.$t('Save'))+" ")])])]):(_vm.showConfirmDelete)?_c('div',{staticClass:"card mb-3 bg-danger text-white"},[(_vm.deleteMessageUsage(_vm.deleteMessage.id))?_c('div',{staticClass:"card-body p-2"},[_vm._v(" "+_vm._s(_vm.deleteMessageUsage(_vm.deleteMessage.id))+" ")]):_c('div',{staticClass:"card-body p-2"},[_vm._v(" "+_vm._s(_vm.$t('Are you sure you want to delete this item?'))+" ("+_vm._s(_vm.deleteMessage.id)+") "+_vm._s(_vm.deleteMessage.name)+" ")]),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn btn-sm btn-light mr-2 p-1 font-xs",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":function($event){_vm.showConfirmDelete=false}}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),(!_vm.deleteMessageUsage(_vm.deleteMessage.id))?_c('button',{staticClass:"btn btn-sm btn-danger p-1 font-xs",attrs:{"type":"button","data-cy":"events-delete"},on:{"click":_vm.confirmDeleteMessage}},[_vm._v(" "+_vm._s(_vm.$t('Delete'))+" ")]):_vm._e()])]):(_vm.showListMessages && !_vm.showNewMessage && !_vm.showEditMessage)?[_c('table',{staticClass:"table table-sm table-striped",attrs:{"width":"100%"}},[_c('thead',[_c('tr',[_c('td',{attrs:{"colspan":"2","align":"right"}},[_c('button',{staticClass:"btn btn-secondary btn-sm p-1 font-xs",attrs:{"type":"button","data-cy":"events-add"},on:{"click":_vm.showAddMessage}},[_c('i',{staticClass:"fa fa-plus"}),_vm._v(" "+_vm._s(_vm.$t('Message'))+" ")])])])]),_c('tbody',_vm._l((_vm.localMessages),function(message){return _c('tr',{key:("message-" + (message.id))},[_c('td',[_c('b-badge',{attrs:{"variant":"secondary"}},[_vm._v(_vm._s(message.id))]),_vm._v(" "+_vm._s(message.name)+" ")],1),_c('td',{attrs:{"align":"right"}},[_c('button',{staticClass:"btn-link ml-2",on:{"click":function($event){return _vm.editMessage(message)}}},[_c('i',{staticClass:"fa fa-pen",attrs:{"data-cy":"events-edit"}})]),_c('button',{staticClass:"btn-link ml-2",on:{"click":function($event){return _vm.removeMessage(message)}}},[_c('i',{staticClass:"fa fa-trash",attrs:{"data-cy":"events-remove"}})])])])}),0)])]:_vm._e()],2)}
|
|
26731
26825
|
var MessageSelectvue_type_template_id_cb848f88_scoped_true_staticRenderFns = []
|
|
26732
26826
|
|
|
@@ -27288,7 +27382,7 @@ var signalEndEvent_component = normalizeComponent(
|
|
|
27288
27382
|
)
|
|
27289
27383
|
|
|
27290
27384
|
/* harmony default export */ var signalEndEvent = (signalEndEvent_component.exports);
|
|
27291
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
27385
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/SignalSelect.vue?vue&type=template&id=511b4694&scoped=true&
|
|
27292
27386
|
var SignalSelectvue_type_template_id_511b4694_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('label',{staticClass:"typo__label"},[_vm._v(_vm._s(_vm.label))]),_c('div',{staticClass:"d-flex",class:{invalid: _vm.invalid}},[_c('multiselect',{attrs:{"value":_vm.selectedOption,"placeholder":_vm.$t(_vm.placeholder),"options":_vm.options,"multiple":_vm.multiple,"track-by":_vm.trackBy,"show-labels":false,"searchable":true,"internal-search":false,"label":"name","data-test":(_vm.name + ":select")},on:{"input":_vm.change,"search-change":_vm.loadOptions,"open":_vm.loadOptions}},[_c('template',{slot:"noResult"},[_vm._t("noResult",[_vm._v(_vm._s(_vm.$t('Not found')))])],2),_c('template',{slot:"noOptions"},[_vm._t("noOptions",[_vm._v(_vm._s(_vm.$t('No Data Available')))])],2)],2),(_vm.canEdit)?_c('div',{staticClass:"btn-group ml-1",attrs:{"role":"group"}},[_c('button',{staticClass:"btn btn-secondary btn-sm",attrs:{"type":"button","data-cy":"events-list"},on:{"click":_vm.toggleConfigSignal}},[_c('i',{staticClass:"fa fa-ellipsis-h"})])]):_vm._e()],1),(_vm.invalid)?_c('div',{staticClass:"invalid-feedback d-block"},[_c('div',[_vm._v(" "+_vm._s(_vm.$t('Signal reference is required'))+" ")])]):_vm._e(),(_vm.helper)?_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t(_vm.helper)))]):_vm._e(),(_vm.showNewSignal)?_c('div',{staticClass:"card"},[_c('div',{staticClass:"card-body p-2"},[_c('form-input',{attrs:{"label":_vm.$t('ID'),"error":_vm.getValidationErrorForNewId(_vm.signalId),"data-cy":"events-add-id"},model:{value:(_vm.signalId),callback:function ($$v) {_vm.signalId=$$v},expression:"signalId"}}),_c('form-input',{attrs:{"label":_vm.$t('Name'),"error":_vm.getValidationErrorForNewName(_vm.signalName),"data-cy":"events-add-name"},model:{value:(_vm.signalName),callback:function ($$v) {_vm.signalName=$$v},expression:"signalName"}})],1),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn-special-assignment-action btn-special-assignment-close btn btn-outline-secondary btn-sm",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":_vm.cancelAddSignal}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),_c('button',{staticClass:"btn-special-assignment-action btn btn-secondary btn-sm",attrs:{"disabled":!_vm.validNew,"type":"button","data-cy":"events-save"},on:{"click":_vm.addSignal}},[_vm._v(" "+_vm._s(_vm.$t('Save'))+" ")])])]):_vm._e(),(_vm.showEditSignal)?_c('div',{staticClass:"card"},[_c('div',{staticClass:"card-body p-2"},[_c('form-input',{attrs:{"label":_vm.$t('Name'),"error":_vm.getValidationErrorForNameUpdate(_vm.signalName),"data-cy":"events-edit-name"},model:{value:(_vm.signalName),callback:function ($$v) {_vm.signalName=$$v},expression:"signalName"}})],1),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn-special-assignment-action btn-special-assignment-close btn btn-outline-secondary btn-sm",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":_vm.cancelAddSignal}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),_c('button',{staticClass:"btn-special-assignment-action btn btn-secondary btn-sm",attrs:{"disabled":!_vm.validUpdate,"type":"button","data-cy":"events-save"},on:{"click":_vm.updateSignal}},[_vm._v(" "+_vm._s(_vm.$t('Save'))+" ")])])]):(_vm.showConfirmDelete)?_c('div',{staticClass:"card mb-3 bg-danger text-white"},[(_vm.deleteSignalUsage(_vm.deleteSignal.id))?_c('div',{staticClass:"card-body p-2"},[_vm._v(" "+_vm._s(_vm.deleteSignalUsage(_vm.deleteSignal.id))+" ")]):_c('div',{staticClass:"card-body p-2"},[_vm._v(" "+_vm._s(_vm.$t('Are you sure you want to delete this item?'))+" ("+_vm._s(_vm.deleteSignal.id)+") "+_vm._s(_vm.deleteSignal.name)+" ")]),_c('div',{staticClass:"card-footer text-right p-2"},[_c('button',{staticClass:"btn btn-sm btn-light mr-2 p-1 font-xs",attrs:{"type":"button","data-cy":"events-cancel"},on:{"click":function($event){_vm.showConfirmDelete=false}}},[_vm._v(" "+_vm._s(_vm.$t('Cancel'))+" ")]),(!_vm.deleteSignalUsage(_vm.deleteSignal.id))?_c('button',{staticClass:"btn btn-sm btn-danger p-1 font-xs",attrs:{"type":"button","data-cy":"events-delete"},on:{"click":_vm.confirmDeleteSignal}},[_vm._v(" "+_vm._s(_vm.$t('Save'))+" ")]):_vm._e()])]):(_vm.showListSignals && !_vm.showNewSignal && !_vm.showEditSignal)?[_c('table',{staticClass:"table table-sm table-striped",attrs:{"width":"100%"}},[_c('thead',[_c('tr',[_c('td',{attrs:{"colspan":"2","align":"right"}},[_c('button',{staticClass:"btn btn-secondary btn-sm p-1 font-xs",attrs:{"type":"button","data-cy":"events-add"},on:{"click":_vm.showAddSignal}},[_c('i',{staticClass:"fa fa-plus"}),_vm._v(" "+_vm._s(_vm.$t('Signal'))+" ")])])])]),_c('tbody',_vm._l((_vm.localSignals),function(signal){return _c('tr',{key:("signal-" + (signal.id))},[_c('td',[_c('b-badge',{attrs:{"variant":"secondary"}},[_vm._v(_vm._s(signal.id))]),_vm._v(" "+_vm._s(signal.name)+" ")],1),_c('td',{attrs:{"align":"right"}},[_c('button',{staticClass:"btn-link ml-2",on:{"click":function($event){return _vm.editSignal(signal)}}},[_c('i',{staticClass:"fa fa-pen",attrs:{"data-cy":"events-edit"}})]),_c('button',{staticClass:"btn-link ml-2",on:{"click":function($event){return _vm.removeSignal(signal)}}},[_c('i',{staticClass:"fa fa-trash",attrs:{"data-cy":"events-remove"}})])])])}),0)])]:_vm._e()],2)}
|
|
27293
27387
|
var SignalSelectvue_type_template_id_511b4694_scoped_true_staticRenderFns = []
|
|
27294
27388
|
|
|
@@ -27814,7 +27908,7 @@ var signalEndEvent_id = 'processmaker-modeler-signal-end-event';
|
|
|
27814
27908
|
}]
|
|
27815
27909
|
}]
|
|
27816
27910
|
})));
|
|
27817
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
27911
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/baseStartEvent/baseStartEvent.vue?vue&type=template&id=1aff2df2&
|
|
27818
27912
|
var baseStartEventvue_type_template_id_1aff2df2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdown-data":_vm.dropdownData}},_vm.$listeners))}
|
|
27819
27913
|
var baseStartEventvue_type_template_id_1aff2df2_staticRenderFns = []
|
|
27820
27914
|
|
|
@@ -28240,7 +28334,7 @@ var startTimerEvent_component = normalizeComponent(
|
|
|
28240
28334
|
)
|
|
28241
28335
|
|
|
28242
28336
|
/* harmony default export */ var startTimerEvent = (startTimerEvent_component.exports);
|
|
28243
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
28337
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/TimerExpression.vue?vue&type=template&id=66e578ba&scoped=true&
|
|
28244
28338
|
var TimerExpressionvue_type_template_id_66e578ba_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"form-group"},[_c('form-date-picker',{staticClass:"p-0",attrs:{"emit-iso":true,"data-test":"start-date-picker","data-format":"datetime","label":_vm.$t('Start date'),"placeholder":_vm.$t('Start date'),"control-class":"form-control","value":_vm.startDate,"helper":_vm.$t(_vm.startDateHelper)},on:{"input":_vm.setStartDate}}),(_vm.hasRepeat)?[_c('label',{},[_vm._v(_vm._s(_vm.$t(_vm.repeatLabel)))]),_c('b-form-group',{staticClass:"m-0 mb-3 p-0"},[_c('b-form-input',{staticClass:"d-inline-block w-50",attrs:{"type":"number","min":"1","max":"99","data-test":"repeat-input"},model:{value:(_vm.repeat),callback:function ($$v) {_vm.repeat=$$v},expression:"repeat"}}),_c('b-form-select',{staticClass:"d-inline-block w-50 periodicity",attrs:{"data-test":"repeat-on-select"},model:{value:(_vm.periodicity),callback:function ($$v) {_vm.periodicity=$$v},expression:"periodicity"}},[_c('option',{attrs:{"value":"day"}},[_vm._v(_vm._s(_vm.$t('day')))]),_c('option',{attrs:{"value":"week"}},[_vm._v(_vm._s(_vm.$t('week')))]),_c('option',{attrs:{"value":"month"}},[_vm._v(_vm._s(_vm.$t('month')))]),_c('option',{attrs:{"value":"year"}},[_vm._v(_vm._s(_vm.$t('year')))])]),_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t(_vm.repeatHelper)))])],1)]:_vm._e(),(_vm.isWeeklyPeriodSelected)?_c('weekday-select',{attrs:{"selectWeekdays":_vm.selectedWeekdays,"periodicityValue":_vm.periodicityValue,"repeat":_vm.repeat,"start-date":_vm.startDate,"end-date":_vm.endDate,"ends":_vm.ends,"times":_vm.times},model:{value:(_vm.expression),callback:function ($$v) {_vm.expression=$$v},expression:"expression"}}):_vm._e(),(_vm.hasEnds)?[_c('label',{staticClass:"mt-1 "},[_vm._v(_vm._s(_vm.$t('Ends')))]),_c('div',[_c('b-form-group',{staticClass:"m-0 mb-2"},[_c('b-form-radio',{attrs:{"data-test":"ends-never","name":"optradio","value":"never"},model:{value:(_vm.ends),callback:function ($$v) {_vm.ends=$$v},expression:"ends"}},[_vm._v(_vm._s(_vm.$t('Never')))])],1),_c('b-form-group',{staticClass:"p-0 mb-1",attrs:{"description":((_vm.$t('Click On to select a date')) + ".")}},[_c('b-form-radio',{staticClass:"pl-3 ml-2 mb-1",attrs:{"name":"optradio","value":"ondate","data-test":"ends-on"},model:{value:(_vm.ends),callback:function ($$v) {_vm.ends=$$v},expression:"ends"}},[_vm._v(_vm._s(_vm.$t('On')))]),_c('form-date-picker',{staticClass:"form-date-picker p-0 m-0",class:{'date-disabled' : _vm.ends !== 'ondate'},attrs:{"emit-iso":true,"data-test":"end-date-picker","disabled":_vm.ends !== 'ondate',"placeholder":_vm.$t('End date'),"data-format":"datetime","control-class":"form-control","value":_vm.endDate,"name":"end date"},on:{"input":_vm.setEndDate}})],1),_c('b-form-group',{staticClass:"mt-0 p-0",attrs:{"description":((_vm.$t('Click After to enter how many occurrences to end the timer control')) + ".")}},[_c('b-form-radio',{staticClass:"pl-3 ml-2 mb-1",attrs:{"data-test":"ends-after","name":"optradio","value":"after"},model:{value:(_vm.ends),callback:function ($$v) {_vm.ends=$$v},expression:"ends"}},[_vm._v(_vm._s(_vm.$t('After')))]),_c('b-form-input',{staticClass:"w-25 pl-2 pr-1 d-inline-block",attrs:{"data-test":"ends-after-input","type":"number","min":"0","max":"99","disabled":_vm.ends !== 'after'},model:{value:(_vm.times),callback:function ($$v) {_vm.times=$$v},expression:"times"}}),_c('b-form-input',{staticClass:" w-75 d-inline-block occurrences-text",attrs:{"readonly":_vm.ends !== 'after',"value":_vm.$t('occurrences')}})],1)],1)]:_vm._e()],2)}
|
|
28245
28339
|
var TimerExpressionvue_type_template_id_66e578ba_scoped_true_staticRenderFns = []
|
|
28246
28340
|
|
|
@@ -28253,7 +28347,7 @@ var es_string_repeat = __webpack_require__("38cf");
|
|
|
28253
28347
|
// EXTERNAL MODULE: external "luxon"
|
|
28254
28348
|
var external_luxon_ = __webpack_require__("5b4c");
|
|
28255
28349
|
|
|
28256
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
28350
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/WeekdaySelect.vue?vue&type=template&id=5e7ed8dc&scoped=true&
|
|
28257
28351
|
var WeekdaySelectvue_type_template_id_5e7ed8dc_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.cycleManager.isWeeklyPeriodSelected())?_c('div',{staticClass:"mb-2"},[_c('label',{},[_vm._v(_vm._s(_vm.$t(_vm.weekLabel)))]),_c('div',_vm._l((_vm.weekdays),function(day){return _c('span',{key:day.day,staticClass:"badge badge-pill weekday mb-1",class:_vm.cycleManager.weekdayStyle(day),attrs:{"data-test":("day-" + (day.day))},on:{"click":function($event){return _vm.clickWeekDay(day)}}},[_vm._v(" "+_vm._s(_vm.$t(day.initial))+" ")])}),0),(_vm.repeatOnValidationError)?_c('small',{staticClass:"text-danger"},[_vm._v(_vm._s(_vm.repeatOnValidationError))]):_vm._e(),_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t(_vm.periodicityHelper)))])]):_vm._e()}
|
|
28258
28352
|
var WeekdaySelectvue_type_template_id_5e7ed8dc_scoped_true_staticRenderFns = []
|
|
28259
28353
|
|
|
@@ -29066,7 +29160,7 @@ var startTimerEvent_id = 'processmaker-modeler-start-timer-event';
|
|
|
29066
29160
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
29067
29161
|
}]
|
|
29068
29162
|
}));
|
|
29069
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29163
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/intermediateEvent/intermediateEvent.vue?vue&type=template&id=f999f2fc&
|
|
29070
29164
|
var intermediateEventvue_type_template_id_f999f2fc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdownData":_vm.dropdownData}},_vm.$listeners))}
|
|
29071
29165
|
var intermediateEventvue_type_template_id_f999f2fc_staticRenderFns = []
|
|
29072
29166
|
|
|
@@ -29290,14 +29384,14 @@ var intermediateTimerEvent_component = normalizeComponent(
|
|
|
29290
29384
|
)
|
|
29291
29385
|
|
|
29292
29386
|
/* harmony default export */ var intermediateTimerEvent = (intermediateTimerEvent_component.exports);
|
|
29293
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29387
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/IntermediateTimer.vue?vue&type=template&id=1dece816&
|
|
29294
29388
|
var IntermediateTimervue_type_template_id_1dece816_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('label',[_vm._v(_vm._s(_vm.$t('Type')))]),_c('b-input-group',[_c('b-form-select',{attrs:{"value":_vm.timerPropertyName,"data-test":"intermediateTypeSelect"},on:{"change":_vm.changeType}},[_c('option',{attrs:{"value":"timeDuration"}},[_vm._v(_vm._s(_vm.$t('Duration')))]),_c('option',{attrs:{"value":"timeDate"}},[_vm._v(_vm._s(_vm.$t('Date/Time')))]),_c('option',{attrs:{"value":"timeCycle"}},[_vm._v(_vm._s(_vm.$t('Cycle')))])])],1),_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t(_vm.typeHelper)))]),_c(_vm.component,{tag:"component",attrs:{"has-ends":false,"repeat-label":"Wait for","week-label":"Every"},model:{value:(_vm.timerProperty),callback:function ($$v) {_vm.timerProperty=$$v},expression:"timerProperty"}})],1)}
|
|
29295
29389
|
var IntermediateTimervue_type_template_id_1dece816_staticRenderFns = []
|
|
29296
29390
|
|
|
29297
29391
|
|
|
29298
29392
|
// CONCATENATED MODULE: ./src/components/inspectors/IntermediateTimer.vue?vue&type=template&id=1dece816&
|
|
29299
29393
|
|
|
29300
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29394
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/DurationExpression.vue?vue&type=template&id=f35728f4&
|
|
29301
29395
|
var DurationExpressionvue_type_template_id_f35728f4_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"mt-3"},[_c('label',[_vm._v(_vm._s(_vm.$t('Duration')))]),_c('b-input-group',[_c('b-form-input',{staticClass:"form-control control repeat",attrs:{"type":"number","min":"1","data-test":_vm.repeatInput},model:{value:(_vm.repeat),callback:function ($$v) {_vm.repeat=$$v},expression:"repeat"}}),_c('b-input-group-append',[_c('b-form-select',{model:{value:(_vm.periodicity),callback:function ($$v) {_vm.periodicity=$$v},expression:"periodicity"}},_vm._l((_vm.periods),function(period){return _c('option',{key:period.name,domProps:{"value":period}},[_vm._v(_vm._s(_vm.$t(period.name)))])}),0)],1),_c('small',{staticClass:"form-text text-muted"},[_vm._v(_vm._s(_vm.$t('Select the duration of the timer')))])],1)],1)}
|
|
29302
29396
|
var DurationExpressionvue_type_template_id_f35728f4_staticRenderFns = []
|
|
29303
29397
|
|
|
@@ -29445,7 +29539,7 @@ var DurationExpression_component = normalizeComponent(
|
|
|
29445
29539
|
)
|
|
29446
29540
|
|
|
29447
29541
|
/* harmony default export */ var DurationExpression = (DurationExpression_component.exports);
|
|
29448
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29542
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/DateTimeExpression.vue?vue&type=template&id=c5f30932&
|
|
29449
29543
|
var DateTimeExpressionvue_type_template_id_c5f30932_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"mt-3"},[_c('form-date-picker',{staticClass:"p-0",attrs:{"emit-iso":true,"data-format":"datetime","label":_vm.$t('Wait until specific date/time'),"control-class":"form-control","value":_vm.convertFromUTC(_vm.value),"data-test":"date-picker","helper":"Select the date to trigger this element"},on:{"input":_vm.emitValue}})],1)}
|
|
29450
29544
|
var DateTimeExpressionvue_type_template_id_c5f30932_staticRenderFns = []
|
|
29451
29545
|
|
|
@@ -29520,7 +29614,7 @@ var DateTimeExpression_component = normalizeComponent(
|
|
|
29520
29614
|
)
|
|
29521
29615
|
|
|
29522
29616
|
/* harmony default export */ var DateTimeExpression = (DateTimeExpression_component.exports);
|
|
29523
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29617
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/CycleExpression.vue?vue&type=template&id=ca345eea&
|
|
29524
29618
|
var CycleExpressionvue_type_template_id_ca345eea_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"mt-3"},[_c('label',[_vm._v(_vm._s(_vm.$t('Recurring loop repeats at time interval set below')))]),_c('b-input-group',[_c('b-form-input',{staticClass:"form-control control repeat",attrs:{"type":"number","min":"1","data-test":_vm.repeatInput},model:{value:(_vm.repeat),callback:function ($$v) {_vm.repeat=$$v},expression:"repeat"}}),_c('b-input-group-append',[_c('b-form-select',{attrs:{"data-test":"periods"},model:{value:(_vm.periodicity),callback:function ($$v) {_vm.periodicity=$$v},expression:"periodicity"}},_vm._l((_vm.periods),function(period){return _c('option',{key:period.name,domProps:{"value":period}},[_vm._v(_vm._s(_vm.$t(period.name)))])}),0)],1)],1),(_vm.periodicity && _vm.periodicity.isWeek)?_c('weekday-select',{staticClass:"pt-3",attrs:{"selectWeekdays":_vm.selectedWeekdays,"periodicityValue":_vm.periodicity.value,"repeat":_vm.repeat},model:{value:(_vm.expression),callback:function ($$v) {_vm.expression=$$v},expression:"expression"}}):_vm._e()],1)}
|
|
29525
29619
|
var CycleExpressionvue_type_template_id_ca345eea_staticRenderFns = []
|
|
29526
29620
|
|
|
@@ -30505,7 +30599,7 @@ var intermediateConditionalCatchEvent_id = 'processmaker-modeler-intermediate-co
|
|
|
30505
30599
|
}]
|
|
30506
30600
|
}]
|
|
30507
30601
|
})));
|
|
30508
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
30602
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/task/task.vue?vue&type=template&id=39ddacac&
|
|
30509
30603
|
var taskvue_type_template_id_39ddacac_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"boundary-event-dropdown-data":_vm.boundaryEventDropdownData,"dropdown-data":_vm.dropdownData,"showCustomIconPicker":true,"iconName":this.iconName},on:{"set-custom-icon-name":_vm.setCustomIconName,"reset-custom-icon-name":_vm.resetCustomIconName}},_vm.$listeners))}
|
|
30510
30604
|
var taskvue_type_template_id_39ddacac_staticRenderFns = []
|
|
30511
30605
|
|
|
@@ -30892,7 +30986,7 @@ var userTask_component = normalizeComponent(
|
|
|
30892
30986
|
)
|
|
30893
30987
|
|
|
30894
30988
|
/* harmony default export */ var userTask = (userTask_component.exports);
|
|
30895
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
30989
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/MarkerFlags.vue?vue&type=template&id=66aabb37&scoped=true&
|
|
30896
30990
|
var MarkerFlagsvue_type_template_id_66aabb37_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('b-form-group',[_c('b-form-checkbox',{attrs:{"data-test":"for-compensation","name":"for-compensation"},model:{value:(_vm.isForCompensation),callback:function ($$v) {_vm.isForCompensation=$$v},expression:"isForCompensation"}},[_vm._v(_vm._s(_vm.$t('For Compensation')))])],1)],1)}
|
|
30897
30991
|
var MarkerFlagsvue_type_template_id_66aabb37_scoped_true_staticRenderFns = []
|
|
30898
30992
|
|
|
@@ -30979,7 +31073,7 @@ var MarkerFlags_component = normalizeComponent(
|
|
|
30979
31073
|
}
|
|
30980
31074
|
}]
|
|
30981
31075
|
});
|
|
30982
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
31076
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/LoopCharacteristics.vue?vue&type=template&id=063db59d&scoped=true&
|
|
30983
31077
|
var LoopCharacteristicsvue_type_template_id_063db59d_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('b-form-group',{attrs:{"label":_vm.$t('Loop Characteristics')}},[_c('b-form-radio-group',{attrs:{"id":"radio-group-loop-characteristics","options":_vm.loopOptions,"stacked":"","name":"radio-group-loop-characteristics"},model:{value:(_vm.loopType),callback:function ($$v) {_vm.loopType=$$v},expression:"loopType"}})],1),(
|
|
30984
31078
|
_vm.loopType === 'parallel_mi' ||
|
|
30985
31079
|
_vm.loopType === 'sequential_mi'
|
|
@@ -31844,7 +31938,7 @@ function handleMarkerFlagsValue(markerFlags, node, setNodeProp) {
|
|
|
31844
31938
|
/* harmony default export */ var nodes_userTask = (_objectSpread2(_objectSpread2({}, nodes_task), {}, {
|
|
31845
31939
|
component: userTask
|
|
31846
31940
|
}));
|
|
31847
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
31941
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/subProcess/subProcess.vue?vue&type=template&id=5edb50c2&
|
|
31848
31942
|
var subProcessvue_type_template_id_5edb50c2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"boundary-event-dropdown-data":_vm.boundaryEventDropdownData,"dropdown-data":_vm.dropdownData,"showCustomIconPicker":true,"iconName":this.iconName},on:{"set-custom-icon-name":_vm.setCustomIconName,"reset-custom-icon-name":_vm.resetCustomIconName}},_vm.$listeners)),_c('b-modal',{ref:"subprocess-modal",attrs:{"title":("Previewing '" + _vm.subprocessName + "'")},scopedSlots:_vm._u([{key:"modal-footer",fn:function(){return [_c('a',{attrs:{"href":_vm.subprocessLink,"target":"_blank","data-test":"modal-process-link"}},[_vm._v(" Open subprocess in new window "),_c('i',{staticClass:"ml-1 fas fa-external-link-alt"})])]},proxy:true}])},[(_vm.subProcessSvg)?_c('div',{staticClass:"text-center",domProps:{"innerHTML":_vm._s(_vm.subProcessSvg)}}):(_vm.failedToLoadPreview)?_c('div',[_vm._v("Could not load preview")]):_c('div',[_c('i',{staticClass:"fas fa-spinner fa-spin"}),_vm._v(" Loading process preview...")])]),_c('b-modal',{ref:"no-subprocess-modal",attrs:{"title":"No subprocess selected","hide-footer":true}},[_vm._v(" Please select a subprocess to view it. ")])],1)}
|
|
31849
31943
|
var subProcessvue_type_template_id_5edb50c2_staticRenderFns = []
|
|
31850
31944
|
|
|
@@ -32096,7 +32190,7 @@ var subProcess_component = normalizeComponent(
|
|
|
32096
32190
|
)
|
|
32097
32191
|
|
|
32098
32192
|
/* harmony default export */ var subProcess = (subProcess_component.exports);
|
|
32099
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32193
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/subProcess/SubProcessFormSelect.vue?vue&type=template&id=4347e95e&
|
|
32100
32194
|
var SubProcessFormSelectvue_type_template_id_4347e95e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('form-multi-select',{staticClass:"p-0 mb-2",attrs:{"label":_vm.$t('Process'),"name":"Process","helper":_vm.$t('Select which Process this element calls'),"showLabels":false,"allow-empty":false,"disabled":_vm.processList.length === 0,"options":_vm.processList,"optionContent":"name","validation":"required"},on:{"open":_vm.loadProcesses},model:{value:(_vm.selectedProcess),callback:function ($$v) {_vm.selectedProcess=$$v},expression:"selectedProcess"}}),(_vm.selectedProcess)?_c('form-multi-select',{staticClass:"p-0 mb-2",attrs:{"label":_vm.$t('Start Event'),"name":"StartEvent","disabled":_vm.startEventList.length === 0,"allow-empty":false,"showLabels":false,"options":_vm.startEventList,"optionContent":"name","validation":"required"},model:{value:(_vm.selectedStartEvent),callback:function ($$v) {_vm.selectedStartEvent=$$v},expression:"selectedStartEvent"}}):_vm._e(),(_vm.selectedProcess)?_c('a',{attrs:{"href":("/modeler/" + (_vm.selectedProcess.id)),"target":"_blank"}},[_vm._v(" "+_vm._s(_vm.$t('Open Process'))+" "),_c('i',{staticClass:"ml-1 fas fa-external-link-alt"})]):_vm._e()],1)}
|
|
32101
32195
|
var SubProcessFormSelectvue_type_template_id_4347e95e_staticRenderFns = []
|
|
32102
32196
|
|
|
@@ -32529,7 +32623,7 @@ var scriptTask_id = 'processmaker-modeler-script-task';
|
|
|
32529
32623
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
32530
32624
|
}]
|
|
32531
32625
|
}));
|
|
32532
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32626
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/textAnnotation/textAnnotation.vue?vue&type=template&id=2702f9d9&
|
|
32533
32627
|
var textAnnotationvue_type_template_id_2702f9d9_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
32534
32628
|
var textAnnotationvue_type_template_id_2702f9d9_staticRenderFns = []
|
|
32535
32629
|
|
|
@@ -32738,7 +32832,7 @@ var textAnnotation_id = 'processmaker-modeler-text-annotation';
|
|
|
32738
32832
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
32739
32833
|
}]
|
|
32740
32834
|
});
|
|
32741
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32835
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/pool/pool.vue?vue&type=template&id=6ad64eb6&
|
|
32742
32836
|
var poolvue_type_template_id_6ad64eb6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners),[_c('add-lane-above-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",modifiers:{"hover":true,"viewport":true,"d50":true}}],staticClass:"crown-config__icon",attrs:{"title":_vm.$t('Lane Above')},on:{"click":_vm.addLaneAbove}}),_c('add-lane-below-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",modifiers:{"hover":true,"viewport":true,"d50":true}}],staticClass:"crown-config__icon",attrs:{"title":_vm.$t('Lane Below')},on:{"click":_vm.addLaneBelow}})],1)}
|
|
32743
32837
|
var poolvue_type_template_id_6ad64eb6_staticRenderFns = []
|
|
32744
32838
|
|
|
@@ -33331,7 +33425,7 @@ var minLaneHeight = 100;
|
|
|
33331
33425
|
});
|
|
33332
33426
|
}
|
|
33333
33427
|
});
|
|
33334
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33428
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/poolLane/poolLane.vue?vue&type=template&id=077a384c&
|
|
33335
33429
|
var poolLanevue_type_template_id_077a384c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
33336
33430
|
var poolLanevue_type_template_id_077a384c_staticRenderFns = []
|
|
33337
33431
|
|
|
@@ -33491,7 +33585,7 @@ var poolLane_component = normalizeComponent(
|
|
|
33491
33585
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
33492
33586
|
}]
|
|
33493
33587
|
});
|
|
33494
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33588
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/addLaneAboveButton.vue?vue&type=template&id=324d03c6&
|
|
33495
33589
|
var addLaneAboveButtonvue_type_template_id_324d03c6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-button',_vm._g({attrs:{"id":"lane-above-button","aria-label":"Add lane above icon","src":_vm.laneAboveIcon,"width":25}},_vm.$listeners))}
|
|
33496
33590
|
var addLaneAboveButtonvue_type_template_id_324d03c6_staticRenderFns = []
|
|
33497
33591
|
|
|
@@ -33547,7 +33641,7 @@ var addLaneAboveButton_component = normalizeComponent(
|
|
|
33547
33641
|
)
|
|
33548
33642
|
|
|
33549
33643
|
/* harmony default export */ var addLaneAboveButton = (addLaneAboveButton_component.exports);
|
|
33550
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33644
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/crown/crownButtons/addLaneBelowButton.vue?vue&type=template&id=5badb43e&
|
|
33551
33645
|
var addLaneBelowButtonvue_type_template_id_5badb43e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-button',_vm._g({attrs:{"id":"lane-below-button","aria-label":"Add lane below icon","src":_vm.laneBelowIcon,"width":25}},_vm.$listeners))}
|
|
33552
33646
|
var addLaneBelowButtonvue_type_template_id_5badb43e_staticRenderFns = []
|
|
33553
33647
|
|
|
@@ -33628,7 +33722,7 @@ var Pool = external_jointjs_["shapes"].standard.Rectangle.define('processmaker.m
|
|
|
33628
33722
|
}
|
|
33629
33723
|
});
|
|
33630
33724
|
/* harmony default export */ var pool_poolShape = (Pool);
|
|
33631
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33725
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/dataObject/dataObject.vue?vue&type=template&id=87c6177c&
|
|
33632
33726
|
var dataObjectvue_type_template_id_87c6177c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdown-data":_vm.dropdownData}},_vm.$listeners))}
|
|
33633
33727
|
var dataObjectvue_type_template_id_87c6177c_staticRenderFns = []
|
|
33634
33728
|
|
|
@@ -33768,7 +33862,7 @@ var dataObject_id = 'processmaker-modeler-data-object';
|
|
|
33768
33862
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
33769
33863
|
}]
|
|
33770
33864
|
});
|
|
33771
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33865
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/dataStore/dataStore.vue?vue&type=template&id=a13445d0&
|
|
33772
33866
|
var dataStorevue_type_template_id_a13445d0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering,"dropdown-data":_vm.dropdownData}},_vm.$listeners))}
|
|
33773
33867
|
var dataStorevue_type_template_id_a13445d0_staticRenderFns = []
|
|
33774
33868
|
|
|
@@ -34857,7 +34951,7 @@ var pool_component = normalizeComponent(
|
|
|
34857
34951
|
}, documentationAccordionConfig, advancedAccordionConfig]
|
|
34858
34952
|
}]
|
|
34859
34953
|
});
|
|
34860
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34954
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/validationStatus/ValidationStatus.vue?vue&type=template&id=1ad192c7&scoped=true&
|
|
34861
34955
|
var ValidationStatusvue_type_template_id_1ad192c7_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-card-footer',{staticClass:"p-0 border-0 statusbar d-flex align-items-center justify-content-end pr-3 pl-3 border-top"},[_vm._t("default"),_c('b-btn',{staticClass:"mr-auto",attrs:{"disabled":!_vm.xmlManager,"variant":"secondary","size":"sm","data-test":"downloadXMLBtn"},on:{"click":function($event){_vm.xmlManager && _vm.xmlManager.download()}}},[_c('i',{staticClass:"fas fa-download mr-1"}),_vm._v(" "+_vm._s(_vm.$t('Download BPMN'))+" ")]),_c('div',{staticClass:"status-bar-container d-flex align-items-center justify-content-end"},[(_vm.autoValidate)?[(_vm.numberOfProblemsToDisplay === 0)?_c('button',{staticClass:"btn btn-light",attrs:{"type":"button","data-test":"validation-list-valid","disabled":true}},[_vm._v(" "+_vm._s(_vm.$t('BPMN Valid'))+" "),_c('span',{staticClass:"badge badge-success badge-pill"},[_c('font-awesome-icon',{attrs:{"icon":_vm.faCheck}})],1)]):_c('button',{staticClass:"btn btn-light",attrs:{"type":"button","data-test":"validation-list-toggle"},on:{"click":function($event){_vm.shouldDisplayProblemsPanel = !_vm.shouldDisplayProblemsPanel}}},[_vm._v(" "+_vm._s(_vm.$t('BPMN Issues'))+" "),_c('span',{staticClass:"badge badge-primary badge-pill"},[_vm._v(" "+_vm._s(_vm.numberOfProblemsToDisplay)+" ")]),_c('font-awesome-icon',{staticClass:"ml-3",attrs:{"icon":_vm.chevronIcon}})],1)]:_vm._e(),_c('span',{staticClass:"divider"}),_c('b-form-checkbox',{staticClass:"h-100 d-flex align-items-center",attrs:{"data-test":"validation-toggle","switch":""},model:{value:(_vm.autoValidate),callback:function ($$v) {_vm.autoValidate=$$v},expression:"autoValidate"}},[_vm._v(" "+_vm._s(_vm.$t('Auto validate'))+" ")]),_c('transition',{attrs:{"name":"slide"}},[(_vm.isProblemsPanelDisplayed)?_c('div',{staticClass:"validation-container position-absolute text-left"},[_c('dl',{staticClass:"validation-container__list align-items-baseline",attrs:{"data-test":"validation-list"}},[_vm._l((_vm.errorList),function(error,index){return [_c('dt',{key:((error.errorId) + "_" + index),staticClass:"text-capitalize"},[_c('font-awesome-icon',{staticClass:"status-bar-container__status-icon ml-1 mr-1 mt-1",style:({ color: _vm.isErrorCategory(error) ? _vm.errorColor : _vm.warningColor }),attrs:{"icon":_vm.isErrorCategory(error) ? _vm.faTimesCircle: _vm.faExclamationTriangle}}),_vm._v(" "+_vm._s(error.errorKey)+" ")],1),_c('dd',{key:((error.errorId) + "_" + index + "_dd")},[_c('p',{staticClass:"pl-4 mb-0 font-italic"},[_vm._v(_vm._s(error.message)+".")]),(error.id)?_c('p',{staticClass:"pl-4 mb-0"},[_c('span',{staticClass:"font-weight-bold"},[_vm._v(_vm._s(_vm.$t('Node ID'))+":")]),_vm._v(" "+_vm._s(error.id))]):_vm._e()])]}),_vm._l((_vm.warnings),function(warning,index){return [_c('dt',{key:warning.title + index,staticClass:"text-capitalize"},[_c('font-awesome-icon',{staticClass:"status-bar-container__status-icon ml-1 mr-1 mt-1",style:({ color: _vm.warningColor }),attrs:{"icon":_vm.faExclamationTriangle}}),_vm._v(" "+_vm._s(warning.title)+" ")],1),_c('dd',{key:warning.title + index + '__dd',staticClass:"font-italic pl-4"},[_vm._v(_vm._s(warning.text))])]})],2)]):_vm._e()])],2)],2)}
|
|
34862
34956
|
var ValidationStatusvue_type_template_id_1ad192c7_scoped_true_staticRenderFns = []
|
|
34863
34957
|
|
|
@@ -35053,14 +35147,14 @@ var ValidationStatus_component = normalizeComponent(
|
|
|
35053
35147
|
)
|
|
35054
35148
|
|
|
35055
35149
|
/* harmony default export */ var ValidationStatus = (ValidationStatus_component.exports);
|
|
35056
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
35150
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/modeler/Modeler.vue?vue&type=template&id=46c775bc&
|
|
35057
35151
|
var Modelervue_type_template_id_46c775bc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{attrs:{"data-test":"body-container"}},[_c('tool-bar',{attrs:{"canvas-drag-position":_vm.canvasDragPosition,"cursor":_vm.cursor,"is-rendering":_vm.isRendering,"paper-manager":_vm.paperManager,"breadcrumb-data":_vm.breadcrumbData,"panelsCompressed":_vm.panelsCompressed},on:{"load-xml":_vm.loadXML,"toggle-panels-compressed":function($event){_vm.panelsCompressed = !_vm.panelsCompressed},"toggle-mini-map-open":function($event){_vm.miniMapOpen = $event},"saveBpmn":_vm.saveBpmn,"save-state":_vm.pushToUndoStack}}),_c('b-row',{staticClass:"modeler h-100"},[(_vm.tooltipTarget)?_c('b-tooltip',{key:_vm.tooltipTarget.id,attrs:{"target":_vm.getTooltipTarget,"title":_vm.tooltipTitle}}):_vm._e(),_c('controls',{staticClass:"controls h-100 rounded-0 border-top-0 border-bottom-0 border-left-0",attrs:{"nodeTypes":_vm.nodeTypes,"compressed":_vm.panelsCompressed,"parent-height":_vm.parentHeight,"allowDrop":_vm.allowDrop,"canvas-drag-position":_vm.canvasDragPosition},on:{"drag":_vm.validateDropTarget,"handleDrop":_vm.handleDrop}}),_c('b-col',{ref:"paper-container",staticClass:"paper-container h-100 pr-4",class:[_vm.cursor, { 'grabbing-cursor' : _vm.isGrabbing }],style:({ width: _vm.parentWidth, height: _vm.parentHeight })},[_c('div',{ref:"paper",staticClass:"main-paper",attrs:{"data-test":"paper"}})]),_c('mini-paper',{class:{ 'expanded' : _vm.panelsCompressed },attrs:{"isOpen":_vm.miniMapOpen,"paperManager":_vm.paperManager,"graph":_vm.graph}}),_c('InspectorPanel',{ref:"inspector-panel",staticClass:"inspector h-100",style:({ height: _vm.parentHeight }),attrs:{"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"definitions":_vm.definitions,"processNode":_vm.processNode,"parent-height":_vm.parentHeight,"canvas-drag-position":_vm.canvasDragPosition,"compressed":_vm.panelsCompressed && _vm.noElementsSelected},on:{"save-state":_vm.pushToUndoStack}}),_vm._l((_vm.nodes),function(node){return _c(node.type,{key:node._modelerId,tag:"component",attrs:{"graph":_vm.graph,"paper":_vm.paper,"node":node,"id":node.id,"highlighted":_vm.highlightedNodes.includes(node),"has-error":_vm.invalidNodes.includes(node),"border-outline":_vm.borderOutline(node.id),"collaboration":_vm.collaboration,"process-node":_vm.processNode,"processes":_vm.processes,"plane-elements":_vm.planeElements,"moddle":_vm.moddle,"nodeRegistry":_vm.nodeRegistry,"root-elements":_vm.definitions.get('rootElements'),"isRendering":_vm.isRendering,"paperManager":_vm.paperManager,"auto-validate":_vm.autoValidate,"is-active":node === _vm.activeNode,"node-id-generator":_vm.nodeIdGenerator},on:{"add-node":_vm.addNode,"remove-node":_vm.removeNode,"set-cursor":function($event){_vm.cursor = $event},"set-pool-target":function($event){_vm.poolTarget = $event},"click":function($event){return _vm.highlightNode(node, $event)},"unset-pools":_vm.unsetPools,"set-pools":_vm.setPools,"save-state":_vm.pushToUndoStack,"set-shape-stacking":_vm.setShapeStacking,"setTooltip":function($event){_vm.tooltipTarget = $event},"replace-node":_vm.replaceNode,"replace-generic-flow":_vm.replaceGenericFlow,"copy-element":_vm.copyElement,"default-flow":_vm.toggleDefaultFlow}})})],2)],1)}
|
|
35058
35152
|
var Modelervue_type_template_id_46c775bc_staticRenderFns = []
|
|
35059
35153
|
|
|
35060
35154
|
|
|
35061
35155
|
// CONCATENATED MODULE: ./src/components/modeler/Modeler.vue?vue&type=template&id=46c775bc&
|
|
35062
35156
|
|
|
35063
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
35157
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/boundaryEvent/boundaryEvent.vue?vue&type=template&id=1138f5a2&
|
|
35064
35158
|
var boundaryEventvue_type_template_id_1138f5a2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
35065
35159
|
var boundaryEventvue_type_template_id_1138f5a2_staticRenderFns = []
|
|
35066
35160
|
|
|
@@ -35445,7 +35539,7 @@ var boundaryEvent_component = normalizeComponent(
|
|
|
35445
35539
|
var external_bpmn_moddle_ = __webpack_require__("f2e1");
|
|
35446
35540
|
var external_bpmn_moddle_default = /*#__PURE__*/__webpack_require__.n(external_bpmn_moddle_);
|
|
35447
35541
|
|
|
35448
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
35542
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/controls/controls.vue?vue&type=template&id=6bef4986&scoped=true&
|
|
35449
35543
|
var controlsvue_type_template_id_6bef4986_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-col',{staticClass:"h-100 overflow-hidden controls-column",class:[{ 'ignore-pointer': _vm.canvasDragPosition, 'controls-column-compressed' : _vm.compressed }],attrs:{"data-test":"controls-column"}},[_c('b-card',{staticClass:"controls rounded-0 border-top-0 border-bottom-0 border-left-0",style:({ height: _vm.parentHeight }),attrs:{"no-body":""}},[_c('b-list-group',{staticClass:"overflow-auto w-auto",class:{ 'd-flex align-items-center': _vm.compressed },attrs:{"flush":""}},_vm._l((_vm.controls),function(control,index){return _c('b-list-group-item',{key:index,staticClass:"control-item border-right-0 flex-grow-1",class:_vm.compressed ? 'p-0 pt-2 pb-2 w-100 d-flex justify-content-center' : 'p-2',attrs:{"data-test":control.type},on:{"dragstart":function($event){return $event.preventDefault()},"mousedown":function($event){return _vm.startDrag($event, control)}}},[_c('div',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover.viewport.d50",value:({ customClass: 'no-pointer-events' }),expression:"{ customClass: 'no-pointer-events' }",modifiers:{"hover":true,"viewport":true,"d50":true}}],staticClass:"tool",class:{ 'text-truncate ml-1': !_vm.compressed },attrs:{"title":_vm.$t(control.label)}},[_c('img',{staticClass:"tool-icon",attrs:{"src":control.icon,"alt":_vm.$t(control.label)}}),(!_vm.compressed)?_c('span',{staticClass:"ml-1"},[_vm._v(_vm._s(_vm.$t(control.label)))]):_vm._e()])])}),1)],1)],1)}
|
|
35450
35544
|
var controlsvue_type_template_id_6bef4986_scoped_true_staticRenderFns = []
|
|
35451
35545
|
|
|
@@ -35607,7 +35701,7 @@ var controls_component = normalizeComponent(
|
|
|
35607
35701
|
var lodash_remove = __webpack_require__("c04c");
|
|
35608
35702
|
var remove_default = /*#__PURE__*/__webpack_require__.n(lodash_remove);
|
|
35609
35703
|
|
|
35610
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
35704
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inspectors/InspectorPanel.vue?vue&type=template&id=0d9c93a8&scoped=true&
|
|
35611
35705
|
var InspectorPanelvue_type_template_id_0d9c93a8_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{"name":"inspector"}},[_c('b-col',{directives:[{name:"show",rawName:"v-show",value:(!_vm.compressed),expression:"!compressed"}],staticClass:"pl-0 h-100 overflow-hidden inspector-column",class:[{ 'ignore-pointer': _vm.canvasDragPosition, 'inspector-column-compressed' : _vm.compressed }],attrs:{"data-test":"inspector-column"}},[_c('b-card',{staticClass:"inspector-container border-top-0 border-bottom-0 border-right-0 rounded-0",style:({ height: _vm.parentHeight }),attrs:{"no-body":"","data-test":"inspector-container"}},[(_vm.highlightedNode)?_c('vue-form-renderer',{key:_vm.highlightedNode._modelerId,ref:"formRenderer",staticClass:"overflow-auto h-100 inspector-font-size",attrs:{"data":_vm.data,"config":_vm.config},on:{"update":_vm.updateDefinition},nativeOn:{"focusout":function($event){return _vm.updateState($event)}}}):_vm._e()],1)],1)],1)}
|
|
35612
35706
|
var InspectorPanelvue_type_template_id_0d9c93a8_scoped_true_staticRenderFns = []
|
|
35613
35707
|
|
|
@@ -36069,6 +36163,10 @@ var custom_validation_default = /*#__PURE__*/__webpack_require__.n(custom_valida
|
|
|
36069
36163
|
var gateway_direction = __webpack_require__("beab");
|
|
36070
36164
|
var gateway_direction_default = /*#__PURE__*/__webpack_require__.n(gateway_direction);
|
|
36071
36165
|
|
|
36166
|
+
// EXTERNAL MODULE: ./node_modules/bpmnlint-plugin-processmaker/rules/event-based-gateway.js
|
|
36167
|
+
var event_based_gateway = __webpack_require__("1a64");
|
|
36168
|
+
var event_based_gateway_default = /*#__PURE__*/__webpack_require__.n(event_based_gateway);
|
|
36169
|
+
|
|
36072
36170
|
// EXTERNAL MODULE: ./node_modules/bpmnlint-plugin-processmaker/rules/call-activity-child-process.js
|
|
36073
36171
|
var call_activity_child_process = __webpack_require__("af7f");
|
|
36074
36172
|
var call_activity_child_process_default = /*#__PURE__*/__webpack_require__.n(call_activity_child_process);
|
|
@@ -36127,6 +36225,7 @@ var rules = {
|
|
|
36127
36225
|
"superfluous-gateway": "warning",
|
|
36128
36226
|
"processmaker/custom-validation": "error",
|
|
36129
36227
|
"processmaker/gateway-direction": "error",
|
|
36228
|
+
"processmaker/event-based-gateway": "error",
|
|
36130
36229
|
"processmaker/call-activity-child-process": "error",
|
|
36131
36230
|
"processmaker/id-required": "error",
|
|
36132
36231
|
"processmaker/signal-ref-required": "error"
|
|
@@ -36190,6 +36289,9 @@ cache['bpmnlint-plugin-processmaker/custom-validation'] = custom_validation_defa
|
|
|
36190
36289
|
cache['bpmnlint-plugin-processmaker/gateway-direction'] = gateway_direction_default.a;
|
|
36191
36290
|
|
|
36192
36291
|
|
|
36292
|
+
cache['bpmnlint-plugin-processmaker/event-based-gateway'] = event_based_gateway_default.a;
|
|
36293
|
+
|
|
36294
|
+
|
|
36193
36295
|
cache['bpmnlint-plugin-processmaker/call-activity-child-process'] = call_activity_child_process_default.a;
|
|
36194
36296
|
|
|
36195
36297
|
|
|
@@ -36288,7 +36390,7 @@ function getLocalMousePosition(clientX, clientY, paper) {
|
|
|
36288
36390
|
y: clientY
|
|
36289
36391
|
});
|
|
36290
36392
|
}
|
|
36291
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
36393
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/miniPaper/MiniPaper.vue?vue&type=template&id=3f2e95bf&scoped=true&
|
|
36292
36394
|
var MiniPapervue_type_template_id_3f2e95bf_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"mini-paper-container position-absolute",class:_vm.isOpen ? 'opened' : 'closed',on:{"click":_vm.movePaper}},[_c('div',{ref:"miniPaper",staticClass:"mini-paper"})])}
|
|
36293
36395
|
var MiniPapervue_type_template_id_3f2e95bf_scoped_true_staticRenderFns = []
|
|
36294
36396
|
|
|
@@ -36798,14 +36900,14 @@ function getElementPool(shape) {
|
|
|
36798
36900
|
function isPool(shape) {
|
|
36799
36901
|
return shape.component.node.type === pool_config_id;
|
|
36800
36902
|
}
|
|
36801
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
36903
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toolbar/ToolBar.vue?vue&type=template&id=0937884d&
|
|
36802
36904
|
var ToolBarvue_type_template_id_0937884d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-row',{staticClass:"w-100 m-0"},[_c('div',{staticClass:"toolbar d-flex justify-content-between align-items-center border-top border-bottom",class:{ 'ignore-pointer': _vm.canvasDragPosition },attrs:{"role":"toolbar","aria-label":"Toolbar"}},[_c('breadcrumb',{attrs:{"breadcrumb-data":_vm.breadcrumbData}}),_c('div',{staticClass:"mr-3"},[_c('align-buttons',{on:{"save-state":function($event){return _vm.$emit('save-state')}}}),_c('div',{staticClass:"btn-group btn-group-sm mr-2",attrs:{"role":"group","aria-label":"Undo/redo controls"}},[_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-undo",attrs:{"disabled":!_vm.canUndo,"data-test":"undo","title":_vm.$t('Undo')},on:{"click":_vm.undo}},[_c('font-awesome-icon',{attrs:{"icon":_vm.undoIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-redo",attrs:{"disabled":!_vm.canRedo,"data-test":"redo","title":_vm.$t('Redo')},on:{"click":_vm.redo}},[_c('font-awesome-icon',{attrs:{"icon":_vm.redoIcon}})],1)],1),_c('div',{staticClass:"btn-group btn-group-sm mr-2",attrs:{"role":"group","aria-label":"Zoom controls"}},[_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary",attrs:{"data-test":"zoom-in","title":_vm.$t('Zoom In')},on:{"click":function($event){_vm.scale += _vm.scaleStep}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.plusIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary",attrs:{"data-test":"zoom-out","title":_vm.$t('Zoom Out')},on:{"click":function($event){_vm.scale = Math.max(_vm.minimumScale, _vm.scale -= _vm.scaleStep)}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.minusIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary",attrs:{"disabled":_vm.scale === _vm.initialScale,"data-test":"zoom-reset","title":_vm.$t('Reset to initial scale')},on:{"click":function($event){_vm.scale = _vm.initialScale}}},[_vm._v(" "+_vm._s(_vm.$t('Reset'))+" ")]),_c('span',{staticClass:"btn btn-sm btn-secondary scale-value"},[_vm._v(_vm._s(Math.round(_vm.scale*100))+"%")])],1),_c('div',{staticClass:"btn-group btn-group-sm mr-2",attrs:{"role":"group","aria-label":"Additional controls"}},[_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary ml-auto",attrs:{"data-test":"panels-btn","title":_vm.panelsCompressed ? _vm.$t('Show Menus') : _vm.$t('Hide Menus')},on:{"click":function($event){return _vm.$emit('toggle-panels-compressed')}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.panelsCompressed ? _vm.expandIcon : _vm.compressIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary mini-map-btn ml-auto",attrs:{"data-test":"mini-map-btn","title":_vm.miniMapOpen ? _vm.$t('Hide Mini-Map') : _vm.$t('Show Mini-Map')},on:{"click":function($event){_vm.miniMapOpen = !_vm.miniMapOpen}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.miniMapOpen ? _vm.minusIcon : _vm.mapIcon}})],1)],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary mini-map-btn ml-auto",attrs:{"data-test":"mini-map-btn","title":_vm.$t('Save')},on:{"click":function($event){return _vm.$emit('saveBpmn')}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.saveIcon}})],1)],1)],1)])}
|
|
36803
36905
|
var ToolBarvue_type_template_id_0937884d_staticRenderFns = []
|
|
36804
36906
|
|
|
36805
36907
|
|
|
36806
36908
|
// CONCATENATED MODULE: ./src/components/toolbar/ToolBar.vue?vue&type=template&id=0937884d&
|
|
36807
36909
|
|
|
36808
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
36910
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toolbar/breadcrumb/Breadcrumb.vue?vue&type=template&id=1d0a0bc2&
|
|
36809
36911
|
var Breadcrumbvue_type_template_id_1d0a0bc2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{attrs:{"id":"breadcrumbs"}},[(_vm.breadcrumbData.length > 0)?_c('ol',{staticClass:"breadcrumb"},[_vm._m(0),_vm._l((_vm.breadcrumbData[0]),function(breadcrumb,index){return _c('li',{key:index,staticClass:"breadcrumb-item"},[(breadcrumb.url)?_c('a',{attrs:{"href":breadcrumb.url}},[_vm._v(_vm._s(breadcrumb.text))]):_vm._e(),(!breadcrumb.url)?_c('span',[_vm._v(_vm._s(breadcrumb.text))]):_vm._e()])})],2):_vm._e()])}
|
|
36810
36912
|
var Breadcrumbvue_type_template_id_1d0a0bc2_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('li',{staticClass:"breadcrumb-item"},[_c('a',{attrs:{"href":"/"}},[_c('i',{staticClass:"fas fa-home"})])])}]
|
|
36811
36913
|
|
|
@@ -36859,7 +36961,7 @@ var Breadcrumb_component = normalizeComponent(
|
|
|
36859
36961
|
)
|
|
36860
36962
|
|
|
36861
36963
|
/* harmony default export */ var Breadcrumb = (Breadcrumb_component.exports);
|
|
36862
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
36964
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toolbar/alignButtons/AlignButtons.vue?vue&type=template&id=2ea4dea5&
|
|
36863
36965
|
var AlignButtonsvue_type_template_id_2ea4dea5_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"btn-group btn-group-sm mr-2",attrs:{"role":"group"}},[_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-left",attrs:{"data-test":"align-left","disabled":!_vm.selectedShapes.can.align.left,"title":_vm.$t('Align Left')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.left)}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.alignLeftIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-center",attrs:{"data-test":"align-center","disabled":!_vm.selectedShapes.can.align.horizontalCenter,"title":_vm.$t('Center Horizontally')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.horizontalCenter)}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.alignCenterIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-right mr-1",attrs:{"data-test":"align-right","disabled":!_vm.selectedShapes.can.align.right,"title":_vm.$t('Align Right')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.right)}}},[_c('font-awesome-icon',{attrs:{"icon":_vm.alignRightIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-bottom",attrs:{"data-test":"align-bottom","disabled":!_vm.selectedShapes.can.align.bottom,"title":_vm.$t('Align Bottom')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.bottom)}}},[_c('font-awesome-icon',{staticClass:"rotate-90-degrees-right",attrs:{"icon":_vm.alignRightIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-vertical-center",attrs:{"data-test":"align-vertical-center","disabled":!_vm.selectedShapes.can.align.verticalCenter,"title":_vm.$t('Center Vertically')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.verticalCenter)}}},[_c('font-awesome-icon',{staticClass:"rotate-90-degrees-right",attrs:{"icon":_vm.alignCenterIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-align-top mr-1",attrs:{"data-test":"align-top","disabled":!_vm.selectedShapes.can.align.top,"title":_vm.$t('Align Top')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.align.top)}}},[_c('font-awesome-icon',{staticClass:"rotate-90-degrees-right",attrs:{"icon":_vm.alignLeftIcon}})],1),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-distribute-horizontal d-flex align-items-center",attrs:{"data-test":"distribute-horizontal","disabled":!_vm.selectedShapes.can.distribute.horizontally,"title":_vm.$t('Distribute Horizontally')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.distribute.horizontally)}}},[_c('img',{attrs:{"src":_vm.distHIcon,"alt":"","height":"16"}})]),_c('b-button',{directives:[{name:"b-tooltip",rawName:"v-b-tooltip.hover",modifiers:{"hover":true}}],staticClass:"btn btn-sm btn-secondary btn-distribute-vertical d-flex align-items-center",attrs:{"data-test":"distribute-vertical","disabled":!_vm.selectedShapes.can.distribute.vertically,"title":_vm.$t('Distribute Vertically')},on:{"click":function($event){return _vm.undoableAction(_vm.selectedShapes.distribute.vertically)}}},[_c('img',{attrs:{"src":_vm.distVIcon,"alt":"","height":"16"}})])],1)}
|
|
36864
36966
|
var AlignButtonsvue_type_template_id_2ea4dea5_staticRenderFns = []
|
|
36865
36967
|
|
|
@@ -38109,6 +38211,10 @@ var FileSaver_min_default = /*#__PURE__*/__webpack_require__.n(FileSaver_min);
|
|
|
38109
38211
|
|
|
38110
38212
|
|
|
38111
38213
|
|
|
38214
|
+
|
|
38215
|
+
|
|
38216
|
+
|
|
38217
|
+
|
|
38112
38218
|
var _moddle = new WeakMap();
|
|
38113
38219
|
|
|
38114
38220
|
var _definitions = new WeakMap();
|
|
@@ -38142,11 +38248,49 @@ var XMLManager_XMLManager = /*#__PURE__*/function () {
|
|
|
38142
38248
|
}
|
|
38143
38249
|
|
|
38144
38250
|
definitions.exporter = 'ProcessMaker Modeler';
|
|
38145
|
-
definitions.exporterVersion = '1.0';
|
|
38251
|
+
definitions.exporterVersion = '1.0'; // Clean broken references when loading definitions
|
|
38252
|
+
|
|
38253
|
+
_this.cleanBrokenReferences(definitions);
|
|
38254
|
+
|
|
38146
38255
|
resolve(definitions);
|
|
38147
38256
|
});
|
|
38148
38257
|
});
|
|
38149
38258
|
}
|
|
38259
|
+
}, {
|
|
38260
|
+
key: "cleanBrokenReferences",
|
|
38261
|
+
value: function cleanBrokenReferences(definitions) {
|
|
38262
|
+
var rootElements = definitions.rootElements,
|
|
38263
|
+
diagrams = definitions.diagrams;
|
|
38264
|
+
var removed = []; // Remove broken bpmn:SequenceFlow from bpmn:Process
|
|
38265
|
+
|
|
38266
|
+
rootElements.forEach(function (element) {
|
|
38267
|
+
if (element.$type === 'bpmn:Process' && element.flowElements) {
|
|
38268
|
+
element.flowElements = element.flowElements.filter(function (child) {
|
|
38269
|
+
if (child.$type === 'bpmn:SequenceFlow') {
|
|
38270
|
+
if (!(child.sourceRef && child.targetRef)) {
|
|
38271
|
+
removed.push(child);
|
|
38272
|
+
}
|
|
38273
|
+
|
|
38274
|
+
return child.sourceRef && child.targetRef;
|
|
38275
|
+
}
|
|
38276
|
+
|
|
38277
|
+
return true;
|
|
38278
|
+
});
|
|
38279
|
+
}
|
|
38280
|
+
}); // Remove BPMNEdge from bpmndi:BPMNDiagram
|
|
38281
|
+
|
|
38282
|
+
diagrams.forEach(function (element) {
|
|
38283
|
+
if (element.$type === 'bpmndi:BPMNDiagram' && element.plane && element.plane.planeElement) {
|
|
38284
|
+
element.plane.planeElement = element.plane.planeElement.filter(function (child) {
|
|
38285
|
+
if (child.$type === 'bpmndi:BPMNEdge') {
|
|
38286
|
+
return child.bpmnElement && !removed.includes(child.bpmnElement);
|
|
38287
|
+
}
|
|
38288
|
+
|
|
38289
|
+
return true;
|
|
38290
|
+
});
|
|
38291
|
+
}
|
|
38292
|
+
});
|
|
38293
|
+
}
|
|
38150
38294
|
}, {
|
|
38151
38295
|
key: "download",
|
|
38152
38296
|
value: function download() {
|
|
@@ -38354,7 +38498,7 @@ var NodeMigrator_NodeMigrator = /*#__PURE__*/function () {
|
|
|
38354
38498
|
|
|
38355
38499
|
return NodeMigrator;
|
|
38356
38500
|
}();
|
|
38357
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
38501
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/genericFlow/genericFlow.vue?vue&type=template&id=b441470a&
|
|
38358
38502
|
var genericFlowvue_type_template_id_b441470a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
38359
38503
|
var genericFlowvue_type_template_id_b441470a_staticRenderFns = []
|
|
38360
38504
|
|
|
@@ -40749,7 +40893,7 @@ var conditionalStartEvent_id = 'processmaker-modeler-conditional-start-event';
|
|
|
40749
40893
|
}]
|
|
40750
40894
|
}]
|
|
40751
40895
|
})));
|
|
40752
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
40896
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/dataInputAssociation/dataInputAssociation.vue?vue&type=template&id=d42d73f0&
|
|
40753
40897
|
var dataInputAssociationvue_type_template_id_d42d73f0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
40754
40898
|
var dataInputAssociationvue_type_template_id_d42d73f0_staticRenderFns = []
|
|
40755
40899
|
|
|
@@ -40929,7 +41073,7 @@ var dataInputAssociation_component = normalizeComponent(
|
|
|
40929
41073
|
}]
|
|
40930
41074
|
}]
|
|
40931
41075
|
}));
|
|
40932
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
41076
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7fac6321-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/nodes/dataOutputAssociation/dataOutputAssociation.vue?vue&type=template&id=ec57134e&
|
|
40933
41077
|
var dataOutputAssociationvue_type_template_id_ec57134e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('crown-config',_vm._g({attrs:{"highlighted":_vm.highlighted,"paper":_vm.paper,"graph":_vm.graph,"shape":_vm.shape,"node":_vm.node,"nodeRegistry":_vm.nodeRegistry,"moddle":_vm.moddle,"collaboration":_vm.collaboration,"process-node":_vm.processNode,"plane-elements":_vm.planeElements,"is-rendering":_vm.isRendering}},_vm.$listeners))}
|
|
40934
41078
|
var dataOutputAssociationvue_type_template_id_ec57134e_staticRenderFns = []
|
|
40935
41079
|
|