survey-creator-react 1.12.26 → 1.12.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +0,0 @@
1
- export {};
@@ -1,14 +0,0 @@
1
- /// <reference types="react" />
2
- import { PropertyGridViewModel } from "survey-creator-core";
3
- import { Base } from "survey-core";
4
- import { SurveyElementBase } from "survey-react-ui";
5
- interface IPropertyGridComponentProps {
6
- model: PropertyGridViewModel;
7
- }
8
- export declare class PropertyGridComponent extends SurveyElementBase<IPropertyGridComponentProps, any> {
9
- get model(): PropertyGridViewModel;
10
- protected getStateElement(): Base;
11
- canRender(): boolean;
12
- renderElement(): JSX.Element;
13
- }
14
- export default PropertyGridComponent;
@@ -1,14 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SearchManager } from "survey-creator-core";
4
- import { SurveyElementBase } from "survey-react-ui";
5
- interface ISearchComponentProps {
6
- model: SearchManager;
7
- }
8
- export declare class SearchComponent extends SurveyElementBase<ISearchComponentProps, any> {
9
- protected get model(): SearchManager;
10
- protected getStateElement(): Base;
11
- constructor(props: any);
12
- renderElement(): JSX.Element;
13
- }
14
- export {};
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import { SidebarModel } from "survey-creator-core";
3
- import { Base } from "survey-core";
4
- import { SurveyElementBase } from "survey-react-ui";
5
- interface ISidebarComponentProps {
6
- model: SidebarModel;
7
- }
8
- export declare class SidebarComponent extends SurveyElementBase<ISidebarComponentProps, any> {
9
- private containerRef;
10
- get model(): SidebarModel;
11
- constructor(props: ISidebarComponentProps);
12
- protected getStateElement(): Base;
13
- componentDidMount(): void;
14
- componentWillUnmount(): void;
15
- canRender(): boolean;
16
- renderDefaultHeader(): JSX.Element;
17
- renderElement(): JSX.Element;
18
- }
19
- export default SidebarComponent;
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- import React from "react";
2
- export declare class SvgBundleComponent extends React.Component {
3
- private containerRef;
4
- constructor(props: any);
5
- componentDidMount(): void;
6
- render(): JSX.Element;
7
- }
@@ -1,5 +0,0 @@
1
- import { QuestionCarryForwardParams } from "survey-creator-core";
2
- import React from "react";
3
- export declare class QuestionCarrayForwardBanner extends React.Component<QuestionCarryForwardParams, any> {
4
- render(): JSX.Element;
5
- }
@@ -1,14 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SearchManager } from "survey-creator-core";
4
- import { SurveyElementBase } from "survey-react-ui";
5
- interface ISearchComponentProps {
6
- model: SearchManager;
7
- }
8
- export declare class SearchComponent extends SurveyElementBase<ISearchComponentProps, any> {
9
- protected get model(): SearchManager;
10
- protected getStateElement(): Base;
11
- constructor(props: any);
12
- renderElement(): JSX.Element;
13
- }
14
- export {};
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SurveyElementBase } from "survey-react-ui";
4
- import { MenuButton } from "survey-creator-core";
5
- export declare class TabButtonComponent extends SurveyElementBase<{
6
- model: MenuButton;
7
- }, any> {
8
- constructor(props: {
9
- model: MenuButton;
10
- });
11
- protected getStateElement(): Base;
12
- protected renderElement(): JSX.Element | null;
13
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SurveyElementBase } from "survey-react-ui";
4
- import { EmbedModel } from "survey-creator-core";
5
- interface ITabEmbedComponentProps {
6
- data: EmbedModel;
7
- }
8
- export declare class TabEmbedComponent extends SurveyElementBase<ITabEmbedComponentProps, any> {
9
- private get model();
10
- protected getStateElement(): Base;
11
- renderElement(): JSX.Element;
12
- }
13
- export {};
@@ -1,4 +0,0 @@
1
- import * as React from "react";
2
- export declare class PropertyGridPlaceholderComponent extends React.Component<any, any> {
3
- render(): JSX.Element | null;
4
- }
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SurveyElementBase } from "survey-react-ui";
4
- export declare class TabTranslationComponent extends SurveyElementBase<any, any> {
5
- private get model();
6
- protected getStateElement(): Base;
7
- renderElement(): JSX.Element;
8
- renderElementContent(): JSX.Element;
9
- }
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- export declare class TranslationLineSkeleton extends React.Component<any, any> {
3
- render(): JSX.Element;
4
- }
@@ -1,15 +0,0 @@
1
- /// <reference types="react" />
2
- import { Base } from "survey-core";
3
- import { SurveyElementBase } from "survey-react-ui";
4
- import { SurveyCreatorModel } from "survey-creator-core";
5
- export interface ISurveyCreatorToolboxProps {
6
- model: SurveyCreatorModel;
7
- }
8
- export declare class Toolbox extends SurveyElementBase<ISurveyCreatorToolboxProps, any> {
9
- get creator(): SurveyCreatorModel;
10
- get toolbox(): import("survey-creator-core").QuestionToolbox;
11
- protected getStateElement(): Base;
12
- render(): JSX.Element;
13
- renderItems(items: Array<any>, isCompact?: boolean): Array<JSX.Element>;
14
- renderCategories(): JSX.Element[];
15
- }