@graphcommerce/magento-category 4.0.12 → 4.0.15

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,36 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f3d06dd83`](https://github.com/graphcommerce-org/graphcommerce/commit/f3d06dd836c9a76412b419d4d2c79bbd0ee92e04)]:
8
+ - @graphcommerce/magento-product@4.2.0
9
+ - @graphcommerce/magento-store@4.2.0
10
+ - @graphcommerce/next-ui@4.7.0
11
+ - @graphcommerce/framer-scroller@2.1.8
12
+
13
+ ## 4.0.14
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies []:
18
+ - @graphcommerce/magento-product@4.1.11
19
+ - @graphcommerce/magento-store@4.1.9
20
+
21
+ ## 4.0.13
22
+
23
+ ### Patch Changes
24
+
25
+ - [#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
26
+
27
+ - Updated dependencies [[`b6b8bb5b3`](https://github.com/graphcommerce-org/graphcommerce/commit/b6b8bb5b31b0891ea24733de34a3bd5c0a9604e4), [`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
28
+ - @graphcommerce/magento-product@4.1.10
29
+ - @graphcommerce/graphql@3.1.1
30
+ - @graphcommerce/next-ui@4.6.2
31
+ - @graphcommerce/magento-store@4.1.8
32
+ - @graphcommerce/framer-scroller@2.1.7
33
+
3
34
  ## 4.0.12
4
35
 
5
36
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- fragment CategoryDescription on CategoryTree {
1
+ fragment CategoryDescription on CategoryTree @injectable {
2
2
  uid
3
3
  description
4
4
  name
@@ -2,7 +2,9 @@ import { extendableComponent } from '@graphcommerce/next-ui'
2
2
  import { Box, SxProps, Theme } from '@mui/material'
3
3
  import { CategoryDescriptionFragment } from './CategoryDescription.gql'
4
4
 
5
- type CategoryDescriptionProps = Omit<CategoryDescriptionFragment, 'uid'> & { sx?: SxProps<Theme> }
5
+ export type CategoryDescriptionProps = Omit<CategoryDescriptionFragment, 'uid'> & {
6
+ sx?: SxProps<Theme>
7
+ }
6
8
 
7
9
  const cmpName = 'CategoryDescription' as const
8
10
  const parts = ['root'] as const
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-category",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.0.12",
5
+ "version": "4.0.15",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,19 +12,19 @@
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/framer-scroller": "2.1.6",
23
- "@graphcommerce/graphql": "3.1.0",
22
+ "@graphcommerce/framer-scroller": "2.1.8",
23
+ "@graphcommerce/graphql": "3.1.1",
24
24
  "@graphcommerce/image": "3.1.5",
25
- "@graphcommerce/magento-product": "4.1.9",
26
- "@graphcommerce/magento-store": "4.1.7",
27
- "@graphcommerce/next-ui": "4.6.1"
25
+ "@graphcommerce/magento-product": "4.2.0",
26
+ "@graphcommerce/magento-store": "4.2.0",
27
+ "@graphcommerce/next-ui": "4.7.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@lingui/macro": "^3.13.2",