@graphcommerce/magento-cms 4.0.7 → 4.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,5 +1,32 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @graphcommerce/magento-store@4.1.9
9
+
10
+ ## 4.0.9
11
+
12
+ ### Patch Changes
13
+
14
+ - [#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
15
+
16
+ - Updated dependencies [[`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
17
+ - @graphcommerce/graphql@3.1.1
18
+ - @graphcommerce/magento-store@4.1.8
19
+
20
+ ## 4.0.8
21
+
22
+ ### Patch Changes
23
+
24
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
25
+
26
+ - Updated dependencies [[`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4)]:
27
+ - @graphcommerce/graphql@3.1.0
28
+ - @graphcommerce/magento-store@4.1.7
29
+
3
30
  ## 4.0.7
4
31
 
5
32
  ### 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.7",
5
+ "version": "4.0.10",
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.4",
16
- "@graphcommerce/prettier-config-pwa": "^4.0.5",
15
+ "@graphcommerce/eslint-config-pwa": "^4.1.6",
16
+ "@graphcommerce/prettier-config-pwa": "^4.0.6",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
18
- "@playwright/test": "^1.20.1",
19
- "type-fest": "2.12.1"
18
+ "@playwright/test": "^1.21.1",
19
+ "type-fest": "^2.12.2"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "3.0.7",
23
- "@graphcommerce/magento-store": "4.1.6"
22
+ "@graphcommerce/graphql": "3.1.1",
23
+ "@graphcommerce/magento-store": "4.1.9"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@lingui/macro": "^3.13.2",