@zyui/components 1.0.33 → 1.0.34
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/es/index.js +72 -72
- package/es/index.mjs +17115 -17050
- package/es/index.umd.js +72 -72
- package/es/src/components/RoleAndDepartmentPicker/hooks/useDataListByValue.d.ts +1 -1
- package/es/src/components/WorkforceSelector/display/alltext.vue.d.ts +9 -0
- package/es/src/components/WorkforceSelector/display/index.vue.d.ts +9 -0
- package/es/src/components/WorkforceSelector/hooks/useDataDetailByValue.d.ts +1 -1
- package/es/src/components/WorkforceSelector/list/department.vue.d.ts +20 -1
- package/es/src/components/WorkforceSelector/list/role.vue.d.ts +20 -1
- package/es/src/components/WorkforceSelector/list/roleAndDepartment.vue.d.ts +9 -0
- package/es/src/components/WorkforceSelector/list/user.vue.d.ts +20 -1
- package/es/style.css +1 -1
- package/lib/src/components/RoleAndDepartmentPicker/hooks/useDataListByValue.d.ts +1 -1
- package/lib/src/components/WorkforceSelector/display/alltext.vue.d.ts +9 -0
- package/lib/src/components/WorkforceSelector/display/index.vue.d.ts +9 -0
- package/lib/src/components/WorkforceSelector/hooks/useDataDetailByValue.d.ts +1 -1
- package/lib/src/components/WorkforceSelector/list/department.vue.d.ts +20 -1
- package/lib/src/components/WorkforceSelector/list/role.vue.d.ts +20 -1
- package/lib/src/components/WorkforceSelector/list/roleAndDepartment.vue.d.ts +9 -0
- package/lib/src/components/WorkforceSelector/list/user.vue.d.ts +20 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useDataListByValue: (val: any) => import('vue').ComputedRef<any[]>;
|
|
1
|
+
export declare const useDataListByValue: (val: any, queryParams?: any) => import('vue').ComputedRef<any[]>;
|
|
@@ -3,12 +3,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3
3
|
type: ObjectConstructor;
|
|
4
4
|
default: () => {};
|
|
5
5
|
};
|
|
6
|
+
queryParams: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: () => {};
|
|
9
|
+
};
|
|
6
10
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
11
|
value: {
|
|
8
12
|
type: ObjectConstructor;
|
|
9
13
|
default: () => {};
|
|
10
14
|
};
|
|
15
|
+
queryParams: {
|
|
16
|
+
type: ObjectConstructor;
|
|
17
|
+
default: () => {};
|
|
18
|
+
};
|
|
11
19
|
}>> & Readonly<{}>, {
|
|
12
20
|
value: Record<string, any>;
|
|
21
|
+
queryParams: Record<string, any>;
|
|
13
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
23
|
export default _default;
|
|
@@ -7,6 +7,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
type: ObjectConstructor;
|
|
8
8
|
default: () => {};
|
|
9
9
|
};
|
|
10
|
+
queryParams: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
10
14
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
15
|
displayType: {
|
|
12
16
|
type: StringConstructor;
|
|
@@ -16,8 +20,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
16
20
|
type: ObjectConstructor;
|
|
17
21
|
default: () => {};
|
|
18
22
|
};
|
|
23
|
+
queryParams: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
19
27
|
}>> & Readonly<{}>, {
|
|
20
28
|
value: Record<string, any>;
|
|
29
|
+
queryParams: Record<string, any>;
|
|
21
30
|
displayType: string;
|
|
22
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
32
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const useDataDetailByValue: (value: any) => {
|
|
1
|
+
export declare const useDataDetailByValue: (value: any, queryParams?: any) => {
|
|
2
2
|
userList: import('vue').ComputedRef<any[]>;
|
|
3
3
|
roleList: import('vue').ComputedRef<any[]>;
|
|
4
4
|
groupList: import('vue').ComputedRef<any[]>;
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: import('vue').PropType<number[]>;
|
|
3
|
+
disabled: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
3
11
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
4
12
|
modelValue: import('vue').PropType<number[]>;
|
|
5
|
-
|
|
13
|
+
disabled: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
queryParams: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: () => {};
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
queryParams: Record<string, any>;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
25
|
export default _default;
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: import('vue').PropType<number[]>;
|
|
3
|
+
disabled: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
3
11
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
4
12
|
modelValue: import('vue').PropType<number[]>;
|
|
5
|
-
|
|
13
|
+
disabled: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
queryParams: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: () => {};
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
queryParams: Record<string, any>;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
25
|
export default _default;
|
|
@@ -7,6 +7,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
type: BooleanConstructor;
|
|
8
8
|
default: boolean;
|
|
9
9
|
};
|
|
10
|
+
queryParams: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
10
14
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
15
|
modelValue: import('vue').PropType<{
|
|
12
16
|
roleId: number;
|
|
@@ -16,7 +20,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
16
20
|
type: BooleanConstructor;
|
|
17
21
|
default: boolean;
|
|
18
22
|
};
|
|
23
|
+
queryParams: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
19
27
|
}>> & Readonly<{}>, {
|
|
20
28
|
disabled: boolean;
|
|
29
|
+
queryParams: Record<string, any>;
|
|
21
30
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
22
31
|
export default _default;
|
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: import('vue').PropType<number[]>;
|
|
3
|
+
disabled: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
3
11
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
4
12
|
modelValue: import('vue').PropType<number[]>;
|
|
5
|
-
|
|
13
|
+
disabled: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
queryParams: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: () => {};
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
queryParams: Record<string, any>;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
25
|
export default _default;
|