@szjy/workflow 0.1.5 → 0.1.7

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.
@@ -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,3 @@
1
+ export * from './palette';
2
+ import MultiSignReceiptProperty from './property.vue';
3
+ export { MultiSignReceiptProperty };
@@ -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
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -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;
@@ -1,5 +1,6 @@
1
1
  export declare const SLOT_NAMES: {
2
2
  readonly TOOLBAR_PREFIX: "TOOLBAR_PREFIX";
3
+ readonly USER_CHOOSER_SUFFIX: "USER_CHOOSER_SUFFIX";
3
4
  };
4
5
  type SlotNames = keyof typeof SLOT_NAMES;
5
6
  export declare const slotKeyName: (name: SlotNames) => string;