@graphcommerce/magento-customer 4.2.4 → 4.2.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1412](https://github.com/graphcommerce-org/graphcommerce/pull/1412) [`d8906cf4a`](https://github.com/graphcommerce-org/graphcommerce/commit/d8906cf4afbfc234aedd91a2c581f82623267357) Thanks [@FrankHarland](https://github.com/FrankHarland)! - add missing translation components
8
+
3
9
  ## 4.2.4
4
10
 
5
11
  ### Patch Changes
@@ -56,7 +56,7 @@ export function ResetPasswordForm(props: ResetPasswordFormProps) {
56
56
  variant='outlined'
57
57
  type='password'
58
58
  error={!!formState.errors.newPassword}
59
- label='New password'
59
+ label={<Trans>New password</Trans>}
60
60
  required={required.newPassword}
61
61
  {...muiRegister('newPassword', { required: required.newPassword })}
62
62
  helperText={formState.errors.newPassword?.message}
@@ -68,7 +68,7 @@ export function ResetPasswordForm(props: ResetPasswordFormProps) {
68
68
  variant='outlined'
69
69
  type='password'
70
70
  error={!!formState.errors.confirmPassword}
71
- label='Confirm password'
71
+ label={<Trans>Confirm password</Trans>}
72
72
  required
73
73
  {...muiRegister('confirmPassword', {
74
74
  required: true,
@@ -89,7 +89,7 @@ export function ResetPasswordForm(props: ResetPasswordFormProps) {
89
89
  variant='contained'
90
90
  size='large'
91
91
  >
92
- Save new password
92
+ <Trans>Save new password</Trans>
93
93
  </Button>
94
94
  </FormActions>
95
95
  </Form>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-customer",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.2.4",
5
+ "version": "4.2.5",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {