monkey-style-guide 2.0.193 → 2.0.194

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.
@@ -8809,7 +8809,9 @@ class MonkeyInputPhoneComponent {
8809
8809
  const { maxLength } = MonkeyUtils.getPhoneHandle(event);
8810
8810
  if (maxLength) {
8811
8811
  this.maxLength = maxLength;
8812
- this.onChangeValue();
8812
+ if (change) {
8813
+ this.onChangeValue();
8814
+ }
8813
8815
  }
8814
8816
  }
8815
8817
  registerOnChange(fn) {