tuain-ng-forms-lib 14.5.35 → 14.5.36
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/field.mjs +5 -2
- package/esm2020/lib/components/elements/field.component.mjs +2 -1
- package/fesm2015/tuain-ng-forms-lib.mjs +5 -1
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +5 -1
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -157,6 +157,7 @@ class FieldComponent extends ElementComponent {
|
|
|
157
157
|
this.field?.attributeChange.subscribe(event => {
|
|
158
158
|
const { name: componentAttr, value } = event;
|
|
159
159
|
this.defaultProcessAttributeChange(componentAttr, value);
|
|
160
|
+
console.log(`3. customProcessAttributeChange ${componentAttr} ${value}`);
|
|
160
161
|
this.customProcessAttributeChange(componentAttr, value);
|
|
161
162
|
});
|
|
162
163
|
this.start();
|
|
@@ -871,7 +872,10 @@ class FieldDescriptor extends FormElement {
|
|
|
871
872
|
set alignment(alignment) { this.setAttr(attrs$1._fieldAlignment, alignment); }
|
|
872
873
|
get backend() { return this._validateOnServer; }
|
|
873
874
|
get captureType() { return this._captureType; }
|
|
874
|
-
set captureType(captureType) {
|
|
875
|
+
set captureType(captureType) {
|
|
876
|
+
console.log(`field: Asignamos captureType de ${this.fieldCode} con ${captureType}`);
|
|
877
|
+
this.setAttr(attrs$1._captureType, captureType);
|
|
878
|
+
}
|
|
875
879
|
get code() { return this.fieldCode; }
|
|
876
880
|
get defaultValue() { return this._defaultValue; }
|
|
877
881
|
set defaultValue(defaultValue) { this.setAttr(attrs$1._defaultValue, defaultValue); }
|