diff --git a/components/popconfirm/index.en-US.md b/components/popconfirm/index.en-US.md index e49cfbc4f1..e4e8a48ddb 100644 --- a/components/popconfirm/index.en-US.md +++ b/components/popconfirm/index.en-US.md @@ -24,3 +24,4 @@ The difference with `confirm` is more lightweight than the static popped full-sc | okText | text of the confirmation button | String | Confirm | | cancelText| text of the cancel button | String | Cancel | | openClassName | class name of the trigger, using for highlighting the trigger while triggered | string | ant-popover-open | +| arrowPointAtCenter | whether arrow pointed at the center of target, supported after `antd@1.11+` | Boolean | `false` | diff --git a/components/popover/index.en-US.md b/components/popover/index.en-US.md index fb38fb1319..caac6a8f54 100644 --- a/components/popover/index.en-US.md +++ b/components/popover/index.en-US.md @@ -26,3 +26,4 @@ Comparing with `Tooltip`, besides information `Popover` card can also provide ac | onVisibleChange | callback of the visible attribute changed | function | none | | getTooltipContainer | rendered to the root of the menu. Default rendered to the body dom. If gets any problem of the menu while scrolling. Try to make the root the dom scrolled, and make it position relative. [Sample](http://codepen.io/anon/pen/xVBOVQ?editors=001) | Function(triggerNode) | () => document.body | | openClassName | class name of the trigger, using for highlighting the trigger while triggered | string | ant-popover-open | +| arrowPointAtCenter | whether arrow pointed at the center of target, supported after `antd@1.11+` | Boolean | `false` | diff --git a/components/tooltip/index.en-US.md b/components/tooltip/index.en-US.md index 909e4ee78d..6d92d208e5 100644 --- a/components/tooltip/index.en-US.md +++ b/components/tooltip/index.en-US.md @@ -8,9 +8,9 @@ A simple text popup tip. ## When To Use -- The tip shows while mouse enter, and hides while mouse leave, the ToolTip doesn't support complex text and operation. +- The tip shows while mouse enter, and hides while mouse leave, the ToolTip doesn't support complex text and operation. -- It can provide a explain of `button/text/opration`, that can cover the usage of the default system `title`. +- It can provide a explain of `button/text/opration`, that can cover the usage of the default system `title`. ## API @@ -19,5 +19,6 @@ A simple text popup tip. | placement | to set the position, which can be one of `top` `left` `right` `bottom` `topLeft` `topRight` `bottomLeft` `bottomRight` `leftTop` `leftBottom` `rightTop` `rightBottom` | string | top | | title | prompt text | string/React.Element | - | | getTooltipContainer | to set the container of the tip, while the default is to create a `div` element in `body` | Function(triggerNode) | () => document.body | +| arrowPointAtCenter | whether arrow pointed at the center of target, supported after `antd@1.11+` | Boolean | `false` | You can visit https://github.com/react-component/tooltip for more API.