Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/vtex/address-form
Browse files Browse the repository at this point in the history
  • Loading branch information
kaio-donadelli committed Oct 10, 2023
2 parents 7f40b2e + 13a8b01 commit 65a8126
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [3.34.7] - 2023-10-09

### Fixed

- New Zealand geolocation to include neighborhood.

### Fixed

- Ecuador postal code settings to be more granular and show the cities list during check-out.
Expand Down
6 changes: 2 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"name": "address-form",
"vendor": "vtex",
"version": "3.34.6",
"version": "3.34.7",
"title": "address-form React component",
"description": "address-form React component",
"defaultLocale": "en",
"mustUpdateAt": "2019-01-08",
"categories": [],
"registries": [
"smartcheckout"
],
"registries": ["smartcheckout"],
"settingsSchema": {},
"dependencies": {
"vtex.checkout": "0.x",
Expand Down
5 changes: 4 additions & 1 deletion react/country/NZL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ const rules: PostalCodeRules = {
},
},
summary: [
[{ name: 'complement' }, { delimiter: ' ', name: 'street' }],
[{ name: 'complement' },
{ delimiter: ' ', name: 'street' },
{ delimiter: ' ', name: 'neighborhood' },
],
[
{ name: 'city' },
{ delimiter: ', ', name: 'state' },
Expand Down

0 comments on commit 65a8126

Please sign in to comment.