@graphcommerce/magento-cart-shipping-method 8.1.0-canary.5 → 8.1.0-canary.50

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.
@@ -1,4 +1,4 @@
1
- fragment AvailableShippingMethods on Cart @injectable @inject(into: ["ShippingAddress"]) {
1
+ fragment AvailableShippingMethods on Cart @inject(into: ["ShippingAddress"]) {
2
2
  shipping_addresses {
3
3
  available_shipping_methods {
4
4
  ...AvailableShippingMethod
@@ -1,4 +1,4 @@
1
- fragment ShippingMethodSelected on Cart @injectable {
1
+ fragment ShippingMethodSelected on Cart {
2
2
  id
3
3
  shipping_addresses {
4
4
  selected_shipping_method {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,100 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.1.0-canary.50
4
+
5
+ ## 8.1.0-canary.49
6
+
7
+ ## 8.1.0-canary.48
8
+
9
+ ## 8.1.0-canary.47
10
+
11
+ ## 8.1.0-canary.46
12
+
13
+ ## 8.1.0-canary.45
14
+
15
+ ## 8.1.0-canary.44
16
+
17
+ ## 8.1.0-canary.43
18
+
19
+ ## 8.1.0-canary.42
20
+
21
+ ## 8.1.0-canary.41
22
+
23
+ ## 8.1.0-canary.40
24
+
25
+ ## 8.1.0-canary.39
26
+
27
+ ## 8.1.0-canary.38
28
+
29
+ ## 8.1.0-canary.37
30
+
31
+ ## 8.1.0-canary.36
32
+
33
+ ## 8.1.0-canary.35
34
+
35
+ ## 8.1.0-canary.34
36
+
37
+ ## 8.1.0-canary.33
38
+
39
+ ## 8.1.0-canary.32
40
+
41
+ ## 8.1.0-canary.31
42
+
43
+ ## 8.1.0-canary.30
44
+
45
+ ## 8.1.0-canary.29
46
+
47
+ ## 8.1.0-canary.28
48
+
49
+ ## 8.1.0-canary.27
50
+
51
+ ## 8.1.0-canary.26
52
+
53
+ ## 8.1.0-canary.25
54
+
55
+ ## 8.1.0-canary.24
56
+
57
+ ## 8.1.0-canary.23
58
+
59
+ ## 8.1.0-canary.22
60
+
61
+ ## 8.1.0-canary.21
62
+
63
+ ## 8.1.0-canary.20
64
+
65
+ ## 8.1.0-canary.19
66
+
67
+ ### Patch Changes
68
+
69
+ - [#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
70
+ ([@carlocarels90](https://github.com/carlocarels90))
71
+
72
+ ## 8.1.0-canary.18
73
+
74
+ ## 8.1.0-canary.17
75
+
76
+ ## 8.1.0-canary.16
77
+
78
+ ## 8.1.0-canary.15
79
+
80
+ ## 8.1.0-canary.14
81
+
82
+ ## 8.1.0-canary.13
83
+
84
+ ## 8.1.0-canary.12
85
+
86
+ ## 8.1.0-canary.11
87
+
88
+ ## 8.1.0-canary.10
89
+
90
+ ## 8.1.0-canary.9
91
+
92
+ ## 8.1.0-canary.8
93
+
94
+ ## 8.1.0-canary.7
95
+
96
+ ## 8.1.0-canary.6
97
+
3
98
  ## 8.1.0-canary.5
4
99
 
5
100
  ## 8.0.6-canary.4
@@ -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/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './Api/AvailableShippingMethods.gql'
2
2
  export * from './Api/ShippingMethodSelected.gql'
3
3
  export * from './components/ShippingMethodForm/ShippingMethodForm'
4
+ export * from './components/ShippingMethodForm/ShippingMethodForm.gql'
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",
5
+ "version": "8.1.0-canary.50",
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.5",
16
- "@graphcommerce/framer-scroller": "^8.1.0-canary.5",
17
- "@graphcommerce/graphql": "^8.1.0-canary.5",
18
- "@graphcommerce/image": "^8.1.0-canary.5",
19
- "@graphcommerce/magento-cart": "^8.1.0-canary.5",
20
- "@graphcommerce/magento-cart-shipping-address": "^8.1.0-canary.5",
21
- "@graphcommerce/magento-store": "^8.1.0-canary.5",
22
- "@graphcommerce/next-ui": "^8.1.0-canary.5",
23
- "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.5",
24
- "@graphcommerce/react-hook-form": "^8.1.0-canary.5",
25
- "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.5",
15
+ "@graphcommerce/eslint-config-pwa": "^8.1.0-canary.50",
16
+ "@graphcommerce/framer-scroller": "^8.1.0-canary.50",
17
+ "@graphcommerce/graphql": "^8.1.0-canary.50",
18
+ "@graphcommerce/image": "^8.1.0-canary.50",
19
+ "@graphcommerce/magento-cart": "^8.1.0-canary.50",
20
+ "@graphcommerce/magento-cart-shipping-address": "^8.1.0-canary.50",
21
+ "@graphcommerce/magento-store": "^8.1.0-canary.50",
22
+ "@graphcommerce/next-ui": "^8.1.0-canary.50",
23
+ "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.50",
24
+ "@graphcommerce/react-hook-form": "^8.1.0-canary.50",
25
+ "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.50",
26
26
  "@lingui/core": "^4.2.1",
27
27
  "@lingui/macro": "^4.2.1",
28
28
  "@lingui/react": "^4.2.1",