Skip to content

Commit 170aaad

Browse files
Merge pull request #49 from juanjotorres90/develop
develop to main
2 parents 5a5f5dc + 31ed2cb commit 170aaad

33 files changed

+8537
-3521
lines changed

.cursor/mcp.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"mcpServers": {
3+
"nx-mcp": {
4+
"url": "http://localhost:9442/sse"
5+
}
6+
}
7+
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: 22
3131
cache: 'npm'
3232

33-
- run: npm ci --legacy-peer-deps
33+
- run: npm ci
3434
- uses: nrwl/nx-set-shas@v4
3535

3636
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ Thumbs.db
4242
.nx/workspace-data
4343
.angular
4444
.qodo
45+
46+
.cursor/rules/nx-rules.mdc
47+
.github/instructions/nx.instructions.md

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"nxConsole.generateAiAgentRules": true
3+
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [20.0.0] - 2025-06-13
9+
10+
### Added
11+
12+
- Add support for Angular 20.
13+
- Add 'enableInputMaxLength' option to enable or disable the 'maxlength' attribute on the number input field, true by default to prevent errors for long numbers ([#47](https://github.com/juanjotorres90/ngx-material-intl-tel-input/issues/47)).
14+
15+
### Fixed
16+
17+
- Fix cursor position when using 'includeDialCode' and 'outputNumberFormat' E164 or RFC3966 options ([#47](https://github.com/juanjotorres90/ngx-material-intl-tel-input/issues/47)).
18+
819
## [19.2.1] - 2025-02-13
920

1021
### Fixed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ Check out the [Demo](https://juanjotorres.net/projects/ngx-material-intl-tel-inp
1818

1919
Validation with [google-libphonenumber](https://github.com/google/libphonenumber)
2020

21-
| ngx-material-intl-tel-input | Angular |
22-
| --------------------------- | --------- |
23-
| 19.0.0 - 19.2.0 | >= 19.0.0 |
24-
| 18.0.0 - 18.2.1 | >= 18.0.0 |
25-
| 0.0.1 - 17.3.0 | >= 17.2.0 |
21+
| ngx-material-intl-tel-input | Angular |
22+
| --------------------------- | ------- |
23+
| 20.0.0 | 20 |
24+
| 19.0.0 - 19.2.1 | 19 |
25+
| 18.0.0 - 18.2.1 | 18 |
26+
| 0.0.1 - 17.3.0 | 17 |
2627

2728
## Installation
2829

apps/ngx-material-intl-tel-input/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"buildTarget": "ngx-material-intl-tel-input:build:development"
5858
}
5959
},
60-
"defaultConfiguration": "development"
60+
"defaultConfiguration": "development",
61+
"continuous": true
6162
},
6263
"extract-i18n": {
6364
"executor": "@angular-devkit/build-angular:extract-i18n",

0 commit comments

Comments
 (0)