diff --git a/src/List/ListItem.tsx b/src/List/ListItem.tsx index ef62fcd..6f2caab 100644 --- a/src/List/ListItem.tsx +++ b/src/List/ListItem.tsx @@ -64,7 +64,6 @@ const ListItem: React.FC = props => { ListItem.defaultProps = { subtitle: '', extra: '', - showAll: false, arrow: 'none', }; diff --git a/src/List/PropsType.ts b/src/List/PropsType.ts index 77bd4ce..7b90069 100644 --- a/src/List/PropsType.ts +++ b/src/List/PropsType.ts @@ -9,11 +9,6 @@ type listItemArrowType = 'up' | 'down' | 'horizontal' | 'none'; * List properties */ export interface IListPropsType { - /** - * @description 是否设置列表圆角 - * @default false - */ - radius?: boolean; /** * @description 列表头部内容 * @default "" @@ -44,11 +39,6 @@ export interface IListItemPropsType { * @type string | React.ReactElement */ extra?: renderType; - /** - * @description 列表额外内容是否换行显示全部内容 - * @default false - */ - showAll?: boolean; /** * @description 列表尾端箭头方向 设置none时不显示 * @default "none" diff --git a/src/List/index.tsx b/src/List/index.tsx index a897fbd..2770b73 100644 --- a/src/List/index.tsx +++ b/src/List/index.tsx @@ -28,7 +28,6 @@ const List: React.FC & { Item: typeof ListItem } = props => { List.Item = ListItem; List.defaultProps = { - radius: false, renderHeader: '', renderFooter: '', };