From 15ca5f0787da0c816a3cdf7596c19e71c92a508e Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Fri, 20 Aug 2021 21:50:41 +0800 Subject: [PATCH] refactor: tree-select --- components/vc-tree-select/OptionList.tsx | 26 ------------------------ components/vc-tree-select/props.ts | 10 ++++----- 2 files changed, 5 insertions(+), 31 deletions(-) diff --git a/components/vc-tree-select/OptionList.tsx b/components/vc-tree-select/OptionList.tsx index 60ee95d2b..2e81cc9ca 100644 --- a/components/vc-tree-select/OptionList.tsx +++ b/components/vc-tree-select/OptionList.tsx @@ -22,32 +22,6 @@ interface TreeEventInfo { checked?: boolean; } -export interface OptionListProps { - prefixCls: string; - id: string; - options: OptionsType; - flattenOptions: FlattenDataNode[]; - height: number; - itemHeight: number; - virtual?: boolean; - values: Set; - multiple: boolean; - open: boolean; - defaultActiveFirstOption?: boolean; - notFoundContent?: any; - menuItemSelectedIcon?: any; - childrenAsData: boolean; - searchValue: string; - - onSelect: (value: RawValueType, option: { selected: boolean }) => void; - onToggleOpen: (open?: boolean) => void; - /** Tell Select that some value is now active to make accessibility work */ - onActiveValue: (value: RawValueType, index: number) => void; - onScroll: UIEvent; - - onMouseenter: () => void; -} - type ReviseRefOptionListProps = Omit & { scrollTo: ScrollTo }; export default defineComponent({ diff --git a/components/vc-tree-select/props.ts b/components/vc-tree-select/props.ts index c64fb134a..7ed250429 100644 --- a/components/vc-tree-select/props.ts +++ b/components/vc-tree-select/props.ts @@ -3,11 +3,11 @@ import type { DataNode } from '../tree'; import PropTypes from '../_util/vue-types'; import type { FlattenDataNode, RawValueType } from './interface'; -export function optionListProps() { +export function optionListProps() { return { prefixCls: String, id: String, - options: { type: Array as PropType as PropType }, + options: { type: Array as PropType }, flattenOptions: { type: Array as PropType }, height: Number, itemHeight: Number, @@ -33,9 +33,9 @@ export function optionListProps() { }; } -class Helper { +class Helper { Return = optionListProps(); } -type FuncReturnType = Helper['Return']; +type FuncReturnType = Helper['Return']; -export type OptionListProps = Partial>>; +export type OptionListProps = Partial>>;