monkey-style-guide 2.0.99 → 2.0.100
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/bundles/monkey-style-guide.umd.js +3 -1
- package/bundles/monkey-style-guide.umd.js.map +1 -1
- package/esm2015/lib/components/input-phone/input-phone.component.js +4 -2
- package/fesm2015/monkey-style-guide.js +3 -1
- package/fesm2015/monkey-style-guide.js.map +1 -1
- package/monkey-style-guide-2.0.100.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.99.tgz +0 -0
|
@@ -3789,7 +3789,9 @@
|
|
|
3789
3789
|
};
|
|
3790
3790
|
MonkeyInputPhoneComponent.prototype.getValue = function () {
|
|
3791
3791
|
var _d = this, _internationalNumber = _d._internationalNumber, _handledValue = _d._handledValue;
|
|
3792
|
-
|
|
3792
|
+
if (_handledValue)
|
|
3793
|
+
return "+" + _internationalNumber + _handledValue;
|
|
3794
|
+
return '';
|
|
3793
3795
|
};
|
|
3794
3796
|
MonkeyInputPhoneComponent.prototype.ngOnInit = function () {
|
|
3795
3797
|
this._countryCodes = MonkeyUtils.getPhoneRegions();
|