@quanxi/ui
Version:
全悉组件库
15 lines (14 loc) • 548 B
TypeScript
/// <reference types="react" />
import type { QuickFilterItem } from "../type";
import "../style.scss";
export default function Item({ value, field, placeholder, shadow, inputWidth: propsInputWidth, onChange, columns, disabled, showHighLight: propsShowHighLight }: {
value: any;
shadow?: boolean;
field: QuickFilterItem;
inputWidth?: number;
onChange: (key: string, value: any, validatePass: boolean) => void;
columns?: number;
placeholder?: string;
disabled?: boolean;
showHighLight?: boolean;
}): JSX.Element;