tuain-ng-forms-lib 15.1.8 → 15.1.10
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 +5 -5
- package/esm2020/lib/components/elements/layout/section.component.mjs +5 -5
- package/esm2020/lib/components/elements/layout/sub-section.component.mjs +5 -5
- package/esm2020/lib/components/elements/tables/table.component.mjs +5 -5
- package/esm2020/lib/components/forms/basic-form.mjs +1 -1
- package/fesm2015/tuain-ng-forms-lib.mjs +16 -16
- package/fesm2015/tuain-ng-forms-lib.mjs.map +1 -1
- package/fesm2020/tuain-ng-forms-lib.mjs +16 -16
- package/fesm2020/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/forms/basic-form.d.ts +23 -23
- package/package.json +1 -1
|
@@ -165,10 +165,10 @@ class FieldComponent extends ElementComponent {
|
|
|
165
165
|
console.log('FieldComponent attributeChange');
|
|
166
166
|
console.log(event);
|
|
167
167
|
const { name: componentAttr, value = null } = event !== null && event !== void 0 ? event : {};
|
|
168
|
-
if (componentAttr) {
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
}
|
|
168
|
+
// if (componentAttr) {
|
|
169
|
+
this.defaultProcessAttributeChange(componentAttr, value);
|
|
170
|
+
this.customProcessAttributeChange(componentAttr, value);
|
|
171
|
+
// }
|
|
172
172
|
});
|
|
173
173
|
if (this.field) {
|
|
174
174
|
this.field.widget = this;
|
|
@@ -275,10 +275,10 @@ class SectionComponent extends PieceComponent {
|
|
|
275
275
|
console.log('SectionComponent attributeChange');
|
|
276
276
|
console.log(event);
|
|
277
277
|
const { name: attrName, value = null } = event !== null && event !== void 0 ? event : {};
|
|
278
|
-
if (attrName) {
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
}
|
|
278
|
+
// if (attrName) {
|
|
279
|
+
this.defaultProcessAttributeChange(attrName, value);
|
|
280
|
+
this.customProcessAttributeChange(attrName, value);
|
|
281
|
+
// }
|
|
282
282
|
});
|
|
283
283
|
this.start();
|
|
284
284
|
}
|
|
@@ -315,10 +315,10 @@ class SubSectionComponent extends PieceComponent {
|
|
|
315
315
|
console.log('SubSectionComponent attributeChange');
|
|
316
316
|
console.log(event);
|
|
317
317
|
const { name: attrName, value = null } = event !== null && event !== void 0 ? event : {};
|
|
318
|
-
if (attrName) {
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
}
|
|
318
|
+
// if (attrName) {
|
|
319
|
+
this.defaultProcessAttributeChange(attrName, value);
|
|
320
|
+
this.customProcessAttributeChange(attrName, value);
|
|
321
|
+
// }
|
|
322
322
|
});
|
|
323
323
|
this.start();
|
|
324
324
|
}
|
|
@@ -471,10 +471,10 @@ class LibTableComponent extends ElementComponent {
|
|
|
471
471
|
console.log('LibTableComponent attributeChange');
|
|
472
472
|
console.log(event);
|
|
473
473
|
const { name: attrName, value = null } = event !== null && event !== void 0 ? event : {};
|
|
474
|
-
if (attrName) {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
}
|
|
474
|
+
// if (attrName) {
|
|
475
|
+
this.defaultProcessAttributeChange(attrName, value);
|
|
476
|
+
this.customProcessAttributeChange(attrName, value);
|
|
477
|
+
// }
|
|
478
478
|
});
|
|
479
479
|
this.start();
|
|
480
480
|
}
|