mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
d44f404eae
* chore: improve sort api table scripts
* sort api
* add ignore
* Revert "sort api"
This reverts commit 343505d5f0
.
* sort api
* Update package.json
* sort api
* Delete sort-api.js
* sort api
* sort api
* sort api
* fix
* Update index.zh-CN.md
* fix input-number
* fix input-number
* sort func
* fix
* Method moved to the end
* carousel method
1.4 KiB
1.4 KiB
category | type | title | cover |
---|---|---|---|
Components | Feedback | Popconfirm | https://gw.alipayobjects.com/zos/alicdn/fjMCD9xRq/Popconfirm.svg |
A simple and compact confirmation dialog of an action.
When To Use
A simple and compact dialog used for asking for user confirmation.
The difference with the confirm
modal dialog is that it's more lightweight than the static popped full-screen confirm modal.
API
Param | Description | Type | Default value |
---|---|---|---|
cancelButtonProps | The cancel button props | ButtonProps | - |
cancelText | The text of the Cancel button | string | Cancel |
disabled | Whether show popconfirm when click its childrenNode | boolean | false |
icon | Customize icon of confirmation | ReactNode | <ExclamationCircle /> |
okButtonProps | The ok button props | ButtonProps | - |
okText | The text of the Confirm button | string | OK |
okType | Button type of the Confirm button |
string | primary |
title | The title of the confirmation box | ReactNode | () => ReactNode | - |
onCancel | A callback of cancel | function(e) | - |
onConfirm | A callback of confirmation | function(e) | - |
Consult Tooltip's documentation to find more APIs.
Note
Please ensure that the child node of Popconfirm
accepts onMouseEnter
, onMouseLeave
, onFocus
, onClick
events.