survey-creator-react 2.3.3 → 2.3.4
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,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v2.3.
|
|
2
|
+
* SurveyJS Creator React v2.3.4
|
|
3
3
|
* (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -101,7 +101,7 @@ class TabbedMenuItemComponent extends SurveyElementBase {
|
|
|
101
101
|
}
|
|
102
102
|
render() {
|
|
103
103
|
const item = this.item;
|
|
104
|
-
return (attachKey2click(React.createElement("div", { role: "tab", id: "tab-" + item.id, "aria-selected": item.active, "aria-controls": "scrollableDiv-" + item.id, className: item.getRootCss(), onClick: () => item.
|
|
104
|
+
return (attachKey2click(React.createElement("div", { role: "tab", id: "tab-" + item.id, "aria-selected": item.active, "aria-controls": "scrollableDiv-" + item.id, className: item.getRootCss(), onClick: () => item.doAction() },
|
|
105
105
|
item.hasTitle ? React.createElement("span", { className: item.getTitleCss() }, item.title) : null,
|
|
106
106
|
item.hasIcon ? React.createElement(SvgIcon, { iconName: item.iconName, className: item.getIconCss(), size: "auto", title: item.tooltip || item.title }) : null)));
|
|
107
107
|
}
|
|
@@ -1412,7 +1412,7 @@ class SurveyCreatorToolboxItem extends CreatorModelElement {
|
|
|
1412
1412
|
(this.props.isCompact ?
|
|
1413
1413
|
null
|
|
1414
1414
|
:
|
|
1415
|
-
React.createElement("span", { className: "svc-toolbox__item-title" }, this.item.title))));
|
|
1415
|
+
React.createElement("span", { className: "svc-toolbox__item-title" }, this.item.title))), undefined, { disableTabStop: !this.model.toolboxItem.enabled });
|
|
1416
1416
|
return (React.createElement(React.Fragment, null,
|
|
1417
1417
|
item,
|
|
1418
1418
|
banner));
|
|
@@ -1561,7 +1561,7 @@ class SearchComponent extends SurveyElementBase {
|
|
|
1561
1561
|
return (React.createElement("div", { className: "svc-search" },
|
|
1562
1562
|
React.createElement("div", { className: "svc-search__search-icon" },
|
|
1563
1563
|
React.createElement(SvgIcon, { iconName: "icon-search", size: "auto" })),
|
|
1564
|
-
React.createElement("input", { type: "text", className: "svc-search__input", "aria-label": this.model.filterStringPlaceholder, placeholder: this.model.filterStringPlaceholder, value: this.state.filterString, onChange: onChange }),
|
|
1564
|
+
React.createElement("input", { type: "text", className: "svc-search__input", "aria-label": this.model.filterStringPlaceholder, placeholder: this.model.filterStringPlaceholder, value: this.state.filterString, onChange: onChange, tabIndex: this.model.getTabIndex() }),
|
|
1565
1565
|
React.createElement("div", { className: "svc-search__toolbar" },
|
|
1566
1566
|
React.createElement("div", { className: "svc-search__toolbar-counter" }, this.model.matchCounterText),
|
|
1567
1567
|
React.createElement(SurveyActionBar, { model: this.model.searchActionBar }))));
|
|
@@ -2851,8 +2851,8 @@ ReactQuestionFactory.Instance.registerQuestion("sv-boolean-switch", (props) => {
|
|
|
2851
2851
|
RendererFactory.Instance.registerRenderer("boolean", "switch", "sv-boolean-switch");
|
|
2852
2852
|
|
|
2853
2853
|
let Version;
|
|
2854
|
-
Version = `${"2.3.
|
|
2855
|
-
checkLibraryVersion(`${"2.3.
|
|
2854
|
+
Version = `${"2.3.4"}`;
|
|
2855
|
+
checkLibraryVersion(`${"2.3.4"}`, "survey-creator-react");
|
|
2856
2856
|
|
|
2857
2857
|
export { ActionButton, AdaptiveToolbox, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, 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 };
|
|
2858
2858
|
//# sourceMappingURL=survey-creator-react.mjs.map
|