survey-react-ui 2.3.16 → 2.4.1

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.16
2
+ * surveyjs - Survey JavaScript library v2.4.1
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
  */
@@ -438,7 +438,7 @@ class SurveyAction extends SurveyElementBase {
438
438
  const itemComponent = ReactElementFactory.Instance.createElement(this.item.component || "sv-action-bar-item", {
439
439
  item: this.item,
440
440
  });
441
- return (React.createElement("div", { className: itemClass, id: this.item.id, ref: this.ref },
441
+ return (React.createElement("div", { className: itemClass, id: "" + this.item.uniqueId, ref: this.ref },
442
442
  React.createElement("div", { className: "sv-action__content" },
443
443
  separator,
444
444
  itemComponent)));
@@ -1056,7 +1056,7 @@ class PopupModal extends SurveyElementBase {
1056
1056
  PopupModal.modalDescriptors = [];
1057
1057
 
1058
1058
  /*!
1059
- * surveyjs - Survey JavaScript library v2.3.16
1059
+ * surveyjs - Survey JavaScript library v2.4.1
1060
1060
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1061
1061
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1062
1062
  */
@@ -1126,7 +1126,7 @@ var iconsV1 = {
1126
1126
  };
1127
1127
 
1128
1128
  /*!
1129
- * surveyjs - Survey JavaScript library v2.3.16
1129
+ * surveyjs - Survey JavaScript library v2.4.1
1130
1130
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1131
1131
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1132
1132
  */
@@ -4201,7 +4201,7 @@ class MatrixRow extends SurveyElementBase {
4201
4201
  const model = this.model;
4202
4202
  if (!model.visible)
4203
4203
  return null;
4204
- return (React.createElement("tr", { ref: this.root, className: model.className, "data-sv-drop-target-matrix-row": model.dropTargetId, onPointerDown: (event) => this.onPointerDownHandler(event) }, this.props.children));
4204
+ return (React.createElement("tr", { ref: this.root, className: model.className, "data-sv-drop-target-matrix-row": model.dropTargetId }, this.props.children));
4205
4205
  }
4206
4206
  }
4207
4207
  ReactElementFactory.Instance.registerElement("sv-matrix-row", (props) => {
@@ -4212,8 +4212,11 @@ class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
4212
4212
  get question() {
4213
4213
  return this.props.item.data.question;
4214
4214
  }
4215
+ get row() {
4216
+ return this.props.item.data.row;
4217
+ }
4215
4218
  renderElement() {
4216
- return React.createElement("div", null, this.renderIcon());
4219
+ return React.createElement("div", { onPointerDown: (event) => { this.question.onPointerDown(event.nativeEvent, this.row); } }, this.renderIcon());
4217
4220
  }
4218
4221
  renderIcon() {
4219
4222
  if (this.question.iconDragElement) {
@@ -6156,7 +6159,7 @@ ReactElementFactory.Instance.registerElement(LocalizableString.editableRenderer,
6156
6159
  return React.createElement(SurveyLocStringEditor, props);
6157
6160
  });
6158
6161
 
6159
- checkLibraryVersion(`${"2.3.16"}`, "survey-react-ui");
6162
+ checkLibraryVersion(`${"2.4.1"}`, "survey-react-ui");
6160
6163
 
6161
6164
  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 };
6162
6165
  //# sourceMappingURL=survey-react-ui.mjs.map