| 10 | import type { LiteralUnion } from './utils/types'; |
| 11 | |
| 12 | export interface CommonInputProps { |
| 13 | prefix?: ReactNode; |
| 14 | suffix?: ReactNode; |
| 15 | addonBefore?: ReactNode; |
| 16 | addonAfter?: ReactNode; |
| 17 | /** @deprecated Use `classNames` instead */ |
| 18 | classes?: { |
| 19 | affixWrapper?: string; |
| 20 | group?: string; |
| 21 | wrapper?: string; |
| 22 | }; |
| 23 | classNames?: { |
| 24 | affixWrapper?: string; |
| 25 | prefix?: string; |
| 26 | suffix?: string; |
| 27 | groupWrapper?: string; |
| 28 | wrapper?: string; |
| 29 | variant?: string; |
| 30 | }; |
| 31 | styles?: { |
| 32 | affixWrapper?: CSSProperties; |
| 33 | prefix?: CSSProperties; |
| 34 | suffix?: CSSProperties; |
| 35 | }; |
| 36 | allowClear?: boolean | { clearIcon?: ReactNode }; |
| 37 | } |
| 38 | |
| 39 | type DataAttr = Record<`data-${string}`, string>; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…