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.
- package/esm2020/lib/classes/forms/element.mjs +1 -2
- package/esm2020/lib/components/elements/field.component.mjs +1 -3
- package/fesm2015/tuain-ng-forms-lib.mjs +0 -3
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +0 -3
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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; }
|