@tekkare/auriga 0.2.127 → 0.2.128
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/module.json +1 -1
- package/dist/runtime/components/argAdvancedSearchBar.vue +7 -14
- package/dist/runtime/components/argAdvancedSearchBar.vue.d.ts +24 -24
- package/dist/runtime/components/argChaptersNav.vue +2 -4
- package/dist/runtime/components/argChart.vue +7 -13
- package/dist/runtime/components/argChart.vue.d.ts +1 -1
- package/dist/runtime/components/argCheckbox.vue +2 -4
- package/dist/runtime/components/argComplexSelect.vue +9 -18
- package/dist/runtime/components/argComplexSelect.vue.d.ts +24 -24
- package/dist/runtime/components/argDropdownSelect.vue +8 -16
- package/dist/runtime/components/argDropdownSelect.vue.d.ts +17 -17
- package/dist/runtime/components/argErrors.vue +3 -6
- package/dist/runtime/components/argFilterTabs.vue +1 -2
- package/dist/runtime/components/argFilterTabs.vue.d.ts +8 -8
- package/dist/runtime/components/argFlag.vue +1 -1
- package/dist/runtime/components/argGoogleMaps.vue +7 -14
- package/dist/runtime/components/argGoogleMaps.vue.d.ts +496 -4
- package/dist/runtime/components/argHeader.vue.d.ts +8 -8
- package/dist/runtime/components/argHeaderTabs.vue +1 -2
- package/dist/runtime/components/argHeaderTabs.vue.d.ts +8 -8
- package/dist/runtime/components/argHomeAllBlocks.vue +2 -4
- package/dist/runtime/components/argHomeKpis.vue.d.ts +16 -16
- package/dist/runtime/components/argLangSelect.vue +1 -2
- package/dist/runtime/components/argLangSelect.vue.d.ts +8 -8
- package/dist/runtime/components/argMaps.vue +8 -16
- package/dist/runtime/components/argMaps.vue.d.ts +9 -9
- package/dist/runtime/components/argMapsEurope.vue +3 -6
- package/dist/runtime/components/argMapsFrDepartements.vue +2 -4
- package/dist/runtime/components/argMapsFrRegions.vue +3 -6
- package/dist/runtime/components/argMapsFrRegionsToDepartements.vue +4 -8
- package/dist/runtime/components/argMapsFrRegionsToDepartements.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsGermany.vue +3 -6
- package/dist/runtime/components/argMapsGermany.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsKorea.vue +3 -6
- package/dist/runtime/components/argMapsKorea.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsNorway.vue +4 -8
- package/dist/runtime/components/argMapsNorway.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsUs.vue +3 -6
- package/dist/runtime/components/argMultipleChoice.vue +6 -12
- package/dist/runtime/components/argMultipleChoice.vue.d.ts +16 -16
- package/dist/runtime/components/argMultipleSelect.vue +11 -22
- package/dist/runtime/components/argMultipleSelect.vue.d.ts +25 -25
- package/dist/runtime/components/argNavBar.vue +1 -2
- package/dist/runtime/components/argNote.vue +1 -2
- package/dist/runtime/components/argNumberInput.vue +1 -2
- package/dist/runtime/components/argRadioButtons.vue +2 -4
- package/dist/runtime/components/argRadioButtons.vue.d.ts +8 -8
- package/dist/runtime/components/argScopeChange.vue +2 -4
- package/dist/runtime/components/argScopeChange.vue.d.ts +8 -8
- package/dist/runtime/components/argScopeManage.vue +1 -2
- package/dist/runtime/components/argScopeModal.vue +1 -2
- package/dist/runtime/components/argScopeModal.vue.d.ts +8 -8
- package/dist/runtime/components/argScopeSelect.vue +3 -6
- package/dist/runtime/components/argScopeSelect.vue.d.ts +8 -8
- package/dist/runtime/components/argSearchInput.vue.d.ts +8 -8
- package/dist/runtime/components/argSidebar.vue +1 -2
- package/dist/runtime/components/argSmallAreaChart.vue.d.ts +1 -1
- package/dist/runtime/components/argSourceCollapse.vue +1 -2
- package/dist/runtime/components/argSteplineChart.vue +1 -2
- package/dist/runtime/components/argSteplineChart.vue.d.ts +1 -1
- package/dist/runtime/components/argTable.vue +10 -20
- package/dist/runtime/components/argTable.vue.d.ts +49 -49
- package/dist/runtime/components/argTagsRow.vue +2 -4
- package/dist/runtime/components/argTekkareLoader.vue +1 -1
- package/dist/runtime/components/argToolModal.vue +1 -2
- package/dist/runtime/components/argToolModal.vue.d.ts +16 -16
- package/dist/runtime/components/argToolbarContent.vue +1 -2
- package/dist/runtime/components/oneRegionToDepartements.vue +1 -2
- package/dist/runtime/components/tableRowCrop.vue +2 -4
- package/package.json +2 -1
|
@@ -8,10 +8,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8
8
|
isArray(arg: any): arg is any[];
|
|
9
9
|
readonly prototype: any[];
|
|
10
10
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
11
|
-
from<
|
|
12
|
-
from<
|
|
13
|
-
from<
|
|
14
|
-
of<
|
|
11
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
12
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
13
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
of<T>(...items: T[]): T[];
|
|
15
15
|
readonly [Symbol.species]: ArrayConstructor;
|
|
16
16
|
};
|
|
17
17
|
required: true;
|
|
@@ -38,10 +38,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
38
38
|
isArray(arg: any): arg is any[];
|
|
39
39
|
readonly prototype: any[];
|
|
40
40
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
41
|
-
from<
|
|
42
|
-
from<
|
|
43
|
-
from<
|
|
44
|
-
of<
|
|
41
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
42
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
43
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
44
|
+
of<T>(...items: T[]): T[];
|
|
45
45
|
readonly [Symbol.species]: ArrayConstructor;
|
|
46
46
|
};
|
|
47
47
|
required: true;
|
|
@@ -2274,5 +2274,5 @@ export default defineComponent({
|
|
|
2274
2274
|
});
|
|
2275
2275
|
</script>
|
|
2276
2276
|
<style scoped>
|
|
2277
|
-
.arg_country_icon.rounded{
|
|
2277
|
+
.arg_country_icon.rounded{clip-path:circle(41% at 50% 50%)}.arg_country_icon.squared{aspect-ratio:1/1;clip-path:inset(10% 10% 10% 10%)}.arg_country_icon.radius{clip-path:inset(0 round 15%)}
|
|
2278
2278
|
</style>
|
|
@@ -81,8 +81,7 @@ export default defineComponent({
|
|
|
81
81
|
if (props.mapCenter) {
|
|
82
82
|
return props.mapCenter;
|
|
83
83
|
} else {
|
|
84
|
-
if (props.locations.length === 0)
|
|
85
|
-
return { lat: 0, lng: 0 };
|
|
84
|
+
if (props.locations.length === 0) return { lat: 0, lng: 0 };
|
|
86
85
|
const totalLat = props.locations.reduce(
|
|
87
86
|
(sum, loc) => sum + loc?.lat,
|
|
88
87
|
0
|
|
@@ -101,23 +100,17 @@ export default defineComponent({
|
|
|
101
100
|
if (props.zoom) {
|
|
102
101
|
return props.zoom;
|
|
103
102
|
} else {
|
|
104
|
-
if (props.locations.length === 0)
|
|
105
|
-
return 12;
|
|
103
|
+
if (props.locations.length === 0) return 12;
|
|
106
104
|
const latitudes = props.locations.map((loc) => loc.lat);
|
|
107
105
|
const longitudes = props.locations.map((loc) => loc.lng);
|
|
108
106
|
const latDiff = Math.max(...latitudes) - Math.min(...latitudes);
|
|
109
107
|
const lngDiff = Math.max(...longitudes) - Math.min(...longitudes);
|
|
110
108
|
const maxDiff = Math.max(latDiff, lngDiff);
|
|
111
|
-
if (maxDiff < 0.01)
|
|
112
|
-
|
|
113
|
-
if (maxDiff < 0.
|
|
114
|
-
|
|
115
|
-
if (maxDiff <
|
|
116
|
-
return 12;
|
|
117
|
-
if (maxDiff < 0.5)
|
|
118
|
-
return 10;
|
|
119
|
-
if (maxDiff < 1)
|
|
120
|
-
return 8;
|
|
109
|
+
if (maxDiff < 0.01) return 16;
|
|
110
|
+
if (maxDiff < 0.05) return 14;
|
|
111
|
+
if (maxDiff < 0.1) return 12;
|
|
112
|
+
if (maxDiff < 0.5) return 10;
|
|
113
|
+
if (maxDiff < 1) return 8;
|
|
121
114
|
return 6;
|
|
122
115
|
}
|
|
123
116
|
});
|
|
@@ -74,10 +74,502 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
74
74
|
height: string;
|
|
75
75
|
showWindow: boolean;
|
|
76
76
|
}, {}, {
|
|
77
|
-
GoogleMap:
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
GoogleMap: import("vue").DefineComponent<{
|
|
78
|
+
apiPromise: {
|
|
79
|
+
type: PropType<Promise<typeof google>>;
|
|
80
|
+
};
|
|
81
|
+
apiKey: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
85
|
+
version: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
libraries: {
|
|
90
|
+
type: PropType<import("@googlemaps/js-api-loader").Library[]>;
|
|
91
|
+
default: () => string[];
|
|
92
|
+
};
|
|
93
|
+
region: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
required: false;
|
|
96
|
+
};
|
|
97
|
+
language: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
required: false;
|
|
100
|
+
};
|
|
101
|
+
backgroundColor: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
required: false;
|
|
104
|
+
};
|
|
105
|
+
center: {
|
|
106
|
+
type: PropType<google.maps.LatLng | google.maps.LatLngLiteral>;
|
|
107
|
+
default: () => {
|
|
108
|
+
lat: number;
|
|
109
|
+
lng: number;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
clickableIcons: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
required: false;
|
|
115
|
+
default: undefined;
|
|
116
|
+
};
|
|
117
|
+
controlSize: {
|
|
118
|
+
type: NumberConstructor;
|
|
119
|
+
required: false;
|
|
120
|
+
};
|
|
121
|
+
disableDefaultUi: {
|
|
122
|
+
type: BooleanConstructor;
|
|
123
|
+
required: false;
|
|
124
|
+
default: undefined;
|
|
125
|
+
};
|
|
126
|
+
disableDoubleClickZoom: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
required: false;
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
131
|
+
draggable: {
|
|
132
|
+
type: BooleanConstructor;
|
|
133
|
+
required: false;
|
|
134
|
+
default: undefined;
|
|
135
|
+
};
|
|
136
|
+
draggableCursor: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
required: false;
|
|
139
|
+
};
|
|
140
|
+
draggingCursor: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
required: false;
|
|
143
|
+
};
|
|
144
|
+
fullscreenControl: {
|
|
145
|
+
type: BooleanConstructor;
|
|
146
|
+
required: false;
|
|
147
|
+
default: undefined;
|
|
148
|
+
};
|
|
149
|
+
fullscreenControlPosition: {
|
|
150
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
151
|
+
required: false;
|
|
152
|
+
};
|
|
153
|
+
gestureHandling: {
|
|
154
|
+
type: PropType<"none" | "cooperative" | "greedy" | "auto">;
|
|
155
|
+
required: false;
|
|
156
|
+
};
|
|
157
|
+
heading: {
|
|
158
|
+
type: NumberConstructor;
|
|
159
|
+
required: false;
|
|
160
|
+
};
|
|
161
|
+
isFractionalZoomEnabled: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
required: false;
|
|
164
|
+
default: undefined;
|
|
165
|
+
};
|
|
166
|
+
keyboardShortcuts: {
|
|
167
|
+
type: BooleanConstructor;
|
|
168
|
+
required: false;
|
|
169
|
+
default: undefined;
|
|
170
|
+
};
|
|
171
|
+
mapTypeControl: {
|
|
172
|
+
type: BooleanConstructor;
|
|
173
|
+
required: false;
|
|
174
|
+
default: undefined;
|
|
175
|
+
};
|
|
176
|
+
mapTypeControlOptions: {
|
|
177
|
+
type: PropType<google.maps.MapTypeControlOptions>;
|
|
178
|
+
required: false;
|
|
179
|
+
};
|
|
180
|
+
mapTypeId: {
|
|
181
|
+
type: PropType<string>;
|
|
182
|
+
required: false;
|
|
183
|
+
};
|
|
184
|
+
mapId: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
required: false;
|
|
187
|
+
};
|
|
188
|
+
maxZoom: {
|
|
189
|
+
type: NumberConstructor;
|
|
190
|
+
required: false;
|
|
191
|
+
};
|
|
192
|
+
minZoom: {
|
|
193
|
+
type: NumberConstructor;
|
|
194
|
+
required: false;
|
|
195
|
+
};
|
|
196
|
+
noClear: {
|
|
197
|
+
type: BooleanConstructor;
|
|
198
|
+
required: false;
|
|
199
|
+
default: undefined;
|
|
200
|
+
};
|
|
201
|
+
panControl: {
|
|
202
|
+
type: BooleanConstructor;
|
|
203
|
+
required: false;
|
|
204
|
+
default: undefined;
|
|
205
|
+
};
|
|
206
|
+
panControlPosition: {
|
|
207
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
208
|
+
required: false;
|
|
209
|
+
};
|
|
210
|
+
restriction: {
|
|
211
|
+
type: PropType<google.maps.MapRestriction>;
|
|
212
|
+
required: false;
|
|
213
|
+
};
|
|
214
|
+
rotateControl: {
|
|
215
|
+
type: BooleanConstructor;
|
|
216
|
+
required: false;
|
|
217
|
+
default: undefined;
|
|
218
|
+
};
|
|
219
|
+
rotateControlPosition: {
|
|
220
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
221
|
+
required: false;
|
|
222
|
+
};
|
|
223
|
+
scaleControl: {
|
|
224
|
+
type: BooleanConstructor;
|
|
225
|
+
required: false;
|
|
226
|
+
default: undefined;
|
|
227
|
+
};
|
|
228
|
+
scaleControlStyle: {
|
|
229
|
+
type: PropType<google.maps.ScaleControlStyle>;
|
|
230
|
+
required: false;
|
|
231
|
+
};
|
|
232
|
+
scrollwheel: {
|
|
233
|
+
type: BooleanConstructor;
|
|
234
|
+
required: false;
|
|
235
|
+
default: undefined;
|
|
236
|
+
};
|
|
237
|
+
streetView: {
|
|
238
|
+
type: PropType<google.maps.StreetViewPanorama>;
|
|
239
|
+
required: false;
|
|
240
|
+
};
|
|
241
|
+
streetViewControl: {
|
|
242
|
+
type: BooleanConstructor;
|
|
243
|
+
required: false;
|
|
244
|
+
default: undefined;
|
|
245
|
+
};
|
|
246
|
+
streetViewControlPosition: {
|
|
247
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
248
|
+
required: false;
|
|
249
|
+
};
|
|
250
|
+
styles: {
|
|
251
|
+
type: PropType<google.maps.MapTypeStyle[]>;
|
|
252
|
+
required: false;
|
|
253
|
+
};
|
|
254
|
+
tilt: {
|
|
255
|
+
type: NumberConstructor;
|
|
256
|
+
required: false;
|
|
257
|
+
};
|
|
258
|
+
zoom: {
|
|
259
|
+
type: NumberConstructor;
|
|
260
|
+
required: false;
|
|
261
|
+
};
|
|
262
|
+
zoomControl: {
|
|
263
|
+
type: BooleanConstructor;
|
|
264
|
+
required: false;
|
|
265
|
+
default: undefined;
|
|
266
|
+
};
|
|
267
|
+
zoomControlPosition: {
|
|
268
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
269
|
+
required: false;
|
|
270
|
+
};
|
|
271
|
+
nonce: {
|
|
272
|
+
type: StringConstructor;
|
|
273
|
+
default: string;
|
|
274
|
+
};
|
|
275
|
+
}, {
|
|
276
|
+
mapRef: import("vue").Ref<HTMLElement | undefined>;
|
|
277
|
+
ready: import("vue").Ref<boolean>;
|
|
278
|
+
map: import("vue").Ref<google.maps.Map | undefined>;
|
|
279
|
+
api: import("vue").Ref<typeof google.maps | undefined>;
|
|
280
|
+
mapTilesLoaded: import("vue").Ref<boolean>;
|
|
281
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
282
|
+
apiPromise: {
|
|
283
|
+
type: PropType<Promise<typeof google>>;
|
|
284
|
+
};
|
|
285
|
+
apiKey: {
|
|
286
|
+
type: StringConstructor;
|
|
287
|
+
default: string;
|
|
288
|
+
};
|
|
289
|
+
version: {
|
|
290
|
+
type: StringConstructor;
|
|
291
|
+
default: string;
|
|
292
|
+
};
|
|
293
|
+
libraries: {
|
|
294
|
+
type: PropType<import("@googlemaps/js-api-loader").Library[]>;
|
|
295
|
+
default: () => string[];
|
|
296
|
+
};
|
|
297
|
+
region: {
|
|
298
|
+
type: StringConstructor;
|
|
299
|
+
required: false;
|
|
300
|
+
};
|
|
301
|
+
language: {
|
|
302
|
+
type: StringConstructor;
|
|
303
|
+
required: false;
|
|
304
|
+
};
|
|
305
|
+
backgroundColor: {
|
|
306
|
+
type: StringConstructor;
|
|
307
|
+
required: false;
|
|
308
|
+
};
|
|
309
|
+
center: {
|
|
310
|
+
type: PropType<google.maps.LatLng | google.maps.LatLngLiteral>;
|
|
311
|
+
default: () => {
|
|
312
|
+
lat: number;
|
|
313
|
+
lng: number;
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
clickableIcons: {
|
|
317
|
+
type: BooleanConstructor;
|
|
318
|
+
required: false;
|
|
319
|
+
default: undefined;
|
|
320
|
+
};
|
|
321
|
+
controlSize: {
|
|
322
|
+
type: NumberConstructor;
|
|
323
|
+
required: false;
|
|
324
|
+
};
|
|
325
|
+
disableDefaultUi: {
|
|
326
|
+
type: BooleanConstructor;
|
|
327
|
+
required: false;
|
|
328
|
+
default: undefined;
|
|
329
|
+
};
|
|
330
|
+
disableDoubleClickZoom: {
|
|
331
|
+
type: BooleanConstructor;
|
|
332
|
+
required: false;
|
|
333
|
+
default: undefined;
|
|
334
|
+
};
|
|
335
|
+
draggable: {
|
|
336
|
+
type: BooleanConstructor;
|
|
337
|
+
required: false;
|
|
338
|
+
default: undefined;
|
|
339
|
+
};
|
|
340
|
+
draggableCursor: {
|
|
341
|
+
type: StringConstructor;
|
|
342
|
+
required: false;
|
|
343
|
+
};
|
|
344
|
+
draggingCursor: {
|
|
345
|
+
type: StringConstructor;
|
|
346
|
+
required: false;
|
|
347
|
+
};
|
|
348
|
+
fullscreenControl: {
|
|
349
|
+
type: BooleanConstructor;
|
|
350
|
+
required: false;
|
|
351
|
+
default: undefined;
|
|
352
|
+
};
|
|
353
|
+
fullscreenControlPosition: {
|
|
354
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
355
|
+
required: false;
|
|
356
|
+
};
|
|
357
|
+
gestureHandling: {
|
|
358
|
+
type: PropType<"none" | "cooperative" | "greedy" | "auto">;
|
|
359
|
+
required: false;
|
|
360
|
+
};
|
|
361
|
+
heading: {
|
|
362
|
+
type: NumberConstructor;
|
|
363
|
+
required: false;
|
|
364
|
+
};
|
|
365
|
+
isFractionalZoomEnabled: {
|
|
366
|
+
type: BooleanConstructor;
|
|
367
|
+
required: false;
|
|
368
|
+
default: undefined;
|
|
369
|
+
};
|
|
370
|
+
keyboardShortcuts: {
|
|
371
|
+
type: BooleanConstructor;
|
|
372
|
+
required: false;
|
|
373
|
+
default: undefined;
|
|
374
|
+
};
|
|
375
|
+
mapTypeControl: {
|
|
376
|
+
type: BooleanConstructor;
|
|
377
|
+
required: false;
|
|
378
|
+
default: undefined;
|
|
379
|
+
};
|
|
380
|
+
mapTypeControlOptions: {
|
|
381
|
+
type: PropType<google.maps.MapTypeControlOptions>;
|
|
382
|
+
required: false;
|
|
383
|
+
};
|
|
384
|
+
mapTypeId: {
|
|
385
|
+
type: PropType<string>;
|
|
386
|
+
required: false;
|
|
387
|
+
};
|
|
388
|
+
mapId: {
|
|
389
|
+
type: StringConstructor;
|
|
390
|
+
required: false;
|
|
391
|
+
};
|
|
392
|
+
maxZoom: {
|
|
393
|
+
type: NumberConstructor;
|
|
394
|
+
required: false;
|
|
395
|
+
};
|
|
396
|
+
minZoom: {
|
|
397
|
+
type: NumberConstructor;
|
|
398
|
+
required: false;
|
|
399
|
+
};
|
|
400
|
+
noClear: {
|
|
401
|
+
type: BooleanConstructor;
|
|
402
|
+
required: false;
|
|
403
|
+
default: undefined;
|
|
404
|
+
};
|
|
405
|
+
panControl: {
|
|
406
|
+
type: BooleanConstructor;
|
|
407
|
+
required: false;
|
|
408
|
+
default: undefined;
|
|
409
|
+
};
|
|
410
|
+
panControlPosition: {
|
|
411
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
412
|
+
required: false;
|
|
413
|
+
};
|
|
414
|
+
restriction: {
|
|
415
|
+
type: PropType<google.maps.MapRestriction>;
|
|
416
|
+
required: false;
|
|
417
|
+
};
|
|
418
|
+
rotateControl: {
|
|
419
|
+
type: BooleanConstructor;
|
|
420
|
+
required: false;
|
|
421
|
+
default: undefined;
|
|
422
|
+
};
|
|
423
|
+
rotateControlPosition: {
|
|
424
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
425
|
+
required: false;
|
|
426
|
+
};
|
|
427
|
+
scaleControl: {
|
|
428
|
+
type: BooleanConstructor;
|
|
429
|
+
required: false;
|
|
430
|
+
default: undefined;
|
|
431
|
+
};
|
|
432
|
+
scaleControlStyle: {
|
|
433
|
+
type: PropType<google.maps.ScaleControlStyle>;
|
|
434
|
+
required: false;
|
|
435
|
+
};
|
|
436
|
+
scrollwheel: {
|
|
437
|
+
type: BooleanConstructor;
|
|
438
|
+
required: false;
|
|
439
|
+
default: undefined;
|
|
440
|
+
};
|
|
441
|
+
streetView: {
|
|
442
|
+
type: PropType<google.maps.StreetViewPanorama>;
|
|
443
|
+
required: false;
|
|
444
|
+
};
|
|
445
|
+
streetViewControl: {
|
|
446
|
+
type: BooleanConstructor;
|
|
447
|
+
required: false;
|
|
448
|
+
default: undefined;
|
|
449
|
+
};
|
|
450
|
+
streetViewControlPosition: {
|
|
451
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
452
|
+
required: false;
|
|
453
|
+
};
|
|
454
|
+
styles: {
|
|
455
|
+
type: PropType<google.maps.MapTypeStyle[]>;
|
|
456
|
+
required: false;
|
|
457
|
+
};
|
|
458
|
+
tilt: {
|
|
459
|
+
type: NumberConstructor;
|
|
460
|
+
required: false;
|
|
461
|
+
};
|
|
462
|
+
zoom: {
|
|
463
|
+
type: NumberConstructor;
|
|
464
|
+
required: false;
|
|
465
|
+
};
|
|
466
|
+
zoomControl: {
|
|
467
|
+
type: BooleanConstructor;
|
|
468
|
+
required: false;
|
|
469
|
+
default: undefined;
|
|
470
|
+
};
|
|
471
|
+
zoomControlPosition: {
|
|
472
|
+
type: PropType<"BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "LEFT_BOTTOM" | "LEFT_CENTER" | "LEFT_TOP" | "RIGHT_BOTTOM" | "RIGHT_CENTER" | "RIGHT_TOP" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT">;
|
|
473
|
+
required: false;
|
|
474
|
+
};
|
|
475
|
+
nonce: {
|
|
476
|
+
type: StringConstructor;
|
|
477
|
+
default: string;
|
|
478
|
+
};
|
|
479
|
+
}>> & {
|
|
480
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
481
|
+
}, {
|
|
482
|
+
draggable: boolean;
|
|
483
|
+
version: string;
|
|
484
|
+
center: google.maps.LatLng | google.maps.LatLngLiteral;
|
|
485
|
+
apiKey: string;
|
|
486
|
+
libraries: import("@googlemaps/js-api-loader").Library[];
|
|
487
|
+
clickableIcons: boolean;
|
|
488
|
+
disableDefaultUi: boolean;
|
|
489
|
+
disableDoubleClickZoom: boolean;
|
|
490
|
+
fullscreenControl: boolean;
|
|
491
|
+
isFractionalZoomEnabled: boolean;
|
|
492
|
+
keyboardShortcuts: boolean;
|
|
493
|
+
mapTypeControl: boolean;
|
|
494
|
+
noClear: boolean;
|
|
495
|
+
panControl: boolean;
|
|
496
|
+
rotateControl: boolean;
|
|
497
|
+
scaleControl: boolean;
|
|
498
|
+
scrollwheel: boolean;
|
|
499
|
+
streetViewControl: boolean;
|
|
500
|
+
zoomControl: boolean;
|
|
501
|
+
nonce: string;
|
|
502
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
503
|
+
AdvancedMarker: import("vue").DefineComponent<{
|
|
504
|
+
options: {
|
|
505
|
+
type: PropType<google.maps.marker.AdvancedMarkerElementOptions>;
|
|
506
|
+
required: true;
|
|
507
|
+
};
|
|
508
|
+
pinOptions: {
|
|
509
|
+
type: PropType<google.maps.marker.PinElementOptions>;
|
|
510
|
+
required: false;
|
|
511
|
+
};
|
|
512
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
513
|
+
[key: string]: any;
|
|
514
|
+
}>[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
515
|
+
options: {
|
|
516
|
+
type: PropType<google.maps.marker.AdvancedMarkerElementOptions>;
|
|
517
|
+
required: true;
|
|
518
|
+
};
|
|
519
|
+
pinOptions: {
|
|
520
|
+
type: PropType<google.maps.marker.PinElementOptions>;
|
|
521
|
+
required: false;
|
|
522
|
+
};
|
|
523
|
+
}>> & {
|
|
524
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
525
|
+
}, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
526
|
+
InfoWindow: import("vue").DefineComponent<{
|
|
527
|
+
options: {
|
|
528
|
+
type: PropType<google.maps.InfoWindowOptions>;
|
|
529
|
+
default: () => {};
|
|
530
|
+
};
|
|
531
|
+
modelValue: {
|
|
532
|
+
type: BooleanConstructor;
|
|
533
|
+
};
|
|
534
|
+
}, {
|
|
535
|
+
infoWindow: import("vue").Ref<google.maps.InfoWindow | undefined>;
|
|
536
|
+
infoWindowRef: import("vue").Ref<HTMLElement | undefined>;
|
|
537
|
+
hasSlotContent: import("vue").ComputedRef<boolean | undefined>;
|
|
538
|
+
open: (opts?: google.maps.InfoWindowOpenOptions) => void;
|
|
539
|
+
close: () => void;
|
|
540
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
541
|
+
options: {
|
|
542
|
+
type: PropType<google.maps.InfoWindowOptions>;
|
|
543
|
+
default: () => {};
|
|
544
|
+
};
|
|
545
|
+
modelValue: {
|
|
546
|
+
type: BooleanConstructor;
|
|
547
|
+
};
|
|
548
|
+
}>> & {
|
|
549
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
550
|
+
}, {
|
|
551
|
+
options: google.maps.InfoWindowOptions;
|
|
552
|
+
modelValue: boolean;
|
|
553
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
80
554
|
argStyle: any;
|
|
81
|
-
MarkerCluster:
|
|
555
|
+
MarkerCluster: import("vue").DefineComponent<{
|
|
556
|
+
options: {
|
|
557
|
+
type: PropType<import("@googlemaps/markerclusterer").MarkerClustererOptions>;
|
|
558
|
+
default: () => {};
|
|
559
|
+
};
|
|
560
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
561
|
+
[key: string]: any;
|
|
562
|
+
}>[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("@googlemaps/markerclusterer").MarkerClustererEvents[], import("@googlemaps/markerclusterer").MarkerClustererEvents, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
563
|
+
options: {
|
|
564
|
+
type: PropType<import("@googlemaps/markerclusterer").MarkerClustererOptions>;
|
|
565
|
+
default: () => {};
|
|
566
|
+
};
|
|
567
|
+
}>> & {
|
|
568
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
569
|
+
onClusteringbegin?: ((...args: any[]) => any) | undefined;
|
|
570
|
+
onClusteringend?: ((...args: any[]) => any) | undefined;
|
|
571
|
+
}, {
|
|
572
|
+
options: import("@googlemaps/markerclusterer").MarkerClustererOptions;
|
|
573
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
82
574
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
83
575
|
export default _default;
|
|
@@ -38,10 +38,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
38
38
|
isArray(arg: any): arg is any[];
|
|
39
39
|
readonly prototype: any[];
|
|
40
40
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
41
|
-
from<
|
|
42
|
-
from<
|
|
43
|
-
from<
|
|
44
|
-
of<
|
|
41
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
42
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
43
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
44
|
+
of<T>(...items: T[]): T[];
|
|
45
45
|
readonly [Symbol.species]: ArrayConstructor;
|
|
46
46
|
};
|
|
47
47
|
default: () => never[];
|
|
@@ -93,10 +93,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
isArray(arg: any): arg is any[];
|
|
94
94
|
readonly prototype: any[];
|
|
95
95
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
96
|
-
from<
|
|
97
|
-
from<
|
|
98
|
-
from<
|
|
99
|
-
of<
|
|
96
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
97
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
98
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
99
|
+
of<T>(...items: T[]): T[];
|
|
100
100
|
readonly [Symbol.species]: ArrayConstructor;
|
|
101
101
|
};
|
|
102
102
|
default: () => never[];
|
|
@@ -209,8 +209,7 @@ export default defineComponent({
|
|
|
209
209
|
const content = document.getElementById("header_scroll_tabs");
|
|
210
210
|
if (content?.scrollWidth > container?.clientWidth - 48) {
|
|
211
211
|
isOverflow.value = true;
|
|
212
|
-
} else
|
|
213
|
-
isOverflow.value = false;
|
|
212
|
+
} else isOverflow.value = false;
|
|
214
213
|
}
|
|
215
214
|
function scroll_left() {
|
|
216
215
|
const content = document.getElementById("header_scroll_tabs");
|
|
@@ -16,10 +16,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
16
16
|
isArray(arg: any): arg is any[];
|
|
17
17
|
readonly prototype: any[];
|
|
18
18
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
19
|
-
from<
|
|
20
|
-
from<
|
|
21
|
-
from<
|
|
22
|
-
of<
|
|
19
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
20
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
21
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
22
|
+
of<T>(...items: T[]): T[];
|
|
23
23
|
readonly [Symbol.species]: ArrayConstructor;
|
|
24
24
|
};
|
|
25
25
|
default: () => never[];
|
|
@@ -55,10 +55,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
55
|
isArray(arg: any): arg is any[];
|
|
56
56
|
readonly prototype: any[];
|
|
57
57
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
58
|
-
from<
|
|
59
|
-
from<
|
|
60
|
-
from<
|
|
61
|
-
of<
|
|
58
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
59
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
60
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
61
|
+
of<T>(...items: T[]): T[];
|
|
62
62
|
readonly [Symbol.species]: ArrayConstructor;
|
|
63
63
|
};
|
|
64
64
|
default: () => never[];
|
|
@@ -319,14 +319,12 @@ export default defineComponent({
|
|
|
319
319
|
const getGlobalTitle = computed(() => {
|
|
320
320
|
if (props.globalTitle !== null) {
|
|
321
321
|
return props.globalTitle;
|
|
322
|
-
} else
|
|
323
|
-
return langData.value?.global;
|
|
322
|
+
} else return langData.value?.global;
|
|
324
323
|
});
|
|
325
324
|
const getSearchPlaceholder = computed(() => {
|
|
326
325
|
if (props.searchPlaceholder !== null) {
|
|
327
326
|
return props.searchPlaceholder;
|
|
328
|
-
} else
|
|
329
|
-
return langData.value?.search;
|
|
327
|
+
} else return langData.value?.search;
|
|
330
328
|
});
|
|
331
329
|
const filterBlocks = computed(() => {
|
|
332
330
|
return props.appBlocks.length > 0 ? props.appBlocks.filter((a) => includesValue(a)) : props.appBlocks;
|