@graphcommerce/magento-cart-shipping-method 9.0.0-canary.106 → 9.0.0-canary.108

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,15 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.108
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
8
+
9
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`49937fd`](https://github.com/graphcommerce-org/graphcommerce/commit/49937fd765338e25899d427ee4d799fa7978faeb) - Allow changing various props for internal components ([@bramvanderholst](https://github.com/bramvanderholst))
10
+
11
+ ## 9.0.0-canary.107
12
+
3
13
  ## 9.0.0-canary.106
4
14
 
5
15
  ## 9.0.0-canary.105
@@ -6,7 +6,7 @@ import { Trans } from '@lingui/react'
6
6
  import { Button, Chip } from '@mui/material'
7
7
  import type { AvailableShippingMethodFragment } from '../../AvailableShippingMethod/AvailableShippingMethod.gql'
8
8
 
9
- type ShippingMethodActionCardProps = ActionCardItemRenderProps<
9
+ export type ShippingMethodActionCardProps = ActionCardItemRenderProps<
10
10
  AvailableShippingMethodFragment | null | undefined
11
11
  >
12
12
 
@@ -57,6 +57,7 @@ export function ShippingMethodForm(props: ShippingMethodFormProps) {
57
57
  ...method,
58
58
  disabled: !method?.available,
59
59
  value: `${method?.carrier_code}-${method?.method_code ?? ''}`,
60
+ method_title: method?.method_title || '',
60
61
  })),
61
62
  [availableMethods],
62
63
  )
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": "9.0.0-canary.106",
5
+ "version": "9.0.0-canary.108",
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.0-canary.106",
16
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.106",
17
- "@graphcommerce/framer-scroller": "^9.0.0-canary.106",
18
- "@graphcommerce/graphql": "^9.0.0-canary.106",
19
- "@graphcommerce/image": "^9.0.0-canary.106",
20
- "@graphcommerce/magento-cart": "^9.0.0-canary.106",
21
- "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.106",
22
- "@graphcommerce/magento-store": "^9.0.0-canary.106",
23
- "@graphcommerce/next-ui": "^9.0.0-canary.106",
24
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.106",
25
- "@graphcommerce/react-hook-form": "^9.0.0-canary.106",
26
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.106",
15
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.108",
16
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.108",
17
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.108",
18
+ "@graphcommerce/graphql": "^9.0.0-canary.108",
19
+ "@graphcommerce/image": "^9.0.0-canary.108",
20
+ "@graphcommerce/magento-cart": "^9.0.0-canary.108",
21
+ "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.108",
22
+ "@graphcommerce/magento-store": "^9.0.0-canary.108",
23
+ "@graphcommerce/next-ui": "^9.0.0-canary.108",
24
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.108",
25
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.108",
26
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.108",
27
27
  "@lingui/core": "^4.2.1",
28
28
  "@lingui/macro": "^4.2.1",
29
29
  "@lingui/react": "^4.2.1",