@stubber/form-fields 2.2.4 → 2.2.5
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.
|
@@ -19,11 +19,8 @@ async function setup_intl_tel_input(input_element) {
|
|
|
19
19
|
const data = await res.json();
|
|
20
20
|
return data?.country_code || "us";
|
|
21
21
|
},
|
|
22
|
-
separateDialCode: false
|
|
23
|
-
|
|
24
|
-
const itis = document.querySelectorAll("div.iti");
|
|
25
|
-
itis.forEach((iti2) => {
|
|
26
|
-
iti2.style["width"] = "100%";
|
|
22
|
+
separateDialCode: false,
|
|
23
|
+
containerClass: "w-full"
|
|
27
24
|
});
|
|
28
25
|
input_element.addEventListener("countrychange", () => set_number_details());
|
|
29
26
|
await iti.promise;
|