igniteui-angular 17.0.10 → 17.0.11
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/directives/drag-drop/drag-drop.directive.mjs +19 -1
- package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
- package/fesm2022/igniteui-angular.mjs +19 -1
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2, ChangeDetectorRef, ViewContainerRef, AfterContentInit, TemplateRef, QueryList } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2, ChangeDetectorRef, ViewContainerRef, AfterContentInit, TemplateRef, QueryList, EmbeddedViewRef } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { IBaseEventArgs, PlatformUtil } from '../../core/utils';
|
|
4
4
|
import { IDropStrategy } from './drag-drop.strategy';
|
|
@@ -453,7 +453,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
453
453
|
protected _ghostStartY: any;
|
|
454
454
|
protected _ghostHostX: number;
|
|
455
455
|
protected _ghostHostY: number;
|
|
456
|
-
protected _dynamicGhostRef: any
|
|
456
|
+
protected _dynamicGhostRef: EmbeddedViewRef<any>;
|
|
457
457
|
protected _pointerDownId: any;
|
|
458
458
|
protected _clicked: boolean;
|
|
459
459
|
protected _lastDropArea: any;
|
package/package.json
CHANGED