zhihao-ui 1.2.49 → 1.2.51
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/{BaseItem-D1xoWSGo.js → BaseItem-CI19jDUQ.js} +20 -19
- package/dist/es/{DatePicker-Dh8sksac.js → DatePicker-CyE4WKsz.js} +1 -1
- package/dist/es/{DetailHeader-CSC9DAQc.js → DetailHeader-B0qKfcap.js} +1 -1
- package/dist/es/{DetailSubTitle-1ZjJAmet.js → DetailSubTitle-B8j6pwZs.js} +1 -1
- package/dist/es/{DiyDataTable-BerDffOX.js → DiyDataTable-BCJUnHv2.js} +1 -1
- package/dist/es/{EditInfoPair-Dx0KRj7O.js → EditInfoPair-Db3hVe7Q.js} +1 -1
- package/dist/es/{FileWrapper-CS2RTMEV.js → FileWrapper-DO8h_J2L.js} +1 -1
- package/dist/es/{Grid-BQYUct2W.js → Grid-oDsAMJ4n.js} +1 -1
- package/dist/es/{InfoPair-C3sCcJVT.js → InfoPair-CyRms8L-.js} +1 -1
- package/dist/es/{Map-FGjTLjM5.js → Map-BpWHFPmK.js} +906 -860
- package/dist/es/{MoneyInput-DevlnT8p.js → MoneyInput-y6Eygobx.js} +1 -1
- package/dist/es/{Table-BoMGydAp.js → Table-xnTrdqL9.js} +5 -4
- package/dist/es/index.js +14 -14
- package/dist/index.css +1 -1
- package/dist/types/components/Map/Map.vue.d.ts +6 -4
- package/dist/types/components/Map/index.d.ts +12 -6
- package/dist/types/components/Map/render/canvasRender/canvasRender.d.ts +1 -0
- package/dist/types/components/Map/render/drawPolygon.d.ts +1 -0
- package/dist/types/components/Map/render/renderPoint.d.ts +1 -1
- package/dist/types/components/Map/utils/store.d.ts +1 -2
- package/dist/types/components/Table/types.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +6 -6
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
15
15
|
mmsi?: string;
|
|
16
16
|
shipData?: ShipInfoVo;
|
|
17
17
|
logoType?: number;
|
|
18
|
-
showToolPanel?: boolean;
|
|
18
|
+
showToolPanel?: boolean | undefined;
|
|
19
19
|
}>>, {
|
|
20
20
|
mapInstance: Ref<MapType | undefined, MapType | undefined>;
|
|
21
21
|
initMap: () => void;
|
|
@@ -31,7 +31,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
31
31
|
findTruck: (vehicleInfo?: import('./interface').VehicleInfo, extendHtml?: string) => Promise<void>;
|
|
32
32
|
removeTruckIcon: () => void;
|
|
33
33
|
clearAllTruck: () => void;
|
|
34
|
-
closeTrack: () => void;
|
|
34
|
+
closeTrack: (clearAll?: boolean) => void;
|
|
35
35
|
closeTruckTrack: () => void;
|
|
36
36
|
resetTrackView: (id?: number | string) => void;
|
|
37
37
|
playTrack: (id: number | string, speed: number) => void;
|
|
@@ -55,15 +55,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
55
55
|
center: any[];
|
|
56
56
|
} | null;
|
|
57
57
|
setCenter: (lonLat: number[]) => null | undefined;
|
|
58
|
+
deleteLabelFromArray: () => void;
|
|
58
59
|
drawPolygonTool: {
|
|
59
60
|
addInteraction: (callback?: Function) => void;
|
|
60
61
|
removeInteraction: () => void;
|
|
61
62
|
initFeature: (callback?: Function) => void;
|
|
62
63
|
reset: () => void;
|
|
64
|
+
destroy: () => void;
|
|
63
65
|
};
|
|
64
66
|
setMapInstance: () => void;
|
|
65
67
|
store: {
|
|
66
|
-
|
|
68
|
+
showDrawLayer: () => boolean;
|
|
67
69
|
};
|
|
68
70
|
config: {
|
|
69
71
|
mapZoom: {
|
|
@@ -131,7 +133,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
131
133
|
mmsi?: string;
|
|
132
134
|
shipData?: ShipInfoVo;
|
|
133
135
|
logoType?: number;
|
|
134
|
-
showToolPanel?: boolean;
|
|
136
|
+
showToolPanel?: boolean | undefined;
|
|
135
137
|
}>>> & Readonly<{
|
|
136
138
|
onZoomChanged?: ((...args: any[]) => any) | undefined;
|
|
137
139
|
onExtentChanged?: ((...args: any[]) => any) | undefined;
|
|
@@ -46,7 +46,7 @@ export declare const ZhMap: {
|
|
|
46
46
|
findTruck: (vehicleInfo?: import('./interface').VehicleInfo, extendHtml?: string) => Promise<void>;
|
|
47
47
|
removeTruckIcon: () => void;
|
|
48
48
|
clearAllTruck: () => void;
|
|
49
|
-
closeTrack: () => void;
|
|
49
|
+
closeTrack: (clearAll?: boolean) => void;
|
|
50
50
|
closeTruckTrack: () => void;
|
|
51
51
|
resetTrackView: (id?: number | string) => void;
|
|
52
52
|
playTrack: (id: number | string, speed: number) => void;
|
|
@@ -70,15 +70,17 @@ export declare const ZhMap: {
|
|
|
70
70
|
center: any[];
|
|
71
71
|
} | null;
|
|
72
72
|
setCenter: (lonLat: number[]) => null | undefined;
|
|
73
|
+
deleteLabelFromArray: () => void;
|
|
73
74
|
drawPolygonTool: {
|
|
74
75
|
addInteraction: (callback?: Function) => void;
|
|
75
76
|
removeInteraction: () => void;
|
|
76
77
|
initFeature: (callback?: Function) => void;
|
|
77
78
|
reset: () => void;
|
|
79
|
+
destroy: () => void;
|
|
78
80
|
};
|
|
79
81
|
setMapInstance: () => void;
|
|
80
82
|
store: {
|
|
81
|
-
|
|
83
|
+
showDrawLayer: () => boolean;
|
|
82
84
|
};
|
|
83
85
|
config: {
|
|
84
86
|
mapZoom: {
|
|
@@ -192,7 +194,7 @@ export declare const ZhMap: {
|
|
|
192
194
|
findTruck: (vehicleInfo?: import('./interface').VehicleInfo, extendHtml?: string) => Promise<void>;
|
|
193
195
|
removeTruckIcon: () => void;
|
|
194
196
|
clearAllTruck: () => void;
|
|
195
|
-
closeTrack: () => void;
|
|
197
|
+
closeTrack: (clearAll?: boolean) => void;
|
|
196
198
|
closeTruckTrack: () => void;
|
|
197
199
|
resetTrackView: (id?: number | string) => void;
|
|
198
200
|
playTrack: (id: number | string, speed: number) => void;
|
|
@@ -216,15 +218,17 @@ export declare const ZhMap: {
|
|
|
216
218
|
center: any[];
|
|
217
219
|
} | null;
|
|
218
220
|
setCenter: (lonLat: number[]) => null | undefined;
|
|
221
|
+
deleteLabelFromArray: () => void;
|
|
219
222
|
drawPolygonTool: {
|
|
220
223
|
addInteraction: (callback?: Function) => void;
|
|
221
224
|
removeInteraction: () => void;
|
|
222
225
|
initFeature: (callback?: Function) => void;
|
|
223
226
|
reset: () => void;
|
|
227
|
+
destroy: () => void;
|
|
224
228
|
};
|
|
225
229
|
setMapInstance: () => void;
|
|
226
230
|
store: {
|
|
227
|
-
|
|
231
|
+
showDrawLayer: () => boolean;
|
|
228
232
|
};
|
|
229
233
|
config: {
|
|
230
234
|
mapZoom: {
|
|
@@ -332,7 +336,7 @@ export declare const ZhMap: {
|
|
|
332
336
|
findTruck: (vehicleInfo?: import('./interface').VehicleInfo, extendHtml?: string) => Promise<void>;
|
|
333
337
|
removeTruckIcon: () => void;
|
|
334
338
|
clearAllTruck: () => void;
|
|
335
|
-
closeTrack: () => void;
|
|
339
|
+
closeTrack: (clearAll?: boolean) => void;
|
|
336
340
|
closeTruckTrack: () => void;
|
|
337
341
|
resetTrackView: (id?: number | string) => void;
|
|
338
342
|
playTrack: (id: number | string, speed: number) => void;
|
|
@@ -356,15 +360,17 @@ export declare const ZhMap: {
|
|
|
356
360
|
center: any[];
|
|
357
361
|
} | null;
|
|
358
362
|
setCenter: (lonLat: number[]) => null | undefined;
|
|
363
|
+
deleteLabelFromArray: () => void;
|
|
359
364
|
drawPolygonTool: {
|
|
360
365
|
addInteraction: (callback?: Function) => void;
|
|
361
366
|
removeInteraction: () => void;
|
|
362
367
|
initFeature: (callback?: Function) => void;
|
|
363
368
|
reset: () => void;
|
|
369
|
+
destroy: () => void;
|
|
364
370
|
};
|
|
365
371
|
setMapInstance: () => void;
|
|
366
372
|
store: {
|
|
367
|
-
|
|
373
|
+
showDrawLayer: () => boolean;
|
|
368
374
|
};
|
|
369
375
|
config: {
|
|
370
376
|
mapZoom: {
|
|
@@ -12,3 +12,4 @@ export declare const drawLabel: (ctx: CanvasRenderingContext2D, options: DrawLab
|
|
|
12
12
|
export declare const checkBlinkLabelExist: (mapInstanceValue: MapType, labels: DrawLabelFeature[], id: string) => void;
|
|
13
13
|
export declare const clearAllInterval: () => void;
|
|
14
14
|
export declare const deleteLabelFromArray: (mapInstanceValue: MapType, labels: DrawLabelFeature[], id: string) => void;
|
|
15
|
+
export declare const deleteLabelFromArrayById: () => void;
|
|
@@ -29,5 +29,4 @@ export declare const allTracks: Ref<{
|
|
|
29
29
|
export declare const currentTrackId: Ref<string>;
|
|
30
30
|
export declare const showTrackAnimatMarker: Ref<boolean>;
|
|
31
31
|
export declare const hiddenOrther: Ref<boolean>;
|
|
32
|
-
export declare const
|
|
33
|
-
export declare const getShowMeasure: () => boolean;
|
|
32
|
+
export declare const showDrawLayer: Ref<boolean>;
|
|
@@ -66,6 +66,7 @@ export interface ColumnProps<T = any> extends Partial<Omit<TableColumnCtx<T>, "t
|
|
|
66
66
|
wrap?: boolean;
|
|
67
67
|
expandOperationButtons?: boolean;
|
|
68
68
|
readonly?: boolean;
|
|
69
|
+
hideInCustomColumn?: boolean;
|
|
69
70
|
}
|
|
70
71
|
export interface SortChangeEvent {
|
|
71
72
|
column: TableColumnCtx<any>;
|