Skip to content

Commit ac324c2

Browse files
committed
Release v25.0.2
1 parent 3134e3c commit ac324c2

23 files changed

+31
-31
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
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.0.1 (please try latest version)
4+
e.g. v25.0.2 (please try latest version)
55

66
### Steps to reproduce
77
1.

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ _Note: We have now dropped support for all versions of Internet Explorer because
7575
## Getting Started (Using a CDN)
7676
1. Add the CSS
7777
```html
78-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/build/css/intlTelInput.css">
78+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/build/css/intlTelInput.css">
7979
```
8080

8181
2. Add the plugin script and initialise it on your input element
8282
```html
83-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/build/js/intlTelInput.min.js"></script>
83+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/build/js/intlTelInput.min.js"></script>
8484
<script>
8585
const input = document.querySelector("#phone");
8686
window.intlTelInput(input, {
87-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].1/build/js/utils.js"),
87+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
8888
});
8989
</script>
9090
```
@@ -317,7 +317,7 @@ The `loadUtils` option takes a function which returns a Promise which resolves t
317317
```js
318318
// (A) import utils module from a CDN
319319
intlTelInput(htmlInputElement, {
320-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].1/build/js/utils.js"),
320+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
321321
});
322322

323323
// (B) import utils module from your own hosted version of utils.js
@@ -598,7 +598,7 @@ The `loadUtils` option takes a function which returns a Promise which resolves t
598598
```js
599599
// (A) import utils module from a CDN
600600
intlTelInput(htmlInputElement, {
601-
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].1/build/js/utils.js"),
601+
loadUtils: () => import("https://cdn.jsdelivr.net/npm/[email protected].2/build/js/utils.js"),
602602
});
603603

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

build/js/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* International Telephone Input v25.0.1
2+
* International Telephone Input v25.0.2
33
* https://github.com/jackocnr/intl-tel-input.git
44
* Licensed under the MIT license
55
*/

build/js/data.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/js/intlTelInput.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* International Telephone Input v25.0.1
2+
* International Telephone Input v25.0.2
33
* https://github.com/jackocnr/intl-tel-input.git
44
* Licensed under the MIT license
55
*/
@@ -3173,7 +3173,7 @@ var factoryOutput = (() => {
31733173
attachUtils,
31743174
startedLoadingUtilsScript: false,
31753175
startedLoadingAutoCountry: false,
3176-
version: "25.0.1"
3176+
version: "25.0.2"
31773177
}
31783178
);
31793179
var intl_tel_input_default = intlTelInput;

build/js/intlTelInput.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/js/intlTelInputWithUtils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* International Telephone Input v25.0.1
2+
* International Telephone Input v25.0.2
33
* https://github.com/jackocnr/intl-tel-input.git
44
* Licensed under the MIT license
55
*/
@@ -3172,7 +3172,7 @@ var factoryOutput = (() => {
31723172
attachUtils,
31733173
startedLoadingUtilsScript: false,
31743174
startedLoadingAutoCountry: false,
3175-
version: "25.0.1"
3175+
version: "25.0.2"
31763176
}
31773177
);
31783178
var intl_tel_input_default = intlTelInput;

build/js/intlTelInputWithUtils.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

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

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

react/README.md

+1-1
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].1/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].2/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.

react/build/IntlTelInput.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ var intlTelInput = Object.assign(
31683168
attachUtils,
31693169
startedLoadingUtilsScript: false,
31703170
startedLoadingAutoCountry: false,
3171-
version: "25.0.1"
3171+
version: "25.0.2"
31723172
}
31733173
);
31743174
var intl_tel_input_default = intlTelInput;

react/build/IntlTelInput.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3132,7 +3132,7 @@ var intlTelInput = Object.assign(
31323132
attachUtils,
31333133
startedLoadingUtilsScript: false,
31343134
startedLoadingAutoCountry: false,
3135-
version: "25.0.1"
3135+
version: "25.0.2"
31363136
}
31373137
);
31383138
var intl_tel_input_default = intlTelInput;

react/build/IntlTelInputWithUtils.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@ var intlTelInput = Object.assign(
31683168
attachUtils,
31693169
startedLoadingUtilsScript: false,
31703170
startedLoadingAutoCountry: false,
3171-
version: "25.0.1"
3171+
version: "25.0.2"
31723172
}
31733173
);
31743174
var intl_tel_input_default = intlTelInput;

react/build/IntlTelInputWithUtils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3132,7 +3132,7 @@ var intlTelInput = Object.assign(
31323132
attachUtils,
31333133
startedLoadingUtilsScript: false,
31343134
startedLoadingAutoCountry: false,
3135-
version: "25.0.1"
3135+
version: "25.0.2"
31363136
}
31373137
);
31383138
var intl_tel_input_default = intlTelInput;

react/demo/set-number/set-number-bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26719,7 +26719,7 @@
2671926719
attachUtils,
2672026720
startedLoadingUtilsScript: false,
2672126721
startedLoadingAutoCountry: false,
26722-
version: "25.0.1"
26722+
version: "25.0.2"
2672326723
}
2672426724
);
2672526725
var intl_tel_input_default = intlTelInput;

react/demo/simple/simple-bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26719,7 +26719,7 @@
2671926719
attachUtils,
2672026720
startedLoadingUtilsScript: false,
2672126721
startedLoadingAutoCountry: false,
26722-
version: "25.0.1"
26722+
version: "25.0.2"
2672326723
}
2672426724
);
2672526725
var intl_tel_input_default = intlTelInput;

react/demo/toggle-disabled/toggle-disabled-bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26719,7 +26719,7 @@
2671926719
attachUtils,
2672026720
startedLoadingUtilsScript: false,
2672126721
startedLoadingAutoCountry: false,
26722-
version: "25.0.1"
26722+
version: "25.0.2"
2672326723
}
2672426724
);
2672526725
var intl_tel_input_default = intlTelInput;

react/demo/validation/validation-bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26719,7 +26719,7 @@
2671926719
attachUtils,
2672026720
startedLoadingUtilsScript: false,
2672126721
startedLoadingAutoCountry: false,
26722-
version: "25.0.1"
26722+
version: "25.0.2"
2672326723
}
2672426724
);
2672526725
var intl_tel_input_default = intlTelInput;

vue/README.md

+1-1
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].1/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].2/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.

vue/build/IntlTelInput.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2507,7 +2507,7 @@ const W = (u) => {
25072507
attachUtils: W,
25082508
startedLoadingUtilsScript: !1,
25092509
startedLoadingAutoCountry: !1,
2510-
version: "25.0.1"
2510+
version: "25.0.2"
25112511
}
25122512
), J = {
25132513
__name: "IntlTelInput",

vue/build/IntlTelInputWithUtils.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2507,7 +2507,7 @@ const H2 = (y) => {
25072507
attachUtils: H2,
25082508
startedLoadingUtilsScript: !1,
25092509
startedLoadingAutoCountry: !1,
2510-
version: "25.0.1"
2510+
version: "25.0.2"
25112511
}
25122512
);
25132513
(function() {

0 commit comments

Comments
 (0)