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.
Files changed (31) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.css.gz +0 -0
  3. package/dist/index.js +25277 -24871
  4. package/dist/index.js.gz +0 -0
  5. package/dist/index.umd.cjs +44 -52
  6. package/dist/src/components/CommonCheckbox/src/index.vue.d.ts +2 -2
  7. package/dist/src/components/CommonCheckbox/src/types.d.ts +1 -1
  8. package/dist/src/components/CommonCheckboxGroup/src/index.vue.d.ts +48 -20
  9. package/dist/src/components/CommonCheckboxGroup/src/types.d.ts +23 -9
  10. package/dist/src/components/CommonDatePicker/src/index.vue.d.ts +268 -58
  11. package/dist/src/components/CommonDatePicker/src/types.d.ts +129 -24
  12. package/dist/src/components/CommonDescriptions/src/index.vue.d.ts +84 -14
  13. package/dist/src/components/CommonDescriptions/src/types.d.ts +41 -6
  14. package/dist/src/components/CommonForm/fields/Cascader.vue.d.ts +8 -1
  15. package/dist/src/components/CommonForm/hooks.d.ts +1 -0
  16. package/dist/src/components/CommonForm/src/hooks.d.ts +3 -368
  17. package/dist/src/components/CommonForm/src/index.vue.d.ts +107 -23
  18. package/dist/src/components/CommonForm/types.d.ts +55 -10
  19. package/dist/src/components/CommonRadio/src/index.vue.d.ts +19 -5
  20. package/dist/src/components/CommonRadio/src/types.d.ts +9 -2
  21. package/dist/src/components/CommonRadioButton/src/index.vue.d.ts +19 -5
  22. package/dist/src/components/CommonRadioButton/src/types.d.ts +9 -2
  23. package/dist/src/components/CommonRadioGroup/src/index.vue.d.ts +184 -37
  24. package/dist/src/components/CommonRadioGroup/src/types.d.ts +87 -17
  25. package/dist/src/components/CommonTable/src/function.d.ts +2 -1
  26. package/dist/src/components/CommonTable/src/hooks.d.ts +10 -10
  27. package/dist/src/components/CommonTable/src/index.vue.d.ts +116 -34
  28. package/dist/src/components/CommonTable/src/types.d.ts +1 -2
  29. package/dist/src/components/CommonTabs/src/index.vue.d.ts +53 -27
  30. package/dist/src/components/CommonTabs/src/types.d.ts +25 -12
  31. 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: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type').IDatePickerType))[], unknown, unknown, "date", boolean>;
32
- showNow: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
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: import('element-plus/es/utils').EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
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: import('element-plus/es/utils').EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
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: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
51
- validateEvent: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
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: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown, "bottom", boolean>;
54
- fallbackPlacements: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]) | ((new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
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/es/components/time-picker/src/props/shared').GetDisabledHours>;
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/es/components/time-picker/src/props/shared').GetDisabledMinutes>;
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/es/components/time-picker/src/props/shared').GetDisabledSeconds>;
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/es/utils').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
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/es/utils').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
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: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
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<import('element-plus/es/utils').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>>;
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<import('element-plus/es/utils').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
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: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>) | ((new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>))[], unknown, unknown, () => {}, boolean>;
106
- modelValue: import('element-plus/es/utils').EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown, "", boolean>;
107
- rangeSeparator: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
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/es/utils').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
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/es/utils').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
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: import('element-plus/es/utils').EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
38
- direction: import('element-plus/es/utils').EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
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<import('element-plus/es/utils').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
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: import('element-plus/es/utils').EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
74
- direction: import('element-plus/es/utils').EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
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<import('element-plus/es/utils').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
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: import('element-plus/es/utils').EpPropMergeType<StringConstructor, "horizontal" | "vertical", unknown>;
158
+ direction: "horizontal" | "vertical";
89
159
  list: import('./types').DescriptionItem[];
90
- labelWidth: import('element-plus/es/utils').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
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: import('element-plus/es/utils').EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
33
- direction: import('element-plus/es/utils').EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
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<import('element-plus/es/utils').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
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<{
@@ -15,3 +15,4 @@ export declare const useOptions: (attrs?: any) => {
15
15
  * @returns
16
16
  */
17
17
  export declare function getTextWidth(text?: string, extraWidth?: number): number;
18
+ export declare const renderValueOrNode: (value?: string | VNode) => import("vue/jsx-runtime").JSX.Element;