tuain-ng-forms-lib 15.2.7 → 15.2.9

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.
@@ -28,6 +28,7 @@ class PieceComponent {
28
28
  }
29
29
  }
30
30
  else {
31
+ console.log(`defaultProcessAttributeChange ${attribute} ${value}`);
31
32
  this[attribute] = value;
32
33
  }
33
34
  return true;
@@ -157,6 +158,7 @@ class FieldComponent extends ElementComponent {
157
158
  // Subscripción a cambios en atributos
158
159
  this.field?.attributeChange.subscribe(event => {
159
160
  const { name: componentAttr, value = null } = event ?? {};
161
+ console.log(`attributeChange ${componentAttr} ${value}`);
160
162
  if (componentAttr) {
161
163
  this.defaultProcessAttributeChange(componentAttr, value);
162
164
  this.customProcessAttributeChange(componentAttr, value);