fix: types error
parent
103a05a471
commit
7fe34def78
|
@ -72,7 +72,7 @@ const OptionListProps = {
|
||||||
* Using virtual list of option display.
|
* Using virtual list of option display.
|
||||||
* Will fallback to dom if use customize render.
|
* Will fallback to dom if use customize render.
|
||||||
*/
|
*/
|
||||||
const OptionList = defineComponent<OptionListProps>({
|
const OptionList = defineComponent<OptionListProps, { state: any }>({
|
||||||
name: 'OptionList',
|
name: 'OptionList',
|
||||||
inheritAttrs: false,
|
inheritAttrs: false,
|
||||||
setup(props) {
|
setup(props) {
|
||||||
|
@ -251,7 +251,14 @@ const OptionList = defineComponent<OptionListProps>({
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
const { renderItem, listRef, onListMouseDown, itemPrefixCls, setActive, onSelectValue } = this;
|
const {
|
||||||
|
renderItem,
|
||||||
|
listRef,
|
||||||
|
onListMouseDown,
|
||||||
|
itemPrefixCls,
|
||||||
|
setActive,
|
||||||
|
onSelectValue,
|
||||||
|
} = this as any;
|
||||||
const {
|
const {
|
||||||
id,
|
id,
|
||||||
childrenAsData,
|
childrenAsData,
|
||||||
|
@ -264,7 +271,7 @@ const OptionList = defineComponent<OptionListProps>({
|
||||||
virtual,
|
virtual,
|
||||||
onScroll,
|
onScroll,
|
||||||
onMouseenter,
|
onMouseenter,
|
||||||
} = this.$props;
|
} = this.$props as OptionListProps;
|
||||||
const { activeIndex } = this.state;
|
const { activeIndex } = this.state;
|
||||||
// ========================== Render ==========================
|
// ========================== Render ==========================
|
||||||
if (flattenOptions.length === 0) {
|
if (flattenOptions.length === 0) {
|
||||||
|
|
|
@ -57,13 +57,13 @@ export interface SelectTriggerProps {
|
||||||
dropdownClassName: string;
|
dropdownClassName: string;
|
||||||
direction: string;
|
direction: string;
|
||||||
dropdownMatchSelectWidth?: boolean | number;
|
dropdownMatchSelectWidth?: boolean | number;
|
||||||
dropdownRender?: (menu: VNodeChild) => VNodeChild;
|
dropdownRender?: (menu: VNodeChild | JSX.Element) => VNodeChild;
|
||||||
getPopupContainer?: RenderDOMFunc;
|
getPopupContainer?: RenderDOMFunc;
|
||||||
dropdownAlign: object;
|
dropdownAlign: object;
|
||||||
empty: boolean;
|
empty: boolean;
|
||||||
getTriggerDOMNode: () => any;
|
getTriggerDOMNode: () => any;
|
||||||
}
|
}
|
||||||
const SelectTrigger = defineComponent<SelectTriggerProps>({
|
const SelectTrigger = defineComponent<SelectTriggerProps, { popupRef: any }>({
|
||||||
name: 'SelectTrigger',
|
name: 'SelectTrigger',
|
||||||
inheritAttrs: false,
|
inheritAttrs: false,
|
||||||
created() {
|
created() {
|
||||||
|
@ -90,6 +90,8 @@ const SelectTrigger = defineComponent<SelectTriggerProps>({
|
||||||
dropdownRender,
|
dropdownRender,
|
||||||
animation,
|
animation,
|
||||||
transitionName,
|
transitionName,
|
||||||
|
direction,
|
||||||
|
getPopupContainer,
|
||||||
} = props as SelectTriggerProps;
|
} = props as SelectTriggerProps;
|
||||||
const dropdownPrefixCls = `${prefixCls}-dropdown`;
|
const dropdownPrefixCls = `${prefixCls}-dropdown`;
|
||||||
|
|
||||||
|
@ -114,20 +116,19 @@ const SelectTrigger = defineComponent<SelectTriggerProps>({
|
||||||
{...props}
|
{...props}
|
||||||
showAction={[]}
|
showAction={[]}
|
||||||
hideAction={[]}
|
hideAction={[]}
|
||||||
popupPlacement={this.direction === 'rtl' ? 'bottomRight' : 'bottomLeft'}
|
popupPlacement={direction === 'rtl' ? 'bottomRight' : 'bottomLeft'}
|
||||||
builtinPlacements={builtInPlacements}
|
builtinPlacements={builtInPlacements}
|
||||||
prefixCls={dropdownPrefixCls}
|
prefixCls={dropdownPrefixCls}
|
||||||
popupTransitionName={mergedTransitionName}
|
popupTransitionName={mergedTransitionName}
|
||||||
onPopupVisibleChange={props.onDropdownVisibleChange}
|
|
||||||
popup={<div ref={this.popupRef}>{popupNode}</div>}
|
popup={<div ref={this.popupRef}>{popupNode}</div>}
|
||||||
popupAlign={dropdownAlign}
|
popupAlign={dropdownAlign}
|
||||||
popupVisible={visible}
|
popupVisible={visible}
|
||||||
getPopupContainer={props.getPopupContainer}
|
getPopupContainer={getPopupContainer}
|
||||||
popupClassName={classNames(dropdownClassName, {
|
popupClassName={classNames(dropdownClassName, {
|
||||||
[`${dropdownPrefixCls}-empty`]: empty,
|
[`${dropdownPrefixCls}-empty`]: empty,
|
||||||
})}
|
})}
|
||||||
popupStyle={popupStyle}
|
popupStyle={popupStyle}
|
||||||
getTriggerDOMNode={this.getTriggerDOMNode}
|
// getTriggerDOMNode={getTriggerDOMNode}
|
||||||
>
|
>
|
||||||
{getSlot(this)[0]}
|
{getSlot(this)[0]}
|
||||||
</Trigger>
|
</Trigger>
|
||||||
|
|
|
@ -27,7 +27,7 @@ interface InputProps {
|
||||||
onCompositionend: EventHandlerNonNull;
|
onCompositionend: EventHandlerNonNull;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Input = defineComponent<InputProps>({
|
const Input = defineComponent<InputProps, { VCSelectContainerEvent: any }>({
|
||||||
name: 'Input',
|
name: 'Input',
|
||||||
inheritAttrs: false,
|
inheritAttrs: false,
|
||||||
setup() {
|
setup() {
|
||||||
|
|
|
@ -113,7 +113,7 @@ export interface SelectProps<OptionsType extends object[], ValueType> {
|
||||||
dropdownClassName?: string;
|
dropdownClassName?: string;
|
||||||
dropdownMatchSelectWidth?: boolean | number;
|
dropdownMatchSelectWidth?: boolean | number;
|
||||||
virtual?: boolean;
|
virtual?: boolean;
|
||||||
dropdownRender?: (menu: VNodeChild) => VNodeChild;
|
dropdownRender?: (menu: VNodeChild | JSX.Element) => VNodeChild;
|
||||||
dropdownAlign?: any;
|
dropdownAlign?: any;
|
||||||
animation?: string;
|
animation?: string;
|
||||||
transitionName?: string;
|
transitionName?: string;
|
||||||
|
|
|
@ -11,7 +11,7 @@ export default function useCacheOptions<
|
||||||
>(_values: RawValueType[], options: Ref) {
|
>(_values: RawValueType[], options: Ref) {
|
||||||
const optionMap = computed(() => {
|
const optionMap = computed(() => {
|
||||||
const map: Map<RawValueType, FlattenOptionsType<OptionsType>[number]> = new Map();
|
const map: Map<RawValueType, FlattenOptionsType<OptionsType>[number]> = new Map();
|
||||||
options.value.forEach(item => {
|
options.value.forEach((item: any) => {
|
||||||
const {
|
const {
|
||||||
data: { value },
|
data: { value },
|
||||||
} = item;
|
} = item;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { flattenChildren, isValidElement } from '../../_util/props-util';
|
import { flattenChildren, isValidElement } from '../../_util/props-util';
|
||||||
import { VNode } from 'vue';
|
import { VNode, VNodeChild } from 'vue';
|
||||||
import { OptionData, OptionGroupData, OptionsType } from '../interface';
|
import { OptionData, OptionGroupData, OptionsType } from '../interface';
|
||||||
|
|
||||||
function convertNodeToOption(node: VNode): OptionData {
|
function convertNodeToOption(node: VNode): OptionData {
|
||||||
|
@ -14,8 +14,11 @@ function convertNodeToOption(node: VNode): OptionData {
|
||||||
return { key, value: value !== undefined ? value : key, children: child, ...restProps };
|
return { key, value: value !== undefined ? value : key, children: child, ...restProps };
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertChildrenToData(nodes: any[], optionOnly = false): OptionsType {
|
export function convertChildrenToData(
|
||||||
const dd = flattenChildren(nodes)
|
nodes: VNodeChild | JSX.Element,
|
||||||
|
optionOnly = false,
|
||||||
|
): OptionsType {
|
||||||
|
const dd = flattenChildren(nodes as [])
|
||||||
.map((node: VNode, index: number): OptionData | OptionGroupData | null => {
|
.map((node: VNode, index: number): OptionData | OptionGroupData | null => {
|
||||||
if (!isValidElement(node) || !node.type) {
|
if (!isValidElement(node) || !node.type) {
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -128,7 +128,7 @@ export const getLabeledValue: GetLabeledValue<FlattenOptionData[]> = (
|
||||||
};
|
};
|
||||||
|
|
||||||
let prevValItem: LabelValueType;
|
let prevValItem: LabelValueType;
|
||||||
const prevValues = toArray<RawValueType | LabelValueType>(prevValue);
|
const prevValues = toArray<LabelValueType>(prevValue as LabelValueType);
|
||||||
if (labelInValue) {
|
if (labelInValue) {
|
||||||
prevValItem = prevValues.find((prevItem: LabelValueType) => {
|
prevValItem = prevValues.find((prevItem: LabelValueType) => {
|
||||||
if (typeof prevItem === 'object' && 'value' in prevItem) {
|
if (typeof prevItem === 'object' && 'value' in prevItem) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import warning, { noteOnce } from '../../vc-util/warning';
|
import warning, { noteOnce } from '../../vc-util/warning';
|
||||||
import { SelectProps } from '..';
|
import { SelectProps } from '..';
|
||||||
import { convertChildrenToData } from './legacyUtil';
|
import { convertChildrenToData } from './legacyUtil';
|
||||||
import { OptionData, OptionGroupData } from '../interface';
|
import { OptionData } from '../interface';
|
||||||
import { toArray } from './commonUtil';
|
import { toArray } from './commonUtil';
|
||||||
import { RawValueType, LabelValueType } from '../interface/generator';
|
import { RawValueType, LabelValueType } from '../interface/generator';
|
||||||
import { isValidElement } from '../../_util/props-util';
|
import { isValidElement } from '../../_util/props-util';
|
||||||
|
@ -32,8 +32,7 @@ function warningProps(props: SelectProps) {
|
||||||
|
|
||||||
// `tags` should not set option as disabled
|
// `tags` should not set option as disabled
|
||||||
warning(
|
warning(
|
||||||
mode !== 'tags' ||
|
mode !== 'tags' || mergedOptions.every((opt: any) => !opt.disabled),
|
||||||
mergedOptions.every((opt: { disabled?: boolean } & OptionGroupData) => !opt.disabled),
|
|
||||||
'Please avoid setting option to disabled in tags mode since user can always type text as tag.',
|
'Please avoid setting option to disabled in tags mode since user can always type text as tag.',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -102,12 +101,7 @@ function warningProps(props: SelectProps) {
|
||||||
// Syntactic sugar should use correct children type
|
// Syntactic sugar should use correct children type
|
||||||
if (children) {
|
if (children) {
|
||||||
let invalidateChildType = null;
|
let invalidateChildType = null;
|
||||||
children.some(
|
children.some((node: any) => {
|
||||||
(
|
|
||||||
node: VNode & {
|
|
||||||
children: { default?: () => any };
|
|
||||||
},
|
|
||||||
) => {
|
|
||||||
if (!isValidElement(node) || !node.type) {
|
if (!isValidElement(node) || !node.type) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -138,8 +132,7 @@ function warningProps(props: SelectProps) {
|
||||||
}
|
}
|
||||||
invalidateChildType = type;
|
invalidateChildType = type;
|
||||||
return true;
|
return true;
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
if (invalidateChildType) {
|
if (invalidateChildType) {
|
||||||
warning(
|
warning(
|
||||||
|
|
Loading…
Reference in New Issue