@graphcommerce/magento-customer 5.2.0-canary.7 → 5.2.0-canary.8

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
  # Change Log
2
2
 
3
+ ## 5.2.0-canary.8
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1779](https://github.com/graphcommerce-org/graphcommerce/pull/1779) [`6c6d7e4d7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c6d7e4d7cf5d68a39acc82b91e1f3acce366517) - Implementation of the Dutch address fields, add an autocomplete field for the street name and city based of the customers postcode + street number + addition. ([@Jessevdpoel](https://github.com/Jessevdpoel))
8
+
3
9
  ## 5.2.0-canary.7
4
10
 
5
11
  ## 5.2.0-canary.6
@@ -11,7 +11,7 @@ import { i18n } from '@lingui/core'
11
11
  import { Trans } from '@lingui/react'
12
12
  import React, { useMemo } from 'react'
13
13
 
14
- type AddressFieldValues = {
14
+ export type AddressFieldValues = {
15
15
  street?: string
16
16
  houseNumber?: string
17
17
  addition?: string
@@ -22,7 +22,7 @@ type AddressFieldValues = {
22
22
  }
23
23
 
24
24
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
25
- type AddressFieldsProps = { form: UseFormReturn<any>; readOnly?: boolean }
25
+ export type AddressFieldsProps = { form: UseFormReturn<any>; readOnly?: boolean }
26
26
 
27
27
  export function AddressFields(props: AddressFieldsProps) {
28
28
  const { form, readOnly } = props
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-customer",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "5.2.0-canary.7",
5
+ "version": "5.2.0-canary.8",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,20 +12,20 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "5.2.0-canary.7",
16
- "@graphcommerce/prettier-config-pwa": "5.2.0-canary.7",
17
- "@graphcommerce/typescript-config-pwa": "5.2.0-canary.7"
15
+ "@graphcommerce/eslint-config-pwa": "5.2.0-canary.8",
16
+ "@graphcommerce/prettier-config-pwa": "5.2.0-canary.8",
17
+ "@graphcommerce/typescript-config-pwa": "5.2.0-canary.8"
18
18
  },
19
19
  "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "5.2.0-canary.7",
21
- "@graphcommerce/framer-utils": "5.2.0-canary.7",
22
- "@graphcommerce/graphql": "5.2.0-canary.7",
23
- "@graphcommerce/graphql-mesh": "5.2.0-canary.7",
24
- "@graphcommerce/image": "5.2.0-canary.7",
25
- "@graphcommerce/magento-graphql": "5.2.0-canary.7",
26
- "@graphcommerce/magento-store": "5.2.0-canary.7",
27
- "@graphcommerce/next-ui": "5.2.0-canary.7",
28
- "@graphcommerce/react-hook-form": "5.2.0-canary.7"
20
+ "@graphcommerce/ecommerce-ui": "5.2.0-canary.8",
21
+ "@graphcommerce/framer-utils": "5.2.0-canary.8",
22
+ "@graphcommerce/graphql": "5.2.0-canary.8",
23
+ "@graphcommerce/graphql-mesh": "5.2.0-canary.8",
24
+ "@graphcommerce/image": "5.2.0-canary.8",
25
+ "@graphcommerce/magento-graphql": "5.2.0-canary.8",
26
+ "@graphcommerce/magento-store": "5.2.0-canary.8",
27
+ "@graphcommerce/next-ui": "5.2.0-canary.8",
28
+ "@graphcommerce/react-hook-form": "5.2.0-canary.8"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@lingui/react": "^3.13.2",