@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
29 lines (28 loc) • 933 B
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 { PopupCloseEvent } from '@progress/kendo-react-popup';
/**
* @hidden
*/
export interface BaseMenuItemInternalProps {
focusedItemId: string;
lastItemIdToBeOpened: string;
tabbableItemId: string;
itemRender?: any;
linkRender?: any;
isMenuVertical: boolean;
isDirectionRightToLeft?: boolean;
menuGuid: string;
onMouseOver: any;
onMouseLeave: any;
onFocus: any;
onClick: any;
onBlur: any;
onOriginalItemNeeded: any;
onPopupClose: (itemId: string, popupCloseEvent: PopupCloseEvent) => void;
}