@graphcommerce/magento-customer 6.2.0-canary.50 → 6.2.0-canary.52

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.2.0-canary.52
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1972](https://github.com/graphcommerce-org/graphcommerce/pull/1972) [`cda89820d`](https://github.com/graphcommerce-org/graphcommerce/commit/cda89820dc50e2019a26239b7450863d8c862bfb) - Ensure correct width for CircularProgress and fix misalignment in rotate animation ([@carlocarels90](https://github.com/carlocarels90))
8
+
9
+ ## 6.2.0-canary.51
10
+
3
11
  ## 6.2.0-canary.50
4
12
 
5
13
  ## 6.2.0-canary.49
@@ -118,7 +118,9 @@ export function AccountSignInUpForm(props: AccountSignInUpFormProps) {
118
118
  pattern: { value: emailPattern, message: '' },
119
119
  })}
120
120
  InputProps={{
121
- endAdornment: formState.isSubmitting && <CircularProgress />,
121
+ endAdornment: formState.isSubmitting && (
122
+ <CircularProgress sx={{ display: 'inline-flex' }} />
123
+ ),
122
124
  readOnly: !!customerQuery.data?.customer?.email,
123
125
  }}
124
126
  />
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": "6.2.0-canary.50",
5
+ "version": "6.2.0-canary.52",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,20 +12,20 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "6.2.0-canary.50",
16
- "@graphcommerce/prettier-config-pwa": "6.2.0-canary.50",
17
- "@graphcommerce/typescript-config-pwa": "6.2.0-canary.50"
15
+ "@graphcommerce/eslint-config-pwa": "6.2.0-canary.52",
16
+ "@graphcommerce/prettier-config-pwa": "6.2.0-canary.52",
17
+ "@graphcommerce/typescript-config-pwa": "6.2.0-canary.52"
18
18
  },
19
19
  "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "6.2.0-canary.50",
21
- "@graphcommerce/framer-utils": "6.2.0-canary.50",
22
- "@graphcommerce/graphql": "6.2.0-canary.50",
23
- "@graphcommerce/graphql-mesh": "6.2.0-canary.50",
24
- "@graphcommerce/image": "6.2.0-canary.50",
25
- "@graphcommerce/magento-graphql": "6.2.0-canary.50",
26
- "@graphcommerce/magento-store": "6.2.0-canary.50",
27
- "@graphcommerce/next-ui": "6.2.0-canary.50",
28
- "@graphcommerce/react-hook-form": "6.2.0-canary.50"
20
+ "@graphcommerce/ecommerce-ui": "6.2.0-canary.52",
21
+ "@graphcommerce/framer-utils": "6.2.0-canary.52",
22
+ "@graphcommerce/graphql": "6.2.0-canary.52",
23
+ "@graphcommerce/graphql-mesh": "6.2.0-canary.52",
24
+ "@graphcommerce/image": "6.2.0-canary.52",
25
+ "@graphcommerce/magento-graphql": "6.2.0-canary.52",
26
+ "@graphcommerce/magento-store": "6.2.0-canary.52",
27
+ "@graphcommerce/next-ui": "6.2.0-canary.52",
28
+ "@graphcommerce/react-hook-form": "6.2.0-canary.52"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@lingui/react": "^4.2.1",