igniteui-angular 12.3.27 → 12.3.28
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/bundles/igniteui-angular.umd.js +146 -148
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/api.service.js +2 -2
- package/esm2015/lib/grids/columns/column.component.js +5 -5
- package/esm2015/lib/grids/grid/grid.component.js +11 -11
- package/esm2015/lib/grids/grid-base.directive.js +72 -76
- package/esm2015/lib/grids/grid-mrl-navigation.service.js +2 -2
- package/esm2015/lib/grids/grid-public-row.js +3 -3
- package/esm2015/lib/grids/grouping/group-by-area.directive.js +1 -1
- package/esm2015/lib/grids/grouping/tree-grid-group-by-area.component.js +6 -6
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid-base.directive.js +4 -5
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid.component.js +23 -14
- package/esm2015/lib/grids/hierarchical-grid/row-island.component.js +7 -11
- package/esm2015/lib/grids/state.directive.js +12 -9
- package/esm2015/lib/grids/summaries/grid-summary.service.js +5 -5
- package/esm2015/lib/grids/tree-grid/tree-grid.component.js +7 -7
- package/esm2015/lib/services/exporter-common/base-export-service.js +3 -3
- package/fesm2015/igniteui-angular.js +148 -144
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/grids/grid-base.directive.d.ts +9 -13
- package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +2 -1
- package/lib/grids/hierarchical-grid/row-island.component.d.ts +1 -0
- package/lib/grids/tree-grid/tree-grid.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -2385,11 +2385,6 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2385
2385
|
* @hidden @internal
|
|
2386
2386
|
*/
|
|
2387
2387
|
get summariesMargin(): number;
|
|
2388
|
-
/**
|
|
2389
|
-
* @hidden
|
|
2390
|
-
* @internal
|
|
2391
|
-
*/
|
|
2392
|
-
get columns(): IgxColumnComponent[];
|
|
2393
2388
|
/**
|
|
2394
2389
|
* Gets an array of `IgxColumnComponent`s.
|
|
2395
2390
|
*
|
|
@@ -2398,7 +2393,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2398
2393
|
* const colums = this.grid.columnsCollection.
|
|
2399
2394
|
* ```
|
|
2400
2395
|
*/
|
|
2401
|
-
get
|
|
2396
|
+
get columns(): IgxColumnComponent[];
|
|
2402
2397
|
/**
|
|
2403
2398
|
* Gets an array of the pinned `IgxColumnComponent`s.
|
|
2404
2399
|
*
|
|
@@ -3347,12 +3342,6 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3347
3342
|
* @param asChild - Whether the record should be added as a child. Only applicable to igxTreeGrid.
|
|
3348
3343
|
*/
|
|
3349
3344
|
beginAddRowById(rowID: any, asChild?: boolean): void;
|
|
3350
|
-
/**
|
|
3351
|
-
* Update internal column's collection.
|
|
3352
|
-
*
|
|
3353
|
-
* @hidden
|
|
3354
|
-
*/
|
|
3355
|
-
updateColumns(newColumns: IgxColumnComponent[]): void;
|
|
3356
3345
|
/**
|
|
3357
3346
|
* Enters add mode by spawning the UI at the specified index.
|
|
3358
3347
|
*
|
|
@@ -3365,6 +3354,12 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3365
3354
|
* @param index - The index to spawn the UI at. Accepts integers from 0 to this.grid.dataView.length
|
|
3366
3355
|
*/
|
|
3367
3356
|
beginAddRowByIndex(index: number): void;
|
|
3357
|
+
/**
|
|
3358
|
+
* Update internal column's collection.
|
|
3359
|
+
*
|
|
3360
|
+
* @hidden
|
|
3361
|
+
*/
|
|
3362
|
+
updateColumns(newColumns: IgxColumnComponent[]): void;
|
|
3368
3363
|
protected beginAddRowForIndex(index: number, asChild?: boolean): void;
|
|
3369
3364
|
protected switchTransactionService(val: boolean): void;
|
|
3370
3365
|
protected subscribeToTransactions(): void;
|
|
@@ -3427,6 +3422,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3427
3422
|
*/
|
|
3428
3423
|
protected _moveChildColumns(parent: IgxColumnComponent, from: IgxColumnComponent, to: IgxColumnComponent, pos: DropPosition): void;
|
|
3429
3424
|
protected setupColumns(): void;
|
|
3425
|
+
protected getColumnList(): IgxColumnComponent[];
|
|
3430
3426
|
/**
|
|
3431
3427
|
* @hidden
|
|
3432
3428
|
*/
|
|
@@ -3526,7 +3522,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
3526
3522
|
/**
|
|
3527
3523
|
* @hidden
|
|
3528
3524
|
*/
|
|
3529
|
-
protected initColumns(collection:
|
|
3525
|
+
protected initColumns(collection: IgxColumnComponent[], cb?: (args: any) => void): void;
|
|
3530
3526
|
/**
|
|
3531
3527
|
* @hidden
|
|
3532
3528
|
*/
|
|
@@ -354,8 +354,9 @@ export declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBas
|
|
|
354
354
|
/**
|
|
355
355
|
* @hidden
|
|
356
356
|
*/
|
|
357
|
-
protected initColumns(collection:
|
|
357
|
+
protected initColumns(collection: IgxColumnComponent[], cb?: (args: any) => void): void;
|
|
358
358
|
protected setupColumns(): void;
|
|
359
|
+
protected getColumnList(): IgxColumnComponent[];
|
|
359
360
|
protected onColumnsChanged(change: QueryList<IgxColumnComponent>): void;
|
|
360
361
|
protected _shouldAutoSize(renderedHeight: any): boolean;
|
|
361
362
|
private updateColumnList;
|
|
@@ -97,6 +97,7 @@ export declare class IgxRowIslandComponent extends IgxHierarchicalGridBaseDirect
|
|
|
97
97
|
rootGrid: any;
|
|
98
98
|
readonly data: any[] | null;
|
|
99
99
|
readonly filteredData: any[];
|
|
100
|
+
protected _childColumns: any[];
|
|
100
101
|
private ri_columnListDiffer;
|
|
101
102
|
private layout_id;
|
|
102
103
|
private isInit;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit, TemplateRef,
|
|
1
|
+
import { OnInit, TemplateRef, AfterContentInit, DoCheck, AfterViewInit, ElementRef, NgZone, ChangeDetectorRef, ComponentFactoryResolver, IterableDiffers, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { IgxGridBaseDirective } from '../grid-base.directive';
|
|
3
3
|
import { GridBaseAPIService } from '../api.service';
|
|
4
4
|
import { ITreeGridRecord } from './tree-grid.interfaces';
|
|
@@ -485,7 +485,7 @@ export declare class IgxTreeGridComponent extends IgxGridBaseDirective implement
|
|
|
485
485
|
/**
|
|
486
486
|
* @hidden
|
|
487
487
|
*/
|
|
488
|
-
protected initColumns(collection:
|
|
488
|
+
protected initColumns(collection: IgxColumnComponent[], cb?: (args: any) => void): void;
|
|
489
489
|
/**
|
|
490
490
|
* @hidden @internal
|
|
491
491
|
*/
|
package/package.json
CHANGED