@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 764 B
TypeScript
import * as React from 'react';
import * as QuickSearchRedux from '../../Redux/ActionsReducers/QuickSearchRedux';
import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps';
import { AdaptableStyle } from '../../AdaptableState/Common/AdaptableStyle';
interface QuickSearchPopupProps extends ModuleViewPopupProps<any> {
QuickSearchText: string;
QuickSearchStyle: AdaptableStyle;
onRunQuickSearch: (quickSearchText: string) => QuickSearchRedux.QuickSearchRunAction;
onSetStyle: (style: AdaptableStyle) => QuickSearchRedux.QuickSearchSetStyleAction;
}
export declare const QuickSearchPopup: import("react-redux").ConnectedComponent<(props: QuickSearchPopupProps) => React.JSX.Element, {
[x: string]: any;
}>;
export {};