survey-creator-core
Version:
A framework-independent core package of the SurveyJS Survey Creator component. With Survey Creator, you can visually design complex, interactive JSON forms and surveys in a drag-and-drop interface.
21 lines (20 loc) • 764 B
TypeScript
import { Action, ActionContainer, Base } from "survey-core";
export declare abstract class SearchManager extends Base {
searchActionBar: ActionContainer;
get filterStringPlaceholder(): string;
filterString: string;
isVisible: boolean;
matchCounterText: string;
protected getSearchActions(): Action[];
initActionBar(): void;
clearFilterString(): void;
private _enabled;
get enabled(): boolean;
set enabled(value: boolean);
getTabIndex(): number;
protected abstract setFiterString(newValue: string, oldValue: string): any;
protected abstract getFilterStringPlaceholder(): string;
protected onPropertyValueChanged(name: string, oldValue: any, newValue: any): void;
constructor();
dispose(): void;
}