@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 647 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { InputFileProps, InputFileWatches } from '../../schema';
import { InputIconController } from '../@deprecated/input/controller-icon';
export declare class InputFileController extends InputIconController implements InputFileWatches {
protected readonly component: Generic.Element.Component & InputFileProps;
constructor(component: Generic.Element.Component & InputFileProps, name: string, host?: HTMLElement);
validateAccept(value?: string): void;
validateMultiple(value?: boolean): void;
validateRequired(value?: boolean): void;
componentWillLoad(): void;
}