rc-cascader-v5
Version:
cascade select ui component for react
6 lines (5 loc) • 486 B
TypeScript
import * as React from 'react';
import type { CascaderProps } from './Cascader';
export type PickType = 'value' | 'defaultValue' | 'changeOnSelect' | 'onChange' | 'options' | 'prefixCls' | 'checkable' | 'fieldNames' | 'showCheckedStrategy' | 'loadData' | 'expandTrigger' | 'expandIcon' | 'loadingIcon' | 'className' | 'style' | 'direction' | 'notFoundContent';
export type PanelProps = Pick<CascaderProps, PickType>;
export default function Panel(props: PanelProps): React.JSX.Element;