@graphcommerce/magento-cart 4.2.6 → 4.2.9

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,37 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`e58df7278`](https://github.com/graphcommerce-org/graphcommerce/commit/e58df727829a12941e7b2ae2159ee2233969493c)]:
8
+ - @graphcommerce/magento-graphql@3.0.9
9
+ - @graphcommerce/magento-customer@4.2.7
10
+ - @graphcommerce/magento-store@4.1.9
11
+
12
+ ## 4.2.8
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
17
+ - @graphcommerce/graphql@3.1.1
18
+ - @graphcommerce/next-ui@4.6.2
19
+ - @graphcommerce/react-hook-form@3.1.2
20
+ - @graphcommerce/magento-customer@4.2.6
21
+ - @graphcommerce/magento-store@4.1.8
22
+ - @graphcommerce/ecommerce-ui@1.0.8
23
+ - @graphcommerce/magento-graphql@3.0.8
24
+ - @graphcommerce/framer-scroller@2.1.7
25
+
26
+ ## 4.2.7
27
+
28
+ ### Patch Changes
29
+
30
+ - [#1412](https://github.com/graphcommerce-org/graphcommerce/pull/1412) [`d8906cf4a`](https://github.com/graphcommerce-org/graphcommerce/commit/d8906cf4afbfc234aedd91a2c581f82623267357) Thanks [@FrankHarland](https://github.com/FrankHarland)! - add missing translation components
31
+
32
+ - Updated dependencies [[`d8906cf4a`](https://github.com/graphcommerce-org/graphcommerce/commit/d8906cf4afbfc234aedd91a2c581f82623267357)]:
33
+ - @graphcommerce/magento-customer@4.2.5
34
+
3
35
  ## 4.2.6
4
36
 
5
37
  ### Patch Changes
@@ -2,7 +2,7 @@ import { ApolloErrorAlert, ApolloErrorAlertProps } from '@graphcommerce/ecommerc
2
2
  import { useQuery } from '@graphcommerce/graphql'
3
3
  import { CustomerTokenDocument } from '@graphcommerce/magento-customer'
4
4
  import { graphqlErrorByCategory } from '@graphcommerce/magento-graphql'
5
- import { t } from '@lingui/macro'
5
+ import { t, Trans } from '@lingui/macro'
6
6
  import { Button } from '@mui/material'
7
7
  import Link from 'next/link'
8
8
  import { useClearCurrentCartId } from '../../hooks/useClearCurrentCartId'
@@ -28,7 +28,9 @@ export function ApolloCartErrorAlert(props: ApolloCartErrorAlertProps) {
28
28
  action =
29
29
  authorizationError && clear ? (
30
30
  <Link href='/account/signin' passHref>
31
- <Button>Sign in</Button>
31
+ <Button>
32
+ <Trans>Sign in</Trans>
33
+ </Button>
32
34
  </Link>
33
35
  ) : (
34
36
  action
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.2.6",
5
+ "version": "4.2.9",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,22 +12,22 @@
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
  },
20
20
  "dependencies": {
21
- "@graphcommerce/ecommerce-ui": "1.0.7",
21
+ "@graphcommerce/ecommerce-ui": "1.0.8",
22
22
  "@graphcommerce/framer-next-pages": "3.1.6",
23
- "@graphcommerce/framer-scroller": "2.1.6",
24
- "@graphcommerce/graphql": "3.1.0",
23
+ "@graphcommerce/framer-scroller": "2.1.7",
24
+ "@graphcommerce/graphql": "3.1.1",
25
25
  "@graphcommerce/image": "3.1.5",
26
- "@graphcommerce/magento-customer": "4.2.4",
27
- "@graphcommerce/magento-graphql": "3.0.7",
28
- "@graphcommerce/magento-store": "4.1.7",
29
- "@graphcommerce/next-ui": "4.6.1",
30
- "@graphcommerce/react-hook-form": "3.1.1"
26
+ "@graphcommerce/magento-customer": "4.2.7",
27
+ "@graphcommerce/magento-graphql": "3.0.9",
28
+ "@graphcommerce/magento-store": "4.1.9",
29
+ "@graphcommerce/next-ui": "4.6.2",
30
+ "@graphcommerce/react-hook-form": "3.1.2"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@lingui/macro": "^3.13.2",