intl-tel-input 26.0.3 → 26.0.4
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 +5 -5
- package/angular/README.md +1 -1
- package/angular/build/IntlTelInput.js +1 -1
- package/angular/build/IntlTelInputWithUtils.js +1 -1
- package/angular/build/types/intl-tel-input/i18n/et/index.d.ts +3 -0
- package/angular/build/types/intl-tel-input/i18n/index.d.ts +1 -1
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/i18n/et/index.js +18 -0
- package/build/js/i18n/index.js +1 -1
- package/build/js/intlTelInput.d.ts +4 -4
- package/build/js/intlTelInput.js +2 -2
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +2 -2
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/package.json +1 -1
- package/react/README.md +1 -1
- package/react/build/IntlTelInput.cjs +1 -1
- package/react/build/IntlTelInput.d.ts +4 -4
- package/react/build/IntlTelInput.js +1 -1
- package/react/build/IntlTelInputWithUtils.cjs +1 -1
- package/react/build/IntlTelInputWithUtils.js +1 -1
- package/svelte/README.md +1 -1
- package/svelte/build/IntlTelInput.mjs +1 -1
- package/svelte/build/IntlTelInputWithUtils.mjs +1 -1
- package/vue/README.md +1 -1
- package/vue/build/exports/IntlTelInput.mjs +1 -1
- package/vue/build/exports/IntlTelInputWithUtils.mjs +1 -1
- package/vue/build/intl-tel-input/i18n/index.d.ts +1 -1
- package/vue/build/{intl-tel-input-A8ZXud5P.mjs → intl-tel-input-UemlYcBr.mjs} +1 -1
- /package/vue/build/intl-tel-input/i18n/{ee → et}/index.d.ts +0 -0
package/package.json
CHANGED
package/react/README.md
CHANGED
|
@@ -32,7 +32,7 @@ import "intl-tel-input/styles";
|
|
|
32
32
|
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.
|
|
33
33
|
|
|
34
34
|
## Utils Script
|
|
35
|
-
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 just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@26.0.
|
|
35
|
+
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 just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@26.0.4/build/js/utils.js"`.
|
|
36
36
|
|
|
37
37
|
## Props
|
|
38
38
|
Here's a list of all of the current props you can pass to the IntlTelInput React component.
|
|
@@ -530,17 +530,17 @@ declare module "intl-tel-input/i18n/de" {
|
|
|
530
530
|
const interfaceTranslations: I18n;
|
|
531
531
|
export default interfaceTranslations;
|
|
532
532
|
}
|
|
533
|
-
declare module "intl-tel-input/i18n/
|
|
533
|
+
declare module "intl-tel-input/i18n/el" {
|
|
534
534
|
import type { I18n } from "intl-tel-input/i18n/types";
|
|
535
535
|
const interfaceTranslations: I18n;
|
|
536
536
|
export default interfaceTranslations;
|
|
537
537
|
}
|
|
538
|
-
declare module "intl-tel-input/i18n/
|
|
538
|
+
declare module "intl-tel-input/i18n/es" {
|
|
539
539
|
import type { I18n } from "intl-tel-input/i18n/types";
|
|
540
540
|
const interfaceTranslations: I18n;
|
|
541
541
|
export default interfaceTranslations;
|
|
542
542
|
}
|
|
543
|
-
declare module "intl-tel-input/i18n/
|
|
543
|
+
declare module "intl-tel-input/i18n/et" {
|
|
544
544
|
import type { I18n } from "intl-tel-input/i18n/types";
|
|
545
545
|
const interfaceTranslations: I18n;
|
|
546
546
|
export default interfaceTranslations;
|
|
@@ -714,10 +714,10 @@ declare module "intl-tel-input/i18n" {
|
|
|
714
714
|
export { default as cs } from "intl-tel-input/i18n/cs";
|
|
715
715
|
export { default as da } from "intl-tel-input/i18n/da";
|
|
716
716
|
export { default as de } from "intl-tel-input/i18n/de";
|
|
717
|
-
export { default as ee } from "intl-tel-input/i18n/ee";
|
|
718
717
|
export { default as el } from "intl-tel-input/i18n/el";
|
|
719
718
|
export { default as en } from "intl-tel-input/i18n/en";
|
|
720
719
|
export { default as es } from "intl-tel-input/i18n/es";
|
|
720
|
+
export { default as et } from "intl-tel-input/i18n/et";
|
|
721
721
|
export { default as fa } from "intl-tel-input/i18n/fa";
|
|
722
722
|
export { default as fi } from "intl-tel-input/i18n/fi";
|
|
723
723
|
export { default as fr } from "intl-tel-input/i18n/fr";
|
package/svelte/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Try it for yourself by downloading and building the project yourself in 3 simple
|
|
|
28
28
|
|
|
29
29
|
See the [Validation demo](https://github.com/jackocnr/intl-tel-input/blob/master/svelte/demo/validation/App.svelte) for a more fleshed-out example of how to handle validation.
|
|
30
30
|
|
|
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/svelteWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/svelte"` 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/intl-tel-input@26.0.
|
|
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/svelteWithUtils"`, to include the utils script. Alternatively, if you use the main `"intl-tel-input/svelte"` 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/intl-tel-input@26.0.4/build/js/utils.js"`.
|
|
32
32
|
|
|
33
33
|
## Props
|
|
34
34
|
Here's a list of all of the current props you can pass to the IntlTelInput Svelte component.
|
package/vue/README.md
CHANGED
|
@@ -32,7 +32,7 @@ Alternatively, download and build the project yourself in 3 simple steps. You ju
|
|
|
32
32
|
|
|
33
33
|
See the [Validation demo](https://github.com/jackocnr/intl-tel-input/blob/master/vue/demo/validation/App.vue) for a more fleshed-out example of how to handle validation. See the instructions above for how to run this demo (and others) yourself.
|
|
34
34
|
|
|
35
|
-
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/intl-tel-input@26.0.
|
|
35
|
+
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/intl-tel-input@26.0.4/build/js/utils.js"`.
|
|
36
36
|
|
|
37
37
|
## Props
|
|
38
38
|
Here's a list of all of the current props you can pass to the IntlTelInput Vue component.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as g, mergeModels as m, useModel as b, ref as r, onMounted as h, watch as C, onUnmounted as P, withDirectives as N, createElementBlock as M, openBlock as B, mergeProps as D, vModelText as E } from "vue";
|
|
2
|
-
import { i as I } from "../intl-tel-input-
|
|
2
|
+
import { i as I } from "../intl-tel-input-UemlYcBr.mjs";
|
|
3
3
|
const x = /* @__PURE__ */ g({
|
|
4
4
|
inheritAttrs: !1,
|
|
5
5
|
__name: "IntlTelInput",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as T2, mergeModels as k1, useModel as v2, ref as a1, onMounted as M2, watch as I2, onUnmounted as N2, withDirectives as A2, createElementBlock as R2, openBlock as G2, mergeProps as _2, vModelText as L2 } from "vue";
|
|
2
|
-
import { i as z1 } from "../intl-tel-input-
|
|
2
|
+
import { i as z1 } from "../intl-tel-input-UemlYcBr.mjs";
|
|
3
3
|
(function() {
|
|
4
4
|
var P = this || self;
|
|
5
5
|
function p(d, $) {
|
|
@@ -6,10 +6,10 @@ export { default as ca } from './ca';
|
|
|
6
6
|
export { default as cs } from './cs';
|
|
7
7
|
export { default as da } from './da';
|
|
8
8
|
export { default as de } from './de';
|
|
9
|
-
export { default as ee } from './ee';
|
|
10
9
|
export { default as el } from './el';
|
|
11
10
|
export { default as en } from './en';
|
|
12
11
|
export { default as es } from './es';
|
|
12
|
+
export { default as et } from './et';
|
|
13
13
|
export { default as fa } from './fa';
|
|
14
14
|
export { default as fi } from './fi';
|
|
15
15
|
export { default as fr } from './fr';
|
|
File without changes
|