katoikia-app/web-ui/web-react/node_modules/primereact/dialog/dialog.d.ts

66 lines
2.0 KiB
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import * as React from 'react';
import { CSSTransitionProps } from '../csstransition';
type DialogPositionType = 'center' | 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
type DialogTemplateType = React.ReactNode | ((props: DialogProps) => React.ReactNode);
type DialogAppendToType = 'self' | HTMLElement | undefined | null;
interface DialogBreakpoints {
[key: string]: string;
}
interface DialogMaximizeParams {
originalEvent: React.SyntheticEvent;
maximized: boolean;
}
export interface DialogProps {
id?: string;
header?: DialogTemplateType;
footer?: DialogTemplateType;
visible?: boolean;
position?: DialogPositionType;
draggable?: boolean;
resizable?: boolean;
modal?: boolean;
contentStyle?: object;
contentClassName?: string;
closeOnEscape?: boolean;
dismissableMask?: boolean;
rtl?: boolean;
closable?: boolean;
style?: object;
className?: string;
maskStyle?: object;
maskClassName?: string;
showHeader?: boolean;
appendTo?: DialogAppendToType;
baseZIndex?: number;
maximizable?: boolean;
blockScroll?: boolean;
icons?: DialogTemplateType;
ariaCloseIconLabel?: string;
focusOnShow?: boolean;
minX?: number;
minY?: number;
keepInViewport?: boolean;
maximized?: boolean;
breakpoints?: DialogBreakpoints;
transitionOptions?: CSSTransitionProps;
onMaximize?(e: DialogMaximizeParams): void;
onDragStart?(e: React.DragEvent<HTMLElement>): void;
onDrag?(e: React.DragEvent<HTMLElement>): void;
onDragEnd?(e: React.DragEvent<HTMLElement>): void;
onResizeStart?(e: React.MouseEvent<HTMLElement>): void;
onResize?(e: React.MouseEvent<HTMLElement>): void;
onResizeEnd?(e: React.MouseEvent<HTMLElement>): void;
onHide(): void;
onShow?(): void;
onMaskClick?(e: React.MouseEvent<HTMLElement>): void;
onClick?(e: React.MouseEvent<HTMLElement>): void;
}
export declare class Dialog extends React.Component<DialogProps, any> { }