gatsby-matrix-theme 13.0.2 → 13.0.3

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 CHANGED
@@ -1,3 +1,19 @@
1
+ ## [13.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v13.0.2...v13.0.3) (2023-02-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added page attribute in header ([fc676aa](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/fc676aa0ada4a5b0106873c82bf1ba6c2f8374a5))
7
+ * added page attribute in header ([3040768](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/3040768b0ca20d88f3893f2716c2a60133bb0293))
8
+
9
+
10
+ ### Config
11
+
12
+ * update core theme version ([3fe1eda](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/3fe1edaa963e530b1f97e632251ba5192665401e))
13
+
14
+
15
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/matrix-theme ([eb6cb31](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/eb6cb3197ca371ce31a20ce30f34d62212941f65))
16
+
1
17
  ## [13.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v13.0.1...v13.0.2) (2023-02-06)
2
18
 
3
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
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": "^4.20.0",
28
- "gatsby-core-theme": "18.0.9",
28
+ "gatsby-core-theme": "18.0.10",
29
29
  "gatsby-plugin-sharp": "^4.10.2",
30
30
  "gatsby-plugin-sitemap": "^3.3.0",
31
31
  "gatsby-transformer-sharp": "^4.10.0",
@@ -31,6 +31,7 @@ export const relationContent = (section) => {
31
31
  }
32
32
  case 'operator': {
33
33
  const data = {
34
+ page: section?.page,
34
35
  author: section?.page.author,
35
36
  type: section?.page?.type,
36
37
  template: section?.page?.page_styles?.short_name,
@@ -83,6 +84,7 @@ export const relationContent = (section) => {
83
84
  }
84
85
  case 'page': {
85
86
  let props = {
87
+ page: section.page,
86
88
  extraFields: section.page.extra_fields,
87
89
  imageObj: section.page.featured_image_object,
88
90
  };