workflow-editor 0.0.14-up → 0.0.16-up
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.
- package/.vscode/extensions.json +3 -3
- package/README.md +7 -7
- package/index.html +13 -13
- package/lib/workflow-editor.css +1 -1
- package/lib/workflow-editor.js +978 -865
- package/lib/workflow-editor.umd.cjs +17 -17
- package/package.json +2 -2
- package/packages/workflow-editor/src/main/toolbox.vue +0 -1
- package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +20 -10
- package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +4 -4
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +4 -4
- package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +1 -1
- package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/common/notice.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/common/reminder.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/common/task-title.vue +3 -3
- package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +47 -8
- package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +3 -3
- package/packages/workflow-editor/src/properties-editors/common/variables.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +25 -9
- package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +2 -2
- package/packages/workflow-editor/src/properties-editors/human-task.vue +1 -1
- package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +5 -3
- package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +10 -5
- package/packages/workflow-editor/src/workflow-editor.vue +10 -6
- package/src/i18n/i18n.js +15 -15
- package/src/i18n/langs/cn.js +512 -509
- package/src/i18n/langs/en.js +554 -551
- package/vite.config.js +35 -35
package/.vscode/extensions.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
|
|
3
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
|
|
3
|
+
}
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Vue 3 + Vite
|
|
2
|
-
|
|
3
|
-
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
-
|
|
5
|
-
## Recommended IDE Setup
|
|
6
|
-
|
|
7
|
-
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
1
|
+
# Vue 3 + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
## Recommended IDE Setup
|
|
6
|
+
|
|
7
|
+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
package/index.html
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<title>Vite + Vue</title>
|
|
8
|
-
</head>
|
|
9
|
-
<body>
|
|
10
|
-
<div id="app"></div>
|
|
11
|
-
<script type="module" src="/src/main.js"></script>
|
|
12
|
-
</body>
|
|
13
|
-
</html>
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Vite + Vue</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"></div>
|
|
11
|
+
<script type="module" src="/src/main.js"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/lib/workflow-editor.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.svg-icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}h3[data-v-
|
|
1
|
+
.svg-icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}h3[data-v-f49fd5e2]{color:#999;margin:0;padding:0;font-weight:700;font-size:18px}.el-button[data-v-f49fd5e2]{margin:6px 0;min-width:110px;padding:9px 15px}.el-button i[data-v-f49fd5e2]{padding-right:4px}.joint-container{stroke-width:0;fill:#fff;fill-opacity:0}.joint{fill:#00f;stroke-width:1px}.joint-activated{fill:red;stroke-width:1px;fill-opacity:1}.start,.end{stroke-width:0;fill:#fff}.resizer{stroke:#00f;stroke-width:1;fill:#fff}.decision,.human-decision{stroke-width:0;fill:#fff}.control-point[data-v-0ff53a0a]{fill:#fff;cursor:move}.control-line[data-v-0ff53a0a]{stroke-dasharray:2 2}.control-point[data-v-788fb0ae]{fill:#fff;cursor:move}.control-line[data-v-788fb0ae]{stroke-dasharray:2 2}.transition[data-v-275ae600]{stroke-width:2;stroke:#666;fill:none;cursor:pointer}.selected[data-v-275ae600]{stroke:red}.transition-dragger[data-v-275ae600]{stroke:red;stroke-width:1;fill:#fff;cursor:move}.no-events[data-v-275ae600]{pointer-events:none}.virtual-transition{stroke-width:2;stroke:#000;stroke-dasharray:2 2;fill:none}.selection-region{stroke:#00f;stroke-width:1;fill:#fff;fill-opacity:0;opacity:1;cursor:move}.dashed{stroke-dasharray:10 2;pointer-events:none}.group[data-v-98300543]{font-size:14px;width:100%}.item[data-v-98300543]{float:left;list-style-type:none;width:33.33%;margin-bottom:18px}.item-content[data-v-98300543]{height:calc(100vh - 300px);padding-left:20px;overflow:auto}.el-tag+.el-tag[data-v-784515ae]{margin-left:10px}.button-new-tag[data-v-784515ae]{margin-left:10px;height:32px;line-height:30px;padding-top:0;padding-bottom:0}.input-new-tag[data-v-784515ae]{width:150px;margin-left:10px;vertical-align:bottom}select[data-v-784515ae]{width:150px;margin-left:10px;height:32px;line-height:32px}#custTabOne[data-v-35cd2a7f] .el-tabs__content{height:500px}.percent[data-v-69eb4f2a]{margin-left:10px;color:red;font-size:1.2em}#appContainer[data-v-4827f065] .el-checkbox{display:block}#appContainer[data-v-4827f065] .el-transfer-panel{width:400px}#appContainer[data-v-4827f065] .ellipsis{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:keep-all;width:55%}.searchResult{color:red}.inline-input-custom{width:90%}.el-checkbox[data-v-c019538f]{margin-left:20px}span[data-v-c22bfcb5]{margin:0 10px}.properties-editor[data-v-76873ec4] .el-dialog__body,.properties-editor[data-v-feca75ec] .el-dialog__body{padding-top:0}.percent[data-v-c1c7385b]{margin-left:10px;color:red;font-size:1.2em}.el-checkbox[data-v-5fb29fef]{margin-left:20px}.properties-editor[data-v-af76d417] .el-dialog__body{padding-top:0}.percent[data-v-6aef99ff]{margin-left:10px;color:red;font-size:1.2em}.properties-editor[data-v-adb7c2ff] .el-dialog__body,.properties-editor[data-v-bd66d235] .el-dialog__body{padding-top:0}.tooltip[data-v-ac799913]{position:absolute;background:#fff;min-width:150px;border-radius:4px;border:1px solid #ebeef5;padding:12px;z-index:2000;color:#606266;line-height:1.4;text-align:justify;font-size:14px;box-shadow:0 2px 12px #0000001a;word-break:break-all}li[data-v-ee0cf618]{color:#333}.context-menu[data-v-ee0cf618]{position:fixed;background:#fff;z-index:999;padding:5px;margin:0}.context-menu li[data-v-ee0cf618]{min-width:75px;height:28px;line-height:28px;text-align:left;color:#1a1a1a}.context-menu li[data-v-ee0cf618]:hover{background:#42b983;color:#fff}.context-menu[data-v-ee0cf618]{border:1px solid #eee;box-shadow:0 .5em 1em #0000001a;border-radius:5px}li[data-v-ee0cf618]{list-style-type:none}.button-area[data-v-c1cabd37]{padding:5px 0 5px 5px;height:50px}.el-row[data-v-c1cabd37]{border:1px solid #f1f1f1;border-radius:5px}.el-col[data-v-c1cabd37]{padding-left:5px}.main[data-v-c1cabd37]{position:relative;display:flex;height:calc(100% - 50px);width:100%}.canvas-container[data-v-c1cabd37]{position:relative;height:calc(100% - 50px);width:100%}.toolbox[data-v-c1cabd37]{width:150px;overflow-y:auto;height:100%;background:#f7f7f7;padding:10px;text-align:center;flex:none}section[data-v-c1cabd37]{overflow:hidden;flex:1 1 auto;height:100%;padding:0}.tabs[data-v-c1cabd37],.tab-pane[data-v-c1cabd37]{height:100%;width:100%}.tabs[data-v-c1cabd37] .el-tabs__content{height:calc(100% - 41px);padding:10px;width:100%}.canvas[data-v-c1cabd37],.xml[data-v-c1cabd37]{overflow:auto;height:100%;width:100%;padding:0;min-height:500px}pre[data-v-c1cabd37]{margin:0;font-size:16px}.component-icon[data-v-c1cabd37]{position:absolute;pointer-events:none}.canvas[data-v-c1cabd37] .draggable{cursor:move}.primaryButton[data-v-c1cabd37]{color:#fff;border-color:#005eba;background-color:#005eba}#_subprocess-content[data-v-2b195c05]{width:100%;height:calc(100vh - 200px)}#svg{background:white;background-image:linear-gradient(rgba(242,242,242,.7) 1px,transparent 0),linear-gradient(90deg,rgba(242,242,242,.7) 1px,transparent 0),linear-gradient(#e5e5e5 1px,transparent 0),linear-gradient(90deg,#e5e5e5 1px,transparent 0);background-size:15px 15px,15px 15px,75px 75px,75px 75px}g{font-size:16px}g text{dominant-baseline:middle}.selected{fill:#fff;stroke:red;stroke-width:2}.task-tache{fill:#fff;stroke:#666;stroke-width:2}.passed-tache .task-tache{fill:green;stroke:green;stroke-width:2}.current-tache .task-tache{fill:red;stroke:red;stroke-width:2}.passed-tache text{fill:#fff}.current-tache text{fill:#fff}.main[data-v-6658e14b]{position:relative;display:flex;height:100%;width:100%}.canvas-container[data-v-6658e14b]{position:relative;height:100%;width:100%}section[data-v-6658e14b]{overflow:hidden;width:100%;height:100%;padding:0}.canvas[data-v-6658e14b]{overflow:auto;height:100%;padding:0;min-height:500px}.canvas[data-v-6658e14b] .draggable{cursor:default}
|