UNPKG

@progress/kendo-angular-treelist

Version:

Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.

86 lines (85 loc) 1.96 kB
/**----------------------------------------------------------------------------------------- * 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 function getOffset(element: any): { top: number; left: number; }; /** * @hidden */ export declare const hintIcons: { forbidden: string; before: string; after: string; over: 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; over: import("@progress/kendo-svg-icons").SVGIcon; }; /** * @hidden */ export declare const dropPosition: { forbidden: string; before: string; after: string; over: 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; }; /** * @hidden */ export declare const rowIndexAttr = "data-treelist-view-index"; /** * @hidden */ export declare const findParent: (collection: Array<any>, searchItem: any, field: string) => any;