@nocobase/plugin-workflow-manual 1.6.4 → 1.7.0-alpha.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.
- package/dist/externalVersion.js +12 -12
- package/dist/locale/nl-NL.json +30 -0
- package/package.json +2 -2
package/dist/externalVersion.js
CHANGED
|
@@ -8,24 +8,24 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "1.
|
|
11
|
+
"@nocobase/client": "1.7.0-alpha.2",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"@formily/react": "2.3.0",
|
|
14
|
-
"@formily/antd-v5": "1.
|
|
15
|
-
"antd": "5.
|
|
14
|
+
"@formily/antd-v5": "1.2.3",
|
|
15
|
+
"antd": "5.24.2",
|
|
16
16
|
"@ant-design/icons": "5.6.1",
|
|
17
17
|
"antd-style": "3.7.1",
|
|
18
|
-
"dayjs": "1.11.
|
|
18
|
+
"dayjs": "1.11.13",
|
|
19
19
|
"react-i18next": "11.18.6",
|
|
20
20
|
"lodash": "4.17.21",
|
|
21
|
-
"@nocobase/plugin-workflow": "1.
|
|
22
|
-
"@nocobase/utils": "1.
|
|
23
|
-
"@nocobase/server": "1.
|
|
24
|
-
"@nocobase/actions": "1.
|
|
25
|
-
"@nocobase/resourcer": "1.
|
|
26
|
-
"@nocobase/test": "1.
|
|
27
|
-
"@nocobase/plugin-workflow-test": "1.
|
|
21
|
+
"@nocobase/plugin-workflow": "1.7.0-alpha.2",
|
|
22
|
+
"@nocobase/utils": "1.7.0-alpha.2",
|
|
23
|
+
"@nocobase/server": "1.7.0-alpha.2",
|
|
24
|
+
"@nocobase/actions": "1.7.0-alpha.2",
|
|
25
|
+
"@nocobase/resourcer": "1.7.0-alpha.2",
|
|
26
|
+
"@nocobase/test": "1.7.0-alpha.2",
|
|
27
|
+
"@nocobase/plugin-workflow-test": "1.7.0-alpha.2",
|
|
28
28
|
"@formily/core": "2.3.0",
|
|
29
|
-
"@nocobase/database": "1.
|
|
29
|
+
"@nocobase/database": "1.7.0-alpha.2",
|
|
30
30
|
"sequelize": "6.35.2"
|
|
31
31
|
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Manual": "Manual",
|
|
3
|
+
"Could be used for manually submitting data, and determine whether to continue or exit. Workflow will generate a todo item for assigned user when it reaches a manual node, and continue processing after user submits the form.": "Could be used for manually submitting data, and determine whether to continue or exit. Workflow will generate a todo item for assigned user when it reaches a manual node, and continue processing after user submits the form.",
|
|
4
|
+
"Values preset in this form will override user submitted ones when continue or reject.": "Values preset in this form will override user submitted ones when continue or reject.",
|
|
5
|
+
"Assignee": "Assignee",
|
|
6
|
+
"Assignees": "Assignees",
|
|
7
|
+
"User interface": "User interface",
|
|
8
|
+
"Configure user interface": "Configure user interface",
|
|
9
|
+
"View user interface": "View user interface",
|
|
10
|
+
"Separately": "Separately",
|
|
11
|
+
"Each user has own task": "Each user has own task",
|
|
12
|
+
"Collaboratively": "Collaboratively",
|
|
13
|
+
"Everyone shares one task": "Everyone shares one task",
|
|
14
|
+
"Negotiation": "Negotiation",
|
|
15
|
+
"All pass": "All pass",
|
|
16
|
+
"Everyone should pass": "Everyone should pass",
|
|
17
|
+
"Any pass": "Any pass",
|
|
18
|
+
"Anyone pass": "Anyone pass",
|
|
19
|
+
"Field name existed in form": "Field name existed in form",
|
|
20
|
+
"Continue the process": "Continue the process",
|
|
21
|
+
"Terminate the process": "Terminate the process",
|
|
22
|
+
"Save temporarily": "Save temporarily",
|
|
23
|
+
"Custom form": "Custom form",
|
|
24
|
+
"Data record": "Data record",
|
|
25
|
+
"Create record form": "Create record form",
|
|
26
|
+
"Update record form": "Update record form",
|
|
27
|
+
"Filter settings": "Filter settings",
|
|
28
|
+
"Workflow todos": "Workflow todos",
|
|
29
|
+
"Task": "Task"
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName.zh-CN": "工作流:人工处理节点",
|
|
5
5
|
"description": "Could be used for workflows which some of decisions are made by users.",
|
|
6
6
|
"description.zh-CN": "用于人工控制部分决策的流程。",
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.7.0-alpha.2",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
10
|
"homepage": "https://docs.nocobase.com/handbook/workflow-manual",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@nocobase/test": "1.x",
|
|
31
31
|
"@nocobase/utils": "1.x"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "01751fa626d5692137e3decdac3c66a742b8ea80",
|
|
34
34
|
"keywords": [
|
|
35
35
|
"Workflow"
|
|
36
36
|
]
|