survey-js-ui 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 - Survey JavaScript library v2.3.3
2
+ * surveyjs - Survey JavaScript library v2.3.4
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
  */
@@ -1983,7 +1983,7 @@ class PopupModal extends SurveyElementBase {
1983
1983
  PopupModal.modalDescriptors = [];
1984
1984
 
1985
1985
  /*!
1986
- * surveyjs - Survey JavaScript library v2.3.3
1986
+ * surveyjs - Survey JavaScript library v2.3.4
1987
1987
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
1988
1988
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
1989
1989
  */
@@ -2053,7 +2053,7 @@ var iconsV1 = {
2053
2053
  };
2054
2054
 
2055
2055
  /*!
2056
- * surveyjs - Survey JavaScript library v2.3.3
2056
+ * surveyjs - Survey JavaScript library v2.3.4
2057
2057
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
2058
2058
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
2059
2059
  */
@@ -3115,8 +3115,9 @@ class TagboxFilterString extends SurveyElementBase {
3115
3115
  }
3116
3116
  }
3117
3117
  onChange(e) {
3118
- const { root } = settings.environment;
3119
- if (e.target === root.activeElement) {
3118
+ var _a;
3119
+ const activeElement = (_a = e.target.getRootNode()) === null || _a === void 0 ? void 0 : _a.activeElement;
3120
+ if (e.target === activeElement) {
3120
3121
  this.model.inputStringRendered = e.target.value;
3121
3122
  }
3122
3123
  }
@@ -3290,7 +3291,9 @@ class SurveyQuestionDropdownBase extends SurveyQuestionUncontrolledElement {
3290
3291
  const { root } = settings.environment;
3291
3292
  const dropdownListModel = this.dropdownListModel;
3292
3293
  const onInputChange = (e) => {
3293
- if (e.target === root.activeElement) {
3294
+ var _a;
3295
+ const activeElement = (_a = e.target.getRootNode()) === null || _a === void 0 ? void 0 : _a.activeElement;
3296
+ if (e.target === activeElement) {
3294
3297
  dropdownListModel.inputStringRendered = e.target.value;
3295
3298
  }
3296
3299
  };
@@ -5148,8 +5151,9 @@ class List extends SurveyElementBase {
5148
5151
  return null;
5149
5152
  else {
5150
5153
  const onChange = (e) => {
5151
- const { root } = settings.environment;
5152
- if (e.target === root.activeElement) {
5154
+ var _a;
5155
+ const activeElement = (_a = e.target.getRootNode()) === null || _a === void 0 ? void 0 : _a.activeElement;
5156
+ if (e.target === activeElement) {
5153
5157
  this.model.filterString = e.target.value;
5154
5158
  }
5155
5159
  };
@@ -6316,7 +6320,7 @@ SurveyModel.prototype["render"] = function (element = null) {
6316
6320
  }
6317
6321
  };
6318
6322
  const preact = React;
6319
- checkLibraryVersion(`${"2.3.3"}`, "survey-js-ui");
6323
+ checkLibraryVersion(`${"2.3.4"}`, "survey-js-ui");
6320
6324
 
6321
6325
  export { CharacterCounterComponent, O as Children, x$2 as Component, ComponentsContainer, k$2 as Fragment, Header, HeaderCell, HeaderMobile, List, ListItemContent, ListItemGroup, LoadingIndicatorComponent, LogoImage, MatrixRow, NotifierComponent, Popup, PopupModal, PopupSurvey, N as PureComponent, QuestionErrorComponent, RatingDropdownItem, RatingItem, RatingItemSmiley, RatingItemStar, ReactElementFactory, ReactQuestionFactory, ReactSurveyElement, ReactSurveyElementsWrapper, Scroll, Skeleton, SliderLabelItem, Cn as StrictMode, 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, P as Suspense, B as SuspenseList, SvgBundleComponent, SvgIcon, TagboxFilterString, TitleActions, TitleElement, attachKey2click, _n as cloneElement, Q$1 as createContext, _$1 as createElement, dn as createFactory, $ as createPortal, b$1 as createRef, Sn as findDOMNode, En as flushSync, D as forwardRef, tn as hydrate, pn as isFragment, yn as isMemo, mn as isValidElement, z as lazy, M as memo, preact, nn as render, renderPopupSurvey, renderSurvey, R as startTransition, bn as unmountComponentAtNode, gn as unstable_batchedUpdates, q$1 as useCallback, x$1 as useContext, P$1 as useDebugValue, w as useDeferredValue, y as useEffect, g$1 as useId, F$1 as useImperativeHandle, I as useInsertionEffect, _ as useLayoutEffect, T$1 as useMemo, h as useReducer, A$1 as useRef, d as useState, C as useSyncExternalStore, k as useTransition, vn as version };
6322
6326
  //# sourceMappingURL=survey-js-ui.mjs.map