@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
79 lines (78 loc) • 1.79 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
export declare const isNextSibling: (dropTarget: HTMLElement, dragTarget: HTMLElement) => boolean;
/**
* @hidden
*/
export declare const isPreviousSibling: (dropTarget: HTMLElement, dragTarget: HTMLElement) => boolean;
/**
* @hidden
*/
export declare const isDifferentParent: (dropTarget: HTMLElement, dragTarget: HTMLElement) => boolean;
/**
* @hidden
*/
export declare function getOffset(element: any): {
top: number;
left: number;
};
/**
* @hidden
*/
export declare const hintIcons: {
forbidden: string;
before: string;
after: string;
};
/**
* @hidden
*/
export declare const hintSVGIcons: {
forbidden: import("@progress/kendo-svg-icons").SVGIcon;
before: import("@progress/kendo-svg-icons").SVGIcon;
after: import("@progress/kendo-svg-icons").SVGIcon;
};
/**
* @hidden
*/
export declare const dropPosition: {
forbidden: string;
before: string;
after: string;
};
/**
* @hidden
*/
export declare const hintStyles: {
zIndex: string;
display: string;
position: string;
};
/**
* @hidden
*/
export declare const hintClasses: string[];
/**
* @hidden
*/
export declare const dropIndicatorStyles: {
zIndex: string;
position: string;
};
/**
* @hidden
*/
export declare const dropIndicatorClasses: string[];
/**
* @hidden
*/
export declare const defaultSelectors: {
handle: string;
dragTarget: string;
dropTarget: string;
};