chore: update type modal (#2711)

pull/2716/head
binhaoCen 2020-08-19 10:08:24 +08:00 committed by GitHub
parent 0c15958484
commit 69509e9c38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 144 additions and 129 deletions

79
types/modal.d.ts vendored
View File

@ -3,7 +3,7 @@
// Definitions: https://github.com/vueComponent/ant-design-vue/types // Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from './component'; import { AntdComponent } from './component';
import { VNode } from 'vue'; import { VNode, CSSProperties, VNodeChild } from 'vue';
import { TreeNode } from './tree-node'; import { TreeNode } from './tree-node';
import { Button } from './button/button'; import { Button } from './button/button';
@ -39,10 +39,15 @@ export interface ModalOptions {
* Modal content * Modal content
* @type string | VNode | (h) => VNode * @type string | VNode | (h) => VNode
*/ */
content?: any; content?: VNodeChild | JSX.Element;
/**
* custom icon (Added in 1.14.0)
*/
icon?: VNode | Function; icon?: VNode | Function;
/**
* Whether show mask or not.
* @default true
*/
mask?: boolean; mask?: boolean;
/** /**
@ -89,7 +94,7 @@ export interface ModalOptions {
* Title * Title
* @type string | VNode | (h) => VNode * @type string | VNode | (h) => VNode
*/ */
title?: any; title?: VNodeChild | JSX.Element;
/** /**
* Width of the modal dialog * Width of the modal dialog
@ -104,8 +109,13 @@ export interface ModalOptions {
* @type number * @type number
*/ */
zIndex?: number; zIndex?: number;
/**
dialogStyle?: object; * Style of floating layer, typically used at least for adjusting the position.
*/
dialogStyle?: CSSProperties
/**
* className of floating layer.
*/
dialogClass?: string; dialogClass?: string;
/** /**
@ -123,7 +133,9 @@ export interface ModalOptions {
* @type Function * @type Function
*/ */
onOk?: () => any; onOk?: () => any;
/**
* The parent context of the popup is generally used to get the parent provider, such as the configuration of ConfigProvider
*/
parentContext?: object; parentContext?: object;
} }
@ -141,150 +153,153 @@ export interface ModalConfirm {
} }
export declare class Modal extends AntdComponent { export declare class Modal extends AntdComponent {
$props: {
/** /**
* Specify a function that will be called when modal is closed completely. * Specify a function that will be called when modal is closed completely.
* @type Function * @type Function
*/ */
afterClose: () => any; afterClose?: () => any;
/** /**
* Body style for modal body element. Such as height, padding etc. * Body style for modal body element. Such as height, padding etc.
* @default {} * @default {}
* @type object * @type object
*/ */
bodyStyle: object; bodyStyle?: CSSProperties;
/** /**
* Text of the Cancel button * Text of the Cancel button
* @default 'cancel' * @default 'cancel'
* @type string * @type string
*/ */
cancelText: string; cancelText?: string;
/** /**
* Centered Modal * Centered Modal
* @default false * @default false
* @type boolean * @type boolean
*/ */
centered: boolean; centered?: boolean;
/** /**
* Whether a close (x) button is visible on top right of the modal dialog or not * Whether a close (x) button is visible on top right of the modal dialog or not
* @default true * @default true
* @type boolean * @type boolean
*/ */
closable: boolean; closable?: boolean;
/**
closeIcon: any; * Whether a close (x) button is visible on top right of the modal dialog or not
*/
closeIcon?: VNodeChild | JSX.Element;
/** /**
* Whether to apply loading visual effect for OK button or not * Whether to apply loading visual effect for OK button or not
* @default false * @default false
* @type boolean * @type boolean
*/ */
confirmLoading: boolean; confirmLoading?: boolean;
/** /**
* Whether to unmount child components on onClose * Whether to unmount child components on onClose
* @default false * @default false
* @type boolean * @type boolean
*/ */
destroyOnClose: boolean; destroyOnClose?: boolean;
/** /**
* Footer content, set as :footer="null" when you don't need default buttons * Footer content, set as :footer="null" when you don't need default buttons
* @default OK and Cancel buttons * @default OK and Cancel buttons
* @type any (string | slot) * @type any (string | slot)
*/ */
footer: any; footer?: VNodeChild | JSX.Element;
/** /**
* Return the mount node for Modal * Return the mount node for Modal
* @default () => document.body * @default () => document.body
* @type Function * @type Function
*/ */
getContainer: (instance: any) => HTMLElement; getContainer?: (instance: any) => HTMLElement;
/** /**
* Whether show mask or not. * Whether show mask or not.
* @default true * @default true
* @type boolean * @type boolean
*/ */
mask: boolean; mask?: boolean;
/** /**
* Whether to close the modal dialog when the mask (area outside the modal) is clicked * Whether to close the modal dialog when the mask (area outside the modal) is clicked
* @default true * @default true
* @type boolean * @type boolean
*/ */
maskClosable: boolean; maskClosable?: boolean;
/** /**
* Style for modal's mask element. * Style for modal's mask element.
* @default {} * @default {}
* @type object * @type object
*/ */
maskStyle: object; maskStyle?: CSSProperties;
/** /**
* Text of the OK button * Text of the OK button
* @default 'OK' * @default 'OK'
* @type string * @type string
*/ */
okText: string; okText?: string;
/** /**
* Button type of the OK button * Button type of the OK button
* @default 'primary' * @default 'primary'
* @type string * @type string
*/ */
okType: 'primary' | 'danger' | 'dashed' | 'ghost' | 'default'; okType?: 'primary' | 'danger' | 'dashed' | 'ghost' | 'default';
/** /**
* The ok button props, follow jsx rules * The ok button props, follow jsx rules
* @type object * @type object
*/ */
okButtonProps: { props: Button; on: {} }; okButtonProps?: { props: Button; on: {} };
/** /**
* The cancel button props, follow jsx rules * The cancel button props, follow jsx rules
* @type object * @type object
*/ */
cancelButtonProps: { props: Button; on: {} }; cancelButtonProps?: { props: Button; on: {} };
/** /**
* The modal dialog's title * The modal dialog's title
* @type any (string | slot) * @type any (string | slot)
*/ */
title: any; title?: VNodeChild | JSX.Element;
/** /**
* Whether the modal dialog is visible or not * Whether the modal dialog is visible or not
* @default false * @default false
* @type boolean * @type boolean
*/ */
visible: boolean; visible?: boolean;
/** /**
* Width of the modal dialog * Width of the modal dialog
* @default 520 * @default 520
* @type string | number * @type string | number
*/ */
width: string | number; width?: string | number;
/** /**
* The class name of the container of the modal dialog * The class name of the container of the modal dialog
* @type string * @type string
*/ */
wrapClassName: string; wrapClassName?: string;
/** /**
* The z-index of the Modal * The z-index of the Modal
* @default 1000 * @default 1000
* @type number * @type number
*/ */
zIndex: number; zIndex?: number;
}
static info(options: ModalOptions): ModalConfirm; static info(options: ModalOptions): ModalConfirm;
static success(options: ModalOptions): ModalConfirm; static success(options: ModalOptions): ModalConfirm;
static error(options: ModalOptions): ModalConfirm; static error(options: ModalOptions): ModalConfirm;