docs: sync english docs (#37892)

This commit is contained in:
KangXinzhi 2022-10-08 17:20:46 +08:00 committed by GitHub
parent 1a0823a908
commit e5c1e84a7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,6 +54,7 @@ return <Tabs items={items} />;
| centered | Centers tabs | boolean | false | 4.4.0 |
| defaultActiveKey | Initial active TabPane's key, if `activeKey` is not set | string | - | |
| hideAdd | Hide plus icon or not. Only works while `type="editable-card"` | boolean | false | |
| items | Configure tab content | [TabItem](#TabItem) | [] | 4.23.0 |
| moreIcon | The custom icon of ellipsis | ReactNode | &lt;EllipsisOutlined /> | 4.14.0 |
| popupClassName | `className` for more dropdown. | string | - | 4.21.0 |
| renderTabBar | Replace the TabBar | (props: DefaultTabBarProps, DefaultTabBar: React.ComponentClass) => React.ReactElement | - | |
@ -69,9 +70,9 @@ return <Tabs items={items} />;
| onTabClick | Callback executed when tab is clicked | function(key: string, event: MouseEvent) | - | |
| onTabScroll | Trigger when tab scroll | function({ direction: `left` \| `right` \| `top` \| `bottom` }) | - | 4.3.0 |
More option at [rc-tabs option](https://github.com/react-component/tabs#tabs)
More option at [rc-tabs tabs](https://github.com/react-component/tabs#tabs)
### Tabs.TabPane
### TabItem
| Property | Description | Type | Default |
| --- | --- | --- | --- |
@ -79,6 +80,5 @@ More option at [rc-tabs option](https://github.com/react-component/tabs#tabs)
| disabled | Set TabPane disabled | boolean | false |
| forceRender | Forced render of content in tabs, not lazy render after clicking on tabs | boolean | false |
| key | TabPane's key | string | - |
| tab | Show text in TabPane's head | ReactNode | - |
More option at [rc-tabs option](https://github.com/react-component/tabs#tabpane)
| label | TabPane's head display text | ReactNode | - |
| children | TabPane's head display content | ReactNode | - |