zhihao-ui 1.3.9 → 1.3.11

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 (30) hide show
  1. package/dist/es/{BaseInfo-DFEg4oWo.js → BaseInfo-Bhin5Xqy.js} +1 -1
  2. package/dist/es/{BaseItem-BvdMV2Gu.js → BaseItem-BoLcxB-U.js} +3 -3
  3. package/dist/es/{Button-NgQ5sHIG.js → Button-DdMNoo0g.js} +2 -2
  4. package/dist/es/{DatePicker-B2pu6NJQ.js → DatePicker-sUXbd9V4.js} +3 -3
  5. package/dist/es/{DetailHeader-DDDbFDig.js → DetailHeader--0WANmGX.js} +3 -3
  6. package/dist/es/{DetailSubTitle-IqUKEU6D.js → DetailSubTitle-BUqZQxrl.js} +2 -2
  7. package/dist/es/{Dialog-DzTqitsD.js → Dialog-BKHohBv4.js} +3 -3
  8. package/dist/es/{DiyDataTable-DlgBshaZ.js → DiyDataTable-GuaKFrG5.js} +4 -4
  9. package/dist/es/{EditInfoPair-DQQoCmp8.js → EditInfoPair-CajUIoGj.js} +3 -3
  10. package/dist/es/{FileWrapper-pzSCoy4C.js → FileWrapper-CvYOVYx4.js} +4 -4
  11. package/dist/es/{Grid-D3sfvKjP.js → Grid-eLpow9Qb.js} +2 -2
  12. package/dist/es/{InfoPair-O3-tZH-B.js → InfoPair-BoTzSjD8.js} +3 -3
  13. package/dist/es/{Input-m8a-UuQp.js → Input-BKzWwcsD.js} +3 -3
  14. package/dist/es/{Loading-5WuhZO5j.js → Loading-3Cz4Wb5p.js} +2 -2
  15. package/dist/es/{Map-CCtm5zBi.js → Map-Dhm6AjZp.js} +227 -226
  16. package/dist/es/{MessageBox-3q9YfNRL.js → MessageBox--A4VqZyI.js} +2 -2
  17. package/dist/es/{MoneyInput-DddMW7cV.js → MoneyInput-DeYknAkX.js} +5 -5
  18. package/dist/es/{PageHeadPanel-BLvPIfGZ.js → PageHeadPanel-8pDHbfnc.js} +2 -2
  19. package/dist/es/{Table-iJRuASc3.js → Table-DcnAnAAU.js} +5 -5
  20. package/dist/es/{ToolTips-Cv8eNWyC.js → ToolTips-xwoX6Ww8.js} +3 -3
  21. package/dist/es/index.js +22 -22
  22. package/dist/es/{utils-DSw1USoH.js → utils-pSjFFegY.js} +1 -1
  23. package/dist/es/{vendor-Cc_TVxUO.js → vendor-CINc7P9P.js} +8 -8
  24. package/dist/index.css +1 -1
  25. package/dist/types/components/Map/Map.vue.d.ts +1 -1
  26. package/dist/types/components/Map/function/shipTrack.d.ts +7 -4
  27. package/dist/types/components/Map/index.d.ts +3 -3
  28. package/dist/umd/index.css +1 -1
  29. package/dist/umd/index.umd.cjs +7 -7
  30. package/package.json +1 -1
@@ -33,7 +33,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
33
33
  clear: () => void;
34
34
  };
35
35
  track: {
36
- render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string, threshold?: number) => Promise<void>;
36
+ render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string) => Promise<void>;
37
37
  remove: () => void;
38
38
  play: (id: number | string, speed: number) => void;
39
39
  setCenter: (id?: number | string) => void;
@@ -1,10 +1,10 @@
1
1
  import { Feature, MapBrowserEvent } from 'ol';
2
2
  import { ShipTrack } from '../interface/shipTrack';
3
3
 
4
- export declare const reRenderTrackLine: () => void;
5
- export declare const renderTrackLine: (id: string, list: ShipTrack[], color: string, type?: string, threshold?: number) => Promise<void>;
4
+ export declare const reRenderTrackLine: import('lodash-es').DebouncedFunc<() => void>;
5
+ export declare const renderTrackLine: (id: string, list: ShipTrack[], color: string, type?: string) => Promise<void>;
6
6
  /**
7
- * 悬浮框样式
7
+ * 悬浮框显示事件
8
8
  * @param trunkFeature
9
9
  * @param type
10
10
  * @param event
@@ -15,9 +15,12 @@ export declare const handleTrackMapEvent: (trunkFeature: Feature, type: string,
15
15
  * @param id
16
16
  */
17
17
  export declare const setTrackViewCenter: (id?: number | string) => void;
18
+ /**
19
+ * 移除全部已渲染的轨迹
20
+ */
18
21
  export declare const removeAllTrackLayer: () => void;
19
22
  /**
20
- * 关闭轨迹线
23
+ * 关闭id轨迹线
21
24
  * @param id
22
25
  */
23
26
  export declare const closeTrack: (id?: string) => void;
@@ -69,7 +69,7 @@ export declare const ZhMap: {
69
69
  clear: () => void;
70
70
  };
71
71
  track: {
72
- render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string, threshold?: number) => Promise<void>;
72
+ render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string) => Promise<void>;
73
73
  remove: () => void;
74
74
  play: (id: number | string, speed: number) => void;
75
75
  setCenter: (id?: number | string) => void;
@@ -220,7 +220,7 @@ export declare const ZhMap: {
220
220
  clear: () => void;
221
221
  };
222
222
  track: {
223
- render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string, threshold?: number) => Promise<void>;
223
+ render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string) => Promise<void>;
224
224
  remove: () => void;
225
225
  play: (id: number | string, speed: number) => void;
226
226
  setCenter: (id?: number | string) => void;
@@ -368,7 +368,7 @@ export declare const ZhMap: {
368
368
  clear: () => void;
369
369
  };
370
370
  track: {
371
- render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string, threshold?: number) => Promise<void>;
371
+ render: (id: string, list: import('./interface/shipTrack').ShipTrack[], color: string, type?: string) => Promise<void>;
372
372
  remove: () => void;
373
373
  play: (id: number | string, speed: number) => void;
374
374
  setCenter: (id?: number | string) => void;