UNPKG

@progress/kendo-react-dialogs

Version:

React Dialogs provide modal and non-modal windows for showing additional information to the user. KendoReact Dialogs package

71 lines (70 loc) 1.69 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { windowStage } from './StageEnum.js'; import * as React from 'react'; /** * @hidden */ export interface WindowTitleBarProps { /** * @hidden */ onCloseButtonClick?: (event: React.SyntheticEvent<any>) => void; /** * @hidden */ onDoubleClick?: (event: React.SyntheticEvent<any>) => void; /** * @hidden */ onMinimizeButtonClick?: (event: React.SyntheticEvent<any>) => void; /** * @hidden */ onFullScreenButtonClick?: (event: React.SyntheticEvent<any>) => void; /** * @hidden */ onRestoreButtonClick?: (event: React.SyntheticEvent<any>) => void; /** * @hidden */ id?: string; /** * @hidden */ stage?: windowStage | string; /** * @hidden */ children?: any; /** * @hidden */ closeButton?: React.ComponentType<any>; /** * @hidden */ minimizeButton?: React.ComponentType<any>; /** * @hidden */ maximizeButton?: React.ComponentType<any>; /** * @hidden */ restoreButton?: React.ComponentType<any>; /** * @hidden */ forwardedRef?: any; } /** * @hidden */ export declare const WindowTitleBar: React.ForwardRefExoticComponent<WindowTitleBarProps & React.RefAttributes<unknown>>;