Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#1425)
Browse files Browse the repository at this point in the history
* fix(deps): update all non-major dependencies

* tested differet tailwind config in CI

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Frank Elsinga <[email protected]>
  • Loading branch information
renovate[bot] and CommanderStorm authored Aug 10, 2024
1 parent cb1c910 commit 398ce2c
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 183 deletions.
4 changes: 2 additions & 2 deletions webclient/app/components/DetailsInteractiveMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ function loadInteractiveMap() {
if (document.getElementById("interactive-map")?.classList.contains("maplibregl-map")) {
marker.value?.remove();
} else {
// @ts-expect-error somehow this is too deep for typescript
map.value = initMap("interactive-map");
document.getElementById("interactive-map")?.classList.remove("loading");
Expand All @@ -33,7 +34,6 @@ function loadInteractiveMap() {
marker.value = new Marker({ element: createMarker() });
const coords = props.data.coords;
if (map.value !== undefined) {
// @ts-expect-error somehow this is too deep for typescript
marker.value.setLngLat([coords.lon, coords.lat]);
marker.value.addTo(map.value as Map);
}
Expand Down Expand Up @@ -74,7 +74,7 @@ function createMarker(hueRotation = 0) {
return markerDiv;
}
function initMap(containerId: string) {
function initMap(containerId: string): Map {
const map = new Map({
container: containerId,
// to make sure that users can share urls
Expand Down
2 changes: 1 addition & 1 deletion webclient/app/components/IndoorMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function createMarker(hueRotation = 0): HTMLDivElement {
return markerDiv;
}
async function initMap(containerId: string) {
async function initMap(containerId: string): Promise<MaplibreMapWithIndoor> {
const map = new Map({
container: containerId,
// to make sure that users can share urls
Expand Down
8 changes: 4 additions & 4 deletions webclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"@nuxt/content": "2.13.2",
"@nuxt/image": "1.7.0",
"@nuxtjs/color-mode": "3.4.2",
"@vueuse/core": "10.11.0",
"@vueuse/nuxt": "10.11.0",
"@vueuse/router": "10.11.0",
"@vueuse/core": "10.11.1",
"@vueuse/nuxt": "10.11.1",
"@vueuse/router": "10.11.1",
"geojson": "0.5.0",
"maplibre-gl": "4.5.1",
"maplibre-gl-indoor": "0.0.7",
Expand All @@ -34,7 +34,7 @@
"sharp": "0.33.4",
"swagger-ui": "5.17.14",
"swaggerdark": "github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3",
"vue": "3.4.36",
"vue": "3.4.37",
"vue-router": "4.4.3",
"vue3-carousel": "0.3.3"
},
Expand Down
Loading

0 comments on commit 398ce2c

Please sign in to comment.