@graphcommerce/magento-cart-payment-method 7.0.1-canary.8 → 7.0.1
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 +24 -0
- package/PaymentMethodButton/PaymentMethodButton.tsx +0 -6
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2046](https://github.com/graphcommerce-org/graphcommerce/pull/2046) [`6c7197755`](https://github.com/graphcommerce-org/graphcommerce/commit/6c7197755ba54d35109fea0c44965a3aae3fd895) - Remove the selected payment method title from the Place order button so that the text always fits ([@carlocarels90](https://github.com/carlocarels90))
|
|
8
|
+
|
|
9
|
+
## 7.0.1-canary.15
|
|
10
|
+
|
|
11
|
+
## 7.0.1-canary.14
|
|
12
|
+
|
|
13
|
+
## 7.0.1-canary.13
|
|
14
|
+
|
|
15
|
+
## 7.0.1-canary.12
|
|
16
|
+
|
|
17
|
+
## 7.0.1-canary.11
|
|
18
|
+
|
|
19
|
+
## 7.0.1-canary.10
|
|
20
|
+
|
|
21
|
+
## 7.0.1-canary.9
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#2046](https://github.com/graphcommerce-org/graphcommerce/pull/2046) [`6c7197755`](https://github.com/graphcommerce-org/graphcommerce/commit/6c7197755ba54d35109fea0c44965a3aae3fd895) - Remove the selected payment method title from the Place order button so that the text always fits ([@carlocarels90](https://github.com/carlocarels90))
|
|
26
|
+
|
|
3
27
|
## 7.0.1-canary.8
|
|
4
28
|
|
|
5
29
|
## 7.0.1-canary.7
|
|
@@ -29,12 +29,6 @@ function PaymentMethodButtonRenderer(
|
|
|
29
29
|
loading={buttonState.isSubmitting || (buttonState.isSubmitSuccessful && !error)}
|
|
30
30
|
>
|
|
31
31
|
{buttonProps.children}
|
|
32
|
-
{selectedMethod?.title && (
|
|
33
|
-
<>
|
|
34
|
-
{' '}
|
|
35
|
-
(<em>{selectedMethod?.title}</em>)
|
|
36
|
-
</>
|
|
37
|
-
)}
|
|
38
32
|
</LinkOrButton>
|
|
39
33
|
) : (
|
|
40
34
|
<PaymentButton
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-payment-method",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "7.0.1
|
|
5
|
+
"version": "7.0.1",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "7.0.1
|
|
16
|
-
"@graphcommerce/prettier-config-pwa": "7.0.1
|
|
17
|
-
"@graphcommerce/typescript-config-pwa": "7.0.1
|
|
18
|
-
"@graphcommerce/magento-cart-shipping-address": "7.0.1
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "7.0.1",
|
|
16
|
+
"@graphcommerce/prettier-config-pwa": "7.0.1",
|
|
17
|
+
"@graphcommerce/typescript-config-pwa": "7.0.1",
|
|
18
|
+
"@graphcommerce/magento-cart-shipping-address": "7.0.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@graphcommerce/framer-scroller": "7.0.1
|
|
22
|
-
"@graphcommerce/graphql": "7.0.1
|
|
23
|
-
"@graphcommerce/image": "7.0.1
|
|
24
|
-
"@graphcommerce/magento-cart": "7.0.1
|
|
25
|
-
"@graphcommerce/magento-store": "7.0.1
|
|
26
|
-
"@graphcommerce/next-ui": "7.0.1
|
|
27
|
-
"@graphcommerce/react-hook-form": "7.0.1
|
|
21
|
+
"@graphcommerce/framer-scroller": "7.0.1",
|
|
22
|
+
"@graphcommerce/graphql": "7.0.1",
|
|
23
|
+
"@graphcommerce/image": "7.0.1",
|
|
24
|
+
"@graphcommerce/magento-cart": "7.0.1",
|
|
25
|
+
"@graphcommerce/magento-store": "7.0.1",
|
|
26
|
+
"@graphcommerce/next-ui": "7.0.1",
|
|
27
|
+
"@graphcommerce/react-hook-form": "7.0.1"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@lingui/react": "^4.2.1",
|