tutor-pro-ui-vue 1.2.44-beta → 1.2.48-beta
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/dist/index.css +1 -1
- package/dist/index.css.gz +0 -0
- package/dist/index.js +25277 -24871
- package/dist/index.js.gz +0 -0
- package/dist/index.umd.cjs +44 -52
- package/dist/src/components/CommonCheckbox/src/index.vue.d.ts +2 -2
- package/dist/src/components/CommonCheckbox/src/types.d.ts +1 -1
- package/dist/src/components/CommonCheckboxGroup/src/index.vue.d.ts +48 -20
- package/dist/src/components/CommonCheckboxGroup/src/types.d.ts +23 -9
- package/dist/src/components/CommonDatePicker/src/index.vue.d.ts +268 -58
- package/dist/src/components/CommonDatePicker/src/types.d.ts +129 -24
- package/dist/src/components/CommonDescriptions/src/index.vue.d.ts +84 -14
- package/dist/src/components/CommonDescriptions/src/types.d.ts +41 -6
- package/dist/src/components/CommonForm/fields/Cascader.vue.d.ts +8 -1
- package/dist/src/components/CommonForm/hooks.d.ts +1 -0
- package/dist/src/components/CommonForm/src/hooks.d.ts +3 -368
- package/dist/src/components/CommonForm/src/index.vue.d.ts +107 -23
- package/dist/src/components/CommonForm/types.d.ts +55 -10
- package/dist/src/components/CommonRadio/src/index.vue.d.ts +19 -5
- package/dist/src/components/CommonRadio/src/types.d.ts +9 -2
- package/dist/src/components/CommonRadioButton/src/index.vue.d.ts +19 -5
- package/dist/src/components/CommonRadioButton/src/types.d.ts +9 -2
- package/dist/src/components/CommonRadioGroup/src/index.vue.d.ts +184 -37
- package/dist/src/components/CommonRadioGroup/src/types.d.ts +87 -17
- package/dist/src/components/CommonTable/src/function.d.ts +2 -1
- package/dist/src/components/CommonTable/src/hooks.d.ts +10 -10
- package/dist/src/components/CommonTable/src/index.vue.d.ts +116 -34
- package/dist/src/components/CommonTable/src/types.d.ts +1 -2
- package/dist/src/components/CommonTabs/src/index.vue.d.ts +53 -27
- package/dist/src/components/CommonTabs/src/types.d.ts +25 -12
- package/package.json +2 -2
|
@@ -28,11 +28,32 @@ export declare const commonDatePickerProps: {
|
|
|
28
28
|
default: string;
|
|
29
29
|
type: StringConstructor;
|
|
30
30
|
};
|
|
31
|
-
type:
|
|
32
|
-
|
|
31
|
+
type: {
|
|
32
|
+
readonly type: import('vue').PropType<"date" | "year" | "years" | "month" | "months" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange">;
|
|
33
|
+
readonly required: false;
|
|
34
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
35
|
+
__epPropKey: true;
|
|
36
|
+
} & {
|
|
37
|
+
readonly default: "date";
|
|
38
|
+
};
|
|
39
|
+
showNow: {
|
|
40
|
+
readonly type: import('vue').PropType<boolean>;
|
|
41
|
+
readonly required: false;
|
|
42
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
43
|
+
__epPropKey: true;
|
|
44
|
+
} & {
|
|
45
|
+
readonly default: true;
|
|
46
|
+
};
|
|
33
47
|
ariaLabel: StringConstructor;
|
|
34
48
|
emptyValues: ArrayConstructor;
|
|
35
|
-
valueOnClear:
|
|
49
|
+
valueOnClear: {
|
|
50
|
+
readonly type: import('vue').PropType<string | number | boolean | Function>;
|
|
51
|
+
readonly required: false;
|
|
52
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
53
|
+
__epPropKey: true;
|
|
54
|
+
} & {
|
|
55
|
+
readonly default: undefined;
|
|
56
|
+
};
|
|
36
57
|
disabledDate: {
|
|
37
58
|
readonly type: import('vue').PropType<Function>;
|
|
38
59
|
readonly required: false;
|
|
@@ -45,74 +66,158 @@ export declare const commonDatePickerProps: {
|
|
|
45
66
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
46
67
|
__epPropKey: true;
|
|
47
68
|
};
|
|
48
|
-
shortcuts:
|
|
69
|
+
shortcuts: {
|
|
70
|
+
readonly type: import('vue').PropType<unknown[]>;
|
|
71
|
+
readonly required: false;
|
|
72
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
73
|
+
__epPropKey: true;
|
|
74
|
+
} & {
|
|
75
|
+
readonly default: () => never[];
|
|
76
|
+
};
|
|
49
77
|
arrowControl: BooleanConstructor;
|
|
50
|
-
tabindex:
|
|
51
|
-
|
|
78
|
+
tabindex: {
|
|
79
|
+
readonly type: import('vue').PropType<string | number>;
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
+
__epPropKey: true;
|
|
83
|
+
} & {
|
|
84
|
+
readonly default: 0;
|
|
85
|
+
};
|
|
86
|
+
validateEvent: {
|
|
87
|
+
readonly type: import('vue').PropType<boolean>;
|
|
88
|
+
readonly required: false;
|
|
89
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
+
__epPropKey: true;
|
|
91
|
+
} & {
|
|
92
|
+
readonly default: true;
|
|
93
|
+
};
|
|
52
94
|
unlinkPanels: BooleanConstructor;
|
|
53
|
-
placement:
|
|
54
|
-
|
|
95
|
+
placement: {
|
|
96
|
+
readonly type: import('vue').PropType<import('element-plus').Placement>;
|
|
97
|
+
readonly required: false;
|
|
98
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
99
|
+
__epPropKey: true;
|
|
100
|
+
} & {
|
|
101
|
+
readonly default: "bottom";
|
|
102
|
+
};
|
|
103
|
+
fallbackPlacements: {
|
|
104
|
+
readonly type: import('vue').PropType<import('element-plus').Placement[]>;
|
|
105
|
+
readonly required: false;
|
|
106
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
107
|
+
__epPropKey: true;
|
|
108
|
+
} & {
|
|
109
|
+
readonly default: readonly ["bottom", "top", "right", "left"];
|
|
110
|
+
};
|
|
55
111
|
disabledHours: {
|
|
56
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
112
|
+
readonly type: import('vue').PropType<import('element-plus').GetDisabledHours>;
|
|
57
113
|
readonly required: false;
|
|
58
114
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
59
115
|
__epPropKey: true;
|
|
60
116
|
};
|
|
61
117
|
disabledMinutes: {
|
|
62
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
118
|
+
readonly type: import('vue').PropType<import('element-plus').GetDisabledMinutes>;
|
|
63
119
|
readonly required: false;
|
|
64
120
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
65
121
|
__epPropKey: true;
|
|
66
122
|
};
|
|
67
123
|
disabledSeconds: {
|
|
68
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
124
|
+
readonly type: import('vue').PropType<import('element-plus').GetDisabledSeconds>;
|
|
69
125
|
readonly required: false;
|
|
70
126
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
71
127
|
__epPropKey: true;
|
|
72
128
|
};
|
|
73
129
|
id: {
|
|
74
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
130
|
+
readonly type: import('vue').PropType<import('element-plus').SingleOrRange<string>>;
|
|
75
131
|
readonly required: false;
|
|
76
132
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
77
133
|
__epPropKey: true;
|
|
78
134
|
};
|
|
79
135
|
name: {
|
|
80
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
136
|
+
readonly type: import('vue').PropType<import('element-plus').SingleOrRange<string>>;
|
|
137
|
+
readonly required: false;
|
|
138
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
139
|
+
__epPropKey: true;
|
|
140
|
+
};
|
|
141
|
+
popperClass: {
|
|
142
|
+
readonly type: import('vue').PropType<string>;
|
|
81
143
|
readonly required: false;
|
|
82
144
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
145
|
__epPropKey: true;
|
|
146
|
+
} & {
|
|
147
|
+
readonly default: "";
|
|
84
148
|
};
|
|
85
|
-
popperClass: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
86
149
|
valueFormat: StringConstructor;
|
|
87
150
|
dateFormat: StringConstructor;
|
|
88
151
|
timeFormat: StringConstructor;
|
|
89
|
-
clearable:
|
|
152
|
+
clearable: {
|
|
153
|
+
readonly type: import('vue').PropType<boolean>;
|
|
154
|
+
readonly required: false;
|
|
155
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
156
|
+
__epPropKey: true;
|
|
157
|
+
} & {
|
|
158
|
+
readonly default: true;
|
|
159
|
+
};
|
|
90
160
|
clearIcon: {
|
|
91
|
-
readonly type: import('vue').PropType<
|
|
161
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
162
|
+
readonly required: false;
|
|
163
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
164
|
+
__epPropKey: true;
|
|
165
|
+
};
|
|
166
|
+
editable: {
|
|
167
|
+
readonly type: import('vue').PropType<boolean>;
|
|
168
|
+
readonly required: false;
|
|
169
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
170
|
+
__epPropKey: true;
|
|
171
|
+
} & {
|
|
172
|
+
readonly default: true;
|
|
173
|
+
};
|
|
174
|
+
prefixIcon: {
|
|
175
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
92
176
|
readonly required: false;
|
|
93
177
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
94
178
|
__epPropKey: true;
|
|
179
|
+
} & {
|
|
180
|
+
readonly default: "";
|
|
95
181
|
};
|
|
96
|
-
editable: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
97
|
-
prefixIcon: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown, "", boolean>;
|
|
98
182
|
size: {
|
|
99
|
-
readonly type: import('vue').PropType<
|
|
183
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
100
184
|
readonly required: false;
|
|
101
185
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
102
186
|
__epPropKey: true;
|
|
103
187
|
};
|
|
104
188
|
readonly: BooleanConstructor;
|
|
105
|
-
popperOptions:
|
|
106
|
-
|
|
107
|
-
|
|
189
|
+
popperOptions: {
|
|
190
|
+
readonly type: import('vue').PropType<Partial<import('element-plus').Options>>;
|
|
191
|
+
readonly required: false;
|
|
192
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
193
|
+
__epPropKey: true;
|
|
194
|
+
} & {
|
|
195
|
+
readonly default: () => {};
|
|
196
|
+
};
|
|
197
|
+
modelValue: {
|
|
198
|
+
readonly type: import('vue').PropType<import('element-plus').ModelValueType>;
|
|
199
|
+
readonly required: false;
|
|
200
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
201
|
+
__epPropKey: true;
|
|
202
|
+
} & {
|
|
203
|
+
readonly default: "";
|
|
204
|
+
};
|
|
205
|
+
rangeSeparator: {
|
|
206
|
+
readonly type: import('vue').PropType<string>;
|
|
207
|
+
readonly required: false;
|
|
208
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
209
|
+
__epPropKey: true;
|
|
210
|
+
} & {
|
|
211
|
+
readonly default: "-";
|
|
212
|
+
};
|
|
108
213
|
defaultValue: {
|
|
109
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
214
|
+
readonly type: import('vue').PropType<import('element-plus').SingleOrRange<Date>>;
|
|
110
215
|
readonly required: false;
|
|
111
216
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
112
217
|
__epPropKey: true;
|
|
113
218
|
};
|
|
114
219
|
defaultTime: {
|
|
115
|
-
readonly type: import('vue').PropType<import('element-plus
|
|
220
|
+
readonly type: import('vue').PropType<import('element-plus').SingleOrRange<Date>>;
|
|
116
221
|
readonly required: false;
|
|
117
222
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
118
223
|
__epPropKey: true;
|
|
@@ -34,17 +34,52 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
34
34
|
default: () => void;
|
|
35
35
|
};
|
|
36
36
|
border: BooleanConstructor;
|
|
37
|
-
column:
|
|
38
|
-
|
|
37
|
+
column: {
|
|
38
|
+
readonly type: import('vue').PropType<number>;
|
|
39
|
+
readonly required: false;
|
|
40
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
41
|
+
__epPropKey: true;
|
|
42
|
+
} & {
|
|
43
|
+
readonly default: 3;
|
|
44
|
+
};
|
|
45
|
+
direction: {
|
|
46
|
+
readonly type: import('vue').PropType<"horizontal" | "vertical">;
|
|
47
|
+
readonly required: false;
|
|
48
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
|
+
__epPropKey: true;
|
|
50
|
+
} & {
|
|
51
|
+
readonly default: "horizontal";
|
|
52
|
+
};
|
|
39
53
|
size: {
|
|
40
|
-
readonly type: import('vue').PropType<
|
|
54
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
55
|
+
readonly required: false;
|
|
56
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
+
__epPropKey: true;
|
|
58
|
+
};
|
|
59
|
+
title: {
|
|
60
|
+
readonly type: import('vue').PropType<string>;
|
|
61
|
+
readonly required: false;
|
|
62
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
63
|
+
__epPropKey: true;
|
|
64
|
+
} & {
|
|
65
|
+
readonly default: "";
|
|
66
|
+
};
|
|
67
|
+
extra: {
|
|
68
|
+
readonly type: import('vue').PropType<string>;
|
|
69
|
+
readonly required: false;
|
|
70
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
71
|
+
__epPropKey: true;
|
|
72
|
+
} & {
|
|
73
|
+
readonly default: "";
|
|
74
|
+
};
|
|
75
|
+
labelWidth: {
|
|
76
|
+
readonly type: import('vue').PropType<string | number>;
|
|
41
77
|
readonly required: false;
|
|
42
78
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
43
79
|
__epPropKey: true;
|
|
80
|
+
} & {
|
|
81
|
+
readonly default: "";
|
|
44
82
|
};
|
|
45
|
-
title: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
46
|
-
extra: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
47
|
-
labelWidth: import('element-plus/es/utils').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
48
83
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
84
|
list: {
|
|
50
85
|
type: {
|
|
@@ -70,24 +105,59 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
70
105
|
default: () => void;
|
|
71
106
|
};
|
|
72
107
|
border: BooleanConstructor;
|
|
73
|
-
column:
|
|
74
|
-
|
|
108
|
+
column: {
|
|
109
|
+
readonly type: import('vue').PropType<number>;
|
|
110
|
+
readonly required: false;
|
|
111
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
112
|
+
__epPropKey: true;
|
|
113
|
+
} & {
|
|
114
|
+
readonly default: 3;
|
|
115
|
+
};
|
|
116
|
+
direction: {
|
|
117
|
+
readonly type: import('vue').PropType<"horizontal" | "vertical">;
|
|
118
|
+
readonly required: false;
|
|
119
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
120
|
+
__epPropKey: true;
|
|
121
|
+
} & {
|
|
122
|
+
readonly default: "horizontal";
|
|
123
|
+
};
|
|
75
124
|
size: {
|
|
76
|
-
readonly type: import('vue').PropType<
|
|
125
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
126
|
+
readonly required: false;
|
|
127
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
128
|
+
__epPropKey: true;
|
|
129
|
+
};
|
|
130
|
+
title: {
|
|
131
|
+
readonly type: import('vue').PropType<string>;
|
|
132
|
+
readonly required: false;
|
|
133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
|
+
__epPropKey: true;
|
|
135
|
+
} & {
|
|
136
|
+
readonly default: "";
|
|
137
|
+
};
|
|
138
|
+
extra: {
|
|
139
|
+
readonly type: import('vue').PropType<string>;
|
|
140
|
+
readonly required: false;
|
|
141
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
|
+
__epPropKey: true;
|
|
143
|
+
} & {
|
|
144
|
+
readonly default: "";
|
|
145
|
+
};
|
|
146
|
+
labelWidth: {
|
|
147
|
+
readonly type: import('vue').PropType<string | number>;
|
|
77
148
|
readonly required: false;
|
|
78
149
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
79
150
|
__epPropKey: true;
|
|
151
|
+
} & {
|
|
152
|
+
readonly default: "";
|
|
80
153
|
};
|
|
81
|
-
title: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
82
|
-
extra: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
83
|
-
labelWidth: import('element-plus/es/utils').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
84
154
|
}>> & Readonly<{}>, {
|
|
85
155
|
title: string;
|
|
86
156
|
data: Record<string, any>;
|
|
87
157
|
border: boolean;
|
|
88
|
-
direction:
|
|
158
|
+
direction: "horizontal" | "vertical";
|
|
89
159
|
list: import('./types').DescriptionItem[];
|
|
90
|
-
labelWidth:
|
|
160
|
+
labelWidth: string | number;
|
|
91
161
|
column: number;
|
|
92
162
|
extra: string;
|
|
93
163
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -29,16 +29,51 @@ export declare const commonDescriptionsProps: {
|
|
|
29
29
|
default: () => void;
|
|
30
30
|
};
|
|
31
31
|
border: BooleanConstructor;
|
|
32
|
-
column:
|
|
33
|
-
|
|
32
|
+
column: {
|
|
33
|
+
readonly type: import('vue').PropType<number>;
|
|
34
|
+
readonly required: false;
|
|
35
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
36
|
+
__epPropKey: true;
|
|
37
|
+
} & {
|
|
38
|
+
readonly default: 3;
|
|
39
|
+
};
|
|
40
|
+
direction: {
|
|
41
|
+
readonly type: import('vue').PropType<"horizontal" | "vertical">;
|
|
42
|
+
readonly required: false;
|
|
43
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
44
|
+
__epPropKey: true;
|
|
45
|
+
} & {
|
|
46
|
+
readonly default: "horizontal";
|
|
47
|
+
};
|
|
34
48
|
size: {
|
|
35
|
-
readonly type: import('vue').PropType<
|
|
49
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
50
|
+
readonly required: false;
|
|
51
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
52
|
+
__epPropKey: true;
|
|
53
|
+
};
|
|
54
|
+
title: {
|
|
55
|
+
readonly type: import('vue').PropType<string>;
|
|
56
|
+
readonly required: false;
|
|
57
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
58
|
+
__epPropKey: true;
|
|
59
|
+
} & {
|
|
60
|
+
readonly default: "";
|
|
61
|
+
};
|
|
62
|
+
extra: {
|
|
63
|
+
readonly type: import('vue').PropType<string>;
|
|
64
|
+
readonly required: false;
|
|
65
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
|
+
__epPropKey: true;
|
|
67
|
+
} & {
|
|
68
|
+
readonly default: "";
|
|
69
|
+
};
|
|
70
|
+
labelWidth: {
|
|
71
|
+
readonly type: import('vue').PropType<string | number>;
|
|
36
72
|
readonly required: false;
|
|
37
73
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
38
74
|
__epPropKey: true;
|
|
75
|
+
} & {
|
|
76
|
+
readonly default: "";
|
|
39
77
|
};
|
|
40
|
-
title: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
41
|
-
extra: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
42
|
-
labelWidth: import('element-plus/es/utils').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
|
|
43
78
|
};
|
|
44
79
|
export type CommonDescriptionsProps = ExtractPropTypes<typeof commonDescriptionsProps>;
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
import { FormItemProps } from 'element-plus';
|
|
2
|
+
declare let __VLS_typeProps: {
|
|
3
|
+
formKey: string;
|
|
4
|
+
isSearch: boolean;
|
|
5
|
+
formItemConfig: Partial<FormItemProps>;
|
|
6
|
+
menuHeight: number;
|
|
7
|
+
};
|
|
1
8
|
type __VLS_PublicProps = {
|
|
2
9
|
modelValue?: any;
|
|
3
|
-
};
|
|
10
|
+
} & typeof __VLS_typeProps;
|
|
4
11
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
12
|
"update:modelValue": (modelValue: any) => any;
|
|
6
13
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|