UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

11 lines (10 loc) 806 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import { type InputProps } from '../../functional-components/inputs/Input'; import { type InputColorStates, type InputEmailStates, type InputFileStates, type InputNumberStates, type InputPasswordStates, type InputRangeStates, type InputTextStates, type InputCheckboxStates, type InputRadioStates } from '../../schema'; type InputState = InputTextStates | InputEmailStates | InputPasswordStates | InputNumberStates | InputColorStates | InputFileStates | InputRangeStates | InputCheckboxStates | InputRadioStates; export type InputStateWrapperProps = Partial<InputProps> & { state: InputState; customSuggestions?: boolean; }; declare const InputStateWrapper: FC<InputStateWrapperProps>; export default InputStateWrapper;