UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

22 lines (21 loc) 921 B
import { ActionSheetFooter } from './actionsheet-footer'; import { ActionSheetHeader } from './actionsheet-header'; import { KendoComponent } from '../_types/component'; export declare const ACTIONSHEET_CLASSNAME = "k-actionsheet"; export type KendoActionSheetProps = { children?: React.JSX.Element | React.JSX.Element[]; header?: React.ReactElement<typeof ActionSheetHeader>; footer?: React.ReactElement<typeof ActionSheetFooter>; fullscreen?: boolean; adaptive?: boolean; overlay?: boolean; template?: React.JSX.Element | React.JSX.Element[]; side?: 'top' | 'right' | 'bottom' | 'left'; /** * Unique identifier for the ActionSheet. Used for aria-labelledby. * @aria aria-labelledby references ${id}-title */ id?: string; }; export declare const ActionSheet: KendoComponent<KendoActionSheetProps & React.HTMLAttributes<HTMLDivElement>>; export default ActionSheet;