survey-react 1.9.79 → 1.9.80

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/survey.react.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.9.79
2
+ * surveyjs - Survey JavaScript library v1.9.80
3
3
  * Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -1441,9 +1441,6 @@ var BaseAction = /** @class */ (function (_super) {
1441
1441
  __decorate([
1442
1442
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])({ defaultValue: "large" })
1443
1443
  ], BaseAction.prototype, "mode", void 0);
1444
- __decorate([
1445
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])()
1446
- ], BaseAction.prototype, "owner", void 0);
1447
1444
  __decorate([
1448
1445
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])()
1449
1446
  ], BaseAction.prototype, "visibleIndex", void 0);
@@ -3305,7 +3302,7 @@ var CalculatedValue = /** @class */ (function (_super) {
3305
3302
  * The calculated value name. It should be non empty and unique.
3306
3303
  */
3307
3304
  get: function () {
3308
- return this.getPropertyValue("name", "");
3305
+ return this.getPropertyValue("name") || "";
3309
3306
  },
3310
3307
  set: function (val) {
3311
3308
  this.setPropertyValue("name", val);
@@ -3318,7 +3315,7 @@ var CalculatedValue = /** @class */ (function (_super) {
3318
3315
  * Set this property to true to include the non-empty calculated value into survey result, survey.data property.
3319
3316
  */
3320
3317
  get: function () {
3321
- return this.getPropertyValue("includeIntoResult", false);
3318
+ return this.getPropertyValue("includeIntoResult");
3322
3319
  },
3323
3320
  set: function (val) {
3324
3321
  this.setPropertyValue("includeIntoResult", val);
@@ -3332,7 +3329,7 @@ var CalculatedValue = /** @class */ (function (_super) {
3332
3329
  * Example: "({quantity} * {price}) * (100 - {discount}) / 100"
3333
3330
  */
3334
3331
  get: function () {
3335
- return this.getPropertyValue("expression", "");
3332
+ return this.getPropertyValue("expression") || "";
3336
3333
  },
3337
3334
  set: function (val) {
3338
3335
  this.setPropertyValue("expression", val);
@@ -5597,6 +5594,7 @@ var defaultV2Css = {
5597
5594
  edit: "",
5598
5595
  },
5599
5596
  panel: {
5597
+ asPage: "sd-panel--as-page",
5600
5598
  number: "sd-element__num",
5601
5599
  title: "sd-title sd-element__title sd-panel__title",
5602
5600
  titleExpandable: "sd-element__title--expandable",
@@ -5839,6 +5837,7 @@ var defaultV2Css = {
5839
5837
  itemLabelOnError: "sd-multipletext__item-container--error",
5840
5838
  item: "sd-multipletext__item",
5841
5839
  itemTitle: "sd-multipletext__item-title",
5840
+ content: "sd-multipletext__content sd-question__content",
5842
5841
  row: "sd-multipletext__row",
5843
5842
  cell: "sd-multipletext__cell"
5844
5843
  },
@@ -5951,6 +5950,7 @@ var defaultV2Css = {
5951
5950
  empty: "sd-question--empty",
5952
5951
  root: "sd-table sd-matrixdynamic",
5953
5952
  tableWrapper: "sd-table-wrapper",
5953
+ content: "sd-matrixdynamic__content sd-question__content",
5954
5954
  cell: "sd-table__cell",
5955
5955
  row: "sd-table__row",
5956
5956
  itemCell: "sd-table__cell--item",
@@ -5996,6 +5996,11 @@ var defaultV2Css = {
5996
5996
  itemStarDisabled: "sd-rating__item-star--disabled",
5997
5997
  itemStarHighlighted: "sd-rating__item-star--highlighted",
5998
5998
  itemStarUnhighlighted: "sd-rating__item-star--unhighlighted",
5999
+ itemSmiley: "sd-rating__item-smiley",
6000
+ itemSmileyOnError: "sd-rating__item-smiley--error",
6001
+ itemSmileyHover: "sd-rating__item-smiley--allowhover",
6002
+ itemSmileySelected: "sd-rating__item-smiley--selected",
6003
+ itemSmileyDisabled: "sd-rating__item-smiley--disabled",
5999
6004
  minText: "sd-rating__item-text sd-rating__min-text",
6000
6005
  itemText: "sd-rating__item-text",
6001
6006
  maxText: "sd-rating__item-text sd-rating__max-text",
@@ -7740,7 +7745,7 @@ var DropdownListModel = /** @class */ (function (_super) {
7740
7745
  _this._popupModel.toggleVisibility();
7741
7746
  };
7742
7747
  }
7743
- var res = new _list__WEBPACK_IMPORTED_MODULE_2__["ListModel"](visibleItems, _onSelectionChanged, false);
7748
+ var res = new _list__WEBPACK_IMPORTED_MODULE_2__["ListModel"](visibleItems, _onSelectionChanged, false, undefined, undefined, this.listElementId);
7744
7749
  res.renderElements = false;
7745
7750
  res.areSameItemsCallback = function (item1, item2) {
7746
7751
  return item1 === item2;
@@ -7792,6 +7797,7 @@ var DropdownListModel = /** @class */ (function (_super) {
7792
7797
  }
7793
7798
  else {
7794
7799
  this.inputString = item === null || item === void 0 ? void 0 : item.title;
7800
+ this.hintString = item === null || item === void 0 ? void 0 : item.title;
7795
7801
  }
7796
7802
  };
7797
7803
  DropdownListModel.prototype.applyHintString = function (item) {
@@ -7823,6 +7829,13 @@ var DropdownListModel = /** @class */ (function (_super) {
7823
7829
  enumerable: false,
7824
7830
  configurable: true
7825
7831
  });
7832
+ Object.defineProperty(DropdownListModel.prototype, "listElementId", {
7833
+ get: function () {
7834
+ return this.question.inputId + "_list";
7835
+ },
7836
+ enumerable: false,
7837
+ configurable: true
7838
+ });
7826
7839
  Object.defineProperty(DropdownListModel.prototype, "hintStringLC", {
7827
7840
  get: function () {
7828
7841
  var _a;
@@ -7857,7 +7870,7 @@ var DropdownListModel = /** @class */ (function (_super) {
7857
7870
  });
7858
7871
  Object.defineProperty(DropdownListModel.prototype, "showHintString", {
7859
7872
  get: function () {
7860
- return this.hintStringLC != this.inputStringLC && this.hintStringLC.indexOf(this.inputStringLC) >= 0;
7873
+ return !!this.question.searchEnabled && this.hintStringLC && this.hintStringLC.indexOf(this.inputStringLC) >= 0;
7861
7874
  },
7862
7875
  enumerable: false,
7863
7876
  configurable: true
@@ -7928,6 +7941,7 @@ var DropdownListModel = /** @class */ (function (_super) {
7928
7941
  return this.question.selectedItem || null;
7929
7942
  };
7930
7943
  DropdownListModel.prototype.changeSelectionWithKeyboard = function (reverse) {
7944
+ var _a;
7931
7945
  if (reverse) {
7932
7946
  this.listModel.focusPrevVisibleItem();
7933
7947
  }
@@ -7937,11 +7951,11 @@ var DropdownListModel = /** @class */ (function (_super) {
7937
7951
  this.scrollToFocusedItem();
7938
7952
  if (this.question.value && this.question.searchEnabled && this.question instanceof _question_dropdown__WEBPACK_IMPORTED_MODULE_4__["QuestionDropdownModel"]) {
7939
7953
  this.applyInputString(this.listModel.focusedItem);
7940
- this.hintString = "";
7941
7954
  }
7942
7955
  else {
7943
7956
  this.applyHintString(this.listModel.focusedItem);
7944
7957
  }
7958
+ this.ariaActivedescendant = (_a = this.listModel.focusedItem) === null || _a === void 0 ? void 0 : _a.elementId;
7945
7959
  };
7946
7960
  DropdownListModel.prototype.keyHandler = function (event) {
7947
7961
  var char = event.which || event.keyCode;
@@ -8017,15 +8031,17 @@ var DropdownListModel = /** @class */ (function (_super) {
8017
8031
  this.hintString = "";
8018
8032
  Object(_utils_utils__WEBPACK_IMPORTED_MODULE_7__["doKey2ClickBlur"])(event);
8019
8033
  this._popupModel.isVisible = false;
8034
+ event.stopPropagation();
8020
8035
  };
8021
8036
  DropdownListModel.prototype.onFocus = function (event) {
8037
+ this.setInputStringFromSelectedItem();
8038
+ };
8039
+ DropdownListModel.prototype.setInputStringFromSelectedItem = function (newValue) {
8022
8040
  if (this.question.searchEnabled) {
8023
- if (this.question instanceof _question_dropdown__WEBPACK_IMPORTED_MODULE_4__["QuestionDropdownModel"]) {
8024
- this.applyInputString(this.question.selectedItem);
8025
- }
8026
- else {
8027
- this.inputString = null;
8028
- }
8041
+ this.applyInputString(newValue || this.question.selectedItem);
8042
+ }
8043
+ else {
8044
+ this.inputString = null;
8029
8045
  }
8030
8046
  };
8031
8047
  DropdownListModel.prototype.scrollToFocusedItem = function () {
@@ -8047,6 +8063,7 @@ var DropdownListModel = /** @class */ (function (_super) {
8047
8063
  defaultValue: "",
8048
8064
  onSet: function (newValue, target) {
8049
8065
  target.question.inputHasValue = !!newValue;
8066
+ target.showSelectedItemLocText = target.question.showSelectedItemLocText;
8050
8067
  }
8051
8068
  })
8052
8069
  ], DropdownListModel.prototype, "inputString", void 0);
@@ -8056,6 +8073,9 @@ var DropdownListModel = /** @class */ (function (_super) {
8056
8073
  __decorate([
8057
8074
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({})
8058
8075
  ], DropdownListModel.prototype, "showInputFieldComponent", void 0);
8076
+ __decorate([
8077
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
8078
+ ], DropdownListModel.prototype, "ariaActivedescendant", void 0);
8059
8079
  __decorate([
8060
8080
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({
8061
8081
  defaultValue: false,
@@ -8181,7 +8201,7 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
8181
8201
  }
8182
8202
  };
8183
8203
  }
8184
- return new _multiSelectListModel__WEBPACK_IMPORTED_MODULE_3__["MultiSelectListModel"](visibleItems, _onSelectionChanged, false);
8204
+ return new _multiSelectListModel__WEBPACK_IMPORTED_MODULE_3__["MultiSelectListModel"](visibleItems, _onSelectionChanged, false, undefined, undefined, this.listElementId);
8185
8205
  };
8186
8206
  Object.defineProperty(DropdownMultiSelectListModel.prototype, "shouldResetAfterCancel", {
8187
8207
  get: function () {
@@ -8256,6 +8276,11 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
8256
8276
  event.stopPropagation();
8257
8277
  }
8258
8278
  };
8279
+ DropdownMultiSelectListModel.prototype.setInputStringFromSelectedItem = function (newValue) {
8280
+ if (this.question.searchEnabled) {
8281
+ this.inputString = null;
8282
+ }
8283
+ };
8259
8284
  __decorate([
8260
8285
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])({ defaultValue: "" })
8261
8286
  ], DropdownMultiSelectListModel.prototype, "filterStringPlaceholder", void 0);
@@ -9021,7 +9046,7 @@ __webpack_require__.r(__webpack_exports__);
9021
9046
  // import "../../main.scss";
9022
9047
  //import "../../modern.scss";
9023
9048
  var Version;
9024
- Version = "" + "1.9.79";
9049
+ Version = "" + "1.9.80";
9025
9050
  function checkLibraryVersion(ver, libraryName) {
9026
9051
  if (Version != ver) {
9027
9052
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -10004,7 +10029,7 @@ var defaultBootstrapMaterialCss = _plugins_themes_bootstrapmaterial_cssbootstrap
10004
10029
  /*!***************************************!*\
10005
10030
  !*** ./src/entries/react-ui-model.ts ***!
10006
10031
  \***************************************/
10007
- /*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, SurveyLocStringViewer, SurveyLocStringEditor */
10032
+ /*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, SurveyLocStringViewer, SurveyLocStringEditor */
10008
10033
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10009
10034
 
10010
10035
  "use strict";
@@ -10070,194 +10095,197 @@ __webpack_require__.r(__webpack_exports__);
10070
10095
  /* harmony import */ var _react_components_rating_rating_item_star__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../react/components/rating/rating-item-star */ "./src/react/components/rating/rating-item-star.tsx");
10071
10096
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemStar", function() { return _react_components_rating_rating_item_star__WEBPACK_IMPORTED_MODULE_14__["RatingItemStar"]; });
10072
10097
 
10073
- /* harmony import */ var _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../react/tagbox-filter */ "./src/react/tagbox-filter.tsx");
10074
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_15__["TagboxFilterString"]; });
10098
+ /* harmony import */ var _react_components_rating_rating_item_smiley__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../react/components/rating/rating-item-smiley */ "./src/react/components/rating/rating-item-smiley.tsx");
10099
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_components_rating_rating_item_smiley__WEBPACK_IMPORTED_MODULE_15__["RatingItemSmiley"]; });
10075
10100
 
10076
- /* harmony import */ var _react_dropdown_item__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../react/dropdown-item */ "./src/react/dropdown-item.tsx");
10077
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_dropdown_item__WEBPACK_IMPORTED_MODULE_16__["SurveyQuestionOptionItem"]; });
10101
+ /* harmony import */ var _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../react/tagbox-filter */ "./src/react/tagbox-filter.tsx");
10102
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_16__["TagboxFilterString"]; });
10078
10103
 
10079
- /* harmony import */ var _react_dropdown_base__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../react/dropdown-base */ "./src/react/dropdown-base.tsx");
10080
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownBase", function() { return _react_dropdown_base__WEBPACK_IMPORTED_MODULE_17__["SurveyQuestionDropdownBase"]; });
10104
+ /* harmony import */ var _react_dropdown_item__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../react/dropdown-item */ "./src/react/dropdown-item.tsx");
10105
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_dropdown_item__WEBPACK_IMPORTED_MODULE_17__["SurveyQuestionOptionItem"]; });
10081
10106
 
10082
- /* harmony import */ var _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../react/reactquestion_dropdown */ "./src/react/reactquestion_dropdown.tsx");
10083
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdown", function() { return _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_18__["SurveyQuestionDropdown"]; });
10107
+ /* harmony import */ var _react_dropdown_base__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../react/dropdown-base */ "./src/react/dropdown-base.tsx");
10108
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownBase", function() { return _react_dropdown_base__WEBPACK_IMPORTED_MODULE_18__["SurveyQuestionDropdownBase"]; });
10084
10109
 
10085
- /* harmony import */ var _react_tagbox_item__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../react/tagbox-item */ "./src/react/tagbox-item.tsx");
10086
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagboxItem", function() { return _react_tagbox_item__WEBPACK_IMPORTED_MODULE_19__["SurveyQuestionTagboxItem"]; });
10110
+ /* harmony import */ var _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../react/reactquestion_dropdown */ "./src/react/reactquestion_dropdown.tsx");
10111
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdown", function() { return _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_19__["SurveyQuestionDropdown"]; });
10087
10112
 
10088
- /* harmony import */ var _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../react/reactquestion_tagbox */ "./src/react/reactquestion_tagbox.tsx");
10089
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagbox", function() { return _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_20__["SurveyQuestionTagbox"]; });
10113
+ /* harmony import */ var _react_tagbox_item__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../react/tagbox-item */ "./src/react/tagbox-item.tsx");
10114
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagboxItem", function() { return _react_tagbox_item__WEBPACK_IMPORTED_MODULE_20__["SurveyQuestionTagboxItem"]; });
10090
10115
 
10091
- /* harmony import */ var _react_dropdown_select__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../react/dropdown-select */ "./src/react/dropdown-select.tsx");
10092
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownSelect", function() { return _react_dropdown_select__WEBPACK_IMPORTED_MODULE_21__["SurveyQuestionDropdownSelect"]; });
10116
+ /* harmony import */ var _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../react/reactquestion_tagbox */ "./src/react/reactquestion_tagbox.tsx");
10117
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagbox", function() { return _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_21__["SurveyQuestionTagbox"]; });
10093
10118
 
10094
- /* harmony import */ var _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../react/reactquestion_matrix */ "./src/react/reactquestion_matrix.tsx");
10095
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrix", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_22__["SurveyQuestionMatrix"]; });
10119
+ /* harmony import */ var _react_dropdown_select__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../react/dropdown-select */ "./src/react/dropdown-select.tsx");
10120
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownSelect", function() { return _react_dropdown_select__WEBPACK_IMPORTED_MODULE_22__["SurveyQuestionDropdownSelect"]; });
10096
10121
 
