zhihao-ui 1.3.61-alpha.2 → 1.3.61-alpha.4
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-DWd9fBe_.js → BaseInfo-aiVRbjTP.js} +4 -4
- package/dist/es/{BaseItem-BIgkJypI.js → BaseItem-B_4mwWHs.js} +4 -4
- package/dist/es/{Button-C39vlreJ.js → Button-BFA52ivn.js} +5 -5
- package/dist/es/{CascaderLoadMore-3c8IyUIK.js → CascaderLoadMore-C6micaqI.js} +11 -11
- package/dist/es/{DatePicker-BPxk-cae.js → DatePicker-DyqXtiRa.js} +5 -5
- package/dist/es/{DetailHeader-DayCYQYv.js → DetailHeader-pQXMyG5I.js} +11 -11
- package/dist/es/{DetailSubTitle-LdM7Vzn2.js → DetailSubTitle-B-DcaPqI.js} +5 -5
- package/dist/es/{Dialog-BVC9Lz_w.js → Dialog-BptDzN8n.js} +19 -24
- package/dist/es/{DiyDataTable-B4LomMD5.js → DiyDataTable-Bt-ZrRFy.js} +10 -10
- package/dist/es/{EditInfoPair-DKVWV5Hg.js → EditInfoPair-DCjZGPkz.js} +6 -6
- package/dist/es/{FileWrapper-B5pKpayw.js → FileWrapper-xu2XFTT8.js} +10 -10
- package/dist/es/{Grid-0ApZ4lgz.js → Grid-DEbsTV3v.js} +10 -10
- package/dist/es/{InfoPair-BIWQXLV1.js → InfoPair-B9nTZ_iX.js} +6 -6
- package/dist/es/{Input-D4Bh5SDE.js → Input-FPnMJc-X.js} +8 -8
- package/dist/es/{Loading-CjOeNl4l.js → Loading-D1OYqPWU.js} +4 -4
- package/dist/es/{Map-qSFTN8LW.js → Map-JC-tR-ga.js} +364 -354
- package/dist/es/{MessageBox-CUGnKhiO.js → MessageBox-CvwRq0Fw.js} +2 -2
- package/dist/es/{MoneyInput-C_4ls5Mc.js → MoneyInput-DJ5g8rhm.js} +14 -14
- package/dist/es/{PageHeadPanel-CnbPae_Q.js → PageHeadPanel-BV5qQLDj.js} +4 -4
- package/dist/es/{Table-CCFUdM1X.js → Table-D49FFXP7.js} +13 -13
- package/dist/es/{ToolTips-BXk9Ppfb.js → ToolTips-B9Z_U4WM.js} +5 -5
- package/dist/es/index.js +23 -23
- package/dist/es/{utils-D7-cBAU3.js → utils-COxKH46Q.js} +1 -1
- package/dist/es/{vendor-Dz44HqMM.js → vendor-CbeG2C4c.js} +17314 -17963
- package/dist/index.css +1 -1
- package/dist/types/components/Dialog/Dialog.vue.d.ts +12 -42
- package/dist/types/components/Dialog/index.d.ts +18 -63
- package/dist/types/components/DiyDataTable/DiyDataTable.vue.d.ts +368 -2
- package/dist/types/components/DiyDataTable/index.d.ts +1101 -3
- package/dist/types/components/Map/components/copyright.vue.d.ts +36 -0
- package/dist/types/components/Map/components/measure.vue.d.ts +23 -0
- package/dist/types/components/Map/components/toolPanel.vue.d.ts +40 -0
- package/dist/types/components/Map/config.d.ts +32 -0
- package/dist/types/components/Map/enum/car.d.ts +5 -0
- package/dist/types/components/Map/enum/device.d.ts +8 -0
- package/dist/types/components/Map/enum/index.d.ts +5 -0
- package/dist/types/components/Map/enum/openLayers.d.ts +10 -0
- package/dist/types/components/Map/enum/ship.d.ts +50 -0
- package/dist/types/components/Map/function/renderPolygon.d.ts +25 -0
- package/dist/types/components/Map/function/ship/label.d.ts +5 -0
- package/dist/types/components/Map/function/shipTrack.d.ts +16 -0
- package/dist/types/components/Map/index.d.ts +9 -0
- package/dist/types/components/Map/interface/common/BaseEntity.d.ts +29 -0
- package/dist/types/components/Map/interface/common/page.d.ts +34 -0
- package/dist/types/components/Map/interface/entity/dashboard.d.ts +16 -0
- package/dist/types/components/Map/interface/entity/map.d.ts +36 -0
- package/dist/types/components/Map/interface/entity/point.d.ts +10 -0
- package/dist/types/components/Map/interface/entity/queryLicenseResponse.d.ts +86 -0
- package/dist/types/components/Map/interface/entity/render.d.ts +57 -0
- package/dist/types/components/Map/interface/entity/ship.d.ts +361 -0
- package/dist/types/components/Map/interface/entity/shipInfoVo.d.ts +210 -0
- package/dist/types/components/Map/interface/entity/shipMapData.d.ts +27 -0
- package/dist/types/components/Map/interface/entity/shipMarker.d.ts +8 -0
- package/dist/types/components/Map/interface/entity/shipTrack.d.ts +56 -0
- package/dist/types/components/Map/interface/entity/vehicle.d.ts +345 -0
- package/dist/types/components/Map/interface/mapProps.d.ts +1 -0
- package/dist/types/components/Map/interface/vo/vehicleVo.d.ts +20 -0
- package/dist/types/components/Map/render/canvasRender/canvasRender.d.ts +15 -0
- package/dist/types/components/Map/render/canvasRender/geometry.d.ts +22 -0
- package/dist/types/components/Map/render/canvasRender/renderCustomOverlay.d.ts +5 -0
- package/dist/types/components/Map/render/canvasRender/renderPointStyle.d.ts +10 -0
- package/dist/types/components/Map/render/canvasRender/renderShipStyle.d.ts +5 -0
- package/dist/types/components/Map/render/canvasRender/renderTrackStyle.d.ts +12 -0
- package/dist/types/components/Map/render/canvasRender/renderTruckStyle.d.ts +3 -0
- package/dist/types/components/Map/render/drawPolygon.d.ts +10 -0
- package/dist/types/components/Map/render/renderDashboard.d.ts +12 -0
- package/dist/types/components/Map/render/renderMarker.d.ts +7 -0
- package/dist/types/components/Map/render/renderPoint.d.ts +80 -0
- package/dist/types/components/Map/render/renderShip.d.ts +20 -0
- package/dist/types/components/Map/render/renderTrack.d.ts +12 -0
- package/dist/types/components/Map/render/renderTruck.d.ts +10 -0
- package/dist/types/components/Map/utils/common.d.ts +27 -0
- package/dist/types/components/Map/utils/format.d.ts +10 -0
- package/dist/types/components/Map/utils/overlay.d.ts +5 -0
- package/dist/types/components/Map/utils/store.d.ts +32 -0
- package/dist/types/components/Map/utils/transform.d.ts +44 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +65 -50
- package/package.json +1 -1
|
@@ -8,9 +8,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
8
8
|
title: {
|
|
9
9
|
type: import('vue').PropType<string>;
|
|
10
10
|
};
|
|
11
|
-
transition: {
|
|
12
|
-
type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
13
|
-
};
|
|
14
11
|
size: {
|
|
15
12
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
16
13
|
default: string;
|
|
@@ -19,10 +16,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
19
16
|
type: import('vue').PropType<string>;
|
|
20
17
|
};
|
|
21
18
|
appendTo: {
|
|
22
|
-
type: import('vue').PropType<string | HTMLElement
|
|
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
|
};
|
|
24
21
|
showClose: {
|
|
25
|
-
type: import('vue').PropType<
|
|
22
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
26
23
|
};
|
|
27
24
|
width: {
|
|
28
25
|
type: import('vue').PropType<string | number>;
|
|
@@ -47,16 +44,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
47
44
|
default: boolean;
|
|
48
45
|
};
|
|
49
46
|
closeOnPressEscape: {
|
|
50
|
-
type: import('vue').PropType<
|
|
47
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
51
48
|
};
|
|
52
49
|
lockScroll: {
|
|
53
|
-
type: import('vue').PropType<
|
|
50
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
54
51
|
};
|
|
55
52
|
modal: {
|
|
56
|
-
type: import('vue').PropType<
|
|
57
|
-
};
|
|
58
|
-
modalPenetrable: {
|
|
59
|
-
type: import('vue').PropType<boolean>;
|
|
53
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
60
54
|
};
|
|
61
55
|
openDelay: {
|
|
62
56
|
type: import('vue').PropType<number>;
|
|
@@ -67,15 +61,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
67
61
|
modalClass: {
|
|
68
62
|
type: import('vue').PropType<string>;
|
|
69
63
|
};
|
|
70
|
-
headerClass: {
|
|
71
|
-
type: import('vue').PropType<string>;
|
|
72
|
-
};
|
|
73
|
-
bodyClass: {
|
|
74
|
-
type: import('vue').PropType<string>;
|
|
75
|
-
};
|
|
76
|
-
footerClass: {
|
|
77
|
-
type: import('vue').PropType<string>;
|
|
78
|
-
};
|
|
79
64
|
trapFocus: {
|
|
80
65
|
type: import('vue').PropType<boolean>;
|
|
81
66
|
};
|
|
@@ -86,7 +71,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
86
71
|
type: import('vue').PropType<boolean>;
|
|
87
72
|
};
|
|
88
73
|
closeIcon: {
|
|
89
|
-
type: import('vue').PropType<string | import('vue').Component
|
|
74
|
+
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>>;
|
|
90
75
|
};
|
|
91
76
|
draggable: {
|
|
92
77
|
type: import('vue').PropType<boolean>;
|
|
@@ -123,9 +108,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
123
108
|
title: {
|
|
124
109
|
type: import('vue').PropType<string>;
|
|
125
110
|
};
|
|
126
|
-
transition: {
|
|
127
|
-
type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
128
|
-
};
|
|
129
111
|
size: {
|
|
130
112
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
131
113
|
default: string;
|
|
@@ -134,10 +116,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
134
116
|
type: import('vue').PropType<string>;
|
|
135
117
|
};
|
|
136
118
|
appendTo: {
|
|
137
|
-
type: import('vue').PropType<string | HTMLElement
|
|
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>>;
|
|
138
120
|
};
|
|
139
121
|
showClose: {
|
|
140
|
-
type: import('vue').PropType<
|
|
122
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
141
123
|
};
|
|
142
124
|
width: {
|
|
143
125
|
type: import('vue').PropType<string | number>;
|
|
@@ -162,16 +144,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
162
144
|
default: boolean;
|
|
163
145
|
};
|
|
164
146
|
closeOnPressEscape: {
|
|
165
|
-
type: import('vue').PropType<
|
|
147
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
166
148
|
};
|
|
167
149
|
lockScroll: {
|
|
168
|
-
type: import('vue').PropType<
|
|
150
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
169
151
|
};
|
|
170
152
|
modal: {
|
|
171
|
-
type: import('vue').PropType<
|
|
172
|
-
};
|
|
173
|
-
modalPenetrable: {
|
|
174
|
-
type: import('vue').PropType<boolean>;
|
|
153
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
175
154
|
};
|
|
176
155
|
openDelay: {
|
|
177
156
|
type: import('vue').PropType<number>;
|
|
@@ -182,15 +161,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
182
161
|
modalClass: {
|
|
183
162
|
type: import('vue').PropType<string>;
|
|
184
163
|
};
|
|
185
|
-
headerClass: {
|
|
186
|
-
type: import('vue').PropType<string>;
|
|
187
|
-
};
|
|
188
|
-
bodyClass: {
|
|
189
|
-
type: import('vue').PropType<string>;
|
|
190
|
-
};
|
|
191
|
-
footerClass: {
|
|
192
|
-
type: import('vue').PropType<string>;
|
|
193
|
-
};
|
|
194
164
|
trapFocus: {
|
|
195
165
|
type: import('vue').PropType<boolean>;
|
|
196
166
|
};
|
|
@@ -201,7 +171,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
201
171
|
type: import('vue').PropType<boolean>;
|
|
202
172
|
};
|
|
203
173
|
closeIcon: {
|
|
204
|
-
type: import('vue').PropType<string | import('vue').Component
|
|
174
|
+
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>>;
|
|
205
175
|
};
|
|
206
176
|
draggable: {
|
|
207
177
|
type: import('vue').PropType<boolean>;
|
|
@@ -4,9 +4,6 @@ export declare const ZhDialog: {
|
|
|
4
4
|
title: {
|
|
5
5
|
type: import('vue').PropType<string>;
|
|
6
6
|
};
|
|
7
|
-
transition: {
|
|
8
|
-
type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
9
|
-
};
|
|
10
7
|
size: {
|
|
11
8
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
12
9
|
default: string;
|
|
@@ -15,10 +12,10 @@ export declare const ZhDialog: {
|
|
|
15
12
|
type: import('vue').PropType<string>;
|
|
16
13
|
};
|
|
17
14
|
appendTo: {
|
|
18
|
-
type: import('vue').PropType<string | HTMLElement
|
|
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
|
};
|
|
20
17
|
showClose: {
|
|
21
|
-
type: import('vue').PropType<
|
|
18
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
22
19
|
};
|
|
23
20
|
width: {
|
|
24
21
|
type: import('vue').PropType<string | number>;
|
|
@@ -43,16 +40,13 @@ export declare const ZhDialog: {
|
|
|
43
40
|
default: boolean;
|
|
44
41
|
};
|
|
45
42
|
closeOnPressEscape: {
|
|
46
|
-
type: import('vue').PropType<
|
|
43
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
47
44
|
};
|
|
48
45
|
lockScroll: {
|
|
49
|
-
type: import('vue').PropType<
|
|
46
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
50
47
|
};
|
|
51
48
|
modal: {
|
|
52
|
-
type: import('vue').PropType<
|
|
53
|
-
};
|
|
54
|
-
modalPenetrable: {
|
|
55
|
-
type: import('vue').PropType<boolean>;
|
|
49
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
56
50
|
};
|
|
57
51
|
openDelay: {
|
|
58
52
|
type: import('vue').PropType<number>;
|
|
@@ -63,15 +57,6 @@ export declare const ZhDialog: {
|
|
|
63
57
|
modalClass: {
|
|
64
58
|
type: import('vue').PropType<string>;
|
|
65
59
|
};
|
|
66
|
-
headerClass: {
|
|
67
|
-
type: import('vue').PropType<string>;
|
|
68
|
-
};
|
|
69
|
-
bodyClass: {
|
|
70
|
-
type: import('vue').PropType<string>;
|
|
71
|
-
};
|
|
72
|
-
footerClass: {
|
|
73
|
-
type: import('vue').PropType<string>;
|
|
74
|
-
};
|
|
75
60
|
trapFocus: {
|
|
76
61
|
type: import('vue').PropType<boolean>;
|
|
77
62
|
};
|
|
@@ -82,7 +67,7 @@ export declare const ZhDialog: {
|
|
|
82
67
|
type: import('vue').PropType<boolean>;
|
|
83
68
|
};
|
|
84
69
|
closeIcon: {
|
|
85
|
-
type: import('vue').PropType<string | import('vue').Component
|
|
70
|
+
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>>;
|
|
86
71
|
};
|
|
87
72
|
draggable: {
|
|
88
73
|
type: import('vue').PropType<boolean>;
|
|
@@ -135,9 +120,6 @@ export declare const ZhDialog: {
|
|
|
135
120
|
title: {
|
|
136
121
|
type: import('vue').PropType<string>;
|
|
137
122
|
};
|
|
138
|
-
transition: {
|
|
139
|
-
type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
140
|
-
};
|
|
141
123
|
size: {
|
|
142
124
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
143
125
|
default: string;
|
|
@@ -146,10 +128,10 @@ export declare const ZhDialog: {
|
|
|
146
128
|
type: import('vue').PropType<string>;
|
|
147
129
|
};
|
|
148
130
|
appendTo: {
|
|
149
|
-
type: import('vue').PropType<string | HTMLElement
|
|
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>>;
|
|
150
132
|
};
|
|
151
133
|
showClose: {
|
|
152
|
-
type: import('vue').PropType<
|
|
134
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
153
135
|
};
|
|
154
136
|
width: {
|
|
155
137
|
type: import('vue').PropType<string | number>;
|
|
@@ -174,16 +156,13 @@ export declare const ZhDialog: {
|
|
|
174
156
|
default: boolean;
|
|
175
157
|
};
|
|
176
158
|
closeOnPressEscape: {
|
|
177
|
-
type: import('vue').PropType<
|
|
159
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
178
160
|
};
|
|
179
161
|
lockScroll: {
|
|
180
|
-
type: import('vue').PropType<
|
|
162
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
181
163
|
};
|
|
182
164
|
modal: {
|
|
183
|
-
type: import('vue').PropType<
|
|
184
|
-
};
|
|
185
|
-
modalPenetrable: {
|
|
186
|
-
type: import('vue').PropType<boolean>;
|
|
165
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
187
166
|
};
|
|
188
167
|
openDelay: {
|
|
189
168
|
type: import('vue').PropType<number>;
|
|
@@ -194,15 +173,6 @@ export declare const ZhDialog: {
|
|
|
194
173
|
modalClass: {
|
|
195
174
|
type: import('vue').PropType<string>;
|
|
196
175
|
};
|
|
197
|
-
headerClass: {
|
|
198
|
-
type: import('vue').PropType<string>;
|
|
199
|
-
};
|
|
200
|
-
bodyClass: {
|
|
201
|
-
type: import('vue').PropType<string>;
|
|
202
|
-
};
|
|
203
|
-
footerClass: {
|
|
204
|
-
type: import('vue').PropType<string>;
|
|
205
|
-
};
|
|
206
176
|
trapFocus: {
|
|
207
177
|
type: import('vue').PropType<boolean>;
|
|
208
178
|
};
|
|
@@ -213,7 +183,7 @@ export declare const ZhDialog: {
|
|
|
213
183
|
type: import('vue').PropType<boolean>;
|
|
214
184
|
};
|
|
215
185
|
closeIcon: {
|
|
216
|
-
type: import('vue').PropType<string | import('vue').Component
|
|
186
|
+
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>>;
|
|
217
187
|
};
|
|
218
188
|
draggable: {
|
|
219
189
|
type: import('vue').PropType<boolean>;
|
|
@@ -260,9 +230,6 @@ export declare const ZhDialog: {
|
|
|
260
230
|
title: {
|
|
261
231
|
type: import('vue').PropType<string>;
|
|
262
232
|
};
|
|
263
|
-
transition: {
|
|
264
|
-
type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
265
|
-
};
|
|
266
233
|
size: {
|
|
267
234
|
type: import('vue').PropType<"small" | "large" | "middle" | "extraLarge">;
|
|
268
235
|
default: string;
|
|
@@ -271,10 +238,10 @@ export declare const ZhDialog: {
|
|
|
271
238
|
type: import('vue').PropType<string>;
|
|
272
239
|
};
|
|
273
240
|
appendTo: {
|
|
274
|
-
type: import('vue').PropType<string | HTMLElement
|
|
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>>;
|
|
275
242
|
};
|
|
276
243
|
showClose: {
|
|
277
|
-
type: import('vue').PropType<
|
|
244
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
278
245
|
};
|
|
279
246
|
width: {
|
|
280
247
|
type: import('vue').PropType<string | number>;
|
|
@@ -299,16 +266,13 @@ export declare const ZhDialog: {
|
|
|
299
266
|
default: boolean;
|
|
300
267
|
};
|
|
301
268
|
closeOnPressEscape: {
|
|
302
|
-
type: import('vue').PropType<
|
|
269
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
303
270
|
};
|
|
304
271
|
lockScroll: {
|
|
305
|
-
type: import('vue').PropType<
|
|
272
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
306
273
|
};
|
|
307
274
|
modal: {
|
|
308
|
-
type: import('vue').PropType<
|
|
309
|
-
};
|
|
310
|
-
modalPenetrable: {
|
|
311
|
-
type: import('vue').PropType<boolean>;
|
|
275
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>>;
|
|
312
276
|
};
|
|
313
277
|
openDelay: {
|
|
314
278
|
type: import('vue').PropType<number>;
|
|
@@ -319,15 +283,6 @@ export declare const ZhDialog: {
|
|
|
319
283
|
modalClass: {
|
|
320
284
|
type: import('vue').PropType<string>;
|
|
321
285
|
};
|
|
322
|
-
headerClass: {
|
|
323
|
-
type: import('vue').PropType<string>;
|
|
324
|
-
};
|
|
325
|
-
bodyClass: {
|
|
326
|
-
type: import('vue').PropType<string>;
|
|
327
|
-
};
|
|
328
|
-
footerClass: {
|
|
329
|
-
type: import('vue').PropType<string>;
|
|
330
|
-
};
|
|
331
286
|
trapFocus: {
|
|
332
287
|
type: import('vue').PropType<boolean>;
|
|
333
288
|
};
|
|
@@ -338,7 +293,7 @@ export declare const ZhDialog: {
|
|
|
338
293
|
type: import('vue').PropType<boolean>;
|
|
339
294
|
};
|
|
340
295
|
closeIcon: {
|
|
341
|
-
type: import('vue').PropType<string | import('vue').Component
|
|
296
|
+
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>>;
|
|
342
297
|
};
|
|
343
298
|
draggable: {
|
|
344
299
|
type: import('vue').PropType<boolean>;
|