@idmwx/idmui-gl3 6.6.5 → 6.6.6
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 +105 -91
- package/dist/index.umd.cjs +1 -1
- package/dist/packages/mapbox/src/index.vue.d.ts +15 -2
- package/package.json +1 -1
|
@@ -19,6 +19,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
forecastModel: {
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
};
|
|
22
|
+
gateway: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
};
|
|
25
|
+
assistGateway: {
|
|
26
|
+
type: ArrayConstructor;
|
|
27
|
+
default: () => never[];
|
|
28
|
+
};
|
|
22
29
|
}>, {}, {
|
|
23
30
|
weatherLayers: {};
|
|
24
31
|
activeWeatherLayers: never[];
|
|
@@ -31,8 +38,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
38
|
show3d: boolean;
|
|
32
39
|
meteo: undefined;
|
|
33
40
|
source: string;
|
|
34
|
-
gateway: string;
|
|
35
|
-
assistGateway: string[];
|
|
36
41
|
mapProjection: string;
|
|
37
42
|
zoom: number;
|
|
38
43
|
viewport: undefined;
|
|
@@ -98,6 +103,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
103
|
forecastModel: {
|
|
99
104
|
type: StringConstructor;
|
|
100
105
|
};
|
|
106
|
+
gateway: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
};
|
|
109
|
+
assistGateway: {
|
|
110
|
+
type: ArrayConstructor;
|
|
111
|
+
default: () => never[];
|
|
112
|
+
};
|
|
101
113
|
}>> & Readonly<{
|
|
102
114
|
onToggleVersion?: ((...args: any[]) => any) | undefined;
|
|
103
115
|
onActiveWeatherLayers?: ((...args: any[]) => any) | undefined;
|
|
@@ -105,6 +117,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
105
117
|
}>, {
|
|
106
118
|
map: Record<string, any>;
|
|
107
119
|
beforeLayer: string;
|
|
120
|
+
assistGateway: unknown[];
|
|
108
121
|
}, {}, {
|
|
109
122
|
IdmGlLayer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
110
123
|
map: {
|