monkey-style-guide-v2 0.0.79 → 0.0.80

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.
@@ -5708,12 +5708,10 @@ class MonkeyInputPhoneComponent {
5708
5708
  this.stateChanges.next();
5709
5709
  }
5710
5710
  set value(value) {
5711
- if (this._value !== value && value !== undefined) {
5712
- this._value = value;
5713
- this.formatValue(value);
5714
- this._onChange(value);
5715
- this._onTouched(value);
5716
- }
5711
+ this._value = value;
5712
+ this.formatValue(value);
5713
+ this._onChange(value);
5714
+ this._onTouched(value);
5717
5715
  }
5718
5716
  get value() {
5719
5717
  return this._value;