docs(components): [pagination] correct text & icon priority (#13743)

* docs(components): [pagination] correct text & icon priority

* docs(components): [pagination] improve description
This commit is contained in:
Jungzl 2023-08-07 10:13:58 +08:00 committed by GitHub
parent f2b6e1eb2b
commit 40b607f9ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,9 +80,9 @@ pagination/more-elements
| page-sizes | options of item count per page | ^[object]`number[]` | [10, 20, 30, 40, 50, 100] |
| popper-class | custom class name for the page size Select's dropdown | ^[string] | '' |
| prev-text | text for the prev button | ^[string] | '' |
| prev-icon | icon for the prev button, higher priority of `prev-text` | ^[string] / ^[Component] | ArrowLeft |
| prev-icon | icon for the prev button, has a lower priority than `prev-text` | ^[string] / ^[Component] | ArrowLeft |
| next-text | text for the next button | ^[string] | '' |
| next-icon | icon for the next button, higher priority of `next-text` | ^[string] / ^[Component] | ArrowRight |
| next-icon | icon for the next button, has a lower priority than `next-text` | ^[string] / ^[Component] | ArrowRight |
| disabled | whether Pagination is disabled | ^[boolean] | false |
| hide-on-single-page | whether to hide when there's only one page | ^[boolean] | false |