10097
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixRow", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_22__["SurveyQuestionMatrixRow"]; });
10122
+ /* harmony import */ var _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../react/reactquestion_matrix */ "./src/react/reactquestion_matrix.tsx");
10123
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrix", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_23__["SurveyQuestionMatrix"]; });
10098
10124
 
10099
- /* harmony import */ var _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../react/reactquestion_html */ "./src/react/reactquestion_html.tsx");
10100
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_23__["SurveyQuestionHtml"]; });
10125
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixRow", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_23__["SurveyQuestionMatrixRow"]; });
10101
10126
 
10102
- /* harmony import */ var _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../react/reactquestion_file */ "./src/react/reactquestion_file.tsx");
10103
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFile", function() { return _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionFile"]; });
10127
+ /* harmony import */ var _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../react/reactquestion_html */ "./src/react/reactquestion_html.tsx");
10128
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionHtml"]; });
10104
10129
 
10105
- /* harmony import */ var _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../react/reactquestion_multipletext */ "./src/react/reactquestion_multipletext.tsx");
10106
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMultipleText", function() { return _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_25__["SurveyQuestionMultipleText"]; });
10130
+ /* harmony import */ var _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../react/reactquestion_file */ "./src/react/reactquestion_file.tsx");
10131
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFile", function() { return _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_25__["SurveyQuestionFile"]; });
10107
10132
 
10108
- /* harmony import */ var _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../react/reactquestion_radiogroup */ "./src/react/reactquestion_radiogroup.tsx");
10109
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadiogroup", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_26__["SurveyQuestionRadiogroup"]; });
10133
+ /* harmony import */ var _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../react/reactquestion_multipletext */ "./src/react/reactquestion_multipletext.tsx");
10134
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMultipleText", function() { return _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_26__["SurveyQuestionMultipleText"]; });
10110
10135
 
10111
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadioItem", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_26__["SurveyQuestionRadioItem"]; });
10136
+ /* harmony import */ var _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../react/reactquestion_radiogroup */ "./src/react/reactquestion_radiogroup.tsx");
10137
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadiogroup", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_27__["SurveyQuestionRadiogroup"]; });
10112
10138
 
10113
- /* harmony import */ var _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../react/reactquestion_text */ "./src/react/reactquestion_text.tsx");
10114
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_27__["SurveyQuestionText"]; });
10139
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadioItem", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_27__["SurveyQuestionRadioItem"]; });
10115
10140
 
10116
- /* harmony import */ var _react_boolean__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../react/boolean */ "./src/react/boolean.tsx");
10117
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBoolean", function() { return _react_boolean__WEBPACK_IMPORTED_MODULE_28__["SurveyQuestionBoolean"]; });
10141
+ /* harmony import */ var _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../react/reactquestion_text */ "./src/react/reactquestion_text.tsx");
10142
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_28__["SurveyQuestionText"]; });
10118
10143
 
10119
- /* harmony import */ var _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../react/boolean-checkbox */ "./src/react/boolean-checkbox.tsx");
10120
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanCheckbox", function() { return _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_29__["SurveyQuestionBooleanCheckbox"]; });
10144
+ /* harmony import */ var _react_boolean__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../react/boolean */ "./src/react/boolean.tsx");
10145
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBoolean", function() { return _react_boolean__WEBPACK_IMPORTED_MODULE_29__["SurveyQuestionBoolean"]; });
10121
10146
 
10122
- /* harmony import */ var _react_boolean_radio__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../react/boolean-radio */ "./src/react/boolean-radio.tsx");
10123
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanRadio", function() { return _react_boolean_radio__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionBooleanRadio"]; });
10147
+ /* harmony import */ var _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../react/boolean-checkbox */ "./src/react/boolean-checkbox.tsx");
10148
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanCheckbox", function() { return _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionBooleanCheckbox"]; });
10124
10149
 
10125
- /* harmony import */ var _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../react/reactquestion_empty */ "./src/react/reactquestion_empty.tsx");
10126
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEmpty", function() { return _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_31__["SurveyQuestionEmpty"]; });
10150
+ /* harmony import */ var _react_boolean_radio__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../react/boolean-radio */ "./src/react/boolean-radio.tsx");
10151
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanRadio", function() { return _react_boolean_radio__WEBPACK_IMPORTED_MODULE_31__["SurveyQuestionBooleanRadio"]; });
10127
10152
 
10128
- /* harmony import */ var _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdownbase */ "./src/react/reactquestion_matrixdropdownbase.tsx");
10129
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownCell", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_32__["SurveyQuestionMatrixDropdownCell"]; });
10153
+ /* harmony import */ var _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../react/reactquestion_empty */ "./src/react/reactquestion_empty.tsx");
10154
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEmpty", function() { return _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_32__["SurveyQuestionEmpty"]; });
10130
10155
 
10131
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownBase", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_32__["SurveyQuestionMatrixDropdownBase"]; });
10156
+ /* harmony import */ var _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdownbase */ "./src/react/reactquestion_matrixdropdownbase.tsx");
10157
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownCell", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_33__["SurveyQuestionMatrixDropdownCell"]; });
10132
10158
 
10133
- /* harmony import */ var _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdown */ "./src/react/reactquestion_matrixdropdown.tsx");
10134
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_33__["SurveyQuestionMatrixDropdown"]; });
10159
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownBase", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_33__["SurveyQuestionMatrixDropdownBase"]; });
10135
10160
 
10136
- /* harmony import */ var _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../react/reactquestion_matrixdynamic */ "./src/react/reactquestion_matrixdynamic.tsx");
10137
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamic", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_34__["SurveyQuestionMatrixDynamic"]; });
10161
+ /* harmony import */ var _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdown */ "./src/react/reactquestion_matrixdropdown.tsx");
10162
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_34__["SurveyQuestionMatrixDropdown"]; });
10138
10163
 
10139
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicAddButton", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_34__["SurveyQuestionMatrixDynamicAddButton"]; });
10164
+ /* harmony import */ var _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../react/reactquestion_matrixdynamic */ "./src/react/reactquestion_matrixdynamic.tsx");
10165
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamic", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_35__["SurveyQuestionMatrixDynamic"]; });
10140
10166
 
10141
- /* harmony import */ var _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../react/reactquestion_paneldynamic */ "./src/react/reactquestion_paneldynamic.tsx");
10142
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_35__["SurveyQuestionPanelDynamic"]; });
10167
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicAddButton", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_35__["SurveyQuestionMatrixDynamicAddButton"]; });
10143
10168
 
10144
- /* harmony import */ var _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../react/reactSurveyProgress */ "./src/react/reactSurveyProgress.tsx");
10145
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgress", function() { return _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_36__["SurveyProgress"]; });
10169
+ /* harmony import */ var _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../react/reactquestion_paneldynamic */ "./src/react/reactquestion_paneldynamic.tsx");
10170
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionPanelDynamic"]; });
10146
10171
 
10147
- /* harmony import */ var _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../react/reactSurveyProgressButtons */ "./src/react/reactSurveyProgressButtons.tsx");
10148
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressButtons", function() { return _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_37__["SurveyProgressButtons"]; });
10172
+ /* harmony import */ var _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../react/reactSurveyProgress */ "./src/react/reactSurveyProgress.tsx");
10173
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgress", function() { return _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_37__["SurveyProgress"]; });
10149
10174
 
10150
- /* harmony import */ var _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../react/reactSurveyProgressToc */ "./src/react/reactSurveyProgressToc.tsx");
10151
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressToc", function() { return _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_38__["SurveyProgressToc"]; });
10175
+ /* harmony import */ var _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../react/reactSurveyProgressButtons */ "./src/react/reactSurveyProgressButtons.tsx");
10176
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressButtons", function() { return _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_38__["SurveyProgressButtons"]; });
10152
10177
 
10153
- /* harmony import */ var _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../react/reactquestion_rating */ "./src/react/reactquestion_rating.tsx");
10154
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRating", function() { return _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_39__["SurveyQuestionRating"]; });
10178
+ /* harmony import */ var _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../react/reactSurveyProgressToc */ "./src/react/reactSurveyProgressToc.tsx");
10179
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressToc", function() { return _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_39__["SurveyProgressToc"]; });
10155
10180
 
10156
- /* harmony import */ var _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../react/rating-dropdown */ "./src/react/rating-dropdown.tsx");
10157
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRatingDropdown", function() { return _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_40__["SurveyQuestionRatingDropdown"]; });
10181
+ /* harmony import */ var _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../react/reactquestion_rating */ "./src/react/reactquestion_rating.tsx");
10182
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRating", function() { return _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_40__["SurveyQuestionRating"]; });
10158
10183
 
10159
- /* harmony import */ var _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../react/reactquestion_expression */ "./src/react/reactquestion_expression.tsx");
10160
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionExpression", function() { return _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_41__["SurveyQuestionExpression"]; });
10184
+ /* harmony import */ var _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../react/rating-dropdown */ "./src/react/rating-dropdown.tsx");
10185
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRatingDropdown", function() { return _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_41__["SurveyQuestionRatingDropdown"]; });
10161
10186
 
10162
- /* harmony import */ var _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../react/react-popup-survey */ "./src/react/react-popup-survey.tsx");
10163
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PopupSurvey", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_42__["PopupSurvey"]; });
10187
+ /* harmony import */ var _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../react/reactquestion_expression */ "./src/react/reactquestion_expression.tsx");
10188
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionExpression", function() { return _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_42__["SurveyQuestionExpression"]; });
10164
10189
 
10165
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyWindow", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_42__["SurveyWindow"]; });
10190
+ /* harmony import */ var _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../react/react-popup-survey */ "./src/react/react-popup-survey.tsx");
10191
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PopupSurvey", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_43__["PopupSurvey"]; });
10166
10192
 
10167
- /* harmony import */ var _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../react/reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
10168
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_43__["ReactQuestionFactory"]; });
10193
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyWindow", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_43__["SurveyWindow"]; });
10169
10194
 
10170
- /* harmony import */ var _react_element_factory__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../react/element-factory */ "./src/react/element-factory.tsx");
10171
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactElementFactory", function() { return _react_element_factory__WEBPACK_IMPORTED_MODULE_44__["ReactElementFactory"]; });
10195
+ /* harmony import */ var _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../react/reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
10196
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_44__["ReactQuestionFactory"]; });
10172
10197
 
10173
- /* harmony import */ var _react_imagepicker__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../react/imagepicker */ "./src/react/imagepicker.tsx");
10174
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImagePicker", function() { return _react_imagepicker__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionImagePicker"]; });
10198
+ /* harmony import */ var _react_element_factory__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../react/element-factory */ "./src/react/element-factory.tsx");
10199
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactElementFactory", function() { return _react_element_factory__WEBPACK_IMPORTED_MODULE_45__["ReactElementFactory"]; });
10175
10200
 
10176
- /* harmony import */ var _react_image__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../react/image */ "./src/react/image.tsx");
10177
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImage", function() { return _react_image__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionImage"]; });
10201
+ /* harmony import */ var _react_imagepicker__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../react/imagepicker */ "./src/react/imagepicker.tsx");
10202
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImagePicker", function() { return _react_imagepicker__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionImagePicker"]; });
10178
10203
 
10179
- /* harmony import */ var _react_signaturepad__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../react/signaturepad */ "./src/react/signaturepad.tsx");
10180
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSignaturePad", function() { return _react_signaturepad__WEBPACK_IMPORTED_MODULE_47__["SurveyQuestionSignaturePad"]; });
10204
+ /* harmony import */ var _react_image__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../react/image */ "./src/react/image.tsx");
10205
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImage", function() { return _react_image__WEBPACK_IMPORTED_MODULE_47__["SurveyQuestionImage"]; });
10181
10206
 
10182
- /* harmony import */ var _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../react/reactquestion_buttongroup */ "./src/react/reactquestion_buttongroup.tsx");
10183
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionButtonGroup", function() { return _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_48__["SurveyQuestionButtonGroup"]; });
10207
+ /* harmony import */ var _react_signaturepad__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../react/signaturepad */ "./src/react/signaturepad.tsx");
10208
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSignaturePad", function() { return _react_signaturepad__WEBPACK_IMPORTED_MODULE_48__["SurveyQuestionSignaturePad"]; });
10184
10209
 
10185
- /* harmony import */ var _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../react/reactquestion_custom */ "./src/react/reactquestion_custom.tsx");
10186
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionCustom", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionCustom"]; });
10210
+ /* harmony import */ var _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../react/reactquestion_buttongroup */ "./src/react/reactquestion_buttongroup.tsx");
10211
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionButtonGroup", function() { return _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionButtonGroup"]; });
10187
10212
 
10188
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionComposite", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionComposite"]; });
10213
+ /* harmony import */ var _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../react/reactquestion_custom */ "./src/react/reactquestion_custom.tsx");
10214
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionCustom", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionCustom"]; });
10189
10215
 
10190
- /* harmony import */ var _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../react/components/popup/popup */ "./src/react/components/popup/popup.tsx");
10191
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_50__["Popup"]; });
10216
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionComposite", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionComposite"]; });
10192
10217
 
10193
- /* harmony import */ var _react_components_list_list__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../react/components/list/list */ "./src/react/components/list/list.tsx");
10194
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "List", function() { return _react_components_list_list__WEBPACK_IMPORTED_MODULE_51__["List"]; });
10218
+ /* harmony import */ var _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../react/components/popup/popup */ "./src/react/components/popup/popup.tsx");
10219
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_51__["Popup"]; });
10195
10220
 
10196
- /* harmony import */ var _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../react/components/title/title-actions */ "./src/react/components/title/title-actions.tsx");
10197
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleActions", function() { return _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_52__["TitleActions"]; });
10221
+ /* harmony import */ var _react_components_list_list__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../react/components/list/list */ "./src/react/components/list/list.tsx");
10222
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "List", function() { return _react_components_list_list__WEBPACK_IMPORTED_MODULE_52__["List"]; });
10198
10223
 
10199
- /* harmony import */ var _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../react/components/title/title-element */ "./src/react/components/title/title-element.tsx");
10200
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleElement", function() { return _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_53__["TitleElement"]; });
10224
+ /* harmony import */ var _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../react/components/title/title-actions */ "./src/react/components/title/title-actions.tsx");
10225
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleActions", function() { return _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_53__["TitleActions"]; });
10201
10226
 
10202
- /* harmony import */ var _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../react/components/action-bar/action-bar */ "./src/react/components/action-bar/action-bar.tsx");
10203
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyActionBar", function() { return _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_54__["SurveyActionBar"]; });
10227
+ /* harmony import */ var _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../react/components/title/title-element */ "./src/react/components/title/title-element.tsx");
10228
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleElement", function() { return _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_54__["TitleElement"]; });
10204
10229
 
