UNPKG

@quanxi/ui

Version:

全悉组件库

15 lines (14 loc) 579 B
/// <reference types="react" /> import type { QFWithOperatorItem } from "../type"; import "../style.scss"; export default function Item({ value: propValue, field, placeholder, shadow, inputWidth: propsInputWidth, onChange, columns, disabled, showHighLight: propsShowHighLight }: { value: any; shadow?: boolean; field: QFWithOperatorItem; inputWidth?: number; onChange: (key: string, value: any, oper: string, validatePass: boolean) => void; columns?: number; placeholder?: string; disabled?: boolean; showHighLight?: boolean; }): JSX.Element;