survey-creator-react 2.5.12 → 2.5.13
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.mjs +5 -5
- package/fesm/survey-creator-react.mjs.map +1 -1
- package/fesm/ui-preset-editor/index.mjs +5 -4
- package/fesm/ui-preset-editor/index.mjs.map +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +5 -5
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +1 -1
- package/survey-creator-react.min.js.LICENSE.txt +1 -1
- package/ui-preset-editor/index.js +4 -3
- package/ui-preset-editor/index.js.map +1 -1
- package/ui-preset-editor/index.min.js +1 -1
- package/ui-preset-editor/index.min.js.LICENSE.txt +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v2.5.
|
|
2
|
+
* SurveyJS Creator React v2.5.13
|
|
3
3
|
* (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -2724,8 +2724,8 @@ class ComponentContainer extends React.Component {
|
|
|
2724
2724
|
super(props);
|
|
2725
2725
|
}
|
|
2726
2726
|
render() {
|
|
2727
|
-
return (React.createElement("div", { className:
|
|
2728
|
-
return ReactElementFactory.Instance.createElement(element.componentName, {
|
|
2727
|
+
return (React.createElement("div", { className: this.props.model.cssClass }, this.props.model.elements.map((element, index) => {
|
|
2728
|
+
return ReactElementFactory.Instance.createElement(element.componentName, Object.assign(Object.assign({}, element.componentData), { key: index }));
|
|
2729
2729
|
})));
|
|
2730
2730
|
}
|
|
2731
2731
|
}
|
|
@@ -2947,8 +2947,8 @@ ReactQuestionFactory.Instance.registerQuestion("sv-boolean-switch", (props) => {
|
|
|
2947
2947
|
RendererFactory.Instance.registerRenderer("boolean", "switch", "sv-boolean-switch");
|
|
2948
2948
|
|
|
2949
2949
|
let Version;
|
|
2950
|
-
Version = `${"2.5.
|
|
2951
|
-
checkLibraryVersion(`${"2.5.
|
|
2950
|
+
Version = `${"2.5.13"}`;
|
|
2951
|
+
checkLibraryVersion(`${"2.5.13"}`, "survey-creator-react");
|
|
2952
2952
|
|
|
2953
2953
|
export { ActionButton, AdaptiveToolbox, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, ComponentContainer, CreatorSurveyPageComponent, ImageItemValueAdornerComponent, ItemValueAdornerComponent, LogoImageComponent, MatrixCellAdornerComponent, PanelAdornerComponent, PropertyGridComponent, PropertyGridPlaceholderComponent, QuestionAdornerComponent, QuestionBanner, QuestionDropdownAdornerComponent, QuestionEditorContentComponent, QuestionErrorComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, QuestionWrapperFooter, QuestionWrapperHeader, ReactDragEvent, ReactMouseEvent, RowWrapper, SearchComponent, SideBarDefaultHeader, SidebarComponent, SurveyCreator, SurveyCreatorComponent, SurveyCreatorToolboxCategory, SurveyCreatorToolboxItem, SurveyCreatorToolboxItemGroup, SurveyCreatorToolboxTool, SurveyElementEmbeddedSurvey, SurveyLocStringEditor, SurveyLogicOpertor, SurveyNavigation, SurveyQuestionBooleanSwitch, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionLinkValue, SurveyQuestionSpinEditor, SurveyQuestionTextWithReset, SurveyResults, SurveyResultsByRow, SurveySimulator, SwitcherComponent, TabButtonComponent, TabDesignerComponent, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewSurveyComponent, TabPreviewTestSurveyAgainComponent, TabThemeSurveyComponent, TabTranslationComponent, TabbedMenuComponent, TabbedMenuItemComponent, ToolboxList, TranslateFromAction, TranslationLineSkeleton, Version };
|
|
2954
2954
|
//# sourceMappingURL=survey-creator-react.mjs.map
|