types(Cell): add CellSize type (#9802)

This commit is contained in:
neverland 2021-11-04 19:34:51 +08:00 committed by GitHub
parent 7d1b57fde3
commit 30510c01c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -23,11 +23,13 @@ import { Icon } from '../icon';
const [name, bem] = createNamespace('cell');
export type CellSize = 'normal' | 'large';
export type CellArrowDirection = 'up' | 'down' | 'left' | 'right';
export const cellSharedProps = {
icon: String,
size: String as PropType<'large'>,
size: String as PropType<CellSize>,
title: numericProp,
value: numericProp,
label: numericProp,

View File

@ -197,7 +197,12 @@ app.use(CellGroup);
The component exports the following type definitions:
```ts
import type { CellProps, CellGroupProps, CellArrowDirection } from 'vant';
import type {
CellSize,
CellProps,
CellGroupProps,
CellArrowDirection,
} from 'vant';
```
## Theming

View File

@ -202,7 +202,12 @@ app.use(CellGroup);
组件导出以下类型定义:
```ts
import type { CellProps, CellGroupProps, CellArrowDirection } from 'vant';
import type {
CellSize,
CellProps,
CellGroupProps,
CellArrowDirection,
} from 'vant';
```
## 主题定制

View File

@ -3,4 +3,4 @@ import _Cell from './Cell';
export const Cell = withInstall(_Cell);
export default Cell;
export type { CellProps, CellArrowDirection } from './Cell';
export type { CellSize, CellProps, CellArrowDirection } from './Cell';