igniteui-angular 19.2.1 → 19.2.3
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/README.md +3 -0
- package/fesm2022/igniteui-angular.mjs +1692 -1620
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/columns/column.component.d.ts +31 -5
- package/lib/grids/grid/grid.component.d.ts +12 -2
- package/lib/grids/grid-base.directive.d.ts +16 -4
- package/lib/grids/pivot-grid/pivot-data-selector.component.d.ts +32 -8
- package/package.json +1 -1
- package/schematics/tsconfig.tsbuildinfo +1 -1
|
@@ -242,16 +242,30 @@ export declare class IgxColumnComponent implements AfterContentInit, OnDestroy,
|
|
|
242
242
|
*/
|
|
243
243
|
set selected(value: boolean);
|
|
244
244
|
/**
|
|
245
|
-
*
|
|
245
|
+
* Emitted when the column is hidden or shown.
|
|
246
|
+
*
|
|
247
|
+
* ```html
|
|
248
|
+
* <igx-column (hiddenChange)="hiddenChange($event)">
|
|
249
|
+
* </igx-column>
|
|
250
|
+
* ```
|
|
251
|
+
*
|
|
246
252
|
*/
|
|
247
253
|
hiddenChange: EventEmitter<boolean>;
|
|
248
|
-
/**
|
|
254
|
+
/**
|
|
255
|
+
* Emitted when the column expanded or collapsed.
|
|
256
|
+
*
|
|
257
|
+
* ```html
|
|
258
|
+
* <igx-column (expandedChange)="expandedChange($event)">
|
|
259
|
+
* </igx-column>
|
|
260
|
+
* ```
|
|
261
|
+
*
|
|
262
|
+
*/
|
|
249
263
|
expandedChange: EventEmitter<boolean>;
|
|
250
264
|
/** @hidden */
|
|
251
265
|
collapsibleChange: EventEmitter<boolean>;
|
|
252
266
|
/** @hidden */
|
|
253
267
|
visibleWhenCollapsedChange: EventEmitter<boolean>;
|
|
254
|
-
/** @hidden */
|
|
268
|
+
/** @hidden @internal */
|
|
255
269
|
columnChange: EventEmitter<void>;
|
|
256
270
|
/**
|
|
257
271
|
* Gets whether the hiding is disabled.
|
|
@@ -578,11 +592,23 @@ export declare class IgxColumnComponent implements AfterContentInit, OnDestroy,
|
|
|
578
592
|
*/
|
|
579
593
|
additionalTemplateContext: any;
|
|
580
594
|
/**
|
|
581
|
-
*
|
|
595
|
+
* Emitted when the column width changes.
|
|
596
|
+
*
|
|
597
|
+
* ```html
|
|
598
|
+
* <igx-column (widthChange)="widthChange($event)">
|
|
599
|
+
* </igx-column>
|
|
600
|
+
* ```
|
|
601
|
+
*
|
|
582
602
|
*/
|
|
583
603
|
widthChange: EventEmitter<string>;
|
|
584
604
|
/**
|
|
585
|
-
*
|
|
605
|
+
* Emitted when the column is pinned/unpinned.
|
|
606
|
+
*
|
|
607
|
+
* ```html
|
|
608
|
+
* <igx-column (pinnedChange)="pinnedChange($event)">
|
|
609
|
+
* </igx-column>
|
|
610
|
+
* ```
|
|
611
|
+
*
|
|
586
612
|
*/
|
|
587
613
|
pinnedChange: EventEmitter<boolean>;
|
|
588
614
|
/**
|
|
@@ -47,11 +47,21 @@ export declare class IgxGridComponent extends IgxGridBaseDirective implements Gr
|
|
|
47
47
|
*/
|
|
48
48
|
dataPreLoad: EventEmitter<IForOfState>;
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* Emitted when grouping is performed.
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* ```html
|
|
54
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (groupingExpressionsChange)="groupingExpressionsChange($event)"></igx-grid>
|
|
55
|
+
* ```
|
|
51
56
|
*/
|
|
52
57
|
groupingExpressionsChange: EventEmitter<IGroupingExpression[]>;
|
|
53
58
|
/**
|
|
54
|
-
*
|
|
59
|
+
* Emitted when groups are expanded/collapsed.
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* ```html
|
|
63
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (groupingExpansionStateChange)="groupingExpansionStateChange($event)"></igx-grid>
|
|
64
|
+
* ```
|
|
55
65
|
*/
|
|
56
66
|
groupingExpansionStateChange: EventEmitter<IGroupByExpandState[]>;
|
|
57
67
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ComponentRef, DoCheck, ElementRef, EnvironmentInjector, EventEmitter, Injector, IterableDiffers, NgZone, OnDestroy, OnInit,
|
|
1
|
+
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ComponentRef, DoCheck, ElementRef, EnvironmentInjector, EventEmitter, Injector, IterableDiffers, NgZone, OnDestroy, OnInit, TemplateRef, QueryList, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { PlatformUtil } from '../core/utils';
|
|
4
4
|
import { FilteringLogic } from '../data-operations/filtering-expression.interface';
|
|
@@ -686,10 +686,22 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
686
686
|
*/
|
|
687
687
|
gridCopy: EventEmitter<IGridClipboardEvent>;
|
|
688
688
|
/**
|
|
689
|
-
*
|
|
689
|
+
* Emitted when the rows are expanded or collapsed.
|
|
690
|
+
*
|
|
691
|
+
* @example
|
|
692
|
+
* ```html
|
|
693
|
+
* <igx-grid [data]="employeeData" (expansionStatesChange)="expansionStatesChange($event)" [autoGenerate]="true"></igx-grid>
|
|
694
|
+
* ```
|
|
690
695
|
*/
|
|
691
696
|
expansionStatesChange: EventEmitter<Map<any, boolean>>;
|
|
692
|
-
/**
|
|
697
|
+
/**
|
|
698
|
+
* Emitted when the rows are selected or deselected.
|
|
699
|
+
*
|
|
700
|
+
* @example
|
|
701
|
+
* ```html
|
|
702
|
+
* <igx-grid [data]="employeeData" (selectedRowsChange)="selectedRowsChange($event)" [autoGenerate]="true"></igx-grid>
|
|
703
|
+
* ```
|
|
704
|
+
*/
|
|
693
705
|
selectedRowsChange: EventEmitter<any[]>;
|
|
694
706
|
/**
|
|
695
707
|
* Emitted when the expanded state of a row gets changed.
|
|
@@ -719,7 +731,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
719
731
|
*/
|
|
720
732
|
rowPinned: EventEmitter<IPinRowEventArgs>;
|
|
721
733
|
/**
|
|
722
|
-
*
|
|
734
|
+
* Emitted when the active node is changed.
|
|
723
735
|
*
|
|
724
736
|
* @example
|
|
725
737
|
* ```
|
|
@@ -56,8 +56,14 @@ export declare class IgxPivotDataSelectorComponent {
|
|
|
56
56
|
*/
|
|
57
57
|
columnsExpanded: boolean;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
60
|
-
|
|
59
|
+
* Emitted when the columns panel is expanded or collapsed.
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* ```html
|
|
63
|
+
* <igx-pivot-data-selector #grid [data]="localData" [height]="'305px'"
|
|
64
|
+
* (columnsExpandedChange)="columnsExpandedChange($event)"></igx-pivot-data-selector>
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
61
67
|
columnsExpandedChange: EventEmitter<boolean>;
|
|
62
68
|
/**
|
|
63
69
|
* Gets/sets whether the rows panel is expanded
|
|
@@ -77,8 +83,14 @@ export declare class IgxPivotDataSelectorComponent {
|
|
|
77
83
|
*/
|
|
78
84
|
rowsExpanded: boolean;
|
|
79
85
|
/**
|
|
80
|
-
*
|
|
81
|
-
|
|
86
|
+
* Emitted when the rows panel is expanded or collapsed.
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* ```html
|
|
90
|
+
* <igx-pivot-data-selector #grid [data]="localData" [height]="'305px'"
|
|
91
|
+
* (rowsExpandedChange)="rowsExpandedChange($event)"></igx-pivot-data-selector>
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
82
94
|
rowsExpandedChange: EventEmitter<boolean>;
|
|
83
95
|
/**
|
|
84
96
|
* Gets/sets whether the filters panel is expanded
|
|
@@ -98,8 +110,14 @@ export declare class IgxPivotDataSelectorComponent {
|
|
|
98
110
|
*/
|
|
99
111
|
filtersExpanded: boolean;
|
|
100
112
|
/**
|
|
101
|
-
*
|
|
102
|
-
|
|
113
|
+
* Emitted when the filters panel is expanded or collapsed.
|
|
114
|
+
*
|
|
115
|
+
* @example
|
|
116
|
+
* ```html
|
|
117
|
+
* <igx-pivot-data-selector #grid [data]="localData" [height]="'305px'"
|
|
118
|
+
* (filtersExpandedChange)="filtersExpandedChange($event)"></igx-pivot-data-selector>
|
|
119
|
+
* ```
|
|
120
|
+
*/
|
|
103
121
|
filtersExpandedChange: EventEmitter<boolean>;
|
|
104
122
|
/**
|
|
105
123
|
* Gets/sets whether the values panel is expanded
|
|
@@ -119,8 +137,14 @@ export declare class IgxPivotDataSelectorComponent {
|
|
|
119
137
|
*/
|
|
120
138
|
valuesExpanded: boolean;
|
|
121
139
|
/**
|
|
122
|
-
*
|
|
123
|
-
|
|
140
|
+
* Emitted when the values panel is expanded or collapsed.
|
|
141
|
+
*
|
|
142
|
+
* @example
|
|
143
|
+
* ```html
|
|
144
|
+
* <igx-pivot-data-selector #grid [data]="localData" [height]="'305px'"
|
|
145
|
+
* (valuesExpandedChange)="valuesExpandedChange($event)"></igx-pivot-data-selector>
|
|
146
|
+
* ```
|
|
147
|
+
*/
|
|
124
148
|
valuesExpandedChange: EventEmitter<boolean>;
|
|
125
149
|
private _grid;
|
|
126
150
|
private _dropDelta;
|
package/package.json
CHANGED