tianheng-ui 0.1.0 → 0.1.1

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.
Files changed (254) hide show
  1. package/README.md +9 -18
  2. package/lib/039af9192b9bb277966ceb4e4ce29c41.js +16 -0
  3. package/lib/2d84c80112a372bc149cad3464e90fa3.js +1617 -0
  4. package/lib/5977b934a4c6b480790864ea01303173.js +10834 -0
  5. package/lib/7745f3e776488705a38e62f85adad54d.js +16 -0
  6. package/lib/de8dee841ffdaaede3a2254deef30376.js +15395 -0
  7. package/lib/e78eab250e7f8ccac3d918dfdb06ca10.js +8904 -0
  8. package/lib/theme-chalk/fonts/PingFang.ttf +0 -0
  9. package/lib/theme-chalk/fonts/bpmn.eot +0 -0
  10. package/lib/theme-chalk/fonts/bpmn.svg +224 -0
  11. package/lib/theme-chalk/fonts/bpmn.ttf +0 -0
  12. package/lib/theme-chalk/fonts/bpmn.woff +0 -0
  13. package/lib/theme-chalk/fonts/bpmn.woff2 +0 -0
  14. package/lib/theme-chalk/fonts/fontawesome-webfont.eot +0 -0
  15. package/lib/theme-chalk/fonts/fontawesome-webfont.svg +2671 -0
  16. package/lib/theme-chalk/fonts/fontawesome-webfont.ttf +0 -0
  17. package/lib/theme-chalk/fonts/fontawesome-webfont.woff +0 -0
  18. package/lib/theme-chalk/fonts/fontawesome-webfont.woff2 +0 -0
  19. package/lib/theme-chalk/fonts/iconfont.eot +0 -0
  20. package/lib/theme-chalk/fonts/iconfont.svg +155 -0
  21. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  22. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  23. package/lib/theme-chalk/fonts/iconfont.woff2 +0 -0
  24. package/lib/theme-chalk/images/notData.png +0 -0
  25. package/lib/theme-chalk/index.scss +31 -0
  26. package/lib/theme-chalk/js/Log.js +99 -0
  27. package/lib/theme-chalk/js/axios.js +86 -0
  28. package/lib/theme-chalk/js/store/getters.js +5 -0
  29. package/lib/theme-chalk/js/store/modules/makingForm.js +21 -0
  30. package/lib/theme-chalk/js/store/store.js +26 -0
  31. package/lib/theme-chalk/styles/button.scss +501 -0
  32. package/lib/theme-chalk/styles/card.scss +29 -0
  33. package/lib/theme-chalk/styles/cell.scss +54 -0
  34. package/lib/theme-chalk/styles/codeEditor.scss +9 -0
  35. package/lib/theme-chalk/styles/col.scss +151 -0
  36. package/lib/theme-chalk/styles/dialog.scss +56 -0
  37. package/lib/theme-chalk/styles/empty.scss +22 -0
  38. package/lib/theme-chalk/styles/feature.scss +46 -0
  39. package/lib/theme-chalk/styles/font.css +7 -0
  40. package/lib/theme-chalk/styles/grid.scss +41 -0
  41. package/lib/theme-chalk/styles/icon.css +1944 -0
  42. package/lib/theme-chalk/styles/imagePreview.scss +113 -0
  43. package/lib/theme-chalk/styles/img.scss +35 -0
  44. package/lib/theme-chalk/styles/reset.scss +17 -0
  45. package/lib/theme-chalk/styles/root.css +64 -0
  46. package/lib/theme-chalk/styles/row.scss +23 -0
  47. package/lib/theme-chalk/styles/upload.scss +744 -0
  48. package/lib/theme-chalk/styles/variable.scss +80 -0
  49. package/lib/tianheng-ui.js +116 -0
  50. package/package.json +86 -48
  51. package/packages/Button/index.js +8 -0
  52. package/packages/Button/index.vue +80 -0
  53. package/packages/Card/index.js +8 -0
  54. package/packages/Card/index.vue +37 -0
  55. package/packages/Cell/index.js +8 -0
  56. package/packages/Cell/index.vue +68 -0
  57. package/packages/CodeEditor/index.js +8 -0
  58. package/packages/CodeEditor/index.vue +177 -0
  59. package/packages/Col/index.js +8 -0
  60. package/packages/Col/index.vue +43 -0
  61. package/packages/Dialog/index.js +8 -0
  62. package/packages/Dialog/index.vue +129 -0
  63. package/packages/Empty/index.js +8 -0
  64. package/packages/Empty/index.vue +35 -0
  65. package/packages/FormMaking/FormConfig.vue +60 -0
  66. package/packages/FormMaking/GenerateForm.vue +308 -0
  67. package/packages/FormMaking/GenerateFormItem.vue +887 -0
  68. package/packages/FormMaking/GenerateFormItemH5.vue +825 -0
  69. package/packages/FormMaking/Upload/index.vue +572 -0
  70. package/packages/FormMaking/WidgetConfig.vue +472 -0
  71. package/packages/FormMaking/WidgetForm.vue +159 -0
  72. package/packages/FormMaking/WidgetFormItem.vue +187 -0
  73. package/packages/FormMaking/custom/config.js +762 -0
  74. package/packages/FormMaking/custom/configs/alliance.vue +0 -0
  75. package/packages/FormMaking/custom/configs/blank.vue +54 -0
  76. package/packages/FormMaking/custom/configs/button.vue +172 -0
  77. package/packages/FormMaking/custom/configs/cascader.vue +175 -0
  78. package/packages/FormMaking/custom/configs/cell.vue +81 -0
  79. package/packages/FormMaking/custom/configs/checkbox.vue +234 -0
  80. package/packages/FormMaking/custom/configs/color.vue +137 -0
  81. package/packages/FormMaking/custom/configs/date.vue +158 -0
  82. package/packages/FormMaking/custom/configs/divider.vue +61 -0
  83. package/packages/FormMaking/custom/configs/editor.vue +71 -0
  84. package/packages/FormMaking/custom/configs/filler.vue +57 -0
  85. package/packages/FormMaking/custom/configs/grid.vue +103 -0
  86. package/packages/FormMaking/custom/configs/image.vue +138 -0
  87. package/packages/FormMaking/custom/configs/input.vue +176 -0
  88. package/packages/FormMaking/custom/configs/number.vue +140 -0
  89. package/packages/FormMaking/custom/configs/radio.vue +211 -0
  90. package/packages/FormMaking/custom/configs/rate.vue +109 -0
  91. package/packages/FormMaking/custom/configs/select.vue +305 -0
  92. package/packages/FormMaking/custom/configs/slider.vue +142 -0
  93. package/packages/FormMaking/custom/configs/switch.vue +130 -0
  94. package/packages/FormMaking/custom/configs/table.vue +105 -0
  95. package/packages/FormMaking/custom/configs/table_h5.vue +102 -0
  96. package/packages/FormMaking/custom/configs/tabs.vue +175 -0
  97. package/packages/FormMaking/custom/configs/text.vue +71 -0
  98. package/packages/FormMaking/custom/configs/textarea.vue +167 -0
  99. package/packages/FormMaking/custom/configs/time.vue +153 -0
  100. package/packages/FormMaking/custom/configs/upload.vue +155 -0
  101. package/packages/FormMaking/custom/index.js +32 -0
  102. package/packages/FormMaking/custom/items/alliance.vue +132 -0
  103. package/packages/FormMaking/custom/items/blank.vue +16 -0
  104. package/packages/FormMaking/custom/items/button.vue +27 -0
  105. package/packages/FormMaking/custom/items/cascader.vue +29 -0
  106. package/packages/FormMaking/custom/items/cell.vue +18 -0
  107. package/packages/FormMaking/custom/items/checkbox.vue +46 -0
  108. package/packages/FormMaking/custom/items/color.vue +19 -0
  109. package/packages/FormMaking/custom/items/date.vue +29 -0
  110. package/packages/FormMaking/custom/items/divider.vue +14 -0
  111. package/packages/FormMaking/custom/items/editor.vue +22 -0
  112. package/packages/FormMaking/custom/items/filler.vue +17 -0
  113. package/packages/FormMaking/custom/items/grid.vue +130 -0
  114. package/packages/FormMaking/custom/items/image.vue +70 -0
  115. package/packages/FormMaking/custom/items/input.vue +33 -0
  116. package/packages/FormMaking/custom/items/login.vue +13 -0
  117. package/packages/FormMaking/custom/items/number.vue +24 -0
  118. package/packages/FormMaking/custom/items/radio.vue +44 -0
  119. package/packages/FormMaking/custom/items/rate.vue +20 -0
  120. package/packages/FormMaking/custom/items/select.vue +32 -0
  121. package/packages/FormMaking/custom/items/slider.vue +34 -0
  122. package/packages/FormMaking/custom/items/switch.vue +22 -0
  123. package/packages/FormMaking/custom/items/table.vue +106 -0
  124. package/packages/FormMaking/custom/items/table_h5.vue +126 -0
  125. package/packages/FormMaking/custom/items/tabs.vue +145 -0
  126. package/packages/FormMaking/custom/items/text.vue +18 -0
  127. package/packages/FormMaking/custom/items/textarea.vue +37 -0
  128. package/packages/FormMaking/custom/items/time.vue +32 -0
  129. package/packages/FormMaking/custom/items/upload.vue +102 -0
  130. package/packages/FormMaking/custom/mixins/index.js +61 -0
  131. package/packages/FormMaking/custom/register.js +18 -0
  132. package/packages/FormMaking/generate.js +5 -0
  133. package/packages/FormMaking/iconfont/demo.css +539 -0
  134. package/packages/FormMaking/iconfont/demo_index.html +1159 -0
  135. package/packages/FormMaking/iconfont/iconfont.css +189 -0
  136. package/packages/FormMaking/iconfont/iconfont.eot +0 -0
  137. package/packages/FormMaking/iconfont/iconfont.js +1 -0
  138. package/packages/FormMaking/iconfont/iconfont.svg +155 -0
  139. package/packages/FormMaking/iconfont/iconfont.ttf +0 -0
  140. package/packages/FormMaking/iconfont/iconfont.woff +0 -0
  141. package/packages/FormMaking/iconfont/iconfont.woff2 +0 -0
  142. package/packages/FormMaking/index.js +33 -0
  143. package/packages/FormMaking/index.vue +807 -0
  144. package/packages/FormMaking/lang/en-US.js +187 -0
  145. package/packages/FormMaking/lang/zh-CN.js +187 -0
  146. package/packages/FormMaking/making.js +9 -0
  147. package/packages/FormMaking/styles/cover.scss +41 -0
  148. package/packages/FormMaking/styles/index.scss +785 -0
  149. package/packages/FormMaking/util/generateCode.js +163 -0
  150. package/packages/FormMaking/util/index.js +33 -0
  151. package/packages/FormMaking/util/request.js +28 -0
  152. package/packages/Grid/index.js +8 -0
  153. package/packages/Grid/index.vue +21 -0
  154. package/packages/GridItem/index.js +8 -0
  155. package/packages/GridItem/index.vue +69 -0
  156. package/packages/Icons/index.js +8 -0
  157. package/packages/Icons/index.vue +377 -0
  158. package/packages/Image/index.js +8 -0
  159. package/packages/Image/index.vue +146 -0
  160. package/packages/ImagePreview/index.js +8 -0
  161. package/packages/ImagePreview/index.vue +386 -0
  162. package/packages/Row/index.js +8 -0
  163. package/packages/Row/index.vue +33 -0
  164. package/packages/Table/action.js +8 -0
  165. package/packages/Table/action.vue +168 -0
  166. package/packages/Table/column.vue +63 -0
  167. package/packages/Table/index.js +8 -0
  168. package/packages/Table/index.vue +327 -0
  169. package/packages/Table/search.js +8 -0
  170. package/packages/Table/search.vue +163 -0
  171. package/packages/Table/tools.js +8 -0
  172. package/packages/Table/tools.vue +49 -0
  173. package/packages/TableMaking/custom/configs/fieldSearch.vue +17 -0
  174. package/packages/TableMaking/custom/configs/fieldTable.vue +15 -0
  175. package/packages/TableMaking/custom/items/search/index.vue +158 -0
  176. package/packages/TableMaking/custom/items/tools/index.vue +49 -0
  177. package/packages/TableMaking/generate.js +5 -0
  178. package/packages/TableMaking/generateTable.vue +560 -0
  179. package/packages/TableMaking/index.vue +234 -0
  180. package/packages/TableMaking/making.js +5 -0
  181. package/packages/TableMaking/util/index.js +433 -0
  182. package/packages/TableMaking/widgetConfig.vue +390 -0
  183. package/packages/TableMaking/widgetTable.vue +305 -0
  184. package/packages/Upload/ajax.js +85 -0
  185. package/packages/Upload/index.js +8 -0
  186. package/packages/Upload/index.vue +325 -0
  187. package/packages/Upload/upload-dragger.vue +70 -0
  188. package/packages/Upload/upload-list.vue +121 -0
  189. package/packages/Upload/upload.vue +193 -0
  190. package/packages/VueEditor/index.js +8 -0
  191. package/packages/VueEditor/index.vue +38 -0
  192. package/packages/Workflow/Log.js +99 -0
  193. package/packages/Workflow/designer/ProcessDesigner.vue +628 -0
  194. package/packages/Workflow/designer/index.js +7 -0
  195. package/packages/Workflow/designer/plugins/content-pad/contentPadProvider.js +390 -0
  196. package/packages/Workflow/designer/plugins/content-pad/index.js +6 -0
  197. package/packages/Workflow/designer/plugins/defaultEmpty.js +24 -0
  198. package/packages/Workflow/designer/plugins/descriptor/activitiDescriptor.json +1071 -0
  199. package/packages/Workflow/designer/plugins/descriptor/camundaDescriptor.json +1087 -0
  200. package/packages/Workflow/designer/plugins/descriptor/flowableDescriptor.json +1215 -0
  201. package/packages/Workflow/designer/plugins/extension-moddle/activiti/activitiExtension.js +74 -0
  202. package/packages/Workflow/designer/plugins/extension-moddle/activiti/index.js +9 -0
  203. package/packages/Workflow/designer/plugins/extension-moddle/camunda/extension.js +148 -0
  204. package/packages/Workflow/designer/plugins/extension-moddle/camunda/index.js +6 -0
  205. package/packages/Workflow/designer/plugins/extension-moddle/flowable/flowableExtension.js +74 -0
  206. package/packages/Workflow/designer/plugins/extension-moddle/flowable/index.js +9 -0
  207. package/packages/Workflow/designer/plugins/palette/CustomPalette.js +156 -0
  208. package/packages/Workflow/designer/plugins/palette/index.js +6 -0
  209. package/packages/Workflow/designer/plugins/palette/paletteProvider.js +160 -0
  210. package/packages/Workflow/designer/plugins/translate/customTranslate.js +41 -0
  211. package/packages/Workflow/designer/plugins/translate/zh.js +238 -0
  212. package/packages/Workflow/highlight/index.js +5 -0
  213. package/packages/Workflow/index.js +34 -0
  214. package/packages/Workflow/index.vue +399 -0
  215. package/packages/Workflow/modules/auto-place/CustomAutoPlace.js +81 -0
  216. package/packages/Workflow/modules/auto-place/index.js +6 -0
  217. package/packages/Workflow/modules/custom-renderer/CustomRenderer.js +17 -0
  218. package/packages/Workflow/modules/custom-renderer/index.js +6 -0
  219. package/packages/Workflow/modules/rules/CustomRules.js +16 -0
  220. package/packages/Workflow/modules/rules/index.js +6 -0
  221. package/packages/Workflow/palette/ProcessPalette.vue +106 -0
  222. package/packages/Workflow/palette/index.js +7 -0
  223. package/packages/Workflow/penal/PropertiesPanel.vue +245 -0
  224. package/packages/Workflow/penal/base/ElementBaseInfo.vue +80 -0
  225. package/packages/Workflow/penal/flow-condition/FlowCondition.vue +142 -0
  226. package/packages/Workflow/penal/form/ElementForm.vue +367 -0
  227. package/packages/Workflow/penal/index.js +7 -0
  228. package/packages/Workflow/penal/listeners/ElementListeners.vue +299 -0
  229. package/packages/Workflow/penal/listeners/UserTaskListeners.vue +322 -0
  230. package/packages/Workflow/penal/listeners/template.js +178 -0
  231. package/packages/Workflow/penal/listeners/utilSelf.js +64 -0
  232. package/packages/Workflow/penal/multi-instance/ElementMultiInstance.vue +200 -0
  233. package/packages/Workflow/penal/other/ElementOtherConfig.vue +59 -0
  234. package/packages/Workflow/penal/properties/ElementProperties.vue +135 -0
  235. package/packages/Workflow/penal/signal-message/SignalAndMessage.vue +104 -0
  236. package/packages/Workflow/penal/task/ElementTask.vue +73 -0
  237. package/packages/Workflow/penal/task/task-components/ReceiveTask.vue +97 -0
  238. package/packages/Workflow/penal/task/task-components/ScriptTask.vue +85 -0
  239. package/packages/Workflow/penal/task/task-components/UserTask.vue +535 -0
  240. package/packages/Workflow/theme/element-variables.scss +70 -0
  241. package/packages/Workflow/theme/index.scss +2 -0
  242. package/packages/Workflow/theme/process-designer.scss +157 -0
  243. package/packages/Workflow/theme/process-panel.scss +107 -0
  244. package/packages/Workflow/translations.js +25 -0
  245. package/packages/Workflow/utils.js +71 -0
  246. package/packages/index.js +160 -0
  247. package/babel.config.js +0 -15
  248. package/index.js +0 -11
  249. package/public/favicon.ico +0 -0
  250. package/public/index.html +0 -17
  251. package/src/App.vue +0 -28
  252. package/src/assets/logo.png +0 -0
  253. package/src/components/HelloWorld.vue +0 -58
  254. package/src/main.js +0 -8
