@graphcommerce/magento-product 3.7.5 → 3.7.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
@@ -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.7.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.7.6...@graphcommerce/magento-product@3.7.7) (2021-12-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Accessibility, SEO ([a258837](https://github.com/ho-nl/m2-pwa/commit/a258837476d94d20d33e13a4c4f950fff57f7dca))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.7.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.7.1...@graphcommerce/magento-product@3.7.2) (2021-12-03)
7
18
 
8
19
 
@@ -44,7 +44,7 @@ export default function ProductAddToCart(
44
44
  const { name, children, variables, price, ...buttonProps } = props
45
45
 
46
46
  const form = useFormGqlMutationCart(ProductAddToCartDocument, {
47
- defaultValues: variables,
47
+ defaultValues: { ...variables },
48
48
  })
49
49
 
50
50
  const { handleSubmit, formState, error, muiRegister, required } = form
@@ -10,7 +10,7 @@ export default function ProductPageMeta(props: ProductPageMetaFragment) {
10
10
  return (
11
11
  <PageMeta
12
12
  title={meta_title ?? name ?? ''}
13
- metaDescription={meta_description ?? ''}
13
+ metaDescription={meta_description ?? name ?? ''}
14
14
  canonical={productLink}
15
15
  />
16
16
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-product",
3
- "version": "3.7.5",
3
+ "version": "3.7.9",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -14,29 +14,29 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
17
- "@graphcommerce/eslint-config-pwa": "^3.1.6",
17
+ "@graphcommerce/eslint-config-pwa": "^3.1.7",
18
18
  "@graphcommerce/prettier-config-pwa": "^3.0.4",
19
19
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
20
- "@playwright/test": "^1.16.2"
20
+ "@playwright/test": "^1.17.1"
21
21
  },
22
22
  "dependencies": {
23
- "@apollo/client": "^3.4.16",
24
- "@graphcommerce/framer-scroller": "^1.1.3",
25
- "@graphcommerce/graphql": "^2.105.6",
26
- "@graphcommerce/image": "^2.105.5",
27
- "@graphcommerce/magento-cart": "^3.8.5",
28
- "@graphcommerce/magento-store": "^3.3.10",
29
- "@graphcommerce/next-ui": "^3.20.3",
30
- "@lingui/macro": "^3.12.1",
23
+ "@apollo/client": "^3.5.6",
24
+ "@graphcommerce/framer-scroller": "^1.1.7",
25
+ "@graphcommerce/graphql": "^2.105.7",
26
+ "@graphcommerce/image": "^2.105.7",
27
+ "@graphcommerce/magento-cart": "^3.8.9",
28
+ "@graphcommerce/magento-store": "^3.3.14",
29
+ "@graphcommerce/next-ui": "^3.20.7",
30
+ "@lingui/macro": "^3.13.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
- "framer-motion": "^4.1.17",
35
- "next": "^12.0.3",
34
+ "framer-motion": "^5.4.5",
35
+ "next": "^12.0.7",
36
36
  "react": "^17.0.2",
37
37
  "react-dom": "^17.0.2",
38
38
  "schema-dts": "^1.0.0",
39
- "type-fest": "^2.5.1"
39
+ "type-fest": "^2.8.0"
40
40
  },
41
- "gitHead": "4f80cd92bed997b6c778be4381b86b239fb0fdb1"
41
+ "gitHead": "f8974380ace982793000e5b181b5bb314a1945fb"
42
42
  }