Skip to content

Commit 97c22a3

Browse files
committed
Release v25.12.3
1 parent 9e536bf commit 97c22a3

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- IMPORTANT: please read the New Issue Checklist before creating a new issue: https://github.com/jackocnr/intl-tel-input/wiki/New-Issue-Checklist -->
22

33
### Plugin version
4-
e.g. v25.12.2 (please try latest version)
4+
e.g. v25.12.3 (please try latest version)
55

66
### Steps to reproduce
77
1.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,16 @@ _Note: We have now dropped support for all versions of Internet Explorer because
8181
## Getting Started (Using a CDN)
8282
1. Add the CSS
8383
```html
84-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/build/css/intlTelInput.css">
84+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].3/build/css/intlTelInput.css">
8585
```
8686

8787
2. Add the plugin script and initialise it on your input element
8888
```html
89-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/build/js/intlTelInput.min.js"></script>
89+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/build/js/intlTelInput.min.js"></script>
9090
<script>
9191
const input = document.querySelector("#phone");
9292
window.intlTelInput(input, {
93-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
93+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"),
9494
});
9595
</script>
9696
```
@@ -333,7 +333,7 @@ The `loadUtils` option takes a function which returns a Promise which resolves t
333333
```js
334334
// (A) import utils module from a CDN
335335
intlTelInput(htmlInputElement, {
336-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
336+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"),
337337
});
338338

339339
// (B) import utils module from your own hosted version of utils.js
@@ -617,7 +617,7 @@ The `loadUtils` option takes a function that returns a Promise resolving to the
617617
```js
618618
// (A) import utils module from a CDN
619619
intlTelInput(htmlInputElement, {
620-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
620+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"),
621621
});
622622

623623
// (B) import utils module from your own hosted version of utils.js

angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import "intl-tel-input/styles";
2929

3030
See the [validation demo](https://github.com/jackocnr/intl-tel-input/blob/master/angular/demo/validation/validation.component.ts) for a more fleshed-out example of how to handle validation, or check out the [form demo](https://github.com/jackocnr/intl-tel-input/blob/master/angular/demo/form/form.component.ts) for an alternative approach using `ReactiveFormsModule`.
3131

32-
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just `import { IntlTelInputComponent } from "intl-tel-input/angularWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/angular"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"`.
32+
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just `import { IntlTelInputComponent } from "intl-tel-input/angularWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/angular"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"`.
3333

3434
## Props
3535
Here's a list of all of the current props you can pass to the IntlTelInput Angular component.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jackocnr/intl-tel-input",
3-
"version": "25.12.2",
3+
"version": "25.12.3",
44
"description": "A JavaScript plugin for entering and validating international telephone numbers",
55
"keywords": [
66
"international",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intl-tel-input",
3-
"version": "25.12.2",
3+
"version": "25.12.3",
44
"description": "A JavaScript plugin for entering and validating international telephone numbers",
55
"keywords": [
66
"international",

react/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import "intl-tel-input/styles";
2828

2929
See the [Validation demo](https://github.com/jackocnr/intl-tel-input/blob/master/react/demo/validation/ValidationApp.tsx) for a more fleshed-out example of how to handle validation.
3030

31-
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just import IntlTelInput from `"intl-tel-input/reactWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/react"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"`.
31+
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just import IntlTelInput from `"intl-tel-input/reactWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/react"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"`.
3232

3333
## Props
3434
Here's a list of all of the current props you can pass to the IntlTelInput React component.

vue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ See the [Validation demo](https://github.com/jackocnr/intl-tel-input/blob/master
3434
"vue:demo": "vite --config vue/demo/[demo variant]/vite.config.js"
3535
```
3636

37-
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just import IntlTelInput from `"intl-tel-input/vueWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/vue"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"`.
37+
A note on the utils script (~260KB): if you're lazy loading the IntlTelInput chunk (and so less worried about filesize) then you can just import IntlTelInput from `"intl-tel-input/vueWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/vue"` import, then you should couple this with the `loadUtils` initialisation option - you will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `loadUtils` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/[email protected].3/build/js/utils.js"`.
3838

3939
## Props
4040
Here's a list of all of the current props you can pass to the IntlTelInput Vue component.

0 commit comments

Comments
 (0)