@graphcommerce/magento-customer 7.0.1-canary.2 → 7.0.1-canary.3

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,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.0.1-canary.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2032](https://github.com/graphcommerce-org/graphcommerce/pull/2032) [`7e44afc94`](https://github.com/graphcommerce-org/graphcommerce/commit/7e44afc94629a938da1b819d99fe3d19857de497) - Add shipping adresses translation ([@StefanAngenent](https://github.com/StefanAngenent))
8
+
3
9
  ## 7.0.1-canary.2
4
10
 
5
11
  ## 7.0.1-canary.1
@@ -24,7 +24,11 @@ export function AccountAddresses(props: AccountAddressesProps) {
24
24
 
25
25
  if (loading) {
26
26
  return (
27
- <SectionContainer labelLeft='Shipping addresses' sx={sx} className={classes.root}>
27
+ <SectionContainer
28
+ labelLeft={<Trans id='Shipping addresses' />}
29
+ sx={sx}
30
+ className={classes.root}
31
+ >
28
32
  <Box
29
33
  className={classes.addresses}
30
34
  sx={(theme) => ({ '& > div': { borderBottom: `1px solid ${theme.palette.divider}` } })}
@@ -66,7 +70,7 @@ export function AccountAddresses(props: AccountAddressesProps) {
66
70
  )}
67
71
 
68
72
  {addresses && addresses.length >= 1 && (
69
- <SectionContainer labelLeft='Shipping addresses'>
73
+ <SectionContainer labelLeft={<Trans id='Shipping addresses' />}>
70
74
  <Box
71
75
  className={classes.addresses}
72
76
  sx={(theme) => ({ '& > div': { borderBottom: `1px solid ${theme.palette.divider}` } })}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-customer",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "7.0.1-canary.2",
5
+ "version": "7.0.1-canary.3",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,20 +12,20 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "7.0.1-canary.2",
16
- "@graphcommerce/prettier-config-pwa": "7.0.1-canary.2",
17
- "@graphcommerce/typescript-config-pwa": "7.0.1-canary.2"
15
+ "@graphcommerce/eslint-config-pwa": "7.0.1-canary.3",
16
+ "@graphcommerce/prettier-config-pwa": "7.0.1-canary.3",
17
+ "@graphcommerce/typescript-config-pwa": "7.0.1-canary.3"
18
18
  },
19
19
  "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "7.0.1-canary.2",
21
- "@graphcommerce/framer-utils": "7.0.1-canary.2",
22
- "@graphcommerce/graphql": "7.0.1-canary.2",
23
- "@graphcommerce/graphql-mesh": "7.0.1-canary.2",
24
- "@graphcommerce/image": "7.0.1-canary.2",
25
- "@graphcommerce/magento-graphql": "7.0.1-canary.2",
26
- "@graphcommerce/magento-store": "7.0.1-canary.2",
27
- "@graphcommerce/next-ui": "7.0.1-canary.2",
28
- "@graphcommerce/react-hook-form": "7.0.1-canary.2"
20
+ "@graphcommerce/ecommerce-ui": "7.0.1-canary.3",
21
+ "@graphcommerce/framer-utils": "7.0.1-canary.3",
22
+ "@graphcommerce/graphql": "7.0.1-canary.3",
23
+ "@graphcommerce/graphql-mesh": "7.0.1-canary.3",
24
+ "@graphcommerce/image": "7.0.1-canary.3",
25
+ "@graphcommerce/magento-graphql": "7.0.1-canary.3",
26
+ "@graphcommerce/magento-store": "7.0.1-canary.3",
27
+ "@graphcommerce/next-ui": "7.0.1-canary.3",
28
+ "@graphcommerce/react-hook-form": "7.0.1-canary.3"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@lingui/react": "^4.2.1",