@graphcommerce/magento-customer 5.2.0-canary.16 → 5.2.0-canary.17
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
|
+
## 5.2.0-canary.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1801](https://github.com/graphcommerce-org/graphcommerce/pull/1801) [`12263d608`](https://github.com/graphcommerce-org/graphcommerce/commit/12263d6080c1e550985a42f140ffa9d95d0b0335) - Add sign up form translations ([@StefanAngenent](https://github.com/StefanAngenent))
|
|
8
|
+
|
|
3
9
|
## 5.2.0-canary.16
|
|
4
10
|
|
|
5
11
|
## 5.2.0-canary.15
|
|
@@ -77,14 +77,16 @@ export function SignUpFormInline({
|
|
|
77
77
|
variant='outlined'
|
|
78
78
|
type='password'
|
|
79
79
|
error={!!formState.errors.confirmPassword || !!error?.message}
|
|
80
|
-
label='Confirm password'
|
|
80
|
+
label={<Trans id='Confirm password' />}
|
|
81
81
|
autoComplete='new-password'
|
|
82
82
|
required
|
|
83
83
|
{...muiRegister('confirmPassword', {
|
|
84
84
|
required: true,
|
|
85
85
|
validate: (value) => value === watchPassword,
|
|
86
86
|
})}
|
|
87
|
-
helperText={
|
|
87
|
+
helperText={
|
|
88
|
+
!!formState.errors.confirmPassword && <Trans id="Passwords should match" />
|
|
89
|
+
}
|
|
88
90
|
disabled={formState.isSubmitting}
|
|
89
91
|
/>
|
|
90
92
|
</FormRow>
|
|
@@ -108,7 +110,7 @@ export function SignUpFormInline({
|
|
|
108
110
|
color='secondary'
|
|
109
111
|
variant='pill'
|
|
110
112
|
>
|
|
111
|
-
Create Account
|
|
113
|
+
<Trans id='Create Account' />
|
|
112
114
|
</Button>
|
|
113
115
|
</Box>
|
|
114
116
|
</FormRow>
|
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": "5.2.0-canary.
|
|
5
|
+
"version": "5.2.0-canary.17",
|
|
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": "5.2.0-canary.
|
|
16
|
-
"@graphcommerce/prettier-config-pwa": "5.2.0-canary.
|
|
17
|
-
"@graphcommerce/typescript-config-pwa": "5.2.0-canary.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "5.2.0-canary.17",
|
|
16
|
+
"@graphcommerce/prettier-config-pwa": "5.2.0-canary.17",
|
|
17
|
+
"@graphcommerce/typescript-config-pwa": "5.2.0-canary.17"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@graphcommerce/ecommerce-ui": "5.2.0-canary.
|
|
21
|
-
"@graphcommerce/framer-utils": "5.2.0-canary.
|
|
22
|
-
"@graphcommerce/graphql": "5.2.0-canary.
|
|
23
|
-
"@graphcommerce/graphql-mesh": "5.2.0-canary.
|
|
24
|
-
"@graphcommerce/image": "5.2.0-canary.
|
|
25
|
-
"@graphcommerce/magento-graphql": "5.2.0-canary.
|
|
26
|
-
"@graphcommerce/magento-store": "5.2.0-canary.
|
|
27
|
-
"@graphcommerce/next-ui": "5.2.0-canary.
|
|
28
|
-
"@graphcommerce/react-hook-form": "5.2.0-canary.
|
|
20
|
+
"@graphcommerce/ecommerce-ui": "5.2.0-canary.17",
|
|
21
|
+
"@graphcommerce/framer-utils": "5.2.0-canary.17",
|
|
22
|
+
"@graphcommerce/graphql": "5.2.0-canary.17",
|
|
23
|
+
"@graphcommerce/graphql-mesh": "5.2.0-canary.17",
|
|
24
|
+
"@graphcommerce/image": "5.2.0-canary.17",
|
|
25
|
+
"@graphcommerce/magento-graphql": "5.2.0-canary.17",
|
|
26
|
+
"@graphcommerce/magento-store": "5.2.0-canary.17",
|
|
27
|
+
"@graphcommerce/next-ui": "5.2.0-canary.17",
|
|
28
|
+
"@graphcommerce/react-hook-form": "5.2.0-canary.17"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@lingui/react": "^3.13.2",
|