You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
896 B
20 lines
896 B
import * as React from 'react';
|
|
import type { DefaultOptionType, SingleValueType } from '../Cascader';
|
|
export interface ColumnProps {
|
|
prefixCls: string;
|
|
multiple?: boolean;
|
|
options: DefaultOptionType[];
|
|
/** Current Column opened item key */
|
|
activeValue?: React.Key;
|
|
/** The value path before current column */
|
|
prevValuePath: React.Key[];
|
|
onToggleOpen: (open: boolean) => void;
|
|
onSelect: (valuePath: SingleValueType, leaf: boolean) => void;
|
|
onActive: (valuePath: SingleValueType) => void;
|
|
checkedSet: Set<React.Key>;
|
|
halfCheckedSet: Set<React.Key>;
|
|
loadingKeys: React.Key[];
|
|
isSelectable: (option: DefaultOptionType) => boolean;
|
|
}
|
|
export default function Column({ prefixCls, multiple, options, activeValue, prevValuePath, onToggleOpen, onSelect, onActive, checkedSet, halfCheckedSet, loadingKeys, isSelectable, }: ColumnProps): JSX.Element;
|