igniteui-angular 12.3.33 → 12.3.34
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/bundles/igniteui-angular.umd.js +11 -10
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/directives/drag-drop/drag-drop.directive.js +8 -6
- package/esm2015/lib/grids/grid/grid.component.js +2 -2
- package/esm2015/lib/paginator/pager.component.js +2 -2
- package/fesm2015/igniteui-angular.js +9 -7
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -1
- package/package.json +1 -1
|
@@ -540,7 +540,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
540
540
|
* @hidden
|
|
541
541
|
* Traverse shadow dom in depth.
|
|
542
542
|
*/
|
|
543
|
-
protected getFromShadowRoot(elem: any, pageX: any, pageY: any): any;
|
|
543
|
+
protected getFromShadowRoot(elem: any, pageX: any, pageY: any, parentDomElems: any): any[];
|
|
544
544
|
/**
|
|
545
545
|
* @hidden
|
|
546
546
|
* Dispatch custom igxDrop event based on current pointer position if there is last recorder drop area under the pointer.
|
package/package.json
CHANGED