@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 725 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { AcceptPropType, InputFileProps, InputFileWatches, MultiplePropType, RequiredPropType } 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?: AcceptPropType): void;
validateMultiple(value?: MultiplePropType): void;
validateRequired(value?: RequiredPropType): void;
componentWillLoad(): void;
}