zhihao-ui 1.3.53-alpha.1 → 1.3.54
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/es/{BaseInfo-sVzjdD-J.js → BaseInfo-Bz9HbxrR.js} +1 -1
- package/dist/es/{BaseItem-GXRA8ZA1.js → BaseItem-DQKOTeth.js} +3 -3
- package/dist/es/{Button-BesP4PgT.js → Button-DSjKm2wO.js} +4 -4
- package/dist/es/CascaderLoadMore-CdndYSd1.js +282 -0
- package/dist/es/{DatePicker-DC6dnKyf.js → DatePicker-BSdiMSHq.js} +6 -6
- package/dist/es/{DetailHeader-CmPxe1Ax.js → DetailHeader-BaVN1zZA.js} +3 -3
- package/dist/es/{DetailSubTitle-Dcl3NhAz.js → DetailSubTitle-BMIe2Qwe.js} +2 -2
- package/dist/es/{Dialog-BQI8fide.js → Dialog-MVXB7s2S.js} +3 -3
- package/dist/es/DiyDataTable-Bi4KyAh2.js +366 -0
- package/dist/es/{EditInfoPair-BOHAKFjx.js → EditInfoPair-Zed59i0Z.js} +3 -3
- package/dist/es/{FileWrapper-Ey58lE7o.js → FileWrapper-DwYXt2R_.js} +4 -4
- package/dist/es/{Grid-BVUCuOKh.js → Grid-CCcxjfAs.js} +2 -2
- package/dist/es/{InfoPair-Ca9ZP51Y.js → InfoPair-DbQZtDZ4.js} +3 -3
- package/dist/es/{Input-cQCwMUFx.js → Input-CJadFglX.js} +14 -14
- package/dist/es/{Loading-CXua8fFz.js → Loading-C9Te67Gr.js} +2 -2
- package/dist/es/{Map-DcEb49Xm.js → Map-rM-FhwBq.js} +48 -48
- package/dist/es/{MessageBox-pplEjs7p.js → MessageBox-BzwToZ0E.js} +2 -2
- package/dist/es/{MoneyInput-mbK46fDe.js → MoneyInput-Cildlxii.js} +5 -5
- package/dist/es/{PageHeadPanel-DZpXrTX7.js → PageHeadPanel-oLoxYR29.js} +2 -2
- package/dist/es/Table-BcTA1mjZ.js +1177 -0
- package/dist/es/{ToolTips-BANjeDoq.js → ToolTips-H93PrmYL.js} +3 -3
- package/dist/es/index.js +43 -40
- package/dist/es/{utils-C_wn2FAv.js → utils-DRDkj6ga.js} +3 -3
- package/dist/es/{vendor-B66Z2ylW.js → vendor-CxcudVpO.js} +12907 -11386
- package/dist/index.css +1 -1
- package/dist/types/components/BaseItem/BaseItem.vue.d.ts +1 -1
- package/dist/types/components/BaseItem/index.d.ts +10 -10
- package/dist/types/components/BaseItem/types.d.ts +1 -1
- package/dist/types/components/CascaderLoadMore/CascaderLoadMore.vue.d.ts +18 -0
- package/dist/types/components/CascaderLoadMore/index.d.ts +30 -0
- package/dist/types/components/DetailHeader/index.d.ts +3 -3
- package/dist/types/components/DetailHeader/types.d.ts +1 -1
- package/dist/types/components/Dialog/Dialog.vue.d.ts +12 -12
- package/dist/types/components/Dialog/index.d.ts +18 -18
- package/dist/types/components/DiyDataTable/DiyDataTable.vue.d.ts +386 -1
- package/dist/types/components/DiyDataTable/index.d.ts +1131 -0
- package/dist/types/components/DiyDataTable/type.d.ts +17 -1
- package/dist/types/components/Table/types.d.ts +1 -0
- package/dist/types/components/Table/utils.d.ts +4 -0
- package/dist/types/components/ToolTips/index.d.ts +18 -18
- package/dist/types/components/index.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +66 -46
- package/package.json +3 -5
- package/dist/es/DiyDataTable-rWdFpGWu.js +0 -331
- package/dist/es/Table-9TlcfLzo.js +0 -1155
|
@@ -2,7 +2,7 @@ import { ZhBaseItemProp } from './types.ts';
|
|
|
2
2
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
value?(_: {
|
|
5
|
-
content: string | number | undefined;
|
|
5
|
+
content: string | number | null | undefined;
|
|
6
6
|
}): any;
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ZhBaseItemProp>, {
|
|
@@ -17,15 +17,15 @@ export declare const ZhBaseItem: {
|
|
|
17
17
|
onClick: {
|
|
18
18
|
type: import('vue').PropType<(value?: string | number) => void>;
|
|
19
19
|
};
|
|
20
|
+
value: {
|
|
21
|
+
type: import('vue').PropType<string | number | null>;
|
|
22
|
+
};
|
|
20
23
|
className: {
|
|
21
24
|
type: import('vue').PropType<string>;
|
|
22
25
|
};
|
|
23
26
|
labelClassName: {
|
|
24
27
|
type: import('vue').PropType<string>;
|
|
25
28
|
};
|
|
26
|
-
value: {
|
|
27
|
-
type: import('vue').PropType<string | number>;
|
|
28
|
-
};
|
|
29
29
|
defaultValue: {
|
|
30
30
|
type: import('vue').PropType<string>;
|
|
31
31
|
default: string;
|
|
@@ -87,15 +87,15 @@ export declare const ZhBaseItem: {
|
|
|
87
87
|
onClick: {
|
|
88
88
|
type: import('vue').PropType<(value?: string | number) => void>;
|
|
89
89
|
};
|
|
90
|
+
value: {
|
|
91
|
+
type: import('vue').PropType<string | number | null>;
|
|
92
|
+
};
|
|
90
93
|
className: {
|
|
91
94
|
type: import('vue').PropType<string>;
|
|
92
95
|
};
|
|
93
96
|
labelClassName: {
|
|
94
97
|
type: import('vue').PropType<string>;
|
|
95
98
|
};
|
|
96
|
-
value: {
|
|
97
|
-
type: import('vue').PropType<string | number>;
|
|
98
|
-
};
|
|
99
99
|
defaultValue: {
|
|
100
100
|
type: import('vue').PropType<string>;
|
|
101
101
|
default: string;
|
|
@@ -154,15 +154,15 @@ export declare const ZhBaseItem: {
|
|
|
154
154
|
onClick: {
|
|
155
155
|
type: import('vue').PropType<(value?: string | number) => void>;
|
|
156
156
|
};
|
|
157
|
+
value: {
|
|
158
|
+
type: import('vue').PropType<string | number | null>;
|
|
159
|
+
};
|
|
157
160
|
className: {
|
|
158
161
|
type: import('vue').PropType<string>;
|
|
159
162
|
};
|
|
160
163
|
labelClassName: {
|
|
161
164
|
type: import('vue').PropType<string>;
|
|
162
165
|
};
|
|
163
|
-
value: {
|
|
164
|
-
type: import('vue').PropType<string | number>;
|
|
165
|
-
};
|
|
166
166
|
defaultValue: {
|
|
167
167
|
type: import('vue').PropType<string>;
|
|
168
168
|
default: string;
|
|
@@ -202,7 +202,7 @@ export declare const ZhBaseItem: {
|
|
|
202
202
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
203
203
|
$slots: {
|
|
204
204
|
value?(_: {
|
|
205
|
-
content: string | number | undefined;
|
|
205
|
+
content: string | number | null | undefined;
|
|
206
206
|
}): any;
|
|
207
207
|
};
|
|
208
208
|
}) & import('vue').Plugin;
|
|
@@ -74,6 +74,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
74
74
|
type: StringConstructor;
|
|
75
75
|
default: string;
|
|
76
76
|
};
|
|
77
|
+
teleported: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
noDataText: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
77
85
|
}>, {
|
|
78
86
|
reset: () => void;
|
|
79
87
|
getSelectedOption: (searchId?: typeof selectedValue.value) => {
|
|
@@ -179,6 +187,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
179
187
|
type: StringConstructor;
|
|
180
188
|
default: string;
|
|
181
189
|
};
|
|
190
|
+
teleported: {
|
|
191
|
+
type: BooleanConstructor;
|
|
192
|
+
default: boolean;
|
|
193
|
+
};
|
|
194
|
+
noDataText: {
|
|
195
|
+
type: StringConstructor;
|
|
196
|
+
default: string;
|
|
197
|
+
};
|
|
182
198
|
}>> & Readonly<{
|
|
183
199
|
onChange?: ((value: unknown, selectedItem: unknown) => any) | undefined;
|
|
184
200
|
onRemoveTag?: ((value: string | number) => any) | undefined;
|
|
@@ -195,5 +211,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
195
211
|
placement: CascaderPlacementType;
|
|
196
212
|
trigger: CascaderTriggerType;
|
|
197
213
|
popperClass: string;
|
|
214
|
+
teleported: boolean;
|
|
215
|
+
noDataText: string;
|
|
198
216
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
199
217
|
export default _default;
|
|
@@ -71,6 +71,14 @@ export declare const ZhCascaderLoadMore: {
|
|
|
71
71
|
type: StringConstructor;
|
|
72
72
|
default: string;
|
|
73
73
|
};
|
|
74
|
+
teleported: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
78
|
+
noDataText: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
74
82
|
}>> & Readonly<{
|
|
75
83
|
onChange?: ((value: unknown, selectedItem: unknown) => any) | undefined;
|
|
76
84
|
onRemoveTag?: ((value: string | number) => any) | undefined;
|
|
@@ -121,6 +129,8 @@ export declare const ZhCascaderLoadMore: {
|
|
|
121
129
|
placement: import('./types.ts').CascaderPlacementType;
|
|
122
130
|
trigger: import('./types.ts').CascaderTriggerType;
|
|
123
131
|
popperClass: string;
|
|
132
|
+
teleported: boolean;
|
|
133
|
+
noDataText: string;
|
|
124
134
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
125
135
|
P: {};
|
|
126
136
|
B: {};
|
|
@@ -199,6 +209,14 @@ export declare const ZhCascaderLoadMore: {
|
|
|
199
209
|
type: StringConstructor;
|
|
200
210
|
default: string;
|
|
201
211
|
};
|
|
212
|
+
teleported: {
|
|
213
|
+
type: BooleanConstructor;
|
|
214
|
+
default: boolean;
|
|
215
|
+
};
|
|
216
|
+
noDataText: {
|
|
217
|
+
type: StringConstructor;
|
|
218
|
+
default: string;
|
|
219
|
+
};
|
|
202
220
|
}>> & Readonly<{
|
|
203
221
|
onChange?: ((value: unknown, selectedItem: unknown) => any) | undefined;
|
|
204
222
|
onRemoveTag?: ((value: string | number) => any) | undefined;
|
|
@@ -246,6 +264,8 @@ export declare const ZhCascaderLoadMore: {
|
|
|
246
264
|
placement: import('./types.ts').CascaderPlacementType;
|
|
247
265
|
trigger: import('./types.ts').CascaderTriggerType;
|
|
248
266
|
popperClass: string;
|
|
267
|
+
teleported: boolean;
|
|
268
|
+
noDataText: string;
|
|
249
269
|
}>;
|
|
250
270
|
__isFragment?: never;
|
|
251
271
|
__isTeleport?: never;
|
|
@@ -321,6 +341,14 @@ export declare const ZhCascaderLoadMore: {
|
|
|
321
341
|
type: StringConstructor;
|
|
322
342
|
default: string;
|
|
323
343
|
};
|
|
344
|
+
teleported: {
|
|
345
|
+
type: BooleanConstructor;
|
|
346
|
+
default: boolean;
|
|
347
|
+
};
|
|
348
|
+
noDataText: {
|
|
349
|
+
type: StringConstructor;
|
|
350
|
+
default: string;
|
|
351
|
+
};
|
|
324
352
|
}>> & Readonly<{
|
|
325
353
|
onChange?: ((value: unknown, selectedItem: unknown) => any) | undefined;
|
|
326
354
|
onRemoveTag?: ((value: string | number) => any) | undefined;
|
|
@@ -371,4 +399,6 @@ export declare const ZhCascaderLoadMore: {
|
|
|
371
399
|
placement: import('./types.ts').CascaderPlacementType;
|
|
372
400
|
trigger: import('./types.ts').CascaderTriggerType;
|
|
373
401
|
popperClass: string;
|
|
402
|
+
teleported: boolean;
|
|
403
|
+
noDataText: string;
|
|
374
404
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|
|
@@ -14,7 +14,7 @@ export declare const ZhDetailHeader: {
|
|
|
14
14
|
type: import('vue').PropType<any>;
|
|
15
15
|
};
|
|
16
16
|
stateDesc: {
|
|
17
|
-
type: import('vue').PropType<string>;
|
|
17
|
+
type: import('vue').PropType<string | number | null>;
|
|
18
18
|
};
|
|
19
19
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
20
20
|
P: {};
|
|
@@ -38,7 +38,7 @@ export declare const ZhDetailHeader: {
|
|
|
38
38
|
type: import('vue').PropType<any>;
|
|
39
39
|
};
|
|
40
40
|
stateDesc: {
|
|
41
|
-
type: import('vue').PropType<string>;
|
|
41
|
+
type: import('vue').PropType<string | number | null>;
|
|
42
42
|
};
|
|
43
43
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
44
44
|
__isFragment?: never;
|
|
@@ -59,7 +59,7 @@ export declare const ZhDetailHeader: {
|
|
|
59
59
|
type: import('vue').PropType<any>;
|
|
60
60
|
};
|
|
61
61
|
stateDesc: {
|
|
62
|
-
type: import('vue').PropType<string>;
|
|
62
|
+
type: import('vue').PropType<string | number | null>;
|
|
63
63
|
};
|
|
64
64
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
65
65
|
$slots: {
|
|
@@ -12,15 +12,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
12
12
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
-
width: {
|
|
16
|
-
type: import('vue').PropType<string | number>;
|
|
17
|
-
};
|
|
18
15
|
top: {
|
|
19
16
|
type: import('vue').PropType<string>;
|
|
20
17
|
};
|
|
21
18
|
appendTo: {
|
|
22
19
|
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
|
|
23
20
|
};
|
|
21
|
+
showClose: {
|
|
22
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
23
|
+
};
|
|
24
|
+
width: {
|
|
25
|
+
type: import('vue').PropType<string | number>;
|
|
26
|
+
};
|
|
24
27
|
zIndex: {
|
|
25
28
|
type: import('vue').PropType<number>;
|
|
26
29
|
};
|
|
@@ -79,9 +82,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
79
82
|
fullscreen: {
|
|
80
83
|
type: import('vue').PropType<boolean>;
|
|
81
84
|
};
|
|
82
|
-
showClose: {
|
|
83
|
-
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
84
|
-
};
|
|
85
85
|
ariaLevel: {
|
|
86
86
|
type: import('vue').PropType<string>;
|
|
87
87
|
};
|
|
@@ -112,15 +112,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
112
112
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
113
113
|
default: string;
|
|
114
114
|
};
|
|
115
|
-
width: {
|
|
116
|
-
type: import('vue').PropType<string | number>;
|
|
117
|
-
};
|
|
118
115
|
top: {
|
|
119
116
|
type: import('vue').PropType<string>;
|
|
120
117
|
};
|
|
121
118
|
appendTo: {
|
|
122
119
|
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
|
|
123
120
|
};
|
|
121
|
+
showClose: {
|
|
122
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
123
|
+
};
|
|
124
|
+
width: {
|
|
125
|
+
type: import('vue').PropType<string | number>;
|
|
126
|
+
};
|
|
124
127
|
zIndex: {
|
|
125
128
|
type: import('vue').PropType<number>;
|
|
126
129
|
};
|
|
@@ -179,9 +182,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
179
182
|
fullscreen: {
|
|
180
183
|
type: import('vue').PropType<boolean>;
|
|
181
184
|
};
|
|
182
|
-
showClose: {
|
|
183
|
-
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
184
|
-
};
|
|
185
185
|
ariaLevel: {
|
|
186
186
|
type: import('vue').PropType<string>;
|
|
187
187
|
};
|
|
@@ -8,15 +8,18 @@ export declare const ZhDialog: {
|
|
|
8
8
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
|
-
width: {
|
|
12
|
-
type: import('vue').PropType<string | number>;
|
|
13
|
-
};
|
|
14
11
|
top: {
|
|
15
12
|
type: import('vue').PropType<string>;
|
|
16
13
|
};
|
|
17
14
|
appendTo: {
|
|
18
15
|
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
|
|
19
16
|
};
|
|
17
|
+
showClose: {
|
|
18
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
19
|
+
};
|
|
20
|
+
width: {
|
|
21
|
+
type: import('vue').PropType<string | number>;
|
|
22
|
+
};
|
|
20
23
|
zIndex: {
|
|
21
24
|
type: import('vue').PropType<number>;
|
|
22
25
|
};
|
|
@@ -75,9 +78,6 @@ export declare const ZhDialog: {
|
|
|
75
78
|
fullscreen: {
|
|
76
79
|
type: import('vue').PropType<boolean>;
|
|
77
80
|
};
|
|
78
|
-
showClose: {
|
|
79
|
-
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
80
|
-
};
|
|
81
81
|
ariaLevel: {
|
|
82
82
|
type: import('vue').PropType<string>;
|
|
83
83
|
};
|
|
@@ -124,15 +124,18 @@ export declare const ZhDialog: {
|
|
|
124
124
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
125
125
|
default: string;
|
|
126
126
|
};
|
|
127
|
-
width: {
|
|
128
|
-
type: import('vue').PropType<string | number>;
|
|
129
|
-
};
|
|
130
127
|
top: {
|
|
131
128
|
type: import('vue').PropType<string>;
|
|
132
129
|
};
|
|
133
130
|
appendTo: {
|
|
134
131
|
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
|
|
135
132
|
};
|
|
133
|
+
showClose: {
|
|
134
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
135
|
+
};
|
|
136
|
+
width: {
|
|
137
|
+
type: import('vue').PropType<string | number>;
|
|
138
|
+
};
|
|
136
139
|
zIndex: {
|
|
137
140
|
type: import('vue').PropType<number>;
|
|
138
141
|
};
|
|
@@ -191,9 +194,6 @@ export declare const ZhDialog: {
|
|
|
191
194
|
fullscreen: {
|
|
192
195
|
type: import('vue').PropType<boolean>;
|
|
193
196
|
};
|
|
194
|
-
showClose: {
|
|
195
|
-
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
196
|
-
};
|
|
197
197
|
ariaLevel: {
|
|
198
198
|
type: import('vue').PropType<string>;
|
|
199
199
|
};
|
|
@@ -234,15 +234,18 @@ export declare const ZhDialog: {
|
|
|
234
234
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
235
235
|
default: string;
|
|
236
236
|
};
|
|
237
|
-
width: {
|
|
238
|
-
type: import('vue').PropType<string | number>;
|
|
239
|
-
};
|
|
240
237
|
top: {
|
|
241
238
|
type: import('vue').PropType<string>;
|
|
242
239
|
};
|
|
243
240
|
appendTo: {
|
|
244
241
|
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>>;
|
|
245
242
|
};
|
|
243
|
+
showClose: {
|
|
244
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
245
|
+
};
|
|
246
|
+
width: {
|
|
247
|
+
type: import('vue').PropType<string | number>;
|
|
248
|
+
};
|
|
246
249
|
zIndex: {
|
|
247
250
|
type: import('vue').PropType<number>;
|
|
248
251
|
};
|
|
@@ -301,9 +304,6 @@ export declare const ZhDialog: {
|
|
|
301
304
|
fullscreen: {
|
|
302
305
|
type: import('vue').PropType<boolean>;
|
|
303
306
|
};
|
|
304
|
-
showClose: {
|
|
305
|
-
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
306
|
-
};
|
|
307
307
|
ariaLevel: {
|
|
308
308
|
type: import('vue').PropType<string>;
|
|
309
309
|
};
|