@graphcommerce/magento-payment-adyen 9.0.4-canary.13 → 9.0.4-canary.14
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
|
# @graphcommerce/magento-payment-adyen
|
|
2
2
|
|
|
3
|
+
## 9.0.4-canary.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2495](https://github.com/graphcommerce-org/graphcommerce/pull/2495) [`0fc9805`](https://github.com/graphcommerce-org/graphcommerce/commit/0fc98051b87cd7fc0363609b50211d2d7382a84d) - Remove issuer list from ideal payment method ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
8
|
+
|
|
3
9
|
## 9.0.4-canary.13
|
|
4
10
|
|
|
5
11
|
## 9.0.4-canary.12
|
|
@@ -72,7 +72,7 @@ export function HppOptions(props: PaymentOptionsProps) {
|
|
|
72
72
|
/** To use an external Pay button we register the current form to be handled there as well. */
|
|
73
73
|
useFormCompose({ form, step, submit, key })
|
|
74
74
|
|
|
75
|
-
if (!conf?.issuers?.length) return <form onSubmit={submit} noValidate />
|
|
75
|
+
if (!conf?.issuers?.length || brandCode === 'ideal') return <form onSubmit={submit} noValidate />
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
78
|
* This is the form that the user can fill in. In this case we don't wat the user to fill in
|
|
@@ -95,7 +95,7 @@ export function HppOptions(props: PaymentOptionsProps) {
|
|
|
95
95
|
SelectProps={{ native: true, displayEmpty: true }}
|
|
96
96
|
error={formState.isSubmitted && !!formState.errors.issuer}
|
|
97
97
|
helperText={formState.isSubmitted && formState.errors.issuer?.message}
|
|
98
|
-
label={
|
|
98
|
+
label={conf?.name}
|
|
99
99
|
required
|
|
100
100
|
>
|
|
101
101
|
{/* eslint-disable-next-line jsx-a11y/control-has-associated-label */}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-payment-adyen",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.0.4-canary.
|
|
5
|
+
"version": "9.0.4-canary.14",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^9.0.4-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^9.0.4-canary.
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^9.0.4-canary.
|
|
19
|
-
"@graphcommerce/image": "^9.0.4-canary.
|
|
20
|
-
"@graphcommerce/magento-cart": "^9.0.4-canary.
|
|
21
|
-
"@graphcommerce/magento-cart-payment-method": "^9.0.4-canary.
|
|
22
|
-
"@graphcommerce/magento-product": "^9.0.4-canary.
|
|
23
|
-
"@graphcommerce/magento-store": "^9.0.4-canary.
|
|
24
|
-
"@graphcommerce/next-ui": "^9.0.4-canary.
|
|
25
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.4-canary.14",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.14",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.4-canary.14",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^9.0.4-canary.14",
|
|
19
|
+
"@graphcommerce/image": "^9.0.4-canary.14",
|
|
20
|
+
"@graphcommerce/magento-cart": "^9.0.4-canary.14",
|
|
21
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.4-canary.14",
|
|
22
|
+
"@graphcommerce/magento-product": "^9.0.4-canary.14",
|
|
23
|
+
"@graphcommerce/magento-store": "^9.0.4-canary.14",
|
|
24
|
+
"@graphcommerce/next-ui": "^9.0.4-canary.14",
|
|
25
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.14",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.14",
|
|
27
27
|
"@lingui/core": "^4.2.1",
|
|
28
28
|
"@lingui/macro": "^4.2.1",
|
|
29
29
|
"@lingui/react": "^4.2.1",
|