gatsby-matrix-theme 52.0.48 → 52.0.50
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 +14 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/helpers/server-data.js +2 -5
- package/storybook/deploy.php +1 -0
- package/storybook/public/{638.2b98340a.iframe.bundle.js → 638.f99bb893.iframe.bundle.js} +4 -4
- package/storybook/public/{638.2b98340a.iframe.bundle.js.map → 638.f99bb893.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/project.json +1 -1
- /package/storybook/public/{638.2b98340a.iframe.bundle.js.LICENSE.txt → 638.f99bb893.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [52.0.50](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.49...v52.0.50) (2024-12-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update version and preview fixes ([c7a9f83](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/c7a9f83df78529728bb539649d6dea02e11ad080))
|
|
7
|
+
|
|
8
|
+
## [52.0.49](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.48...v52.0.49) (2024-12-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update version and storybook deploy ([a9c0ec8](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/a9c0ec82a6fe53480c872893d781b48bd33c600d))
|
|
14
|
+
|
|
1
15
|
## [52.0.48](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.47...v52.0.48) (2024-12-13)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.0.50",
|
|
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": "41.1.
|
|
28
|
+
"gatsby-core-theme": "41.1.13",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
@@ -30,13 +30,10 @@ export async function getAPIData(page, url, header, preview) {
|
|
|
30
30
|
pagesData,
|
|
31
31
|
operatorData,
|
|
32
32
|
paymentData,
|
|
33
|
-
allMarketsData,
|
|
34
33
|
gamesData,
|
|
35
34
|
providersData
|
|
36
35
|
} = await fetchSiteSettings(siteName, true);
|
|
37
36
|
|
|
38
|
-
const pagePath = `${params?.market && allMarketsData[params?.market].path_prefix ? `${allMarketsData[params?.market].path_prefix}/` : '' }${params?.path}`
|
|
39
|
-
|
|
40
37
|
const processed = processor.run(
|
|
41
38
|
{
|
|
42
39
|
...siteSettingsData,
|
|
@@ -57,11 +54,11 @@ export async function getAPIData(page, url, header, preview) {
|
|
|
57
54
|
{},
|
|
58
55
|
null,
|
|
59
56
|
null,
|
|
60
|
-
|
|
57
|
+
parseInt(params?.page_id)
|
|
61
58
|
);
|
|
62
59
|
|
|
63
60
|
const pagePreviewProcessed = Object.values(pagesData).filter(
|
|
64
|
-
(value) => (value.
|
|
61
|
+
(value) => parseInt(value.id) === parseInt(params?.page_id)
|
|
65
62
|
);
|
|
66
63
|
|
|
67
64
|
if(pagePreviewProcessed.length > 0 ) {
|
package/storybook/deploy.php
CHANGED