@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
23 lines (22 loc) • 735 B
TypeScript
export declare const UPLOAD_CLASSNAME = "k-upload";
declare const states: ("disabled" | "hover")[];
export type KendoUploadProps = {
async?: boolean;
empty?: boolean;
actions?: boolean;
actionsLayout?: 'start' | 'center' | 'end' | 'stretched';
status?: 'upload' | 'uploading' | 'done' | 'failed';
};
export type KendoUploadState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const Upload: {
(props: KendoUploadProps & KendoUploadState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("disabled" | "hover")[];
options: {};
className: string;
defaultOptions: {
readonly actionsLayout: "end";
};
};
export default Upload;