@bizdoc/core 1.10.0-next.10 → 1.10.0-next.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.
@@ -3872,7 +3872,7 @@ class TypeSelect {
3872
3872
  this._setValue(val, false);
3873
3873
  }
3874
3874
  _setValue(val, emitEvent) {
3875
- this._control.setValue(val ? this.multiple ? val : { key: val } : null, { emitEvent });
3875
+ this._control.setValue(val ? this.multiple ? val.map(key => ({ key })) : { key: val } : null, { emitEvent });
3876
3876
  }
3877
3877
  registerOnChange(fn) {
3878
3878
  this._onChange = fn;
@@ -14117,6 +14117,7 @@ class CubeMatrixComponent {
14117
14117
  if (changes['_xAxis'] || changes['_series']) {
14118
14118
  this.xAxis = this.cube.axes.find(a => a.name === this._xAxis);
14119
14119
  this.series = this.cube.axes.find(a => a.name === this._series);
14120
+ this.data = null;
14120
14121
  this._prepare = forkJoin(this._ds.all(this.series.dataType).pipe(tap(r => this.rows = r)), this._ds.all(this.xAxis.dataType).pipe(tap(c => this.columns = c))).toPromise().then(() => this._sum &&
14121
14122
  this._addsum());
14122
14123
  }