Skip to content

Commit

Permalink
Merge pull request #10 from juanjotorres90/develop
Browse files Browse the repository at this point in the history
feat: ✨ add 'emojiFlag' option to use standard emoji icons for the country flags
  • Loading branch information
juanjotorres90 authored Jul 13, 2024
2 parents 857c363 + 9798129 commit 8cc4803
Show file tree
Hide file tree
Showing 14 changed files with 2,649 additions and 2,142 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [18.1.0] - 2024-07-13

### Added

- Add 'emojiFlag' option to use standard emoji icons for the country flags.
- Add 'hidePhoneIcon' option to hide the phone icon.

## [18.0.1] - 2024-06-08

### Added
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Validation with [google-libphonenumber](https://github.com/google/libphonenumber

| ngx-material-intl-tel-input | Angular |
| --------------------------- | --------- |
| 18.0.0 - 18.0.1 | >= 18.0.0 |
| 18.0.0 - 18.1.0 | >= 18.0.0 |
| 0.0.1 - 17.3.0 | >= 17.2.0 |

## Installation
Expand Down Expand Up @@ -63,6 +63,8 @@ imports: [NgxMaterialIntlTelInputComponent];
| numberValidation | `boolean` | `true` | Enables or disables phone number validation. |
| enableSearch | `boolean` | `true` | Enables or disables country search. |
| includeDialCode | `boolean` | `false` | Includes the dial code in the phone number input. |
| emojiFlags | `boolean` | `false` | Use standard emoji icons for the country flags. |
| hidePhoneIcon | `boolean` | `false` | Hides phone icon. |
| preferredCountries | `(CountryISO \| string)[]` | `[]` | Shows the specified countries on top of the list. |
| visibleCountries | `(CountryISO \| string)[]` | `[]` | Shows only the specified countries. |
| excludedCountries | `(CountryISO \| string)[]` | `[]` | Exclude the specified countries from the list. |
Expand Down
4 changes: 2 additions & 2 deletions apps/ngx-material-intl-tel-input/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "32kb",
"maximumError": "64kb"
"maximumWarning": "256kb",
"maximumError": "512kb"
}
],
"outputHashing": "all"
Expand Down
4 changes: 3 additions & 1 deletion libs/ngx-material-intl-tel-input-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Validation with [google-libphonenumber](https://github.com/google/libphonenumber

| ngx-material-intl-tel-input | Angular |
| --------------------------- | --------- |
| 18.0.0 - 18.0.1 | >= 18.0.0 |
| 18.0.0 - 18.1.0 | >= 18.0.0 |
| 0.0.1 - 17.3.0 | >= 17.2.0 |

## Installation
Expand Down Expand Up @@ -63,6 +63,8 @@ imports: [NgxMaterialIntlTelInputComponent];
| numberValidation | `boolean` | `true` | Enables or disables phone number validation. |
| enableSearch | `boolean` | `true` | Enables or disables country search. |
| includeDialCode | `boolean` | `false` | Includes the dial code in the phone number input. |
| emojiFlags | `boolean` | `false` | Use standard emoji icons for the country flags. |
| hidePhoneIcon | `boolean` | `false` | Hides phone icon. |
| preferredCountries | `(CountryISO \| string)[]` | `[]` | Shows the specified countries on top of the list. |
| visibleCountries | `(CountryISO \| string)[]` | `[]` | Shows only the specified countries. |
| excludedCountries | `(CountryISO \| string)[]` | `[]` | Exclude the specified countries from the list. |
Expand Down
2 changes: 1 addition & 1 deletion libs/ngx-material-intl-tel-input-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-material-intl-tel-input",
"version": "18.0.1",
"version": "18.1.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 8cc4803

Please sign in to comment.