types(Skeleton): add SkeletonAvatarShape type (#9605)

This commit is contained in:
neverland 2021-09-30 17:53:29 +08:00 committed by GitHub
parent a7b5fb2af6
commit 3fc3dd3f6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View File

@ -73,6 +73,14 @@ export default {
| avatar-size | Size of avatar placeholder | _number \| string_ | `32px` |
| avatar-shape | Shape of avatar placeholdercan be set to `square` | _string_ | `round` |
### Types
The component exports the following type definitions:
```ts
import type { SkeletonAvatarShape } from 'vant';
```
## Theming
### CSS Variables

View File

@ -79,6 +79,14 @@ export default {
| avatar-size | 头像占位图大小 | _number \| string_ | `32px` |
| avatar-shape | 头像占位图形状,可选值为 `square` | _string_ | `round` |
### 类型定义
组件导出以下类型定义:
```ts
import type { SkeletonAvatarShape } from 'vant';
```
## 主题定制
### 样式变量

View File

@ -1,5 +1,6 @@
import { withInstall } from '../utils';
import _Skeleton from './Skeleton';
import _Skeleton, { SkeletonAvatarShape } from './Skeleton';
export const Skeleton = withInstall(_Skeleton);
export default Skeleton;
export type { SkeletonAvatarShape };