@graphcommerce/magento-review 3.3.9 → 3.4.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
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 3.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1648](https://github.com/graphcommerce-org/graphcommerce/pull/1648) [`f18e47d04`](https://github.com/graphcommerce-org/graphcommerce/commit/f18e47d044ca765cfef82bb47831070afa8ff494) Thanks [@LaurensFranken](https://github.com/LaurensFranken)! - Make review textfield labels translatable and add translations
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`ad63ebf4e`](https://github.com/graphcommerce-org/graphcommerce/commit/ad63ebf4e33bfb0e5c9e5e68ab69b14775f3f8a8), [`b6bf2c941`](https://github.com/graphcommerce-org/graphcommerce/commit/b6bf2c94197ddacbf8f1fc0d352cd0d46e096f30)]:
|
|
12
|
+
- @graphcommerce/magento-product@4.6.0
|
|
13
|
+
- @graphcommerce/magento-store@4.3.0
|
|
14
|
+
- @graphcommerce/next-ui@4.27.0
|
|
15
|
+
- @graphcommerce/magento-customer@4.11.4
|
|
16
|
+
|
|
17
|
+
## 3.3.10
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`42e7fac75`](https://github.com/graphcommerce-org/graphcommerce/commit/42e7fac75712f9bda7a6b919ede14b3c75d07771)]:
|
|
22
|
+
- @graphcommerce/next-ui@4.26.0
|
|
23
|
+
- @graphcommerce/magento-customer@4.11.3
|
|
24
|
+
- @graphcommerce/magento-product@4.5.10
|
|
25
|
+
- @graphcommerce/magento-store@4.2.35
|
|
26
|
+
|
|
3
27
|
## 3.3.9
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -172,7 +172,7 @@ export function CreateProductReviewForm(props: CreateProductReviewFormProps) {
|
|
|
172
172
|
variant='outlined'
|
|
173
173
|
type='text'
|
|
174
174
|
error={!!formState.errors.summary || !!error}
|
|
175
|
-
label='Summary'
|
|
175
|
+
label={<Trans id='Summary' />}
|
|
176
176
|
required={required.summary}
|
|
177
177
|
{...muiRegister('summary', { required: required.summary })}
|
|
178
178
|
helperText={formState.errors.summary?.message}
|
|
@@ -185,7 +185,7 @@ export function CreateProductReviewForm(props: CreateProductReviewFormProps) {
|
|
|
185
185
|
variant='outlined'
|
|
186
186
|
type='text'
|
|
187
187
|
error={!!formState.errors.text || !!error}
|
|
188
|
-
label='Review'
|
|
188
|
+
label={<Trans id='Review' />}
|
|
189
189
|
required={required.text}
|
|
190
190
|
{...muiRegister('text', { required: required.text })}
|
|
191
191
|
helperText={formState.errors.text?.message}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-review",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.4.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@graphcommerce/graphql": "3.4.8",
|
|
22
22
|
"@graphcommerce/graphql-mesh": "4.2.0",
|
|
23
23
|
"@graphcommerce/image": "3.1.9",
|
|
24
|
-
"@graphcommerce/magento-customer": "4.11.
|
|
25
|
-
"@graphcommerce/magento-product": "4.
|
|
26
|
-
"@graphcommerce/magento-store": "4.
|
|
27
|
-
"@graphcommerce/next-ui": "4.
|
|
24
|
+
"@graphcommerce/magento-customer": "4.11.4",
|
|
25
|
+
"@graphcommerce/magento-product": "4.6.0",
|
|
26
|
+
"@graphcommerce/magento-store": "4.3.0",
|
|
27
|
+
"@graphcommerce/next-ui": "4.27.0",
|
|
28
28
|
"@graphcommerce/react-hook-form": "3.3.3",
|
|
29
29
|
"schema-dts": "^1.1.0"
|
|
30
30
|
},
|