@graphcommerce/magento-cms 4.0.8 → 4.0.11

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,5 +1,29 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f3d06dd83`](https://github.com/graphcommerce-org/graphcommerce/commit/f3d06dd836c9a76412b419d4d2c79bbd0ee92e04)]:
8
+ - @graphcommerce/magento-store@4.2.0
9
+
10
+ ## 4.0.10
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - @graphcommerce/magento-store@4.1.9
16
+
17
+ ## 4.0.9
18
+
19
+ ### Patch Changes
20
+
21
+ - [#1394](https://github.com/graphcommerce-org/graphcommerce/pull/1394) [`b6b8bb5b3`](https://github.com/graphcommerce-org/graphcommerce/commit/b6b8bb5b31b0891ea24733de34a3bd5c0a9604e4) Thanks [@paales](https://github.com/paales)! - Made fragments injectable so they can be extended
22
+
23
+ - Updated dependencies [[`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
24
+ - @graphcommerce/graphql@3.1.1
25
+ - @graphcommerce/magento-store@4.1.8
26
+
3
27
  ## 4.0.8
4
28
 
5
29
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- fragment CmsPageContent on CmsPage {
1
+ fragment CmsPageContent on CmsPage @injectable {
2
2
  content_heading
3
3
  content
4
4
  }
@@ -1,7 +1,9 @@
1
1
  import { Typography, Container } from '@mui/material'
2
2
  import { CmsPageContentFragment } from './CmsPageContent.gql'
3
3
 
4
- export function CmsPageContent(props: CmsPageContentFragment) {
4
+ export type CmsPageContentProps = CmsPageContentFragment
5
+
6
+ export function CmsPageContent(props: CmsPageContentProps) {
5
7
  const { content_heading, content } = props
6
8
  return (
7
9
  <Container>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cms",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.0.8",
5
+ "version": "4.0.11",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,15 +12,15 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.1.5",
15
+ "@graphcommerce/eslint-config-pwa": "^4.1.6",
16
16
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
18
18
  "@playwright/test": "^1.21.1",
19
19
  "type-fest": "^2.12.2"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "3.1.0",
23
- "@graphcommerce/magento-store": "4.1.7"
22
+ "@graphcommerce/graphql": "3.1.1",
23
+ "@graphcommerce/magento-store": "4.2.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@lingui/macro": "^3.13.2",