10205
- /* harmony import */ var _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../react/components/survey-header/logo-image */ "./src/react/components/survey-header/logo-image.tsx");
10206
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImage", function() { return _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_55__["LogoImage"]; });
10230
+ /* harmony import */ var _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../react/components/action-bar/action-bar */ "./src/react/components/action-bar/action-bar.tsx");
10231
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyActionBar", function() { return _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_55__["SurveyActionBar"]; });
10207
10232
 
10208
- /* harmony import */ var _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../react/components/survey-header/survey-header */ "./src/react/components/survey-header/survey-header.tsx");
10209
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHeader", function() { return _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_56__["SurveyHeader"]; });
10233
+ /* harmony import */ var _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../react/components/survey-header/logo-image */ "./src/react/components/survey-header/logo-image.tsx");
10234
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImage", function() { return _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_56__["LogoImage"]; });
10210
10235
 
10211
- /* harmony import */ var _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../react/components/svg-icon/svg-icon */ "./src/react/components/svg-icon/svg-icon.tsx");
10212
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgIcon", function() { return _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_57__["SvgIcon"]; });
10236
+ /* harmony import */ var _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../react/components/survey-header/survey-header */ "./src/react/components/survey-header/survey-header.tsx");
10237
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHeader", function() { return _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_57__["SurveyHeader"]; });
10213
10238
 
10214
- /* harmony import */ var _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../react/components/matrix-actions/remove-button/remove-button */ "./src/react/components/matrix-actions/remove-button/remove-button.tsx");
10215
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicRemoveButton", function() { return _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_58__["SurveyQuestionMatrixDynamicRemoveButton"]; });
10239
+ /* harmony import */ var _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../react/components/svg-icon/svg-icon */ "./src/react/components/svg-icon/svg-icon.tsx");
10240
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgIcon", function() { return _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_58__["SvgIcon"]; });
10216
10241
 
10217
- /* harmony import */ var _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../react/components/matrix-actions/detail-button/detail-button */ "./src/react/components/matrix-actions/detail-button/detail-button.tsx");
10218
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDetailButton", function() { return _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_59__["SurveyQuestionMatrixDetailButton"]; });
10242
+ /* harmony import */ var _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../react/components/matrix-actions/remove-button/remove-button */ "./src/react/components/matrix-actions/remove-button/remove-button.tsx");
10243
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicRemoveButton", function() { return _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_59__["SurveyQuestionMatrixDynamicRemoveButton"]; });
10219
10244
 
10220
- /* harmony import */ var _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../react/components/matrix-actions/drag-drop-icon/drag-drop-icon */ "./src/react/components/matrix-actions/drag-drop-icon/drag-drop-icon.tsx");
10221
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicDragDropIcon", function() { return _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_60__["SurveyQuestionMatrixDynamicDragDropIcon"]; });
10245
+ /* harmony import */ var _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../react/components/matrix-actions/detail-button/detail-button */ "./src/react/components/matrix-actions/detail-button/detail-button.tsx");
10246
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDetailButton", function() { return _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_60__["SurveyQuestionMatrixDetailButton"]; });
10222
10247
 
10223
- /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-add-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-add-btn.tsx");
10224
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicAddButton", function() { return _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_61__["SurveyQuestionPanelDynamicAddButton"]; });
10248
+ /* harmony import */ var _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../react/components/matrix-actions/drag-drop-icon/drag-drop-icon */ "./src/react/components/matrix-actions/drag-drop-icon/drag-drop-icon.tsx");
10249
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicDragDropIcon", function() { return _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_61__["SurveyQuestionMatrixDynamicDragDropIcon"]; });
10225
10250
 
10226
- /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-remove-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-remove-btn.tsx");
10227
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicRemoveButton", function() { return _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_62__["SurveyQuestionPanelDynamicRemoveButton"]; });
10251
+ /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-add-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-add-btn.tsx");
10252
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicAddButton", function() { return _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_62__["SurveyQuestionPanelDynamicAddButton"]; });
10228
10253
 
10229
- /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-prev-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-prev-btn.tsx");
10230
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicPrevButton", function() { return _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_63__["SurveyQuestionPanelDynamicPrevButton"]; });
10254
+ /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-remove-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-remove-btn.tsx");
10255
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicRemoveButton", function() { return _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_63__["SurveyQuestionPanelDynamicRemoveButton"]; });
10231
10256
 
10232
- /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-next-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-next-btn.tsx");
10233
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicNextButton", function() { return _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_64__["SurveyQuestionPanelDynamicNextButton"]; });
10257
+ /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-prev-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-prev-btn.tsx");
10258
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicPrevButton", function() { return _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_64__["SurveyQuestionPanelDynamicPrevButton"]; });
10234
10259
 
10235
- /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-progress-text */ "./src/react/components/paneldynamic-actions/paneldynamic-progress-text.tsx");
10236
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicProgressText", function() { return _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_65__["SurveyQuestionPanelDynamicProgressText"]; });
10260
+ /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-next-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-next-btn.tsx");
10261
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicNextButton", function() { return _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_65__["SurveyQuestionPanelDynamicNextButton"]; });
10237
10262
 
10238
- /* harmony import */ var _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../react/components/survey-actions/survey-nav-button */ "./src/react/components/survey-actions/survey-nav-button.tsx");
10239
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_66__["SurveyNavigationButton"]; });
10263
+ /* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-progress-text */ "./src/react/components/paneldynamic-actions/paneldynamic-progress-text.tsx");
10264
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicProgressText", function() { return _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_66__["SurveyQuestionPanelDynamicProgressText"]; });
10240
10265
 
10241
- /* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
10242
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_67__["MatrixRow"]; });
10266
+ /* harmony import */ var _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../react/components/survey-actions/survey-nav-button */ "./src/react/components/survey-actions/survey-nav-button.tsx");
10267
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_67__["SurveyNavigationButton"]; });
10243
10268
 
10244
- /* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
10245
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_68__["Skeleton"]; });
10269
+ /* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
10270
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_68__["MatrixRow"]; });
10246
10271
 
10247
- /* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
10248
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_69__["NotifierComponent"]; });
10272
+ /* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
10273
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_69__["Skeleton"]; });
10249
10274
 
10250
- /* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
10251
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_70__["ComponentsContainer"]; });
10275
+ /* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
10276
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_70__["NotifierComponent"]; });
10252
10277
 
10253
- /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
10254
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_71__["CharacterCounterComponent"]; });
10278
+ /* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
10279
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_71__["ComponentsContainer"]; });
10255
10280
 
10256
- /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
10257
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_72__["SurveyLocStringViewer"]; });
10281
+ /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
10282
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_72__["CharacterCounterComponent"]; });
10258
10283
 
10259
- /* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
10260
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_73__["SurveyLocStringEditor"]; });
10284
+ /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
10285
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_73__["SurveyLocStringViewer"]; });
10286
+
10287
+ /* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
10288
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_74__["SurveyLocStringEditor"]; });
10261
10289
 
10262
10290
  // react
10263
10291
 
@@ -10332,6 +10360,7 @@ __webpack_require__.r(__webpack_exports__);
10332
10360
 
10333
10361
 
10334
10362
 
10363
+
10335
10364
 
10336
10365
 
10337
10366
  //Uncomment to include the "date" question type.
@@ -10344,7 +10373,7 @@ __webpack_require__.r(__webpack_exports__);
10344
10373
  /*!******************************!*\
10345
10374
  !*** ./src/entries/react.ts ***!
10346
10375
  \******************************/
10347
- /*! exports provided: Version, checkLibraryVersion, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, QuestionMultipleTextModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, createTOCListModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropSurveyElements, DragDropChoices, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, createDropdownActionModel, createDropdownActionModelAdvanced, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, TooltipManager, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, SurveyLocStringViewer, SurveyLocStringEditor */
10376
+ /*! exports provided: Version, checkLibraryVersion, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, QuestionMultipleTextModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, createTOCListModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropSurveyElements, DragDropChoices, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, createDropdownActionModel, createDropdownActionModelAdvanced, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, TooltipManager, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, SurveyLocStringViewer, SurveyLocStringEditor */
10348
10377
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10349
10378
 
10350
10379
  "use strict";
@@ -10807,6 +10836,8 @@ __webpack_require__.r(__webpack_exports__);
10807
10836
 
10808
10837
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemStar", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["RatingItemStar"]; });
10809
10838
 
10839
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["RatingItemSmiley"]; });
10840
+
10810
10841
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["TagboxFilterString"]; });
10811
10842
 
10812
10843
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["SurveyQuestionOptionItem"]; });
@@ -16478,6 +16509,158 @@ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\
16478
16509
 
16479
16510
  /***/ }),
16480
16511
 
