gatsby-matrix-theme 32.0.0 → 32.0.2
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 +22 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/molecules/footer/index.js +3 -0
- package/storybook/public/{958.9803a932.iframe.bundle.js → 958.0d025941.iframe.bundle.js} +3 -3
- package/storybook/public/{958.9803a932.iframe.bundle.js.map → 958.0d025941.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- /package/storybook/public/{958.9803a932.iframe.bundle.js.LICENSE.txt → 958.0d025941.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## [32.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v32.0.1...v32.0.2) (2023-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated to latest theme version ([02b7d11](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/02b7d11f0c13b3d0cc8772817ec0fe3259508ddb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Code Refactoring
|
|
10
|
+
|
|
11
|
+
* add fallback dmca image data for footer ([5904da1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/5904da154373711525c3a39b1e7197c00aa1debe))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
* Merge branch 'tm-3644-dmca-image' into 'master' ([eaf49ac](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/eaf49ac4df2b774a0590dfc998631a52837c3a60))
|
|
15
|
+
|
|
16
|
+
## [32.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v32.0.0...v32.0.1) (2023-09-04)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* update theme ([4f27da3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4f27da3bf331381620d3d38b4df7600c2612401c))
|
|
22
|
+
|
|
1
23
|
# [32.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v31.0.7...v32.0.0) (2023-09-04)
|
|
2
24
|
|
|
3
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "32.0.
|
|
3
|
+
"version": "32.0.2",
|
|
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": "29.0.
|
|
28
|
+
"gatsby-core-theme": "29.0.2",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
@@ -74,6 +74,9 @@ const Footer = (props) => {
|
|
|
74
74
|
gamblingText: getExtraField(props.section?.extra_fields, 'gambling_text'),
|
|
75
75
|
socialIcons: getExtraField(props.section?.extra_fields, 'social_icons'),
|
|
76
76
|
logo: '../../../../../images/logo.svg',
|
|
77
|
+
dmcaImage: '../../../../../images/dmca.png',
|
|
78
|
+
dmcaWidth: 100,
|
|
79
|
+
dmcaHeight: 30,
|
|
77
80
|
securityIcon: '../../../../../images/security.svg',
|
|
78
81
|
helpText,
|
|
79
82
|
phoneNum,
|