Browse Source

docs: update Tab english doc (#7644)

Fixed typos.
pull/7649/head
Khalifa Lame 7 years ago
committed by Benjy Cui
parent
commit
a3d4b753b9
  1. 34
      components/tabs/index.en-US.md

34
components/tabs/index.en-US.md

@ -9,7 +9,7 @@ Tabs make it easy to switch between different views.
### When To Use ### When To Use
Ant Design has 3 types Tabs for different situation. Ant Design has 3 types of Tabs for different situations.
- Card Tabs: for managing too many closeable views. - Card Tabs: for managing too many closeable views.
- Normal Tabs: for functional aspects of a page. - Normal Tabs: for functional aspects of a page.
@ -21,23 +21,23 @@ Ant Design has 3 types Tabs for different situation.
| Property | Description | Type | Default | | Property | Description | Type | Default |
|--------------|-----------------------|----------|--------------| |--------------|-----------------------|----------|--------------|
| activeKey | Current TabPane's key| string | _ | | activeKey | Current TabPane's key| string | - |
| defaultActiveKey | Default actived tabPanel's key, if activeKey is not setted. | - | | defaultActiveKey | Initial active TabPane's key, if `activeKey` is not set. | string | - |
| onChange | Callback when tab is switched | Function | - | | onChange | Callback executed when active tab is changed | Function | - |
| onTabClick | Callback when tab is clicked | Function | - | | onTabClick | Callback executed when tab is clicked | Function | - |
| onPrevClick | Callback when prev button is clicked | Function | 无 | | onPrevClick | Callback executed when prev button is clicked | Function | - |
| onNextClick | Callback when next button is clicked | Function | 无 | | onNextClick | Callback executed when next button is clicked | Function | - |
| tabBarExtraContent | Extra element in tab bar | React.ReactNode | - | | tabBarExtraContent | Extra content in tab bar | React.ReactNode | - |
| tabBarStyle | tar bar style object | object | - | | tabBarStyle | Tab bar style object | object | - |
| type | Basic style of tabs. Options: line, card & editable-card | string | line | | type | Basic style of tabs | `line` \| `card` \| `editable-card` | `line` |
| size | Tab bar size. Options: default, small. Only works while `type="line"`. | string | default | | size | Tab bar size. Only works while `type="line"`. | `default` \| `small` | `default` |
| tabPosition | Position of tabs. Options: top, right, bottom & left | string | top | | tabPosition | Position of tabs | `top` \| `right` \| `bottom` \| `left` | `top` |
| onEdit | Callback when tab is added or removed, which is executing when set type as editable-card | (targetKey, action): void | - | | onEdit | Callback executed when tab is added or removed. Only works while `type="editable-card"` | (targetKey, action): void | - |
| hideAdd | Hide plus icon or not, which is effective when set type as editable-card | boolean | false | | hideAdd | Hide plus icon or not. Only works while `type="editable-card"` | boolean | `false` |
| animated | Whether to change tabs with animation, this property only works with `tabPosition=top|bottom` | boolean \| {inkBar:boolean, tabPane:boolean} | true, false when type="card" | | animated | Whether to change tabs with animation. Only works while `tabPosition="top"\|"bottom"` | boolean \| {inkBar:boolean, tabPane:boolean} | `true`, `false` when `type="card"` |
### Tabs.TabPane ### Tabs.TabPane
| Property | Description | Type | Default | | Property | Description | Type | Default |
|--------------|-----------------------|----------|--------------| |--------------|-----------------------|----------|--------------|
| key | TabPane's key | string | _ | | key | TabPane's key | string | - |
| tab | Show text in TabPane's head | string\|ReactNode | _ | | tab | Show text in TabPane's head | string\|ReactNode | - |

Loading…
Cancel
Save