@progress/kendo-angular-sortable
Version:
A Sortable Component for Angular
59 lines (58 loc) • 1.61 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 MINIMAL_DRAG_DISTANCE = 5;
/**
* @hidden
*/
export declare const matchesNodeName: (nodeName: string) => any;
/**
* @hidden
*/
export declare const matchesNodeAttr: (nodeAttr: string) => any;
/**
* @hidden
*/
export declare const closest: (node: any, predicate: any) => any;
/**
* Returns an object specifying whether there is a `DraggableDirective` under the cursor.
* @hidden
*/
export declare const draggableFromPoint: Function;
/**
* Returns the DraggableDirective under the cursor.
* @hidden
*/
export declare const draggableFromEvent: Function;
/**
* @hidden
*/
export declare const getAllFocusableChildren: (parent: any) => Array<any>;
/**
* @hidden
*/
export declare const getFirstAndLastFocusable: (parent: any) => Array<HTMLElement>;
/**
* @hidden
*/
export declare const keepFocusWithinComponent: (event: any, wrapper: HTMLElement) => void;
/**
* @hidden
*/
export declare const isFocusable: (element: any) => boolean;
/**
* @hidden
*/
export declare const hasClasses: (element: any, classNames: string) => boolean;
/**
* @hidden
*/
export declare const widgetTarget: (target: any) => boolean;
/**
* @hidden
*/
export declare const relativeContextElement: (element: any) => any;