UNPKG

@public-ui/components

Version:

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

10 lines (9 loc) 849 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import { type FieldControlProps } from '../../functional-components/FieldControl'; import { type InputColorStates, type InputEmailStates, type InputFileStates, type InputNumberStates, type InputPasswordStates, type InputRangeStates, type InputTextStates, type InputCheckboxStates, type InputRadioStates, type SelectStates } from '../../schema'; type InputState = InputTextStates | InputEmailStates | InputPasswordStates | InputNumberStates | InputColorStates | InputFileStates | InputRangeStates | InputCheckboxStates | InputRadioStates | SelectStates; export type FieldControlStateWrapperProps = Partial<FieldControlProps> & { state: InputState; }; declare const FieldControlStateWrapper: FC<FieldControlStateWrapperProps>; export default FieldControlStateWrapper;