tuain-ng-forms-lib 14.5.35 → 14.5.37

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.
@@ -136,7 +136,6 @@ class FieldComponent extends ElementComponent {
136
136
  if (componentAttr) {
137
137
  const value = this.field?.[fieldAttr];
138
138
  this.defaultProcessAttributeChange(componentAttr, value);
139
- console.log(`1. customProcessAttributeChange ${componentAttr} ${value}`);
140
139
  this.customProcessAttributeChange(componentAttr, value);
141
140
  }
142
141
  }
@@ -148,7 +147,6 @@ class FieldComponent extends ElementComponent {
148
147
  const fullName = `customAttributes.${customAttribute}`;
149
148
  if (value) {
150
149
  this.defaultProcessAttributeChange(fullName, value);
151
- console.log(`2. customProcessAttributeChange ${fullName} ${value}`);
152
150
  this.customProcessAttributeChange(fullName, value);
153
151
  }
154
152
  }
@@ -677,7 +675,6 @@ class FormElement extends FormPiecePropagate {
677
675
  setAttr(attr, value) {
678
676
  const { name: attrName, propagate: name } = attr;
679
677
  this[attrName] = value;
680
- console.log(`Propagamos ${name} con valor ${value}`);
681
678
  name && this.propagateAttribute(name, value);
682
679
  }
683
680
  isField() { return this.elementType === elementTypes.field; }