tianheng-ui 0.1.0 → 0.1.2

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 +229 -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,1071 @@
1
+ {
2
+ "name": "Activiti",
3
+ "uri": "http://activiti.org/bpmn",
4
+ "prefix": "activiti",
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
+ ]
73
+ }
74
+ },
75
+ {
76
+ "name": "Out",
77
+ "superClass": [
78
+ "InOutBinding"
79
+ ],
80
+ "meta": {
81
+ "allowedIn": [
82
+ "bpmn:CallActivity"
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "name": "AsyncCapable",
88
+ "isAbstract": true,
89
+ "extends": [
90
+ "bpmn:Activity",
91
+ "bpmn:Gateway",
92
+ "bpmn:Event"
93
+ ],
94
+ "properties": [
95
+ {
96
+ "name": "async",
97
+ "isAttr": true,
98
+ "type": "Boolean",
99
+ "default": false
100
+ },
101
+ {
102
+ "name": "asyncBefore",
103
+ "isAttr": true,
104
+ "type": "Boolean",
105
+ "default": false
106
+ },
107
+ {
108
+ "name": "asyncAfter",
109
+ "isAttr": true,
110
+ "type": "Boolean",
111
+ "default": false
112
+ },
113
+ {
114
+ "name": "exclusive",
115
+ "isAttr": true,
116
+ "type": "Boolean",
117
+ "default": true
118
+ }
119
+ ]
120
+ },
121
+ {
122
+ "name": "JobPriorized",
123
+ "isAbstract": true,
124
+ "extends": [
125
+ "bpmn:Process",
126
+ "activiti:AsyncCapable"
127
+ ],
128
+ "properties": [
129
+ {
130
+ "name": "jobPriority",
131
+ "isAttr": true,
132
+ "type": "String"
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "name": "SignalEventDefinition",
138
+ "isAbstract": true,
139
+ "extends": [
140
+ "bpmn:SignalEventDefinition"
141
+ ],
142
+ "properties": [
143
+ {
144
+ "name": "async",
145
+ "isAttr": true,
146
+ "type": "Boolean",
147
+ "default": false
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "name": "ErrorEventDefinition",
153
+ "isAbstract": true,
154
+ "extends": [
155
+ "bpmn:ErrorEventDefinition"
156
+ ],
157
+ "properties": [
158
+ {
159
+ "name": "errorCodeVariable",
160
+ "isAttr": true,
161
+ "type": "String"
162
+ },
163
+ {
164
+ "name": "errorMessageVariable",
165
+ "isAttr": true,
166
+ "type": "String"
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "name": "Error",
172
+ "isAbstract": true,
173
+ "extends": [
174
+ "bpmn:Error"
175
+ ],
176
+ "properties": [
177
+ {
178
+ "name": "activiti:errorMessage",
179
+ "isAttr": true,
180
+ "type": "String"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "name": "PotentialStarter",
186
+ "superClass": [
187
+ "Element"
188
+ ],
189
+ "properties": [
190
+ {
191
+ "name": "resourceAssignmentExpression",
192
+ "type": "bpmn:ResourceAssignmentExpression"
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "name": "FormSupported",
198
+ "isAbstract": true,
199
+ "extends": [
200
+ "bpmn:StartEvent",
201
+ "bpmn:UserTask"
202
+ ],
203
+ "properties": [
204
+ {
205
+ "name": "formHandlerClass",
206
+ "isAttr": true,
207
+ "type": "String"
208
+ },
209
+ {
210
+ "name": "formKey",
211
+ "isAttr": true,
212
+ "type": "String"
213
+ }
214
+ ]
215
+ },
216
+ {
217
+ "name": "TemplateSupported",
218
+ "isAbstract": true,
219
+ "extends": [
220
+ "bpmn:Process",
221
+ "bpmn:FlowElement"
222
+ ],
223
+ "properties": [
224
+ {
225
+ "name": "modelerTemplate",
226
+ "isAttr": true,
227
+ "type": "String"
228
+ }
229
+ ]
230
+ },
231
+ {
232
+ "name": "Initiator",
233
+ "isAbstract": true,
234
+ "extends": [ "bpmn:StartEvent" ],
235
+ "properties": [
236
+ {
237
+ "name": "initiator",
238
+ "isAttr": true,
239
+ "type": "String"
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "name": "ScriptTask",
245
+ "isAbstract": true,
246
+ "extends": [
247
+ "bpmn:ScriptTask"
248
+ ],
249
+ "properties": [
250
+ {
251
+ "name": "resultVariable",
252
+ "isAttr": true,
253
+ "type": "String"
254
+ },
255
+ {
256
+ "name": "resource",
257
+ "isAttr": true,
258
+ "type": "String"
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "name": "Process",
264
+ "isAbstract": true,
265
+ "extends": [
266
+ "bpmn:Process"
267
+ ],
268
+ "properties": [
269
+ {
270
+ "name": "candidateStarterGroups",
271
+ "isAttr": true,
272
+ "type": "String"
273
+ },
274
+ {
275
+ "name": "candidateStarterUsers",
276
+ "isAttr": true,
277
+ "type": "String"
278
+ },
279
+ {
280
+ "name": "versionTag",
281
+ "isAttr": true,
282
+ "type": "String"
283
+ },
284
+ {
285
+ "name": "historyTimeToLive",
286
+ "isAttr": true,
287
+ "type": "String"
288
+ },
289
+ {
290
+ "name": "isStartableInTasklist",
291
+ "isAttr": true,
292
+ "type": "Boolean",
293
+ "default": true
294
+ },
295
+ {
296
+ "name":"executionListener",
297
+ "isAbstract": true,
298
+ "type":"Expression"
299
+ }
300
+ ]
301
+ },
302
+ {
303
+ "name": "EscalationEventDefinition",
304
+ "isAbstract": true,
305
+ "extends": [
306
+ "bpmn:EscalationEventDefinition"
307
+ ],
308
+ "properties": [
309
+ {
310
+ "name": "escalationCodeVariable",
311
+ "isAttr": true,
312
+ "type": "String"
313
+ }
314
+ ]
315
+ },
316
+ {
317
+ "name": "FormalExpression",
318
+ "isAbstract": true,
319
+ "extends": [
320
+ "bpmn:FormalExpression"
321
+ ],
322
+ "properties": [
323
+ {
324
+ "name": "resource",
325
+ "isAttr": true,
326
+ "type": "String"
327
+ }
328
+ ]
329
+ },
330
+ {
331
+ "name": "multiinstance_type",
332
+ "superClass":[
333
+ "Element"
334
+ ]
335
+ },
336
+ {
337
+ "name": "multiinstance_condition",
338
+ "superClass":[
339
+ "Element"
340
+ ]
341
+ },
342
+ {
343
+ "name": "Assignable",
344
+ "extends": [ "bpmn:UserTask" ],
345
+ "properties": [
346
+ {
347
+ "name": "assignee",
348
+ "isAttr": true,
349
+ "type": "String"
350
+ },
351
+ {
352
+ "name": "candidateUsers",
353
+ "isAttr": true,
354
+ "type": "String"
355
+ },
356
+ {
357
+ "name": "candidateGroups",
358
+ "isAttr": true,
359
+ "type": "String"
360
+ },
361
+ {
362
+ "name": "dueDate",
363
+ "isAttr": true,
364
+ "type": "String"
365
+ },
366
+ {
367
+ "name": "followUpDate",
368
+ "isAttr": true,
369
+ "type": "String"
370
+ },
371
+ {
372
+ "name": "priority",
373
+ "isAttr": true,
374
+ "type": "String"
375
+ },
376
+ {
377
+ "name": "multiinstance_condition",
378
+ "isAttr": true,
379
+ "type": "String"
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "name": "CallActivity",
385
+ "extends": [ "bpmn:CallActivity" ],
386
+ "properties": [
387
+ {
388
+ "name": "calledElementBinding",
389
+ "isAttr": true,
390
+ "type": "String",
391
+ "default": "latest"
392
+ },
393
+ {
394
+ "name": "calledElementVersion",
395
+ "isAttr": true,
396
+ "type": "String"
397
+ },
398
+ {
399
+ "name": "calledElementVersionTag",
400
+ "isAttr": true,
401
+ "type": "String"
402
+ },
403
+ {
404
+ "name": "calledElementTenantId",
405
+ "isAttr": true,
406
+ "type": "String"
407
+ },
408
+ {
409
+ "name": "caseRef",
410
+ "isAttr": true,
411
+ "type": "String"
412
+ },
413
+ {
414
+ "name": "caseBinding",
415
+ "isAttr": true,
416
+ "type": "String",
417
+ "default": "latest"
418
+ },
419
+ {
420
+ "name": "caseVersion",
421
+ "isAttr": true,
422
+ "type": "String"
423
+ },
424
+ {
425
+ "name": "caseTenantId",
426
+ "isAttr": true,
427
+ "type": "String"
428
+ },
429
+ {
430
+ "name": "variableMappingClass",
431
+ "isAttr": true,
432
+ "type": "String"
433
+ },
434
+ {
435
+ "name": "variableMappingDelegateExpression",
436
+ "isAttr": true,
437
+ "type": "String"
438
+ }
439
+ ]
440
+ },
441
+ {
442
+ "name": "ServiceTaskLike",
443
+ "extends": [
444
+ "bpmn:ServiceTask",
445
+ "bpmn:BusinessRuleTask",
446
+ "bpmn:SendTask",
447
+ "bpmn:MessageEventDefinition"
448
+ ],
449
+ "properties": [
450
+ {
451
+ "name": "expression",
452
+ "isAttr": true,
453
+ "type": "String"
454
+ },
455
+ {
456
+ "name": "class",
457
+ "isAttr": true,
458
+ "type": "String"
459
+ },
460
+ {
461
+ "name": "delegateExpression",
462
+ "isAttr": true,
463
+ "type": "String"
464
+ },
465
+ {
466
+ "name": "resultVariable",
467
+ "isAttr": true,
468
+ "type": "String"
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "name": "DmnCapable",
474
+ "extends": [
475
+ "bpmn:BusinessRuleTask"
476
+ ],
477
+ "properties": [
478
+ {
479
+ "name": "decisionRef",
480
+ "isAttr": true,
481
+ "type": "String"
482
+ },
483
+ {
484
+ "name": "decisionRefBinding",
485
+ "isAttr": true,
486
+ "type": "String",
487
+ "default": "latest"
488
+ },
489
+ {
490
+ "name": "decisionRefVersion",
491
+ "isAttr": true,
492
+ "type": "String"
493
+ },
494
+ {
495
+ "name": "mapDecisionResult",
496
+ "isAttr": true,
497
+ "type": "String",
498
+ "default": "resultList"
499
+ },
500
+ {
501
+ "name": "decisionRefTenantId",
502
+ "isAttr": true,
503
+ "type": "String"
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "name": "ExternalCapable",
509
+ "extends": [
510
+ "activiti:ServiceTaskLike"
511
+ ],
512
+ "properties": [
513
+ {
514
+ "name": "type",
515
+ "isAttr": true,
516
+ "type": "String"
517
+ },
518
+ {
519
+ "name": "topic",
520
+ "isAttr": true,
521
+ "type": "String"
522
+ }
523
+ ]
524
+ },
525
+ {
526
+ "name": "TaskPriorized",
527
+ "extends": [
528
+ "bpmn:Process",
529
+ "activiti:ExternalCapable"
530
+ ],
531
+ "properties": [
532
+ {
533
+ "name": "taskPriority",
534
+ "isAttr": true,
535
+ "type": "String"
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "name": "Properties",
541
+ "superClass": [
542
+ "Element"
543
+ ],
544
+ "meta": {
545
+ "allowedIn": [ "*" ]
546
+ },
547
+ "properties": [
548
+ {
549
+ "name": "values",
550
+ "type": "Property",
551
+ "isMany": true
552
+ }
553
+ ]
554
+ },
555
+ {
556
+ "name": "Property",
557
+ "superClass": [
558
+ "Element"
559
+ ],
560
+ "properties": [
561
+ {
562
+ "name": "id",
563
+ "type": "String",
564
+ "isAttr": true
565
+ },
566
+ {
567
+ "name": "name",
568
+ "type": "String",
569
+ "isAttr": true
570
+ },
571
+ {
572
+ "name": "value",
573
+ "type": "String",
574
+ "isAttr": true
575
+ }
576
+ ]
577
+ },
578
+ {
579
+ "name": "Connector",
580
+ "superClass": [
581
+ "Element"
582
+ ],
583
+ "meta": {
584
+ "allowedIn": [
585
+ "activiti:ServiceTaskLike"
586
+ ]
587
+ },
588
+ "properties": [
589
+ {
590
+ "name": "inputOutput",
591
+ "type": "InputOutput"
592
+ },
593
+ {
594
+ "name": "connectorId",
595
+ "type": "String"
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "name": "InputOutput",
601
+ "superClass": [
602
+ "Element"
603
+ ],
604
+ "meta": {
605
+ "allowedIn": [
606
+ "bpmn:FlowNode",
607
+ "activiti:Connector"
608
+ ]
609
+ },
610
+ "properties": [
611
+ {
612
+ "name": "inputOutput",
613
+ "type": "InputOutput"
614
+ },
615
+ {
616
+ "name": "connectorId",
617
+ "type": "String"
618
+ },
619
+ {
620
+ "name": "inputParameters",
621
+ "isMany": true,
622
+ "type": "InputParameter"
623
+ },
624
+ {
625
+ "name": "outputParameters",
626
+ "isMany": true,
627
+ "type": "OutputParameter"
628
+ }
629
+ ]
630
+ },
631
+ {
632
+ "name": "InputOutputParameter",
633
+ "properties": [
634
+ {
635
+ "name": "name",
636
+ "isAttr": true,
637
+ "type": "String"
638
+ },
639
+ {
640
+ "name": "value",
641
+ "isBody": true,
642
+ "type": "String"
643
+ },
644
+ {
645
+ "name": "definition",
646
+ "type": "InputOutputParameterDefinition"
647
+ }
648
+ ]
649
+ },
650
+ {
651
+ "name": "InputOutputParameterDefinition",
652
+ "isAbstract": true
653
+ },
654
+ {
655
+ "name": "List",
656
+ "superClass": [ "InputOutputParameterDefinition" ],
657
+ "properties": [
658
+ {
659
+ "name": "items",
660
+ "isMany": true,
661
+ "type": "InputOutputParameterDefinition"
662
+ }
663
+ ]
664
+ },
665
+ {
666
+ "name": "Map",
667
+ "superClass": [ "InputOutputParameterDefinition" ],
668
+ "properties": [
669
+ {
670
+ "name": "entries",
671
+ "isMany": true,
672
+ "type": "Entry"
673
+ }
674
+ ]
675
+ },
676
+ {
677
+ "name": "Entry",
678
+ "properties": [
679
+ {
680
+ "name": "key",
681
+ "isAttr": true,
682
+ "type": "String"
683
+ },
684
+ {
685
+ "name": "value",
686
+ "isBody": true,
687
+ "type": "String"
688
+ },
689
+ {
690
+ "name": "definition",
691
+ "type": "InputOutputParameterDefinition"
692
+ }
693
+ ]
694
+ },
695
+ {
696
+ "name": "Value",
697
+ "superClass": [
698
+ "InputOutputParameterDefinition"
699
+ ],
700
+ "properties": [
701
+ {
702
+ "name": "id",
703
+ "isAttr": true,
704
+ "type": "String"
705
+ },
706
+ {
707
+ "name": "name",
708
+ "isAttr": true,
709
+ "type": "String"
710
+ },
711
+ {
712
+ "name": "value",
713
+ "isBody": true,
714
+ "type": "String"
715
+ }
716
+ ]
717
+ },
718
+ {
719
+ "name": "Script",
720
+ "superClass": [ "InputOutputParameterDefinition" ],
721
+ "properties": [
722
+ {
723
+ "name": "scriptFormat",
724
+ "isAttr": true,
725
+ "type": "String"
726
+ },
727
+ {
728
+ "name": "resource",
729
+ "isAttr": true,
730
+ "type": "String"
731
+ },
732
+ {
733
+ "name": "value",
734
+ "isBody": true,
735
+ "type": "String"
736
+ }
737
+ ]
738
+ },
739
+ {
740
+ "name": "Field",
741
+ "superClass": [ "Element" ],
742
+ "meta": {
743
+ "allowedIn": [
744
+ "activiti:ServiceTaskLike",
745
+ "activiti:ExecutionListener",
746
+ "activiti:TaskListener"
747
+ ]
748
+ },
749
+ "properties": [
750
+ {
751
+ "name": "name",
752
+ "isAttr": true,
753
+ "type": "String"
754
+ },
755
+ {
756
+ "name": "expression",
757
+ "type": "String"
758
+ },
759
+ {
760
+ "name": "stringValue",
761
+ "isAttr": true,
762
+ "type": "String"
763
+ },
764
+ {
765
+ "name": "string",
766
+ "type": "String"
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "name": "InputParameter",
772
+ "superClass": [ "InputOutputParameter" ]
773
+ },
774
+ {
775
+ "name": "OutputParameter",
776
+ "superClass": [ "InputOutputParameter" ]
777
+ },
778
+ {
779
+ "name": "Collectable",
780
+ "isAbstract": true,
781
+ "extends": [ "bpmn:MultiInstanceLoopCharacteristics" ],
782
+ "superClass": [ "activiti:AsyncCapable" ],
783
+ "properties": [
784
+ {
785
+ "name": "collection",
786
+ "isAttr": true,
787
+ "type": "String"
788
+ },
789
+ {
790
+ "name": "elementVariable",
791
+ "isAttr": true,
792
+ "type": "String"
793
+ }
794
+ ]
795
+ },
796
+ {
797
+ "name": "FailedJobRetryTimeCycle",
798
+ "superClass": [ "Element" ],
799
+ "meta": {
800
+ "allowedIn": [
801
+ "activiti:AsyncCapable",
802
+ "bpmn:MultiInstanceLoopCharacteristics"
803
+ ]
804
+ },
805
+ "properties": [
806
+ {
807
+ "name": "body",
808
+ "isBody": true,
809
+ "type": "String"
810
+ }
811
+ ]
812
+ },
813
+ {
814
+ "name": "ExecutionListener",
815
+ "superClass": [ "Element" ],
816
+ "meta": {
817
+ "allowedIn": [
818
+ "bpmn:Task",
819
+ "bpmn:ServiceTask",
820
+ "bpmn:UserTask",
821
+ "bpmn:BusinessRuleTask",
822
+ "bpmn:ScriptTask",
823
+ "bpmn:ReceiveTask",
824
+ "bpmn:ManualTask",
825
+ "bpmn:ExclusiveGateway",
826
+ "bpmn:SequenceFlow",
827
+ "bpmn:ParallelGateway",
828
+ "bpmn:InclusiveGateway",
829
+ "bpmn:EventBasedGateway",
830
+ "bpmn:StartEvent",
831
+ "bpmn:IntermediateCatchEvent",
832
+ "bpmn:IntermediateThrowEvent",
833
+ "bpmn:EndEvent",
834
+ "bpmn:BoundaryEvent",
835
+ "bpmn:CallActivity",
836
+ "bpmn:SubProcess",
837
+ "bpmn:Process"
838
+ ]
839
+ },
840
+ "properties": [
841
+ {
842
+ "name": "expression",
843
+ "isAttr": true,
844
+ "type": "String"
845
+ },
846
+ {
847
+ "name": "class",
848
+ "isAttr": true,
849
+ "type": "String"
850
+ },
851
+ {
852
+ "name": "delegateExpression",
853
+ "isAttr": true,
854
+ "type": "String"
855
+ },
856
+ {
857
+ "name": "event",
858
+ "isAttr": true,
859
+ "type": "String"
860
+ },
861
+ {
862
+ "name": "script",
863
+ "type": "Script"
864
+ },
865
+ {
866
+ "name": "fields",
867
+ "type": "Field",
868
+ "isMany": true
869
+ }
870
+ ]
871
+ },
872
+ {
873
+ "name": "TaskListener",
874
+ "superClass": [ "Element" ],
875
+ "meta": {
876
+ "allowedIn": [
877
+ "bpmn:UserTask"
878
+ ]
879
+ },
880
+ "properties": [
881
+ {
882
+ "name": "expression",
883
+ "isAttr": true,
884
+ "type": "String"
885
+ },
886
+ {
887
+ "name": "class",
888
+ "isAttr": true,
889
+ "type": "String"
890
+ },
891
+ {
892
+ "name": "delegateExpression",
893
+ "isAttr": true,
894
+ "type": "String"
895
+ },
896
+ {
897
+ "name": "event",
898
+ "isAttr": true,
899
+ "type": "String"
900
+ },
901
+ {
902
+ "name": "script",
903
+ "type": "Script"
904
+ },
905
+ {
906
+ "name": "fields",
907
+ "type": "Field",
908
+ "isMany": true
909
+ }
910
+ ]
911
+ },
912
+ {
913
+ "name": "FormProperty",
914
+ "superClass": [ "Element" ],
915
+ "meta": {
916
+ "allowedIn": [
917
+ "bpmn:StartEvent",
918
+ "bpmn:UserTask"
919
+ ]
920
+ },
921
+ "properties": [
922
+ {
923
+ "name": "id",
924
+ "type": "String",
925
+ "isAttr": true
926
+ },
927
+ {
928
+ "name": "name",
929
+ "type": "String",
930
+ "isAttr": true
931
+ },
932
+ {
933
+ "name": "type",
934
+ "type": "String",
935
+ "isAttr": true
936
+ },
937
+ {
938
+ "name": "required",
939
+ "type": "String",
940
+ "isAttr": true
941
+ },
942
+ {
943
+ "name": "readable",
944
+ "type": "String",
945
+ "isAttr": true
946
+ },
947
+ {
948
+ "name": "writable",
949
+ "type": "String",
950
+ "isAttr": true
951
+ },
952
+ {
953
+ "name": "variable",
954
+ "type": "String",
955
+ "isAttr": true
956
+ },
957
+ {
958
+ "name": "expression",
959
+ "type": "String",
960
+ "isAttr": true
961
+ },
962
+ {
963
+ "name": "datePattern",
964
+ "type": "String",
965
+ "isAttr": true
966
+ },
967
+ {
968
+ "name": "default",
969
+ "type": "String",
970
+ "isAttr": true
971
+ },
972
+ {
973
+ "name": "values",
974
+ "type": "Value",
975
+ "isMany": true
976
+ }
977
+ ]
978
+ },
979
+ {
980
+ "name": "FormProperty",
981
+ "superClass": [ "Element" ],
982
+ "properties": [
983
+ {
984
+ "name": "id",
985
+ "type": "String",
986
+ "isAttr": true
987
+ },
988
+ {
989
+ "name": "label",
990
+ "type": "String",
991
+ "isAttr": true
992
+ },
993
+ {
994
+ "name": "type",
995
+ "type": "String",
996
+ "isAttr": true
997
+ },
998
+ {
999
+ "name": "datePattern",
1000
+ "type": "String",
1001
+ "isAttr": true
1002
+ },
1003
+ {
1004
+ "name": "defaultValue",
1005
+ "type": "String",
1006
+ "isAttr": true
1007
+ },
1008
+ {
1009
+ "name": "properties",
1010
+ "type": "Properties"
1011
+ },
1012
+ {
1013
+ "name": "validation",
1014
+ "type": "Validation"
1015
+ },
1016
+ {
1017
+ "name": "values",
1018
+ "type": "Value",
1019
+ "isMany": true
1020
+ }
1021
+ ]
1022
+ },
1023
+ {
1024
+ "name": "Validation",
1025
+ "superClass": [ "Element" ],
1026
+ "properties": [
1027
+ {
1028
+ "name": "constraints",
1029
+ "type": "Constraint",
1030
+ "isMany": true
1031
+ }
1032
+ ]
1033
+ },
1034
+ {
1035
+ "name": "Constraint",
1036
+ "superClass": [ "Element" ],
1037
+ "properties": [
1038
+ {
1039
+ "name": "name",
1040
+ "type": "String",
1041
+ "isAttr": true
1042
+ },
1043
+ {
1044
+ "name": "config",
1045
+ "type": "String",
1046
+ "isAttr": true
1047
+ }
1048
+ ]
1049
+ },
1050
+ {
1051
+ "name": "ConditionalEventDefinition",
1052
+ "isAbstract": true,
1053
+ "extends": [
1054
+ "bpmn:ConditionalEventDefinition"
1055
+ ],
1056
+ "properties": [
1057
+ {
1058
+ "name": "variableName",
1059
+ "isAttr": true,
1060
+ "type": "String"
1061
+ },
1062
+ {
1063
+ "name": "variableEvent",
1064
+ "isAttr": true,
1065
+ "type": "String"
1066
+ }
1067
+ ]
1068
+ }
1069
+ ],
1070
+ "emumerations": [ ]
1071
+ }