survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
29 lines (28 loc) • 1.26 kB
TypeScript
import * as React from "react";
import { SurveyQuestionElementBase } from "./reactquestion_element";
import { SurveyModel, QuestionPanelDynamicModel } from "survey-core";
import { SurveyPanel } from "./panel";
export declare class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
constructor(props: any);
protected get question(): QuestionPanelDynamicModel;
componentDidMount(): void;
componentWillUnmount(): void;
private updateQuestionRendering;
protected renderElement(): React.JSX.Element;
protected renderNavigator(): React.JSX.Element | null;
private renderProgressText;
protected rendrerPrevButton(): React.JSX.Element;
protected rendrerNextButton(): React.JSX.Element;
protected renderRange(): React.JSX.Element;
protected renderAddRowButton(): React.JSX.Element | null;
protected renderNavigatorV2(): React.JSX.Element | null;
protected renderPlaceholder(): React.JSX.Element | null;
}
export declare class SurveyQuestionPanelDynamicItem extends SurveyPanel {
private get question();
private get index();
protected getSurvey(): SurveyModel | null;
protected getCss(): any;
render(): React.JSX.Element;
protected renderButton(): React.JSX.Element | null;
}