igniteui-angular 17.2.26 → 17.2.27

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.
@@ -563,6 +563,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
563
563
  * @hidden
564
564
  */
565
565
  onTransitionEnd(event: any): void;
566
+ protected clearGhost(): void;
566
567
  /**
567
568
  * @hidden
568
569
  * Create ghost element - if a Node object is provided it creates a clone of that node,
@@ -1,4 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
2
+ import { PlatformUtil } from '../../core/utils';
2
3
  import { AnimationService } from '../../services/animation/animation';
3
4
  import { IgxDirectionality } from '../../services/direction/directionality';
4
5
  import { IgxTabsDirective } from '../tabs.directive';
@@ -42,6 +43,7 @@ export type IgxTabsAlignment = (typeof IgxTabsAlignment)[keyof typeof IgxTabsAli
42
43
  */
43
44
  export declare class IgxTabsComponent extends IgxTabsDirective implements AfterViewInit, OnDestroy {
44
45
  private ngZone;
46
+ private platform;
45
47
  /**
46
48
  * Gets/Sets the tab alignment. Defaults to `start`.
47
49
  */
@@ -69,7 +71,7 @@ export declare class IgxTabsComponent extends IgxTabsDirective implements AfterV
69
71
  protected componentName: string;
70
72
  private _tabAlignment;
71
73
  private _resizeObserver;
72
- constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality);
74
+ constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, platform: PlatformUtil, dir: IgxDirectionality);
73
75
  /** @hidden @internal */
74
76
  ngAfterViewInit(): void;
75
77
  /** @hidden @internal */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "17.2.26",
3
+ "version": "17.2.27",
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",