igniteui-angular 13.2.5 → 13.2.6
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 +2 -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
|
@@ -37693,7 +37693,7 @@ class IgxSimpleComboComponent extends IgxComboBaseDirective {
|
|
|
37693
37693
|
}
|
|
37694
37694
|
/** @hidden @internal */
|
|
37695
37695
|
onBlur() {
|
|
37696
|
-
if (this.collapsed) {
|
|
37696
|
+
if (this.collapsed && !this.selectedItem) {
|
|
37697
37697
|
this.clearOnBlur();
|
|
37698
37698
|
}
|
|
37699
37699
|
super.onBlur();
|
|
@@ -46365,6 +46365,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
46365
46365
|
selector: '[igxTreeExpandIndicator]'
|
|
46366
46366
|
}]
|
|
46367
46367
|
}] });
|
|
46368
|
+
/**
|
|
46369
|
+
* IgxTreeComponent allows a developer to show a set of nodes in a hierarchical fashion.
|
|
46370
|
+
*
|
|
46371
|
+
* @igxModule IgxTreeModule
|
|
46372
|
+
* @igxKeywords tree
|
|
46373
|
+
* @igxTheme igx-tree-theme
|
|
46374
|
+
* @igxGroup Grids & Lists
|
|
46375
|
+
*
|
|
46376
|
+
* @remark
|
|
46377
|
+
* The Angular Tree Component allows users to represent hierarchical data in a tree-view structure,
|
|
46378
|
+
* maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model.
|
|
46379
|
+
* Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures.
|
|
46380
|
+
* The Ignite UI for Angular Tree Component also provides load on demand capabilities, item activation,
|
|
46381
|
+
* bi-state and cascading selection of items through built-in checkboxes, built-in keyboard navigation and more.
|
|
46382
|
+
*
|
|
46383
|
+
* @example
|
|
46384
|
+
* ```html
|
|
46385
|
+
* <igx-tree>
|
|
46386
|
+
* <igx-tree-node>
|
|
46387
|
+
* I am a parent node 1
|
|
46388
|
+
* <igx-tree-node>
|
|
46389
|
+
* I am a child node 1
|
|
46390
|
+
* </igx-tree-node>
|
|
46391
|
+
* ...
|
|
46392
|
+
* </igx-tree-node>
|
|
46393
|
+
* ...
|
|
46394
|
+
* </igx-tree>
|
|
46395
|
+
* ```
|
|
46396
|
+
*/
|
|
46368
46397
|
class IgxTreeComponent extends DisplayDensityBase {
|
|
46369
46398
|
constructor(navService, selectionService, treeService, element, _displayDensityOptions) {
|
|
46370
46399
|
super(_displayDensityOptions);
|
|
@@ -76043,6 +76072,12 @@ class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirective {
|
|
|
76043
76072
|
const id = this.id;
|
|
76044
76073
|
return (!this.parentIsland && this.paginationComponents?.first) || this.rootGrid.paginatorList?.find((pg) => pg.nativeElement.offsetParent?.id === id);
|
|
76045
76074
|
}
|
|
76075
|
+
/** @hidden @internal */
|
|
76076
|
+
get excelStyleFilteringComponent() {
|
|
76077
|
+
return this.parentIsland ?
|
|
76078
|
+
this.parentIsland.excelStyleFilteringComponents.first :
|
|
76079
|
+
super.excelStyleFilteringComponent;
|
|
76080
|
+
}
|
|
76046
76081
|
/**
|
|
76047
76082
|
* Sets an array of objects containing the filtered data in the `IgxHierarchicalGridComponent`.
|
|
76048
76083
|
* ```typescript
|
|
@@ -86312,6 +86347,19 @@ class IgxPivotGridComponent extends IgxGridBaseDirective {
|
|
|
86312
86347
|
*/
|
|
86313
86348
|
this.toolbarExporting = new EventEmitter();
|
|
86314
86349
|
}
|
|
86350
|
+
/**
|
|
86351
|
+
* Gets the sorting expressions generated for the dimensions.
|
|
86352
|
+
*
|
|
86353
|
+
* @example
|
|
86354
|
+
* ```typescript
|
|
86355
|
+
* const expressions = this.grid.dimensionsSortingExpressions;
|
|
86356
|
+
* ```
|
|
86357
|
+
*/
|
|
86358
|
+
get dimensionsSortingExpressions() {
|
|
86359
|
+
const allEnabledDimensions = this.rowDimensions.concat(this.columnDimensions);
|
|
86360
|
+
const dimensionsSortingExpressions = PivotSortUtil.generateDimensionSortingExpressions(allEnabledDimensions);
|
|
86361
|
+
return dimensionsSortingExpressions;
|
|
86362
|
+
}
|
|
86315
86363
|
set pivotConfiguration(value) {
|
|
86316
86364
|
this._pivotConfiguration = value;
|
|
86317
86365
|
if (!this._init) {
|
|
@@ -87334,9 +87382,8 @@ class IgxPivotGridComponent extends IgxGridBaseDirective {
|
|
|
87334
87382
|
dim.childLevel.sortDirection = dimension.sortDirection;
|
|
87335
87383
|
dim = dim.childLevel;
|
|
87336
87384
|
}
|
|
87337
|
-
const dimensionsSortingExpressions = PivotSortUtil.generateDimensionSortingExpressions(this.rowDimensions);
|
|
87338
87385
|
this.pipeTrigger++;
|
|
87339
|
-
this.dimensionsSortingExpressionsChange.emit(dimensionsSortingExpressions);
|
|
87386
|
+
this.dimensionsSortingExpressionsChange.emit(this.dimensionsSortingExpressions);
|
|
87340
87387
|
if (dimensionType === PivotDimensionType.Column) {
|
|
87341
87388
|
this.setupColumns();
|
|
87342
87389
|
}
|