@zyui/components 0.0.34 → 0.0.36
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 +81 -81
- package/es/index.mjs +30576 -30095
- package/es/src/components/DepartmentPicker/departmentPickerDisplay.vue.d.ts +9 -0
- package/es/src/components/DepartmentPicker/index.vue.d.ts +11 -0
- package/es/src/components/DepartmentSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/es/src/components/DepartmentSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/es/src/components/DepartmentSelect/index.d.ts +1 -0
- package/es/src/components/DepartmentSelect/index.vue.d.ts +166 -0
- package/es/src/components/RoleSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/es/src/components/RoleSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/es/src/components/RoleSelect/index.d.ts +1 -0
- package/es/src/components/RoleSelect/index.vue.d.ts +166 -0
- package/es/src/components/UserPicker/context.d.ts +4 -0
- package/es/src/components/UserPicker/index.vue.d.ts +22 -0
- package/es/src/components/UserPicker/userPickerDisplay.vue.d.ts +9 -0
- package/es/src/components/UserSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/es/src/components/UserSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/es/src/components/UserSelect/index.d.ts +1 -0
- package/es/src/components/UserSelect/index.vue.d.ts +166 -0
- package/es/src/components/index.d.ts +3 -0
- package/es/style.css +1 -1
- package/lib/src/components/DepartmentPicker/departmentPickerDisplay.vue.d.ts +9 -0
- package/lib/src/components/DepartmentPicker/index.vue.d.ts +11 -0
- package/lib/src/components/DepartmentSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/lib/src/components/DepartmentSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/lib/src/components/DepartmentSelect/index.d.ts +1 -0
- package/lib/src/components/DepartmentSelect/index.vue.d.ts +166 -0
- package/lib/src/components/RoleSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/lib/src/components/RoleSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/lib/src/components/RoleSelect/index.d.ts +1 -0
- package/lib/src/components/RoleSelect/index.vue.d.ts +166 -0
- package/lib/src/components/UserPicker/context.d.ts +4 -0
- package/lib/src/components/UserPicker/index.vue.d.ts +22 -0
- package/lib/src/components/UserPicker/userPickerDisplay.vue.d.ts +9 -0
- package/lib/src/components/UserSelect/hooks/useFetchSelectorData.d.ts +21 -0
- package/lib/src/components/UserSelect/hooks/useUserSelectorData.d.ts +22 -0
- package/lib/src/components/UserSelect/index.d.ts +1 -0
- package/lib/src/components/UserSelect/index.vue.d.ts +166 -0
- package/lib/src/components/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
modelValue: import('vue').PropType<any>;
|
|
3
|
+
type: {
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
|
+
};
|
|
6
|
+
size: {
|
|
7
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
8
|
+
};
|
|
9
|
+
disabled: {
|
|
10
|
+
type: import('vue').PropType<boolean>;
|
|
11
|
+
};
|
|
12
|
+
autofocus: {
|
|
13
|
+
type: import('vue').PropType<boolean>;
|
|
14
|
+
};
|
|
15
|
+
form: {
|
|
16
|
+
type: import('vue').PropType<string>;
|
|
17
|
+
};
|
|
18
|
+
ariaLabel: {
|
|
19
|
+
type: import('vue').PropType<string>;
|
|
20
|
+
};
|
|
21
|
+
id: {
|
|
22
|
+
type: import('vue').PropType<string>;
|
|
23
|
+
};
|
|
24
|
+
maxlength: {
|
|
25
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
26
|
+
};
|
|
27
|
+
minlength: {
|
|
28
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
29
|
+
};
|
|
30
|
+
resize: {
|
|
31
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
32
|
+
};
|
|
33
|
+
autosize: {
|
|
34
|
+
type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
35
|
+
};
|
|
36
|
+
autocomplete: {
|
|
37
|
+
type: import('vue').PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
formatter: {
|
|
40
|
+
type: import('vue').PropType<Function>;
|
|
41
|
+
};
|
|
42
|
+
parser: {
|
|
43
|
+
type: import('vue').PropType<Function>;
|
|
44
|
+
};
|
|
45
|
+
placeholder: {
|
|
46
|
+
type: import('vue').PropType<string>;
|
|
47
|
+
};
|
|
48
|
+
readonly: {
|
|
49
|
+
type: import('vue').PropType<boolean>;
|
|
50
|
+
};
|
|
51
|
+
clearable: {
|
|
52
|
+
type: import('vue').PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
showPassword: {
|
|
56
|
+
type: import('vue').PropType<boolean>;
|
|
57
|
+
};
|
|
58
|
+
showWordLimit: {
|
|
59
|
+
type: import('vue').PropType<boolean>;
|
|
60
|
+
};
|
|
61
|
+
suffixIcon: {
|
|
62
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
63
|
+
};
|
|
64
|
+
prefixIcon: {
|
|
65
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
66
|
+
};
|
|
67
|
+
containerRole: {
|
|
68
|
+
type: import('vue').PropType<string>;
|
|
69
|
+
};
|
|
70
|
+
tabindex: {
|
|
71
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
72
|
+
};
|
|
73
|
+
validateEvent: {
|
|
74
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
75
|
+
};
|
|
76
|
+
inputStyle: {
|
|
77
|
+
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
78
|
+
};
|
|
79
|
+
rows: {
|
|
80
|
+
type: import('vue').PropType<number>;
|
|
81
|
+
};
|
|
82
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
83
|
+
modelValue: import('vue').PropType<any>;
|
|
84
|
+
type: {
|
|
85
|
+
type: import('vue').PropType<string>;
|
|
86
|
+
};
|
|
87
|
+
size: {
|
|
88
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
89
|
+
};
|
|
90
|
+
disabled: {
|
|
91
|
+
type: import('vue').PropType<boolean>;
|
|
92
|
+
};
|
|
93
|
+
autofocus: {
|
|
94
|
+
type: import('vue').PropType<boolean>;
|
|
95
|
+
};
|
|
96
|
+
form: {
|
|
97
|
+
type: import('vue').PropType<string>;
|
|
98
|
+
};
|
|
99
|
+
ariaLabel: {
|
|
100
|
+
type: import('vue').PropType<string>;
|
|
101
|
+
};
|
|
102
|
+
id: {
|
|
103
|
+
type: import('vue').PropType<string>;
|
|
104
|
+
};
|
|
105
|
+
maxlength: {
|
|
106
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
107
|
+
};
|
|
108
|
+
minlength: {
|
|
109
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
110
|
+
};
|
|
111
|
+
resize: {
|
|
112
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
113
|
+
};
|
|
114
|
+
autosize: {
|
|
115
|
+
type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
116
|
+
};
|
|
117
|
+
autocomplete: {
|
|
118
|
+
type: import('vue').PropType<string>;
|
|
119
|
+
};
|
|
120
|
+
formatter: {
|
|
121
|
+
type: import('vue').PropType<Function>;
|
|
122
|
+
};
|
|
123
|
+
parser: {
|
|
124
|
+
type: import('vue').PropType<Function>;
|
|
125
|
+
};
|
|
126
|
+
placeholder: {
|
|
127
|
+
type: import('vue').PropType<string>;
|
|
128
|
+
};
|
|
129
|
+
readonly: {
|
|
130
|
+
type: import('vue').PropType<boolean>;
|
|
131
|
+
};
|
|
132
|
+
clearable: {
|
|
133
|
+
type: import('vue').PropType<boolean>;
|
|
134
|
+
default: boolean;
|
|
135
|
+
};
|
|
136
|
+
showPassword: {
|
|
137
|
+
type: import('vue').PropType<boolean>;
|
|
138
|
+
};
|
|
139
|
+
showWordLimit: {
|
|
140
|
+
type: import('vue').PropType<boolean>;
|
|
141
|
+
};
|
|
142
|
+
suffixIcon: {
|
|
143
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
144
|
+
};
|
|
145
|
+
prefixIcon: {
|
|
146
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
147
|
+
};
|
|
148
|
+
containerRole: {
|
|
149
|
+
type: import('vue').PropType<string>;
|
|
150
|
+
};
|
|
151
|
+
tabindex: {
|
|
152
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
153
|
+
};
|
|
154
|
+
validateEvent: {
|
|
155
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
156
|
+
};
|
|
157
|
+
inputStyle: {
|
|
158
|
+
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
159
|
+
};
|
|
160
|
+
rows: {
|
|
161
|
+
type: import('vue').PropType<number>;
|
|
162
|
+
};
|
|
163
|
+
}>> & Readonly<{}>, {
|
|
164
|
+
clearable: boolean;
|
|
165
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
166
|
+
export default _default;
|
|
@@ -7,6 +7,9 @@ export * from './NodesEditor';
|
|
|
7
7
|
export * from './FormFlow';
|
|
8
8
|
export * from './Setters';
|
|
9
9
|
export * from './UserPicker';
|
|
10
|
+
export * from './UserSelect';
|
|
10
11
|
export * from './DepartmentPicker';
|
|
12
|
+
export * from './DepartmentSelect';
|
|
11
13
|
export * from './RolePicker';
|
|
14
|
+
export * from './RoleSelect';
|
|
12
15
|
export * from './RoleAndDepartmentPicker';
|