UNPKG

@progress/kendo-react-layout

Version:

React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package

24 lines (23 loc) 796 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PanelBarState } from '../PanelBar.js'; /** * @hidden */ export interface RenderPanelBarItem { animation?: boolean; keepItemsMounted?: boolean; state: PanelBarState; expanded: string[]; handleSelect: any; children: React.ReactNode; parentExpanded?: boolean; level?: number; parentPrivateKey?: string[]; activeDescendantRef?: React.MutableRefObject<string | undefined>; }