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
package/lib/core/selection.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -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