@graphcommerce/magento-newsletter 8.1.0-canary.5 → 8.1.0-canary.52

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,114 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.1.0-canary.52
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2320](https://github.com/graphcommerce-org/graphcommerce/pull/2320) [`dc5e85c`](https://github.com/graphcommerce-org/graphcommerce/commit/dc5e85c95dad6145fde02a6e54f0fbd1cdfe9e3d) - Replace depricated updateCustomer mutations with updateCustomerV2
8
+ ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
9
+
10
+ ## 8.1.0-canary.51
11
+
12
+ ## 8.1.0-canary.50
13
+
14
+ ## 8.1.0-canary.49
15
+
16
+ ## 8.1.0-canary.48
17
+
18
+ ## 8.1.0-canary.47
19
+
20
+ ## 8.1.0-canary.46
21
+
22
+ ## 8.1.0-canary.45
23
+
24
+ ## 8.1.0-canary.44
25
+
26
+ ## 8.1.0-canary.43
27
+
28
+ ## 8.1.0-canary.42
29
+
30
+ ## 8.1.0-canary.41
31
+
32
+ ## 8.1.0-canary.40
33
+
34
+ ## 8.1.0-canary.39
35
+
36
+ ## 8.1.0-canary.38
37
+
38
+ ### Patch Changes
39
+
40
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving <FromPersist/> below the form components
41
+ ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
42
+
43
+ ## 8.1.0-canary.37
44
+
45
+ ## 8.1.0-canary.36
46
+
47
+ ## 8.1.0-canary.35
48
+
49
+ ### Patch Changes
50
+
51
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`13d0649`](https://github.com/graphcommerce-org/graphcommerce/commit/13d06498d121f93b52c25930e50aa3b0bd12a818) - Created a new EmailElement component to make re-use easier
52
+ ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
53
+
54
+ ## 8.1.0-canary.34
55
+
56
+ ## 8.1.0-canary.33
57
+
58
+ ## 8.1.0-canary.32
59
+
60
+ ## 8.1.0-canary.31
61
+
62
+ ## 8.1.0-canary.30
63
+
64
+ ## 8.1.0-canary.29
65
+
66
+ ## 8.1.0-canary.28
67
+
68
+ ## 8.1.0-canary.27
69
+
70
+ ## 8.1.0-canary.26
71
+
72
+ ## 8.1.0-canary.25
73
+
74
+ ## 8.1.0-canary.24
75
+
76
+ ## 8.1.0-canary.23
77
+
78
+ ## 8.1.0-canary.22
79
+
80
+ ## 8.1.0-canary.21
81
+
82
+ ## 8.1.0-canary.20
83
+
84
+ ## 8.1.0-canary.19
85
+
86
+ ## 8.1.0-canary.18
87
+
88
+ ## 8.1.0-canary.17
89
+
90
+ ## 8.1.0-canary.16
91
+
92
+ ## 8.1.0-canary.15
93
+
94
+ ## 8.1.0-canary.14
95
+
96
+ ## 8.1.0-canary.13
97
+
98
+ ## 8.1.0-canary.12
99
+
100
+ ## 8.1.0-canary.11
101
+
102
+ ## 8.1.0-canary.10
103
+
104
+ ## 8.1.0-canary.9
105
+
106
+ ## 8.1.0-canary.8
107
+
108
+ ## 8.1.0-canary.7
109
+
110
+ ## 8.1.0-canary.6
111
+
3
112
  ## 8.1.0-canary.5
4
113
 
5
114
  ## 8.0.6-canary.4
@@ -49,10 +49,10 @@ export function SubscribeToNewsletter(props: CheckoutNewsletterProps) {
49
49
 
50
50
  return (
51
51
  <Box sx={sx}>
52
- <FormPersist form={form} name='NewsletterSubscribeForm' />
53
52
  <form onSubmit={submit} noValidate>
54
53
  <CheckboxElement color='secondary' control={control} name='subscribe' label={label} />
55
54
  </form>
55
+ <FormPersist form={form} name='NewsletterSubscribeForm' />
56
56
  </Box>
57
57
  )
58
58
  }
@@ -1,5 +1,5 @@
1
1
  mutation SubscribeCustomer {
2
- updateCustomer(input: { is_subscribed: true }) {
2
+ updateCustomerV2(input: { is_subscribed: true }) {
3
3
  customer {
4
4
  is_subscribed
5
5
  }
@@ -1,5 +1,5 @@
1
1
  mutation UpdateNewsletterSubscription($isSubscribed: Boolean!) {
2
- updateCustomer(input: { is_subscribed: $isSubscribed }) {
2
+ updateCustomerV2(input: { is_subscribed: $isSubscribed }) {
3
3
  customer {
4
4
  is_subscribed
5
5
  }
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  ApolloErrorSnackbar,
3
+ EmailElement,
3
4
  TextFieldElement,
4
5
  useFormGqlMutation,
5
6
  } from '@graphcommerce/ecommerce-ui'
@@ -28,15 +29,12 @@ export function GuestNewsletter(props: GuestNewsletterProps) {
28
29
  onSubmit={submit}
29
30
  sx={[(theme) => ({ gap: theme.spacings.xs }), ...(Array.isArray(sx) ? sx : [sx])]}
30
31
  >
31
- <TextFieldElement
32
- required
33
- variant='outlined'
34
- type='email'
35
- label={i18n._(/* i18n */ 'Email address')}
32
+ <EmailElement
36
33
  control={control}
37
34
  name='email'
35
+ required
36
+ variant='outlined'
38
37
  size='medium'
39
- inputProps={{ autoComplete: 'email' }}
40
38
  disabled={submittedWithoutErrors}
41
39
  />
42
40
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-newsletter",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.1.0-canary.5",
5
+ "version": "8.1.0-canary.52",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,15 +12,15 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^8.1.0-canary.5",
16
- "@graphcommerce/eslint-config-pwa": "^8.1.0-canary.5",
17
- "@graphcommerce/graphql": "^8.1.0-canary.5",
18
- "@graphcommerce/magento-cart": "^8.1.0-canary.5",
19
- "@graphcommerce/magento-customer": "^8.1.0-canary.5",
20
- "@graphcommerce/next-ui": "^8.1.0-canary.5",
21
- "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.5",
22
- "@graphcommerce/react-hook-form": "^8.1.0-canary.5",
23
- "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.5",
15
+ "@graphcommerce/ecommerce-ui": "^8.1.0-canary.52",
16
+ "@graphcommerce/eslint-config-pwa": "^8.1.0-canary.52",
17
+ "@graphcommerce/graphql": "^8.1.0-canary.52",
18
+ "@graphcommerce/magento-cart": "^8.1.0-canary.52",
19
+ "@graphcommerce/magento-customer": "^8.1.0-canary.52",
20
+ "@graphcommerce/next-ui": "^8.1.0-canary.52",
21
+ "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.52",
22
+ "@graphcommerce/react-hook-form": "^8.1.0-canary.52",
23
+ "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.52",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",