feat: provide english version of web-types (#10207)

This commit is contained in:
neverland 2022-01-17 16:06:55 +08:00 committed by GitHub
parent d4aebef89c
commit b3d6611c74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 deletions

View File

@ -16,7 +16,7 @@ export function genVeturConfig() {
markdownVetur.parseAndWrite({ markdownVetur.parseAndWrite({
name: vantConfig.name, name: vantConfig.name,
path: SRC_DIR, path: SRC_DIR,
test: /zh-CN\.md/, test: /README\.md/,
version: pkgJson.version, version: pkgJson.version,
outputDir: VETUR_DIR, outputDir: VETUR_DIR,
...options, ...options,

View File

@ -3,9 +3,9 @@ import { VueTag, VeturTags, VeturAttributes, VeturAttribute } from './type';
export function genVeturTags(tags: VueTag[]) { export function genVeturTags(tags: VueTag[]) {
const veturTags: VeturTags = {}; const veturTags: VeturTags = {};
tags.forEach(tag => { tags.forEach((tag) => {
veturTags[tag.name] = { 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[]) { export function genVeturAttributes(tags: VueTag[]) {
const veturAttributes: VeturAttributes = {}; const veturAttributes: VeturAttributes = {};
tags.forEach(tag => { tags.forEach((tag) => {
if (tag.attributes) { if (tag.attributes) {
tag.attributes.forEach(attr => { tag.attributes.forEach((attr) => {
let attribute: VeturAttribute = { const attribute: VeturAttribute = {
type: attr.value.type, type: attr.value.type,
description: `${attr.description}, 默认值: ${attr.default}` description: `${attr.description}, Default: ${attr.default}`,
} };
if (attr.options.length > 0) { if (attr.options.length > 0) {
attribute.options = attr.options attribute.options = attr.options;
} }
veturAttributes[`${tag.name}/${attr.name}`] = attribute; veturAttributes[`${tag.name}/${attr.name}`] = attribute;

View File

@ -116,7 +116,7 @@ Use `badge` prop to show badge in icon.
| color | Button color, support linear-gradient | _string_ | - | | color | Button color, support linear-gradient | _string_ | - |
| icon | Left Icon | _string_ | - | | icon | Left Icon | _string_ | - |
| disabled | Whether to disable 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` |
| url | Link | _string_ | - | | url | Link | _string_ | - |
| to | Target route of the link, same as to of vue-router | _string \| object_ | - | | 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` | | replace | If true, the navigation will not leave a history record | _boolean_ | `false` |

View File

@ -126,7 +126,7 @@ app.use(Button);
| round | Whether to be round button | _boolean_ | `false` | | round | Whether to be round button | _boolean_ | `false` |
| square | Whether to be square button | _boolean_ | `false` | | square | Whether to be square button | _boolean_ | `false` |
| disabled | Whether to disable 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-text | Loading text | _string_ | - |
| loading-type | Loading type, can be set to `spinner` | _string_ | `circular` | | loading-type | Loading type, can be set to `spinner` | _string_ | `circular` |
| loading-size | Loading icon size | _number \| string_ | `20px` | | loading-size | Loading icon size | _number \| string_ | `20px` |

View File

@ -146,8 +146,8 @@ export default {
| autoplay | Autoplay interval (ms) | _number \| string_ | - | | autoplay | Autoplay interval (ms) | _number \| string_ | - |
| duration | Animation duration (ms) | _number \| string_ | `500` | | duration | Animation duration (ms) | _number \| string_ | `500` |
| initial-swipe | Index of initial swipe, start from 0 | _number \| string_ | `0` | | initial-swipe | Index of initial swipe, start from 0 | _number \| string_ | `0` |
| width | Set Swiper Item Width | _number \| string_ | `0` | | width | Width of swipe item | _number \| string_ | `0` |
| height | Set Swiper Item Height | _number \| string_ | `0` | | height | Height of swipe item | _number \| string_ | `0` |
| loop | Whether to enable loop | _boolean_ | `true` | | loop | Whether to enable loop | _boolean_ | `true` |
| show-indicators | Whether to show indicators | _boolean_ | `true` | | show-indicators | Whether to show indicators | _boolean_ | `true` |
| vertical | Whether to be vertical Scrolling | _boolean_ | `false` | | vertical | Whether to be vertical Scrolling | _boolean_ | `false` |