@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.
- package/esm2020/lib/components/inputs/input/input.component.mjs +4 -2
- package/esm2020/lib/components/tab/tab.component.mjs +1 -1
- package/fesm2015/wizishop-angular-components.mjs +3 -1
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +3 -1
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/inputs/input/input.component.d.ts +1 -1
- package/lib/components/tab/tab.component.d.ts +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-14.0.5.tgz +0 -0
- package/wizishop-angular-components-14.0.4.tgz +0 -0
|
@@ -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;
|