-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): set
package.json
to 1.2.0 [skip ci]
# [1.2.0](v1.1.0...v1.2.0) (2022-03-26) ### Features * rewrite library, update address formats, use newer dev dependencies and utilize GitHub actions ([81f482e](81f482e))
- Loading branch information
1 parent
bae6c5f
commit 870ca52
Showing
10 changed files
with
1,061 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# [1.2.0](https://github.com/DASPRiD/localized-address-format/compare/v1.1.0...v1.2.0) (2022-03-26) | ||
|
||
|
||
### Features | ||
|
||
* rewrite library, update address formats, use newer dev dependencies and utilize GitHub actions ([81f482e](https://github.com/DASPRiD/localized-address-format/commit/81f482e0504049a4de9459f05946ad9add5c57e9)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
declare const addressFormats: Map<string, string>; | ||
export declare const defaultAddressFormat = "%N%n%O%n%A%n%C"; | ||
export default addressFormats; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export declare type Address = { | ||
postalCountry?: string; | ||
administrativeArea?: string; | ||
locality?: string; | ||
dependentLocality?: string; | ||
postalCode?: string; | ||
sortingCode?: string; | ||
organization?: string; | ||
name?: string; | ||
addressLines?: string[]; | ||
}; | ||
declare const formatAddress: (address: Address) => string[]; | ||
export default formatAddress; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.