From b3d6611c7458188710c820a8a3b0518d3ec54bf9 Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 17 Jan 2022 16:06:55 +0800 Subject: [PATCH] feat: provide english version of web-types (#10207) --- .../vant-cli/src/compiler/gen-vetur-config.ts | 2 +- packages/vant-markdown-vetur/src/vetur.ts | 16 ++++++++-------- packages/vant/src/action-bar/README.md | 2 +- packages/vant/src/button/README.md | 2 +- packages/vant/src/swipe/README.md | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/vant-cli/src/compiler/gen-vetur-config.ts b/packages/vant-cli/src/compiler/gen-vetur-config.ts index eb1209ba4..be9cf312b 100644 --- a/packages/vant-cli/src/compiler/gen-vetur-config.ts +++ b/packages/vant-cli/src/compiler/gen-vetur-config.ts @@ -16,7 +16,7 @@ export function genVeturConfig() { markdownVetur.parseAndWrite({ name: vantConfig.name, path: SRC_DIR, - test: /zh-CN\.md/, + test: /README\.md/, version: pkgJson.version, outputDir: VETUR_DIR, ...options, diff --git a/packages/vant-markdown-vetur/src/vetur.ts b/packages/vant-markdown-vetur/src/vetur.ts index ff3c424fe..8f6e40392 100644 --- a/packages/vant-markdown-vetur/src/vetur.ts +++ b/packages/vant-markdown-vetur/src/vetur.ts @@ -3,9 +3,9 @@ import { VueTag, VeturTags, VeturAttributes, VeturAttribute } from './type'; export function genVeturTags(tags: VueTag[]) { const veturTags: VeturTags = {}; - tags.forEach(tag => { + tags.forEach((tag) => { veturTags[tag.name] = { - attributes: tag.attributes ? tag.attributes.map(item => item.name) : [], + attributes: tag.attributes ? tag.attributes.map((item) => item.name) : [], }; }); @@ -15,16 +15,16 @@ export function genVeturTags(tags: VueTag[]) { export function genVeturAttributes(tags: VueTag[]) { const veturAttributes: VeturAttributes = {}; - tags.forEach(tag => { + tags.forEach((tag) => { if (tag.attributes) { - tag.attributes.forEach(attr => { - let attribute: VeturAttribute = { + tag.attributes.forEach((attr) => { + const attribute: VeturAttribute = { type: attr.value.type, - description: `${attr.description}, 默认值: ${attr.default}` - } + description: `${attr.description}, Default: ${attr.default}`, + }; if (attr.options.length > 0) { - attribute.options = attr.options + attribute.options = attr.options; } veturAttributes[`${tag.name}/${attr.name}`] = attribute; diff --git a/packages/vant/src/action-bar/README.md b/packages/vant/src/action-bar/README.md index e49909626..e8794c313 100644 --- a/packages/vant/src/action-bar/README.md +++ b/packages/vant/src/action-bar/README.md @@ -116,7 +116,7 @@ Use `badge` prop to show badge in icon. | color | Button color, support linear-gradient | _string_ | - | | icon | Left Icon | _string_ | - | | disabled | Whether to disable button | _boolean_ | `false` | -| loading | Whether show loading status | _boolean_ | `false` | +| loading | Whether to show loading status | _boolean_ | `false` | | url | Link | _string_ | - | | to | Target route of the link, same as to of vue-router | _string \| object_ | - | | replace | If true, the navigation will not leave a history record | _boolean_ | `false` | diff --git a/packages/vant/src/button/README.md b/packages/vant/src/button/README.md index 4d30b75c8..2e7fdbf0a 100644 --- a/packages/vant/src/button/README.md +++ b/packages/vant/src/button/README.md @@ -126,7 +126,7 @@ app.use(Button); | round | Whether to be round button | _boolean_ | `false` | | square | Whether to be square button | _boolean_ | `false` | | disabled | Whether to disable button | _boolean_ | `false` | -| loading | Whether show loading status | _boolean_ | `false` | +| loading | Whether to show loading status | _boolean_ | `false` | | loading-text | Loading text | _string_ | - | | loading-type | Loading type, can be set to `spinner` | _string_ | `circular` | | loading-size | Loading icon size | _number \| string_ | `20px` | diff --git a/packages/vant/src/swipe/README.md b/packages/vant/src/swipe/README.md index ea11871ab..eb78fc8cc 100644 --- a/packages/vant/src/swipe/README.md +++ b/packages/vant/src/swipe/README.md @@ -146,8 +146,8 @@ export default { | autoplay | Autoplay interval (ms) | _number \| string_ | - | | duration | Animation duration (ms) | _number \| string_ | `500` | | initial-swipe | Index of initial swipe, start from 0 | _number \| string_ | `0` | -| width | Set Swiper Item Width | _number \| string_ | `0` | -| height | Set Swiper Item Height | _number \| string_ | `0` | +| width | Width of swipe item | _number \| string_ | `0` | +| height | Height of swipe item | _number \| string_ | `0` | | loop | Whether to enable loop | _boolean_ | `true` | | show-indicators | Whether to show indicators | _boolean_ | `true` | | vertical | Whether to be vertical Scrolling | _boolean_ | `false` |