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.
19 lines (18 loc) • 640 B
TypeScript
import * as React from "react";
import { SidebarModel } from "survey-creator-core";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
interface ISidebarComponentProps {
model: SidebarModel;
}
export declare class SidebarComponent extends SurveyElementBase<ISidebarComponentProps, any> {
private containerRef;
get model(): SidebarModel;
constructor(props: ISidebarComponentProps);
protected getStateElement(): Base;
componentDidMount(): void;
componentWillUnmount(): void;
canRender(): boolean;
renderElement(): React.JSX.Element;
}
export default SidebarComponent;