Skip to content

Commit

Permalink
Fix Belgium country rules
Browse files Browse the repository at this point in the history
  • Loading branch information
sheilagomes committed Nov 17, 2023
1 parent 2cd91a7 commit 0887ad3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Belgium ('BEL') country rules.

## [3.34.11] - 2023-10-18

### Fixed
Expand Down
12 changes: 10 additions & 2 deletions react/country/BEL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ const rules: PostalCodeRules = {
required: true,
size: 'xlarge',
},
{
name: 'number',
maxLength: 750,
label: 'number',
required: false,
size: 'mini',
},
{
name: 'complement',
maxLength: 750,
Expand All @@ -41,13 +48,14 @@ const rules: PostalCodeRules = {
maxLength: 100,
label: 'city',
required: true,
size: 'large',
size: 'xlarge',
},
{
hidden: true,
name: 'state',
maxLength: 100,
label: 'department',
required: true,
required: false,
size: 'large',
},
{
Expand Down

0 comments on commit 0887ad3

Please sign in to comment.