intl-tel-input 19.2.15 → 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 +18 -18
- package/build/css/intlTelInput.css +1 -1
- package/build/css/intlTelInput.min.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 +3 -3
- package/build/js/intlTelInput.js +3 -4
- package/build/js/intlTelInput.min.js +3 -3
- package/composer.json +1 -1
- package/grunt/replace.js +0 -3
- 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/SimpleApp.js +1 -1
- package/react/demo/ValidationApp.js +1 -1
- package/react/demo/simple-bundle.js +641 -652
- package/react/demo/validation-bundle.js +646 -657
- package/src/css/intlTelInput.scss +1 -1
- package/src/js/intlTelInput.js +1 -2
|
@@ -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
|