@cbpds/web-components
Version:
Web components for the CBP Design System.
20 lines (19 loc) • 558 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpFileInput {
private formField;
host: HTMLElement;
name: string;
fieldId: string;
multiple: boolean;
accept: string;
context: 'light-inverts' | 'light-always' | 'dark-inverts' | 'dark-always';
sx: any;
files: any[];
valueChange: EventEmitter;
handleChange(e: any): void;
watchDisabledHandler(newValue: boolean): void;
handleDelete(): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}