Skip to content

Commit aeb19da

Browse files
authored
1.6.11 (#86)
1 parent d064a7a commit aeb19da

9 files changed

Lines changed: 41 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.6.11] - 2026-05-01
11+
12+
### Changed
13+
- Bumped stable/current package version references across workspace to `1.6.11`.
14+
1015
## [1.6.10] - 2026-01-19
1116

1217
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngxsmk-tel-input",
3-
"version": "1.6.10",
3+
"version": "1.6.11",
44
"description": "Angular phone input component with country flags, international formatting (E.164), validation, dark mode, and Angular Forms support",
55
"homepage": "https://github.com/toozuuu/ngxsmk-tel-input#readme",
66
"repository": {
@@ -18,7 +18,7 @@
1818
"author": {
1919
"email": "sachindilshan040@gmail.com",
2020
"name": "Sachin Dilshan",
21-
"url": "https://github.com/toozuuu"
21+
"url": "https://www.sachindilshan.com/"
2222
},
2323
"keywords": [
2424
"ngxsmk-tel-input",

projects/demo/src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { ProfileComponent } from '../../../examples/profile-management/profile.c
4242
</div>
4343
<div class="flex flex-col">
4444
<span class="text-lg font-semibold text-tf-text-primary dark:text-tf-dark-text-primary">Ngxsmk Tel Input</span>
45-
<span class="text-xs text-tf-text-tertiary dark:text-tf-dark-text-tertiary">v1.6.10</span>
45+
<span class="text-xs text-tf-text-tertiary dark:text-tf-dark-text-tertiary">v1.6.11</span>
4646
</div>
4747
</div>
4848
<button
@@ -165,7 +165,7 @@ import { ProfileComponent } from '../../../examples/profile-management/profile.c
165165
<span class="material-icons text-xl sm:text-2xl text-tf-warning">info</span>
166166
</div>
167167
<div class="min-w-0 flex-1">
168-
<div class="text-xl sm:text-2xl font-bold text-tf-text-primary dark:text-tf-dark-text-primary truncate">v1.6.10</div>
168+
<div class="text-xl sm:text-2xl font-bold text-tf-text-primary dark:text-tf-dark-text-primary truncate">v1.6.11</div>
169169
<div class="text-xs text-tf-text-tertiary dark:text-tf-dark-text-tertiary uppercase tracking-wider truncate">Version</div>
170170
</div>
171171
</div>

projects/demo/src/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
"description": "Angular telephone input component with country dropdown, flags, and robust validation/formatting. Wraps intl-tel-input for the UI and libphonenumber-js for parsing/validation.",
6161
"url": "https://github.com/toozuuu/ngxsmk-tel-input",
6262
"downloadUrl": "https://www.npmjs.com/package/ngxsmk-tel-input",
63-
"softwareVersion": "1.6.10",
63+
"softwareVersion": "1.6.11",
6464
"releaseNotes": "Enhanced validation, mobile responsiveness, accessibility improvements, theme support",
6565
"author": {
6666
"@type": "Person",
6767
"name": "Sachin Dilshan",
6868
"email": "sachindilshan040@gmail.com",
69-
"url": "https://github.com/toozuuu"
69+
"url": "https://www.sachindilshan.com/"
7070
},
7171
"offers": {
7272
"@type": "Offer",

projects/ngxsmk-tel-input/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Sachin Dilshan
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

projects/ngxsmk-tel-input/ng-package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"lib": {
55
"entryFile": "src/public-api.ts"
66
},
7+
"assets": [
8+
"README.md",
9+
"LICENSE"
10+
],
711
"allowedNonPeerDependencies": []
812
}

projects/ngxsmk-tel-input/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngxsmk-tel-input",
3-
"version": "1.6.10",
3+
"version": "1.6.11",
44
"description": "Angular international telephone input (intl-tel-input UI + libphonenumber-js validation). ControlValueAccessor. SSR-safe.",
55
"license": "MIT",
66
"sideEffects": false,
@@ -10,7 +10,7 @@
1010
"author": {
1111
"name": "Sachin Dilshan",
1212
"email": "sachindilshan040@gmail.com",
13-
"url": "https://github.com/toozuuu"
13+
"url": "https://www.sachindilshan.com/"
1414
},
1515
"homepage": "https://github.com/toozuuu/ngxsmk-tel-input#readme",
1616
"repository": {

projects/ngxsmk-tel-input/schematics/ng-add/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function addDependencies(): Rule {
7676
}
7777

7878
// Add required dependencies
79-
packageJsonContent.dependencies['ngxsmk-tel-input'] = '^1.6.10';
79+
packageJsonContent.dependencies['ngxsmk-tel-input'] = '^1.6.11';
8080
packageJsonContent.dependencies['intl-tel-input'] = '^25.3.2';
8181
packageJsonContent.dependencies['libphonenumber-js'] = '^1.12.11';
8282

0 commit comments

Comments
 (0)