@zyui/components 0.0.56 → 0.0.58
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 +65 -65
- package/es/index.mjs +16076 -15993
- package/es/src/components/DepartmentPicker/index.vue.d.ts +2 -0
- package/es/src/components/NodesEditor/NodeSelect/index.vue.d.ts +9 -0
- package/es/src/components/NodesEditor/store/select.d.ts +1 -0
- package/es/src/components/RoleAndDepartmentPicker/index.vue.d.ts +2 -0
- package/es/src/components/RolePicker/index.vue.d.ts +2 -0
- package/es/src/components/UserPicker/index.vue.d.ts +2 -0
- package/es/style.css +1 -1
- package/lib/src/components/DepartmentPicker/index.vue.d.ts +2 -0
- package/lib/src/components/NodesEditor/NodeSelect/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/store/select.d.ts +1 -0
- package/lib/src/components/RoleAndDepartmentPicker/index.vue.d.ts +2 -0
- package/lib/src/components/RolePicker/index.vue.d.ts +2 -0
- package/lib/src/components/UserPicker/index.vue.d.ts +2 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
|
|
|
6
6
|
};
|
|
7
7
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
8
|
modelValue: import('vue').PropType<any>;
|
|
9
|
+
departmentList: import('vue').PropType<any>;
|
|
9
10
|
/** 默认显示的内容,是否简写 */
|
|
10
11
|
isAbbr: {
|
|
11
12
|
type: BooleanConstructor;
|
|
@@ -23,6 +24,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
24
|
};
|
|
24
25
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
26
|
modelValue: import('vue').PropType<any>;
|
|
27
|
+
departmentList: import('vue').PropType<any>;
|
|
26
28
|
/** 默认显示的内容,是否简写 */
|
|
27
29
|
isAbbr: {
|
|
28
30
|
type: BooleanConstructor;
|
|
@@ -29,6 +29,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
type: StringConstructor;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
|
+
isOccupy: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
32
36
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
37
|
modelValue: import('vue').PropType<any[]>;
|
|
34
38
|
/**
|
|
@@ -60,11 +64,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
60
64
|
type: StringConstructor;
|
|
61
65
|
default: string;
|
|
62
66
|
};
|
|
67
|
+
isOccupy: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
63
71
|
}>> & Readonly<{}>, {
|
|
64
72
|
size: string;
|
|
65
73
|
label: string;
|
|
66
74
|
id: string;
|
|
67
75
|
mode: string;
|
|
68
76
|
editorId: string;
|
|
77
|
+
isOccupy: boolean;
|
|
69
78
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
79
|
export default _default;
|
|
@@ -3,10 +3,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3
3
|
roleId: number;
|
|
4
4
|
groupId: number;
|
|
5
5
|
}[]>;
|
|
6
|
+
groupRolesList: import('vue').PropType<any>;
|
|
6
7
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
8
|
modelValue: import('vue').PropType<{
|
|
8
9
|
roleId: number;
|
|
9
10
|
groupId: number;
|
|
10
11
|
}[]>;
|
|
12
|
+
groupRolesList: import('vue').PropType<any>;
|
|
11
13
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
14
|
export default _default;
|
|
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
|
|
|
6
6
|
};
|
|
7
7
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
8
|
modelValue: import('vue').PropType<any>;
|
|
9
|
+
positionList: import('vue').PropType<any>;
|
|
9
10
|
/** 默认显示的内容,是否简写 */
|
|
10
11
|
isAbbr: {
|
|
11
12
|
type: BooleanConstructor;
|
|
@@ -18,6 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
18
19
|
};
|
|
19
20
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
21
|
modelValue: import('vue').PropType<any>;
|
|
22
|
+
positionList: import('vue').PropType<any>;
|
|
21
23
|
/** 默认显示的内容,是否简写 */
|
|
22
24
|
isAbbr: {
|
|
23
25
|
type: BooleanConstructor;
|
|
@@ -8,6 +8,7 @@ declare function __VLS_template(): {
|
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
10
10
|
modelValue: import('vue').PropType<any>;
|
|
11
|
+
userList: import('vue').PropType<any>;
|
|
11
12
|
/** 默认显示的内容,是否简写 */
|
|
12
13
|
isAbbr: {
|
|
13
14
|
type: BooleanConstructor;
|
|
@@ -31,6 +32,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
31
32
|
ok: (...args: any[]) => void;
|
|
32
33
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
34
|
modelValue: import('vue').PropType<any>;
|
|
35
|
+
userList: import('vue').PropType<any>;
|
|
34
36
|
/** 默认显示的内容,是否简写 */
|
|
35
37
|
isAbbr: {
|
|
36
38
|
type: BooleanConstructor;
|