gatsby-matrix-theme 28.0.16 → 28.0.17
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/CHANGELOG.md +9 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/pages/body/index.js +1 -8
- package/storybook/public/{503.57cf4c62.iframe.bundle.js → 503.0b8b8998.iframe.bundle.js} +4 -4
- package/storybook/public/{503.57cf4c62.iframe.bundle.js.map → 503.0b8b8998.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- /package/storybook/public/{503.57cf4c62.iframe.bundle.js.LICENSE.txt → 503.0b8b8998.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [28.0.17](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v28.0.16...v28.0.17) (2023-08-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* cookie consent ([3cd2358](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/3cd235838d89ab65a117baca8f769c495c489a02))
|
|
7
|
+
* cookie consent ([44dd78f](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/44dd78f13f1c607a07fbcafda243dee9976688d6))
|
|
8
|
+
* update core version ([336cc4b](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/336cc4b0e4e59f1769ce5cce110d5a2a6413c633))
|
|
9
|
+
|
|
1
10
|
## [28.0.16](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v28.0.15...v28.0.16) (2023-08-09)
|
|
2
11
|
|
|
3
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "28.0.
|
|
3
|
+
"version": "28.0.17",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@react-icons/all-files": "^4.1.0",
|
|
27
27
|
"gatsby": "^5.11.0",
|
|
28
|
-
"gatsby-core-theme": "25.0.
|
|
28
|
+
"gatsby-core-theme": "25.0.14",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
@@ -10,7 +10,6 @@ import ScrollToTop from 'gatsby-core-theme/src/components/atoms/scroll-to-top';
|
|
|
10
10
|
import Main from 'gatsby-core-theme/src/components/molecules/main';
|
|
11
11
|
import Header from 'gatsby-core-theme/src/components/molecules/header';
|
|
12
12
|
import Footer from '../../molecules/footer';
|
|
13
|
-
import { getCookie } from '~helpers/cookies';
|
|
14
13
|
import LinkMenu from '../../../../components/atoms/link-menu';
|
|
15
14
|
|
|
16
15
|
function Body({ pageContext, children, excludeTemplateInPopup = [], hideOperatorBanner = false }) {
|
|
@@ -48,8 +47,6 @@ function Body({ pageContext, children, excludeTemplateInPopup = [], hideOperator
|
|
|
48
47
|
const isHomePage = pageContext?.page && pageContext?.page.path === '/';
|
|
49
48
|
const pageType = pageContext.page.relation_type;
|
|
50
49
|
const is404 = pageContext.page.path.includes('404');
|
|
51
|
-
const cookieConsentAccepted =
|
|
52
|
-
(typeof window !== 'undefined' && Boolean(getCookie('CookieConsent'))) || false;
|
|
53
50
|
|
|
54
51
|
const excOperator = navigation?.modules.find((module) => module.name === 'bonus');
|
|
55
52
|
const Popup = pageContext?.marketSections?.popup
|
|
@@ -92,9 +89,7 @@ function Body({ pageContext, children, excludeTemplateInPopup = [], hideOperator
|
|
|
92
89
|
const isPageHomepage =
|
|
93
90
|
getAllMarketsHomepage()?.includes(pageContext?.page?.path) || pageContext?.page?.path === '/';
|
|
94
91
|
|
|
95
|
-
const
|
|
96
|
-
|
|
97
|
-
const Cookie = modalProvider ? loadable(() => import('../../organisms/cookie-consent')) : null;
|
|
92
|
+
const Cookie = loadable(() => import('../../organisms/cookie-consent'));
|
|
98
93
|
|
|
99
94
|
return (
|
|
100
95
|
<>
|
|
@@ -180,8 +175,6 @@ function Body({ pageContext, children, excludeTemplateInPopup = [], hideOperator
|
|
|
180
175
|
template={template}
|
|
181
176
|
settingsCookie
|
|
182
177
|
isPageHomepage={isPageHomepage}
|
|
183
|
-
modalProvider={modalProvider}
|
|
184
|
-
cookieConsentAccepted={cookieConsentAccepted}
|
|
185
178
|
>
|
|
186
179
|
<p>
|
|
187
180
|
We use cookies in order to optimise our site and improve your experience with us. By
|