@3kles/kles-material-dynamicforms 14.0.7 → 14.0.8

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.
@@ -1021,7 +1021,7 @@ let KlesFormSelectComponent = class KlesFormSelectComponent extends KlesFieldAbs
1021
1021
  this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
1022
1022
  }
1023
1023
  else {
1024
- this.options$ = new BehaviorSubject(null);
1024
+ this.options$ = new BehaviorSubject([]);
1025
1025
  }
1026
1026
  }
1027
1027
  else {
@@ -2231,7 +2231,7 @@ class KlesFormSelectSearchComponent extends KlesFieldAbstract {
2231
2231
  this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
2232
2232
  }
2233
2233
  else {
2234
- this.options$ = new BehaviorSubject(null);
2234
+ this.options$ = new BehaviorSubject([]);
2235
2235
  }
2236
2236
  }
2237
2237
  else {