survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
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;
}