updates from staging

This commit is contained in:
burnettk 2022-09-28 15:37:05 -04:00
parent 954e2822c8
commit d7ffb7ff70
4 changed files with 239 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<?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:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:spiffworkflow="http://spiffworkflow.org/bpmn/schema/1.0/core" id="Definitions_96f6665" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="3.0.0-dev">
<bpmn:process id="Proccess_fsz3034" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_02pnyqu</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="Flow_02pnyqu" sourceRef="StartEvent_1" targetRef="Activity_1an5kx4" />
<bpmn:userTask id="Activity_1an5kx4" name="Show Enums">
<bpmn:extensionElements>
<spiffworkflow:properties>
<spiffworkflow:property name="formJsonSchemaFilename" value="enum-JSONSchema.json" />
<spiffworkflow:property name="formUiSchemaFilename" value="enum-UISchema.json" />
</spiffworkflow:properties>
</bpmn:extensionElements>
<bpmn:incoming>Flow_02pnyqu</bpmn:incoming>
<bpmn:outgoing>Flow_0ct94g7</bpmn:outgoing>
</bpmn:userTask>
<bpmn:endEvent id="Event_1g1osrd">
<bpmn:incoming>Flow_0ct94g7</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0ct94g7" sourceRef="Activity_1an5kx4" targetRef="Event_1g1osrd" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Proccess_fsz3034">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Activity_129riln_di" bpmnElement="Activity_1an5kx4">
<dc:Bounds x="270" y="137" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Event_1g1osrd_di" bpmnElement="Event_1g1osrd">
<dc:Bounds x="432" y="159" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="Flow_02pnyqu_di" bpmnElement="Flow_02pnyqu">
<di:waypoint x="215" y="177" />
<di:waypoint x="270" y="177" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="Flow_0ct94g7_di" bpmnElement="Flow_0ct94g7">
<di:waypoint x="370" y="177" />
<di:waypoint x="432" y="177" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>

View File

@ -0,0 +1,173 @@
{
"definitions": {
"largeEnum": {
"type": "string",
"enum": [
"option #0",
"option #1",
"option #2",
"option #3",
"option #4",
"option #5",
"option #6",
"option #7",
"option #8",
"option #9",
"option #10",
"option #11",
"option #12",
"option #13",
"option #14",
"option #15",
"option #16",
"option #17",
"option #18",
"option #19",
"option #20",
"option #21",
"option #22",
"option #23",
"option #24",
"option #25",
"option #26",
"option #27",
"option #28",
"option #29",
"option #30",
"option #31",
"option #32",
"option #33",
"option #34",
"option #35",
"option #36",
"option #37",
"option #38",
"option #39",
"option #40",
"option #41",
"option #42",
"option #43",
"option #44",
"option #45",
"option #46",
"option #47",
"option #48",
"option #49",
"option #50",
"option #51",
"option #52",
"option #53",
"option #54",
"option #55",
"option #56",
"option #57",
"option #58",
"option #59",
"option #60",
"option #61",
"option #62",
"option #63",
"option #64",
"option #65",
"option #66",
"option #67",
"option #68",
"option #69",
"option #70",
"option #71",
"option #72",
"option #73",
"option #74",
"option #75",
"option #76",
"option #77",
"option #78",
"option #79",
"option #80",
"option #81",
"option #82",
"option #83",
"option #84",
"option #85",
"option #86",
"option #87",
"option #88",
"option #89",
"option #90",
"option #91",
"option #92",
"option #93",
"option #94",
"option #95",
"option #96",
"option #97",
"option #98",
"option #99"
]
},
"smallEnum": {
"type": "string",
"enum": [
"option #0",
"option #1",
"option #2",
"option #3",
"option #4",
"option #5",
"option #6",
"option #7",
"option #8",
"option #9",
"option #10",
"option #11",
"option #12",
"option #13",
"option #14",
"option #15",
"option #16",
"option #17",
"option #18",
"option #19",
"option #20"
]
}
},
"title": "A rather large form",
"type": "object",
"properties": {
"string": {
"type": "string",
"title": "Some string"
},
"choice1": {
"$ref": "#/definitions/largeEnum"
},
"choice2": {
"$ref": "#/definitions/smallEnum"
},
"choice3": {
"$ref": "#/definitions/largeEnum"
},
"choice4": {
"$ref": "#/definitions/largeEnum"
},
"choice5": {
"$ref": "#/definitions/largeEnum"
},
"choice6": {
"$ref": "#/definitions/largeEnum"
},
"choice7": {
"$ref": "#/definitions/largeEnum"
},
"choice8": {
"$ref": "#/definitions/largeEnum"
},
"choice9": {
"$ref": "#/definitions/largeEnum"
},
"choice10": {
"$ref": "#/definitions/largeEnum"
}
}
}

View File

@ -0,0 +1,5 @@
{
"choice1": {
"ui:placeholder": "Choose one"
}
}

View File

@ -0,0 +1,17 @@
{
"description": "user-task-enum-tests",
"display_name": "user-task-enum-tests",
"display_order": 2,
"exception_notification_addresses": [],
"fault_or_suspend_on_exception": "fault",
"files": [],
"id": "user-task-enum-tests",
"is_master_spec": false,
"is_review": false,
"libraries": [],
"library": false,
"primary_file_name": "dynamic-enum-test.bpmn",
"primary_process_id": "Proccess_fsz3034",
"process_group_id": "category_number_two",
"standalone": false
}