@graphcommerce/mollie-magento-payment 8.1.0-canary.8 → 9.0.0-canary.54
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,102 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.0.0-canary.54
|
|
4
|
+
|
|
5
|
+
## 8.1.0-canary.53
|
|
6
|
+
|
|
7
|
+
## 8.1.0-canary.52
|
|
8
|
+
|
|
9
|
+
## 8.1.0-canary.51
|
|
10
|
+
|
|
11
|
+
## 8.1.0-canary.50
|
|
12
|
+
|
|
13
|
+
## 8.1.0-canary.49
|
|
14
|
+
|
|
15
|
+
## 8.1.0-canary.48
|
|
16
|
+
|
|
17
|
+
## 8.1.0-canary.47
|
|
18
|
+
|
|
19
|
+
## 8.1.0-canary.46
|
|
20
|
+
|
|
21
|
+
## 8.1.0-canary.45
|
|
22
|
+
|
|
23
|
+
## 8.1.0-canary.44
|
|
24
|
+
|
|
25
|
+
## 8.1.0-canary.43
|
|
26
|
+
|
|
27
|
+
## 8.1.0-canary.42
|
|
28
|
+
|
|
29
|
+
## 8.1.0-canary.41
|
|
30
|
+
|
|
31
|
+
## 8.1.0-canary.40
|
|
32
|
+
|
|
33
|
+
## 8.1.0-canary.39
|
|
34
|
+
|
|
35
|
+
## 8.1.0-canary.38
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- [#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
|
|
40
|
+
([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
41
|
+
|
|
42
|
+
## 8.1.0-canary.37
|
|
43
|
+
|
|
44
|
+
## 8.1.0-canary.36
|
|
45
|
+
|
|
46
|
+
## 8.1.0-canary.35
|
|
47
|
+
|
|
48
|
+
## 8.1.0-canary.34
|
|
49
|
+
|
|
50
|
+
## 8.1.0-canary.33
|
|
51
|
+
|
|
52
|
+
## 8.1.0-canary.32
|
|
53
|
+
|
|
54
|
+
## 8.1.0-canary.31
|
|
55
|
+
|
|
56
|
+
## 8.1.0-canary.30
|
|
57
|
+
|
|
58
|
+
## 8.1.0-canary.29
|
|
59
|
+
|
|
60
|
+
## 8.1.0-canary.28
|
|
61
|
+
|
|
62
|
+
## 8.1.0-canary.27
|
|
63
|
+
|
|
64
|
+
## 8.1.0-canary.26
|
|
65
|
+
|
|
66
|
+
## 8.1.0-canary.25
|
|
67
|
+
|
|
68
|
+
## 8.1.0-canary.24
|
|
69
|
+
|
|
70
|
+
## 8.1.0-canary.23
|
|
71
|
+
|
|
72
|
+
## 8.1.0-canary.22
|
|
73
|
+
|
|
74
|
+
## 8.1.0-canary.21
|
|
75
|
+
|
|
76
|
+
## 8.1.0-canary.20
|
|
77
|
+
|
|
78
|
+
## 8.1.0-canary.19
|
|
79
|
+
|
|
80
|
+
## 8.1.0-canary.18
|
|
81
|
+
|
|
82
|
+
## 8.1.0-canary.17
|
|
83
|
+
|
|
84
|
+
## 8.1.0-canary.16
|
|
85
|
+
|
|
86
|
+
## 8.1.0-canary.15
|
|
87
|
+
|
|
88
|
+
## 8.1.0-canary.14
|
|
89
|
+
|
|
90
|
+
## 8.1.0-canary.13
|
|
91
|
+
|
|
92
|
+
## 8.1.0-canary.12
|
|
93
|
+
|
|
94
|
+
## 8.1.0-canary.11
|
|
95
|
+
|
|
96
|
+
## 8.1.0-canary.10
|
|
97
|
+
|
|
98
|
+
## 8.1.0-canary.9
|
|
99
|
+
|
|
3
100
|
## 8.1.0-canary.8
|
|
4
101
|
|
|
5
102
|
## 8.1.0-canary.7
|
|
@@ -26,13 +26,6 @@ export function MollieIssuerOptions(props: MollieIssuerOptionsProps) {
|
|
|
26
26
|
return (
|
|
27
27
|
<>
|
|
28
28
|
<form onSubmit={submit} noValidate>
|
|
29
|
-
<FormPersist
|
|
30
|
-
// Since the issuer isn't retrievable from Magento we persist this value.
|
|
31
|
-
form={form}
|
|
32
|
-
name={`PaymentMethodOptions_${code}`}
|
|
33
|
-
persist={['issuer']}
|
|
34
|
-
storage='localStorage'
|
|
35
|
-
/>
|
|
36
29
|
<FormRow>
|
|
37
30
|
<SelectElement
|
|
38
31
|
control={control}
|
|
@@ -53,6 +46,13 @@ export function MollieIssuerOptions(props: MollieIssuerOptionsProps) {
|
|
|
53
46
|
</FormRow>
|
|
54
47
|
</form>
|
|
55
48
|
{children}
|
|
49
|
+
<FormPersist
|
|
50
|
+
// Since the issuer isn't retrievable from Magento we persist this value.
|
|
51
|
+
form={form}
|
|
52
|
+
name={`PaymentMethodOptions_${code}`}
|
|
53
|
+
persist={['issuer']}
|
|
54
|
+
storage='localStorage'
|
|
55
|
+
/>
|
|
56
56
|
</>
|
|
57
57
|
)
|
|
58
58
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/mollie-magento-payment",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "9.0.0-canary.54",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,21 +12,21 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^
|
|
17
|
-
"@graphcommerce/graphql": "^
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^
|
|
19
|
-
"@graphcommerce/image": "^
|
|
20
|
-
"@graphcommerce/magento-cart": "^
|
|
21
|
-
"@graphcommerce/magento-cart-payment-method": "^
|
|
22
|
-
"@graphcommerce/magento-cart-shipping-address": "^
|
|
23
|
-
"@graphcommerce/magento-product": "^
|
|
24
|
-
"@graphcommerce/magento-product-configurable": "^
|
|
25
|
-
"@graphcommerce/magento-store": "^
|
|
26
|
-
"@graphcommerce/next-ui": "^
|
|
27
|
-
"@graphcommerce/prettier-config-pwa": "^
|
|
28
|
-
"@graphcommerce/react-hook-form": "^
|
|
29
|
-
"@graphcommerce/typescript-config-pwa": "^
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.54",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.54",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.54",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^9.0.0-canary.54",
|
|
19
|
+
"@graphcommerce/image": "^9.0.0-canary.54",
|
|
20
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.54",
|
|
21
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.54",
|
|
22
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.54",
|
|
23
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.54",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.54",
|
|
25
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.54",
|
|
26
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.54",
|
|
27
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.54",
|
|
28
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.54",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.54",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|