@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
40 lines (39 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
*-------------------------------------------------------------------------------------------
*/
import { TreeListRowProps } from '../interfaces/TreeListRowProps';
import * as React from 'react';
interface RowDragClueProps {
visible: boolean;
top: number;
left: number;
text: string;
allowDrop: boolean;
}
interface TreeListRowState {
clueProps: RowDragClueProps;
}
/**
* The TreeList draggable row component.
*/
export declare class TreeListDraggableRow extends React.Component<TreeListRowProps, TreeListRowState> {
/**
* @hidden
*/
readonly state: TreeListRowState;
private draggable;
private dragged;
private draggedOver;
/**
* @hidden
*/
render(): React.JSX.Element;
private onPress;
private onDrag;
private onRelease;
}
export {};