diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe3d1202d50913604d4019f0fcdecdbd24ec3c5..cef43f148fa083fafc5cc9c3d0b44adfa1e1a709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [0.8.3] - 2023-06-28 + +### Fixed + +- Map (with onegeo-maps context) +- Footer logo height + +### Changed + +- Update @onegeo-suite/gatsby-plugin-auth to 0.2.5 + ## [0.8.2] - 2023-06-21 ### Fixed diff --git a/package.json b/package.json index b0460ef7d311d08815a7a2d5ab683035de5d2ab6..f0700b9b6fd92fb45ba560dd8a49c90557edef27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@onegeo-suite/gatsby-theme-onegeo", - "version": "0.8.2", + "version": "0.8.3", "main": "index.js", "types": "index.d.ts", "author": "NEOGEO", @@ -16,7 +16,7 @@ "typescript": "^4.0.0" }, "dependencies": { - "@onegeo-suite/gatsby-plugin-auth": "0.2.4", + "@onegeo-suite/gatsby-plugin-auth": "0.2.5", "@onegeo-suite/gatsby-source-directus": "^9.14.1", "dayjs": "^1.11.7", "gatsby-plugin-env-variables": "^2.2.0", diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 3f1873a5006f7def16e2913e1b6e3bff2cfb11f1..77e53f7e78901db0bdc14fcb82c172335b5496f9 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -17,7 +17,7 @@ const Footer = (props: Props) => { id imageFile { childImageSharp { - gatsbyImageData + gatsbyImageData(height: 52) } name publicURL diff --git a/src/components/core/Carousel.tsx b/src/components/core/Carousel.tsx index a0b3f87fe3cc72732c40d09e4e079e047edac7a5..035cd29561e9f3d9d0b864b57f0174fdcc59350b 100644 --- a/src/components/core/Carousel.tsx +++ b/src/components/core/Carousel.tsx @@ -40,7 +40,7 @@ const Carousel = (props: Props) => { : 3000 } effect={animation} - navigation + // navigation modules={[Autoplay, Navigation, EffectFade, EffectCoverflow]} > {images.map((item: any, key: any) => { diff --git a/src/components/core/Map.tsx b/src/components/core/Map.tsx index 90d53283875b876a43772bddb4f49799ac7268d9..7d907fa529391d7f473df6c2ff7a0cd4e356cd5a 100644 --- a/src/components/core/Map.tsx +++ b/src/components/core/Map.tsx @@ -168,6 +168,8 @@ const formatContextMaps = (oContext: any) => { const formatLayerMaps = (oLayer: any) => { oLayer.visibility = oLayer.visible oLayer.name = oLayer.layername + oLayer.style = "" + oLayer.format = "image/png" return oLayer }