@idmwx/idmui-gl4 1.1.4 → 1.1.7
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/index.js +3579 -2099
- package/dist/index.umd.cjs +22 -18
- package/dist/mapbox/index.d.ts +2 -1
- package/dist/mapbox/src/components/other/followPort.vue.d.ts +5 -1
- package/dist/mapbox/src/components/other/followPosition.vue.d.ts +0 -1
- package/dist/mapbox/src/components/other/port.vue.d.ts +5 -1
- package/dist/mapbox/src/components/other/portDetail.vue.d.ts +643 -0
- package/dist/mapbox/src/components/other/tideDetail.vue.d.ts +82 -0
- package/dist/mapbox/src/components/other/tideStations.vue.d.ts +6 -50
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/mapbox/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import MapInitial from './src/components/map/index.vue';
|
|
|
4
4
|
import TropicalGL from './src/components/tropical/index.vue';
|
|
5
5
|
import LatLngGL from './src/components/other/latLng.vue';
|
|
6
6
|
import DateTimePicker from './src/components/timePicker/index.vue';
|
|
7
|
+
import PortDetail from './src/components/other/portDetail.vue';
|
|
7
8
|
export declare const MapboxGLPlugin: Plugin;
|
|
8
|
-
export { MapInitial, MapboxGL, TropicalGL, LatLngGL, DateTimePicker };
|
|
9
|
+
export { MapInitial, MapboxGL, TropicalGL, LatLngGL, DateTimePicker, PortDetail };
|
|
9
10
|
export * from './src/helper/viewport';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export default _sfc_main;
|
|
2
2
|
declare namespace _sfc_main {
|
|
3
3
|
const name: string;
|
|
4
|
+
const components: undefined;
|
|
4
5
|
namespace props {
|
|
5
6
|
namespace map {
|
|
6
7
|
const type: ObjectConstructor;
|
|
@@ -566,7 +567,6 @@ declare namespace _sfc_main {
|
|
|
566
567
|
export { _default as default };
|
|
567
568
|
}
|
|
568
569
|
}
|
|
569
|
-
const emits: string[];
|
|
570
570
|
function setup(): {
|
|
571
571
|
Theme: import("vuetify").ThemeInstance;
|
|
572
572
|
};
|
|
@@ -574,8 +574,11 @@ declare namespace _sfc_main {
|
|
|
574
574
|
source: string;
|
|
575
575
|
layer: string;
|
|
576
576
|
showInfo: boolean;
|
|
577
|
+
portId: string;
|
|
578
|
+
hoverPort: {};
|
|
577
579
|
port: {};
|
|
578
580
|
marker: undefined;
|
|
581
|
+
showDetail: boolean;
|
|
579
582
|
};
|
|
580
583
|
namespace computed {
|
|
581
584
|
function computeLat(): (lat: any) => any;
|
|
@@ -598,5 +601,6 @@ declare namespace _sfc_main {
|
|
|
598
601
|
function handleClick(event: any): void;
|
|
599
602
|
function handleHover(event: any): void;
|
|
600
603
|
function handleLeave(): void;
|
|
604
|
+
function handleCloseDetail(): void;
|
|
601
605
|
}
|
|
602
606
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export default _sfc_main;
|
|
2
2
|
declare namespace _sfc_main {
|
|
3
3
|
const name: string;
|
|
4
|
+
const components: undefined;
|
|
4
5
|
namespace props {
|
|
5
6
|
namespace map {
|
|
6
7
|
const type: ObjectConstructor;
|
|
@@ -18,7 +19,6 @@ declare namespace _sfc_main {
|
|
|
18
19
|
export { type_3 as type };
|
|
19
20
|
}
|
|
20
21
|
}
|
|
21
|
-
const emits: string[];
|
|
22
22
|
function setup(): {
|
|
23
23
|
Theme: import("vuetify").ThemeInstance;
|
|
24
24
|
};
|
|
@@ -26,7 +26,10 @@ declare namespace _sfc_main {
|
|
|
26
26
|
source: string;
|
|
27
27
|
layer: string;
|
|
28
28
|
showInfo: boolean;
|
|
29
|
+
showDetail: boolean;
|
|
30
|
+
portId: undefined;
|
|
29
31
|
port: {};
|
|
32
|
+
hoverPort: {};
|
|
30
33
|
marker: undefined;
|
|
31
34
|
};
|
|
32
35
|
namespace computed {
|
|
@@ -46,5 +49,6 @@ declare namespace _sfc_main {
|
|
|
46
49
|
function handleClick(event: any): void;
|
|
47
50
|
function handleHover(event: any): void;
|
|
48
51
|
function handleLeave(): void;
|
|
52
|
+
function handleCloseDetail(): void;
|
|
49
53
|
}
|
|
50
54
|
}
|