igniteui-angular 19.2.23 → 19.2.25
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.
|
@@ -6,6 +6,7 @@ import { IgxTreeNavigationService } from './tree-navigation.service';
|
|
|
6
6
|
import { IgxTreeNodeComponent } from './tree-node/tree-node.component';
|
|
7
7
|
import { IgxTreeSelectionService } from './tree-selection.service';
|
|
8
8
|
import { IgxTreeService } from './tree.service';
|
|
9
|
+
import { PlatformUtil } from '../core/utils';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* @hidden @internal
|
|
@@ -57,6 +58,7 @@ export declare class IgxTreeComponent implements IgxTree, OnInit, AfterViewInit,
|
|
|
57
58
|
private selectionService;
|
|
58
59
|
private treeService;
|
|
59
60
|
private element;
|
|
61
|
+
private platform;
|
|
60
62
|
cssClass: string;
|
|
61
63
|
/**
|
|
62
64
|
* Gets/Sets tree selection mode
|
|
@@ -240,7 +242,7 @@ export declare class IgxTreeComponent implements IgxTree, OnInit, AfterViewInit,
|
|
|
240
242
|
private _selection;
|
|
241
243
|
private destroy$;
|
|
242
244
|
private unsubChildren$;
|
|
243
|
-
constructor(navService: IgxTreeNavigationService, selectionService: IgxTreeSelectionService, treeService: IgxTreeService, element: ElementRef<HTMLElement
|
|
245
|
+
constructor(navService: IgxTreeNavigationService, selectionService: IgxTreeSelectionService, treeService: IgxTreeService, element: ElementRef<HTMLElement>, platform: PlatformUtil);
|
|
244
246
|
/** @hidden @internal */
|
|
245
247
|
get nativeElement(): HTMLElement;
|
|
246
248
|
/**
|
package/package.json
CHANGED