survey-react-ui 2.3.5 → 2.3.7

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 - Survey JavaScript library v2.3.5
2
+ * surveyjs - Survey JavaScript library v2.3.7
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -896,6 +896,8 @@ class PopupContainer extends SurveyElementBase {
896
896
  const style = { display: this.model.isVisible ? "" : "none", };
897
897
  return (React.createElement("div", { tabIndex: -1, className: className, style: style, onClick: (e) => {
898
898
  this.model.clickOutside(e);
899
+ }, onBlur: (e) => {
900
+ this.model.blur(e);
899
901
  }, onKeyDown: this.handleKeydown }, container));
900
902
  }
901
903
  componentDidMount() {
@@ -1930,7 +1932,7 @@ class PopupModal extends SurveyElementBase {
1930
1932
  PopupModal.modalDescriptors = [];
1931
1933
 
1932
1934
  /*!
1933
- * surveyjs - Survey JavaScript library v2.3.5
1935
+ * surveyjs - Survey JavaScript library v2.3.7
1934
1936
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1935
1937
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1936
1938
  */
@@ -2000,7 +2002,7 @@ var iconsV1 = {
2000
2002
  };
2001
2003
 
2002
2004
  /*!
2003
- * surveyjs - Survey JavaScript library v2.3.5
2005
+ * surveyjs - Survey JavaScript library v2.3.7
2004
2006
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
2005
2007
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
2006
2008
  */
@@ -4479,7 +4481,7 @@ class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElementBase {
4479
4481
  return this.renderTableDiv();
4480
4482
  }
4481
4483
  renderTableDiv() {
4482
- return (React.createElement("div", { className: this.question.cssClasses.tableWrapper, ref: (root) => (this.setControl(root)) },
4484
+ return (React.createElement("div", { className: this.question.cssClasses.tableWrapper, "data-sv-drop-target-matrix-row": this.question.renderedTable.wrapperDropTargetId, ref: (root) => (this.setControl(root)) },
4483
4485
  React.createElement(SurveyQuestionMatrixTable, { question: this.question, creator: this.creator, wrapCell: (cell, element, reason) => this.wrapCell(cell, element, reason) })));
4484
4486
  }
4485
4487
  }
@@ -5633,7 +5635,9 @@ class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
5633
5635
  return null;
5634
5636
  var cssClasses = this.question.cssClasses;
5635
5637
  return React.createElement("div", { className: cssClasses.controls },
5636
- React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.clearValue(true) }, this.question.cssClasses.clearButtonIconId ? React.createElement(SvgIcon, { iconName: this.question.cssClasses.clearButtonIconId, size: "auto" }) : React.createElement("span", null, "\u2716")));
5638
+ React.createElement("button", { type: "button", className: cssClasses.clearButton, title: this.question.clearButtonCaption, onClick: () => this.question.clearValue(true) },
5639
+ this.question.cssClasses.clearButtonIconId ? React.createElement(SvgIcon, { iconName: this.question.cssClasses.clearButtonIconId, size: "auto" }) : React.createElement("span", null, "\u2716"),
5640
+ " "));
5637
5641
  }
5638
5642
  }
5639
5643
  ReactQuestionFactory.Instance.registerQuestion("signaturepad", (props) => {
@@ -6218,7 +6222,7 @@ ReactElementFactory.Instance.registerElement(LocalizableString.editableRenderer,
6218
6222
  return React.createElement(SurveyLocStringEditor, props);
6219
6223
  });
6220
6224
 
6221
- checkLibraryVersion(`${"2.3.5"}`, "survey-react-ui");
6225
+ checkLibraryVersion(`${"2.3.7"}`, "survey-react-ui");
6222
6226
 
6223
6227
  export { CharacterCounterComponent, ComponentsContainer, Header, HeaderCell, HeaderMobile, List, ListItemContent, ListItemGroup, LoadingIndicatorComponent, LogoImage, MatrixRow, NotifierComponent, Popup, PopupModal, PopupSurvey, QuestionErrorComponent, RatingDropdownItem, RatingItem, RatingItemSmiley, RatingItemStar, ReactElementFactory, ReactQuestionFactory, ReactSurveyElement, ReactSurveyElementsWrapper, Scroll, Skeleton, SliderLabelItem, Survey, SurveyActionBar, SurveyElementBase, SurveyElementErrors, SurveyFileChooseButton, SurveyFileItem, SurveyFilePreview, SurveyFlowPanel, SurveyHeader, SurveyLocStringEditor, SurveyLocStringViewer, SurveyNavigationBase, SurveyNavigationButton, SurveyPage, SurveyPanel, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestion, SurveyQuestionAndErrorsCell, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionButtonGroup, SurveyQuestionButtonGroupDropdown, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionComment, SurveyQuestionCommentItem, SurveyQuestionComposite, SurveyQuestionCustom, SurveyQuestionDropdown, SurveyQuestionDropdownBase, SurveyQuestionDropdownSelect, SurveyQuestionElementBase, SurveyQuestionEmpty, SurveyQuestionExpression, SurveyQuestionFile, SurveyQuestionHtml, SurveyQuestionImage, SurveyQuestionImagePicker, SurveyQuestionMatrix, SurveyQuestionMatrixCell, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixRow, SurveyQuestionMultipleText, SurveyQuestionOptionItem, SurveyQuestionPanelDynamic, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicProgressText, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionRadioItem, SurveyQuestionRadiogroup, SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionSignaturePad, SurveyQuestionSlider, SurveyQuestionTagbox, SurveyQuestionTagboxItem, SurveyQuestionText, SurveyRow, SurveyTimerPanel, SurveyWindow, SvgBundleComponent, SvgIcon, TagboxFilterString, TitleActions, TitleElement, attachKey2click };
6224
6228
  //# sourceMappingURL=survey-react-ui.mjs.map