UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

31 lines (30 loc) 833 B
import { CSSProperties } from "react"; import { InputProps } from "antd"; //#region src/HotkeyInput/type.d.ts interface HotkeyInputProps { allowReset?: boolean; className?: string; defaultValue?: string; disabled?: boolean; hotkeyConflicts?: string[]; isApple?: boolean; onBlur?: InputProps['onBlur']; onChange?: (value: string) => void; onConflict?: (conflictKey: string) => void; onFocus?: InputProps['onFocus']; onReset?: (currentValue: string, resetValue: string) => void; placeholder?: string; resetValue?: string; shadow?: boolean; style?: CSSProperties; texts?: { conflicts?: string; invalidCombination?: string; reset?: string; }; value?: string; variant?: 'filled' | 'borderless' | 'outlined'; } //#endregion export { HotkeyInputProps }; //# sourceMappingURL=type.d.mts.map