@graphcommerce/magento-review 2.108.3 → 2.109.0

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,22 @@
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
+ # [2.109.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-review@2.108.6...@graphcommerce/magento-review@2.109.0) (2021-11-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * even more translations ([1a1f988](https://github.com/ho-nl/m2-pwa/commit/1a1f98837c704b978f6b42b619d9c52f540b2d48))
12
+
13
+
14
+ ### Features
15
+
16
+ * added tons of translations ([9bb0ac7](https://github.com/ho-nl/m2-pwa/commit/9bb0ac709b58df6ea6141e92e4923a5ca9ae2963))
17
+
18
+
19
+
20
+
21
+
6
22
  # [2.108.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-review@2.107.21...@graphcommerce/magento-review@2.108.0) (2021-11-09)
7
23
 
8
24
 
@@ -119,7 +119,7 @@ export default function CreateProductReviewForm(props: CreateProductReviewFormPr
119
119
  variant='outlined'
120
120
  type='text'
121
121
  error={!!formState.errors.nickname || !!error}
122
- label={t`Name`}
122
+ label={<Trans>Name</Trans>}
123
123
  required={required.nickname}
124
124
  {...muiRegister('nickname', { required: required.nickname })}
125
125
  helperText={formState.errors.nickname?.message}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-review",
3
- "version": "2.108.3",
3
+ "version": "2.109.0",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -14,21 +14,20 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
17
- "@graphcommerce/eslint-config-pwa": "^3.1.4",
17
+ "@graphcommerce/eslint-config-pwa": "^3.1.5",
18
18
  "@graphcommerce/prettier-config-pwa": "^3.0.4",
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.4",
25
- "@graphcommerce/image": "^2.105.3",
26
- "@graphcommerce/magento-customer": "^3.5.3",
27
- "@graphcommerce/magento-product": "^3.5.19",
28
- "@graphcommerce/magento-store": "^3.2.18",
29
- "@graphcommerce/next-ui": "^3.15.1",
30
- "@graphcommerce/react-hook-form": "^2.103.1",
31
- "@graphql-typed-document-node/core": "^3.1.0",
24
+ "@graphcommerce/graphql": "^2.105.5",
25
+ "@graphcommerce/image": "^2.105.4",
26
+ "@graphcommerce/magento-customer": "^3.6.0",
27
+ "@graphcommerce/magento-product": "^3.6.0",
28
+ "@graphcommerce/magento-store": "^3.3.0",
29
+ "@graphcommerce/next-ui": "^3.17.0",
30
+ "@graphcommerce/react-hook-form": "^2.104.0",
32
31
  "@lingui/macro": "^3.12.1",
33
32
  "@material-ui/core": "^4.12.3",
34
33
  "@material-ui/lab": "^4.0.0-alpha.60",
@@ -38,5 +37,5 @@
38
37
  "react-dom": "^17.0.2",
39
38
  "schema-dts": "^1.0.0"
40
39
  },
41
- "gitHead": "9fb7a52af72eb5c9677f24e11d7b62871151c46e"
40
+ "gitHead": "6a39908a131938d9c3365cc937b92c1f1f8b33c6"
42
41
  }
package/tsconfig.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "exclude": ["**/node_modules", "**/.*/"],
3
+ "include": ["**/*.ts", "**/*.tsx"],
4
+ "extends": "@graphcommerce/typescript-config-pwa/nextjs.json"
5
+ }