@lambo-design/workflow-approve 1.0.0-beta.10 → 1.0.0-beta.100
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/index.js +4 -1
- package/package.json +4 -3
- package/src/components/assignee-box.vue +586 -111
- package/src/components/candidate-groups-box.vue +1948 -0
- package/src/components/countersigners-box.vue +858 -0
- package/src/components/history.vue +844 -378
- package/src/components/opinion.vue +322 -302
- package/src/components/process-info.vue +546 -0
- package/src/portrait.vue +1789 -567
- package/src/styles/css/index.less +385 -220
- package/src/utils/const.js +36 -0
- package/src/workflow-diagram.vue +439 -332
package/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import WorkflowHorizontalApprove from "./src/horizontal";
|
|
2
2
|
import WorkflowPortraitApprove from "./src/portrait";
|
|
3
3
|
import WorkflowDiagram from "./src/workflow-diagram";
|
|
4
|
+
import { WorkflowOperationButtons, WorkflowInfoButtons } from "./src/utils/const";
|
|
4
5
|
|
|
5
6
|
export {
|
|
6
7
|
WorkflowHorizontalApprove,
|
|
7
8
|
WorkflowPortraitApprove,
|
|
8
|
-
WorkflowDiagram
|
|
9
|
+
WorkflowDiagram,
|
|
10
|
+
WorkflowOperationButtons,
|
|
11
|
+
WorkflowInfoButtons
|
|
9
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambo-design/workflow-approve",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.100",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"axios": "^0.24.0",
|
|
14
14
|
"axios-cache-plugin": "^0.1.0",
|
|
15
|
-
"@lambo-design/core": "^4.7.1-beta.
|
|
16
|
-
"@lambo-design/shared": "^1.0.0-beta.
|
|
15
|
+
"@lambo-design/core": "^4.7.1-beta.171",
|
|
16
|
+
"@lambo-design/shared": "^1.0.0-beta.300"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bpmn-js": "^7.3.1",
|
|
20
20
|
"bpmn-js-properties-panel": "^0.37.2",
|
|
21
|
+
"vue-draggable-resizable": "^2.3.0",
|
|
21
22
|
"docx-preview": "0.1.20"
|
|
22
23
|
},
|
|
23
24
|
"scripts": {
|