gatsby-matrix-theme 51.0.4 → 51.0.6

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,17 @@
1
+ ## [51.0.6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v51.0.5...v51.0.6) (2024-09-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update theme ([2c0a05b](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/2c0a05bcf1bb09a7f7edfa901b0fbf74680d1cab))
7
+
8
+ ## [51.0.5](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v51.0.4...v51.0.5) (2024-09-06)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update theme ([da7cbdf](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/da7cbdf9041acd50c2f51f7b6ff58c981f59bb47))
14
+
1
15
  ## [51.0.4](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v51.0.3...v51.0.4) (2024-09-06)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "51.0.4",
3
+ "version": "51.0.6",
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": "39.0.5",
28
+ "gatsby-core-theme": "39.0.7",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "prop-types": "15.7.2",
@@ -21,7 +21,7 @@ import { generateCustomHeadings } from '../../../helpers/lotto';
21
21
 
22
22
  import styles from './module.module.scss';
23
23
 
24
- const Modules = ({ module, pageContext, index, exclOperator, serverData }) => {
24
+ const Modules = ({ module, pageContext, index, exclOperator, serverData, modulePosition }) => {
25
25
  const { page } = pageContext;
26
26
  const { siteSchema } = page || {};
27
27
  const { admin } = useContext(Context) || {};
@@ -400,7 +400,7 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData }) => {
400
400
  />
401
401
  </Suspense>
402
402
  )}
403
- {admin && <AdminButton page={page} module={module} /> }
403
+ {admin && <AdminButton page={page} module={module} modulePosition={modulePosition} /> }
404
404
  </div>
405
405
  )
406
406
  );