igniteui-angular 20.0.16 → 20.0.17
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/index.d.ts
CHANGED
|
@@ -21656,7 +21656,7 @@ declare class IgxDialogComponent implements IToggleView, OnInit, OnDestroy, Afte
|
|
|
21656
21656
|
/**
|
|
21657
21657
|
* Set the position and animation settings used by the dialog.
|
|
21658
21658
|
* ```typescript
|
|
21659
|
-
* import { slideInLeft, slideOutRight } from 'igniteui-angular';
|
|
21659
|
+
* import { slideInLeft, slideOutRight } from 'igniteui-angular/animations';
|
|
21660
21660
|
* ...
|
|
21661
21661
|
* @ViewChild('alert', { static: true }) public alert: IgxDialogComponent;
|
|
21662
21662
|
* public newPositionSettings: PositionSettings = {
|
|
@@ -26979,6 +26979,7 @@ declare class IgxTreeComponent implements IgxTree, OnInit, AfterViewInit, OnDest
|
|
|
26979
26979
|
private selectionService;
|
|
26980
26980
|
private treeService;
|
|
26981
26981
|
private element;
|
|
26982
|
+
private platform;
|
|
26982
26983
|
cssClass: string;
|
|
26983
26984
|
/**
|
|
26984
26985
|
* Gets/Sets tree selection mode
|
|
@@ -27162,7 +27163,7 @@ declare class IgxTreeComponent implements IgxTree, OnInit, AfterViewInit, OnDest
|
|
|
27162
27163
|
private _selection;
|
|
27163
27164
|
private destroy$;
|
|
27164
27165
|
private unsubChildren$;
|
|
27165
|
-
constructor(navService: IgxTreeNavigationService, selectionService: IgxTreeSelectionService, treeService: IgxTreeService, element: ElementRef<HTMLElement
|
|
27166
|
+
constructor(navService: IgxTreeNavigationService, selectionService: IgxTreeSelectionService, treeService: IgxTreeService, element: ElementRef<HTMLElement>, platform: PlatformUtil);
|
|
27166
27167
|
/** @hidden @internal */
|
|
27167
27168
|
get nativeElement(): HTMLElement;
|
|
27168
27169
|
/**
|
package/package.json
CHANGED