gatsby-matrix-theme 37.0.16 → 37.0.17

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.
@@ -47,6 +47,7 @@ export const parameters = {
47
47
  'Toplist',
48
48
  'Cards',
49
49
  [
50
+ 'Layout',
50
51
  'Game',
51
52
  ['Template One', 'Template Two', 'Template Three', 'Template Four', 'Template Five'],
52
53
  'Operator',
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [37.0.17](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v37.0.16...v37.0.17) (2023-11-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix storybooks ([bac932e](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/bac932e2553da5f097e4e38dd6cbea9a1e08927b))
7
+ * updated to latest theme ([ce6ebc6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/ce6ebc6035f0618765a9414f23056c23bfd2614f))
8
+
1
9
  ## [37.0.16](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v37.0.15...v37.0.16) (2023-11-29)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "37.0.16",
3
+ "version": "37.0.17",
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.25",
28
+ "gatsby-core-theme": "30.0.26",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-plugin-sitemap": "^3.3.0",
31
31
  "gatsby-transformer-sharp": "^5.11.0",
@@ -45,7 +45,11 @@ export default {
45
45
 
46
46
  const Template = (args) => <TemplateTwo {...args} />;
47
47
  export const VariantOne = Template.bind({});
48
- VariantOne.args = {};
48
+ VariantOne.args = {
49
+ pageContext: {
50
+ page: {},
51
+ },
52
+ };
49
53
 
50
54
  export const VariantTwo = Template.bind({});
51
55
  VariantTwo.args = {
@@ -53,4 +57,7 @@ VariantTwo.args = {
53
57
  ...operatorData,
54
58
  module_introduction: null,
55
59
  },
60
+ pageContext: {
61
+ page: {},
62
+ },
56
63
  };