gatsby-matrix-theme 31.0.3 → 31.0.4
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 +17 -0
- package/package.json +2 -2
- package/src/components/molecules/small-welcome-bonus/index.js +1 -1
- package/src/gatsby-core-theme/styles/utils/variables/_main.scss +1 -0
- package/storybook/public/{353.15a2b39d.iframe.bundle.js → 353.acd7610f.iframe.bundle.js} +4 -4
- package/storybook/public/{353.15a2b39d.iframe.bundle.js.map → 353.acd7610f.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/{main.3853dc3a.iframe.bundle.js → main.cf0ff62f.iframe.bundle.js} +2 -2
- /package/storybook/public/{353.15a2b39d.iframe.bundle.js.LICENSE.txt → 353.acd7610f.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook/public/{main.3853dc3a.iframe.bundle.js.LICENSE.txt → main.cf0ff62f.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [31.0.4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v31.0.3...v31.0.4) (2023-08-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fallback if not site data image provided ([1b147c2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/1b147c2faff7b3e6164409ac2df8413ade8fe9ae))
|
|
7
|
+
* remove duplication ([7647d89](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7647d897d32799037747522df52bbe98430c327a))
|
|
8
|
+
* update color ([9cb9230](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/9cb923074b0e4e1b29512cb2dcffe73c51697589))
|
|
9
|
+
* update main scss ([80bf3a6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/80bf3a60022f1ed63ac3f83d33dd4d715f7a48c3))
|
|
10
|
+
* update version of matrix ([76b0bc2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/76b0bc266ffb33a8997647cfa2d2ba81deba6af3))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
* Merge branch 'new-version-2' into 'master' ([5cc4424](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/5cc44242a5b0f8234020c716fa233715c0c6de3b))
|
|
14
|
+
* Merge branch 'new-version' into 'master' ([4be4c6d](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4be4c6d58b89d3febf23ac42a4ba47eb567f3c52))
|
|
15
|
+
* Merge branch 'tm-3537-content-module' into 'master' ([4b100e9](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4b100e979176f1dc1291e1089df90afd7ab9b92c))
|
|
16
|
+
* Merge branch 'small-welcome-text' into 'master' ([d8e498f](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/d8e498f684b1d1cc848565c12806685f97499bc4))
|
|
17
|
+
|
|
1
18
|
## [31.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v31.0.2...v31.0.3) (2023-08-28)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "31.0.
|
|
3
|
+
"version": "31.0.4",
|
|
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": "28.0.
|
|
28
|
+
"gatsby-core-theme": "28.0.5",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
@@ -23,7 +23,7 @@ const Index = ({ page }) => {
|
|
|
23
23
|
const prettyLink = prettyTracker(operator, 'main', false, page.template);
|
|
24
24
|
let playNow = translate(translations, 'play_now', 'Play now');
|
|
25
25
|
const bonus = getBonus('main', operator);
|
|
26
|
-
const logUrlObject = operator?.logo_url_object;
|
|
26
|
+
const logUrlObject = operator?.logo_url_object || operator?.standardised_logo_url_object;
|
|
27
27
|
if (isMobileDevice()) {
|
|
28
28
|
playNow = `> ${translate(translations, 'play_for_real_at', 'Play for real at')} @ ${
|
|
29
29
|
operator.name
|