@graphcommerce/magento-cart-shipping-method 8.1.0-canary.17 → 8.1.0-canary.19
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,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.1.0-canary.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2264](https://github.com/graphcommerce-org/graphcommerce/pull/2264) [`e5291a4`](https://github.com/graphcommerce-org/graphcommerce/commit/e5291a426c57635f69fb9ec44f4abe150f04c9ed) - prevent rendering 'null' when method_title is not provided
|
|
8
|
+
([@carlocarels90](https://github.com/carlocarels90))
|
|
9
|
+
|
|
10
|
+
## 8.1.0-canary.18
|
|
11
|
+
|
|
3
12
|
## 8.1.0-canary.17
|
|
4
13
|
|
|
5
14
|
## 8.1.0-canary.16
|
|
@@ -26,7 +26,7 @@ export function ShippingMethodActionCard(props: ShippingMethodActionCardProps) {
|
|
|
26
26
|
const isFree = amount && amount.value === 0
|
|
27
27
|
|
|
28
28
|
const title =
|
|
29
|
-
carrier_title === 'Free Shipping' ? carrier_title : `${carrier_title} ${method_title}`
|
|
29
|
+
carrier_title === 'Free Shipping' ? carrier_title : `${carrier_title} ${method_title || ''}`
|
|
30
30
|
|
|
31
31
|
return (
|
|
32
32
|
<ActionCard
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-shipping-method",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.1.0-canary.
|
|
5
|
+
"version": "8.1.0-canary.19",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^8.1.0-canary.
|
|
16
|
-
"@graphcommerce/framer-scroller": "^8.1.0-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^8.1.0-canary.
|
|
18
|
-
"@graphcommerce/image": "^8.1.0-canary.
|
|
19
|
-
"@graphcommerce/magento-cart": "^8.1.0-canary.
|
|
20
|
-
"@graphcommerce/magento-cart-shipping-address": "^8.1.0-canary.
|
|
21
|
-
"@graphcommerce/magento-store": "^8.1.0-canary.
|
|
22
|
-
"@graphcommerce/next-ui": "^8.1.0-canary.
|
|
23
|
-
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.
|
|
24
|
-
"@graphcommerce/react-hook-form": "^8.1.0-canary.
|
|
25
|
-
"@graphcommerce/typescript-config-pwa": "^8.1.0-canary.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.1.0-canary.19",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.1.0-canary.19",
|
|
17
|
+
"@graphcommerce/graphql": "^8.1.0-canary.19",
|
|
18
|
+
"@graphcommerce/image": "^8.1.0-canary.19",
|
|
19
|
+
"@graphcommerce/magento-cart": "^8.1.0-canary.19",
|
|
20
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.1.0-canary.19",
|
|
21
|
+
"@graphcommerce/magento-store": "^8.1.0-canary.19",
|
|
22
|
+
"@graphcommerce/next-ui": "^8.1.0-canary.19",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^8.1.0-canary.19",
|
|
24
|
+
"@graphcommerce/react-hook-form": "^8.1.0-canary.19",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.1.0-canary.19",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/macro": "^4.2.1",
|
|
28
28
|
"@lingui/react": "^4.2.1",
|