igniteui-angular 13.2.4 → 13.2.7
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/esm2020/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +7 -1
- package/esm2020/lib/grids/pivot-grid/pivot-grid.component.mjs +15 -3
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +2 -2
- package/esm2020/lib/tree/tree.component.mjs +30 -1
- package/fesm2015/igniteui-angular.mjs +50 -3
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +50 -3
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +3 -0
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +9 -0
- package/lib/tree/tree.component.d.ts +29 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ import { CellType, GridType, RowType } from '../common/grid.interface';
|
|
|
7
7
|
import { IgxGridToolbarTemplateContext } from '../toolbar/common';
|
|
8
8
|
import { IgxPaginatorComponent } from '../../paginator/paginator.component';
|
|
9
9
|
import { IgxOverlayOutletDirective } from '../../directives/toggle/toggle.directive';
|
|
10
|
+
import { IgxGridExcelStyleFilteringComponent } from '../filtering/excel-style/grid.excel-style-filtering.component';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export interface HierarchicalStateRecord {
|
|
12
13
|
rowID: any;
|
|
@@ -180,6 +181,8 @@ export declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBas
|
|
|
180
181
|
get data(): any[] | null;
|
|
181
182
|
/** @hidden @internal */
|
|
182
183
|
get paginator(): IgxPaginatorComponent;
|
|
184
|
+
/** @hidden @internal */
|
|
185
|
+
get excelStyleFilteringComponent(): IgxGridExcelStyleFilteringComponent;
|
|
183
186
|
/**
|
|
184
187
|
* Sets an array of objects containing the filtered data in the `IgxHierarchicalGridComponent`.
|
|
185
188
|
* ```typescript
|
|
@@ -88,6 +88,15 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
88
88
|
* ```
|
|
89
89
|
*/
|
|
90
90
|
valuesChange: EventEmitter<IValuesChange>;
|
|
91
|
+
/**
|
|
92
|
+
* Gets the sorting expressions generated for the dimensions.
|
|
93
|
+
*
|
|
94
|
+
* @example
|
|
95
|
+
* ```typescript
|
|
96
|
+
* const expressions = this.grid.dimensionsSortingExpressions;
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
get dimensionsSortingExpressions(): ISortingExpression[];
|
|
91
100
|
/** @hidden @internal */
|
|
92
101
|
theadRow: IgxPivotHeaderRowComponent;
|
|
93
102
|
set pivotConfiguration(value: IPivotConfiguration);
|
|
@@ -31,6 +31,35 @@ export declare class IgxTreeExpandIndicatorDirective {
|
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxTreeExpandIndicatorDirective, never>;
|
|
32
32
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxTreeExpandIndicatorDirective, "[igxTreeExpandIndicator]", never, {}, {}, never>;
|
|
33
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* IgxTreeComponent allows a developer to show a set of nodes in a hierarchical fashion.
|
|
36
|
+
*
|
|
37
|
+
* @igxModule IgxTreeModule
|
|
38
|
+
* @igxKeywords tree
|
|
39
|
+
* @igxTheme igx-tree-theme
|
|
40
|
+
* @igxGroup Grids & Lists
|
|
41
|
+
*
|
|
42
|
+
* @remark
|
|
43
|
+
* The Angular Tree Component allows users to represent hierarchical data in a tree-view structure,
|
|
44
|
+
* maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model.
|
|
45
|
+
* Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures.
|
|
46
|
+
* The Ignite UI for Angular Tree Component also provides load on demand capabilities, item activation,
|
|
47
|
+
* bi-state and cascading selection of items through built-in checkboxes, built-in keyboard navigation and more.
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* ```html
|
|
51
|
+
* <igx-tree>
|
|
52
|
+
* <igx-tree-node>
|
|
53
|
+
* I am a parent node 1
|
|
54
|
+
* <igx-tree-node>
|
|
55
|
+
* I am a child node 1
|
|
56
|
+
* </igx-tree-node>
|
|
57
|
+
* ...
|
|
58
|
+
* </igx-tree-node>
|
|
59
|
+
* ...
|
|
60
|
+
* </igx-tree>
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
34
63
|
export declare class IgxTreeComponent extends DisplayDensityBase implements IgxTree, OnInit, AfterViewInit, OnDestroy {
|
|
35
64
|
private navService;
|
|
36
65
|
private selectionService;
|
package/package.json
CHANGED