-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(templates): indicate newest element template
Closes #399
- Loading branch information
1 parent
1e839b3
commit 8900300
Showing
5 changed files
with
276 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 16 additions & 9 deletions
25
test/spec/provider/camunda/element-templates/parts/DescriptionProps.bpmn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1ysjldv" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.0.0"> | ||
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_1ysjldv" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="4.5.0-nightly.20201214"> | ||
<bpmn:process id="Process_1" isExecutable="true"> | ||
<bpmn:task id="Task" name="Task" camunda:modelerTemplate="task" /> | ||
<bpmn:task id="Task_Description" name="Task_Description" camunda:modelerTemplate="task.description" camunda:modelerTemplateVersion="1" camunda:asyncBefore="true" /> | ||
<bpmn:task id="Task_TemplateNotFound" name="Task_TemplateNotFound" camunda:modelerTemplate="task.noTemplate" camunda:modelerTemplateVersion="1" /> | ||
<bpmn:startEvent id="StartEvent_Template" name="StartEvent_Template" camunda:modelerTemplate="StartEvent_Template" camunda:modelerTemplateVersion="1" camunda:asyncBefore="true"> | ||
<bpmn:task id="Task" name="Task" camunda:modelerTemplate="Task" /> | ||
<bpmn:task id="Task_Description" name="Task_Description v1" camunda:modelerTemplate="Task_Description" camunda:modelerTemplateVersion="1" camunda:asyncBefore="true" /> | ||
<bpmn:task id="Task_TemplateNotFound" name="Task_TemplateNotFound v1" camunda:modelerTemplate="Task_TemplateNotFound" camunda:modelerTemplateVersion="1" /> | ||
<bpmn:startEvent id="StartEvent" name="StartEvent v1" camunda:modelerTemplate="StartEvent" camunda:modelerTemplateVersion="1"> | ||
<bpmn:conditionalEventDefinition id="ConditionalEventDefinition_1iu9k3o"> | ||
<bpmn:condition xsi:type="bpmn:tFormalExpression" /> | ||
</bpmn:conditionalEventDefinition> | ||
</bpmn:startEvent> | ||
<bpmn:endEvent id="EndEvent" name="EndEvent v2" camunda:modelerTemplate="EndEvent" camunda:modelerTemplateVersion="2" /> | ||
</bpmn:process> | ||
<bpmndi:BPMNDiagram id="BPMNDiagram_1"> | ||
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1"> | ||
<bpmndi:BPMNShape id="Activity_147d7ub_di" bpmnElement="Task"> | ||
<bpmndi:BPMNShape id="Task_di" bpmnElement="Task"> | ||
<dc:Bounds x="160" y="60" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Activity_1ydrgd8_di" bpmnElement="Task_Description"> | ||
<bpmndi:BPMNShape id="Task_Description_di" bpmnElement="Task_Description"> | ||
<dc:Bounds x="350" y="60" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Activity_01zv0pp_di" bpmnElement="Task_TemplateNotFound"> | ||
<bpmndi:BPMNShape id="Task_TemplateNotFound_di" bpmnElement="Task_TemplateNotFound"> | ||
<dc:Bounds x="540" y="60" width="100" height="80" /> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="Event_10cvtz7_di" bpmnElement="StartEvent_Template"> | ||
<bpmndi:BPMNShape id="StartEvent_di" bpmnElement="StartEvent"> | ||
<dc:Bounds x="192" y="232" width="36" height="36" /> | ||
<bpmndi:BPMNLabel> | ||
<dc:Bounds x="167" y="275" width="87" height="27" /> | ||
</bpmndi:BPMNLabel> | ||
</bpmndi:BPMNShape> | ||
<bpmndi:BPMNShape id="EndEvent_di" bpmnElement="EndEvent"> | ||
<dc:Bounds x="382" y="232" width="36" height="36" /> | ||
<bpmndi:BPMNLabel> | ||
<dc:Bounds x="360" y="275" width="84" height="27" /> | ||
</bpmndi:BPMNLabel> | ||
</bpmndi:BPMNShape> | ||
</bpmndi:BPMNPlane> | ||
</bpmndi:BPMNDiagram> | ||
</bpmn:definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.