@graphcommerce/magento-customer 3.3.0 → 3.3.4

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
@@ -3,6 +3,17 @@
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.3.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@3.3.0...@graphcommerce/magento-customer@3.3.1) (2021-10-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * External SVG's can't have alt tags ([1b1414a](https://github.com/ho-nl/m2-pwa/commit/1b1414a782d55d3acf7b0e6bcaa50f2ad5f18f39))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.3.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@3.2.2...@graphcommerce/magento-customer@3.3.0) (2021-10-28)
7
18
 
8
19
 
@@ -66,7 +66,7 @@ export default function AccountAddresses(props: AccountAddressesProps) {
66
66
  <>
67
67
  <FullPageMessage
68
68
  title='You have no addresses saved yet'
69
- icon={<SvgImageSimple src={iconHome} size='xxl' alt='home' />}
69
+ icon={<SvgImageSimple src={iconHome} size='xxl' />}
70
70
  button={
71
71
  <Link href='/account/addresses/add' passHref>
72
72
  <Button size='large' variant='contained' color='primary' text='bold'>
@@ -23,7 +23,7 @@ export default function ApolloCustomerErrorFullPage(props: ApolloCustomerErrorFu
23
23
  return (
24
24
  <ApolloErrorFullPage
25
25
  error={error}
26
- icon={<SvgImageSimple src={iconPerson} alt='person' size='xxl' />}
26
+ icon={<SvgImageSimple src={iconPerson} size='xxl' />}
27
27
  button={
28
28
  unauthorized ? (
29
29
  <PageLink href={signInHref} passHref>
@@ -58,7 +58,7 @@ export default function ChangeNameForm(props: ChangeNameFormProps) {
58
58
  </Form>
59
59
  <MessageSnackbar open={formState.isSubmitSuccessful && !error} variant='pill'>
60
60
  <>
61
- <SvgImageSimple src={iconCheckmark} size='small' loading='eager' alt='checkmark' />
61
+ <SvgImageSimple src={iconCheckmark} size='small' />
62
62
  Changes saved
63
63
  </>
64
64
  </MessageSnackbar>
@@ -32,7 +32,7 @@ function CustomerFabContent(props: CustomerFabContentProps) {
32
32
  variant='dot'
33
33
  classes={{ colorError: classes.colorError }}
34
34
  >
35
- {icon ?? <SvgImageSimple src={iconPerson} alt='Account' size='large' />}
35
+ {icon ?? <SvgImageSimple src={iconPerson} size='large' />}
36
36
  </StyledBadge>
37
37
  </Fab>
38
38
  </PageLink>
@@ -47,7 +47,7 @@ function CustomerMenuFabItemContent(props: CustomerMenuFabItemProps) {
47
47
  variant='dot'
48
48
  classes={{ colorError: classes.colorError, badge: classes.badge }}
49
49
  >
50
- {icon ?? <SvgImageSimple src={iconPerson} alt='Account' />}
50
+ {icon ?? <SvgImageSimple src={iconPerson} />}
51
51
  </StyledBadge>
52
52
  }
53
53
  href={requireAuth ? guestHref : authHref}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-customer",
3
- "version": "3.3.0",
3
+ "version": "3.3.4",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -14,27 +14,27 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
17
- "@graphcommerce/eslint-config-pwa": "^3.1.2",
17
+ "@graphcommerce/eslint-config-pwa": "^3.1.3",
18
18
  "@graphcommerce/prettier-config-pwa": "^3.0.3",
19
19
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
20
20
  "@playwright/test": "^1.16.2"
21
21
  },
22
22
  "dependencies": {
23
23
  "@apollo/client": "^3.4.16",
24
- "@graphcommerce/graphql": "^2.105.1",
25
- "@graphcommerce/image": "^2.105.1",
26
- "@graphcommerce/magento-graphql": "^2.104.1",
27
- "@graphcommerce/magento-store": "^3.1.3",
28
- "@graphcommerce/next-ui": "^3.11.0",
29
- "@graphcommerce/react-hook-form": "^2.102.13",
24
+ "@graphcommerce/graphql": "^2.105.2",
25
+ "@graphcommerce/image": "^2.105.2",
26
+ "@graphcommerce/magento-graphql": "^2.104.2",
27
+ "@graphcommerce/magento-store": "^3.1.7",
28
+ "@graphcommerce/next-ui": "^3.11.4",
29
+ "@graphcommerce/react-hook-form": "^2.102.14",
30
30
  "@graphql-typed-document-node/core": "^3.1.0",
31
31
  "@material-ui/core": "^4.12.3",
32
32
  "@material-ui/lab": "^4.0.0-alpha.60",
33
33
  "clsx": "^1.1.1",
34
34
  "framer-motion": "^4.1.17",
35
- "next": "^12.0.1",
35
+ "next": "^12.0.2",
36
36
  "react": "^17.0.2",
37
37
  "react-dom": "^17.0.2"
38
38
  },
39
- "gitHead": "f923ddb5d98378c8737314e7296bba77b1c2dc9b"
39
+ "gitHead": "b6321b8f479a0ef6e4b1b543702158d964bbeac6"
40
40
  }