@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
15 lines (14 loc) • 833 B
TypeScript
import type { InputRangeProps, InputRangeWatches, InputTypeOnOff, SuggestionsPropType } from '../../schema';
import { InputIconController } from '../@deprecated/input/controller-icon';
import type { Generic } from 'adopted-style-sheets';
export declare class InputRangeController extends InputIconController implements InputRangeWatches {
protected readonly component: Generic.Element.Component & InputRangeProps;
constructor(component: Generic.Element.Component & InputRangeProps, name: string, host?: HTMLElement);
validateAutoComplete(value?: InputTypeOnOff): void;
validateMax(value?: number): void;
validateMin(value?: number): void;
validateStep(value?: number): void;
validateSuggestions(value?: SuggestionsPropType): void;
validateValue(value?: number): void;
componentWillLoad(): void;
}