UNPKG

@public-ui/components

Version:

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

13 lines (12 loc) 723 B
import type { ComboboxWatches, ComboboxProps, SuggestionsPropType } from '../../schema'; import { InputIconController } from '../@deprecated/input/controller-icon'; import type { Generic } from 'adopted-style-sheets'; export declare class ComboboxController extends InputIconController implements ComboboxWatches { protected readonly component: Generic.Element.Component & ComboboxProps; constructor(component: Generic.Element.Component & ComboboxProps, name: string, host?: HTMLElement); validatePlaceholder(value?: string): void; validateRequired(value?: boolean): void; validateSuggestions(value?: SuggestionsPropType): void; validateValue(value?: string): void; componentWillLoad(): void; }