@progress/kendo-react-sortable
Version:
React Sortable provides a sortable drag-and-drop functionality to elements within a list. KendoReact Sortable package
37 lines (36 loc) • 1.1 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
declare const find: (data: object[], comparer: (item: object) => boolean) => object | undefined;
/**
* @hidden
*/
declare const findIndex: (data: object[], comparer: (item: object) => boolean) => number;
/**
* @hidden
*/
declare const toClassList: (classNames: string) => string[];
/**
* @hidden
*/
declare const hasClasses: (element: any, classNames: string) => boolean;
/**
* @hidden
*/
declare const isFocusable: (element: any) => boolean;
/**
* @hidden
*/
declare const closest: (node: any, predicate: any) => any;
/**
* @hidden
*/
declare const relativeContextElement: (element: any) => any;
export { find, findIndex, toClassList, hasClasses, isFocusable, closest, relativeContextElement };