monkey-style-guide-v2 0.0.52 → 0.0.54
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.
|
@@ -5690,6 +5690,7 @@ class MonkeyInputPhoneComponent {
|
|
|
5690
5690
|
}
|
|
5691
5691
|
}
|
|
5692
5692
|
formatValue(value, changedCountry = false) {
|
|
5693
|
+
console.log(value);
|
|
5693
5694
|
if (!value) {
|
|
5694
5695
|
this.phoneFormatted = '';
|
|
5695
5696
|
this.phoneValid = false;
|
|
@@ -5748,6 +5749,7 @@ class MonkeyInputPhoneComponent {
|
|
|
5748
5749
|
this.value = value;
|
|
5749
5750
|
}
|
|
5750
5751
|
onInputChange(event) {
|
|
5752
|
+
console.log(event);
|
|
5751
5753
|
const { value } = event.target;
|
|
5752
5754
|
this.formatValue(value);
|
|
5753
5755
|
}
|