16512
+ /***/ "./src/images/smiley sync \\.svg$":
16513
+ /*!****************************************************!*\
16514
+ !*** ./src/images/smiley sync nonrecursive \.svg$ ***!
16515
+ \****************************************************/
16516
+ /*! no static exports found */
16517
+ /***/ (function(module, exports, __webpack_require__) {
16518
+
16519
+ var map = {
16520
+ "./average.svg": "./src/images/smiley/average.svg",
16521
+ "./excellent.svg": "./src/images/smiley/excellent.svg",
16522
+ "./good.svg": "./src/images/smiley/good.svg",
16523
+ "./normal.svg": "./src/images/smiley/normal.svg",
16524
+ "./not-good.svg": "./src/images/smiley/not-good.svg",
16525
+ "./perfect.svg": "./src/images/smiley/perfect.svg",
16526
+ "./poor.svg": "./src/images/smiley/poor.svg",
16527
+ "./terrible.svg": "./src/images/smiley/terrible.svg",
16528
+ "./very-good.svg": "./src/images/smiley/very-good.svg",
16529
+ "./very-poor.svg": "./src/images/smiley/very-poor.svg"
16530
+ };
16531
+
16532
+
16533
+ function webpackContext(req) {
16534
+ var id = webpackContextResolve(req);
16535
+ return __webpack_require__(id);
16536
+ }
16537
+ function webpackContextResolve(req) {
16538
+ if(!__webpack_require__.o(map, req)) {
16539
+ var e = new Error("Cannot find module '" + req + "'");
16540
+ e.code = 'MODULE_NOT_FOUND';
16541
+ throw e;
16542
+ }
16543
+ return map[req];
16544
+ }
16545
+ webpackContext.keys = function webpackContextKeys() {
16546
+ return Object.keys(map);
16547
+ };
16548
+ webpackContext.resolve = webpackContextResolve;
16549
+ module.exports = webpackContext;
16550
+ webpackContext.id = "./src/images/smiley sync \\.svg$";
16551
+
16552
+ /***/ }),
16553
+
16554
+ /***/ "./src/images/smiley/average.svg":
16555
+ /*!***************************************!*\
16556
+ !*** ./src/images/smiley/average.svg ***!
16557
+ \***************************************/
16558
+ /*! no static exports found */
16559
+ /***/ (function(module, exports) {
16560
+
16561
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.00572 7C6.45572 7 6.00572 6.55 6.00572 6V2C6.00572 1.45 6.45572 1 7.00572 1C7.55572 1 8.00572 1.45 8.00572 2V6C8.00572 6.55 7.55572 7 7.00572 7ZM18.0057 6V2C18.0057 1.45 17.5557 1 17.0057 1C16.4557 1 16.0057 1.45 16.0057 2V6C16.0057 6.55 16.4557 7 17.0057 7C17.5557 7 18.0057 6.55 18.0057 6ZM19.9457 21.33C20.1257 20.81 19.8557 20.24 19.3357 20.05C14.5457 18.35 9.45572 18.35 4.66572 20.05C4.14572 20.23 3.87572 20.81 4.05572 21.33C4.23572 21.85 4.80572 22.12 5.33572 21.94C9.69572 20.4 14.3057 20.4 18.6657 21.94C18.7757 21.98 18.8857 22 18.9957 22C19.4057 22 19.7957 21.74 19.9357 21.33H19.9457Z\"></path></svg>"
16562
+
16563
+ /***/ }),
16564
+
16565
+ /***/ "./src/images/smiley/excellent.svg":
16566
+ /*!*****************************************!*\
16567
+ !*** ./src/images/smiley/excellent.svg ***!
16568
+ \*****************************************/
16569
+ /*! no static exports found */
16570
+ /***/ (function(module, exports) {
16571
+
16572
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85767 24 1.15509 20.96 0.0145752 14.16C-0.0354475 13.87 0.0445888 13.57 0.234675 13.35C0.424761 13.13 0.704888 13 0.995019 13H23.005C23.2951 13 23.5752 13.13 23.7653 13.35C23.9554 13.57 24.0354 13.87 23.9854 14.16C22.8549 20.95 17.1423 24 11.99 24H12.01ZM2.25559 15C3.61621 19.82 8.0182 22 12.01 22C16.0018 22 20.4038 19.82 21.7644 15H2.25559ZM8.00819 6V2C8.00819 1.45 7.55799 1 7.00774 1C6.45749 1 6.00729 1.45 6.00729 2V6C6.00729 6.55 6.45749 7 7.00774 7C7.55799 7 8.00819 6.55 8.00819 6ZM18.0127 6V2C18.0127 1.45 17.5625 1 17.0123 1C16.462 1 16.0118 1.45 16.0118 2V6C16.0118 6.55 16.462 7 17.0123 7C17.5625 7 18.0127 6.55 18.0127 6Z\"></path></svg>"
16573
+
16574
+ /***/ }),
16575
+
16576
+ /***/ "./src/images/smiley/good.svg":
16577
+ /*!************************************!*\
16578
+ !*** ./src/images/smiley/good.svg ***!
16579
+ \************************************/
16580
+ /*! no static exports found */
16581
+ /***/ (function(module, exports) {
16582
+
16583
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.0022 23.99C11.452 23.99 11.0018 23.5402 11.0018 22.9904C11.0018 22.4407 11.452 21.9909 12.0022 21.9909C16.3137 21.9909 21.0755 19.472 22.0158 13.8344C22.1058 13.2947 22.616 12.9248 23.1662 13.0148C23.7064 13.1047 24.0765 13.6245 23.9865 14.1643C22.8561 20.9513 17.144 24 11.9922 24L12.0022 23.99ZM8.00072 5.99783V1.99957C8.00072 1.4498 7.55056 1 7.00036 1C6.45016 1 6 1.4498 6 1.99957V5.99783C6 6.54759 6.45016 6.99739 7.00036 6.99739C7.55056 6.99739 8.00072 6.54759 8.00072 5.99783ZM18.0043 5.99783V1.99957C18.0043 1.4498 17.5542 1 17.004 1C16.4538 1 16.0036 1.4498 16.0036 1.99957V5.99783C16.0036 6.54759 16.4538 6.99739 17.004 6.99739C17.5542 6.99739 18.0043 6.54759 18.0043 5.99783Z\"></path></svg>"
16584
+
16585
+ /***/ }),
16586
+
16587
+ /***/ "./src/images/smiley/normal.svg":
16588
+ /*!**************************************!*\
16589
+ !*** ./src/images/smiley/normal.svg ***!
16590
+ \**************************************/
16591
+ /*! no static exports found */
16592
+ /***/ (function(module, exports) {
16593
+
16594
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 7C6.45 7 6 6.55 6 6V2C6 1.45 6.45 1 7 1C7.55 1 8 1.45 8 2V6C8 6.55 7.55 7 7 7ZM18 6V2C18 1.45 17.55 1 17 1C16.45 1 16 1.45 16 2V6C16 6.55 16.45 7 17 7C17.55 7 18 6.55 18 6ZM21 21C21 20.45 20.55 20 20 20H4C3.45 20 3 20.45 3 21C3 21.55 3.45 22 4 22H20C20.55 22 21 21.55 21 21Z\"></path></svg>"
16595
+
16596
+ /***/ }),
16597
+
16598
+ /***/ "./src/images/smiley/not-good.svg":
16599
+ /*!****************************************!*\
16600
+ !*** ./src/images/smiley/not-good.svg ***!
16601
+ \****************************************/
16602
+ /*! no static exports found */
16603
+ /***/ (function(module, exports) {
16604
+
16605
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.06927 7C6.51927 7 6.06927 6.55 6.06927 6V2C6.06927 1.45 6.51927 1 7.06927 1C7.61927 1 8.06927 1.45 8.06927 2V6C8.06927 6.55 7.61927 7 7.06927 7ZM18.0693 6V2C18.0693 1.45 17.6193 1 17.0693 1C16.5193 1 16.0693 1.45 16.0693 2V6C16.0693 6.55 16.5193 7 17.0693 7C17.6193 7 18.0693 6.55 18.0693 6ZM22.5693 21.9C23.0693 21.66 23.2793 21.07 23.0393 20.57C21.1093 16.52 16.9093 14 12.0693 14C7.22927 14 3.02927 16.52 1.09927 20.57C0.859273 21.07 1.06927 21.67 1.56927 21.9C2.06927 22.14 2.65927 21.93 2.89927 21.43C4.49927 18.08 8.00927 16 12.0593 16C16.1093 16 19.6293 18.08 21.2193 21.43C21.3893 21.79 21.7493 22 22.1193 22C22.2593 22 22.4093 21.97 22.5493 21.9H22.5693Z\"></path></svg>"
16606
+
16607
+ /***/ }),
16608
+
16609
+ /***/ "./src/images/smiley/perfect.svg":
16610
+ /*!***************************************!*\
16611
+ !*** ./src/images/smiley/perfect.svg ***!
16612
+ \***************************************/
16613
+ /*! no static exports found */
16614
+ /***/ (function(module, exports) {
16615
+
16616
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 23C6.85721 23 1.15412 19.9621 0.0134987 13.1669C-0.0765501 12.6272 0.293651 12.1076 0.833944 12.0177C1.38424 11.9277 1.89452 12.2975 1.98457 12.8371C2.92508 18.4732 7.69767 20.9914 12 20.9914C16.3023 20.9914 21.0749 18.4732 22.0154 12.8371C22.1055 12.2975 22.6158 11.9277 23.1661 12.0177C23.7063 12.1076 24.0765 12.6272 23.9865 13.1669C22.8559 19.9521 17.1428 23 11.99 23H12.01ZM21.165 6.15177C22.3056 5.01257 22.3056 3.16386 21.165 2.02465L21.0049 1.85477C19.9143 0.765533 18.1633 0.725561 17.0227 1.71487C15.8821 0.715568 14.1312 0.765533 13.0406 1.85477L12.8705 2.01466C11.7299 3.15386 11.7299 5.00257 12.8705 6.14178L17.0227 10.2889L21.175 6.14178L21.165 6.15177ZM15.742 3.27378L17.0127 4.54289L18.2834 3.27378C18.6436 2.91403 19.2239 2.91403 19.5841 3.27378L19.7442 3.43367C20.1044 3.79342 20.1044 4.37301 19.7442 4.73276L17.0127 7.46086L14.2812 4.73276C13.921 4.37301 13.921 3.79342 14.2812 3.43367L14.4413 3.27378C14.6214 3.09391 14.8515 3.00397 15.0917 3.00397C15.3318 3.00397 15.5619 3.09391 15.742 3.27378ZM11.1595 6.15177C12.3002 5.01257 12.3002 3.16386 11.1595 2.02465L10.9995 1.85477C9.90886 0.765533 8.15792 0.725561 7.0173 1.71487C5.87668 0.715568 4.12573 0.765533 3.03514 1.85477L2.86505 2.01466C1.72443 3.15386 1.72443 5.00257 2.86505 6.14178L7.0173 10.2889L11.1695 6.14178L11.1595 6.15177ZM5.7366 3.27378L7.00729 4.54289L8.27798 3.27378C8.63818 2.91403 9.21849 2.91403 9.57869 3.27378L9.73877 3.43367C10.099 3.79342 10.099 4.37301 9.73877 4.73276L7.00729 7.46086L4.27581 4.73276C3.91562 4.37301 3.91562 3.79342 4.27581 3.43367L4.4359 3.27378C4.61599 3.09391 4.84612 3.00397 5.08625 3.00397C5.32638 3.00397 5.5565 3.09391 5.7366 3.27378Z\"></path></svg>"
16617
+
16618
+ /***/ }),
16619
+
16620
+ /***/ "./src/images/smiley/poor.svg":
16621
+ /*!************************************!*\
16622
+ !*** ./src/images/smiley/poor.svg ***!
16623
+ \************************************/
16624
+ /*! no static exports found */
16625
+ /***/ (function(module, exports) {
16626
+
16627
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.01915 7C6.46961 7 6.01998 6.55 6.01998 6V2C6.01998 1.45 6.46961 1 7.01915 1C7.56869 1 8.01832 1.45 8.01832 2V6C8.01832 6.55 7.56869 7 7.01915 7ZM18.01 6V2C18.01 1.45 17.5604 1 17.0108 1C16.4613 1 16.0117 1.45 16.0117 2V6C16.0117 6.55 16.4613 7 17.0108 7C17.5604 7 18.01 6.55 18.01 6ZM16.4213 21.58L18.01 19.99L19.2989 21.28C19.6886 21.67 20.3181 21.67 20.7077 21.28C21.0974 20.89 21.0974 20.26 20.7077 19.87L19.4188 18.58C18.6395 17.8 17.3705 17.8 16.5912 18.58L15.0025 20.17L13.4138 18.58C12.6345 17.8 11.3655 17.8 10.5862 18.58L8.9975 20.17L7.40883 18.58C6.62948 17.8 5.36053 17.8 4.58118 18.58L3.29226 19.87C2.90258 20.26 2.90258 20.89 3.29226 21.28C3.68193 21.67 4.31141 21.67 4.70108 21.28L5.99001 19.99L7.57868 21.58C8.35803 22.36 9.62698 22.36 10.4063 21.58L11.995 19.99L13.5837 21.58C13.9734 21.97 14.4829 22.16 14.9925 22.16C15.5021 22.16 16.0117 21.97 16.4013 21.58H16.4213Z\"></path></svg>"
16628
+
16629
+ /***/ }),
16630
+
16631
+ /***/ "./src/images/smiley/terrible.svg":
16632
+ /*!****************************************!*\
16633
+ !*** ./src/images/smiley/terrible.svg ***!
16634
+ \****************************************/
16635
+ /*! no static exports found */
16636
+ /***/ (function(module, exports) {
16637
+
16638
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 4.9938C4 4.44362 4.45 3.99348 5 3.99348H6.59L5.3 2.70306C4.91 2.31293 4.91 1.68272 5.3 1.2926C5.69 0.902468 6.32 0.902468 6.71 1.2926L9.71 4.29357C9.8 4.3836 9.88 4.49364 9.93 4.62368C10.03 4.86376 10.03 5.14385 9.93 5.38393C9.88 5.50397 9.81 5.614 9.71 5.71404L6.71 8.71501C6.51 8.91508 6.26 9.00511 6 9.00511C5.74 9.00511 5.49 8.90508 5.29 8.71501C4.9 8.32489 4.9 7.69468 5.29 7.30456L6.58 6.01413H4.99C4.44 6.01413 3.99 5.56399 3.99 5.01381L4 4.9938ZM14.08 5.37393C14.13 5.49397 14.2 5.604 14.3 5.70403L17.3 8.70501C17.5 8.90508 17.75 8.99511 18.01 8.99511C18.27 8.99511 18.52 8.89507 18.72 8.70501C19.11 8.31488 19.11 7.68468 18.72 7.29455L17.43 6.00413H19.02C19.57 6.00413 20.02 5.55399 20.02 5.00381C20.02 4.45363 19.57 4.00348 19.02 4.00348H17.43L18.72 2.71306C19.11 2.32293 19.11 1.69273 18.72 1.3026C18.33 0.912471 17.7 0.912471 17.31 1.3026L14.31 4.30358C14.22 4.39361 14.14 4.50364 14.09 4.63368C13.99 4.87376 13.99 5.15385 14.09 5.39393L14.08 5.37393ZM22 14.9971V20.999C22 22.6496 20.65 24 19 24H5C3.35 24 2 22.6496 2 20.999V14.9971C2 13.3465 3.35 11.9961 5 11.9961H19C20.65 11.9961 22 13.3465 22 14.9971ZM19 13.9967H16V16.9977H20V14.9971C20 14.4469 19.55 13.9967 19 13.9967ZM14 16.9977V13.9967H10V16.9977H14ZM10 18.9984V21.9993H14V18.9984H10ZM4 14.9971V16.9977H8V13.9967H5C4.45 13.9967 4 14.4469 4 14.9971ZM5 21.9993H8V18.9984H4V20.999C4 21.5492 4.45 21.9993 5 21.9993ZM20 20.999V18.9984H16V21.9993H19C19.55 21.9993 20 21.5492 20 20.999Z\"></path></svg>"
16639
+
16640
+ /***/ }),
16641
+
16642
+ /***/ "./src/images/smiley/very-good.svg":
16643
+ /*!*****************************************!*\
16644
+ !*** ./src/images/smiley/very-good.svg ***!
16645
+ \*****************************************/
16646
+ /*! no static exports found */
16647
+ /***/ (function(module, exports) {
16648
+
16649
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.01 24C6.85721 24 1.15412 20.96 0.0134987 14.16C-0.0765501 13.62 0.293651 13.1 0.833944 13.01C1.38424 12.92 1.89452 13.29 1.98457 13.83C2.92508 19.47 7.69767 21.99 12 21.99C16.3023 21.99 21.0749 19.47 22.0154 13.83C22.1055 13.29 22.6158 12.92 23.1661 13.01C23.7063 13.1 24.0765 13.62 23.9865 14.16C22.8559 20.95 17.1428 24 11.99 24H12.01ZM8.00783 6V2C8.00783 1.45 7.55759 1 7.00729 1C6.45699 1 6.00675 1.45 6.00675 2V6C6.00675 6.55 6.45699 7 7.00729 7C7.55759 7 8.00783 6.55 8.00783 6ZM18.0133 6V2C18.0133 1.45 17.563 1 17.0127 1C16.4624 1 16.0122 1.45 16.0122 2V6C16.0122 6.55 16.4624 7 17.0127 7C17.563 7 18.0133 6.55 18.0133 6Z\"></path></svg>"
16650
+
16651
+ /***/ }),
16652
+
16653
+ /***/ "./src/images/smiley/very-poor.svg":
16654
+ /*!*****************************************!*\
16655
+ !*** ./src/images/smiley/very-poor.svg ***!
16656
+ \*****************************************/
16657
+ /*! no static exports found */
16658
+ /***/ (function(module, exports) {
16659
+
16660
+ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_15894_140103)\"><path d=\"M4.88291 4.50999C4.47291 4.50999 4.08291 4.24999 3.94291 3.83999C3.76291 3.31999 4.03291 2.74999 4.55291 2.56999L8.32291 1.24999C8.84291 1.05999 9.41291 1.33999 9.59291 1.85999C9.77291 2.37999 9.50291 2.94999 8.98291 3.12999L5.20291 4.44999C5.09291 4.48999 4.98291 4.50999 4.87291 4.50999H4.88291ZM19.8129 3.88999C20.0229 3.37999 19.7729 2.78999 19.2629 2.58999L15.5529 1.06999C15.0429 0.859992 14.4529 1.10999 14.2529 1.61999C14.0429 2.12999 14.2929 2.71999 14.8029 2.91999L18.5029 4.42999C18.6229 4.47999 18.7529 4.49999 18.8829 4.49999C19.2729 4.49999 19.6529 4.26999 19.8129 3.87999V3.88999ZM3.50291 5.99999C2.64291 6.36999 1.79291 6.87999 1.00291 7.47999C0.79291 7.63999 0.64291 7.86999 0.59291 8.13999C0.48291 8.72999 0.87291 9.28999 1.45291 9.39999C2.04291 9.50999 2.60291 9.11999 2.71291 8.53999C2.87291 7.68999 3.12291 6.82999 3.50291 5.98999V5.99999ZM21.0429 8.54999C21.6029 10.48 24.2429 8.83999 22.7529 7.47999C21.9629 6.87999 21.1129 6.36999 20.2529 5.99999C20.6329 6.83999 20.8829 7.69999 21.0429 8.54999ZM21.5729 13.2C21.2529 14.2 22.5429 15.09 23.3629 14.39C23.8529 14 23.9229 13.29 23.5429 12.81C21.7429 10.67 22.1329 10.55 21.5829 13.2H21.5729ZM1.75291 11C1.22291 11.79 -0.14709 12.64 0.0129102 13.75C0.15291 14.36 0.75291 14.74 1.35291 14.6C2.98291 14.1 1.80291 12.22 1.75291 11ZM19.8829 17C19.8829 13.14 16.2929 9.99999 11.8829 9.99999C7.47291 9.99999 3.88291 13.14 3.88291 17C3.88291 20.86 7.47291 24 11.8829 24C16.2929 24 19.8829 20.86 19.8829 17ZM17.8829 17C17.8829 19.76 15.1929 22 11.8829 22C8.57291 22 5.88291 19.76 5.88291 17C5.88291 14.24 8.57291 12 11.8829 12C15.1929 12 17.8829 14.24 17.8829 17Z\"></path></g><defs><clipPath id=\"clip0_15894_140103\"><rect width=\"24\" height=\"24\" fill=\"white\"></rect></clipPath></defs></svg>"
16661
+
16662
+ /***/ }),
16663
+
16481
16664
  /***/ "./src/itemvalue.ts":
