igniteui-angular 16.1.17 → 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.
@@ -25,6 +25,11 @@ export declare class IgxSelectionAPIService {
25
25
  * @param componentID ID of the component.
26
26
  */
27
27
  clear(componentID: string): void;
28
+ /**
29
+ * Removes selection for a component.
30
+ * @param componentID
31
+ */
32
+ delete(componentID: string): void;
28
33
  /**
29
34
  * Get current component selection length.
30
35
  *
@@ -132,6 +132,8 @@ export declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBas
132
132
  * @hidden
133
133
  */
134
134
  childLayoutKeys: any[];
135
+ /** @hidden @internal */
136
+ dataSetByUser: boolean;
135
137
  /**
136
138
  * @hidden
137
139
  */
@@ -328,6 +330,8 @@ export declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBas
328
330
  */
329
331
  getCellByKey(rowSelector: any, columnField: string): CellType;
330
332
  pinRow(rowID: any, index?: number): boolean;
333
+ /** @hidden @internal */
334
+ setDataInternal(value: any): void;
331
335
  unpinRow(rowID: any): boolean;
332
336
  /**
333
337
  * @hidden @internal
@@ -72,6 +72,9 @@ export interface IColumnState {
72
72
  parent: any;
73
73
  disableHiding: boolean;
74
74
  disablePinning: boolean;
75
+ collapsible?: boolean;
76
+ expanded?: boolean;
77
+ visibleWhenCollapsed?: boolean;
75
78
  }
76
79
  export type GridFeatures = keyof IGridStateOptions;
77
80
  export declare class IgxGridStateDirective {
@@ -277,10 +277,6 @@ export declare class IgxSelectComponent extends IgxDropDownComponent implements
277
277
  ngAfterViewInit(): void;
278
278
  /** @hidden @internal */
279
279
  ngAfterContentChecked(): void;
280
- /**
281
- * @hidden @internal
282
- */
283
- ngOnDestroy(): void;
284
280
  /**
285
281
  * @hidden @internal
286
282
  * Prevent input blur - closing the items container on Header/Footer Template click.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "16.1.17",
3
+ "version": "16.1.19",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",