@graphcommerce/address-fields-nl 6.0.0-canary.26 → 6.0.0-canary.28

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,13 @@
1
1
  # @graphcommerce/address-fields-nl
2
2
 
3
+ ## 6.0.0-canary.28
4
+
5
+ ## 6.0.0-canary.27
6
+
7
+ ### Patch Changes
8
+
9
+ - [#1821](https://github.com/graphcommerce-org/graphcommerce/pull/1821) [`1abc50a21`](https://github.com/graphcommerce-org/graphcommerce/commit/1abc50a21103270fad04e4a9ea892ee1e75233e9) - Fix regression bugs and upgrade packages to latest versions ([@paales](https://github.com/paales))
10
+
3
11
  ## 6.0.0-canary.26
4
12
 
5
13
  ## 6.0.0-canary.25
@@ -37,7 +37,7 @@ export function PostcodeNLAddressFields(props: AddressFieldsProps) {
37
37
  const availableRegions = Object.values(
38
38
  countryList.find((c) => c?.two_letter_abbreviation === country)?.available_regions ?? {},
39
39
  )
40
- type Region = typeof availableRegions[0]
40
+ type Region = (typeof availableRegions)[0]
41
41
 
42
42
  const compare: (a: Region, b: Region) => number = (a, b) =>
43
43
  (a?.name ?? '')?.localeCompare(b?.name ?? '')
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/address-fields-nl",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "6.0.0-canary.26",
5
+ "version": "6.0.0-canary.28",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,22 +12,22 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "6.0.0-canary.26",
16
- "@graphcommerce/prettier-config-pwa": "6.0.0-canary.26",
17
- "@graphcommerce/typescript-config-pwa": "6.0.0-canary.26"
15
+ "@graphcommerce/eslint-config-pwa": "6.0.0-canary.28",
16
+ "@graphcommerce/prettier-config-pwa": "6.0.0-canary.28",
17
+ "@graphcommerce/typescript-config-pwa": "6.0.0-canary.28"
18
18
  },
19
19
  "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "6.0.0-canary.26",
21
- "@graphcommerce/graphql": "6.0.0-canary.26",
22
- "@graphcommerce/magento-customer": "6.0.0-canary.26",
23
- "@graphcommerce/magento-store": "6.0.0-canary.26",
24
- "@graphcommerce/next-ui": "6.0.0-canary.26"
20
+ "@graphcommerce/ecommerce-ui": "6.0.0-canary.28",
21
+ "@graphcommerce/graphql": "6.0.0-canary.28",
22
+ "@graphcommerce/magento-customer": "6.0.0-canary.28",
23
+ "@graphcommerce/magento-store": "6.0.0-canary.28",
24
+ "@graphcommerce/next-ui": "6.0.0-canary.28"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@lingui/react": "^3.13.2",
28
28
  "@lingui/core": "^3.13.2",
29
29
  "@mui/material": "^5.10.16",
30
- "next": "^13.1.1",
30
+ "next": "^13.2.0",
31
31
  "react": "^18.2.0",
32
32
  "react-dom": "^18.2.0"
33
33
  }