igniteui-angular 13.2.16 → 13.2.17
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/combo/combo.common.mjs +7 -1
- package/esm2020/lib/grids/toolbar/grid-toolbar.base.mjs +2 -5
- package/fesm2015/igniteui-angular.mjs +8 -4
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +7 -4
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.common.d.ts +2 -0
- package/package.json +1 -1
|
@@ -36331,6 +36331,12 @@ class IgxComboBaseDirective extends DisplayDensityBase {
|
|
|
36331
36331
|
});
|
|
36332
36332
|
}
|
|
36333
36333
|
/** @hidden @internal */
|
|
36334
|
+
ngDoCheck() {
|
|
36335
|
+
if (this.data?.length && this.selection.length) {
|
|
36336
|
+
this._value = this.createDisplayText(this.selection, []);
|
|
36337
|
+
}
|
|
36338
|
+
}
|
|
36339
|
+
/** @hidden @internal */
|
|
36334
36340
|
ngOnDestroy() {
|
|
36335
36341
|
this.destroy$.next();
|
|
36336
36342
|
this.destroy$.complete();
|
|
@@ -71579,10 +71585,7 @@ class BaseToolbarDirective {
|
|
|
71579
71585
|
_setupListeners(toggleRef, actions) {
|
|
71580
71586
|
if (actions) {
|
|
71581
71587
|
if (!this.$sub || this.$sub.closed) {
|
|
71582
|
-
this.$sub = actions.columnToggled.subscribe((event) => this.columnToggle.emit(event));
|
|
71583
|
-
}
|
|
71584
|
-
else {
|
|
71585
|
-
this.$sub.unsubscribe();
|
|
71588
|
+
this.$sub = actions.columnToggled.pipe(takeUntil(this.$destroy)).subscribe((event) => this.columnToggle.emit(event));
|
|
71586
71589
|
}
|
|
71587
71590
|
}
|
|
71588
71591
|
/** The if statement prevents emitting open and close events twice */
|