UNPKG

@progress/kendo-react-layout

Version:

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

22 lines (21 loc) 765 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 { PanelBarItemProps } from '../interfaces/PanelBarItemProps'; /** * The arguments that are passed to the `onSelect` callback function. */ export interface PanelBarSelectEventArguments { /** * The selected PanelBar item. */ target: React.ReactElement<PanelBarItemProps>; /** * The new expanded PanelBar items state. */ expandedItems: string[]; }