survey-react-ui 3.0.1 → 3.0.3
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-react-ui.mjs +203 -207
- package/fesm/survey-react-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-react-ui.js +203 -205
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
- package/typings/entries/react-ui-model.d.ts +4 -1
- package/typings/src/attach-key2click.d.ts +3 -0
- package/typings/src/components/action-bar/action-bar.d.ts +1 -2
- package/typings/src/reactSurvey.d.ts +1 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export { Survey
|
|
1
|
+
export { Survey } from "../src/reactSurvey";
|
|
2
|
+
export { attachKey2click } from "../src/attach-key2click";
|
|
2
3
|
export { ReactSurveyElementsWrapper } from "../src/reactsurveymodel";
|
|
3
4
|
export { SurveyNavigationBase } from "../src/reactSurveyNavigationBase";
|
|
4
5
|
export { SurveyTimerPanel } from "../src/reacttimerpanel";
|
|
@@ -65,6 +66,8 @@ export { List } from "../src/components/list/list";
|
|
|
65
66
|
export { TitleActions } from "../src/components/title/title-actions";
|
|
66
67
|
export { TitleElement } from "../src/components/title/title-element";
|
|
67
68
|
export { SurveyActionBar } from "../src/components/action-bar/action-bar";
|
|
69
|
+
export { SurveyActionBarItemDropdown } from "../src/components/action-bar/action-bar-item-dropdown";
|
|
70
|
+
export { SurveyActionBarSeparator } from "../src/components/action-bar/action-bar-separator";
|
|
68
71
|
export { LogoImage } from "../src/components/survey-header/logo-image";
|
|
69
72
|
export { SurveyHeader } from "../src/components/survey-header/survey-header";
|
|
70
73
|
export { SvgIcon } from "../src/components/svg-icon/svg-icon";
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { Base, Action, ActionContainer } from "survey-core";
|
|
3
3
|
import { SurveyElementBase } from "../../reactquestion_element";
|
|
4
|
-
export * from "./action-bar-item-dropdown";
|
|
5
|
-
export * from "./action-bar-separator";
|
|
6
4
|
interface IActionBarProps {
|
|
7
5
|
model: ActionContainer<Action>;
|
|
8
6
|
handleClick?: boolean;
|
|
@@ -19,3 +17,4 @@ export declare class SurveyActionBar extends SurveyElementBase<IActionBarProps,
|
|
|
19
17
|
renderElement(): any;
|
|
20
18
|
renderItems(): React.JSX.Element[];
|
|
21
19
|
}
|
|
20
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { Base, Question, PageModel, SurveyError, SurveyModel
|
|
2
|
+
import { Base, Question, PageModel, SurveyError, SurveyModel } from "survey-core";
|
|
3
3
|
import { ISurveyCreator } from "./reactquestion";
|
|
4
4
|
import { SurveyElementBase } from "./reactquestion_element";
|
|
5
5
|
export declare class Survey extends SurveyElementBase<any, any> implements ISurveyCreator {
|
|
@@ -36,4 +36,3 @@ export declare class Survey extends SurveyElementBase<any, any> implements ISurv
|
|
|
36
36
|
questionTitleLocation(): string;
|
|
37
37
|
questionErrorLocation(): string;
|
|
38
38
|
}
|
|
39
|
-
export declare function attachKey2click(element: React.JSX.Element, viewModel?: any, options?: IAttachKey2clickOptions): React.JSX.Element;
|