intl-tel-input 27.0.1 → 27.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/angular/dist/IntlTelInput.js +1 -1
- package/angular/dist/IntlTelInputWithUtils.js +1 -1
- package/dist/js/data.js +1 -1
- package/dist/js/data.min.js +1 -1
- package/dist/js/intlTelInput.js +2 -2
- package/dist/js/intlTelInput.min.js +2 -2
- package/dist/js/intlTelInput.mjs +1 -1
- package/dist/js/intlTelInputWithUtils.js +2 -2
- package/dist/js/intlTelInputWithUtils.min.js +2 -2
- package/dist/js/intlTelInputWithUtils.mjs +1 -1
- package/dist/js/utils.d.ts +6 -0
- package/package.json +2 -2
- package/react/dist/IntlTelInput.js +1 -1
- package/react/dist/IntlTelInputWithUtils.js +1 -1
- package/vue/dist/{IntlTelInput-C4kh0zfZ.js → IntlTelInput-D7BKnLyx.js} +1 -1
- package/vue/dist/IntlTelInput.js +1 -1
- package/vue/dist/IntlTelInputWithUtils.js +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Hand-written type declaration for utils.js, which is compiled by Google
|
|
2
|
+
// Closure Compiler (not TypeScript) so no .d.ts is emitted automatically.
|
|
3
|
+
// Copied to dist/js/utils.d.ts during build (see scripts/build-dts.js).
|
|
4
|
+
import type { ItiUtils } from "intl-tel-input";
|
|
5
|
+
declare const utils: ItiUtils;
|
|
6
|
+
export default utils;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intl-tel-input",
|
|
3
|
-
"version": "27.0.
|
|
3
|
+
"version": "27.0.2",
|
|
4
4
|
"description": "A JavaScript plugin for entering and validating international telephone numbers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"import": "./dist/js/data.mjs"
|
|
139
139
|
},
|
|
140
140
|
"./utils": {
|
|
141
|
-
"types": "./
|
|
141
|
+
"types": "./dist/js/utils.d.ts",
|
|
142
142
|
"import": "./dist/js/utils.js"
|
|
143
143
|
},
|
|
144
144
|
"./react": {
|
|
@@ -2464,7 +2464,7 @@ var p = new Set(f.map((e) => e.iso2)), m = (e) => p.has(e), h = f, g = {
|
|
|
2464
2464
|
},
|
|
2465
2465
|
startedLoadingUtilsScript: !1,
|
|
2466
2466
|
startedLoadingAutoCountry: !1,
|
|
2467
|
-
version: "27.0.
|
|
2467
|
+
version: "27.0.2"
|
|
2468
2468
|
}), $ = Q, we = /* @__PURE__ */ n({
|
|
2469
2469
|
inheritAttrs: !1,
|
|
2470
2470
|
__name: "IntlTelInput",
|
package/vue/dist/IntlTelInput.js
CHANGED