UNPKG

react-application-core

Version:

A react-based application core for the business applications.

38 lines (37 loc) 912 B
/// <reference types="react" /> import { GenericContainer } from '../../base/generic.container'; import { ISearchToolbarContainerProps } from '../../../definition'; /** * @component-container-impl * @stable [31.07.2020] * * Please use the "Mappers.searchToolbarContainerProps" */ export declare class SearchToolbarContainer extends GenericContainer<ISearchToolbarContainerProps> { /** * @stable [31.07.2020] * @param props */ constructor(props: ISearchToolbarContainerProps); /** * @stable [31.07.2020] */ render(): JSX.Element; /** * @stable [31.07.2020] */ private onApply; /** * @stable [31.07.2020] */ private onActivate; /** * @stable [31.07.2020] */ private onDeactivate; /** * @stable [31.07.2020] * @param {string} query */ private onChange; }