gatsby-matrix-theme 37.0.8 → 37.0.10

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
+ ## [37.0.10](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v37.0.9...v37.0.10) (2023-11-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix cards in archive ([efb9866](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/efb9866a1fc106a8ed5afabd98efd6ec0fd27c65))
7
+
8
+ ## [37.0.9](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v37.0.8...v37.0.9) (2023-11-23)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update to latest theme ([b64f909](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/b64f90998035c6a60837178f0e97d58f6edf4ba4))
14
+
1
15
  ## [37.0.8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v37.0.7...v37.0.8) (2023-11-22)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "37.0.8",
3
+ "version": "37.0.10",
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": "30.0.23",
28
+ "gatsby-core-theme": "30.0.24",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-plugin-sitemap": "^3.3.0",
31
31
  "gatsby-transformer-sharp": "^5.11.0",
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+
4
+ import Cards from '../../../../../components/organisms/cards/template-one';
5
+
6
+ // Test included with archive & cards test
7
+ const Items = ({ module, page }) => <Cards module={module} page={page} />;
8
+
9
+ Items.propTypes = {
10
+ module: PropTypes.shape({
11
+ module_title: PropTypes.string,
12
+ }).isRequired,
13
+ page: PropTypes.shape({}),
14
+ };
15
+
16
+ export default Items;