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.
- package/fesm/survey-creator-react.js +2850 -0
- package/fesm/survey-creator-react.js.map +1 -0
- package/package.json +4 -4
- package/survey-creator-react.js +3 -3
- package/survey-creator-react.min.js +1 -1
- package/survey-creator-react.min.js.LICENSE.txt +1 -1
- package/survey-creator-react.d.ts +0 -2
- package/typings/ObjectSelector.d.ts +0 -1
- package/typings/PropertyGrid.d.ts +0 -14
- package/typings/Search.d.ts +0 -14
- package/typings/SideBar.d.ts +0 -19
- package/typings/SideBarPropertyGridHeader.d.ts +0 -1
- package/typings/SideBarPropertyGridPlaceholderHeader.d.ts +0 -1
- package/typings/SvgBundle.d.ts +0 -7
- package/typings/adorners/QuestionCarryForward.d.ts +0 -5
- package/typings/side-bar/Search.d.ts +0 -14
- package/typings/tab-control/TabButton.d.ts +0 -13
- package/typings/tab-control/TabControl.d.ts +0 -1
- package/typings/tabs/Embed.d.ts +0 -13
- package/typings/tabs/PropertyGridPlaceholder.d.ts +0 -4
- package/typings/tabs/Translation.d.ts +0 -9
- package/typings/tabs/TranslationLineSkeleton.d.ts +0 -4
- package/typings/toolbox/Toolbox.d.ts +0 -15
|
@@ -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;
|
package/typings/Search.d.ts
DELETED
|
@@ -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 {};
|
package/typings/SideBar.d.ts
DELETED
|
@@ -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 {};
|
package/typings/SvgBundle.d.ts
DELETED
|
@@ -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 {};
|
package/typings/tabs/Embed.d.ts
DELETED
|
@@ -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,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,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
|
-
}
|