16482
16665
  /*!**************************!*\
16483
16666
  !*** ./src/itemvalue.ts ***!
@@ -18854,11 +19037,12 @@ var defaultListCss = {
18854
19037
  };
18855
19038
  var ListModel = /** @class */ (function (_super) {
18856
19039
  __extends(ListModel, _super);
18857
- function ListModel(items, onSelectionChanged, allowSelection, selectedItem, onFilterStringChangedCallback) {
19040
+ function ListModel(items, onSelectionChanged, allowSelection, selectedItem, onFilterStringChangedCallback, elementId) {
18858
19041
  var _this = _super.call(this) || this;
18859
19042
  _this.onSelectionChanged = onSelectionChanged;
18860
19043
  _this.allowSelection = allowSelection;
18861
19044
  _this.onFilterStringChangedCallback = onFilterStringChangedCallback;
19045
+ _this.elementId = elementId;
18862
19046
  _this.onItemClick = function (itemValue) {
18863
19047
  if (_this.isItemDisabled(itemValue) || _this.isItemSelected(itemValue)) {
18864
19048
  return;
@@ -18930,8 +19114,12 @@ var ListModel = /** @class */ (function (_super) {
18930
19114
  }
18931
19115
  };
18932
19116
  ListModel.prototype.setItems = function (items, sortByVisibleIndex) {
19117
+ var _this = this;
18933
19118
  if (sortByVisibleIndex === void 0) { sortByVisibleIndex = true; }
18934
19119
  _super.prototype.setItems.call(this, items, sortByVisibleIndex);
19120
+ if (this.elementId) {
19121
+ this.renderedActions.forEach(function (action) { action.elementId = _this.elementId + action.id; });
19122
+ }
18935
19123
  if (!this.isAllDataLoaded && !!this.actions.length) {
18936
19124
  this.actions.push(this.loadingIndicator);
18937
19125
  }
@@ -20519,12 +20707,12 @@ var dutchSurveyStrings = {
20519
20707
  urlGetChoicesError: "De vraag gaf een leeg antwoord terug of de 'pad' eigenschap is niet correct",
20520
20708
  exceedMaxSize: "De grootte van het bestand mag niet groter zijn dan {0}",
20521
20709
  otherRequiredError: "Vul het veld 'Anders, nl.' in",
20522
- uploadingFile: "Uw bestand wordt opgeladen. Gelieve enkele seconden te wachten en opnieuw te proberen.",
20523
- loadingFile: "Opladen...",
20710
+ uploadingFile: "Uw bestand wordt geüpload. Gelieve enkele seconden te wachten en opnieuw te proberen.",
20711
+ loadingFile: "Laden...",
20524
20712
  chooseFile: "Kies uw bestand(en)...",
20525
20713
  noFileChosen: "Geen bestand gekozen",
20526
20714
  fileDragAreaPlaceholder: "Sleep het bestand naar hier",
20527
- confirmDelete: "Wil je deze gegevens verwijderen?",
20715
+ confirmDelete: "Wilt u deze gegevens verwijderen?",
20528
20716
  keyDuplicationError: "Deze waarde moet uniek zijn.",
20529
20717
  addColumn: "Voeg kolom toe",
20530
20718
  addRow: "Voeg rij toe",
@@ -20548,14 +20736,14 @@ var dutchSurveyStrings = {
20548
20736
  timerLimitAll: "U heeft {0} van {1} op deze pagina gespendeerd en {2} van {3} in totaal.",
20549
20737
  timerLimitPage: "U heeft {0} van {1} gespendeerd op deze pagina.",
20550
20738
  timerLimitSurvey: "U heeft {0} van {1} in het totaal.",
20551
- clearCaption: "Kuis op",
20739
+ clearCaption: "Verwijder",
20552
20740
  signaturePlaceHolder: "Hier tekenen",
20553
20741
  chooseFileCaption: "Gekozen bestand",
20554
- removeFileCaption: "Verwijder deze file",
20742
+ removeFileCaption: "Verwijder dit bestand",
20555
20743
  booleanCheckedLabel: "Ja",
20556
20744
  booleanUncheckedLabel: "Nee",
20557
- confirmRemoveFile: "Bent u zeker dat u deze file wilt verwijderen: {0}?",
20558
- confirmRemoveAllFiles: "Bent u zeker dat u al deze files wilt verwijderen?",
20745
+ confirmRemoveFile: "Weet u zeker dat u deze file wilt verwijderen: {0}?",
20746
+ confirmRemoveAllFiles: "Weet u zeker dat u al deze files wilt verwijderen?",
20559
20747
  questionTitlePatternText: "Titel van de vraag",
20560
20748
  // modalCancelButtonText: "Cancel",
20561
20749
  // modalApplyButtonText: "Apply",
@@ -25367,7 +25555,7 @@ var QuestionMatrixBaseModel = /** @class */ (function (_super) {
25367
25555
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])({ defaultValue: "middle" })
25368
25556
  ], QuestionMatrixBaseModel.prototype, "verticalAlign", void 0);
25369
25557
  __decorate([
25370
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])({ defaultValue: false })
25558
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])()
25371
25559
  ], QuestionMatrixBaseModel.prototype, "alternateRows", void 0);
25372
25560
  return QuestionMatrixBaseModel;
25373
25561
  }(_question__WEBPACK_IMPORTED_MODULE_1__["Question"]));
@@ -25426,8 +25614,8 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
25426
25614
 
25427
25615
  var MultiSelectListModel = /** @class */ (function (_super) {
25428
25616
  __extends(MultiSelectListModel, _super);
25429
- function MultiSelectListModel(items, onSelectionChanged, allowSelection, selectedItems, onFilterStringChangedCallback) {
25430
- var _this = _super.call(this, items, onSelectionChanged, allowSelection, undefined, onFilterStringChangedCallback) || this;
25617
+ function MultiSelectListModel(items, onSelectionChanged, allowSelection, selectedItems, onFilterStringChangedCallback, elementId) {
25618
+ var _this = _super.call(this, items, onSelectionChanged, allowSelection, undefined, onFilterStringChangedCallback, elementId) || this;
25431
25619
  _this.onItemClick = function (item) {
25432
25620
  if (_this.isItemDisabled(item))
25433
25621
  return;
@@ -25684,9 +25872,9 @@ var PageModel = /** @class */ (function (_super) {
25684
25872
  };
25685
25873
  Object.defineProperty(PageModel.prototype, "navigationTitle", {
25686
25874
  /**
25687
- * A caption displayed on a navigation button in the progress bar. Applies only when [`showProgressBar`](https://surveyjs.io/form-library/documentation/surveymodel#showProgressBar) is `true` and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is `"buttons"`.
25875
+ * A caption displayed on a navigation button in the TOC or progress bar. Applies when [`showTOC`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showTOC) is `true` or when [`showProgressBar`](https://surveyjs.io/form-library/documentation/surveymodel#showProgressBar) is `true` and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is `"buttons"`.
25688
25876
  *
25689
- * If this property is undefined, the navigation button displays the page's [`name`](https://surveyjs.io/form-library/documentation/pagemodel#name).
25877
+ * If this property is undefined, the navigation buttons display page [titles](https://surveyjs.io/form-library/documentation/api-reference/page-model#title) or [names](https://surveyjs.io/form-library/documentation/pagemodel#name).
25690
25878
  */
25691
25879
  get: function () {
25692
25880
  return this.getLocalizableStringText("navigationTitle");
@@ -26461,7 +26649,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
26461
26649
  QuestionRowModel.prototype.getRowCss = function () {
26462
26650
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
26463
26651
  .append(this.panel.cssClasses.row)
26464
- .append(this.panel.cssClasses.pageRow, this.panel.isPage)
26652
+ .append(this.panel.cssClasses.pageRow, this.panel.isPage || (!!this.panel.originalPage && !this.panel.survey.isShowingPreview))
26465
26653
  .append(this.panel.cssClasses.rowMultiple, this.visibleElements.length > 1)
26466
26654
  .toString();
26467
26655
  };
@@ -26708,9 +26896,12 @@ var PanelModelBase = /** @class */ (function (_super) {
26708
26896
  configurable: true
26709
26897
  });
26710
26898
  PanelModelBase.prototype.calcCssClasses = function (css) {
26711
- var classes = { panel: {}, error: {}, row: "", rowMultiple: "" };
26899
+ var classes = { panel: {}, error: {}, row: "", rowMultiple: "", pageRow: "" };
26712
26900
  this.copyCssClasses(classes.panel, css.panel);
26713
26901
  this.copyCssClasses(classes.error, css.error);
26902
+ if (!!css.pageRow) {
26903
+ classes.pageRow = css.pageRow;
26904
+ }
26714
26905
  if (!!css.row) {
26715
26906
  classes.row = css.row;
26716
26907
  }
@@ -26969,7 +27160,7 @@ var PanelModelBase = /** @class */ (function (_super) {
26969
27160
  * @see [Data Validation](https://surveyjs.io/form-library/documentation/data-validation)
26970
27161
  */
26971
27162
  get: function () {
26972
- return this.getPropertyValue("isRequired", false);
27163
+ return this.getPropertyValue("isRequired");
26973
27164
  },
26974
27165
  set: function (val) {
26975
27166
  this.setPropertyValue("isRequired", val);
@@ -28064,7 +28255,7 @@ var PanelModel = /** @class */ (function (_super) {
28064
28255
  * @see SurveyModel.questionTitlePattern
28065
28256
  */
28066
28257
  get: function () {
28067
- return this.getPropertyValue("showNumber", false);
28258
+ return this.getPropertyValue("showNumber");
28068
28259
  },
28069
28260
  set: function (val) {
28070
28261
  this.setPropertyValue("showNumber", val);
@@ -28342,15 +28533,23 @@ var PanelModel = /** @class */ (function (_super) {
28342
28533
  return;
28343
28534
  this.survey.whenPanelFocusIn(this);
28344
28535
  };
28345
- PanelModel.prototype.getContainerCss = function () {
28346
- return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]().append(this.cssClasses.panel.container)
28347
- .append(this.cssClasses.panel.withFrame, this.hasFrameV2)
28348
- .append(this.cssClasses.panel.nested, !!((this.parent && this.parent.isPanel || !this.isSingleInRow) && !this.isDesignMode))
28349
- .append(this.cssClasses.panel.collapsed, !!this.isCollapsed)
28350
- .append(this.cssClasses.panel.expanded, !!this.isExpanded)
28351
- .append(this.cssClasses.panel.invisible, !this.isDesignMode && this.areInvisibleElementsShowing && !this.visible)
28536
+ PanelModel.prototype.getHasFrameV2 = function () {
28537
+ return _super.prototype.getHasFrameV2.call(this) && (!this.originalPage || this.survey.isShowingPreview);
28538
+ };
28539
+ PanelModel.prototype.getIsNested = function () {
28540
+ return _super.prototype.getIsNested.call(this) && this.parent !== undefined;
28541
+ };
28542
+ PanelModel.prototype.getCssRoot = function (cssClasses) {
28543
+ return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
28544
+ .append(_super.prototype.getCssRoot.call(this, cssClasses))
28545
+ .append(cssClasses.container)
28546
+ .append(cssClasses.asPage, !!this.originalPage && !this.survey.isShowingPreview)
28547
+ .append(cssClasses.invisible, !this.isDesignMode && this.areInvisibleElementsShowing && !this.visible)
28352
28548
  .toString();
28353
28549
  };
28550
+ PanelModel.prototype.getContainerCss = function () {
28551
+ return this.getCssRoot(this.cssClasses.panel);
28552
+ };
28354
28553
  return PanelModel;
28355
28554
  }(PanelModelBase));
28356
28555
 
@@ -30656,7 +30855,9 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
30656
30855
  this.switchFocus();
30657
30856
  };
30658
30857
  PopupBaseViewModel.prototype.updateOnHiding = function () {
30659
- this.prevActiveElement && this.prevActiveElement.focus();
30858
+ if (this.isFocusedContent && this.prevActiveElement) {
30859
+ this.prevActiveElement.focus();
30860
+ }
30660
30861
  };
30661
30862
  PopupBaseViewModel.prototype.focusFirstInput = function () {
30662
30863
  var _this = this;
@@ -31195,7 +31396,6 @@ var Question = /** @class */ (function (_super) {
31195
31396
  * You can use question values as placeholders in the following places:
31196
31397
  *
31197
31398
  * - Survey element titles and descriptions
31198
- * - The [`expression`](https://surveyjs.io/form-library/documentation/questionexpressionmodel#expression) property of the [Expression](https://surveyjs.io/form-library/documentation/questionexpressionmodel) question
31199
31399
  * - The [`html`](https://surveyjs.io/form-library/documentation/questionhtmlmodel#html) property of the [HTML](https://surveyjs.io/form-library/documentation/questionhtmlmodel) question
31200
31400
  *
31201
31401
  * To use a question value as a placeholder, specify the question `name` in curly brackets: `{questionName}`. Refer to the following help topic for more information: [Dynamic Texts - Question Values](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#question-values).
@@ -31812,6 +32012,7 @@ var Question = /** @class */ (function (_super) {
31812
32012
  };
31813
32013
  Question.prototype.getCssRoot = function (cssClasses) {
31814
32014
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
32015
+ .append(_super.prototype.getCssRoot.call(this, cssClasses))
31815
32016
  .append(this.isFlowLayout && !this.isDesignMode
31816
32017
  ? cssClasses.flowRoot
31817
32018
  : cssClasses.mainRoot)
@@ -31819,10 +32020,6 @@ var Question = /** @class */ (function (_super) {
31819
32020
  .append(cssClasses.hasError, this.errors.length > 0)
31820
32021
  .append(cssClasses.small, !this.width)
31821
32022
  .append(cssClasses.answered, this.isAnswered)
31822
- .append(cssClasses.expanded, !!this.isExpanded)
31823
- .append(cssClasses.collapsed, !!this.isCollapsed)
31824
- .append(cssClasses.withFrame, this.hasFrameV2)
31825
- .append(cssClasses.nested, (this.hasParent || !this.isSingleInRow) && this.isDefaultV2Theme)
31826
32023
  .toString();
31827
32024
  };
31828
32025
  Object.defineProperty(Question.prototype, "cssHeader", {
@@ -32785,7 +32982,9 @@ var Question = /** @class */ (function (_super) {
32785
32982
  var _this = this;
32786
32983
  this.defaultValueRunner = this.getDefaultRunner(this.defaultValueRunner, this.defaultValueExpression);
32787
32984
  this.setValueAndRunExpression(this.defaultValueRunner, this.getUnbindValue(this.defaultValue), function (val) {
32788
- _this.value = val;
32985
+ if (!_helpers__WEBPACK_IMPORTED_MODULE_0__["Helpers"].isTwoValueEquals(_this.value, val)) {
32986
+ _this.value = val;
32987
+ }
32789
32988
  });
32790
32989
  };
32791
32990
  Question.prototype.isValueExpression = function (val) {
@@ -32816,7 +33015,11 @@ var Question = /** @class */ (function (_super) {
32816
33015
  return false;
32817
33016
  if (!setFunc) {
32818
33017
  setFunc = function (val) {
32819
- _this.runExpressionSetValue(val, function (val) { _this.value = val; });
33018
+ _this.runExpressionSetValue(val, function (val) {
33019
+ if (!_helpers__WEBPACK_IMPORTED_MODULE_0__["Helpers"].isTwoValueEquals(_this.value, val)) {
33020
+ _this.value = val;
33021
+ }
33022
+ });
32820
33023
  };
32821
33024
  }
32822
33025
  if (!values)
@@ -33943,7 +34146,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
33943
34146
  * @see noneText
33944
34147
  */
33945
34148
  get: function () {
33946
- return this.getPropertyValue("showNoneItem", false);
34149
+ return this.getPropertyValue("showNoneItem");
33947
34150
  },
33948
34151
  set: function (val) {
33949
34152
  this.setPropertyValue("showNoneItem", val);
@@ -34112,6 +34315,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
34112
34315
  QuestionSelectBase.prototype.onEnableItemCallBack = function (item) {
34113
34316
  return true;
34114
34317
  };
34318
+ QuestionSelectBase.prototype.onSelectedItemValuesChangedHandler = function (newValue) { };
34115
34319
  QuestionSelectBase.prototype.setConditionalChoicesRunner = function () {
34116
34320
  if (this.choicesVisibleIf) {
34117
34321
  if (!this.conditionChoicesVisibleIfRunner) {
@@ -34478,7 +34682,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
34478
34682
  * This property is useful if you show or hide choice items at runtime based on a [condition](https://surveyjs.io/form-library/documentation/questionselectbase#choicesVisibleIf).
34479
34683
  */
34480
34684
  get: function () {
34481
- return this.getPropertyValue("hideIfChoicesEmpty", false);
34685
+ return this.getPropertyValue("hideIfChoicesEmpty");
34482
34686
  },
34483
34687
  set: function (val) {
34484
34688
  this.setPropertyValue("hideIfChoicesEmpty", val);
@@ -35069,7 +35273,9 @@ var QuestionSelectBase = /** @class */ (function (_super) {
35069
35273
  return;
35070
35274
  this.isUpdatingChoicesDependedQuestions = true;
35071
35275
  for (var i = 0; i < this.dependedQuestions.length; i++) {
35072
- this.dependedQuestions[i].onVisibleChoicesChanged();
35276
+ var q = this.dependedQuestions[i];
35277
+ q.onVisibleChoicesChanged();
35278
+ q.clearIncorrectValuesCore();
35073
35279
  }
35074
35280
  this.isUpdatingChoicesDependedQuestions = false;
35075
35281
  };
@@ -35474,10 +35680,12 @@ var QuestionSelectBase = /** @class */ (function (_super) {
35474
35680
  return classes;
35475
35681
  };
35476
35682
  __decorate([
35477
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
35683
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ onSet: function (newVal, target) {
35684
+ target.onSelectedItemValuesChangedHandler(newVal);
35685
+ } })
35478
35686
  ], QuestionSelectBase.prototype, "selectedItemValues", void 0);
35479
35687
  __decorate([
35480
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
35688
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
35481
35689
  ], QuestionSelectBase.prototype, "separateSpecialChoices", void 0);
35482
35690
  __decorate([
35483
35691
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ localizable: true })
@@ -36429,7 +36637,7 @@ var QuestionCheckboxModel = /** @class */ (function (_super) {
36429
36637
  * @see separateSpecialChoices
36430
36638
  */
36431
36639
  get: function () {
36432
- return this.getPropertyValue("showSelectAllItem", false);
36640
+ return this.getPropertyValue("showSelectAllItem");
36433
36641
  },
36434
36642
  set: function (val) {
36435
36643
  this.setPropertyValue("showSelectAllItem", val);
@@ -37907,7 +38115,11 @@ var QuestionCompositeModel = /** @class */ (function (_super) {
37907
38115
  var questions = this.contentPanel.questions;
37908
38116
  for (var i = 0; i < questions.length; i++) {
37909
38117
  var key = questions[i].getValueName();
37910
- questions[i].value = !!newValue ? newValue[key] : undefined;
38118
+ var val = !!newValue ? newValue[key] : undefined;
38119
+ var q = questions[i];
38120
+ if (!this.isTwoValueEquals(q.value, val)) {
38121
+ q.value = val;
38122
+ }
37911
38123
  }
37912
38124
  this.settingNewValue = false;
37913
38125
  };
@@ -38249,20 +38461,41 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
38249
38461
  enumerable: false,
38250
38462
  configurable: true
38251
38463
  });
38464
+ Object.defineProperty(QuestionDropdownModel.prototype, "dropdownListModel", {
38465
+ get: function () {
38466
+ if (this.renderAs !== "select" && !this.dropdownListModelValue) {
38467
+ this.dropdownListModelValue = new _dropdownListModel__WEBPACK_IMPORTED_MODULE_5__["DropdownListModel"](this);
38468
+ }
38469
+ return this.dropdownListModelValue;
38470
+ },
38471
+ set: function (val) {
38472
+ this.dropdownListModelValue = val;
38473
+ },
38474
+ enumerable: false,
38475
+ configurable: true
38476
+ });
38252
38477
  Object.defineProperty(QuestionDropdownModel.prototype, "popupModel", {
38253
38478
  get: function () {
38254
38479
  var _a;
38255
- if (this.renderAs !== "select" && !this.dropdownListModel) {
38256
- this.dropdownListModel = new _dropdownListModel__WEBPACK_IMPORTED_MODULE_5__["DropdownListModel"](this);
38257
- }
38258
38480
  return (_a = this.dropdownListModel) === null || _a === void 0 ? void 0 : _a.popupModel;
38259
38481
  },
38260
38482
  enumerable: false,
38261
38483
  configurable: true
38262
38484
  });
38485
+ Object.defineProperty(QuestionDropdownModel.prototype, "ariaExpanded", {
38486
+ get: function () {
38487
+ return this.popupModel.isVisible;
38488
+ },
38489
+ enumerable: false,
38490
+ configurable: true
38491
+ });
38263
38492
  QuestionDropdownModel.prototype.onOpenedCallBack = function () {
38264
38493
  this.onOpened.fire(this, { question: this, choices: this.choices });
38265
38494
  };
38495
+ QuestionDropdownModel.prototype.onSelectedItemValuesChangedHandler = function (newValue) {
38496
+ var _a;
38497
+ (_a = this.dropdownListModel) === null || _a === void 0 ? void 0 : _a.setInputStringFromSelectedItem(newValue);
38498
+ };
38266
38499
  QuestionDropdownModel.prototype.hasUnknownValue = function (val, includeOther, isFilteredChoices, checkEmptyValue) {
38267
38500
  if (this.choicesLazyLoadEnabled) {
38268
38501
  return false;
@@ -38297,11 +38530,10 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
38297
38530
  }
38298
38531
  };
38299
38532
  __decorate([
38300
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: true })
38533
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
38301
38534
  ], QuestionDropdownModel.prototype, "allowClear", void 0);
38302
38535
  __decorate([
38303
38536
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({
38304
- defaultValue: true,
38305
38537
  onSet: function (newValue, target) {
38306
38538
  if (!!target.dropdownListModel) {
38307
38539
  target.dropdownListModel.setSearchEnabled(newValue);
@@ -38316,7 +38548,7 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
38316
38548
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: "" })
38317
38549
  ], QuestionDropdownModel.prototype, "readOnlyText", void 0);
38318
38550
  __decorate([
38319
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
38551
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
38320
38552
  ], QuestionDropdownModel.prototype, "choicesLazyLoadEnabled", void 0);
38321
38553
  __decorate([
38322
38554
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: 25 })
@@ -39711,7 +39943,7 @@ var QuestionHtmlModel = /** @class */ (function (_super) {
39711
39943
  var locHtml = _this.createLocalizableString("html", _this);
39712
39944
  locHtml.onGetTextCallback = function (str) {
39713
39945
  return !!_this.survey && !_this.ignoreHtmlProgressing
39714
- ? _this.survey.processHtml(str)
39946
+ ? _this.processHtml(str)
39715
39947
  : str;
39716
39948
  };
39717
39949
  return _this;
@@ -39755,11 +39987,14 @@ var QuestionHtmlModel = /** @class */ (function (_super) {
39755
39987
  });
39756
39988
  Object.defineProperty(QuestionHtmlModel.prototype, "processedHtml", {
39757
39989
  get: function () {
39758
- return this.survey ? this.survey.processHtml(this.html) : this.html;
39990
+ return this.processHtml(this.html);
39759
39991
  },
39760
39992
  enumerable: false,
39761
39993
  configurable: true
39762
39994
  });
39995
+ QuestionHtmlModel.prototype.processHtml = function (html) {
39996
+ return this.survey ? this.survey.processHtml(html, "html-question") : this.html;
39997
+ };
39763
39998
  return QuestionHtmlModel;
39764
39999
  }(_questionnonvalue__WEBPACK_IMPORTED_MODULE_0__["QuestionNonValue"]));
39765
40000
 
@@ -41001,7 +41236,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
41001
41236
  * @see isRequired
41002
41237
  */
41003
41238
  get: function () {
41004
- return this.getPropertyValue("isAllRowRequired", false);
41239
+ return this.getPropertyValue("isAllRowRequired");
41005
41240
  },
41006
41241
  set: function (val) {
41007
41242
  this.setPropertyValue("isAllRowRequired", val);
@@ -41546,7 +41781,7 @@ var QuestionMatrixDropdownModel = /** @class */ (function (_super) {
41546
41781
  * @see rowsVisibleIf
41547
41782
  */
41548
41783
  get: function () {
41549
- return this.getPropertyValue("hideIfRowsEmpty", false);
41784
+ return this.getPropertyValue("hideIfRowsEmpty");
41550
41785
  },
41551
41786
  set: function (val) {
41552
41787
  this.setPropertyValue("hideIfRowsEmpty", val);
@@ -42893,7 +43128,7 @@ var QuestionMatrixDropdownModelBase = /** @class */ (function (_super) {
42893
43128
  });
42894
43129
  Object.defineProperty(QuestionMatrixDropdownModelBase.prototype, "horizontalScroll", {
42895
43130
  get: function () {
42896
- return this.getPropertyValue("horizontalScroll", false);
43131
+ return this.getPropertyValue("horizontalScroll");
42897
43132
  },
42898
43133
  set: function (val) {
42899
43134
  this.setPropertyValue("horizontalScroll", val);
@@ -44486,7 +44721,7 @@ var MatrixDropdownColumn = /** @class */ (function (_super) {
44486
44721
  });
44487
44722
  Object.defineProperty(MatrixDropdownColumn.prototype, "showInMultipleColumns", {
44488
44723
  get: function () {
44489
- return this.getPropertyValue("showInMultipleColumns", false);
44724
+ return this.getPropertyValue("showInMultipleColumns");
44490
44725
  },
44491
44726
  set: function (val) {
44492
44727
  this.setPropertyValue("showInMultipleColumns", val);
@@ -46049,7 +46284,7 @@ var QuestionMatrixDynamicModel = /** @class */ (function (_super) {
46049
46284
  * @see confirmDeleteText
46050
46285
  */
46051
46286
  get: function () {
46052
- return this.getPropertyValue("confirmDelete", false);
46287
+ return this.getPropertyValue("confirmDelete");
46053
46288
  },
46054
46289
  set: function (val) {
46055
46290
  this.setPropertyValue("confirmDelete", val);
@@ -46094,7 +46329,7 @@ var QuestionMatrixDynamicModel = /** @class */ (function (_super) {
46094
46329
  * @see defaultValue
46095
46330
  */
46096
46331
  get: function () {
46097
- return this.getPropertyValue("defaultValueFromLastRow", false);
46332
+ return this.getPropertyValue("defaultValueFromLastRow");
46098
46333
  },
46099
46334
  set: function (val) {
46100
46335
  this.setPropertyValue("defaultValueFromLastRow", val);
@@ -48304,7 +48539,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
48304
48539
  * @see confirmDeleteText
48305
48540
  */
48306
48541
  get: function () {
48307
- return this.getPropertyValue("confirmDelete", false);
48542
+ return this.getPropertyValue("confirmDelete");
48308
48543
  },
48309
48544
  set: function (val) {
48310
48545
  this.setPropertyValue("confirmDelete", val);
@@ -48961,7 +49196,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
48961
49196
  * @see defaultValue
48962
49197
  */
48963
49198
  get: function () {
48964
- return this.getPropertyValue("defaultValueFromLastPanel", false);
49199
+ return this.getPropertyValue("defaultValueFromLastPanel");
48965
49200
  },
48966
49201
  set: function (val) {
48967
49202
  this.setPropertyValue("defaultValueFromLastPanel", val);
@@ -50890,10 +51125,19 @@ var QuestionRatingModel = /** @class */ (function (_super) {
50890
51125
  enumerable: false,
50891
51126
  configurable: true
50892
51127
  });
51128
+ Object.defineProperty(QuestionRatingModel.prototype, "isSmiley", {
51129
+ get: function () {
51130
+ return this.rateType == "smileys";
51131
+ },
51132
+ enumerable: false,
51133
+ configurable: true
51134
+ });
50893
51135
  Object.defineProperty(QuestionRatingModel.prototype, "itemComponentName", {
50894
51136
  get: function () {
50895
51137
  if (this.isStar)
50896
51138
  return "sv-rating-item-star";
51139
+ if (this.isSmiley)
51140
+ return "sv-rating-item-smiley";
50897
51141
  return "sv-rating-item";
50898
51142
  },
50899
51143
  enumerable: false,
@@ -50938,6 +51182,22 @@ var QuestionRatingModel = /** @class */ (function (_super) {
50938
51182
  enumerable: false,
50939
51183
  configurable: true
50940
51184
  });
51185
+ QuestionRatingModel.prototype.getItemSmiley = function (item) {
51186
+ var icons = ["terrible", "very-poor", "poor", "not-good", "average", "normal", "good", "very-good", "excellent", "perfect"];
51187
+ var priority = ["very-good", "not-good", "normal", "good", "average", "excellent", "poor", "perfect", "very-poor", "terrible"];
51188
+ var count = this.rateValues.length || this.rateMax - this.rateMin + 1;
51189
+ var selectedPriority = priority.slice(0, count);
51190
+ var selectedIcons = icons.filter(function (i) { return selectedPriority.indexOf(i) != -1; });
51191
+ if (this.rateValues.length == 0) {
51192
+ return selectedIcons[item.value - this.rateMin];
51193
+ }
51194
+ else {
51195
+ return selectedIcons[this.rateValues.indexOf(item)];
51196
+ }
51197
+ };
51198
+ QuestionRatingModel.prototype.getItemSmileyIconName = function (item) {
51199
+ return "icon-" + this.getItemSmiley(item);
51200
+ };
50941
51201
  QuestionRatingModel.prototype.getItemClass = function (item, highlight) {
50942
51202
  var _this = this;
50943
51203
  if (highlight === void 0) { highlight = "none"; }
@@ -50971,6 +51231,13 @@ var QuestionRatingModel = /** @class */ (function (_super) {
50971
51231
  itemHighlightedClass = this.cssClasses.itemStarHighlighted;
50972
51232
  itemUnhighlightedClass = this.cssClasses.itemStarUnhighlighted;
50973
51233
  }
51234
+ if (this.isSmiley) {
51235
+ itemClass = this.cssClasses.itemSmiley;
51236
+ itemSelectedClass = this.cssClasses.itemSmileySelected;
51237
+ itemDisabledClass = this.cssClasses.itemSmileyDisabled;
51238
+ itemHoverClass = this.cssClasses.itemSmileyHover;
51239
+ itemitemOnErrorClass = this.cssClasses.itemSmileyOnError;
51240
+ }
50974
51241
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
50975
51242
  .append(itemClass)
50976
51243
  .append(itemSelectedClass, isSelected)
@@ -51660,6 +51927,13 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
51660
51927
  enumerable: false,
51661
51928
  configurable: true
51662
51929
  });
51930
+ Object.defineProperty(QuestionTagboxModel.prototype, "ariaExpanded", {
51931
+ get: function () {
51932
+ return this.popupModel.isVisible;
51933
+ },
51934
+ enumerable: false,
51935
+ configurable: true
51936
+ });
51663
51937
  QuestionTagboxModel.prototype.getControlClass = function () {
51664
51938
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
51665
51939
  .append(this.cssClasses.control)
@@ -51715,7 +51989,7 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
51715
51989
  return this.inputId + "_0";
51716
51990
  };
51717
51991
  __decorate([
51718
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: true })
51992
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
51719
51993
  ], QuestionTagboxModel.prototype, "allowClear", void 0);
51720
51994
  __decorate([
51721
51995
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({
@@ -51729,7 +52003,6 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
51729
52003
  ], QuestionTagboxModel.prototype, "searchEnabled", void 0);
51730
52004
  __decorate([
51731
52005
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({
51732
- defaultValue: false,
51733
52006
  onSet: function (newValue, target) {
51734
52007
  if (!!target.dropdownListModel) {
51735
52008
  target.dropdownListModel.setHideSelectedItems(newValue);
@@ -51738,7 +52011,7 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
51738
52011
  })
51739
52012
  ], QuestionTagboxModel.prototype, "hideSelectedItems", void 0);
51740
52013
  __decorate([
51741
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
52014
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
51742
52015
  ], QuestionTagboxModel.prototype, "choicesLazyLoadEnabled", void 0);
51743
52016
  __decorate([
51744
52017
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: 25 })
@@ -51988,7 +52261,7 @@ var QuestionTextModel = /** @class */ (function (_super) {
51988
52261
  * A value passed on to the [`autocomplete`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute of the underlying `<input>` element.
51989
52262
  */
51990
52263
  get: function () {
51991
- return this.getPropertyValue("autocomplete", "");
52264
+ return this.getPropertyValue("autocomplete", null);
51992
52265
  },
51993
52266
  set: function (val) {
51994
52267
  this.setPropertyValue("autocomplete", val);
@@ -53811,7 +54084,7 @@ var ListItem = /** @class */ (function (_super) {
53811
54084
  var style = {
53812
54085
  display: isVisible ? null : "none"
53813
54086
  };
53814
- return Object(_reactSurvey__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("li", { className: className, role: "option", style: style, "aria-selected": this.model.isItemSelected(this.item), onClick: function (event) {
54087
+ return Object(_reactSurvey__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("li", { className: className, role: "option", style: style, id: this.item.elementId, "aria-selected": this.model.isItemSelected(this.item), onClick: function (event) {
53815
54088
  _this.model.onItemClick(_this.item);
53816
54089
  event.stopPropagation();
53817
54090
  }, onPointerDown: function (event) { return _this.model.onPointerDown(event, _this.item); } },
@@ -53911,7 +54184,7 @@ var List = /** @class */ (function (_super) {
53911
54184
  return null;
53912
54185
  var items = this.renderItems();
53913
54186
  var ulStyle = { display: this.model.isEmpty ? "none" : null };
53914
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("ul", { className: this.model.cssClasses.itemsContainer, style: ulStyle, role: "listbox", onMouseDown: function (e) {
54187
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("ul", { className: this.model.cssClasses.itemsContainer, style: ulStyle, role: "listbox", id: this.model.elementId, onMouseDown: function (e) {
53915
54188
  e.preventDefault();
53916
54189
  }, onKeyDown: this.handleKeydown, onMouseMove: this.handleMouseMove }, items));
53917
54190
  };
@@ -54861,6 +55134,85 @@ function showDialog(dialogOptions) {
54861
55134
  survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showModal = showModal;
54862
55135
 
54863
55136
 
55137
+ /***/ }),
55138
+
55139
+ /***/ "./src/react/components/rating/rating-item-smiley.tsx":
55140
+ /*!************************************************************!*\
55141
+ !*** ./src/react/components/rating/rating-item-smiley.tsx ***!
55142
+ \************************************************************/
55143
+ /*! exports provided: RatingItemSmiley */
55144
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
55145
+
55146
+ "use strict";
55147
+ __webpack_require__.r(__webpack_exports__);
55148
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return RatingItemSmiley; });
55149
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
55150
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
55151
+ /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../element-factory */ "./src/react/element-factory.tsx");
55152
+ /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../reactquestion_element */ "./src/react/reactquestion_element.tsx");
55153
+ /* harmony import */ var _svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../svg-icon/svg-icon */ "./src/react/components/svg-icon/svg-icon.tsx");
55154
+ var __extends = (undefined && undefined.__extends) || (function () {
55155
+ var extendStatics = function (d, b) {
55156
+ extendStatics = Object.setPrototypeOf ||
55157
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
55158
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
55159
+ return extendStatics(d, b);
55160
+ };
55161
+ return function (d, b) {
55162
+ if (typeof b !== "function" && b !== null)
55163
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
55164
+ extendStatics(d, b);
55165
+ function __() { this.constructor = d; }
55166
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
55167
+ };
55168
+ })();
55169
+
55170
+
55171
+
55172
+
55173
+ var RatingItemSmiley = /** @class */ (function (_super) {
55174
+ __extends(RatingItemSmiley, _super);
55175
+ function RatingItemSmiley() {
55176
+ return _super !== null && _super.apply(this, arguments) || this;
55177
+ }
55178
+ Object.defineProperty(RatingItemSmiley.prototype, "question", {
55179
+ get: function () {
55180
+ return this.props.question;
55181
+ },
55182
+ enumerable: false,
55183
+ configurable: true
55184
+ });
55185
+ Object.defineProperty(RatingItemSmiley.prototype, "item", {
55186
+ get: function () {
55187
+ return this.props.item;
55188
+ },
55189
+ enumerable: false,
55190
+ configurable: true
55191
+ });
55192
+ Object.defineProperty(RatingItemSmiley.prototype, "index", {
55193
+ get: function () {
55194
+ return this.props.index;
55195
+ },
55196
+ enumerable: false,
55197
+ configurable: true
55198
+ });
55199
+ RatingItemSmiley.prototype.getStateElement = function () {
55200
+ return this.item;
55201
+ };
55202
+ RatingItemSmiley.prototype.render = function () {
55203
+ var _this = this;
55204
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { className: this.question.getItemClass(this.item.itemValue), onMouseOver: function (e) { return _this.question.onItemMouseIn(_this.item); }, onMouseOut: function (e) { return _this.question.onItemMouseOut(_this.item); } },
55205
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.name, id: this.question.getInputId(this.index), value: this.item.value, disabled: this.isDisplayMode, checked: this.question.value == this.item.value, onClick: this.props.handleOnClick, onChange: function () { }, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy }),
55206
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: "auto", iconName: this.question.getItemSmileyIconName(this.item.itemValue), title: this.item.text })));
55207
+ };
55208
+ return RatingItemSmiley;
55209
+ }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
55210
+
55211
+ _element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.registerElement("sv-rating-item-smiley", function (props) {
55212
+ return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(RatingItemSmiley, props);
55213
+ });
55214
+
55215
+
54864
55216
  /***/ }),
54865
55217
 
54866
55218
  /***/ "./src/react/components/rating/rating-item-star.tsx":
@@ -55774,7 +56126,7 @@ var SurveyQuestionDropdownBase = /** @class */ (function (_super) {
55774
56126
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null, this.question.readOnlyText));
55775
56127
  }
55776
56128
  else {
55777
- if (!this.question.hasOwnProperty("dropdownListModel")) {
56129
+ if (!this.question["dropdownListModel"]) {
55778
56130
  this.question["dropdownListModel"] = new survey_core__WEBPACK_IMPORTED_MODULE_1__["DropdownListModel"](this.question);
55779
56131
  }
55780
56132
  selectElement = react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null,
@@ -55803,7 +56155,7 @@ var SurveyQuestionDropdownBase = /** @class */ (function (_super) {
55803
56155
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { id: this.question.inputId, className: this.question.getControlClass(), tabIndex: dropdownListModel.inputReadOnly ? undefined : 0, onClick: this.click,
55804
56156
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
55805
56157
  // @ts-ignore
55806
- disabled: this.question.isInputReadOnly, required: this.question.isRequired, onKeyDown: this.keyhandler, onBlur: this.blur, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy },
56158
+ disabled: this.question.isInputReadOnly, required: this.question.isRequired, onKeyDown: this.keyhandler, onBlur: this.blur, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy, "aria-expanded": this.question.ariaExpanded ? "true" : "false", "aria-controls": dropdownListModel.listElementId, "aria-activedescendant": dropdownListModel.ariaActivedescendant },
55807
56159
  dropdownListModel.showHintPrefix ?
55808
56160
  (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.hintPrefix },
55809
56161
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", null, dropdownListModel.hintStringPrefix))) : null,
@@ -55813,7 +56165,7 @@ var SurveyQuestionDropdownBase = /** @class */ (function (_super) {
55813
56165
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { style: { visibility: "hidden" }, "data-bind": "text: model.filterString" }, dropdownListModel.inputStringRendered),
55814
56166
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", null, dropdownListModel.hintStringSuffix))) : null,
55815
56167
  valueElement,
55816
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { type: "text", autoComplete: "off", id: this.question.getInputId(), ref: function (element) { return (_this.inputElement = element); }, className: this.question.cssClasses.filterStringInput, role: dropdownListModel.filterStringEnabled ? this.question.ariaRole : undefined, "aria-label": this.question.placeholder, placeholder: dropdownListModel.placeholderRendered, readOnly: !dropdownListModel.searchEnabled ? true : undefined, tabIndex: dropdownListModel.inputReadOnly ? undefined : -1, disabled: this.question.isInputReadOnly, inputMode: dropdownListModel.inputMode, onChange: function (e) { onInputChange(e); }, onBlur: this.blur, onFocus: this.focus })),
56168
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { type: "text", autoComplete: "off", id: this.question.getInputId(), ref: function (element) { return (_this.inputElement = element); }, className: this.question.cssClasses.filterStringInput, role: dropdownListModel.filterStringEnabled ? this.question.ariaRole : undefined, "aria-label": this.question.placeholder, "aria-expanded": this.question.ariaExpanded ? "true" : "false", "aria-controls": dropdownListModel.listElementId, "aria-activedescendant": dropdownListModel.ariaActivedescendant, placeholder: dropdownListModel.placeholderRendered, readOnly: !dropdownListModel.searchEnabled ? true : undefined, tabIndex: dropdownListModel.inputReadOnly ? undefined : -1, disabled: this.question.isInputReadOnly, inputMode: dropdownListModel.inputMode, onChange: function (e) { onInputChange(e); }, onBlur: this.blur, onFocus: this.focus })),
55817
56169
  this.createClearButton()));
55818
56170
  };
55819
56171
  SurveyQuestionDropdownBase.prototype.createClearButton = function () {
@@ -61227,7 +61579,7 @@ var SurveyQuestionTagbox = /** @class */ (function (_super) {
61227
61579
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { id: this.question.inputId, className: this.question.getControlClass(), tabIndex: dropdownListModel.inputReadOnly ? undefined : 0, onClick: this.click,
61228
61580
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
61229
61581
  // @ts-ignore
61230
- disabled: this.question.isInputReadOnly, required: this.question.isRequired, onKeyDown: this.keyhandler, onBlur: this.blur, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy },
61582
+ disabled: this.question.isInputReadOnly, required: this.question.isRequired, onKeyDown: this.keyhandler, onBlur: this.blur, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy, "aria-expanded": this.question.ariaExpanded ? "true" : "false", "aria-controls": dropdownListModel.listElementId, "aria-activedescendant": dropdownListModel.ariaActivedescendant },
61231
61583
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.controlValue },
61232
61584
  items,
61233
61585
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_tagbox_filter__WEBPACK_IMPORTED_MODULE_4__["TagboxFilterString"], { model: dropdownMultiSelectListModel, question: this.question })),
@@ -61880,7 +62232,7 @@ var SurveyLocStringViewer = /** @class */ (function (_super) {
61880
62232
  };
61881
62233
  SurveyLocStringViewer.prototype.componentDidUpdate = function (prevProps, prevState) {
61882
62234
  if (!!prevProps.locStr) {
61883
- this.locStr.onStringChanged.remove(this.onChangedHandler);
62235
+ prevProps.locStr.onStringChanged.remove(this.onChangedHandler);
61884
62236
  }
61885
62237
  this.reactOnStrChanged();
61886
62238
  };
@@ -62003,7 +62355,7 @@ var TagboxFilterString = /** @class */ (function (_super) {
62003
62355
  };
62004
62356
  TagboxFilterString.prototype.render = function () {
62005
62357
  var _this = this;
62006
- return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { type: "text", autoComplete: "off", id: this.question.getInputId(), inputMode: this.model.inputMode, ref: function (element) { return (_this.inputElement = element); }, className: this.question.cssClasses.filterStringInput, disabled: this.question.isInputReadOnly, readOnly: !this.model.searchEnabled ? true : undefined, size: !this.model.inputStringRendered ? 1 : undefined, role: this.model.filterStringEnabled ? this.question.ariaRole : undefined, "aria-label": this.question.placeholder, placeholder: this.model.filterStringPlaceholder, onKeyDown: function (e) { _this.keyhandler(e); }, onChange: function (e) { _this.onChange(e); }, onBlur: function (e) { _this.onBlur(e); }, onFocus: function (e) { _this.onFocus(e); } }));
62358
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { type: "text", autoComplete: "off", id: this.question.getInputId(), inputMode: this.model.inputMode, ref: function (element) { return (_this.inputElement = element); }, className: this.question.cssClasses.filterStringInput, disabled: this.question.isInputReadOnly, readOnly: !this.model.searchEnabled ? true : undefined, size: !this.model.inputStringRendered ? 1 : undefined, role: this.model.filterStringEnabled ? this.question.ariaRole : undefined, "aria-label": this.question.placeholder, "aria-expanded": this.question.ariaExpanded ? "true" : "false", "aria-controls": this.model.listElementId, "aria-activedescendant": this.model.ariaActivedescendant, placeholder: this.model.filterStringPlaceholder, onKeyDown: function (e) { _this.keyhandler(e); }, onChange: function (e) { _this.onChange(e); }, onBlur: function (e) { _this.onBlur(e); }, onFocus: function (e) { _this.onFocus(e); } }));
62007
62359
  };
62008
62360
  return TagboxFilterString;
62009
62361
  }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"]));
@@ -63957,18 +64309,28 @@ var SurveyElement = /** @class */ (function (_super) {
63957
64309
  };
63958
64310
  Object.defineProperty(SurveyElement.prototype, "hasParent", {
63959
64311
  get: function () {
63960
- return (this.parent && !this.parent.isPage) || (this.parent === undefined);
63961
- },
63962
- enumerable: false,
63963
- configurable: true
63964
- });
63965
- Object.defineProperty(SurveyElement.prototype, "hasFrameV2", {
63966
- get: function () {
63967
- return !this.hasParent && this.isDefaultV2Theme && !this.isDesignMode && this.isSingleInRow;
64312
+ return (this.parent && !this.parent.isPage && (!this.parent.originalPage || this.survey.isShowingPreview)) || (this.parent === undefined);
63968
64313
  },
63969
64314
  enumerable: false,
63970
64315
  configurable: true
63971
64316
  });
64317
+ SurveyElement.prototype.shouldAddRunnerStyles = function () {
64318
+ return !this.isDesignMode && this.isDefaultV2Theme;
64319
+ };
64320
+ SurveyElement.prototype.getHasFrameV2 = function () {
64321
+ return this.shouldAddRunnerStyles() && (!this.hasParent && this.isSingleInRow);
64322
+ };
64323
+ SurveyElement.prototype.getIsNested = function () {
64324
+ return this.shouldAddRunnerStyles() && (this.hasParent || !this.isSingleInRow);
64325
+ };
64326
+ SurveyElement.prototype.getCssRoot = function (cssClasses) {
64327
+ return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
64328
+ .append(cssClasses.withFrame, this.getHasFrameV2())
64329
+ .append(cssClasses.collapsed, !!this.isCollapsed)
64330
+ .append(cssClasses.expanded, !!this.isExpanded)
64331
+ .append(cssClasses.nested, this.getIsNested())
64332
+ .toString();
64333
+ };
63972
64334
  Object.defineProperty(SurveyElement.prototype, "width", {
63973
64335
  /**
63974
64336
  * Sets survey element width in CSS values.
@@ -64578,7 +64940,7 @@ var SurveyModel = /** @class */ (function (_super) {
64578
64940
  */
64579
64941
  _this.onValidatedErrorsOnCurrentPage = _this.addEvent();
64580
64942
  /**
64581
- * Use this event to modify the HTML content before rendering, for example `completeHtml` or `loadingHtml`.
64943
+ * An event that is raised when the survey processes HTML content. Handle this event to modify HTML content before displaying.
64582
64944
  * @see completedHtml
64583
64945
  * @see loadingHtml
64584
64946
  * @see QuestionHtmlModel.html
@@ -65099,11 +65461,7 @@ var SurveyModel = /** @class */ (function (_super) {
65099
65461
  _this.updateCss();
65100
65462
  _this.setCalculatedWidthModeUpdater();
65101
65463
  _this.notifier = new _notifier__WEBPACK_IMPORTED_MODULE_19__["Notifier"](_this.css.saveData);
65102
- _this.notifier.addAction({
65103
- id: "save-again",
65104
- title: _this.getLocalizationString("saveAgainButton"),
65105
- action: function () { _this.doComplete(); }
65106
- }, "error");
65464
+ _this.notifier.addAction(_this.createTryAgainAction(), "error");
65107
65465
  _this.layoutElements.push({
65108
65466
  id: "timerpanel",
65109
65467
  template: "survey-timerpanel",
@@ -65195,6 +65553,21 @@ var SurveyModel = /** @class */ (function (_super) {
65195
65553
  enumerable: false,
65196
65554
  configurable: true
65197
65555
  });
65556
+ SurveyModel.prototype.createTryAgainAction = function () {
65557
+ var _this = this;
65558
+ return {
65559
+ id: "save-again",
65560
+ title: this.getLocalizationString("saveAgainButton"),
65561
+ action: function () {
65562
+ if (_this.isCompleted) {
65563
+ _this.saveDataOnComplete();
65564
+ }
65565
+ else {
65566
+ _this.doComplete();
65567
+ }
65568
+ }
65569
+ };
65570
+ };
65198
65571
  SurveyModel.prototype.createHtmlLocString = function (name, locName, func) {
65199
65572
  this.createLocalizableString(name, this, false, locName).onGetLocalizationTextCallback = func;
65200
65573
  };
@@ -65498,7 +65871,7 @@ var SurveyModel = /** @class */ (function (_super) {
65498
65871
  * Refer to the following help topic for more information on the use case: [Continue an Incomplete Survey](https://surveyjs.io/form-library/documentation/handle-survey-results-continue-incomplete).
65499
65872
  */
65500
65873
  get: function () {
65501
- return this.getPropertyValue("sendResultOnPageNext", false);
65874
+ return this.getPropertyValue("sendResultOnPageNext");
65502
65875
  },
65503
65876
  set: function (val) {
65504
65877
  this.setPropertyValue("sendResultOnPageNext", val);
@@ -65512,7 +65885,7 @@ var SurveyModel = /** @class */ (function (_super) {
65512
65885
  * @see surveyPostId
65513
65886
  */
65514
65887
  get: function () {
65515
- return this.getPropertyValue("surveyShowDataSaving", false);
65888
+ return this.getPropertyValue("surveyShowDataSaving");
65516
65889
  },
65517
65890
  set: function (val) {
65518
65891
  this.setPropertyValue("surveyShowDataSaving", val);
@@ -65589,6 +65962,8 @@ var SurveyModel = /** @class */ (function (_super) {
65589
65962
  * Gets or sets the visibility of the table of contents.
65590
65963
  *
65591
65964
  * Default value: `false`
65965
+ *
65966
+ * [View Demo](https://surveyjs.io/form-library/examples/toc-feature/ (linkStyle))
65592
65967
  * @see tocLocation
65593
65968
  */
65594
65969
  get: function () {
@@ -65608,6 +65983,8 @@ var SurveyModel = /** @class */ (function (_super) {
65608
65983
  *
65609
65984
  * - `"left"` (default)
65610
65985
  * - `"right"`
65986
+ *
65987
+ * [View Demo](https://surveyjs.io/form-library/examples/toc-feature/ (linkStyle))
65611
65988
  * @see showTOC
65612
65989
  */
65613
65990
  get: function () {
@@ -65838,7 +66215,7 @@ var SurveyModel = /** @class */ (function (_super) {
65838
66215
  * [View Demo](https://surveyjs.io/form-library/examples/survey-autonextpage/ (linkStyle))
65839
66216
  */
65840
66217
  get: function () {
65841
- return this.getPropertyValue("goNextPageAutomatic", false);
66218
+ return this.getPropertyValue("goNextPageAutomatic");
65842
66219
  },
65843
66220
  set: function (val) {
65844
66221
  this.setPropertyValue("goNextPageAutomatic", val);
@@ -65989,7 +66366,7 @@ var SurveyModel = /** @class */ (function (_super) {
65989
66366
  * @see clearIncorrectValues
65990
66367
  */
65991
66368
  get: function () {
65992
- return this.getPropertyValue("keepIncorrectValues", false);
66369
+ return this.getPropertyValue("keepIncorrectValues");
65993
66370
  },
65994
66371
  set: function (val) {
65995
66372
  this.setPropertyValue("keepIncorrectValues", val);
@@ -66785,7 +67162,7 @@ var SurveyModel = /** @class */ (function (_super) {
66785
67162
  * [View Demo](https://surveyjs.io/form-library/examples/survey-options/ (linkStyle))
66786
67163
  */
66787
67164
  get: function () {
66788
- return this.getPropertyValue("showPageNumbers", false);
67165
+ return this.getPropertyValue("showPageNumbers");
66789
67166
  },
66790
67167
  set: function (value) {
66791
67168
  if (value === this.showPageNumbers)
@@ -67915,8 +68292,10 @@ var SurveyModel = /** @class */ (function (_super) {
67915
68292
  * @param value use true to set the survey into the design mode.
67916
68293
  */
67917
68294
  SurveyModel.prototype.setDesignMode = function (value) {
67918
- this._isDesignMode = value;
67919
- this.onQuestionsOnPageModeChanged("standard");
68295
+ if (!!this._isDesignMode != !!value) {
68296
+ this._isDesignMode = !!value;
68297
+ this.onQuestionsOnPageModeChanged("standard");
68298
+ }
67920
68299
  };
67921
68300
  Object.defineProperty(SurveyModel.prototype, "showInvisibleElements", {
67922
68301
  /**
@@ -68352,7 +68731,7 @@ var SurveyModel = /** @class */ (function (_super) {
68352
68731
  if (!!this.mouseDownPage && this.mouseDownPage !== this.activePage)
68353
68732
  return;
68354
68733
  this.mouseDownPage = null;
68355
- this.nextPage();
68734
+ return this.nextPage();
68356
68735
  };
68357
68736
  SurveyModel.prototype.nextPageMouseDown = function () {
68358
68737
  this.mouseDownPage = this.activePage;
@@ -68436,12 +68815,13 @@ var SurveyModel = /** @class */ (function (_super) {
68436
68815
  });
68437
68816
  Object.defineProperty(SurveyModel.prototype, "questionsOnPageMode", {
68438
68817
  /**
68439
- * Gets or sets a value that specifies how the survey combines questions, panels, and pages.
68818
+ * Specifies how to distribute survey elements between pages.
68440
68819
  *
68441
- * The following options are available:
68820
+ * Possible values:
68442
68821
  *
68443
- * - `singlePage` - combine all survey pages in a single page. Pages will be converted to panels.
68444
- * - `questionPerPage` - show one question per page. Survey will create a separate page for every question.
68822
+ * - `"singlePage"` - Combines all survey pages into a single page.
68823
+ * - `"questionPerPage"` - Creates a separate page for every question.
68824
+ * - `"standard"` (default) - Retains the original structure specified in the JSON schema.
68445
68825
  */
68446
68826
  get: function () {
68447
68827
  return this.getPropertyValue("questionsOnPageMode");
@@ -68458,7 +68838,7 @@ var SurveyModel = /** @class */ (function (_super) {
68458
68838
  * An end user cannot navigate to the start page and the start page does not affect a survey progress.
68459
68839
  */
68460
68840
  get: function () {
68461
- return this.getPropertyValue("firstPageIsStarted", false);
68841
+ return this.getPropertyValue("firstPageIsStarted");
68462
68842
  },
68463
68843
  set: function (val) {
68464
68844
  this.setPropertyValue("firstPageIsStarted", val);
@@ -68761,7 +69141,6 @@ var SurveyModel = /** @class */ (function (_super) {
68761
69141
  * @see navigateToUrlOnCondition
68762
69142
  */
68763
69143
  SurveyModel.prototype.doComplete = function (isCompleteOnTrigger) {
68764
- var _this = this;
68765
69144
  if (isCompleteOnTrigger === void 0) { isCompleteOnTrigger = false; }
68766
69145
  if (this.isCompleted)
68767
69146
  return;
@@ -68770,11 +69149,17 @@ var SurveyModel = /** @class */ (function (_super) {
68770
69149
  return false;
68771
69150
  }
68772
69151
  this.checkOnPageTriggers(true);
68773
- var previousCookie = this.hasCookie;
68774
69152
  this.stopTimer();
68775
69153
  this.isCompleted = true;
68776
69154
  this.clearUnusedValues();
68777
69155
  this.setCookie();
69156
+ this.saveDataOnComplete(isCompleteOnTrigger);
69157
+ return true;
69158
+ };
69159
+ SurveyModel.prototype.saveDataOnComplete = function (isCompleteOnTrigger) {
69160
+ var _this = this;
69161
+ if (isCompleteOnTrigger === void 0) { isCompleteOnTrigger = false; }
69162
+ var previousCookie = this.hasCookie;
68778
69163
  var showSaveInProgress = function (text) {
68779
69164
  savingDataStarted = true;
68780
69165
  _this.setCompletedState("saving", text);
@@ -68809,7 +69194,6 @@ var SurveyModel = /** @class */ (function (_super) {
68809
69194
  if (!savingDataStarted) {
68810
69195
  this.navigateTo();
68811
69196
  }
68812
- return true;
68813
69197
  };
68814
69198
  SurveyModel.prototype.checkOnCompletingEvent = function (isCompleteOnTrigger) {
68815
69199
  var options = {
@@ -68978,7 +69362,7 @@ var SurveyModel = /** @class */ (function (_super) {
68978
69362
  */
68979
69363
  get: function () {
68980
69364
  var html = this.renderedCompletedHtml;
68981
- return !!html ? this.processHtml(html) : "";
69365
+ return !!html ? this.processHtml(html, "completed") : "";
68982
69366
  },
68983
69367
  enumerable: false,
68984
69368
  configurable: true
@@ -68990,7 +69374,7 @@ var SurveyModel = /** @class */ (function (_super) {
68990
69374
  * @see cookieName
68991
69375
  */
68992
69376
  get: function () {
68993
- return this.processHtml(this.completedBeforeHtml);
69377
+ return this.processHtml(this.completedBeforeHtml, "completed-before");
68994
69378
  },
68995
69379
  enumerable: false,
68996
69380
  configurable: true
@@ -69000,7 +69384,7 @@ var SurveyModel = /** @class */ (function (_super) {
69000
69384
  * Returns the HTML content, that is shows when a survey loads the survey JSON.
69001
69385
  */
69002
69386
  get: function () {
69003
- return this.processHtml(this.loadingHtml);
69387
+ return this.processHtml(this.loadingHtml, "loading");
69004
69388
  },
69005
69389
  enumerable: false,
69006
69390
  configurable: true
@@ -70482,6 +70866,9 @@ var SurveyModel = /** @class */ (function (_super) {
70482
70866
  SurveyModel.prototype.setVariable = function (name, newValue) {
70483
70867
  if (!name)
70484
70868
  return;
70869
+ if (!!this.valuesHash) {
70870
+ delete this.valuesHash[name];
70871
+ }
70485
70872
  name = name.toLowerCase();
70486
70873
  this.variablesHash[name] = newValue;
70487
70874
  this.notifyElementsOnAnyValueOrVariableChanged(name);
@@ -70901,8 +71288,10 @@ var SurveyModel = /** @class */ (function (_super) {
70901
71288
  this.onValidatePanel.fire(this, options);
70902
71289
  return options.error ? new _error__WEBPACK_IMPORTED_MODULE_9__["CustomError"](options.error, this) : null;
70903
71290
  };
70904
- SurveyModel.prototype.processHtml = function (html) {
70905
- var options = { html: html };
71291
+ SurveyModel.prototype.processHtml = function (html, reason) {
71292
+ if (!reason)
71293
+ reason = "";
71294
+ var options = { html: html, reason: reason };
70906
71295
  this.onProcessHtml.fire(this, options);
70907
71296
  return this.processText(options.html, true);
70908
71297
  };
@@ -71479,6 +71868,27 @@ var SurveyModel = /** @class */ (function (_super) {
71479
71868
  SurveyModel.prototype.getSkeletonComponentName = function (element) {
71480
71869
  return this.skeletonComponentName;
71481
71870
  };
71871
+ /**
71872
+ * Adds an element to the survey layout.
71873
+ *
71874
+ * This method accepts an object with the following layout element properties:
71875
+ *
71876
+ * - `id`: `String` | `"timerpanel"` | `"progress-buttons"` | `"progress-questions"` | `"progress-pages"` | `"progress-correctquestions"` | `"progress-requiredquestions"` | `"toc-navigation"` | `"navigationbuttons"`\
71877
+ * A layout element identifier. You can use possible values to access and relocate or customize predefined layout elements.
71878
+ *
71879
+ * - `container`: `"header"` | `"footer"` | `"left"` | `"right"` | `"contentTop"` | `"contentBottom"`\
71880
+ * A layout container that holds the element. If you want to display the element within multiple containers, set this property to an array of possible values.
71881
+ *
71882
+ * - `component`: `String`\
71883
+ * The name of the component that renders the layout element.
71884
+ *
71885
+ * - `data`: `any`\
71886
+ * Data passed as props to `component`.
71887
+ *
71888
+ * [View Demo](https://surveyjs.io/form-library/examples/progress-bar-with-percentage/ (linkStyle))
71889
+ * @param layoutElement A layout element configuration.
71890
+ * @returns The configuration of the previous layout element with the same `id`.
71891
+ */
71482
71892
  SurveyModel.prototype.addLayoutElement = function (layoutElement) {
71483
71893
  var existingLayoutElement = this.removeLayoutElement(layoutElement.id);
71484
71894
  this.layoutElements.push(layoutElement);
@@ -71581,7 +71991,7 @@ var SurveyModel = /** @class */ (function (_super) {
71581
71991
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
71582
71992
  ], SurveyModel.prototype, "containerCss", void 0);
71583
71993
  __decorate([
71584
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: false })
71994
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
71585
71995
  ], SurveyModel.prototype, "showBrandInfo", void 0);
71586
71996
  __decorate([
71587
71997
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
@@ -72263,7 +72673,7 @@ function tryNavigateToPage(survey, index) {
72263
72673
  }
72264
72674
  else if (index > survey.currentPageNo) {
72265
72675
  for (var i = survey.currentPageNo; i < index; i++) {
72266
- if (!survey.nextPage())
72676
+ if (!survey.nextPageUIClick())
72267
72677
  return false;
72268
72678
  }
72269
72679
  }
@@ -72275,6 +72685,9 @@ function createTOCListModel(survey) {
72275
72685
  id: page.name,
72276
72686
  title: page.navigationTitle || page.title || page.name,
72277
72687
  action: function () {
72688
+ if (typeof document !== undefined && !!document.activeElement) {
72689
+ !!document.activeElement.blur && document.activeElement.blur();
72690
+ }
72278
72691
  return tryNavigateToPage(survey, index);
72279
72692
  }
72280
72693
  });
@@ -72467,7 +72880,9 @@ var SvgIconRegistry = /** @class */ (function () {
72467
72880
  var SvgRegistry = new SvgIconRegistry();
72468
72881
  var SvgBundleViewModel;
72469
72882
  var path = __webpack_require__("./src/images sync \\.svg$");
72883
+ var pathSmiley = __webpack_require__("./src/images/smiley sync \\.svg$");
72470
72884
  SvgRegistry.registerIconsFromFolder(path);
72885
+ SvgRegistry.registerIconsFromFolder(pathSmiley);
72471
72886
 
72472
72887
 
72473
72888
  /***/ }),
@@ -72956,7 +73371,7 @@ var Trigger = /** @class */ (function (_super) {
72956
73371
  var firstName = processValue.getFirstName(name);
72957
73372
  if (!keys.hasOwnProperty(firstName))
72958
73373
  continue;
72959
- if (name == firstName)
73374
+ if (name === firstName)
72960
73375
  return true;
72961
73376
  var keyValue = keys[firstName];
72962
73377
  if (keyValue == undefined)
@@ -72969,7 +73384,8 @@ var Trigger = /** @class */ (function (_super) {
72969
73384
  var oldValue = processValue.getValue(name, v);
72970
73385
  v[firstName] = keyValue["newValue"];
72971
73386
  var newValue = processValue.getValue(name, v);
72972
- return !this.isTwoValueEquals(oldValue, newValue);
73387
+ if (!this.isTwoValueEquals(oldValue, newValue))
73388
+ return true;
72973
73389
  }
72974
73390
  return false;
72975
73391
  };
@@ -73144,7 +73560,7 @@ var SurveyTriggerSetValue = /** @class */ (function (_super) {
73144
73560
  });
73145
73561
  Object.defineProperty(SurveyTriggerSetValue.prototype, "isVariable", {
73146
73562
  get: function () {
73147
- return this.getPropertyValue("isVariable", false);
73563
+ return this.getPropertyValue("isVariable");
73148
73564
  },
73149
73565
  set: function (val) {
73150
73566
  this.setPropertyValue("isVariable", val);
@@ -74598,6 +75014,8 @@ var AnswerCountValidator = /** @class */ (function (_super) {
74598
75014
 
74599
75015
  /**
74600
75016
  * Use it to validate the text by regular expressions.
75017
+ *
75018
+ * [View Demo](https://surveyjs.io/form-library/examples/javascript-form-validation/ (linkStyle))
74601
75019
  */
74602
75020
  var RegexValidator = /** @class */ (function (_super) {
74603
75021
  __extends(RegexValidator, _super);