igniteui-angular 17.0.14 → 17.0.15
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
|
@@ -21815,6 +21815,13 @@ class IgxSelectionAPIService {
|
|
|
21815
21815
|
clear(componentID) {
|
|
21816
21816
|
this.selection.set(componentID, this.get_empty());
|
|
21817
21817
|
}
|
|
21818
|
+
/**
|
|
21819
|
+
* Removes selection for a component.
|
|
21820
|
+
* @param componentID
|
|
21821
|
+
*/
|
|
21822
|
+
delete(componentID) {
|
|
21823
|
+
this.selection.delete(componentID);
|
|
21824
|
+
}
|
|
21818
21825
|
/**
|
|
21819
21826
|
* Get current component selection length.
|
|
21820
21827
|
*
|
|
@@ -22828,8 +22835,8 @@ class IgxDropDownComponent extends IgxDropDownBaseDirective {
|
|
|
22828
22835
|
ngOnDestroy() {
|
|
22829
22836
|
this.destroy$.next(true);
|
|
22830
22837
|
this.destroy$.complete();
|
|
22831
|
-
this.selection.
|
|
22832
|
-
this.selection.
|
|
22838
|
+
this.selection.delete(this.id);
|
|
22839
|
+
this.selection.delete(`${this.id}-active`);
|
|
22833
22840
|
}
|
|
22834
22841
|
/** @hidden @internal */
|
|
22835
22842
|
calculateScrollPosition(item) {
|
|
@@ -35917,7 +35924,7 @@ class IgxComboBaseDirective extends DisplayDensityBase {
|
|
|
35917
35924
|
this.destroy$.next();
|
|
35918
35925
|
this.destroy$.complete();
|
|
35919
35926
|
this.comboAPI.clear();
|
|
35920
|
-
this.selectionService.
|
|
35927
|
+
this.selectionService.delete(this.id);
|
|
35921
35928
|
}
|
|
35922
35929
|
/**
|
|
35923
35930
|
* A method that opens/closes the combo.
|
|
@@ -41519,7 +41526,7 @@ class IgxColumnComponent {
|
|
|
41519
41526
|
this._visibleWhenCollapsed = value;
|
|
41520
41527
|
this.visibleWhenCollapsedChange.emit(this._visibleWhenCollapsed);
|
|
41521
41528
|
if (this.parent) {
|
|
41522
|
-
this.parent
|
|
41529
|
+
this.parent?.setExpandCollapseState?.();
|
|
41523
41530
|
}
|
|
41524
41531
|
}
|
|
41525
41532
|
get visibleWhenCollapsed() {
|
|
@@ -44323,14 +44330,6 @@ class IgxSelectComponent extends IgxDropDownComponent {
|
|
|
44323
44330
|
this.inputGroup.suffixes = this.suffixes;
|
|
44324
44331
|
}
|
|
44325
44332
|
}
|
|
44326
|
-
/**
|
|
44327
|
-
* @hidden @internal
|
|
44328
|
-
*/
|
|
44329
|
-
ngOnDestroy() {
|
|
44330
|
-
this.destroy$.next(true);
|
|
44331
|
-
this.destroy$.complete();
|
|
44332
|
-
this.selection.clear(this.id);
|
|
44333
|
-
}
|
|
44334
44333
|
/**
|
|
44335
44334
|
* @hidden @internal
|
|
44336
44335
|
* Prevent input blur - closing the items container on Header/Footer Template click.
|
|
@@ -75299,7 +75298,10 @@ class IgxGridStateDirective {
|
|
|
75299
75298
|
parent: c.parent ? c.parent.header : null,
|
|
75300
75299
|
columnGroup: c.columnGroup,
|
|
75301
75300
|
disableHiding: c.disableHiding,
|
|
75302
|
-
disablePinning: c.disablePinning
|
|
75301
|
+
disablePinning: c.disablePinning,
|
|
75302
|
+
collapsible: c.columnGroup ? c.collapsible : undefined,
|
|
75303
|
+
expanded: c.columnGroup ? c.expanded : undefined,
|
|
75304
|
+
visibleWhenCollapsed: c.parent?.columnGroup ? c.visibleWhenCollapsed : undefined
|
|
75303
75305
|
}));
|
|
75304
75306
|
return { columns: gridColumns };
|
|
75305
75307
|
},
|