carriera-intern-components 1.1.189 → 1.1.190

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.
@@ -1251,7 +1251,7 @@ class MaskDirective {
1251
1251
  onPaste(event) {
1252
1252
  if (!this.appMask())
1253
1253
  return;
1254
- event.preventDefault();
1254
+ //event.preventDefault();
1255
1255
  const pastedData = event.clipboardData?.getData('text') || '';
1256
1256
  this.formatValue(this.realValue + pastedData);
1257
1257
  //this.dispatchRealValueChange();
@@ -1998,7 +1998,7 @@ class InputComponent {
1998
1998
  this.value.set(value);
1999
1999
  const optionValue = this.config().optionValue;
2000
2000
  setTimeout(() => {
2001
- if (value) {
2001
+ if (value || value === 0) {
2002
2002
  this.onTouched();
2003
2003
  }
2004
2004
  else {