workflow-editor 0.0.81-up-tmp12 → 0.0.81-up-tmp16

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 (281) hide show
  1. package/es/{index.mjs → index.js} +4 -4
  2. package/es/plugins/{formValidatorUtil.mjs → formValidatorUtil.js} +16 -16
  3. package/es/plugins/{index.mjs → index.js} +1 -1
  4. package/es/src/i18n/i18n.js +7 -0
  5. package/es/style.css +152 -152
  6. package/es/workflow-editor/index.js +10 -0
  7. package/es/workflow-editor/src/json-object-templates/{auto-task.mjs → auto-task.js} +1 -1
  8. package/es/workflow-editor/src/json-object-templates/{copy-task.mjs → copy-task.js} +1 -1
  9. package/es/workflow-editor/src/json-object-templates/{decision.mjs → decision.js} +1 -1
  10. package/es/workflow-editor/src/json-object-templates/{end.mjs → end.js} +1 -1
  11. package/es/workflow-editor/src/json-object-templates/{fork.mjs → fork.js} +1 -1
  12. package/es/workflow-editor/src/json-object-templates/{human-decision.mjs → human-decision.js} +1 -1
  13. package/es/workflow-editor/src/json-object-templates/{human-task.mjs → human-task.js} +1 -1
  14. package/es/workflow-editor/src/json-object-templates/{join.mjs → join.js} +1 -1
  15. package/es/workflow-editor/src/json-object-templates/{process.mjs → process.js} +2 -2
  16. package/es/workflow-editor/src/json-object-templates/{start.mjs → start.js} +1 -1
  17. package/es/workflow-editor/src/json-object-templates/{subprocess.mjs → subprocess.js} +1 -1
  18. package/es/workflow-editor/src/main/{admin-save-dialog.vue.mjs → admin-save-dialog.vue.js} +1 -1
  19. package/es/workflow-editor/src/main/{canvas.vue.mjs → canvas.vue.js} +29 -29
  20. package/es/workflow-editor/src/main/{context-menu.vue.mjs → context-menu.vue.js} +3 -3
  21. package/es/workflow-editor/src/main/{icon-svg.vue.mjs → icon-svg.vue.js} +4 -4
  22. package/es/workflow-editor/src/main/{selection-region.vue.mjs → selection-region.vue.js} +3 -3
  23. package/es/workflow-editor/src/main/{tache-history-tooltip.vue.mjs → tache-history-tooltip.vue.js} +2 -2
  24. package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue.mjs → tache-subprocess-history-dialog.vue.js} +2 -2
  25. package/es/workflow-editor/src/main/{toolbox.vue.mjs → toolbox.vue.js} +6 -6
  26. package/es/workflow-editor/src/main/{wf-history-canvas.vue.mjs → wf-history-canvas.vue.js} +17 -17
  27. package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  28. package/es/workflow-editor/src/properties-editors/{auto-task.vue.mjs → auto-task.vue.js} +3 -3
  29. package/es/workflow-editor/src/properties-editors/common/{additional-condition-utils.mjs → additional-condition-utils.js} +2 -2
  30. package/es/workflow-editor/src/properties-editors/common/{additional-condition.vue.mjs → additional-condition.vue.js} +3 -3
  31. package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields-utils.mjs → auto-filled-fields-utils.js} +1 -1
  32. package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields.vue.mjs → auto-filled-fields.vue.js} +6 -6
  33. package/es/workflow-editor/src/properties-editors/common/{common-notice-tool.vue.mjs → common-notice-tool.vue.js} +3 -3
  34. package/es/workflow-editor/src/properties-editors/common/{common-user-condition.vue.mjs → common-user-condition.vue.js} +4 -4
  35. package/es/workflow-editor/src/properties-editors/common/{form-fields.vue.mjs → form-fields.vue.js} +2 -2
  36. package/es/workflow-editor/src/properties-editors/common/{i18n-input.vue.mjs → i18n-input.vue.js} +6 -6
  37. package/es/workflow-editor/src/properties-editors/common/{i18n-set-dialog.vue.mjs → i18n-set-dialog.vue.js} +2 -2
  38. package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue.mjs → notice-reminder.vue.js} +7 -7
  39. package/es/workflow-editor/src/properties-editors/common/{notice.vue.mjs → notice.vue.js} +4 -4
  40. package/es/workflow-editor/src/properties-editors/common/{reminder.vue.mjs → reminder.vue.js} +5 -5
  41. package/es/workflow-editor/src/properties-editors/common/{select-mail-template.vue.mjs → select-mail-template.vue.js} +1 -1
  42. package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue.mjs → system-role-tree-inline.vue.js} +2 -2
  43. package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue.mjs → system-role-tree.vue.js} +3 -3
  44. package/es/workflow-editor/src/properties-editors/common/{task-title.vue.mjs → task-title.vue.js} +4 -4
  45. package/es/workflow-editor/src/properties-editors/common/{transactor-settings.vue.mjs → transactor-settings.vue.js} +4 -4
  46. package/es/workflow-editor/src/properties-editors/common/{user-selection.vue.mjs → user-selection.vue.js} +4 -4
  47. package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue.mjs → value-selection-dialog.vue.js} +4 -4
  48. package/es/workflow-editor/src/properties-editors/common/{variables.vue.mjs → variables.vue.js} +1 -1
  49. package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  50. package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue.mjs → permission-settings.vue.js} +4 -4
  51. package/es/workflow-editor/src/properties-editors/{copy-task.vue.mjs → copy-task.vue.js} +11 -11
  52. package/es/workflow-editor/src/properties-editors/{decision.vue.mjs → decision.vue.js} +3 -3
  53. package/es/workflow-editor/src/properties-editors/{fork.vue.mjs → fork.vue.js} +2 -2
  54. package/es/workflow-editor/src/properties-editors/{human-decision.vue.mjs → human-decision.vue.js} +1 -1
  55. package/es/workflow-editor/src/properties-editors/human-task/{additional-condition-dialog.vue.mjs → additional-condition-dialog.vue.js} +2 -2
  56. package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  57. package/es/workflow-editor/src/properties-editors/human-task/{componentsConfigUtil.mjs → componentsConfigUtil.js} +1 -1
  58. package/es/workflow-editor/src/properties-editors/human-task/{custom-actions.vue.mjs → custom-actions.vue.js} +4 -4
  59. package/es/workflow-editor/src/properties-editors/human-task/{editable-child-field-setting.vue.mjs → editable-child-field-setting.vue.js} +3 -3
  60. package/es/workflow-editor/src/properties-editors/human-task/{editable-child-fields.vue.mjs → editable-child-fields.vue.js} +3 -3
  61. package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue.mjs → editable-field-selection.vue.js} +3 -3
  62. package/es/workflow-editor/src/properties-editors/human-task/{editable-fields.vue.mjs → editable-fields.vue.js} +4 -4
  63. package/es/workflow-editor/src/properties-editors/human-task/{events.vue.mjs → events.vue.js} +1 -1
  64. package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue.mjs → permission-settings.vue.js} +7 -7
  65. package/es/workflow-editor/src/properties-editors/human-task/{selection-conditions.vue.mjs → selection-conditions.vue.js} +4 -4
  66. package/es/workflow-editor/src/properties-editors/{human-task.vue.mjs → human-task.vue.js} +9 -9
  67. package/es/workflow-editor/src/properties-editors/{join.vue.mjs → join.vue.js} +1 -1
  68. package/es/workflow-editor/src/properties-editors/process/{basic-properties.vue.mjs → basic-properties.vue.js} +6 -6
  69. package/es/workflow-editor/src/properties-editors/process/{events.vue.mjs → events.vue.js} +6 -6
  70. package/es/workflow-editor/src/properties-editors/process/{notice-settings.vue.mjs → notice-settings.vue.js} +3 -3
  71. package/es/workflow-editor/src/properties-editors/process/{parameter-settings.vue.mjs → parameter-settings.vue.js} +2 -2
  72. package/es/workflow-editor/src/properties-editors/process/{permission-settings.vue.mjs → permission-settings.vue.js} +2 -2
  73. package/es/workflow-editor/src/properties-editors/process/{selectPage.vue.mjs → selectPage.vue.js} +1 -1
  74. package/es/workflow-editor/src/properties-editors/{process.vue.mjs → process.vue.js} +8 -8
  75. package/es/workflow-editor/src/properties-editors/subprocess/{basic-properties.vue.mjs → basic-properties.vue.js} +8 -8
  76. package/es/workflow-editor/src/properties-editors/subprocess/{events.vue.mjs → events.vue.js} +1 -1
  77. package/es/workflow-editor/src/properties-editors/subprocess/{field-mappings.vue.mjs → field-mappings.vue.js} +5 -5
  78. package/es/workflow-editor/src/properties-editors/subprocess/{transactor-settings.vue.mjs → transactor-settings.vue.js} +7 -7
  79. package/es/workflow-editor/src/properties-editors/{subprocess.vue.mjs → subprocess.vue.js} +5 -5
  80. package/es/workflow-editor/src/properties-editors/transition/{basic-properties.vue.mjs → basic-properties.vue.js} +3 -3
  81. package/es/workflow-editor/src/properties-editors/{transition.vue.mjs → transition.vue.js} +9 -9
  82. package/es/workflow-editor/src/properties-editors/{user-condition.mjs → user-condition.js} +1 -1
  83. package/es/workflow-editor/src/store/{workflow-editor.mjs → workflow-editor.js} +1 -1
  84. package/es/workflow-editor/src/taches/{auto-task.vue.mjs → auto-task.vue.js} +7 -7
  85. package/es/workflow-editor/src/taches/{common-methods.mjs → common-methods.js} +1 -1
  86. package/es/workflow-editor/src/taches/{copy-task.vue.mjs → copy-task.vue.js} +7 -7
  87. package/es/workflow-editor/src/taches/{custom-task.vue.mjs → custom-task.vue.js} +4 -4
  88. package/es/workflow-editor/src/taches/{decision.vue.mjs → decision.vue.js} +5 -5
  89. package/es/workflow-editor/src/taches/{end.vue.mjs → end.vue.js} +4 -4
  90. package/es/workflow-editor/src/taches/{fork.vue.mjs → fork.vue.js} +5 -5
  91. package/es/workflow-editor/src/taches/{human-decision.vue.mjs → human-decision.vue.js} +7 -7
  92. package/es/workflow-editor/src/taches/{human-task.vue.mjs → human-task.vue.js} +5 -5
  93. package/es/workflow-editor/src/taches/{join.vue.mjs → join.vue.js} +4 -4
  94. package/es/workflow-editor/src/taches/{joint.vue.mjs → joint.vue.js} +3 -3
  95. package/es/workflow-editor/src/taches/{start.vue.mjs → start.vue.js} +4 -4
  96. package/es/workflow-editor/src/taches/{subprocess.vue.mjs → subprocess.vue.js} +7 -7
  97. package/es/workflow-editor/src/taches/{tache-resizer.vue.mjs → tache-resizer.vue.js} +2 -2
  98. package/es/workflow-editor/src/transitions/{broken-line.vue.mjs → broken-line.vue.js} +3 -3
  99. package/es/workflow-editor/src/transitions/{curve-line.vue.mjs → curve-line.vue.js} +3 -3
  100. package/es/workflow-editor/src/transitions/{straight-line.vue.mjs → straight-line.vue.js} +2 -2
  101. package/es/workflow-editor/src/transitions/{transition.vue.mjs → transition.vue.js} +8 -8
  102. package/es/workflow-editor/src/transitions/{virtual-transition.vue.mjs → virtual-transition.vue.js} +3 -3
  103. package/es/workflow-editor/src/{util.mjs → util.js} +13 -13
  104. package/es/workflow-editor/src/{workflow-editor.vue.mjs → workflow-editor.vue.js} +16 -16
  105. package/es/workflow-editor/src/{workflow-history.vue.mjs → workflow-history.vue.js} +8 -8
  106. package/lib/style.css +144 -144
  107. package/package.json +7 -1
  108. package/.prettierrc.json +0 -9
  109. package/es/src/i18n/i18n.mjs +0 -7
  110. package/es/workflow-editor/index.mjs +0 -10
  111. package/index.html +0 -13
  112. package/packages/index.js +0 -50
  113. package/packages/plugins/formValidatorUtil.js +0 -723
  114. package/packages/plugins/index.js +0 -8
  115. package/packages/workflow-editor/index.js +0 -14
  116. package/packages/workflow-editor/src/api.js +0 -7
  117. package/packages/workflow-editor/src/assets/tab-select.png +0 -0
  118. package/packages/workflow-editor/src/assets/tab-selectWhite.png +0 -0
  119. package/packages/workflow-editor/src/assets/wf-editor-icons.js +0 -2
  120. package/packages/workflow-editor/src/constant.js +0 -8
  121. package/packages/workflow-editor/src/json-object-templates/auto-task.js +0 -70
  122. package/packages/workflow-editor/src/json-object-templates/copy-task.js +0 -72
  123. package/packages/workflow-editor/src/json-object-templates/decision.js +0 -11
  124. package/packages/workflow-editor/src/json-object-templates/end.js +0 -14
  125. package/packages/workflow-editor/src/json-object-templates/fork.js +0 -10
  126. package/packages/workflow-editor/src/json-object-templates/human-decision.js +0 -9
  127. package/packages/workflow-editor/src/json-object-templates/human-task.js +0 -208
  128. package/packages/workflow-editor/src/json-object-templates/join.js +0 -10
  129. package/packages/workflow-editor/src/json-object-templates/process.js +0 -99
  130. package/packages/workflow-editor/src/json-object-templates/start.js +0 -13
  131. package/packages/workflow-editor/src/json-object-templates/subprocess.js +0 -31
  132. package/packages/workflow-editor/src/json-object-templates/transition.js +0 -26
  133. package/packages/workflow-editor/src/main/admin-save-dialog.vue +0 -67
  134. package/packages/workflow-editor/src/main/canvas.vue +0 -493
  135. package/packages/workflow-editor/src/main/context-menu.vue +0 -147
  136. package/packages/workflow-editor/src/main/icon-svg.vue +0 -32
  137. package/packages/workflow-editor/src/main/selection-region.vue +0 -66
  138. package/packages/workflow-editor/src/main/tache-history-tooltip.vue +0 -38
  139. package/packages/workflow-editor/src/main/tache-name-input.vue +0 -19
  140. package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +0 -40
  141. package/packages/workflow-editor/src/main/toolbox.vue +0 -60
  142. package/packages/workflow-editor/src/main/wf-history-canvas.vue +0 -309
  143. package/packages/workflow-editor/src/process-json.js +0 -624
  144. package/packages/workflow-editor/src/process-service.js +0 -68
  145. package/packages/workflow-editor/src/properties-editors/auto-task/basic-properties.vue +0 -81
  146. package/packages/workflow-editor/src/properties-editors/auto-task/permission-settings.vue +0 -155
  147. package/packages/workflow-editor/src/properties-editors/auto-task.vue +0 -74
  148. package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +0 -568
  149. package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +0 -320
  150. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +0 -34
  151. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +0 -268
  152. package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +0 -81
  153. package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +0 -242
  154. package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +0 -23
  155. package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +0 -117
  156. package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +0 -88
  157. package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +0 -143
  158. package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +0 -149
  159. package/packages/workflow-editor/src/properties-editors/common/notice.vue +0 -108
  160. package/packages/workflow-editor/src/properties-editors/common/reminder.vue +0 -272
  161. package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +0 -92
  162. package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +0 -66
  163. package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +0 -354
  164. package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +0 -68
  165. package/packages/workflow-editor/src/properties-editors/common/task-title.vue +0 -165
  166. package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +0 -275
  167. package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +0 -426
  168. package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +0 -272
  169. package/packages/workflow-editor/src/properties-editors/common/variables.vue +0 -139
  170. package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +0 -90
  171. package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +0 -155
  172. package/packages/workflow-editor/src/properties-editors/copy-task.vue +0 -95
  173. package/packages/workflow-editor/src/properties-editors/decision.vue +0 -95
  174. package/packages/workflow-editor/src/properties-editors/fork.vue +0 -77
  175. package/packages/workflow-editor/src/properties-editors/human-decision.vue +0 -49
  176. package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +0 -62
  177. package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +0 -184
  178. package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +0 -359
  179. package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +0 -256
  180. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +0 -405
  181. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +0 -257
  182. package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +0 -430
  183. package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +0 -206
  184. package/packages/workflow-editor/src/properties-editors/human-task/events.vue +0 -60
  185. package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +0 -224
  186. package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +0 -499
  187. package/packages/workflow-editor/src/properties-editors/human-task.vue +0 -107
  188. package/packages/workflow-editor/src/properties-editors/join.vue +0 -49
  189. package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +0 -336
  190. package/packages/workflow-editor/src/properties-editors/process/events.vue +0 -79
  191. package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +0 -68
  192. package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +0 -106
  193. package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +0 -28
  194. package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +0 -88
  195. package/packages/workflow-editor/src/properties-editors/process.vue +0 -115
  196. package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +0 -201
  197. package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +0 -26
  198. package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +0 -216
  199. package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +0 -66
  200. package/packages/workflow-editor/src/properties-editors/subprocess.vue +0 -80
  201. package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +0 -53
  202. package/packages/workflow-editor/src/properties-editors/transition.vue +0 -75
  203. package/packages/workflow-editor/src/properties-editors/user-condition.js +0 -183
  204. package/packages/workflow-editor/src/store/getters.js +0 -33
  205. package/packages/workflow-editor/src/store/workflow-editor.js +0 -153
  206. package/packages/workflow-editor/src/taches/auto-task.vue +0 -99
  207. package/packages/workflow-editor/src/taches/common-methods.js +0 -21
  208. package/packages/workflow-editor/src/taches/copy-task.vue +0 -99
  209. package/packages/workflow-editor/src/taches/custom-task.vue +0 -88
  210. package/packages/workflow-editor/src/taches/decision.vue +0 -102
  211. package/packages/workflow-editor/src/taches/end.vue +0 -76
  212. package/packages/workflow-editor/src/taches/fork.vue +0 -102
  213. package/packages/workflow-editor/src/taches/human-decision.vue +0 -102
  214. package/packages/workflow-editor/src/taches/human-task.vue +0 -113
  215. package/packages/workflow-editor/src/taches/join.vue +0 -91
  216. package/packages/workflow-editor/src/taches/joint.vue +0 -177
  217. package/packages/workflow-editor/src/taches/start.vue +0 -76
  218. package/packages/workflow-editor/src/taches/subprocess.vue +0 -99
  219. package/packages/workflow-editor/src/taches/tache-resizer.vue +0 -80
  220. package/packages/workflow-editor/src/transitions/broken-line.vue +0 -91
  221. package/packages/workflow-editor/src/transitions/curve-line.vue +0 -91
  222. package/packages/workflow-editor/src/transitions/straight-line.vue +0 -26
  223. package/packages/workflow-editor/src/transitions/transition.vue +0 -209
  224. package/packages/workflow-editor/src/transitions/virtual-transition.vue +0 -43
  225. package/packages/workflow-editor/src/util.js +0 -499
  226. package/packages/workflow-editor/src/workflow-editor.vue +0 -852
  227. package/packages/workflow-editor/src/workflow-history.vue +0 -153
  228. package/public/vite.svg +0 -1
  229. package/src/i18n/i18n.js +0 -16
  230. package/src/i18n/langs/cn.js +0 -521
  231. package/src/i18n/langs/en.js +0 -529
  232. package/vite.config.js +0 -103
  233. /package/es/_virtual/{_plugin-vue_export-helper.mjs → _plugin-vue_export-helper.js} +0 -0
  234. /package/es/src/i18n/langs/{cn.mjs → cn.js} +0 -0
  235. /package/es/src/i18n/langs/{en.mjs → en.js} +0 -0
  236. /package/es/workflow-editor/src/{api.mjs → api.js} +0 -0
  237. /package/es/workflow-editor/src/assets/{wf-editor-icons.mjs → wf-editor-icons.js} +0 -0
  238. /package/es/workflow-editor/src/json-object-templates/{transition.mjs → transition.js} +0 -0
  239. /package/es/workflow-editor/src/main/{canvas.vue2.mjs → canvas.vue2.js} +0 -0
  240. /package/es/workflow-editor/src/main/{context-menu.vue2.mjs → context-menu.vue2.js} +0 -0
  241. /package/es/workflow-editor/src/main/{icon-svg.vue2.mjs → icon-svg.vue2.js} +0 -0
  242. /package/es/workflow-editor/src/main/{selection-region.vue2.mjs → selection-region.vue2.js} +0 -0
  243. /package/es/workflow-editor/src/main/{tache-history-tooltip.vue2.mjs → tache-history-tooltip.vue2.js} +0 -0
  244. /package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue2.mjs → tache-subprocess-history-dialog.vue2.js} +0 -0
  245. /package/es/workflow-editor/src/main/{toolbox.vue2.mjs → toolbox.vue2.js} +0 -0
  246. /package/es/workflow-editor/src/main/{wf-history-canvas.vue2.mjs → wf-history-canvas.vue2.js} +0 -0
  247. /package/es/workflow-editor/src/{process-service.mjs → process-service.js} +0 -0
  248. /package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  249. /package/es/workflow-editor/src/properties-editors/{auto-task.vue2.mjs → auto-task.vue2.js} +0 -0
  250. /package/es/workflow-editor/src/properties-editors/common/{form-fields-utils.mjs → form-fields-utils.js} +0 -0
  251. /package/es/workflow-editor/src/properties-editors/common/{form-fields.vue2.mjs → form-fields.vue2.js} +0 -0
  252. /package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue2.mjs → notice-reminder.vue2.js} +0 -0
  253. /package/es/workflow-editor/src/properties-editors/common/{reminder.vue2.mjs → reminder.vue2.js} +0 -0
  254. /package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue2.mjs → system-role-tree-inline.vue2.js} +0 -0
  255. /package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue2.mjs → system-role-tree.vue2.js} +0 -0
  256. /package/es/workflow-editor/src/properties-editors/common/{task-title.vue2.mjs → task-title.vue2.js} +0 -0
  257. /package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue2.mjs → value-selection-dialog.vue2.js} +0 -0
  258. /package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  259. /package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
  260. /package/es/workflow-editor/src/properties-editors/{copy-task.vue2.mjs → copy-task.vue2.js} +0 -0
  261. /package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  262. /package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue2.mjs → editable-field-selection.vue2.js} +0 -0
  263. /package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
  264. /package/es/workflow-editor/src/properties-editors/{human-task.vue2.mjs → human-task.vue2.js} +0 -0
  265. /package/es/workflow-editor/src/properties-editors/{subprocess.vue2.mjs → subprocess.vue2.js} +0 -0
  266. /package/es/workflow-editor/src/properties-editors/{transition.vue2.mjs → transition.vue2.js} +0 -0
  267. /package/es/workflow-editor/src/store/{getters.mjs → getters.js} +0 -0
  268. /package/es/workflow-editor/src/taches/{decision.vue2.mjs → decision.vue2.js} +0 -0
  269. /package/es/workflow-editor/src/taches/{end.vue2.mjs → end.vue2.js} +0 -0
  270. /package/es/workflow-editor/src/taches/{fork.vue2.mjs → fork.vue2.js} +0 -0
  271. /package/es/workflow-editor/src/taches/{human-decision.vue2.mjs → human-decision.vue2.js} +0 -0
  272. /package/es/workflow-editor/src/taches/{join.vue2.mjs → join.vue2.js} +0 -0
  273. /package/es/workflow-editor/src/taches/{joint.vue2.mjs → joint.vue2.js} +0 -0
  274. /package/es/workflow-editor/src/taches/{start.vue2.mjs → start.vue2.js} +0 -0
  275. /package/es/workflow-editor/src/taches/{tache-resizer.vue2.mjs → tache-resizer.vue2.js} +0 -0
  276. /package/es/workflow-editor/src/transitions/{broken-line.vue2.mjs → broken-line.vue2.js} +0 -0
  277. /package/es/workflow-editor/src/transitions/{curve-line.vue2.mjs → curve-line.vue2.js} +0 -0
  278. /package/es/workflow-editor/src/transitions/{transition.vue2.mjs → transition.vue2.js} +0 -0
  279. /package/es/workflow-editor/src/transitions/{virtual-transition.vue2.mjs → virtual-transition.vue2.js} +0 -0
  280. /package/es/workflow-editor/src/{workflow-editor.vue2.mjs → workflow-editor.vue2.js} +0 -0
  281. /package/es/workflow-editor/src/{workflow-history.vue2.mjs → workflow-history.vue2.js} +0 -0
