intl-tel-input 26.8.0 → 26.9.0
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/README.md +2 -1
- package/angular/build/IntlTelInput.js +183 -140
- package/angular/build/IntlTelInputWithUtils.js +290 -249
- package/angular/build/types/intl-tel-input/data.d.ts +2 -0
- package/angular/build/types/intl-tel-input.d.ts +19 -3
- package/angular/build/types/modules/core/countrySearch.d.ts +1 -1
- package/angular/build/types/modules/core/numerals.d.ts +2 -2
- package/angular/build/types/modules/core/options.d.ts +1 -0
- package/angular/build/types/modules/core/ui.d.ts +10 -10
- package/angular/build/types/modules/data/nanp-regionless.d.ts +1 -1
- package/angular/build/types/modules/format/formatting.d.ts +2 -2
- package/angular/build/types/modules/types/events.d.ts +4 -1
- package/angular/build/types/modules/types/public-api.d.ts +0 -17
- package/build/js/data.js +5 -1
- package/build/js/data.min.js +2 -2
- package/build/js/intlTelInput.d.ts +42 -37
- package/build/js/intlTelInput.js +153 -141
- package/build/js/intlTelInput.min.js +5 -5
- package/build/js/intlTelInputWithUtils.js +260 -250
- package/build/js/intlTelInputWithUtils.min.js +7 -7
- package/build/js/utils.js +25 -25
- package/package.json +11 -3
- package/react/build/IntlTelInput.cjs +152 -140
- package/react/build/IntlTelInput.d.ts +42 -37
- package/react/build/IntlTelInput.js +152 -140
- package/react/build/IntlTelInputWithUtils.cjs +259 -249
- package/react/build/IntlTelInputWithUtils.js +259 -249
- package/svelte/build/IntlTelInput.mjs +1505 -1486
- package/svelte/build/IntlTelInputWithUtils.mjs +1690 -1673
- package/vue/build/exports/IntlTelInput.mjs +1 -1
- package/vue/build/exports/IntlTelInputWithUtils.mjs +108 -110
- package/vue/build/intl-tel-input/data.d.ts +2 -0
- package/vue/build/{intl-tel-input-BdlwU9A8.mjs → intl-tel-input-COCKbW0v.mjs} +736 -717
- package/vue/build/intl-tel-input.d.ts +19 -3
- package/vue/build/modules/core/countrySearch.d.ts +1 -1
- package/vue/build/modules/core/numerals.d.ts +2 -2
- package/vue/build/modules/core/options.d.ts +1 -0
- package/vue/build/modules/core/ui.d.ts +10 -10
- package/vue/build/modules/data/nanp-regionless.d.ts +1 -1
- package/vue/build/modules/format/formatting.d.ts +2 -2
- package/vue/build/modules/types/events.d.ts +4 -1
- package/vue/build/modules/types/public-api.d.ts +0 -17
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
# International Telephone Input
|
|
1
|
+
# International Telephone Input
|
|
2
|
+
[](https://github.com/jackocnr/intl-tel-input/actions/workflows/ci.yml) <img src="https://img.shields.io/github/package-json/v/jackocnr/intl-tel-input.svg" alt="version"/> <img src="https://img.shields.io/npm/dm/intl-tel-input.svg" alt="downloads"/> [](https://badges.nerdydata.com/719de9d2-d0e7-4988-b02f-9f9d52687076/report)
|
|
2
3
|
|
|
3
4
|
A JavaScript plugin for entering, formatting and validating international telephone numbers. Includes TypeScript definitions, plus React, Vue, Angular and Svelte components.
|
|
4
5
|
|