zhihao-ui 1.2.69 → 1.2.71
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-BhnEjLKF.js → BaseInfo-BQ9mgGZQ.js} +1 -1
- package/dist/es/{BaseItem-C4NJy1i4.js → BaseItem-CEFYU-vZ.js} +3 -3
- package/dist/es/{Button-CGndQwez.js → Button-BdGo3Kfv.js} +2 -2
- package/dist/es/CascaderLoadMore-1ENwzKY8.js +261 -0
- package/dist/es/DatePicker-DvSoaSq9.js +73 -0
- package/dist/es/{DetailHeader-DaabNj_4.js → DetailHeader-70m7dEou.js} +3 -3
- package/dist/es/{DetailSubTitle-CzFZPXeE.js → DetailSubTitle-CqcoW7Qc.js} +2 -2
- package/dist/es/{Dialog-BUW6ag1B.js → Dialog-Cib_m5sM.js} +3 -3
- package/dist/es/DiyDataTable-bO--1zPQ.js +366 -0
- package/dist/es/{EditInfoPair-B2f6zoGY.js → EditInfoPair-CIN0LGcX.js} +3 -3
- package/dist/es/{FileWrapper-D4IxJemr.js → FileWrapper-kRc7s3wS.js} +4 -4
- package/dist/es/{Grid-DIs695lY.js → Grid-YHrIHuuu.js} +2 -2
- package/dist/es/{InfoPair-Ce7nDfxD.js → InfoPair-Dg0qbY3Z.js} +3 -3
- package/dist/es/{Input-C5X2X_YD.js → Input-uOt745UZ.js} +14 -14
- package/dist/es/{Loading-BgoEv5qE.js → Loading-C_6ERpeb.js} +2 -2
- package/dist/es/Map-BURr7_36.js +2528 -0
- package/dist/es/{MessageBox-DiGH5x51.js → MessageBox-h_sFrr4D.js} +2 -2
- package/dist/es/{MoneyInput-D0kYiOfP.js → MoneyInput-n52E-q_5.js} +8 -8
- package/dist/es/{PageHeadPanel-C6IdOq6I.js → PageHeadPanel-DLs1xYME.js} +2 -2
- package/dist/es/Table-Cr4k_o89.js +1167 -0
- package/dist/es/{ToolTips-CiQHxGrw.js → ToolTips-CSVL9wbb.js} +6 -6
- package/dist/es/index.js +77 -60
- package/dist/es/{utils-D2wHR1YB.js → utils-UjENBVnX.js} +1 -1
- package/dist/es/{vendor-D2mv9LHk.js → vendor-9390iK3y.js} +30756 -26238
- 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/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 +16 -16
- package/dist/types/components/Dialog/index.d.ts +24 -24
- 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/Map/Map.vue.d.ts +138 -101
- package/dist/types/components/Map/components/scaleLine.vue.d.ts +1 -2
- package/dist/types/components/Map/components/zoomControl.vue.d.ts +3 -7
- package/dist/types/components/Map/function/port.d.ts +2 -2
- package/dist/types/components/Map/function/ship/index.d.ts +0 -1
- package/dist/types/components/Map/function/ship/style.d.ts +2 -3
- package/dist/types/components/Map/index.d.ts +390 -324
- package/dist/types/components/Map/interface/index.d.ts +13 -6
- package/dist/types/components/Map/types.d.ts +13 -1
- package/dist/types/components/Table/types.d.ts +1 -0
- package/dist/types/components/ToolTips/index.d.ts +12 -12
- package/dist/types/components/index.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +604 -130
- package/package.json +1 -1
- package/dist/es/DatePicker-Dy1K1cJQ.js +0 -57
- package/dist/es/DiyDataTable-D-UZVciZ.js +0 -331
- package/dist/es/Map-DbbD377l.js +0 -2235
- package/dist/es/Table-B_3YA1mb.js +0 -1155
- package/dist/types/components/Map/function/shipOverlay.d.ts +0 -12
- package/dist/types/components/Map/utils/util.d.ts +0 -42
|
@@ -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;
|
|
@@ -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,21 +12,24 @@ 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
|
};
|
|
24
|
-
|
|
25
|
-
type: import('vue').PropType<
|
|
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
26
|
};
|
|
27
27
|
center: {
|
|
28
28
|
type: import('vue').PropType<boolean>;
|
|
29
29
|
};
|
|
30
|
+
zIndex: {
|
|
31
|
+
type: import('vue').PropType<number>;
|
|
32
|
+
};
|
|
30
33
|
appendToBody: {
|
|
31
34
|
type: import('vue').PropType<boolean>;
|
|
32
35
|
};
|
|
@@ -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,21 +112,24 @@ 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
|
};
|
|
124
|
-
|
|
125
|
-
type: import('vue').PropType<
|
|
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
126
|
};
|
|
127
127
|
center: {
|
|
128
128
|
type: import('vue').PropType<boolean>;
|
|
129
129
|
};
|
|
130
|
+
zIndex: {
|
|
131
|
+
type: import('vue').PropType<number>;
|
|
132
|
+
};
|
|
130
133
|
appendToBody: {
|
|
131
134
|
type: import('vue').PropType<boolean>;
|
|
132
135
|
};
|
|
@@ -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,21 +8,24 @@ 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
|
};
|
|
20
|
-
|
|
21
|
-
type: import('vue').PropType<
|
|
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
22
|
};
|
|
23
23
|
center: {
|
|
24
24
|
type: import('vue').PropType<boolean>;
|
|
25
25
|
};
|
|
26
|
+
zIndex: {
|
|
27
|
+
type: import('vue').PropType<number>;
|
|
28
|
+
};
|
|
26
29
|
appendToBody: {
|
|
27
30
|
type: import('vue').PropType<boolean>;
|
|
28
31
|
};
|
|
@@ -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,21 +124,24 @@ 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
|
};
|
|
136
|
-
|
|
137
|
-
type: import('vue').PropType<
|
|
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
138
|
};
|
|
139
139
|
center: {
|
|
140
140
|
type: import('vue').PropType<boolean>;
|
|
141
141
|
};
|
|
142
|
+
zIndex: {
|
|
143
|
+
type: import('vue').PropType<number>;
|
|
144
|
+
};
|
|
142
145
|
appendToBody: {
|
|
143
146
|
type: import('vue').PropType<boolean>;
|
|
144
147
|
};
|
|
@@ -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,21 +234,24 @@ 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
|
};
|
|
246
|
-
|
|
247
|
-
type: import('vue').PropType<
|
|
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
248
|
};
|
|
249
249
|
center: {
|
|
250
250
|
type: import('vue').PropType<boolean>;
|
|
251
251
|
};
|
|
252
|
+
zIndex: {
|
|
253
|
+
type: import('vue').PropType<number>;
|
|
254
|
+
};
|
|
252
255
|
appendToBody: {
|
|
253
256
|
type: import('vue').PropType<boolean>;
|
|
254
257
|
};
|
|
@@ -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
|
};
|