UNPKG

@talend/react-containers

Version:

Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.

17 lines (16 loc) 526 B
export const DISPLAY_NAME: "Container(Typeahead)"; export const DEFAULT_STATE: any; /** * The Typeahead React container */ export default class Typeahead extends RComponent<any, any, any> { static displayName: string; static propTypes: any; constructor(props: any); onToggle(): void; onKeyDown(event: any, data: any): void; onBlur(event: any): void; onSelect(event: any, value: any): void; render(): import("react/jsx-runtime").JSX.Element; } import { Component as RComponent } from 'react';