diff --git a/packages/vant/src/cell/Cell.tsx b/packages/vant/src/cell/Cell.tsx index 2b734c743..59a4850c1 100644 --- a/packages/vant/src/cell/Cell.tsx +++ b/packages/vant/src/cell/Cell.tsx @@ -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, title: numericProp, value: numericProp, label: numericProp, diff --git a/packages/vant/src/cell/README.md b/packages/vant/src/cell/README.md index 555b60b65..11bb064b6 100644 --- a/packages/vant/src/cell/README.md +++ b/packages/vant/src/cell/README.md @@ -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 diff --git a/packages/vant/src/cell/README.zh-CN.md b/packages/vant/src/cell/README.zh-CN.md index 191af9cf1..9c6fa068b 100644 --- a/packages/vant/src/cell/README.zh-CN.md +++ b/packages/vant/src/cell/README.zh-CN.md @@ -202,7 +202,12 @@ app.use(CellGroup); 组件导出以下类型定义: ```ts -import type { CellProps, CellGroupProps, CellArrowDirection } from 'vant'; +import type { + CellSize, + CellProps, + CellGroupProps, + CellArrowDirection, +} from 'vant'; ``` ## 主题定制 diff --git a/packages/vant/src/cell/index.ts b/packages/vant/src/cell/index.ts index 83a830f34..d81f4eaf7 100644 --- a/packages/vant/src/cell/index.ts +++ b/packages/vant/src/cell/index.ts @@ -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';