UNPKG

@progress/kendo-react-common

Version:

React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package

26 lines (25 loc) 1.15 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2023 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *-------------------------------------------------------------------------------------------*/ import * as React from 'react'; export type { NormalizedDragEvent } from '@progress/kendo-draggable-common'; /** * Represents the properties of the `DragAndDrop` component. */ export interface DragAndDropProps { /** * Represents the `children` of the `DragAndDrop` component. The `children` prop can be any valid React Element. */ children?: React.ReactNode; } /** * The `DragAndDrop` component is required for the `droppable` functionality to work properly. * * It is used internally to synchronize the `drag` and `drop` functionalities. * Accepts properties of type [DragAndDropProps]({% slug api_common_draganddropprops %}). */ export declare const DragAndDrop: { (props: DragAndDropProps): import("react/jsx-runtime").JSX.Element; displayName: string; };