survey-creator-react 1.9.69 → 1.9.71
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/package.json +4 -4
- package/survey-creator-react.d.ts +0 -15
- package/survey-creator-react.js +58 -111
- package/survey-creator-react.min.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-react",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.71",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"ace-builds": "^1.4.12"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"survey-core": "1.9.
|
|
35
|
-
"survey-react-ui": "1.9.
|
|
36
|
-
"survey-creator-core": "1.9.
|
|
34
|
+
"survey-core": "1.9.71",
|
|
35
|
+
"survey-react-ui": "1.9.71",
|
|
36
|
+
"survey-creator-core": "1.9.71",
|
|
37
37
|
"react": "^16.5.0 || ^17.0.1 || ^18.1.0",
|
|
38
38
|
"react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0"
|
|
39
39
|
},
|
|
@@ -26,20 +26,6 @@ declare module "TabbedMenu" {
|
|
|
26
26
|
}
|
|
27
27
|
export default TabbedMenuComponent;
|
|
28
28
|
}
|
|
29
|
-
declare module "Notifier" {
|
|
30
|
-
import { Base } from "survey-core";
|
|
31
|
-
import { SurveyElementBase } from "survey-react-ui";
|
|
32
|
-
import { CreatorBase, Notifier } from "survey-creator-core";
|
|
33
|
-
export interface NotifierComponentProps {
|
|
34
|
-
creator: CreatorBase;
|
|
35
|
-
notifier: Notifier;
|
|
36
|
-
}
|
|
37
|
-
export class NotifierComponent extends SurveyElementBase<NotifierComponentProps, any> {
|
|
38
|
-
get notifier(): Notifier;
|
|
39
|
-
protected getStateElement(): Base;
|
|
40
|
-
renderElement(): JSX.Element;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
29
|
declare module "SvgBundle" {
|
|
44
30
|
import React from "react";
|
|
45
31
|
export class SvgBundleComponent extends React.Component {
|
|
@@ -781,7 +767,6 @@ declare module "entries/index" {
|
|
|
781
767
|
export * from "toolbox/Toolbox";
|
|
782
768
|
export * from "toolbox/AdaptiveToolbox";
|
|
783
769
|
export * from "TabbedMenu";
|
|
784
|
-
export * from "Notifier";
|
|
785
770
|
export * from "Navigation";
|
|
786
771
|
export * from "SideBar";
|
|
787
772
|
export * from "tabs/TranslationLineSkeleton";
|