@szjy/workflow 0.1.17 → 0.1.19
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.mjs +34156 -34157
- package/dist/index.umd.js +1017 -1017
- package/dist/packages/components/Workflow/biz-logic/leave/common/UserConfigProperty.vue.d.ts +2 -2
- package/dist/packages/components/Workflow/biz-logic/leave/utils/userUtil.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +2 -1
package/dist/packages/components/Workflow/biz-logic/leave/common/UserConfigProperty.vue.d.ts
CHANGED
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
8
8
|
};
|
9
9
|
getUserValue: {
|
10
10
|
type: PropType<(element: Element) => UserJSON>;
|
11
|
-
default: (element: Element) =>
|
11
|
+
default: (element: Element) => Partial<UserJSON>;
|
12
12
|
};
|
13
13
|
updateUserValue: {
|
14
14
|
type: PropType<(element: Element, newUser: UserJSON) => void>;
|
@@ -25,7 +25,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
25
25
|
};
|
26
26
|
getUserValue: {
|
27
27
|
type: PropType<(element: Element) => UserJSON>;
|
28
|
-
default: (element: Element) =>
|
28
|
+
default: (element: Element) => Partial<UserJSON>;
|
29
29
|
};
|
30
30
|
updateUserValue: {
|
31
31
|
type: PropType<(element: Element, newUser: UserJSON) => void>;
|
@@ -12,5 +12,6 @@ export declare const DEFAULT_USER_JSON: {
|
|
12
12
|
userId: string;
|
13
13
|
};
|
14
14
|
export declare const addUserItem: (element: Element, userJson: Partial<UserJSON>) => void;
|
15
|
-
export declare const
|
15
|
+
export declare const fixUserRelated: (userJson: Partial<UserJSON>) => void;
|
16
|
+
export declare const getUserValue: (element: Element) => Partial<UserJSON>;
|
16
17
|
export declare const updateUserValue: (element: Element, userJson: UserJSON) => void;
|