survey-creator-core
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
23 lines (22 loc) • 829 B
TypeScript
import { Action, Question, SurveyModel } from "survey-core";
import { SearchManager } from "../components/search-manager";
export declare class SearchManagerPropertyGrid extends SearchManager {
private highlightedEditorClass;
private currentMatchIndex;
private currentMatch;
protected getFilterStringPlaceholder(): string;
get propertyGridNoResultsFound(): string;
survey: SurveyModel;
allMatches: Array<Question>;
private lastCollapsedElement;
private expandAllParents;
private switchHighlightedEditor;
private updatedMatchCounterText;
private navigateToEditor;
private getAllMatches;
protected setFiterString(newValue: string, oldValue: string): void;
private reset;
getSearchActions(): Action[];
constructor();
setSurvey(newSurvey: SurveyModel): void;
}