igniteui-angular 16.0.25 → 16.0.26
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/grids/hierarchical-grid/hierarchical-grid.component.mjs +18 -10
- package/esm2022/lib/tree/public_api.mjs +5 -4
- package/esm2022/lib/tree/tree-node/tree-node.component.mjs +2 -2
- package/esm2022/lib/tree/tree.module.mjs +1 -1
- package/fesm2022/igniteui-angular.mjs +22 -13
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +3 -1
- package/lib/tree/public_api.d.ts +3 -3
- package/lib/tree/tree.module.d.ts +1 -1
- package/package.json +2 -4
|
@@ -31,7 +31,8 @@ export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
|
|
|
31
31
|
* let selectedRowData = this.grid.selectedRows[0].data;
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
|
-
data: any;
|
|
34
|
+
get data(): any;
|
|
35
|
+
set data(value: any);
|
|
35
36
|
/**
|
|
36
37
|
* The index of the row.
|
|
37
38
|
*
|
|
@@ -81,6 +82,7 @@ export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
|
|
|
81
82
|
* ```
|
|
82
83
|
*/
|
|
83
84
|
expanded: boolean;
|
|
85
|
+
private _data;
|
|
84
86
|
constructor(gridAPI: IgxHierarchicalGridAPIService, element: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
|
|
85
87
|
/**
|
|
86
88
|
* @hidden
|
package/lib/tree/public_api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IgxTreeNodeComponent, IgxTreeNodeLinkDirective } from './tree-node/tree-node.component';
|
|
2
|
-
import { IgxTreeComponent } from './tree.component';
|
|
3
|
-
export { IgxTreeComponent } from './tree.component';
|
|
2
|
+
import { IgxTreeComponent, IgxTreeExpandIndicatorDirective } from './tree.component';
|
|
3
|
+
export { IgxTreeComponent, IgxTreeExpandIndicatorDirective } from './tree.component';
|
|
4
4
|
export * from './tree-node/tree-node.component';
|
|
5
5
|
export { IgxTreeSearchResolver, ITreeNodeSelectionEvent, ITreeNodeEditingEvent, ITreeNodeEditedEvent, ITreeNodeTogglingEventArgs, ITreeNodeToggledEventArgs, IgxTreeSelectionType, IgxTree, IgxTreeNode } from './common';
|
|
6
|
-
export declare const IGX_TREE_DIRECTIVES: readonly [typeof IgxTreeComponent, typeof IgxTreeNodeComponent, typeof IgxTreeNodeLinkDirective];
|
|
6
|
+
export declare const IGX_TREE_DIRECTIVES: readonly [typeof IgxTreeComponent, typeof IgxTreeNodeComponent, typeof IgxTreeNodeLinkDirective, typeof IgxTreeExpandIndicatorDirective];
|
|
@@ -7,6 +7,6 @@ import * as i2 from "./tree-node/tree-node.component";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class IgxTreeModule {
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxTreeModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgxTreeModule, never, [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective], [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgxTreeModule, never, [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective, typeof i1.IgxTreeExpandIndicatorDirective], [typeof i1.IgxTreeComponent, typeof i2.IgxTreeNodeComponent, typeof i2.IgxTreeNodeLinkDirective, typeof i1.IgxTreeExpandIndicatorDirective]>;
|
|
11
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgxTreeModule>;
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.26",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -92,9 +92,7 @@
|
|
|
92
92
|
"migrations": "./migrations/migration-collection.json",
|
|
93
93
|
"packageGroup": [
|
|
94
94
|
"igniteui-angular",
|
|
95
|
-
"
|
|
96
|
-
"igniteui-angular-i18n",
|
|
97
|
-
"@igniteui/angular-schematics"
|
|
95
|
+
"igniteui-angular-i18n"
|
|
98
96
|
]
|
|
99
97
|
},
|
|
100
98
|
"schematics": "./schematics/collection.json",
|