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.
- package/esm2022/lib/calendar/common/calendar-view.directive.mjs +3 -2
- package/esm2022/lib/calendar/common/model.mjs +3 -2
- package/esm2022/lib/core/utils.mjs +23 -11
- package/esm2022/lib/directives/drag-drop/drag-drop.directive.mjs +20 -22
- package/esm2022/lib/directives/for-of/for_of.directive.mjs +5 -3
- package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
- package/esm2022/lib/grids/moving/moving.drag.directive.mjs +3 -3
- package/esm2022/lib/services/animation/angular-animation-player.mjs +4 -2
- package/esm2022/lib/tabs/tabs/tab-header.component.mjs +7 -5
- package/esm2022/lib/tabs/tabs/tabs.component.mjs +15 -11
- package/fesm2022/igniteui-angular.mjs +70 -51
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
- package/lib/tabs/tabs/tabs.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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