igniteui-angular 14.2.5 → 14.2.6
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/grids/filtering/advanced-filtering/advanced-filtering-dialog.component.mjs +3 -2
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +4 -3
- package/fesm2015/igniteui-angular.mjs +5 -3
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +5 -3
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/themes/schemas/dark/_scrollbar.scss +4 -4
- package/package.json +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
|
@@ -38374,9 +38374,10 @@ class IgxSimpleComboComponent extends IgxComboBaseDirective {
|
|
|
38374
38374
|
if (this.isRemote) {
|
|
38375
38375
|
return this.getRemoteSelection(newSelection, oldSelection);
|
|
38376
38376
|
}
|
|
38377
|
-
if (this.displayKey !== null
|
|
38377
|
+
if (this.displayKey !== null
|
|
38378
|
+
&& this.displayKey !== undefined
|
|
38378
38379
|
&& newSelection.length > 0) {
|
|
38379
|
-
return this.convertKeysToItems(newSelection).map(e => e[this.displayKey])[0]?.toString() || '';
|
|
38380
|
+
return this.convertKeysToItems(newSelection).filter(e => e).map(e => e[this.displayKey])[0]?.toString() || '';
|
|
38380
38381
|
}
|
|
38381
38382
|
return newSelection[0]?.toString() || '';
|
|
38382
38383
|
}
|
|
@@ -56108,7 +56109,8 @@ class IgxAdvancedFilteringDialogComponent {
|
|
|
56108
56109
|
*/
|
|
56109
56110
|
applyChanges(event) {
|
|
56110
56111
|
this.grid.crudService.endEdit(false, event);
|
|
56111
|
-
this.
|
|
56112
|
+
this.queryBuilder.exitOperandEdit();
|
|
56113
|
+
this.grid.advancedFilteringExpressionsTree = this.queryBuilder.expressionTree;
|
|
56112
56114
|
}
|
|
56113
56115
|
/**
|
|
56114
56116
|
* @hidden @internal
|