@szjy/workflow 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.mjs +35261 -35207
- package/dist/index.umd.js +875 -875
- package/dist/packages/components/Workflow/biz-logic/leave/constant.d.ts +1 -0
- package/dist/packages/components/Workflow/biz-logic/leave/index.d.ts +9 -0
- package/dist/packages/components/Workflow/biz-logic/leave/multi-sign-receipt/index.d.ts +3 -0
- package/dist/packages/components/Workflow/biz-logic/leave/multi-sign-receipt/palette.d.ts +13 -0
- package/dist/packages/components/Workflow/biz-logic/leave/multi-sign-receipt/property.vue.d.ts +2 -0
- package/dist/packages/components/Workflow/biz-logic/leave/utils/counterSignUtil.d.ts +1 -0
- package/dist/packages/components/Workflow/palette/CustomPaletteProvider.d.ts +9 -0
- package/package.json +1 -1
@@ -8,6 +8,7 @@ export declare const ELE_GET_MULTI_USER = "GET_MULTI_USER";
|
|
8
8
|
export declare const ELE_GET_SUPERVISORY_ORG = "GET_SUPERVISORY_ORG";
|
9
9
|
export declare const ELE_GET_CONSTRUCTION_ORG = "GET_CONSTRUCTION_ORG";
|
10
10
|
export declare const ELE_COUNTER_SIGN = "COUNTER_SIGN";
|
11
|
+
export declare const ELE_MULTI_SIGN_RECEIPT = "MULTI_SIGN_RECEIPT";
|
11
12
|
export declare const ELE_APPROVAL = "APPROVAL";
|
12
13
|
export declare const ELE_SIGN_RECEIPT = "SIGN_RECEIPT";
|
13
14
|
export declare const ELE_REFORM = "REFORM";
|
@@ -39,6 +39,15 @@ export declare const getBizPaletteEntries: (create: Create, elementFactory: Elem
|
|
39
39
|
dragstart: (event: any) => void;
|
40
40
|
};
|
41
41
|
};
|
42
|
+
"multi-sign-receipt-user": {
|
43
|
+
group: string;
|
44
|
+
title: string;
|
45
|
+
imageUrl: any;
|
46
|
+
action: {
|
47
|
+
click: (event: any) => void;
|
48
|
+
dragstart: (event: any) => void;
|
49
|
+
};
|
50
|
+
};
|
42
51
|
"sign-receipt-user": {
|
43
52
|
group: string;
|
44
53
|
title: string;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import type Create from 'diagram-js/lib/features/create/Create';
|
2
|
+
import type ElementFactory from 'diagram-js/lib/core/ElementFactory';
|
3
|
+
export declare const multiSignReceiptPaletteEntries: (create: Create, elementFactory: ElementFactory) => {
|
4
|
+
"multi-sign-receipt-user": {
|
5
|
+
group: string;
|
6
|
+
title: string;
|
7
|
+
imageUrl: any;
|
8
|
+
action: {
|
9
|
+
click: (event: any) => void;
|
10
|
+
dragstart: (event: any) => void;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
};
|
@@ -7,6 +7,7 @@ export declare const DEFAULT_COMPLETE_CONDITION: {
|
|
7
7
|
maxRejectedCount: number;
|
8
8
|
};
|
9
9
|
export declare const initCounterSignrItems: (element: Element) => void;
|
10
|
+
export declare const initMultiSignReceiptItems: (element: Element) => void;
|
10
11
|
export declare const getUserValue: (element: Element) => any;
|
11
12
|
export declare const updateUserValue: (element: Element, userJson: Partial<UserJSON>) => void;
|
12
13
|
export declare const getConditionValue: (element: Element) => any;
|
@@ -50,6 +50,15 @@ export default class CustomPaletteProvider extends PaletteProvider {
|
|
50
50
|
dragstart: (event: any) => void;
|
51
51
|
};
|
52
52
|
};
|
53
|
+
"multi-sign-receipt-user": {
|
54
|
+
group: string;
|
55
|
+
title: string;
|
56
|
+
imageUrl: any;
|
57
|
+
action: {
|
58
|
+
click: (event: any) => void;
|
59
|
+
dragstart: (event: any) => void;
|
60
|
+
};
|
61
|
+
};
|
53
62
|
"sign-receipt-user": {
|
54
63
|
group: string;
|
55
64
|
title: string;
|