UNPKG

@public-ui/components

Version:

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

11 lines (10 loc) 690 B
import type { Generic } from 'adopted-style-sheets'; import type { InputEmailProps, InputEmailWatches, MaxLengthBehaviorPropType, MultiplePropType } from '../../schema'; import { InputTextEmailController } from '../input-text/controller'; export declare class InputEmailController extends InputTextEmailController implements InputEmailWatches { protected readonly component: Generic.Element.Component & InputEmailProps; constructor(component: Generic.Element.Component & InputEmailProps, name: string, host?: HTMLElement); validateMultiple(value?: MultiplePropType): void; validateMaxLengthBehavior(value?: MaxLengthBehaviorPropType): void; componentWillLoad(): void; }