gatsby-matrix-theme 53.0.25 → 53.0.27
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 +15 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/molecules/main/index.js +2 -1
- package/src/gatsby-core-theme/components/pages/search/index.js +3 -1
- package/storybook/public/{912.842d54cc.iframe.bundle.js → 912.50078af2.iframe.bundle.js} +3 -3
- package/storybook/public/{912.842d54cc.iframe.bundle.js.map → 912.50078af2.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/project.json +1 -1
- /package/storybook/public/{912.842d54cc.iframe.bundle.js.LICENSE.txt → 912.50078af2.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [53.0.27](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.26...v53.0.27) (2025-05-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* udpate version ([e0cd217](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/e0cd21744fd2262f91de6ddc547ff23eff313a57))
|
|
7
|
+
|
|
8
|
+
## [53.0.26](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.25...v53.0.26) (2025-05-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* search ([de919a0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/de919a0214776c3090aaf57079f6d2ce234e555e))
|
|
14
|
+
* search error ([e53572d](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/e53572dcb702d2509ef709af3d8617903d00153b))
|
|
15
|
+
|
|
1
16
|
## [53.0.25](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.24...v53.0.25) (2025-05-07)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "53.0.
|
|
3
|
+
"version": "53.0.27",
|
|
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": "44.0.
|
|
28
|
+
"gatsby-core-theme": "44.0.35",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
@@ -26,6 +26,7 @@ const Main = ({
|
|
|
26
26
|
isStickyNewsletter = false,
|
|
27
27
|
forceAuthorBox = false
|
|
28
28
|
}) => {
|
|
29
|
+
|
|
29
30
|
const { page, allMarkets } = pageContext;
|
|
30
31
|
const siteName = process.env.GATSBY_SITE_NAME;
|
|
31
32
|
const showNewsletter =
|
|
@@ -162,7 +163,7 @@ const Main = ({
|
|
|
162
163
|
|
|
163
164
|
{SearchPage && (
|
|
164
165
|
<Suspense fallback={<div className={styles.searchContainer} />}>
|
|
165
|
-
<SearchPage page={page} serverData={serverData} allMarkets={pageContext.allMarkets} />
|
|
166
|
+
<SearchPage page={page} serverData={serverData} pageContext={pageContext} allMarkets={pageContext.allMarkets} />
|
|
166
167
|
</Suspense>
|
|
167
168
|
)}
|
|
168
169
|
{(showAuthorBox || forceAuthorBox) && (
|
|
@@ -9,7 +9,7 @@ import Search from 'gatsby-core-theme/src/components/molecules/search';
|
|
|
9
9
|
import useTranslate from '~hooks/useTranslate/useTranslate';
|
|
10
10
|
import styles from './search.module.scss';
|
|
11
11
|
|
|
12
|
-
const SearchContent = ({ page, serverData, allMarkets }) => {
|
|
12
|
+
const SearchContent = ({ page, serverData, allMarkets , pageContext}) => {
|
|
13
13
|
const searchURLPageName = page.path;
|
|
14
14
|
return (
|
|
15
15
|
<div className={`${styles.searchPage} ${moduleStyles.module} module`}>
|
|
@@ -17,6 +17,7 @@ const SearchContent = ({ page, serverData, allMarkets }) => {
|
|
|
17
17
|
<Search
|
|
18
18
|
serverData={serverData}
|
|
19
19
|
allMarkets={allMarkets}
|
|
20
|
+
pageContext={pageContext}
|
|
20
21
|
searchURLPageName={searchURLPageName}
|
|
21
22
|
page={page}
|
|
22
23
|
pageSearchOptions={{
|
|
@@ -89,6 +90,7 @@ const SearchContent = ({ page, serverData, allMarkets }) => {
|
|
|
89
90
|
SearchContent.propTypes = {
|
|
90
91
|
serverData: PropTypes.shape({}),
|
|
91
92
|
allMarkets: PropTypes.shape({}),
|
|
93
|
+
pageContext: PropTypes.shape({}),
|
|
92
94
|
page: PropTypes.shape({
|
|
93
95
|
template: PropTypes.string,
|
|
94
96
|
path: PropTypes.string,
|