intl-tel-input 19.2.16 → 19.2.17
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 +15 -15
- package/build/css/intlTelInput.css +1 -1
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/intlTelInput-jquery.js +3 -4
- package/build/js/intlTelInput-jquery.min.js +2 -2
- package/build/js/intlTelInput.js +3 -4
- package/build/js/intlTelInput.min.js +2 -2
- package/composer.json +1 -1
- package/package.json +1 -1
- package/react/build/IntlTelInput.cjs.js +1 -1
- package/react/build/IntlTelInput.cjs.js.map +2 -2
- package/react/build/IntlTelInput.esm.js +1 -1
- package/react/build/IntlTelInput.esm.js.map +2 -2
- package/react/demo/simple-bundle.js +1 -1
- package/react/demo/validation-bundle.js +1 -1
- package/src/css/intlTelInput.scss +1 -1
- package/src/js/intlTelInput.js +1 -2
|
@@ -24895,7 +24895,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
24895
24895
|
B(s);
|
|
24896
24896
|
}
|
|
24897
24897
|
return null;
|
|
24898
|
-
}, L.defaults = M, L.version = "19.2.
|
|
24898
|
+
}, L.defaults = M, L.version = "19.2.17", function(s, n) {
|
|
24899
24899
|
var t = new W(s, n);
|
|
24900
24900
|
return t._init(), s.setAttribute("data-intl-tel-input-id", t.id), window.intlTelInputGlobals.instances[t.id] = t, t;
|
|
24901
24901
|
};
|
|
@@ -24895,7 +24895,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
24895
24895
|
B(s);
|
|
24896
24896
|
}
|
|
24897
24897
|
return null;
|
|
24898
|
-
}, L.defaults = M, L.version = "19.2.
|
|
24898
|
+
}, L.defaults = M, L.version = "19.2.17", function(s, n) {
|
|
24899
24899
|
var t = new W(s, n);
|
|
24900
24900
|
return t._init(), s.setAttribute("data-intl-tel-input-id", t.id), window.intlTelInputGlobals.instances[t.id] = t, t;
|
|
24901
24901
|
};
|
|
@@ -294,7 +294,7 @@ $mobilePopupMargin: 30px !default;
|
|
|
294
294
|
|
|
295
295
|
// if dropdownContainer option is set, increase z-index to prevent display issues
|
|
296
296
|
&--container {
|
|
297
|
-
position:
|
|
297
|
+
position: fixed;
|
|
298
298
|
top: -1000px;
|
|
299
299
|
left: -1000px;
|
|
300
300
|
// higher than default Bootstrap modal z-index of 1050
|
package/src/js/intlTelInput.js
CHANGED
|
@@ -945,8 +945,7 @@ class Iti {
|
|
|
945
945
|
|
|
946
946
|
// if dropdownContainer is enabled, calculate postion
|
|
947
947
|
if (this.options.dropdownContainer) {
|
|
948
|
-
//
|
|
949
|
-
// If we want to position it below, we need to add some extra top value.
|
|
948
|
+
// if we want to position the dropdown below the input, we need to add the input height to the top value
|
|
950
949
|
const extraTop =
|
|
951
950
|
positionDropdownAboveInput
|
|
952
951
|
? 0
|