igniteui-angular 18.0.3 → 18.0.4
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 +35 -15
- package/esm2022/lib/grids/pivot-grid/pivot-grid.component.mjs +2 -1
- package/esm2022/lib/grids/state.directive.mjs +3 -3
- package/esm2022/lib/services/exporter-common/base-export-service.mjs +1 -1
- package/fesm2022/igniteui-angular.mjs +37 -16
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.common.d.ts +3 -1
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +1 -0
- package/lib/services/exporter-common/base-export-service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -114,7 +114,8 @@ export declare abstract class IgxComboBaseDirective implements IgxComboBase, Aft
|
|
|
114
114
|
* <igx-combo [id]='combo1'></igx-combo>
|
|
115
115
|
* ```
|
|
116
116
|
*/
|
|
117
|
-
id: string;
|
|
117
|
+
get id(): string;
|
|
118
|
+
set id(value: string);
|
|
118
119
|
/**
|
|
119
120
|
* Sets the style width of the element
|
|
120
121
|
*
|
|
@@ -687,6 +688,7 @@ export declare abstract class IgxComboBaseDirective implements IgxComboBase, Aft
|
|
|
687
688
|
protected _onChangeCallback: (_: any) => void;
|
|
688
689
|
protected compareCollator: Intl.Collator;
|
|
689
690
|
protected computedStyles: any;
|
|
691
|
+
private _id;
|
|
690
692
|
private _type;
|
|
691
693
|
private _dataType;
|
|
692
694
|
private _itemHeight;
|
|
@@ -175,6 +175,7 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
175
175
|
*/
|
|
176
176
|
get superCompactMode(): boolean;
|
|
177
177
|
set superCompactMode(value: boolean);
|
|
178
|
+
/** @hidden @internal */
|
|
178
179
|
get gridSize(): Size;
|
|
179
180
|
/**
|
|
180
181
|
* Gets/Sets the values clone strategy of the pivot grid when assigning them to different dimensions.
|
|
@@ -191,8 +191,8 @@ export declare abstract class IgxBaseExporter {
|
|
|
191
191
|
private getColumns;
|
|
192
192
|
private mapHierarchicalGridColumns;
|
|
193
193
|
private getAutoGeneratedColumns;
|
|
194
|
-
addPivotRowHeaders
|
|
195
|
-
addPivotGridColumns
|
|
194
|
+
private addPivotRowHeaders;
|
|
195
|
+
private addPivotGridColumns;
|
|
196
196
|
private preparePivotGridColumns;
|
|
197
197
|
private addLevelColumns;
|
|
198
198
|
private addLevelData;
|
package/package.json
CHANGED