survey-creator-react
Version:
A white-label drag-and-drop form builder for React that lets you design complex, interactive forms and surveys without writing code. It generates JSON schemas used by the SurveyJS Form Library to render dynamic forms in your React app.
14 lines (13 loc) • 590 B
TypeScript
import * as React from "react";
import { QuestionColorModel } from "survey-creator-core";
import { SurveyQuestionText } from "survey-react-ui";
export declare class SurveyQuestionColor extends SurveyQuestionText {
constructor(props: any);
protected get question(): QuestionColorModel;
protected renderInput(): React.JSX.Element;
protected renderElement(): React.JSX.Element;
protected getValueCore(): string;
protected renderColorSwatch(): React.JSX.Element;
protected renderDropdownAction(): React.JSX.Element;
protected renderPopup(): React.JSX.Element;
}