@@ -1,7 +1,7 @@
1
- import o from "./workflow-editor/index.mjs";
2
- import r from "./plugins/index.mjs";
3
- import { default as default2 } from "./src/i18n/langs/cn.mjs";
4
- import { default as default3 } from "./src/i18n/langs/en.mjs";
1
+ import o from "./workflow-editor/index.js";
2
+ import r from "./plugins/index.js";
3
+ import { default as default2 } from "./src/i18n/langs/cn.js";
4
+ import { default as default3 } from "./src/i18n/langs/en.js";
5
5
  const n = o.WorkflowEditor, t = o.WorkflowHistory, i = o.wfEditorStore, s = [n, t], e = function(o2) {
6
6
  e.installed || (s.forEach((r2) => {
7
7
  o2.component(r2.name, r2);
@@ -1,5 +1,5 @@
1
- import e from "../node_modules/async-validator/dist-web/index.mjs";
2
- import { getI18n as t } from "../workflow-editor/src/util.mjs";
1
+ import e from "../node_modules/async-validator/dist-web/index.js";
2
+ import { getI18n as t } from "../workflow-editor/src/util.js";
3
3
  import { parseSubTablePermissionCondition as n } from "agilebuilder-ui";
4
4
  function o(e2, n2) {
5
5
  const o2 = {}, r2 = e2.dataType;
@@ -104,8 +104,8 @@ function u(e2, t2, o2, i2, r2, s2, l2, d2, f2) {
104
104
  const g = e2[c2];
105
105
  if (f2.indexOf(g) < 0)
106
106
  continue;
107
- const b = t2[g], m = b.condition, p = n(m, i2, r2, o2, s2, l2, d2);
108
- if (null != p && true === p)
107
+ const b = t2[g], p = b.condition, m = n(p, i2, r2, o2, s2, l2, d2);
108
+ if (null != m && true === m)
109
109
  if (void 0 === u2)
110
110
  a2[g] = b;
111
111
  else {
@@ -123,22 +123,22 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
123
123
  const f2 = Object.keys(t2);
124
124
  if (f2.indexOf("rules") >= 0 && f2.indexOf("subRules") >= 0 && f2.indexOf("totalSubRules") >= 0) {
125
125
  const f3 = t2.rules, c2 = t2.subRules, g = t2.totalSubRules, b = t2.dataTypeMap;
126
- let m = d(e2, f3, null, n2, null, null, l2);
127
- return (!l2 && true === m || l2 && true === m.msg) && (c2 || g) && (m = function(e3, t3, n3, o3, i3, r3, s3, l3, f4, c3) {
126
+ let p = d(e2, f3, null, n2, null, null, l2);
127
+ return (!l2 && true === p || l2 && true === p.msg) && (c2 || g) && (p = function(e3, t3, n3, o3, i3, r3, s3, l3, f4, c3) {
128
128
  let g2 = {};
129
129
  if (n3 && (g2 = JSON.parse(JSON.stringify(n3))), t3) {
130
130
  const n4 = Object.keys(t3);
131
131
  for (let b2 = 0; b2 < n4.length; b2++) {
132
- const m2 = n4[b2], p = t3[m2], w = Object.keys(p);
133
- let O = e3[m2];
132
+ const p2 = n4[b2], m = t3[p2], w = Object.keys(m);
133
+ let O = e3[p2];
134
134
  O || (O = []);
135
- const x = a(g2, e3, m2);
135
+ const x = a(g2, e3, p2);
136
136
  if (true !== x)
137
- return delete g2[m2], c3 ? { msg: x, listCode: m2 } : x;
137
+ return delete g2[p2], c3 ? { msg: x, listCode: p2 } : x;
138
138
  let y, E = [];
139
- f4 && f4[m2] && (y = f4[m2].pageSize, E = f4[m2].fields || []);
139
+ f4 && f4[p2] && (y = f4[p2].pageSize, E = f4[p2].fields || []);
140
140
  for (let t4 = 0; t4 < O.length; t4++) {
141
- const n5 = O[t4], f5 = u(w, p, O[t4], i3, e3, r3, s3, l3, E);
141
+ const n5 = O[t4], f5 = u(w, m, O[t4], i3, e3, r3, s3, l3, E);
142
142
  let a2, g3;
143
143
  void 0 !== y && y > 0 && (a2 = Math.ceil((t4 + 1) / y), g3 = t4 + 1 - (a2 - 1) * y), Object.keys(f5).forEach((o4) => {
144
144
  const i4 = f5[o4];
@@ -149,7 +149,7 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
149
149
  });
150
150
  const b3 = d(n5, f5, t4, o3, a2, g3, c3);
151
151
  if (!c3 && true !== b3 || c3 && true !== b3.msg)
152
- return c3 && (b3.listCode = m2), b3;
152
+ return c3 && (b3.listCode = p2), b3;
153
153
  }
154
154
  }
155
155
  }
@@ -159,7 +159,7 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
159
159
  return c3 ? { msg: n4, listCode: t4 } : n4;
160
160
  }
161
161
  return !c3 || { msg: true };
162
- }(e2, c2, g, n2, b, o2, i2, r2, s2, l2)), m;
162
+ }(e2, c2, g, n2, b, o2, i2, r2, s2, l2)), p;
163
163
  }
164
164
  return d(e2, t2, null, n2, null, null, l2);
165
165
  }, getValidator: function(e2, i2, r2, s2, d2, f2) {
@@ -170,9 +170,9 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
170
170
  if (void 0 !== b && true === b) {
171
171
  let b2 = e3.name;
172
172
  if (b2) {
173
- const m = e3.condition, p = null;
173
+ const p = e3.condition, m = null;
174
174
  let w = null;
175
- if (w = b2.indexOf(".") > 0 && 0 === b2.indexOf("$") || n(m, a2, p, i2, s2, d2, f2), null != w && true === w) {
175
+ if (w = b2.indexOf(".") > 0 && 0 === b2.indexOf("$") || n(p, a2, m, i2, s2, d2, f2), null != w && true === w) {
176
176
  let n2 = {};
177
177
  if (b2.indexOf(".") > 0)
178
178
  0 === b2.indexOf("$") ? function(e4, t2, n3, i3, r3) {
@@ -1,4 +1,4 @@
1
- import o from "./formValidatorUtil.mjs";
1
+ import o from "./formValidatorUtil.js";
2
2
  const t = { install: function(t2, a) {
3
3
  t2.config.globalProperties.$formValidator = o.formValidator, t2.config.globalProperties.$getValidator = o.getValidator;
4
4
  } };
@@ -0,0 +1,7 @@
1
+ import { createI18n as e } from "vue-i18n";
2
+ import n from "./langs/en.js";
3
+ import o from "./langs/cn.js";
4
+ const s = e({ locale: "cn", messages: { en: n, cn: o }, legacy: false });
5
+ export {
6
+ s as default
7
+ };
package/es/style.css CHANGED
@@ -1,29 +1,4 @@
1
- @charset "UTF-8";.main[data-v-6658e14b] {
2
- position: relative;
3
- display: flex;
4
- height: 100%;
5
- width: 100%;
6
- }
7
- .canvas-container[data-v-6658e14b] {
8
- position: relative;
9
- height: 100%;
10
- width: 100%;
11
- }
12
- section[data-v-6658e14b] {
13
- overflow: hidden;
14
- width: 100%;
15
- height: 100%;
16
- padding: 0;
17
- }
18
- .canvas[data-v-6658e14b] {
19
- overflow: auto;
20
- height: 100%;
21
- padding: 0;
22
- min-height: 500px;
23
- }
24
- .canvas[data-v-6658e14b] .draggable {
25
- cursor: default;
26
- }
1
+ @charset "UTF-8";
27
2
  .button-area[data-v-865cb4ee] {
28
3
  padding: 5px 0 5px 5px;
29
4
  height: 50px;
@@ -125,20 +100,31 @@ pre[data-v-865cb4ee] {
125
100
  /* 去掉卡片和tab表头的距离 */
126
101
  [data-v-865cb4ee] .el-tabs__header {
127
102
  margin: 0;
128
- }h3[data-v-0d941719] {
129
- color: #999999;
130
- margin: 0;
103
+ }.main[data-v-6658e14b] {
104
+ position: relative;
105
+ display: flex;
106
+ height: 100%;
107
+ width: 100%;
108
+ }
109
+ .canvas-container[data-v-6658e14b] {
110
+ position: relative;
111
+ height: 100%;
112
+ width: 100%;
113
+ }
114
+ section[data-v-6658e14b] {
115
+ overflow: hidden;
116
+ width: 100%;
117
+ height: 100%;
131
118
  padding: 0;
132
- font-weight: bold;
133
- font-size: 18px;
134
119
  }
135
- .el-button[data-v-0d941719] {
136
- margin: 6px 0;
137
- min-width: 110px;
138
- padding: 9px 15px;
120
+ .canvas[data-v-6658e14b] {
121
+ overflow: auto;
122
+ height: 100%;
123
+ padding: 0;
124
+ min-height: 500px;
139
125
  }
140
- .el-button i[data-v-0d941719] {
141
- padding-right: 4px;
126
+ .canvas[data-v-6658e14b] .draggable {
127
+ cursor: default;
142
128
  }
143
129
  #svg{
144
130
  /* border:1px solid red; */
@@ -169,14 +155,22 @@ g text{
169
155
  fill: #fff;
170
156
  stroke: #666;
171
157
  stroke-width: 2;
172
- }
173
-
174
- .svg-icon {
175
- width: 1em;
176
- height: 1em;
177
- vertical-align: -0.15em;
178
- fill: currentColor;
179
- overflow: hidden;
158
+ }
159
+ .passed-tache .task-tache{
160
+ fill: green;
161
+ stroke: green;
162
+ stroke-width: 2;
163
+ }
164
+ .current-tache .task-tache{
165
+ fill: red;
166
+ stroke: red;
167
+ stroke-width: 2;
168
+ }
169
+ .passed-tache text{
170
+ fill:white;
171
+ }
172
+ .current-tache text{
173
+ fill: white
180
174
  }
181
175
 
182
176
  #svg{
@@ -208,24 +202,30 @@ g text{
208
202
  fill: #fff;
209
203
  stroke: #666;
210
204
  stroke-width: 2;
205
+ }
206
+
207
+ .svg-icon {
208
+ width: 1em;
209
+ height: 1em;
210
+ vertical-align: -0.15em;
211
+ fill: currentColor;
212
+ overflow: hidden;
213
+ }
214
+ h3[data-v-0d941719] {
215
+ color: #999999;
216
+ margin: 0;
217
+ padding: 0;
218
+ font-weight: bold;
219
+ font-size: 18px;
211
220
  }
212
- .passed-tache .task-tache{
213
- fill: green;
214
- stroke: green;
215
- stroke-width: 2;
216
- }
217
- .current-tache .task-tache{
218
- fill: red;
219
- stroke: red;
220
- stroke-width: 2;
221
- }
222
- .passed-tache text{
223
- fill:white;
221
+ .el-button[data-v-0d941719] {
222
+ margin: 6px 0;
223
+ min-width: 110px;
224
+ padding: 9px 15px;
224
225
  }
225
- .current-tache text{
226
- fill: white
227
- }
228
- li[data-v-7e8a1cf6] {
226
+ .el-button i[data-v-0d941719] {
227
+ padding-right: 4px;
228
+ }li[data-v-7e8a1cf6] {
229
229
  color: #333;
230
230
  }
231
231
  .context-menu[data-v-7e8a1cf6] {
@@ -269,33 +269,52 @@ li[data-v-7e8a1cf6] {
269
269
  fill:#fff;
270
270
  }
271
271
 
272
- .human-decision{
273
- stroke-width: 0;
274
- fill:#fff;
275
- }
276
-
277
272
  .decision{
278
273
  stroke-width: 0;
279
274
  fill:#fff;
280
275
  }
281
276
 
282
- .virtual-transition{
283
- stroke-width: 2;
284
- stroke:#000;
285
- stroke-dasharray: 2 2;
286
- fill: none;
277
+ .transition[data-v-a1576cad] {
278
+ stroke-width: 2;
279
+ stroke: #666;
280
+ fill: none;
281
+ cursor: pointer;
282
+ }
283
+ .selected[data-v-a1576cad] {
284
+ stroke: red;
285
+ }
286
+ .transition-dragger[data-v-a1576cad] {
287
+ stroke: red;
288
+ stroke-width: 1;
289
+ fill: white;
290
+ cursor: move;
291
+ }
292
+ .no-events[data-v-a1576cad] {
293
+ pointer-events: none;
287
294
  }
288
-
295
+ .tooltip[data-v-ac799913] {
296
+ position: absolute;
297
+ background: #fff;
298
+ min-width: 150px;
299
+ border-radius: 4px;
300
+ border: 1px solid #ebeef5;
301
+ padding: 12px;
302
+ z-index: 2000;
303
+ color: #606266;
304
+ line-height: 1.4;
305
+ text-align: justify;
306
+ font-size: 14px;
307
+ box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
308
+ word-break: break-all;
309
+ }
289
310
  .decision{
290
311
  stroke-width: 0;
291
312
  fill:#fff;
292
313
  }
293
-
294
- /* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
295
- .properties-editor[data-v-1651d82a] .el-dialog__body {
296
- padding-top: 0;
297
- }
298
-
314
+ #_subprocess-content[data-v-2b195c05] {
315
+ width: 100%;
316
+ height: calc(100vh - 200px);
317
+ }
299
318
  .selection-region{
300
319
  stroke: blue;
301
320
  stroke-width: 1;
@@ -310,32 +329,25 @@ li[data-v-7e8a1cf6] {
310
329
  pointer-events:none;
311
330
  }
312
331
 
313
- .transition[data-v-a1576cad] {
314
- stroke-width: 2;
315
- stroke: #666;
316
- fill: none;
317
- cursor: pointer;
318
- }
319
- .selected[data-v-a1576cad] {
320
- stroke: red;
321
- }
322
- .transition-dragger[data-v-a1576cad] {
323
- stroke: red;
324
- stroke-width: 1;
325
- fill: white;
326
- cursor: move;
327
- }
328
- .no-events[data-v-a1576cad] {
329
- pointer-events: none;
332
+ .virtual-transition{
333
+ stroke-width: 2;
334
+ stroke:#000;
335
+ stroke-dasharray: 2 2;
336
+ fill: none;
337
+ }
338
+
339
+ .human-decision{
340
+ stroke-width: 0;
341
+ fill:#fff;
330
342
  }
331
343
 
332
344
  /* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
333
- .properties-editor[data-v-0e44fe8c] .el-dialog__body{
334
- padding-top: 0
345
+ .properties-editor[data-v-1651d82a] .el-dialog__body {
346
+ padding-top: 0;
335
347
  }
336
348
 
337
349
  /* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
338
- .properties-editor[data-v-af76d417] .el-dialog__body{
350
+ .properties-editor[data-v-0e44fe8c] .el-dialog__body{
339
351
  padding-top: 0
340
352
  }
341
353
 
@@ -348,24 +360,20 @@ li[data-v-7e8a1cf6] {
348
360
  .properties-editor[data-v-bd66d235] .el-dialog__body{
349
361
  padding-top: 0
350
362
  }
351
- .tooltip[data-v-ac799913] {
352
- position: absolute;
353
- background: #fff;
354
- min-width: 150px;
355
- border-radius: 4px;
356
- border: 1px solid #ebeef5;
357
- padding: 12px;
358
- z-index: 2000;
359
- color: #606266;
360
- line-height: 1.4;
361
- text-align: justify;
362
- font-size: 14px;
363
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
364
- word-break: break-all;
365
- }#_subprocess-content[data-v-2b195c05] {
366
- width: 100%;
367
- height: calc(100vh - 200px);
363
+
364
+ /* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
365
+ .properties-editor[data-v-af76d417] .el-dialog__body{
366
+ padding-top: 0
367
+ }
368
+
369
+ .control-point[data-v-0ff53a0a]{
370
+ fill: #fff;
371
+ cursor: move;
368
372
  }
373
+ .control-line[data-v-0ff53a0a] {
374
+ stroke-dasharray: 2 2
375
+ }
376
+
369
377
  .joint-container{
370
378
  stroke-width: 0;
371
379
  fill: #fff;
@@ -381,6 +389,24 @@ li[data-v-7e8a1cf6] {
381
389
  fill-opacity: 1;
382
390
  }
383
391
 
392
+ .control-point[data-v-788fb0ae]{
393
+ fill: #fff;
394
+ cursor: move;
395
+ }
396
+ .control-line[data-v-788fb0ae] {
397
+ stroke-dasharray: 2 2
398
+ }
399
+
400
+ .el-checkbox[data-v-c019538f]{
401
+ margin-left: 20px;
402
+ }
403
+
404
+ .percent[data-v-a219b06d] {
405
+ margin-left: 10px;
406
+ color: red;
407
+ font-size: 1.2em;
408
+ }
409
+
384
410
  .resizer{
385
411
  stroke: blue;
386
412
  stroke-width: 1;
@@ -396,33 +422,7 @@ ul li[data-v-39fac73c] {
396
422
  .sub-li[data-v-39fac73c] {
397
423
  padding-left: 10px;
398
424
  }
399
- .percent[data-v-a219b06d] {
400
- margin-left: 10px;
401
- color: red;
402
- font-size: 1.2em;
403
- }
404
-
405
- .el-checkbox[data-v-c019538f]{
406
- margin-left: 20px;
407
- }
408
-
409
- .control-point[data-v-788fb0ae]{
410
- fill: #fff;
411
- cursor: move;
412
- }
413
- .control-line[data-v-788fb0ae] {
414
- stroke-dasharray: 2 2
415
- }
416
-
417
- .control-point[data-v-0ff53a0a]{
418
- fill: #fff;
419
- cursor: move;
420
- }
421
- .control-line[data-v-0ff53a0a] {
422
- stroke-dasharray: 2 2
423
- }
424
-
425
- .percent[data-v-c1c7385b]{
425
+ .percent[data-v-6aef99ff]{
426
426
  margin-left: 10px;
427
427
  color:red;
428
428
  font-size:1.2em;
@@ -432,7 +432,7 @@ ul li[data-v-39fac73c] {
432
432
  margin-left: 20px;
433
433
  }
434
434
 
435
- .percent[data-v-6aef99ff]{
435
+ .percent[data-v-c1c7385b]{
436
436
  margin-left: 10px;
437
437
  color:red;
438
438
  font-size:1.2em;
@@ -459,10 +459,6 @@ select[data-v-aaf48aff]{
459
459
  height: 32px;
460
460
  line-height: 32px;
461
461
  }
462
-
463
- span[data-v-4e29ea06] {
464
- margin: 0 10px;
465
- }
466
462
  .group[data-v-98300543] {
467
463
  font-size: 14px;
468
464
  width: 100%;
@@ -478,11 +474,8 @@ span[data-v-4e29ea06] {
478
474
  padding-left: 20px;
479
475
  overflow: auto;
480
476
  }
481
- .searchResult {
482
- color:red
483
- }
484
- .inline-input-custom {
485
- width : 90%
477
+ span[data-v-4e29ea06] {
478
+ margin: 0 10px;
486
479
  }
487
480
 
488
481
  #custTabOne[data-v-7feaa2da] .el-tabs__content {
@@ -523,3 +516,10 @@ span[data-v-4e29ea06] {
523
516
  .inline-input-custom {
524
517
  width : 90%
525
518
  }
519
+
520
+ .searchResult {
521
+ color:red
522
+ }
523
+ .inline-input-custom {
524
+ width : 90%
525
+ }
@@ -0,0 +1,10 @@
1
+ import o from "./src/workflow-editor.vue.js";
2
+ import r from "./src/store/workflow-editor.js";
3
+ import t from "./src/workflow-history.vue.js";
4
+ o.install = function(r2) {
5
+ r2.component(o.name, o), r2.component(t.name, t);
6
+ };
7
+ const e = { WorkflowEditor: o, WorkflowHistory: t, wfEditorStore: r };
8
+ export {
9
+ e as default
10
+ };
@@ -1,4 +1,4 @@
1
- import i from "../../../src/i18n/i18n.mjs";
1
+ import i from "../../../src/i18n/i18n.js";
2
2
  function n() {
3
3
  return { attr: { id: "", name: i.global.t("workflowEditor.task.newAutoTask") }, g: {}, taskNotice: {}, basicProperties: { beanName: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, events: {}, permissionSettings: { editForm: { permission: false, field: [] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } } };
4
4
  }
@@ -1,4 +1,4 @@
1
- import i from "../../../src/i18n/i18n.mjs";
1
+ import i from "../../../src/i18n/i18n.js";
2
2
  function n() {
3
3
  return { attr: { id: "", name: i.global.t("workflowEditor.task.newCc") }, g: {}, taskNotice: {}, basicProperties: { taskTitle: "", remark: "", taskUrl: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, events: {}, permissionSettings: { editForm: { permission: false, field: [] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } } };
4
4
  }
@@ -1,4 +1,4 @@
1
- import t from "../../../src/i18n/i18n.mjs";
1
+ import t from "../../../src/i18n/i18n.js";
2
2
  function r() {
3
3
  return { attr: { id: "t3", name: t.global.t("workflowEditor.task.judge") }, g: {} };
4
4
  }
@@ -1,4 +1,4 @@
1
- import t from "../../../src/i18n/i18n.mjs";
1
+ import t from "../../../src/i18n/i18n.js";
2
2
  function r() {
3
3
  return { attr: { id: "", name: t.global.t("workflowEditor.task.end") }, g: {} };
4
4
  }
@@ -1,4 +1,4 @@
1
- import r from "../../../src/i18n/i18n.mjs";
1
+ import r from "../../../src/i18n/i18n.js";
2
2
  function t() {
3
3
  return { attr: { id: "", name: r.global.t("workflowEditor.task.branch") }, g: {} };
4
4
  }
@@ -1,4 +1,4 @@
1
- import t from "../../../src/i18n/i18n.mjs";
1
+ import t from "../../../src/i18n/i18n.js";
2
2
  function r() {
3
3
  return { attr: { name: t.global.t("workflowEditor.task.manualJudgment") }, g: {} };
4
4
  }
@@ -1,4 +1,4 @@
1
- import n from "../../../src/i18n/i18n.mjs";
1
+ import n from "../../../src/i18n/i18n.js";
2
2
  function i() {
3
3
  return { attr: { id: "newHumanTask", name: n.global.t("workflowEditor.task.newTask") }, g: {}, basicProperties: { processingMode: { type: "EDIT", passRate: 0, moreTransactor: false, actions: { action: [] } }, taskCode: "", taskTitle: "", remark: "", mailNotice: false, taskUrl: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, permissionSettings: { editForm: { permission: false, field: [], subTablePermission: [{ tableName: "sub_table1", permission: false, modelName: "model", action: [{ name: "notEmpty", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "add", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "update", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "delete", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }], field: [{ name: "all_fields", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "xxx", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }] }, { tableName: "sub_table2", permission: false, modelName: "model", action: [{ name: "notEmpty", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "add", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "update", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "delete", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }], field: [{ name: "all_fields", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "xxx", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }] }] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } }, autoFilledFields: { field: [] }, reminder: null, events: { afterComplete: false }, variables: { variable: [] } };
4
4
  }
@@ -1,4 +1,4 @@
1
- import r from "../../../src/i18n/i18n.mjs";
1
+ import r from "../../../src/i18n/i18n.js";
2
2
  function t() {
3
3
  return { attr: { id: "", name: r.global.t("workflowEditor.task.converge") }, g: {} };
4
4
  }
@@ -1,5 +1,5 @@
1
- import e from "./human-task.mjs";
2
- import r from "../../../src/i18n/i18n.mjs";
1
+ import e from "./human-task.js";
2
+ import r from "../../../src/i18n/i18n.js";
3
3
  function t() {
4
4
  const t2 = e();
5
5
  return t2.g = { x: 200, y: 150, width: 80, height: 40 }, { attr: { name: r.global.t("workflowEditor.task.newProcess"), code: "" }, properties: { basicProperties: { admin: "", formVersion: 1, formCode: "", processTypeCode: "", systemCode: "", creator: "", customType: "", branchCode: "" }, permissionSettings: { viewFlowHistory: "", viewSubscribeResult: "", viewVoteResult: "" }, reminder: null, parameterSettings: { doTask: { url: "", parameterName: "" }, viewForm: { url: "", parameterName: "" }, startProcess: { url: "", parameterName: "", parameterValue: "" }, handleEmergency: { url: "", parameterName: "" } }, events: { event: [] }, variables: { variable: [] } }, start: { attr: { id: "start" }, g: { x: 50, y: 50, width: 48, height: 48 } }, humanTask: t2, end: { attr: { id: "end" }, g: { x: 500, y: 300, width: 48, height: 48 } } };
@@ -1,4 +1,4 @@
1
- import t from "../../../src/i18n/i18n.mjs";
1
+ import t from "../../../src/i18n/i18n.js";
2
2
  function r() {
3
3
  return { attr: { id: "", name: t.global.t("workflowEditor.task.start") }, g: {} };
4
4
  }
@@ -1,4 +1,4 @@
1
- import t from "../../../src/i18n/i18n.mjs";
1
+ import t from "../../../src/i18n/i18n.js";
2
2
  function e() {
3
3
  return { attr: { id: "", name: t.global.t("workflowEditor.task.subprocess"), taskTitle: "" }, g: {}, processCode: "", processVersion: "", events: { beforeStart: "", end: false }, transactorSettings: { userCondition: "", additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, parameters: { field: [] }, result: { field: [] } };
4
4
  }
@@ -1,5 +1,5 @@
1
1
  import { resolveComponent as e, openBlock as o, createBlock as i, withCtx as l, createVNode as t, createTextVNode as d, toDisplayString as a, createElementVNode as n } from "vue";
2
- import r from "../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import r from "../../../_virtual/_plugin-vue_export-helper.js";
3
3
  const s = r({ name: "AdminSaveDialog", data: () => ({ dialogVisible: true }), methods: { updateWfVersion() {
4
4
  this.$emit("update");
5
5
  }, addWfVersion() {