igniteui-angular 16.1.18 → 16.1.19
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/esm2022/lib/combo/combo.common.mjs +2 -2
- package/esm2022/lib/core/selection.mjs +8 -1
- package/esm2022/lib/drop-down/drop-down.component.mjs +3 -3
- package/esm2022/lib/grids/columns/column.component.mjs +2 -2
- package/esm2022/lib/grids/state.directive.mjs +5 -2
- package/esm2022/lib/select/select.component.mjs +1 -9
- package/fesm2022/igniteui-angular.mjs +15 -13
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/selection.d.ts +5 -0
- package/lib/grids/state.directive.d.ts +3 -0
- package/lib/select/select.component.d.ts +0 -4
- package/package.json +1 -1
|
@@ -23376,6 +23376,13 @@ class IgxSelectionAPIService {
|
|
|
23376
23376
|
clear(componentID) {
|
|
23377
23377
|
this.selection.set(componentID, this.get_empty());
|
|
23378
23378
|
}
|
|
23379
|
+
/**
|
|
23380
|
+
* Removes selection for a component.
|
|
23381
|
+
* @param componentID
|
|
23382
|
+
*/
|
|
23383
|
+
delete(componentID) {
|
|
23384
|
+
this.selection.delete(componentID);
|
|
23385
|
+
}
|
|
23379
23386
|
/**
|
|
23380
23387
|
* Get current component selection length.
|
|
23381
23388
|
*
|
|
@@ -24384,8 +24391,8 @@ class IgxDropDownComponent extends IgxDropDownBaseDirective {
|
|
|
24384
24391
|
ngOnDestroy() {
|
|
24385
24392
|
this.destroy$.next(true);
|
|
24386
24393
|
this.destroy$.complete();
|
|
24387
|
-
this.selection.
|
|
24388
|
-
this.selection.
|
|
24394
|
+
this.selection.delete(this.id);
|
|
24395
|
+
this.selection.delete(`${this.id}-active`);
|
|
24389
24396
|
}
|
|
24390
24397
|
/** @hidden @internal */
|
|
24391
24398
|
calculateScrollPosition(item) {
|
|
@@ -37930,7 +37937,7 @@ class IgxComboBaseDirective extends DisplayDensityBase {
|
|
|
37930
37937
|
this.destroy$.next();
|
|
37931
37938
|
this.destroy$.complete();
|
|
37932
37939
|
this.comboAPI.clear();
|
|
37933
|
-
this.selectionService.
|
|
37940
|
+
this.selectionService.delete(this.id);
|
|
37934
37941
|
}
|
|
37935
37942
|
/**
|
|
37936
37943
|
* A method that opens/closes the combo.
|
|
@@ -43489,7 +43496,7 @@ class IgxColumnComponent {
|
|
|
43489
43496
|
this._visibleWhenCollapsed = value;
|
|
43490
43497
|
this.visibleWhenCollapsedChange.emit(this._visibleWhenCollapsed);
|
|
43491
43498
|
if (this.parent) {
|
|
43492
|
-
this.parent
|
|
43499
|
+
this.parent?.setExpandCollapseState?.();
|
|
43493
43500
|
}
|
|
43494
43501
|
}
|
|
43495
43502
|
get visibleWhenCollapsed() {
|
|
@@ -46218,14 +46225,6 @@ class IgxSelectComponent extends IgxDropDownComponent {
|
|
|
46218
46225
|
this.inputGroup.suffixes = this.suffixes;
|
|
46219
46226
|
}
|
|
46220
46227
|
}
|
|
46221
|
-
/**
|
|
46222
|
-
* @hidden @internal
|
|
46223
|
-
*/
|
|
46224
|
-
ngOnDestroy() {
|
|
46225
|
-
this.destroy$.next(true);
|
|
46226
|
-
this.destroy$.complete();
|
|
46227
|
-
this.selection.clear(this.id);
|
|
46228
|
-
}
|
|
46229
46228
|
/**
|
|
46230
46229
|
* @hidden @internal
|
|
46231
46230
|
* Prevent input blur - closing the items container on Header/Footer Template click.
|
|
@@ -76954,7 +76953,10 @@ class IgxGridStateDirective {
|
|
|
76954
76953
|
parent: c.parent ? c.parent.header : null,
|
|
76955
76954
|
columnGroup: c.columnGroup,
|
|
76956
76955
|
disableHiding: c.disableHiding,
|
|
76957
|
-
disablePinning: c.disablePinning
|
|
76956
|
+
disablePinning: c.disablePinning,
|
|
76957
|
+
collapsible: c.columnGroup ? c.collapsible : undefined,
|
|
76958
|
+
expanded: c.columnGroup ? c.expanded : undefined,
|
|
76959
|
+
visibleWhenCollapsed: c.parent?.columnGroup ? c.visibleWhenCollapsed : undefined
|
|
76958
76960
|
}));
|
|
76959
76961
|
return { columns: gridColumns };
|
|
76960
76962
|
},
|