@graphcommerce/magento-customer 3.5.4 → 3.5.5
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 +13 -0
- package/components/AccountAddresses/index.tsx +1 -1
- package/components/ChangeNameForm/index.tsx +1 -4
- package/components/ChangePasswordForm/ChangePasswordForm.tsx +1 -1
- package/components/NameFields/index.tsx +1 -1
- package/components/SignInForm/SignInForm.tsx +0 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.5.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@3.5.4...@graphcommerce/magento-customer@3.5.5) (2021-11-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* design ([a095309](https://github.com/ho-nl/m2-pwa/commit/a095309bb3d77228985e08e30f626cd26e878f57))
|
|
12
|
+
* login error message should wrap ([6b8e61f](https://github.com/ho-nl/m2-pwa/commit/6b8e61fa6523391e5faa3dfd37b9fcd648d831bb))
|
|
13
|
+
* snackbar styling and consistant grammar ([3f6a4f9](https://github.com/ho-nl/m2-pwa/commit/3f6a4f9a1c8b2d5220268d59d0c8e5a11c9ce6a8))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## [3.5.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@3.5.3...@graphcommerce/magento-customer@3.5.4) (2021-11-12)
|
|
7
20
|
|
|
8
21
|
|
|
@@ -93,7 +93,7 @@ export default function AccountAddresses(props: AccountAddressesProps) {
|
|
|
93
93
|
</Link>
|
|
94
94
|
|
|
95
95
|
<MessageSnackbar sticky open={router.query.confirm_delete !== undefined}>
|
|
96
|
-
<>
|
|
96
|
+
<>Successfully deleted address</>
|
|
97
97
|
</MessageSnackbar>
|
|
98
98
|
</SectionContainer>
|
|
99
99
|
)}
|
|
@@ -55,10 +55,7 @@ export default function ChangeNameForm(props: ChangeNameFormProps) {
|
|
|
55
55
|
<ApolloCustomerErrorAlert error={error} />
|
|
56
56
|
</Form>
|
|
57
57
|
<MessageSnackbar open={formState.isSubmitSuccessful && !error} variant='pill'>
|
|
58
|
-
<>
|
|
59
|
-
<SvgImageSimple src={iconCheckmark} size='small' />
|
|
60
|
-
Changes saved
|
|
61
|
-
</>
|
|
58
|
+
<>Successfully saved changes</>
|
|
62
59
|
</MessageSnackbar>
|
|
63
60
|
</>
|
|
64
61
|
)
|
|
@@ -61,9 +61,6 @@ export default function SignInForm(props: SignInFormProps) {
|
|
|
61
61
|
id='current-password'
|
|
62
62
|
required={required.password}
|
|
63
63
|
{...muiRegister('password', { required: required.password })}
|
|
64
|
-
FormHelperTextProps={{
|
|
65
|
-
className: classes.forgotPass,
|
|
66
|
-
}}
|
|
67
64
|
InputProps={{
|
|
68
65
|
endAdornment: (
|
|
69
66
|
<PageLink href='/account/forgot-password' key='forgot-password' passHref>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-customer",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@graphcommerce/graphql": "^2.105.4",
|
|
25
25
|
"@graphcommerce/image": "^2.105.3",
|
|
26
26
|
"@graphcommerce/magento-graphql": "^2.104.4",
|
|
27
|
-
"@graphcommerce/magento-store": "^3.2.
|
|
28
|
-
"@graphcommerce/next-ui": "^3.
|
|
27
|
+
"@graphcommerce/magento-store": "^3.2.20",
|
|
28
|
+
"@graphcommerce/next-ui": "^3.16.0",
|
|
29
29
|
"@graphcommerce/react-hook-form": "^2.103.1",
|
|
30
30
|
"@graphql-typed-document-node/core": "^3.1.0",
|
|
31
31
|
"@material-ui/core": "^4.12.3",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"react": "^17.0.2",
|
|
37
37
|
"react-dom": "^17.0.2"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "b503ad4f2790a50e7c7aadf21ef61d104c8c8798"
|
|
40
40
|
}
|