@wizishop/angular-components 14.0.4 → 14.0.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.
@@ -2013,7 +2013,7 @@ class InputComponent {
2013
2013
  this.icon = '';
2014
2014
  this.big = false;
2015
2015
  this.medium = false;
2016
- this.boldLabel = 'false';
2016
+ this.boldLabel = 'false'; // todo refacto to boolean
2017
2017
  this.min = null;
2018
2018
  this.max = null;
2019
2019
  this.disableMargin = false;
@@ -2038,6 +2038,8 @@ class InputComponent {
2038
2038
  Math.random()
2039
2039
  .toString(36)
2040
2040
  .substr(2, 9);
2041
+ this._onChange = (value) => { };
2042
+ this._onTouched = () => { };
2041
2043
  }
2042
2044
  registerOnChange(fn) {
2043
2045
  this._onChange = fn;