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.
- package/esm2020/lib/components/elements/field.component.mjs +2 -1
- package/esm2020/lib/components/elements/layout/piece.component.mjs +2 -1
- package/fesm2015/tuain-ng-forms-lib.mjs +2 -0
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +2 -0
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/elements/field.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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);
|