ets-fe-ng-sdk 19.0.52 → 19.0.53
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/fesm2022/ets-fe-ng-sdk.mjs +4 -3
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +1 -1
|
@@ -16027,9 +16027,10 @@ class TablePlainComponent extends TableBaseComponent {
|
|
|
16027
16027
|
this.data.set(v);
|
|
16028
16028
|
}
|
|
16029
16029
|
set _filterFields(v) {
|
|
16030
|
-
|
|
16031
|
-
this.
|
|
16032
|
-
|
|
16030
|
+
const _v = v || [];
|
|
16031
|
+
this.uS.addFormSchemaToForm(_v, this.filterForm);
|
|
16032
|
+
this.filterFields.set(_v);
|
|
16033
|
+
for (const scheme of _v)
|
|
16033
16034
|
scheme.optionsInitFunc?.subscribe((r) => (this.cellOptions[scheme.field?.toString()] = r));
|
|
16034
16035
|
this.refreshUI();
|
|
16035
16036
|
}
|