igniteui-angular 14.0.11 → 14.0.12
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/esm2020/lib/core/utils.mjs +3 -3
- package/esm2020/lib/directives/drag-drop/drag-drop.directive.mjs +8 -6
- package/esm2020/lib/grids/grid/grid.component.mjs +2 -2
- package/esm2020/lib/paginator/paginator.component.mjs +3 -3
- package/esm2020/lib/tree/tree-node/tree-node.component.mjs +7 -1
- package/fesm2015/igniteui-angular.mjs +18 -10
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +18 -10
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/core/utils.d.ts +1 -1
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -1
- package/package.json +1 -1
package/lib/core/utils.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ export declare const reverseAnimationResolver: (animation: AnimationReferenceMet
|
|
|
261
261
|
export declare const isHorizontalAnimation: (animation: AnimationReferenceMetadata) => boolean;
|
|
262
262
|
export declare const isVerticalAnimation: (animation: AnimationReferenceMetadata) => boolean;
|
|
263
263
|
/**
|
|
264
|
-
* Similar to Angular's formatDate. However it will not throw on `undefined | null` instead
|
|
264
|
+
* Similar to Angular's formatDate. However it will not throw on `undefined | null | ''` instead
|
|
265
265
|
* coalescing to an empty string.
|
|
266
266
|
*/
|
|
267
267
|
export declare const formatDate: (value: string | number | Date, format: string, locale: string, timezone?: string) => string;
|
|
@@ -567,7 +567,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
567
567
|
* @hidden
|
|
568
568
|
* Traverse shadow dom in depth.
|
|
569
569
|
*/
|
|
570
|
-
protected getFromShadowRoot(elem: any, pageX: any, pageY: any): any;
|
|
570
|
+
protected getFromShadowRoot(elem: any, pageX: any, pageY: any, parentDomElems: any): any[];
|
|
571
571
|
/**
|
|
572
572
|
* @hidden
|
|
573
573
|
* Dispatch custom igxDrop event based on current pointer position if there is last recorder drop area under the pointer.
|
package/package.json
CHANGED