@@ -0,0 +1,1087 @@
1
+ {
2
+ "name": "Camunda",
3
+ "uri": "http://camunda.org/schema/1.0/bpmn",
4
+ "prefix": "camunda",
5
+ "xml": {
6
+ "tagAlias": "lowerCase"
7
+ },
8
+ "associations": [],
9
+ "types": [
10
+ {
11
+ "name": "Definitions",
12
+ "isAbstract": true,
13
+ "extends": [
14
+ "bpmn:Definitions"
15
+ ],
16
+ "properties": [
17
+ {
18
+ "name": "diagramRelationId",
19
+ "isAttr": true,
20
+ "type": "String"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "InOutBinding",
26
+ "superClass": [
27
+ "Element"
28
+ ],
29
+ "isAbstract": true,
30
+ "properties": [
31
+ {
32
+ "name": "source",
33
+ "isAttr": true,
34
+ "type": "String"
35
+ },
36
+ {
37
+ "name": "sourceExpression",
38
+ "isAttr": true,
39
+ "type": "String"
40
+ },
41
+ {
42
+ "name": "target",
43
+ "isAttr": true,
44
+ "type": "String"
45
+ },
46
+ {
47
+ "name": "businessKey",
48
+ "isAttr": true,
49
+ "type": "String"
50
+ },
51
+ {
52
+ "name": "local",
53
+ "isAttr": true,
54
+ "type": "Boolean",
55
+ "default": false
56
+ },
57
+ {
58
+ "name": "variables",
59
+ "isAttr": true,
60
+ "type": "String"
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "In",
66
+ "superClass": [
67
+ "InOutBinding"
68
+ ],
69
+ "meta": {
70
+ "allowedIn": [
71
+ "bpmn:CallActivity",
72
+ "bpmn:SignalEventDefinition"
73
+ ]
74
+ }
75
+ },
76
+ {
77
+ "name": "Out",
78
+ "superClass": [
79
+ "InOutBinding"
80
+ ],
81
+ "meta": {
82
+ "allowedIn": [
83
+ "bpmn:CallActivity"
84
+ ]
85
+ }
86
+ },
87
+ {
88
+ "name": "AsyncCapable",
89
+ "isAbstract": true,
90
+ "extends": [
91
+ "bpmn:Activity",
92
+ "bpmn:Gateway",
93
+ "bpmn:Event"
94
+ ],
95
+ "properties": [
96
+ {
97
+ "name": "async",
98
+ "isAttr": true,
99
+ "type": "Boolean",
100
+ "default": false
101
+ },
102
+ {
103
+ "name": "asyncBefore",
104
+ "isAttr": true,
105
+ "type": "Boolean",
106
+ "default": false
107
+ },
108
+ {
109
+ "name": "asyncAfter",
110
+ "isAttr": true,
111
+ "type": "Boolean",
112
+ "default": false
113
+ },
114
+ {
115
+ "name": "exclusive",
116
+ "isAttr": true,
117
+ "type": "Boolean",
118
+ "default": true
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "name": "JobPriorized",
124
+ "isAbstract": true,
125
+ "extends": [
126
+ "bpmn:Process",
127
+ "camunda:AsyncCapable"
128
+ ],
129
+ "properties": [
130
+ {
131
+ "name": "jobPriority",
132
+ "isAttr": true,
133
+ "type": "String"
134
+ }
135
+ ]
136
+ },
137
+ {
138
+ "name": "SignalEventDefinition",
139
+ "isAbstract": true,
140
+ "extends": [
141
+ "bpmn:SignalEventDefinition"
142
+ ],
143
+ "properties": [
144
+ {
145
+ "name": "async",
146
+ "isAttr": true,
147
+ "type": "Boolean",
148
+ "default": false
149
+ }
150
+ ]
151
+ },
152
+ {
153
+ "name": "ErrorEventDefinition",
154
+ "isAbstract": true,
155
+ "extends": [
156
+ "bpmn:ErrorEventDefinition"
157
+ ],
158
+ "properties": [
159
+ {
160
+ "name": "errorCodeVariable",
161
+ "isAttr": true,
162
+ "type": "String"
163
+ },
164
+ {
165
+ "name": "errorMessageVariable",
166
+ "isAttr": true,
167
+ "type": "String"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "name": "Error",
173
+ "isAbstract": true,
174
+ "extends": [
175
+ "bpmn:Error"
176
+ ],
177
+ "properties": [
178
+ {
179
+ "name": "camunda:errorMessage",
180
+ "isAttr": true,
181
+ "type": "String"
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "name": "PotentialStarter",
187
+ "superClass": [
188
+ "Element"
189
+ ],
190
+ "properties": [
191
+ {
192
+ "name": "resourceAssignmentExpression",
193
+ "type": "bpmn:ResourceAssignmentExpression"
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "name": "FormSupported",
199
+ "isAbstract": true,
200
+ "extends": [
201
+ "bpmn:StartEvent",
202
+ "bpmn:UserTask"
203
+ ],
204
+ "properties": [
205
+ {
206
+ "name": "formHandlerClass",
207
+ "isAttr": true,
208
+ "type": "String"
209
+ },
210
+ {
211
+ "name": "formKey",
212
+ "isAttr": true,
213
+ "type": "String"
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "name": "TemplateSupported",
219
+ "isAbstract": true,
220
+ "extends": [
221
+ "bpmn:Process",
222
+ "bpmn:FlowElement"
223
+ ],
224
+ "properties": [
225
+ {
226
+ "name": "modelerTemplate",
227
+ "isAttr": true,
228
+ "type": "String"
229
+ },
230
+ {
231
+ "name": "modelerTemplateVersion",
232
+ "isAttr": true,
233
+ "type": "Integer"
234
+ }
235
+ ]
236
+ },
237
+ {
238
+ "name": "Initiator",
239
+ "isAbstract": true,
240
+ "extends": [ "bpmn:StartEvent" ],
241
+ "properties": [
242
+ {
243
+ "name": "initiator",
244
+ "isAttr": true,
245
+ "type": "String"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "name": "ScriptTask",
251
+ "isAbstract": true,
252
+ "extends": [
253
+ "bpmn:ScriptTask"
254
+ ],
255
+ "properties": [
256
+ {
257
+ "name": "resultVariable",
258
+ "isAttr": true,
259
+ "type": "String"
260
+ },
261
+ {
262
+ "name": "resource",
263
+ "isAttr": true,
264
+ "type": "String"
265
+ }
266
+ ]
267
+ },
268
+ {
269
+ "name": "Process",
270
+ "isAbstract": true,
271
+ "extends": [
272
+ "bpmn:Process"
273
+ ],
274
+ "properties": [
275
+ {
276
+ "name": "candidateStarterGroups",
277
+ "isAttr": true,
278
+ "type": "String"
279
+ },
280
+ {
281
+ "name": "candidateStarterUsers",
282
+ "isAttr": true,
283
+ "type": "String"
284
+ },
285
+ {
286
+ "name": "versionTag",
287
+ "isAttr": true,
288
+ "type": "String"
289
+ },
290
+ {
291
+ "name": "historyTimeToLive",
292
+ "isAttr": true,
293
+ "type": "String"
294
+ },
295
+ {
296
+ "name": "isStartableInTasklist",
297
+ "isAttr": true,
298
+ "type": "Boolean",
299
+ "default": true
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "name": "EscalationEventDefinition",
305
+ "isAbstract": true,
306
+ "extends": [
307
+ "bpmn:EscalationEventDefinition"
308
+ ],
309
+ "properties": [
310
+ {
311
+ "name": "escalationCodeVariable",
312
+ "isAttr": true,
313
+ "type": "String"
314
+ }
315
+ ]
316
+ },
317
+ {
318
+ "name": "FormalExpression",
319
+ "isAbstract": true,
320
+ "extends": [
321
+ "bpmn:FormalExpression"
322
+ ],
323
+ "properties": [
324
+ {
325
+ "name": "resource",
326
+ "isAttr": true,
327
+ "type": "String"
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "Assignable",
333
+ "extends": [ "bpmn:UserTask" ],
334
+ "properties": [
335
+ {
336
+ "name": "assignee",
337
+ "isAttr": true,
338
+ "type": "String"
339
+ },
340
+ {
341
+ "name": "candidateUsers",
342
+ "isAttr": true,
343
+ "type": "String"
344
+ },
345
+ {
346
+ "name": "candidateGroups",
347
+ "isAttr": true,
348
+ "type": "String"
349
+ },
350
+ {
351
+ "name": "dueDate",
352
+ "isAttr": true,
353
+ "type": "String"
354
+ },
355
+ {
356
+ "name": "followUpDate",
357
+ "isAttr": true,
358
+ "type": "String"
359
+ },
360
+ {
361
+ "name": "priority",
362
+ "isAttr": true,
363
+ "type": "String"
364
+ }
365
+ ]
366
+ },
367
+ {
368
+ "name": "CallActivity",
369
+ "extends": [ "bpmn:CallActivity" ],
370
+ "properties": [
371
+ {
372
+ "name": "calledElementBinding",
373
+ "isAttr": true,
374
+ "type": "String",
375
+ "default": "latest"
376
+ },
377
+ {
378
+ "name": "calledElementVersion",
379
+ "isAttr": true,
380
+ "type": "String"
381
+ },
382
+ {
383
+ "name": "calledElementVersionTag",
384
+ "isAttr": true,
385
+ "type": "String"
386
+ },
387
+ {
388
+ "name": "calledElementTenantId",
389
+ "isAttr": true,
390
+ "type": "String"
391
+ },
392
+ {
393
+ "name": "caseRef",
394
+ "isAttr": true,
395
+ "type": "String"
396
+ },
397
+ {
398
+ "name": "caseBinding",
399
+ "isAttr": true,
400
+ "type": "String",
401
+ "default": "latest"
402
+ },
403
+ {
404
+ "name": "caseVersion",
405
+ "isAttr": true,
406
+ "type": "String"
407
+ },
408
+ {
409
+ "name": "caseTenantId",
410
+ "isAttr": true,
411
+ "type": "String"
412
+ },
413
+ {
414
+ "name": "variableMappingClass",
415
+ "isAttr": true,
416
+ "type": "String"
417
+ },
418
+ {
419
+ "name": "variableMappingDelegateExpression",
420
+ "isAttr": true,
421
+ "type": "String"
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "name": "ServiceTaskLike",
427
+ "extends": [
428
+ "bpmn:ServiceTask",
429
+ "bpmn:BusinessRuleTask",
430
+ "bpmn:SendTask",
431
+ "bpmn:MessageEventDefinition"
432
+ ],
433
+ "properties": [
434
+ {
435
+ "name": "expression",
436
+ "isAttr": true,
437
+ "type": "String"
438
+ },
439
+ {
440
+ "name": "class",
441
+ "isAttr": true,
442
+ "type": "String"
443
+ },
444
+ {
445
+ "name": "delegateExpression",
446
+ "isAttr": true,
447
+ "type": "String"
448
+ },
449
+ {
450
+ "name": "resultVariable",
451
+ "isAttr": true,
452
+ "type": "String"
453
+ }
454
+ ]
455
+ },
456
+ {
457
+ "name": "DmnCapable",
458
+ "extends": [
459
+ "bpmn:BusinessRuleTask"
460
+ ],
461
+ "properties": [
462
+ {
463
+ "name": "decisionRef",
464
+ "isAttr": true,
465
+ "type": "String"
466
+ },
467
+ {
468
+ "name": "decisionRefBinding",
469
+ "isAttr": true,
470
+ "type": "String",
471
+ "default": "latest"
472
+ },
473
+ {
474
+ "name": "decisionRefVersion",
475
+ "isAttr": true,
476
+ "type": "String"
477
+ },
478
+ {
479
+ "name": "mapDecisionResult",
480
+ "isAttr": true,
481
+ "type": "String",
482
+ "default": "resultList"
483
+ },
484
+ {
485
+ "name": "decisionRefTenantId",
486
+ "isAttr": true,
487
+ "type": "String"
488
+ }
489
+ ]
490
+ },
491
+ {
492
+ "name": "ExternalCapable",
493
+ "extends": [
494
+ "camunda:ServiceTaskLike"
495
+ ],
496
+ "properties": [
497
+ {
498
+ "name": "type",
499
+ "isAttr": true,
500
+ "type": "String"
501
+ },
502
+ {
503
+ "name": "topic",
504
+ "isAttr": true,
505
+ "type": "String"
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "name": "TaskPriorized",
511
+ "extends": [
512
+ "bpmn:Process",
513
+ "camunda:ExternalCapable"
514
+ ],
515
+ "properties": [
516
+ {
517
+ "name": "taskPriority",
518
+ "isAttr": true,
519
+ "type": "String"
520
+ }
521
+ ]
522
+ },
523
+ {
524
+ "name": "Properties",
525
+ "superClass": [
526
+ "Element"
527
+ ],
528
+ "meta": {
529
+ "allowedIn": [ "*" ]
530
+ },
531
+ "properties": [
532
+ {
533
+ "name": "values",
534
+ "type": "Property",
535
+ "isMany": true
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "name": "Property",
541
+ "superClass": [
542
+ "Element"
543
+ ],
544
+ "properties": [
545
+ {
546
+ "name": "id",
547
+ "type": "String",
548
+ "isAttr": true
549
+ },
550
+ {
551
+ "name": "name",
552
+ "type": "String",
553
+ "isAttr": true
554
+ },
555
+ {
556
+ "name": "value",
557
+ "type": "String",
558
+ "isAttr": true
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ "name": "Connector",
564
+ "superClass": [
565
+ "Element"
566
+ ],
567
+ "meta": {
568
+ "allowedIn": [
569
+ "camunda:ServiceTaskLike"
570
+ ]
571
+ },
572
+ "properties": [
573
+ {
574
+ "name": "inputOutput",
575
+ "type": "InputOutput"
576
+ },
577
+ {
578
+ "name": "connectorId",
579
+ "type": "String"
580
+ }
581
+ ]
582
+ },
583
+ {
584
+ "name": "InputOutput",
585
+ "superClass": [
586
+ "Element"
587
+ ],
588
+ "meta": {
589
+ "allowedIn": [
590
+ "bpmn:FlowNode",
591
+ "camunda:Connector"
592
+ ]
593
+ },
594
+ "properties": [
595
+ {
596
+ "name": "inputOutput",
597
+ "type": "InputOutput"
598
+ },
599
+ {
600
+ "name": "connectorId",
601
+ "type": "String"
602
+ },
603
+ {
604
+ "name": "inputParameters",
605
+ "isMany": true,
606
+ "type": "InputParameter"
607
+ },
608
+ {
609
+ "name": "outputParameters",
610
+ "isMany": true,
611
+ "type": "OutputParameter"
612
+ }
613
+ ]
614
+ },
615
+ {
616
+ "name": "InputOutputParameter",
617
+ "properties": [
618
+ {
619
+ "name": "name",
620
+ "isAttr": true,
621
+ "type": "String"
622
+ },
623
+ {
624
+ "name": "value",
625
+ "isBody": true,
626
+ "type": "String"
627
+ },
628
+ {
629
+ "name": "definition",
630
+ "type": "InputOutputParameterDefinition"
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "name": "InputOutputParameterDefinition",
636
+ "isAbstract": true
637
+ },
638
+ {
639
+ "name": "List",
640
+ "superClass": [ "InputOutputParameterDefinition" ],
641
+ "properties": [
642
+ {
643
+ "name": "items",
644
+ "isMany": true,
645
+ "type": "InputOutputParameterDefinition"
646
+ }
647
+ ]
648
+ },
649
+ {
650
+ "name": "Map",
651
+ "superClass": [ "InputOutputParameterDefinition" ],
652
+ "properties": [
653
+ {
654
+ "name": "entries",
655
+ "isMany": true,
656
+ "type": "Entry"
657
+ }
658
+ ]
659
+ },
660
+ {
661
+ "name": "Entry",
662
+ "properties": [
663
+ {
664
+ "name": "key",
665
+ "isAttr": true,
666
+ "type": "String"
667
+ },
668
+ {
669
+ "name": "value",
670
+ "isBody": true,
671
+ "type": "String"
672
+ },
673
+ {
674
+ "name": "definition",
675
+ "type": "InputOutputParameterDefinition"
676
+ }
677
+ ]
678
+ },
679
+ {
680
+ "name": "Value",
681
+ "superClass": [
682
+ "InputOutputParameterDefinition"
683
+ ],
684
+ "properties": [
685
+ {
686
+ "name": "id",
687
+ "isAttr": true,
688
+ "type": "String"
689
+ },
690
+ {
691
+ "name": "name",
692
+ "isAttr": true,
693
+ "type": "String"
694
+ },
695
+ {
696
+ "name": "value",
697
+ "isBody": true,
698
+ "type": "String"
699
+ }
700
+ ]
701
+ },
702
+ {
703
+ "name": "Script",
704
+ "superClass": [ "InputOutputParameterDefinition" ],
705
+ "properties": [
706
+ {
707
+ "name": "scriptFormat",
708
+ "isAttr": true,
709
+ "type": "String"
710
+ },
711
+ {
712
+ "name": "resource",
713
+ "isAttr": true,
714
+ "type": "String"
715
+ },
716
+ {
717
+ "name": "value",
718
+ "isBody": true,
719
+ "type": "String"
720
+ }
721
+ ]
722
+ },
723
+ {
724
+ "name": "Field",
725
+ "superClass": [ "Element" ],
726
+ "meta": {
727
+ "allowedIn": [
728
+ "camunda:ServiceTaskLike",
729
+ "camunda:ExecutionListener",
730
+ "camunda:TaskListener"
731
+ ]
732
+ },
733
+ "properties": [
734
+ {
735
+ "name": "name",
736
+ "isAttr": true,
737
+ "type": "String"
738
+ },
739
+ {
740
+ "name": "expression",
741
+ "type": "String"
742
+ },
743
+ {
744
+ "name": "stringValue",
745
+ "isAttr": true,
746
+ "type": "String"
747
+ },
748
+ {
749
+ "name": "string",
750
+ "type": "String"
751
+ }
752
+ ]
753
+ },
754
+ {
755
+ "name": "InputParameter",
756
+ "superClass": [ "InputOutputParameter" ]
757
+ },
758
+ {
759
+ "name": "OutputParameter",
760
+ "superClass": [ "InputOutputParameter" ]
761
+ },
762
+ {
763
+ "name": "Collectable",
764
+ "isAbstract": true,
765
+ "extends": [ "bpmn:MultiInstanceLoopCharacteristics" ],
766
+ "superClass": [ "camunda:AsyncCapable" ],
767
+ "properties": [
768
+ {
769
+ "name": "collection",
770
+ "isAttr": true,
771
+ "type": "String"
772
+ },
773
+ {
774
+ "name": "elementVariable",
775
+ "isAttr": true,
776
+ "type": "String"
777
+ }
778
+ ]
779
+ },
780
+ {
781
+ "name": "FailedJobRetryTimeCycle",
782
+ "superClass": [ "Element" ],
783
+ "meta": {
784
+ "allowedIn": [
785
+ "camunda:AsyncCapable",
786
+ "bpmn:MultiInstanceLoopCharacteristics"
787
+ ]
788
+ },
789
+ "properties": [
790
+ {
791
+ "name": "body",
792
+ "isBody": true,
793
+ "type": "String"
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "name": "ExecutionListener",
799
+ "superClass": [ "Element" ],
800
+ "meta": {
801
+ "allowedIn": [
802
+ "bpmn:Task",
803
+ "bpmn:ServiceTask",
804
+ "bpmn:UserTask",
805
+ "bpmn:BusinessRuleTask",
806
+ "bpmn:ScriptTask",
807
+ "bpmn:ReceiveTask",
808
+ "bpmn:ManualTask",
809
+ "bpmn:ExclusiveGateway",
810
+ "bpmn:SequenceFlow",
811
+ "bpmn:ParallelGateway",
812
+ "bpmn:InclusiveGateway",
813
+ "bpmn:EventBasedGateway",
814
+ "bpmn:StartEvent",
815
+ "bpmn:IntermediateCatchEvent",
816
+ "bpmn:IntermediateThrowEvent",
817
+ "bpmn:EndEvent",
818
+ "bpmn:BoundaryEvent",
819
+ "bpmn:CallActivity",
820
+ "bpmn:SubProcess",
821
+ "bpmn:Process"
822
+ ]
823
+ },
824
+ "properties": [
825
+ {
826
+ "name": "expression",
827
+ "isAttr": true,
828
+ "type": "String"
829
+ },
830
+ {
831
+ "name": "class",
832
+ "isAttr": true,
833
+ "type": "String"
834
+ },
835
+ {
836
+ "name": "delegateExpression",
837
+ "isAttr": true,
838
+ "type": "String"
839
+ },
840
+ {
841
+ "name": "event",
842
+ "isAttr": true,
843
+ "type": "String"
844
+ },
845
+ {
846
+ "name": "script",
847
+ "type": "Script"
848
+ },
849
+ {
850
+ "name": "fields",
851
+ "type": "Field",
852
+ "isMany": true
853
+ }
854
+ ]
855
+ },
856
+ {
857
+ "name": "TaskListener",
858
+ "superClass": [ "Element" ],
859
+ "meta": {
860
+ "allowedIn": [
861
+ "bpmn:UserTask"
862
+ ]
863
+ },
864
+ "properties": [
865
+ {
866
+ "name": "expression",
867
+ "isAttr": true,
868
+ "type": "String"
869
+ },
870
+ {
871
+ "name": "class",
872
+ "isAttr": true,
873
+ "type": "String"
874
+ },
875
+ {
876
+ "name": "delegateExpression",
877
+ "isAttr": true,
878
+ "type": "String"
879
+ },
880
+ {
881
+ "name": "event",
882
+ "isAttr": true,
883
+ "type": "String"
884
+ },
885
+ {
886
+ "name": "script",
887
+ "type": "Script"
888
+ },
889
+ {
890
+ "name": "fields",
891
+ "type": "Field",
892
+ "isMany": true
893
+ },
894
+ {
895
+ "name": "id",
896
+ "type": "String",
897
+ "isAttr": true
898
+ },
899
+ {
900
+ "name": "eventDefinitions",
901
+ "type": "bpmn:TimerEventDefinition",
902
+ "isMany": true
903
+ }
904
+ ]
905
+ },
906
+ {
907
+ "name": "FormProperty",
908
+ "superClass": [ "Element" ],
909
+ "meta": {
910
+ "allowedIn": [
911
+ "bpmn:StartEvent",
912
+ "bpmn:UserTask"
913
+ ]
914
+ },
915
+ "properties": [
916
+ {
917
+ "name": "id",
918
+ "type": "String",
919
+ "isAttr": true
920
+ },
921
+ {
922
+ "name": "name",
923
+ "type": "String",
924
+ "isAttr": true
925
+ },
926
+ {
927
+ "name": "type",
928
+ "type": "String",
929
+ "isAttr": true
930
+ },
931
+ {
932
+ "name": "required",
933
+ "type": "String",
934
+ "isAttr": true
935
+ },
936
+ {
937
+ "name": "readable",
938
+ "type": "String",
939
+ "isAttr": true
940
+ },
941
+ {
942
+ "name": "writable",
943
+ "type": "String",
944
+ "isAttr": true
945
+ },
946
+ {
947
+ "name": "variable",
948
+ "type": "String",
949
+ "isAttr": true
950
+ },
951
+ {
952
+ "name": "expression",
953
+ "type": "String",
954
+ "isAttr": true
955
+ },
956
+ {
957
+ "name": "datePattern",
958
+ "type": "String",
959
+ "isAttr": true
960
+ },
961
+ {
962
+ "name": "default",
963
+ "type": "String",
964
+ "isAttr": true
965
+ },
966
+ {
967
+ "name": "values",
968
+ "type": "Value",
969
+ "isMany": true
970
+ }
971
+ ]
972
+ },
973
+ {
974
+ "name": "FormData",
975
+ "superClass": [ "Element" ],
976
+ "meta": {
977
+ "allowedIn": [
978
+ "bpmn:StartEvent",
979
+ "bpmn:UserTask"
980
+ ]
981
+ },
982
+ "properties": [
983
+ {
984
+ "name": "fields",
985
+ "type": "FormField",
986
+ "isMany": true
987
+ },
988
+ {
989
+ "name": "businessKey",
990
+ "type": "String",
991
+ "isAttr": true
992
+ }
993
+ ]
994
+ },
995
+ {
996
+ "name": "FormField",
997
+ "superClass": [ "Element" ],
998
+ "properties": [
999
+ {
1000
+ "name": "id",
1001
+ "type": "String",
1002
+ "isAttr": true
1003
+ },
1004
+ {
1005
+ "name": "label",
1006
+ "type": "String",
1007
+ "isAttr": true
1008
+ },
1009
+ {
1010
+ "name": "type",
1011
+ "type": "String",
1012
+ "isAttr": true
1013
+ },
1014
+ {
1015
+ "name": "datePattern",
1016
+ "type": "String",
1017
+ "isAttr": true
1018
+ },
1019
+ {
1020
+ "name": "defaultValue",
1021
+ "type": "String",
1022
+ "isAttr": true
1023
+ },
1024
+ {
1025
+ "name": "properties",
1026
+ "type": "Properties"
1027
+ },
1028
+ {
1029
+ "name": "validation",
1030
+ "type": "Validation"
1031
+ },
1032
+ {
1033
+ "name": "values",
1034
+ "type": "Value",
1035
+ "isMany": true
1036
+ }
1037
+ ]
1038
+ },
1039
+ {
1040
+ "name": "Validation",
1041
+ "superClass": [ "Element" ],
1042
+ "properties": [
1043
+ {
1044
+ "name": "constraints",
1045
+ "type": "Constraint",
1046
+ "isMany": true
1047
+ }
1048
+ ]
1049
+ },
1050
+ {
1051
+ "name": "Constraint",
1052
+ "superClass": [ "Element" ],
1053
+ "properties": [
1054
+ {
1055
+ "name": "name",
1056
+ "type": "String",
1057
+ "isAttr": true
1058
+ },
1059
+ {
1060
+ "name": "config",
1061
+ "type": "String",
1062
+ "isAttr": true
1063
+ }
1064
+ ]
1065
+ },
1066
+ {
1067
+ "name": "ConditionalEventDefinition",
1068
+ "isAbstract": true,
1069
+ "extends": [
1070
+ "bpmn:ConditionalEventDefinition"
1071
+ ],
1072
+ "properties": [
1073
+ {
1074
+ "name": "variableName",
1075
+ "isAttr": true,
1076
+ "type": "String"
1077
+ },
1078
+ {
1079
+ "name": "variableEvents",
1080
+ "isAttr": true,
1081
+ "type": "String"
1082
+ }
1083
+ ]
1084
+ }
1085
+ ],
1086
+ "emumerations": [ ]
1087
+ }