docs: fix square typo (#9714)

* docs: fix square typo

* chore: revert cell props
This commit is contained in:
neverland 2021-10-23 22:55:01 +08:00 committed by GitHub
parent 610a41e88a
commit 24f8919d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -116,7 +116,7 @@ export default {
| speed | Animate speedrate/s | _number \| string_ | `0` | | speed | Animate speedrate/s | _number \| string_ | `0` |
| text | Text | _string_ | - | | text | Text | _string_ | - |
| stroke-width | Stroke width | _number \| string_ | `40` | | stroke-width | Stroke width | _number \| string_ | `40` |
| stroke-linecap | Stroke linecapcan be set to `sqaure` `butt` | _string_ | `round` | | stroke-linecap | Stroke linecapcan be set to `square` `butt` | _string_ | `round` |
| clockwise | Whether to be clockwise | _boolean_ | `true` | | clockwise | Whether to be clockwise | _boolean_ | `true` |
### Slots ### Slots

View File

@ -127,7 +127,7 @@ export default {
| speed | 动画速度(单位为 rate/s | _number \| string_ | `0` | | speed | 动画速度(单位为 rate/s | _number \| string_ | `0` |
| text | 文字 | _string_ | - | | text | 文字 | _string_ | - |
| stroke-width | 进度条宽度 | _number \| string_ | `40` | | stroke-width | 进度条宽度 | _number \| string_ | `40` |
| stroke-linecap | 进度条端点的形状,可选值为`sqaure` `butt` | _string_ | `round` | | stroke-linecap | 进度条端点的形状,可选值为`square` `butt` | _string_ | `round` |
| clockwise | 是否顺时针增加 | _boolean_ | `true` | | clockwise | 是否顺时针增加 | _boolean_ | `true` |
### Slots ### Slots

View File

@ -22,7 +22,7 @@ exports[`render icon-slot 1`] = `
</div> </div>
`; `;
exports[`sqaure and set gutter 1`] = ` exports[`square and set gutter 1`] = `
<div class="van-grid" style="padding-left: 10rem;"> <div class="van-grid" style="padding-left: 10rem;">
<div class="van-grid-item van-grid-item--square" style="flex-basis: 50%; padding-top: 50%;"> <div class="van-grid-item van-grid-item--square" style="flex-basis: 50%; padding-top: 50%;">
<div class="van-grid-item__content van-grid-item__content--center van-grid-item__content--square van-grid-item__content--surround van-hairline" style="right: 10rem; bottom: 10rem; height: auto;"></div> <div class="van-grid-item__content van-grid-item__content--center van-grid-item__content--square van-grid-item__content--surround van-hairline" style="right: 10rem; bottom: 10rem; height: auto;"></div>

View File

@ -19,7 +19,7 @@ test('click grid item', () => {
expect(onClick).toHaveBeenCalledTimes(1); expect(onClick).toHaveBeenCalledTimes(1);
}); });
test('sqaure and set gutter', () => { test('square and set gutter', () => {
const wrapper = mount({ const wrapper = mount({
template: ` template: `
<van-grid square :column-num="2" gutter="10rem"> <van-grid square :column-num="2" gutter="10rem">

View File

@ -13,7 +13,7 @@ import { DefaultSlots, ScopedSlot } from '../utils/types';
const [createComponent, bem, t] = createNamespace('search'); const [createComponent, bem, t] = createNamespace('search');
export type SearchProps = { export type SearchProps = {
shape: 'sqaure' | 'round'; shape: 'square' | 'round';
value?: string; value?: string;
label?: string; label?: string;
leftIcon: string; leftIcon: string;