@3kles/kles-material-dynamicforms 14.0.10 → 14.0.11
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/fields/select.component.mjs +1 -2
- package/esm2020/lib/fields/select.search.component.mjs +1 -2
- package/fesm2015/3kles-kles-material-dynamicforms.mjs +0 -2
- package/fesm2015/3kles-kles-material-dynamicforms.mjs.map +1 -1
- package/fesm2020/3kles-kles-material-dynamicforms.mjs +0 -2
- package/fesm2020/3kles-kles-material-dynamicforms.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1016,7 +1016,6 @@ let KlesFormSelectComponent = class KlesFormSelectComponent extends KlesFieldAbs
|
|
|
1016
1016
|
ngOnInit() {
|
|
1017
1017
|
super.ngOnInit();
|
|
1018
1018
|
if (this.field.lazy) {
|
|
1019
|
-
this.isLoading = true;
|
|
1020
1019
|
if (this.field.value) {
|
|
1021
1020
|
this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
|
|
1022
1021
|
}
|
|
@@ -2243,7 +2242,6 @@ class KlesFormSelectSearchComponent extends KlesFieldAbstract {
|
|
|
2243
2242
|
ngOnInit() {
|
|
2244
2243
|
super.ngOnInit();
|
|
2245
2244
|
if (this.field.lazy) {
|
|
2246
|
-
this.isLoading = true;
|
|
2247
2245
|
if (this.field.value) {
|
|
2248
2246
|
this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
|
|
2249
2247
|
}
|