UNPKG

preact-material-components

Version:
44 lines (39 loc) 1.24 kB
import MaterialComponent from '../MaterialComponent'; import {VNode} from 'preact'; import {MDCFoundation, MDCComponent} from '../MaterialComponentsWeb'; import List from '../List'; import {Omit} from '../libs'; declare interface ISelectProps extends Omit<JSX.HTMLAttributes, 'onChange' | 'disabled'> { disabled?: boolean; box?: boolean; outlined?: boolean; hintText?: string; selectedIndex?: number; onChange?: ( e: {selectedIndex: number; selectedOptions: NodeListOf<Element>} ) => void; } export default class Select extends MaterialComponent<ISelectProps, {}> { static Item: typeof Item; MDComponent: MDCSelect; updateSelection(): void; } declare class Item extends List.Item {} declare class MDCSelectFoundation extends MDCFoundation<MDCSelect> { getValue(): string; getSelectedIndex(): number; setSelectedIndex(index: number): void; isDisabled(): boolean; setDisabled(disabled: boolean): void; resize(): void; } declare class MDCSelect extends MDCComponent<MDCSelectFoundation> { value: string; options: Element[]; selectedOptions: NodeListOf<Element>; selectedIndex: number; disabled: boolean; item(index: number): Element | null; nameditem(key: string): Element | null; }