survey-react 1.9.139 → 1.10.2

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.139
2
+ * surveyjs - Survey JavaScript library v1.10.2
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -742,8 +742,9 @@ function createDropdownActionModelAdvanced(actionOptions, listOptions, popupOpti
742
742
  }
743
743
  listOptions.onSelectionChanged(item);
744
744
  innerPopupModel.toggleVisibility();
745
- }, listOptions.allowSelection, listOptions.selectedItem, listOptions.onFilterStringChangedCallback);
745
+ }, listOptions.allowSelection, listOptions.selectedItem);
746
746
  listModel.locOwner = locOwner;
747
+ listModel.setOnFilterStringChangedCallback(listOptions.onFilterStringChangedCallback);
747
748
  var innerPopupModel = new _popup__WEBPACK_IMPORTED_MODULE_4__["PopupModel"]("sv-list", { model: listModel }, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.verticalPosition, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.horizontalPosition, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.showPointer, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.isModal, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.onCancel, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.onApply, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.onHide, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.onShow, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.cssClass, popupOptions === null || popupOptions === void 0 ? void 0 : popupOptions.title, function () {
748
749
  listModel.dispose();
749
750
  });
@@ -994,9 +995,9 @@ var Action = /** @class */ (function (_super) {
994
995
  //Object.assign(this, item) to support IE11
995
996
  if (!!innerItem) {
996
997
  for (var key in innerItem) {
997
- if (key !== "locTitle") {
998
- _this[key] = innerItem[key];
999
- }
998
+ if (key === "locTitle" || key === "title" && !!_this.locTitle && !!_this.title)
999
+ continue;
1000
+ _this[key] = innerItem[key];
1000
1001
  }
1001
1002
  }
1002
1003
  if (!!_this.locTitleName) {
@@ -1867,6 +1868,7 @@ var Base = /** @class */ (function () {
1867
1868
  */
1868
1869
  this.onItemValuePropertyChanged = this.addEvent();
1869
1870
  this.isCreating = true;
1871
+ this.animationAllowedLock = 0;
1870
1872
  this.bindingsValue = new Bindings(this);
1871
1873
  _jsonobject__WEBPACK_IMPORTED_MODULE_2__["CustomPropertiesCollection"].createProperties(this);
1872
1874
  this.onBaseCreating();
@@ -2241,8 +2243,6 @@ var Base = /** @class */ (function () {
2241
2243
  * @param val A new value for the property.
2242
2244
  */
2243
2245
  Base.prototype.setPropertyValue = function (name, val) {
2244
- if (name) {
2245
- }
2246
2246
  if (!this.isLoadingFromJson) {
2247
2247
  var prop = this.getPropertyByName(name);
2248
2248
  if (!!prop) {
@@ -2787,6 +2787,22 @@ var Base = /** @class */ (function () {
2787
2787
  if (includeHidden === void 0) { includeHidden = false; }
2788
2788
  return [];
2789
2789
  };
2790
+ Object.defineProperty(Base.prototype, "animationAllowed", {
2791
+ get: function () {
2792
+ return this.getIsAnimationAllowed();
2793
+ },
2794
+ enumerable: false,
2795
+ configurable: true
2796
+ });
2797
+ Base.prototype.getIsAnimationAllowed = function () {
2798
+ return _settings__WEBPACK_IMPORTED_MODULE_3__["settings"].animationEnabled && this.animationAllowedLock >= 0 && !this.isLoadingFromJson && !this.isDisposed;
2799
+ };
2800
+ Base.prototype.blockAnimations = function () {
2801
+ this.animationAllowedLock--;
2802
+ };
2803
+ Base.prototype.releaseAnimations = function () {
2804
+ this.animationAllowedLock++;
2805
+ };
2790
2806
  Base.currentDependencis = undefined;
2791
2807
  return Base;
2792
2808
  }());
@@ -5503,7 +5519,11 @@ var defaultV2Css = {
5503
5519
  footer: "sd-paneldynamic__footer",
5504
5520
  panelFooter: "sd-paneldynamic__panel-footer",
5505
5521
  footerButtonsContainer: "sd-paneldynamic__buttons-container",
5522
+ panelsContainer: "sd-paneldynamic__panels-container",
5506
5523
  panelWrapperInRow: "sd-paneldynamic__panel-wrapper--in-row",
5524
+ panelWrapperFadeIn: "sd-paneldynamic__panel-wrapper--fade-in",
5525
+ panelWrapperFadeOut: "sd-paneldynamic__panel-wrapper--fade-out",
5526
+ panelWrapperList: "sd-paneldynamic__panel-wrapper--list",
5507
5527
  progressBtnIcon: "icon-progressbuttonv2",
5508
5528
  noEntriesPlaceholder: "sd-paneldynamic__placeholder sd-question__placeholder",
5509
5529
  compact: "sd-element--with-frame sd-element--compact",
@@ -5890,6 +5910,8 @@ var defaultV2Css = {
5890
5910
  errorsCellBottom: "sd-table__cell--error-bottom",
5891
5911
  itemCell: "sd-table__cell--item",
5892
5912
  row: "sd-table__row",
5913
+ rowFadeIn: "sd-table__row--fade-in",
5914
+ rowFadeOut: "sd-table__row--fade-out",
5893
5915
  expandedRow: "sd-table__row--expanded",
5894
5916
  rowHasPanel: "sd-table__row--has-panel",
5895
5917
  rowHasEndActions: "sd-table__row--has-end-actions",
@@ -5928,6 +5950,8 @@ var defaultV2Css = {
5928
5950
  content: "sd-matrixdynamic__content sd-question__content",
5929
5951
  cell: "sd-table__cell",
5930
5952
  row: "sd-table__row",
5953
+ rowFadeIn: "sd-table__row--fade-in",
5954
+ rowFadeOut: "sd-table__row--fade-out",
5931
5955
  rowHasPanel: "sd-table__row--has-panel",
5932
5956
  rowHasEndActions: "sd-table__row--has-end-actions",
5933
5957
  expandedRow: "sd-table__row--expanded",
@@ -8072,6 +8096,7 @@ var DropdownListModel = /** @class */ (function (_super) {
8072
8096
  _this.showInputFieldComponent = _this.question.showInputFieldComponent;
8073
8097
  _this.listModel = _this.createListModel();
8074
8098
  _this.updateAfterListModelCreated(_this.listModel);
8099
+ _this.setChoicesLazyLoadEnabled(_this.question.choicesLazyLoadEnabled);
8075
8100
  _this.setSearchEnabled(_this.question.searchEnabled);
8076
8101
  _this.setTextWrapEnabled(_this.question.textWrapEnabled);
8077
8102
  _this.createPopup();
@@ -8152,6 +8177,7 @@ var DropdownListModel = /** @class */ (function (_super) {
8152
8177
  }
8153
8178
  if (option.isVisible && _this.question.choicesLazyLoadEnabled) {
8154
8179
  _this.listModel.actions = [];
8180
+ _this.resetItemsSettings();
8155
8181
  _this.updateQuestionChoices();
8156
8182
  }
8157
8183
  if (option.isVisible && !!_this.question.onOpenedCallBack) {
@@ -8222,7 +8248,7 @@ var DropdownListModel = /** @class */ (function (_super) {
8222
8248
  _this.popupModel.isVisible = false;
8223
8249
  };
8224
8250
  }
8225
- var res = new _list__WEBPACK_IMPORTED_MODULE_4__["ListModel"](visibleItems, _onSelectionChanged, false, undefined, this.question.choicesLazyLoadEnabled ? this.listModelFilterStringChanged : undefined, this.listElementId);
8251
+ var res = new _list__WEBPACK_IMPORTED_MODULE_4__["ListModel"](visibleItems, _onSelectionChanged, false, undefined, this.listElementId);
8226
8252
  this.setOnTextSearchCallbackForListModel(res);
8227
8253
  res.renderElements = false;
8228
8254
  res.forceShowFilter = true;
@@ -8455,6 +8481,9 @@ var DropdownListModel = /** @class */ (function (_super) {
8455
8481
  this.listModel.showSearchClearButton = _utils_devices__WEBPACK_IMPORTED_MODULE_9__["IsTouch"];
8456
8482
  this.searchEnabled = newValue;
8457
8483
  };
8484
+ DropdownListModel.prototype.setChoicesLazyLoadEnabled = function (newValue) {
8485
+ this.listModel.setOnFilterStringChangedCallback(newValue ? this.listModelFilterStringChanged : undefined);
8486
+ };
8458
8487
  DropdownListModel.prototype.updateItems = function () {
8459
8488
  this.listModel.setItems(this.getAvailableItems());
8460
8489
  };
@@ -8474,9 +8503,6 @@ var DropdownListModel = /** @class */ (function (_super) {
8474
8503
  if (options.name == "value") {
8475
8504
  this.showInputFieldComponent = this.question.showInputFieldComponent;
8476
8505
  }
8477
- if (options.name == "choicesLazyLoadEnabled" && options.newValue) {
8478
- this.listModel.setOnFilterStringChangedCallback(this.listModelFilterStringChanged);
8479
- }
8480
8506
  if (options.name == "textWrapEnabled") {
8481
8507
  this.setTextWrapEnabled(options.newValue);
8482
8508
  }
@@ -8805,7 +8831,7 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
8805
8831
  }
8806
8832
  };
8807
8833
  }
8808
- var res = new _multiSelectListModel__WEBPACK_IMPORTED_MODULE_3__["MultiSelectListModel"](visibleItems, _onSelectionChanged, false, undefined, this.question.choicesLazyLoadEnabled ? this.listModelFilterStringChanged : undefined, this.listElementId);
8834
+ var res = new _multiSelectListModel__WEBPACK_IMPORTED_MODULE_3__["MultiSelectListModel"](visibleItems, _onSelectionChanged, false, undefined, this.listElementId);
8809
8835
  res.actions.forEach(function (a) { return a.disableTabStop = true; });
8810
8836
  this.setOnTextSearchCallbackForListModel(res);
8811
8837
  res.forceShowFilter = true;
@@ -8954,7 +8980,11 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
8954
8980
  __webpack_require__.r(__webpack_exports__);
8955
8981
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dxSurveyService", function() { return dxSurveyService; });
8956
8982
  /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
8983
+ /* harmony import */ var _surveyStrings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./surveyStrings */ "./src/surveyStrings.ts");
8984
+
8957
8985
 
8986
+ var surveyIOSite = "surveyjs.io";
8987
+ var surveyIOMaxPostSize = 65536;
8958
8988
  /**
8959
8989
  * The class contains methods to work with api.surveyjs.io service.
8960
8990
  */
@@ -8973,7 +9003,7 @@ var dxSurveyService = /** @class */ (function () {
8973
9003
  });
8974
9004
  dxSurveyService.prototype.loadSurvey = function (surveyId, onLoad) {
8975
9005
  var xhr = new XMLHttpRequest();
8976
- xhr.open("GET", dxSurveyService.serviceUrl + "/getSurvey?surveyId=" + surveyId);
9006
+ xhr.open("GET", this.serviceUrl + "/getSurvey?surveyId=" + surveyId);
8977
9007
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
8978
9008
  xhr.onload = function () {
8979
9009
  var result = JSON.parse(xhr.response);
@@ -8983,7 +9013,7 @@ var dxSurveyService = /** @class */ (function () {
8983
9013
  };
8984
9014
  dxSurveyService.prototype.getSurveyJsonAndIsCompleted = function (surveyId, clientId, onLoad) {
8985
9015
  var xhr = new XMLHttpRequest();
8986
- xhr.open("GET", dxSurveyService.serviceUrl +
9016
+ xhr.open("GET", this.serviceUrl +
8987
9017
  "/getSurveyAndIsCompleted?surveyId=" +
8988
9018
  surveyId +
8989
9019
  "&clientId=" +
@@ -8997,11 +9027,34 @@ var dxSurveyService = /** @class */ (function () {
8997
9027
  };
8998
9028
  xhr.send();
8999
9029
  };
9030
+ dxSurveyService.prototype.canSendResult = function (result) {
9031
+ if (!this.isSurveJSIOService)
9032
+ return true;
9033
+ var str = JSON.stringify(result);
9034
+ return str.length < surveyIOMaxPostSize;
9035
+ };
9036
+ Object.defineProperty(dxSurveyService.prototype, "isSurveJSIOService", {
9037
+ get: function () {
9038
+ return this.serviceUrl.indexOf(surveyIOSite) >= 0;
9039
+ },
9040
+ enumerable: false,
9041
+ configurable: true
9042
+ });
9000
9043
  dxSurveyService.prototype.sendResult = function (postId, result, onSendResult, clientId, isPartialCompleted) {
9044
+ if (clientId === void 0) { clientId = null; }
9045
+ if (isPartialCompleted === void 0) { isPartialCompleted = false; }
9046
+ if (!this.canSendResult(result)) {
9047
+ onSendResult(false, _surveyStrings__WEBPACK_IMPORTED_MODULE_1__["surveyLocalization"].getString("savingExceedSize", this.locale), undefined);
9048
+ }
9049
+ else {
9050
+ this.sendResultCore(postId, result, onSendResult, clientId, isPartialCompleted);
9051
+ }
9052
+ };
9053
+ dxSurveyService.prototype.sendResultCore = function (postId, result, onSendResult, clientId, isPartialCompleted) {
9001
9054
  if (clientId === void 0) { clientId = null; }
9002
9055
  if (isPartialCompleted === void 0) { isPartialCompleted = false; }
9003
9056
  var xhr = new XMLHttpRequest();
9004
- xhr.open("POST", dxSurveyService.serviceUrl + "/post/");
9057
+ xhr.open("POST", this.serviceUrl + "/post/");
9005
9058
  xhr.setRequestHeader("Content-Type", "application/json; charset=utf-8");
9006
9059
  var data = { postId: postId, surveyResult: JSON.stringify(result) };
9007
9060
  if (clientId)
@@ -9009,7 +9062,6 @@ var dxSurveyService = /** @class */ (function () {
9009
9062
  if (isPartialCompleted)
9010
9063
  data["isPartialCompleted"] = true;
9011
9064
  var dataStringify = JSON.stringify(data);
9012
- var self = this;
9013
9065
  xhr.onload = xhr.onerror = function () {
9014
9066
  if (!onSendResult)
9015
9067
  return;
@@ -9024,7 +9076,7 @@ var dxSurveyService = /** @class */ (function () {
9024
9076
  return;
9025
9077
  onSendFile(xhr.status == 200, JSON.parse(xhr.response));
9026
9078
  };
9027
- xhr.open("POST", dxSurveyService.serviceUrl + "/upload/", true);
9079
+ xhr.open("POST", this.serviceUrl + "/upload/", true);
9028
9080
  var formData = new FormData();
9029
9081
  formData.append("file", file);
9030
9082
  formData.append("postId", postId);
@@ -9033,7 +9085,7 @@ var dxSurveyService = /** @class */ (function () {
9033
9085
  dxSurveyService.prototype.getResult = function (resultId, name, onGetResult) {
9034
9086
  var xhr = new XMLHttpRequest();
9035
9087
  var data = "resultId=" + resultId + "&name=" + name;
9036
- xhr.open("GET", dxSurveyService.serviceUrl + "/getResult?" + data);
9088
+ xhr.open("GET", this.serviceUrl + "/getResult?" + data);
9037
9089
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
9038
9090
  var self = this;
9039
9091
  xhr.onload = function () {
@@ -9054,7 +9106,7 @@ var dxSurveyService = /** @class */ (function () {
9054
9106
  dxSurveyService.prototype.isCompleted = function (resultId, clientId, onIsCompleted) {
9055
9107
  var xhr = new XMLHttpRequest();
9056
9108
  var data = "resultId=" + resultId + "&clientId=" + clientId;
9057
- xhr.open("GET", dxSurveyService.serviceUrl + "/isCompleted?" + data);
9109
+ xhr.open("GET", this.serviceUrl + "/isCompleted?" + data);
9058
9110
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
9059
9111
  var self = this;
9060
9112
  xhr.onload = function () {
@@ -9066,6 +9118,13 @@ var dxSurveyService = /** @class */ (function () {
9066
9118
  };
9067
9119
  xhr.send();
9068
9120
  };
9121
+ Object.defineProperty(dxSurveyService.prototype, "serviceUrl", {
9122
+ get: function () {
9123
+ return dxSurveyService.serviceUrl || "";
9124
+ },
9125
+ enumerable: false,
9126
+ configurable: true
9127
+ });
9069
9128
  return dxSurveyService;
9070
9129
  }());
9071
9130
 
@@ -9747,8 +9806,8 @@ __webpack_require__.r(__webpack_exports__);
9747
9806
 
9748
9807
  var Version;
9749
9808
  var ReleaseDate;
9750
- Version = "" + "1.9.139";
9751
- ReleaseDate = "" + "2024-04-16";
9809
+ Version = "" + "1.10.2";
9810
+ ReleaseDate = "" + "2024-04-30";
9752
9811
  function checkLibraryVersion(ver, libraryName) {
9753
9812
  if (Version != ver) {
9754
9813
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -9929,7 +9988,7 @@ function checkPrefix(prefix) {
9929
9988
  /*!**************************************!*\
9930
9989
  !*** ./src/entries/core-wo-model.ts ***!
9931
9990
  \**************************************/
9932
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
9991
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
9933
9992
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9934
9993
 
9935
9994
  "use strict";
@@ -10381,10 +10440,14 @@ __webpack_require__.r(__webpack_exports__);
10381
10440
 
10382
10441
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroupUtils"]; });
10383
10442
 
10443
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationProperty"]; });
10444
+
10384
10445
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationBoolean"]; });
10385
10446
 
10386
10447
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"]; });
10387
10448
 
10449
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationTab"]; });
10450
+
10388
10451
  /* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../actions/adaptive-container */ "./src/actions/adaptive-container.ts");
10389
10452
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__["AdaptiveActionContainer"]; });
10390
10453
 
@@ -10420,7 +10483,7 @@ __webpack_require__.r(__webpack_exports__);
10420
10483
  /*!*****************************!*\
10421
10484
  !*** ./src/entries/core.ts ***!
10422
10485
  \*****************************/
10423
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
10486
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
10424
10487
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10425
10488
 
10426
10489
  "use strict";
@@ -10864,10 +10927,14 @@ __webpack_require__.r(__webpack_exports__);
10864
10927
 
10865
10928
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
10866
10929
 
10930
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
10931
+
10867
10932
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
10868
10933
 
10869
10934
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
10870
10935
 
10936
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
10937
+
10871
10938
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
10872
10939
 
10873
10940
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
@@ -10927,7 +10994,7 @@ var defaultBootstrapMaterialCss = _plugins_themes_bootstrapmaterial_cssbootstrap
10927
10994
  /*!***************************************!*\
10928
10995
  !*** ./src/entries/react-ui-model.ts ***!
10929
10996
  \***************************************/
10930
- /*! 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, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, 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, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent, SvgBundleComponent */
10997
+ /*! 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, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, 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, QuestionErrorComponent, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent, SvgBundleComponent */
10931
10998
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10932
10999
 
10933
11000
  "use strict";
@@ -11175,39 +11242,42 @@ __webpack_require__.r(__webpack_exports__);
11175
11242
  /* harmony import */ var _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../react/components/survey-actions/survey-nav-button */ "./src/react/components/survey-actions/survey-nav-button.tsx");
11176
11243
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_70__["SurveyNavigationButton"]; });
11177
11244
 
11178
- /* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
11179
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__["MatrixRow"]; });
11245
+ /* harmony import */ var _react_components_question_error__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/question-error */ "./src/react/components/question-error.tsx");
11246
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionErrorComponent", function() { return _react_components_question_error__WEBPACK_IMPORTED_MODULE_71__["QuestionErrorComponent"]; });
11180
11247
 
11181
- /* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
11182
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__["Skeleton"]; });
11248
+ /* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
11249
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_72__["MatrixRow"]; });
11183
11250
 
11184
- /* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
11185
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__["NotifierComponent"]; });
11251
+ /* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
11252
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_73__["Skeleton"]; });
11186
11253
 
11187
- /* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
11188
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__["ComponentsContainer"]; });
11254
+ /* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
11255
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_74__["NotifierComponent"]; });
11189
11256
 
11190
- /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
11191
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__["CharacterCounterComponent"]; });
11257
+ /* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
11258
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_75__["ComponentsContainer"]; });
11192
11259
 
11193
- /* harmony import */ var _react_components_header__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/components/header */ "./src/react/components/header.tsx");
11194
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderMobile"]; });
11260
+ /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
11261
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_76__["CharacterCounterComponent"]; });
11195
11262
 
11196
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderCell"]; });
11263
+ /* harmony import */ var _react_components_header__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../react/components/header */ "./src/react/components/header.tsx");
11264
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_77__["HeaderMobile"]; });
11197
11265
 
11198
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["Header"]; });
11266
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_77__["HeaderCell"]; });
11199
11267
 
11200
- /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
11201
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__["SurveyLocStringViewer"]; });
11268
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_77__["Header"]; });
11202
11269
 
11203
- /* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
11204
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_78__["SurveyLocStringEditor"]; });
11270
+ /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
11271
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_78__["SurveyLocStringViewer"]; });
11205
11272
 
11206
- /* harmony import */ var _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../react/components/loading-indicator */ "./src/react/components/loading-indicator.tsx");
11207
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LoadingIndicatorComponent", function() { return _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__["LoadingIndicatorComponent"]; });
11273
+ /* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
11274
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_79__["SurveyLocStringEditor"]; });
11208
11275
 
11209
- /* harmony import */ var _react_svgbundle__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../react/svgbundle */ "./src/react/svgbundle.tsx");
11210
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgBundleComponent", function() { return _react_svgbundle__WEBPACK_IMPORTED_MODULE_80__["SvgBundleComponent"]; });
11276
+ /* harmony import */ var _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ../react/components/loading-indicator */ "./src/react/components/loading-indicator.tsx");
11277
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LoadingIndicatorComponent", function() { return _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_80__["LoadingIndicatorComponent"]; });
11278
+
11279
+ /* harmony import */ var _react_svgbundle__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ../react/svgbundle */ "./src/react/svgbundle.tsx");
11280
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgBundleComponent", function() { return _react_svgbundle__WEBPACK_IMPORTED_MODULE_81__["SvgBundleComponent"]; });
11211
11281
 
11212
11282
  // react
11213
11283
 
@@ -11289,6 +11359,7 @@ __webpack_require__.r(__webpack_exports__);
11289
11359
 
11290
11360
 
11291
11361
 
11362
+
11292
11363
 
11293
11364
 
11294
11365
  //Uncomment to include the "date" question type.
@@ -11301,7 +11372,7 @@ __webpack_require__.r(__webpack_exports__);
11301
11372
  /*!******************************!*\
11302
11373
  !*** ./src/entries/react.ts ***!
11303
11374
  \******************************/
11304
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, 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, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, 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, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent, SvgBundleComponent */
11375
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, 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, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, 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, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, 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, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, 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, QuestionErrorComponent, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent, SvgBundleComponent */
11305
11376
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
11306
11377
 
11307
11378
  "use strict";
@@ -11745,10 +11816,14 @@ __webpack_require__.r(__webpack_exports__);
11745
11816
 
11746
11817
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
11747
11818
 
11819
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
11820
+
11748
11821
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
11749
11822
 
11750
11823
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
11751
11824
 
11825
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
11826
+
11752
11827
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
11753
11828
 
11754
11829
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
@@ -11950,6 +12025,8 @@ __webpack_require__.r(__webpack_exports__);
11950
12025
 
11951
12026
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["SurveyNavigationButton"]; });
11952
12027
 
12028
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "QuestionErrorComponent", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["QuestionErrorComponent"]; });
12029
+
11953
12030
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["MatrixRow"]; });
11954
12031
 
11955
12032
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["Skeleton"]; });
@@ -21295,11 +21372,10 @@ var defaultListCss = {
21295
21372
  };
21296
21373
  var ListModel = /** @class */ (function (_super) {
21297
21374
  __extends(ListModel, _super);
21298
- function ListModel(items, onSelectionChanged, allowSelection, selectedItem, onFilterStringChangedCallback, elementId) {
21375
+ function ListModel(items, onSelectionChanged, allowSelection, selectedItem, elementId) {
21299
21376
  var _this = _super.call(this) || this;
21300
21377
  _this.onSelectionChanged = onSelectionChanged;
21301
21378
  _this.allowSelection = allowSelection;
21302
- _this.onFilterStringChangedCallback = onFilterStringChangedCallback;
21303
21379
  _this.elementId = elementId;
21304
21380
  _this.onItemClick = function (itemValue) {
21305
21381
  if (_this.isItemDisabled(itemValue)) {
@@ -22349,6 +22425,7 @@ var arabicSurveyStrings = {
22349
22425
  savingData: "يتم حفظ النتائج على الخادم ...",
22350
22426
  savingDataError: "حدث خطأ ولم نتمكن من حفظ النتائج.",
22351
22427
  savingDataSuccess: "تم حفظ النتائج بنجاح!",
22428
+ savingExceedSize: "ردك يتجاوز 64 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع.",
22352
22429
  saveAgainButton: "حاول مجددا",
22353
22430
  timerMin: "دقيقة",
22354
22431
  timerSec: "ثانية",
@@ -22360,6 +22437,7 @@ var arabicSurveyStrings = {
22360
22437
  timerLimitSurvey: "لقد أنفقت {0} من إجمالي {1}.",
22361
22438
  clearCaption: "واضح",
22362
22439
  signaturePlaceHolder: "وقع هنا",
22440
+ signaturePlaceHolderReadOnly: "لا يوجد توقيع",
22363
22441
  chooseFileCaption: "اختر ملف",
22364
22442
  takePhotoCaption: "التقاط صورة",
22365
22443
  photoPlaceholder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
@@ -22416,7 +22494,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
22416
22494
  // ok: "OK" => "موافق"
22417
22495
  // cancel: "Cancel" => "إلغاء الأمر"
22418
22496
  // refuseItemText: "Refuse to answer" => "رفض الإجابة"
22419
- // dontKnowItemText: "Don't know" => "لا أعرف"
22497
+ // dontKnowItemText: "Don't know" => "لا أعرف"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "ردك يتجاوز 64 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع."
22498
+ // signaturePlaceHolderReadOnly: "No signature" => "لا يوجد توقيع"
22420
22499
 
22421
22500
 
22422
22501
  /***/ }),
@@ -22502,6 +22581,7 @@ var basqueSurveyStrings = {
22502
22581
  savingData: "Erantzunak zerbitzarian gordetzen ari dira...",
22503
22582
  savingDataError: "Erroreren bat gertatu eta erantzunak ez dira zerbitzarian gorde ahal izan.",
22504
22583
  savingDataSuccess: "Erantzunak egoki gorde dira!",
22584
+ savingExceedSize: "Erantzuna 64 KB-tik gorakoa da. Murriztu artxiboaren tamaina, eta berriro saiatu edo jarri harremanetan inkesta baten jabearekin.",
22505
22585
  saveAgainButton: "Berriro saiatu.",
22506
22586
  timerMin: "min",
22507
22587
  timerSec: "seg",
@@ -22513,6 +22593,7 @@ var basqueSurveyStrings = {
22513
22593
  timerLimitSurvey: "Zuk orotara {0} gastatu duzu {1}-(e)tik.",
22514
22594
  clearCaption: "Hustu",
22515
22595
  signaturePlaceHolder: "Sinatu hemen",
22596
+ signaturePlaceHolderReadOnly: "Sinadurarik gabe",
22516
22597
  chooseFileCaption: "Fitxategia hautatu",
22517
22598
  takePhotoCaption: "Argazkia hartu",
22518
22599
  photoPlaceholder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
@@ -22562,7 +22643,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
22562
22643
  // ok: "OK" => "Ados"
22563
22644
  // cancel: "Cancel" => "Ezeztatu"
22564
22645
  // refuseItemText: "Refuse to answer" => "Erantzuteari uko egin"
22565
- // dontKnowItemText: "Don't know" => "Ez dakit"
22646
+ // dontKnowItemText: "Don't know" => "Ez dakit"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Erantzuna 64 KB-tik gorakoa da. Murriztu artxiboaren tamaina, eta berriro saiatu edo jarri harremanetan inkesta baten jabearekin."
22647
+ // signaturePlaceHolderReadOnly: "No signature" => "Sinadurarik gabe"
22566
22648
 
22567
22649
 
22568
22650
  /***/ }),
@@ -22648,6 +22730,7 @@ var bulgarianStrings = {
22648
22730
  savingData: "Резултатите се запазват на сървъра...",
22649
22731
  savingDataError: "Поради възникнала грешка резултатите не можаха да бъдат запазени.",
22650
22732
  savingDataSuccess: "Резултатите бяха запазени успешно!",
22733
+ savingExceedSize: "Вашият отговор надхвърля 64KB. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването.",
22651
22734
  saveAgainButton: "Нов опит",
22652
22735
  timerMin: "мин",
22653
22736
  timerSec: "сек",
@@ -22659,6 +22742,7 @@ var bulgarianStrings = {
22659
22742
  timerLimitSurvey: "Вие използвахте общо {0} от {1}.",
22660
22743
  clearCaption: "Начално състояние",
22661
22744
  signaturePlaceHolder: "Подпишете тук",
22745
+ signaturePlaceHolderReadOnly: "Няма подпис",
22662
22746
  chooseFileCaption: "Изберете файл",
22663
22747
  takePhotoCaption: "Направете снимка",
22664
22748
  photoPlaceholder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
@@ -22715,7 +22799,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
22715
22799
  // ok: "OK" => "Добре"
22716
22800
  // cancel: "Cancel" => "Отмени"
22717
22801
  // refuseItemText: "Refuse to answer" => "Отказва да отговори"
22718
- // dontKnowItemText: "Don't know" => "Не знам"
22802
+ // dontKnowItemText: "Don't know" => "Не знам"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Вашият отговор надхвърля 64KB. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването."
22803
+ // signaturePlaceHolderReadOnly: "No signature" => "Няма подпис"
22719
22804
 
22720
22805
 
22721
22806
  /***/ }),
@@ -22801,6 +22886,7 @@ var catalanSurveyStrings = {
22801
22886
  savingData: "Els resultats s'estan guardant al servidor...",
22802
22887
  savingDataError: "S'ha produït un error i no hem pogut guardar els resultats.",
22803
22888
  savingDataSuccess: "Els resultats es van salvar amb èxit!",
22889
+ savingExceedSize: "La teva resposta supera els 64KB. Reduïu la mida dels fitxers i torneu-ho a provar o poseu-vos en contacte amb el propietari de l'enquesta.",
22804
22890
  saveAgainButton: "Prova una altra vegada",
22805
22891
  timerMin: "min",
22806
22892
  timerSec: "Seg",
@@ -22812,6 +22898,7 @@ var catalanSurveyStrings = {
22812
22898
  timerLimitSurvey: "Has gastat {0} d'{1} en total.",
22813
22899
  clearCaption: "Clar",
22814
22900
  signaturePlaceHolder: "Inscriu-te aquí",
22901
+ signaturePlaceHolderReadOnly: "Sense signatura",
22815
22902
  chooseFileCaption: "Tria un fitxer",
22816
22903
  takePhotoCaption: "Fer foto",
22817
22904
  photoPlaceholder: "Feu clic al botó següent per fer una foto amb la càmera.",
@@ -22908,7 +22995,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
22908
22995
  // ok: "OK" => "D'ACORD"
22909
22996
  // cancel: "Cancel" => "Cancel·lar"
22910
22997
  // refuseItemText: "Refuse to answer" => "Negar-se a respondre"
22911
- // dontKnowItemText: "Don't know" => "No sé"
22998
+ // dontKnowItemText: "Don't know" => "No sé"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "La teva resposta supera els 64KB. Reduïu la mida dels fitxers i torneu-ho a provar o poseu-vos en contacte amb el propietari de l'enquesta."
22999
+ // signaturePlaceHolderReadOnly: "No signature" => "Sense signatura"
22912
23000
 
22913
23001
 
22914
23002
  /***/ }),
@@ -22994,6 +23082,7 @@ var croatianStrings = {
22994
23082
  savingData: "Rezultati se spremaju na poslužitelju...",
22995
23083
  savingDataError: "Došlo je do pogreške i nismo mogli spremiti rezultate.",
22996
23084
  savingDataSuccess: "Rezultati su uspješno spremljeni!",
23085
+ savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovno ili se obratite vlasniku upitnika.",
22997
23086
  saveAgainButton: "Pokušaj ponovo",
22998
23087
  timerMin: "min",
22999
23088
  timerSec: "sec",
@@ -23005,6 +23094,7 @@ var croatianStrings = {
23005
23094
  timerLimitSurvey: "Ukupno ste potrošili {0} od {1}.",
23006
23095
  clearCaption: "Očistiti",
23007
23096
  signaturePlaceHolder: "Potpiši ovdje",
23097
+ signaturePlaceHolderReadOnly: "Bez potpisa",
23008
23098
  chooseFileCaption: "Odaberite datoteku",
23009
23099
  takePhotoCaption: "Snimi fotografiju",
23010
23100
  photoPlaceholder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
@@ -23059,7 +23149,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
23059
23149
  // ok: "OK" => "OK"
23060
23150
  // cancel: "Cancel" => "Otkazati"
23061
23151
  // refuseItemText: "Refuse to answer" => "Odbijte odgovoriti"
23062
- // dontKnowItemText: "Don't know" => "Ne znam"
23152
+ // dontKnowItemText: "Don't know" => "Ne znam"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovno ili se obratite vlasniku upitnika."
23153
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
23063
23154
 
23064
23155
 
23065
23156
  /***/ }),
@@ -23145,6 +23236,7 @@ var czechSurveyStrings = {
23145
23236
  savingData: "Výsledky se ukládají na server...",
23146
23237
  savingDataError: "Došlo k chybě a výsledky jsme nemohli uložit.",
23147
23238
  savingDataSuccess: "Výsledky byly úspěšně uloženy!",
23239
+ savingExceedSize: "Vaše odpověď překračuje 64 kB. Zmenšete prosím velikost svých souborů a zkuste to znovu nebo kontaktujte vlastníka průzkumu.",
23148
23240
  saveAgainButton: "Zkuste to znovu",
23149
23241
  timerMin: "min",
23150
23242
  timerSec: "sek",
@@ -23156,6 +23248,7 @@ var czechSurveyStrings = {
23156
23248
  timerLimitSurvey: "Celkově jste strávil/a {0} z {1}.",
23157
23249
  clearCaption: "Vymazat",
23158
23250
  signaturePlaceHolder: "Podepište se zde",
23251
+ signaturePlaceHolderReadOnly: "Bez podpisu",
23159
23252
  chooseFileCaption: "Vyberte soubor",
23160
23253
  takePhotoCaption: "Pořídit fotografii",
23161
23254
  photoPlaceholder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
@@ -23212,7 +23305,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
23212
23305
  // ok: "OK" => "OK"
23213
23306
  // cancel: "Cancel" => "Zrušit"
23214
23307
  // refuseItemText: "Refuse to answer" => "Odmítnout odpovědět"
23215
- // dontKnowItemText: "Don't know" => "Nevím"
23308
+ // dontKnowItemText: "Don't know" => "Nevím"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaše odpověď překračuje 64 kB. Zmenšete prosím velikost svých souborů a zkuste to znovu nebo kontaktujte vlastníka průzkumu."
23309
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
23216
23310
 
23217
23311
 
23218
23312
  /***/ }),
@@ -23298,6 +23392,7 @@ var danishSurveyStrings = {
23298
23392
  savingData: "Resultaterne bliver gemt på serveren...",
23299
23393
  savingDataError: "Der opstod en fejl og vi kunne ikke gemme resultatet.",
23300
23394
  savingDataSuccess: "Resultatet blev gemt!",
23395
+ savingExceedSize: "Dit svar overstiger 64 KB. Reducer størrelsen på din(e) fil(er), og prøv igen, eller kontakt en undersøgelsesejer.",
23301
23396
  saveAgainButton: "Prøv igen",
23302
23397
  timerMin: "min",
23303
23398
  timerSec: "sek",
@@ -23309,6 +23404,7 @@ var danishSurveyStrings = {
23309
23404
  timerLimitSurvey: "Du har brugt {0} af {1} i alt.",
23310
23405
  clearCaption: "Fjern",
23311
23406
  signaturePlaceHolder: "Tilmeld dig her",
23407
+ signaturePlaceHolderReadOnly: "Ingen underskrift",
23312
23408
  chooseFileCaption: "Vælg fil",
23313
23409
  takePhotoCaption: "Tag billede",
23314
23410
  photoPlaceholder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
@@ -23365,7 +23461,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
23365
23461
  // ok: "OK" => "OK"
23366
23462
  // cancel: "Cancel" => "Aflyse"
23367
23463
  // refuseItemText: "Refuse to answer" => "Nægt at svare"
23368
- // dontKnowItemText: "Don't know" => "Ved ikke"
23464
+ // dontKnowItemText: "Don't know" => "Ved ikke"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Dit svar overstiger 64 KB. Reducer størrelsen på din(e) fil(er), og prøv igen, eller kontakt en undersøgelsesejer."
23465
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen underskrift"
23369
23466
 
23370
23467
 
23371
23468
  /***/ }),
@@ -23451,6 +23548,7 @@ var dutchSurveyStrings = {
23451
23548
  savingData: "De resultaten worden bewaard op de server...",
23452
23549
  savingDataError: "Er was een probleem en we konden de resultaten niet bewaren.",
23453
23550
  savingDataSuccess: "De resultaten werden succesvol bewaard!",
23551
+ savingExceedSize: "Uw antwoord is groter dan 64 kB. Verklein de grootte van uw bestand(en) en probeer het opnieuw of neem contact op met een enquête-eigenaar.",
23454
23552
  saveAgainButton: "Probeer opnieuw",
23455
23553
  timerMin: "minimum",
23456
23554
  timerSec: "sec",
@@ -23462,6 +23560,7 @@ var dutchSurveyStrings = {
23462
23560
  timerLimitSurvey: "U heeft {0} van {1} in het totaal.",
23463
23561
  clearCaption: "Verwijder",
23464
23562
  signaturePlaceHolder: "Hier tekenen",
23563
+ signaturePlaceHolderReadOnly: "Geen handtekening",
23465
23564
  chooseFileCaption: "Gekozen bestand",
23466
23565
  takePhotoCaption: "Foto maken",
23467
23566
  photoPlaceholder: "Klik op de onderstaande knop om een foto te maken met de camera.",
@@ -23516,7 +23615,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
23516
23615
  // ok: "OK" => "OK"
23517
23616
  // cancel: "Cancel" => "Annuleren"
23518
23617
  // refuseItemText: "Refuse to answer" => "Weiger te antwoorden"
23519
- // dontKnowItemText: "Don't know" => "Weet niet"
23618
+ // dontKnowItemText: "Don't know" => "Weet niet"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Uw antwoord is groter dan 64 kB. Verklein de grootte van uw bestand(en) en probeer het opnieuw of neem contact op met een enquête-eigenaar."
23619
+ // signaturePlaceHolderReadOnly: "No signature" => "Geen handtekening"
23520
23620
 
23521
23621
 
23522
23622
  /***/ }),
@@ -23602,6 +23702,7 @@ var englishStrings = {
23602
23702
  savingData: "The results are being saved on the server...",
23603
23703
  savingDataError: "An error occurred and we could not save the results.",
23604
23704
  savingDataSuccess: "The results were saved successfully!",
23705
+ savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner.",
23605
23706
  saveAgainButton: "Try again",
23606
23707
  timerMin: "min",
23607
23708
  timerSec: "sec",
@@ -23728,6 +23829,7 @@ var estonianSurveyStrings = {
23728
23829
  savingData: "Salvestan andmed serveris...",
23729
23830
  savingDataError: "Tekkis viga ning me ei saanud vastuseid salvestada.",
23730
23831
  savingDataSuccess: "Vastuste salvestamine õnnestus!",
23832
+ savingExceedSize: "Teie vastus ületab 64 KB. Vähendage faili(de) mahtu ja proovige uuesti või võtke ühendust uuringu omanikuga.",
23731
23833
  saveAgainButton: "Proovi uuesti",
23732
23834
  timerMin: "min",
23733
23835
  timerSec: "sek",
@@ -23739,6 +23841,7 @@ var estonianSurveyStrings = {
23739
23841
  timerLimitSurvey: "Oled kulutanud {0} võimalikust {1} koguajast.",
23740
23842
  clearCaption: "Puhasta",
23741
23843
  signaturePlaceHolder: "Allkirjasta siin",
23844
+ signaturePlaceHolderReadOnly: "Allkiri puudub",
23742
23845
  chooseFileCaption: "Vali fail",
23743
23846
  takePhotoCaption: "Pildistamine",
23744
23847
  photoPlaceholder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
@@ -23795,7 +23898,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
23795
23898
  // ok: "OK" => "OK"
23796
23899
  // cancel: "Cancel" => "Tühistama"
23797
23900
  // refuseItemText: "Refuse to answer" => "Keeldu vastamast"
23798
- // dontKnowItemText: "Don't know" => "Ei tea"
23901
+ // dontKnowItemText: "Don't know" => "Ei tea"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Teie vastus ületab 64 KB. Vähendage faili(de) mahtu ja proovige uuesti või võtke ühendust uuringu omanikuga."
23902
+ // signaturePlaceHolderReadOnly: "No signature" => "Allkiri puudub"
23799
23903
 
23800
23904
 
23801
23905
  /***/ }),
@@ -23881,6 +23985,7 @@ var finnishSurveyStrings = {
23881
23985
  savingData: "Tietoja tallennetaan palvelimelle...",
23882
23986
  savingDataError: "Tapahtui virhe, emmekä voineet tallentaa kyselyn tietoja.",
23883
23987
  savingDataSuccess: "Tiedot tallennettiin onnistuneesti!",
23988
+ savingExceedSize: "Vastauksesi ylittää 64 kt. Pienennä tiedostojesi kokoa ja yritä uudelleen tai ota yhteyttä kyselyn omistajaan.",
23884
23989
  saveAgainButton: "Yritä uudelleen",
23885
23990
  timerMin: "min",
23886
23991
  timerSec: "sek",
@@ -23892,6 +23997,7 @@ var finnishSurveyStrings = {
23892
23997
  timerLimitSurvey: "Olet käyttänyt yhteensä {0} / {1}.",
23893
23998
  clearCaption: "Tyhjennä",
23894
23999
  signaturePlaceHolder: "Allekirjoita tähän",
24000
+ signaturePlaceHolderReadOnly: "Ei allekirjoitusta",
23895
24001
  chooseFileCaption: "Valitse tiedosto",
23896
24002
  takePhotoCaption: "Ota valokuva",
23897
24003
  photoPlaceholder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
@@ -23936,7 +24042,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
23936
24042
  // ok: "OK" => "OKEI"
23937
24043
  // cancel: "Cancel" => "Perua"
23938
24044
  // refuseItemText: "Refuse to answer" => "Kieltäydy vastaamasta"
23939
- // dontKnowItemText: "Don't know" => "Ei tiedä"
24045
+ // dontKnowItemText: "Don't know" => "Ei tiedä"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vastauksesi ylittää 64 kt. Pienennä tiedostojesi kokoa ja yritä uudelleen tai ota yhteyttä kyselyn omistajaan."
24046
+ // signaturePlaceHolderReadOnly: "No signature" => "Ei allekirjoitusta"
23940
24047
 
23941
24048
 
23942
24049
  /***/ }),
@@ -24022,6 +24129,7 @@ var frenchSurveyStrings = {
24022
24129
  savingData: "Les résultats sont en cours de sauvegarde sur le serveur...",
24023
24130
  savingDataError: "Une erreur est survenue et a empêché la sauvegarde des résultats.",
24024
24131
  savingDataSuccess: "Les résultats ont bien été enregistrés !",
24132
+ savingExceedSize: "Votre réponse dépasse 64 Ko. Veuillez réduire la taille de votre ou vos fichiers et réessayer ou contacter un propriétaire de sondage.",
24025
24133
  saveAgainButton: "Réessayer",
24026
24134
  timerMin: "min",
24027
24135
  timerSec: "sec",
@@ -24033,6 +24141,7 @@ var frenchSurveyStrings = {
24033
24141
  timerLimitSurvey: "Vous avez passé {0} sur {1} au total.",
24034
24142
  clearCaption: "Vider",
24035
24143
  signaturePlaceHolder: "Signez ici",
24144
+ signaturePlaceHolderReadOnly: "Pas de signature",
24036
24145
  chooseFileCaption: "Ajouter un fichier",
24037
24146
  takePhotoCaption: "Prendre une photo",
24038
24147
  photoPlaceholder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
@@ -24077,7 +24186,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
24077
24186
  // ok: "OK" => "D’ACCORD"
24078
24187
  // cancel: "Cancel" => "Annuler"
24079
24188
  // refuseItemText: "Refuse to answer" => "Refuser de répondre"
24080
- // dontKnowItemText: "Don't know" => "Sais pas"
24189
+ // dontKnowItemText: "Don't know" => "Sais pas"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Votre réponse dépasse 64 Ko. Veuillez réduire la taille de votre ou vos fichiers et réessayer ou contacter un propriétaire de sondage."
24190
+ // signaturePlaceHolderReadOnly: "No signature" => "Pas de signature"
24081
24191
 
24082
24192
 
24083
24193
  /***/ }),
@@ -24163,6 +24273,7 @@ var georgianSurveyStrings = {
24163
24273
  savingData: "შედეგები ინახება სერვერზე...",
24164
24274
  savingDataError: "დაფიქსირდა შეცდომა და შედეგი ვერ შევინახავდით.",
24165
24275
  savingDataSuccess: "შედეგები წარმატებით გადაარჩინეს!",
24276
+ savingExceedSize: "თქვენი პასუხი აღემატება 64KB. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს.",
24166
24277
  saveAgainButton: "კიდევ სცადე",
24167
24278
  timerMin: "წთ",
24168
24279
  timerSec: "წმ",
@@ -24174,6 +24285,7 @@ var georgianSurveyStrings = {
24174
24285
  timerLimitSurvey: "თქვენ სულ {1} {0} დახარჯეთ.",
24175
24286
  clearCaption: "მოწმენდილი ცა",
24176
24287
  signaturePlaceHolder: "შესვლა აქ",
24288
+ signaturePlaceHolderReadOnly: "ხელმოწერა არ არის",
24177
24289
  chooseFileCaption: "ვაუჩერის ნახვა",
24178
24290
  takePhotoCaption: "გადაიღეთ ფოტო",
24179
24291
  photoPlaceholder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
@@ -24283,7 +24395,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
24283
24395
  // ok: "OK" => "კარგი"
24284
24396
  // cancel: "Cancel" => "გაუქმება"
24285
24397
  // refuseItemText: "Refuse to answer" => "უარი პასუხზე"
24286
- // dontKnowItemText: "Don't know" => "არ ვიცი"
24398
+ // dontKnowItemText: "Don't know" => "არ ვიცი"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "თქვენი პასუხი აღემატება 64KB. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს."
24399
+ // signaturePlaceHolderReadOnly: "No signature" => "ხელმოწერა არ არის"
24287
24400
 
24288
24401
 
24289
24402
  /***/ }),
@@ -24309,7 +24422,7 @@ var germanSurveyStrings = {
24309
24422
  startSurveyText: "Start",
24310
24423
  otherItemText: "Sonstiges (Bitte angeben)",
24311
24424
  noneItemText: "Nichts trifft zu",
24312
- refuseItemText: "Verweigern Sie die Antwort",
24425
+ refuseItemText: "Antwort verweigern",
24313
24426
  dontKnowItemText: "Weiß ich nicht",
24314
24427
  selectAllItemText: "Alles auswählen",
24315
24428
  progressText: "Seite {0} von {1}",
@@ -24319,7 +24432,7 @@ var germanSurveyStrings = {
24319
24432
  questionsProgressText: "{0}/{1} Fragen beantwortet",
24320
24433
  emptySurvey: "Es sind keine Fragen vorhanden.",
24321
24434
  completingSurvey: "Vielen Dank, dass Sie die Umfrage abgeschlossen haben!",
24322
- completingSurveyBefore: "Aus unseren Unterlagen geht hervor, dass Sie diese Umfrage bereits abgeschlossen haben.",
24435
+ completingSurveyBefore: "Sie haben diese Umfrage bereits abgeschlossen.",
24323
24436
  loadingSurvey: "Umfrage wird geladen...",
24324
24437
  placeholder: "Bitte auswählen...",
24325
24438
  ratingOptionsCaption: "Tippen Sie hier, um zu bewerten...",
@@ -24369,6 +24482,7 @@ var germanSurveyStrings = {
24369
24482
  savingData: "Die Ergebnisse werden auf dem Server gespeichert...",
24370
24483
  savingDataError: "Es ist ein Fehler aufgetreten. Die Ergebnisse konnten nicht gespeichert werden.",
24371
24484
  savingDataSuccess: "Die Ergebnisse wurden gespeichert!",
24485
+ savingExceedSize: "Ihre Antwort überschreitet 64 KB. Reduzieren Sie die Größe Ihrer Datei(en) und versuchen Sie es erneut, oder wenden Sie sich an den Umfragebesitzer.",
24372
24486
  saveAgainButton: "Erneut absenden",
24373
24487
  timerMin: "Min.",
24374
24488
  timerSec: "Sek.",
@@ -24380,10 +24494,11 @@ var germanSurveyStrings = {
24380
24494
  timerLimitSurvey: "Sie haben insgesamt {0} von {1} gebraucht.",
24381
24495
  clearCaption: "Auswahl entfernen",
24382
24496
  signaturePlaceHolder: "Hier unterschreiben",
24497
+ signaturePlaceHolderReadOnly: "Keine Unterschrift",
24383
24498
  chooseFileCaption: "Datei auswählen",
24384
24499
  takePhotoCaption: "Foto machen",
24385
24500
  photoPlaceholder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
24386
- fileOrPhotoPlaceholder: "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen.",
24501
+ fileOrPhotoPlaceholder: "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder machen Sie ein Foto mit der Kamera.",
24387
24502
  replaceFileCaption: "Datei ersetzen",
24388
24503
  removeFileCaption: "Datei löschen",
24389
24504
  booleanCheckedLabel: "Ja",
@@ -24393,36 +24508,21 @@ var germanSurveyStrings = {
24393
24508
  questionTitlePatternText: "Fragentitel",
24394
24509
  modalCancelButtonText: "Abbrechen",
24395
24510
  modalApplyButtonText: "Anwenden",
24396
- filterStringPlaceholder: "Tippe um zu suchen...",
24511
+ filterStringPlaceholder: "Tippen Sie, um zu suchen...",
24397
24512
  emptyMessage: "Es gibt noch keine Daten.",
24398
24513
  noEntriesText: "Es gibt noch keine Einträge.\nKlicken Sie auf die Schaltfläche unten, um einen neuen Eintrag hinzuzufügen.",
24399
24514
  noEntriesReadonlyText: "Es gibt keine Einträge.",
24400
24515
  more: "Mehr",
24401
- tagboxDoneButtonCaption: "OKAY",
24516
+ tagboxDoneButtonCaption: "OK",
24402
24517
  selectToRankEmptyRankedAreaText: "Alle Auswahlmöglichkeiten sind in einer Rangfolge angeordnet",
24403
24518
  selectToRankEmptyUnrankedAreaText: "Ziehen Sie die Auswahl hierher, um sie zu ordnen",
24404
- ok: "OKAY",
24519
+ ok: "OK",
24405
24520
  cancel: "Abbrechen"
24406
24521
  };
24407
24522
  survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].locales["de"] = germanSurveyStrings;
24408
24523
  survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"] = "deutsch";
24409
24524
  // The following strings have been translated by a machine translation service
24410
24525
  // Remove those strings that you have corrected manually
24411
- // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Bereich {panelIndex}"
24412
- // noEntriesReadonlyText: "There are no entries." => "Es gibt keine Einträge."
24413
- // tagboxDoneButtonCaption: "OK" => "OKAY"
24414
- // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle Auswahlmöglichkeiten sind in einer Rangfolge angeordnet"
24415
- // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Ziehen Sie die Auswahl hierher, um sie zu ordnen"// takePhotoCaption: "Take Photo" => "Foto machen"
24416
- // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen."
24417
- // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen."
24418
- // replaceFileCaption: "Replace file" => "Datei ersetzen"// eachRowUniqueError: "Each row must have a unique value." => "Jede Zeile muss einen eindeutigen Wert haben."
24419
- // noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event." => "Dateien können nicht hochgeladen werden. Fügen Sie einen Handler für das Ereignis 'onUploadFiles' hinzu."
24420
- // showDetails: "Show Details" => "Details anzeigen"
24421
- // hideDetails: "Hide Details" => "Details ausblenden"
24422
- // ok: "OK" => "OKAY"
24423
- // cancel: "Cancel" => "Abbrechen"
24424
- // refuseItemText: "Refuse to answer" => "Verweigern Sie die Antwort"
24425
- // dontKnowItemText: "Don't know" => "Weiß ich nicht"
24426
24526
 
24427
24527
 
24428
24528
  /***/ }),
@@ -24508,6 +24608,7 @@ var greekSurveyStrings = {
24508
24608
  savingData: "Τα αποτελέσματα αποθηκεύονται στον διακομιστή ...",
24509
24609
  savingDataError: "Παρουσιάστηκε σφάλμα και δεν ήταν δυνατή η αποθήκευση των αποτελεσμάτων.",
24510
24610
  savingDataSuccess: "Τα αποτελέσματα αποθηκεύτηκαν με επιτυχία!",
24611
+ savingExceedSize: "Η απάντησή σας υπερβαίνει τα 64KB. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας.",
24511
24612
  saveAgainButton: "Προσπάθησε ξανά",
24512
24613
  timerMin: "ελάχ",
24513
24614
  timerSec: "δευτ",
@@ -24519,6 +24620,7 @@ var greekSurveyStrings = {
24519
24620
  timerLimitSurvey: "Έχετε ξοδέψει {0} από {1} συνολικά.",
24520
24621
  clearCaption: "Εκκαθάριση",
24521
24622
  signaturePlaceHolder: "Υπογράψτε εδώ",
24623
+ signaturePlaceHolderReadOnly: "Χωρίς υπογραφή",
24522
24624
  chooseFileCaption: "Επιλέξτε αρχείο",
24523
24625
  takePhotoCaption: "Λήψη φωτογραφίας",
24524
24626
  photoPlaceholder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
@@ -24560,7 +24662,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
24560
24662
  // ok: "OK" => "OK"
24561
24663
  // cancel: "Cancel" => "Ακυρώνω"
24562
24664
  // refuseItemText: "Refuse to answer" => "Αρνηθείτε να απαντήσετε"
24563
- // dontKnowItemText: "Don't know" => "Δεν ξέρω"
24665
+ // dontKnowItemText: "Don't know" => "Δεν ξέρω"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Η απάντησή σας υπερβαίνει τα 64KB. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας."
24666
+ // signaturePlaceHolderReadOnly: "No signature" => "Χωρίς υπογραφή"
24564
24667
 
24565
24668
 
24566
24669
  /***/ }),
@@ -24646,6 +24749,7 @@ var hebrewSurveyStrings = {
24646
24749
  savingData: "התוצאות נשמרות בשרת ...",
24647
24750
  savingDataError: "אירעה שגיאה ולא הצלחנו לשמור את התוצאות.",
24648
24751
  savingDataSuccess: "התוצאות נשמרו בהצלחה!",
24752
+ savingExceedSize: "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר.",
24649
24753
  saveAgainButton: "נסה שוב",
24650
24754
  timerMin: "דקה",
24651
24755
  timerSec: "שניות",
@@ -24657,6 +24761,7 @@ var hebrewSurveyStrings = {
24657
24761
  timerLimitSurvey: "הוצאת סכום כולל של {0} מתוך {1}.",
24658
24762
  clearCaption: "לנקות",
24659
24763
  signaturePlaceHolder: "חתום כאן",
24764
+ signaturePlaceHolderReadOnly: "אין חתימה",
24660
24765
  chooseFileCaption: "בחר קובץ",
24661
24766
  takePhotoCaption: "צלם תמונה",
24662
24767
  photoPlaceholder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
@@ -24714,6 +24819,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
24714
24819
  // cancel: "Cancel" => "ביטל"
24715
24820
  // refuseItemText: "Refuse to answer" => "מסרבים לענות"
24716
24821
  // dontKnowItemText: "Don't know" => "לא יודע"
24822
+ // savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר."
24823
+ // signaturePlaceHolderReadOnly: "No signature" => "אין חתימה"
24717
24824
 
24718
24825
 
24719
24826
  /***/ }),
@@ -24799,6 +24906,7 @@ var hindiStrings = {
24799
24906
  savingData: "परिणाम सर्वर पर सेव हो रहे हैं",
24800
24907
  savingDataError: "एक त्रुटि हुई और हम परिणामों को नहीं सेव कर सके",
24801
24908
  savingDataSuccess: "परिणाम सफलतापूर्वक सेव हो गए",
24909
+ savingExceedSize: "आपकी प्रतिक्रिया 64KB से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें.",
24802
24910
  saveAgainButton: "फिर कोशिश करो",
24803
24911
  timerMin: "मिनट",
24804
24912
  timerSec: "सेकंड",
@@ -24810,6 +24918,7 @@ var hindiStrings = {
24810
24918
  timerLimitSurvey: "आपने कुल {1} की {0} खर्च की है",
24811
24919
  clearCaption: "स्पष्ट",
24812
24920
  signaturePlaceHolder: "यहां साइन करें",
24921
+ signaturePlaceHolderReadOnly: "कोई हस्ताक्षर नहीं",
24813
24922
  chooseFileCaption: "फ़ाइल चुनें",
24814
24923
  takePhotoCaption: "फोटो ले लो",
24815
24924
  photoPlaceholder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
@@ -24866,7 +24975,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
24866
24975
  // hideDetails: "Hide Details" => "विवरण छुपाएँ"
24867
24976
  // ok: "OK" => "ठीक है"
24868
24977
  // cancel: "Cancel" => "रद्द करना"// refuseItemText: "Refuse to answer" => "जवाब देने से इनकार"
24869
- // dontKnowItemText: "Don't know" => "नहीं मालूम"
24978
+ // dontKnowItemText: "Don't know" => "नहीं मालूम"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "आपकी प्रतिक्रिया 64KB से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें."
24979
+ // signaturePlaceHolderReadOnly: "No signature" => "कोई हस्ताक्षर नहीं"
24870
24980
 
24871
24981
 
24872
24982
  /***/ }),
@@ -24952,6 +25062,7 @@ var hungarianSurveyStrings = {
24952
25062
  savingData: "Eredmény mentése a szerverre...",
24953
25063
  savingDataError: "Egy hiba folytán nem tudtuk elmenteni az eredményt.",
24954
25064
  savingDataSuccess: "Eredmény sikeresen mentve!",
25065
+ savingExceedSize: "A válasz meghaladja a 64 KB-ot. Kérjük, csökkentse a fájl(ok) méretét, és próbálja újra, vagy lépjen kapcsolatba egy felmérés tulajdonosával.",
24955
25066
  saveAgainButton: "Próbálja újra",
24956
25067
  timerMin: "min",
24957
25068
  timerSec: "sec",
@@ -24963,6 +25074,7 @@ var hungarianSurveyStrings = {
24963
25074
  timerLimitSurvey: "Összesen {0} / {1} összeget költött el.",
24964
25075
  clearCaption: "Egyértelmű",
24965
25076
  signaturePlaceHolder: "Írja alá itt",
25077
+ signaturePlaceHolderReadOnly: "Nincs aláírás",
24966
25078
  chooseFileCaption: "Válassz fájlt",
24967
25079
  takePhotoCaption: "Fotó készítése",
24968
25080
  photoPlaceholder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
@@ -25018,7 +25130,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
25018
25130
  // ok: "OK" => "OKÉ"
25019
25131
  // cancel: "Cancel" => "Érvénytelenít"
25020
25132
  // refuseItemText: "Refuse to answer" => "A válaszadás megtagadása"
25021
- // dontKnowItemText: "Don't know" => "Nem tudom"
25133
+ // dontKnowItemText: "Don't know" => "Nem tudom"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "A válasz meghaladja a 64 KB-ot. Kérjük, csökkentse a fájl(ok) méretét, és próbálja újra, vagy lépjen kapcsolatba egy felmérés tulajdonosával."
25134
+ // signaturePlaceHolderReadOnly: "No signature" => "Nincs aláírás"
25022
25135
 
25023
25136
 
25024
25137
  /***/ }),
@@ -25104,6 +25217,7 @@ var icelandicSurveyStrings = {
25104
25217
  savingData: "Niðurstöðurnar eru að spara á netþjóninum ... ",
25105
25218
  savingDataError: "Villa kom upp og við gátum ekki vistað niðurstöðurnar.",
25106
25219
  savingDataSuccess: "Árangurinn var vistaður með góðum árangri!",
25220
+ savingExceedSize: "Svar þitt fer yfir 64KB. Vinsamlegast minnkaðu stærð skráa þinna og reyndu aftur eða hafðu samband við eiganda könnunarinnar.",
25107
25221
  saveAgainButton: "Reyndu aftur",
25108
25222
  timerMin: "mín",
25109
25223
  timerSec: "sek",
@@ -25115,6 +25229,7 @@ var icelandicSurveyStrings = {
25115
25229
  timerLimitSurvey: "Þú hefur eytt {0} af {1} samtals.",
25116
25230
  clearCaption: "Hreinsa",
25117
25231
  signaturePlaceHolder: "Kvittađu hér",
25232
+ signaturePlaceHolderReadOnly: "Engin undirskrift",
25118
25233
  chooseFileCaption: "Veldu skrá",
25119
25234
  takePhotoCaption: "Taka mynd",
25120
25235
  photoPlaceholder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
@@ -25171,7 +25286,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
25171
25286
  // ok: "OK" => "ÓKEI"
25172
25287
  // cancel: "Cancel" => "Afturkalla"
25173
25288
  // refuseItemText: "Refuse to answer" => "Neita að svara"
25174
- // dontKnowItemText: "Don't know" => "Veit ekki"
25289
+ // dontKnowItemText: "Don't know" => "Veit ekki"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Svar þitt fer yfir 64KB. Vinsamlegast minnkaðu stærð skráa þinna og reyndu aftur eða hafðu samband við eiganda könnunarinnar."
25290
+ // signaturePlaceHolderReadOnly: "No signature" => "Engin undirskrift"
25175
25291
 
25176
25292
 
25177
25293
  /***/ }),
@@ -25257,6 +25373,7 @@ var indonesianStrings = {
25257
25373
  savingData: "Hasil sedang disimpan pada server...",
25258
25374
  savingDataError: "Kesalahan terjadi dan kami tidak dapat menyimpan hasil.",
25259
25375
  savingDataSuccess: "Hasil telah sukses disimpan!",
25376
+ savingExceedSize: "Respons Anda melebihi 64 KB. Harap kurangi ukuran file Anda dan coba lagi atau hubungi pemilik survei.",
25260
25377
  saveAgainButton: "Coba lagi",
25261
25378
  timerMin: "menit",
25262
25379
  timerSec: "detik",
@@ -25268,6 +25385,7 @@ var indonesianStrings = {
25268
25385
  timerLimitSurvey: "Anda telah menghabiskan {0} dari {1} secara keseluruhan.",
25269
25386
  clearCaption: "Bersihkan",
25270
25387
  signaturePlaceHolder: "Tanda tangan di sini",
25388
+ signaturePlaceHolderReadOnly: "Tidak ada tanda tangan",
25271
25389
  chooseFileCaption: "Pilih File",
25272
25390
  takePhotoCaption: "Ambil Foto",
25273
25391
  photoPlaceholder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
@@ -25324,7 +25442,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
25324
25442
  // ok: "OK" => "OKE"
25325
25443
  // cancel: "Cancel" => "Membatalkan"
25326
25444
  // refuseItemText: "Refuse to answer" => "Menolak untuk menjawab"
25327
- // dontKnowItemText: "Don't know" => "Tidak tahu"
25445
+ // dontKnowItemText: "Don't know" => "Tidak tahu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Respons Anda melebihi 64 KB. Harap kurangi ukuran file Anda dan coba lagi atau hubungi pemilik survei."
25446
+ // signaturePlaceHolderReadOnly: "No signature" => "Tidak ada tanda tangan"
25328
25447
 
25329
25448
 
25330
25449
  /***/ }),
@@ -25410,6 +25529,7 @@ var italianSurveyStrings = {
25410
25529
  savingData: "Salvataggio dati sul server...",
25411
25530
  savingDataError: "Si è verificato un errore e non è stato possibile salvare i risultati.",
25412
25531
  savingDataSuccess: "I risultati sono stati salvati con successo!",
25532
+ savingExceedSize: "La tua risposta supera i 64 KB. Riduci le dimensioni dei tuoi file e riprova o contatta il proprietario di un'indagine.",
25413
25533
  saveAgainButton: "Riprova",
25414
25534
  timerMin: "min",
25415
25535
  timerSec: "sec",
@@ -25421,6 +25541,7 @@ var italianSurveyStrings = {
25421
25541
  timerLimitSurvey: "Hai impiegato {0} di {1} in totale.",
25422
25542
  clearCaption: "Cancella",
25423
25543
  signaturePlaceHolder: "Firmare qui",
25544
+ signaturePlaceHolderReadOnly: "Nessuna firma",
25424
25545
  chooseFileCaption: "Scegliere il file",
25425
25546
  takePhotoCaption: "Scatta foto",
25426
25547
  photoPlaceholder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
@@ -25465,7 +25586,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
25465
25586
  // ok: "OK" => "OK"
25466
25587
  // cancel: "Cancel" => "Annulla"
25467
25588
  // refuseItemText: "Refuse to answer" => "Rifiuta di rispondere"
25468
- // dontKnowItemText: "Don't know" => "Non lo so"
25589
+ // dontKnowItemText: "Don't know" => "Non lo so"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "La tua risposta supera i 64 KB. Riduci le dimensioni dei tuoi file e riprova o contatta il proprietario di un'indagine."
25590
+ // signaturePlaceHolderReadOnly: "No signature" => "Nessuna firma"
25469
25591
 
25470
25592
 
25471
25593
  /***/ }),
@@ -25551,6 +25673,7 @@ var japaneseSurveyStrings = {
25551
25673
  savingData: "結果はサーバーに保存されています...。",
25552
25674
  savingDataError: "エラーが発生し、結果を保存できませんでした。",
25553
25675
  savingDataSuccess: "結果は無事に保存されました",
25676
+ savingExceedSize: "回答は 64 KB を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。",
25554
25677
  saveAgainButton: "もう一度試してみてください。",
25555
25678
  timerMin: "僅少",
25556
25679
  timerSec: "セック",
@@ -25562,6 +25685,7 @@ var japaneseSurveyStrings = {
25562
25685
  timerLimitSurvey: "合計で{1}の{0}を使ったことがあります。",
25563
25686
  clearCaption: "空白",
25564
25687
  signaturePlaceHolder: "ここに署名",
25688
+ signaturePlaceHolderReadOnly: "署名なし",
25565
25689
  chooseFileCaption: "ファイルを選択",
25566
25690
  takePhotoCaption: "写真を撮る",
25567
25691
  photoPlaceholder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
@@ -25618,7 +25742,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
25618
25742
  // ok: "OK" => "わかりました"
25619
25743
  // cancel: "Cancel" => "キャンセル"
25620
25744
  // refuseItemText: "Refuse to answer" => "回答を拒否する"
25621
- // dontKnowItemText: "Don't know" => "わかりません"
25745
+ // dontKnowItemText: "Don't know" => "わかりません"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "回答は 64 KB を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。"
25746
+ // signaturePlaceHolderReadOnly: "No signature" => "署名なし"
25622
25747
 
25623
25748
 
25624
25749
  /***/ }),
@@ -25704,6 +25829,7 @@ var kazakhStrings = {
25704
25829
  savingData: "Нәтижелер серверде сақталады...",
25705
25830
  savingDataError: "Қателік туындады, нәтиже сақталынбады.",
25706
25831
  savingDataSuccess: "Нәтиже ойдағыдай сақталды!",
25832
+ savingExceedSize: "Сіздің жауабыңыз 64КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз.",
25707
25833
  saveAgainButton: "Қайтадан байқап көру",
25708
25834
  timerMin: "мин",
25709
25835
  timerSec: "сек",
@@ -25715,6 +25841,7 @@ var kazakhStrings = {
25715
25841
  timerLimitSurvey: "Сіз бүкіл сауалнама үшін {0} ден {1} кетірдіңіз ",
25716
25842
  clearCaption: "Тазалау",
25717
25843
  signaturePlaceHolder: "Осында кіру",
25844
+ signaturePlaceHolderReadOnly: "Қолдың No",
25718
25845
  chooseFileCaption: "Файл таңдаңыз",
25719
25846
  takePhotoCaption: "Фотосуретке түсу",
25720
25847
  photoPlaceholder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
@@ -25771,7 +25898,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
25771
25898
  // ok: "OK" => "ЖАҚСЫ"
25772
25899
  // cancel: "Cancel" => "Болдырмау"
25773
25900
  // refuseItemText: "Refuse to answer" => "Жауап беруден бас тарту"
25774
- // dontKnowItemText: "Don't know" => "Білмеймін"
25901
+ // dontKnowItemText: "Don't know" => "Білмеймін"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Сіздің жауабыңыз 64КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз."
25902
+ // signaturePlaceHolderReadOnly: "No signature" => "Қолдың No"
25775
25903
 
25776
25904
 
25777
25905
  /***/ }),
@@ -25857,6 +25985,7 @@ var koreanStrings = {
25857
25985
  savingData: "결과가 서버에 저장 중입니다...",
25858
25986
  savingDataError: "오류가 발생하여 결과를 저장할 수 없습니다.",
25859
25987
  savingDataSuccess: "결과가 성공적으로 저장되었습니다.",
25988
+ savingExceedSize: "응답이 64KB를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요.",
25860
25989
  saveAgainButton: "다시 시도하세요.",
25861
25990
  timerMin: "분",
25862
25991
  timerSec: "초",
@@ -25868,6 +25997,7 @@ var koreanStrings = {
25868
25997
  timerLimitSurvey: "총 {0}/{1}이 걸렸습니다.",
25869
25998
  clearCaption: "지우기",
25870
25999
  signaturePlaceHolder: "서명하세요.",
26000
+ signaturePlaceHolderReadOnly: "서명 없음",
25871
26001
  chooseFileCaption: "파일 선택",
25872
26002
  takePhotoCaption: "사진 찍기",
25873
26003
  photoPlaceholder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
@@ -25911,7 +26041,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
25911
26041
  // ok: "OK" => "그래"
25912
26042
  // cancel: "Cancel" => "취소"
25913
26043
  // refuseItemText: "Refuse to answer" => "대답 거부"
25914
- // dontKnowItemText: "Don't know" => "모르다"
26044
+ // dontKnowItemText: "Don't know" => "모르다"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "응답이 64KB를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요."
26045
+ // signaturePlaceHolderReadOnly: "No signature" => "서명 없음"
25915
26046
 
25916
26047
 
25917
26048
  /***/ }),
@@ -25997,6 +26128,7 @@ var latvianSurveyStrings = {
25997
26128
  savingData: "Rezultāti tiek saglabāti serverī ...",
25998
26129
  savingDataError: "Radās kļūda, un mēs nevarējām saglabāt rezultātus.",
25999
26130
  savingDataSuccess: "Rezultāti tika veiksmīgi saglabāti!",
26131
+ savingExceedSize: "Jūsu atbilde pārsniedz 64 KB. Lūdzu, samaziniet sava(-u) faila(-u) lielumu un mēģiniet vēlreiz vai sazinieties ar aptaujas īpašnieku.",
26000
26132
  saveAgainButton: "Mēģiniet vēlreiz",
26001
26133
  timerMin: "min",
26002
26134
  timerSec: "sek",
@@ -26008,6 +26140,7 @@ var latvianSurveyStrings = {
26008
26140
  timerLimitSurvey: "Kopā esat iztērējis {0} no {1}.",
26009
26141
  clearCaption: "Iztīrīt",
26010
26142
  signaturePlaceHolder: "Parakstieties šeit",
26143
+ signaturePlaceHolderReadOnly: "Nav paraksta",
26011
26144
  chooseFileCaption: "Izvēlēties failu",
26012
26145
  takePhotoCaption: "Uzņemt fotoattēlu",
26013
26146
  photoPlaceholder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
@@ -26052,7 +26185,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
26052
26185
  // ok: "OK" => "LABI"
26053
26186
  // cancel: "Cancel" => "Atcelt"
26054
26187
  // refuseItemText: "Refuse to answer" => "Atteikties atbildēt"
26055
- // dontKnowItemText: "Don't know" => "Es nezinu"
26188
+ // dontKnowItemText: "Don't know" => "Es nezinu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jūsu atbilde pārsniedz 64 KB. Lūdzu, samaziniet sava(-u) faila(-u) lielumu un mēģiniet vēlreiz vai sazinieties ar aptaujas īpašnieku."
26189
+ // signaturePlaceHolderReadOnly: "No signature" => "Nav paraksta"
26056
26190
 
26057
26191
 
26058
26192
  /***/ }),
@@ -26138,6 +26272,7 @@ var lithuaniaSurveyStrings = {
26138
26272
  savingData: "Rezultatai saugomi serveryje...",
26139
26273
  savingDataError: "Įvyko klaida ir mes negalėjome išsaugoti rezultatų.",
26140
26274
  savingDataSuccess: "Rezultatai buvo išsaugoti sėkmingai!",
26275
+ savingExceedSize: "Jūsų atsakymas viršija 64 KB. Sumažinkite failo (-ų) dydį ir bandykite dar kartą arba susisiekite su apklausos savininku.",
26141
26276
  saveAgainButton: "Bandyti dar kartą",
26142
26277
  timerMin: "min",
26143
26278
  timerSec: "sek",
@@ -26149,6 +26284,7 @@ var lithuaniaSurveyStrings = {
26149
26284
  timerLimitSurvey: "Praleidote {0} iš {1} iš viso.",
26150
26285
  clearCaption: "Valyti",
26151
26286
  signaturePlaceHolder: "Pasirašykite čia",
26287
+ signaturePlaceHolderReadOnly: "Nėra parašo",
26152
26288
  chooseFileCaption: "Pasirinkti failą",
26153
26289
  takePhotoCaption: "Fotografuoti",
26154
26290
  photoPlaceholder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
@@ -26205,7 +26341,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
26205
26341
  // ok: "OK" => "GERAI"
26206
26342
  // cancel: "Cancel" => "Atšaukti"
26207
26343
  // refuseItemText: "Refuse to answer" => "Atsisakyti atsakyti"
26208
- // dontKnowItemText: "Don't know" => "Nežinau"
26344
+ // dontKnowItemText: "Don't know" => "Nežinau"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jūsų atsakymas viršija 64 KB. Sumažinkite failo (-ų) dydį ir bandykite dar kartą arba susisiekite su apklausos savininku."
26345
+ // signaturePlaceHolderReadOnly: "No signature" => "Nėra parašo"
26209
26346
 
26210
26347
 
26211
26348
  /***/ }),
@@ -26291,6 +26428,7 @@ var macedonianSurveyStrings = {
26291
26428
  savingData: "Резултатите се зачувуваат на серверот ...",
26292
26429
  savingDataError: "Настана грешка и не можевме да ги зачуваме резултатите.",
26293
26430
  savingDataSuccess: "Резултатите беа успешно зачувани!",
26431
+ savingExceedSize: "Вашиот одговор надминува 64KB. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето.",
26294
26432
  saveAgainButton: "Обиди се повторно",
26295
26433
  timerMin: "мин",
26296
26434
  timerSec: "сек",
@@ -26302,6 +26440,7 @@ var macedonianSurveyStrings = {
26302
26440
  timerLimitSurvey: "Вие потрошивте вкупно {0} од {1}.",
26303
26441
  clearCaption: "Да расчисти",
26304
26442
  signaturePlaceHolder: "Потпиши се овде.",
26443
+ signaturePlaceHolderReadOnly: "Нема потпис",
26305
26444
  chooseFileCaption: "Изберете датотека",
26306
26445
  takePhotoCaption: "Фотографирајте",
26307
26446
  photoPlaceholder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
@@ -26352,7 +26491,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
26352
26491
  // ok: "OK" => "ДОБРО"
26353
26492
  // cancel: "Cancel" => "Откажи"
26354
26493
  // refuseItemText: "Refuse to answer" => "Одбиј да одговориш."
26355
- // dontKnowItemText: "Don't know" => "Не знам"
26494
+ // dontKnowItemText: "Don't know" => "Не знам"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Вашиот одговор надминува 64KB. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето."
26495
+ // signaturePlaceHolderReadOnly: "No signature" => "Нема потпис"
26356
26496
 
26357
26497
 
26358
26498
  /***/ }),
@@ -26438,6 +26578,7 @@ var malaySurveyStrings = {
26438
26578
  savingData: "Keputusan sedang disimpan pada pelayan...",
26439
26579
  savingDataError: "Ralat berlaku dan kami tidak dapat menyimpan keputusan.",
26440
26580
  savingDataSuccess: "Keputusan berjaya disimpan!",
26581
+ savingExceedSize: "Jawapan anda melebihi 64KB. Sila kurangkan saiz fail anda dan cuba lagi atau hubungi pemilik tinjauan.",
26441
26582
  saveAgainButton: "Cuba lagi",
26442
26583
  timerMin: "min",
26443
26584
  timerSec: "saat",
@@ -26449,6 +26590,7 @@ var malaySurveyStrings = {
26449
26590
  timerLimitSurvey: "Anda telah meluangkan {0} daripada {1} secara keseluruhan.",
26450
26591
  clearCaption: "Kosongkan",
26451
26592
  signaturePlaceHolder: "Tandatangan di sini",
26593
+ signaturePlaceHolderReadOnly: "Tiada tandatangan",
26452
26594
  chooseFileCaption: "Pilih fail",
26453
26595
  takePhotoCaption: "Ambil gambar",
26454
26596
  photoPlaceholder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
@@ -26495,7 +26637,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
26495
26637
  // ok: "OK" => "OK"
26496
26638
  // cancel: "Cancel" => "Batal"
26497
26639
  // refuseItemText: "Refuse to answer" => "Enggan menjawab"
26498
- // dontKnowItemText: "Don't know" => "Tak tahu"
26640
+ // dontKnowItemText: "Don't know" => "Tak tahu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jawapan anda melebihi 64KB. Sila kurangkan saiz fail anda dan cuba lagi atau hubungi pemilik tinjauan."
26641
+ // signaturePlaceHolderReadOnly: "No signature" => "Tiada tandatangan"
26499
26642
 
26500
26643
 
26501
26644
  /***/ }),
@@ -26605,6 +26748,7 @@ var norwegianSurveyStrings = {
26605
26748
  savingData: "Resultatene lagres på serveren ...",
26606
26749
  savingDataError: "Det oppsto en feil, og vi kunne ikke lagre resultatene.",
26607
26750
  savingDataSuccess: "Resultatene ble lagret!",
26751
+ savingExceedSize: "Svaret ditt overstiger 64 kB. Reduser størrelsen på filen(e) din(e), og prøv på nytt, eller kontakt eieren av en spørreundersøkelse.",
26608
26752
  saveAgainButton: "Prøv igjen",
26609
26753
  timerMin: "min",
26610
26754
  timerSec: "sek",
@@ -26616,6 +26760,7 @@ var norwegianSurveyStrings = {
26616
26760
  timerLimitSurvey: "Du har tilbrakt {0} av {1} totalt.",
26617
26761
  clearCaption: "Klar",
26618
26762
  signaturePlaceHolder: "Logg inn her",
26763
+ signaturePlaceHolderReadOnly: "Ingen signatur",
26619
26764
  chooseFileCaption: "Velg Fil",
26620
26765
  takePhotoCaption: "Ta bilde",
26621
26766
  photoPlaceholder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
@@ -26672,7 +26817,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
26672
26817
  // ok: "OK" => "OK"
26673
26818
  // cancel: "Cancel" => "Annullere"
26674
26819
  // refuseItemText: "Refuse to answer" => "Nekter å svare"
26675
- // dontKnowItemText: "Don't know" => "Vet ikke"
26820
+ // dontKnowItemText: "Don't know" => "Vet ikke"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Svaret ditt overstiger 64 kB. Reduser størrelsen på filen(e) din(e), og prøv på nytt, eller kontakt eieren av en spørreundersøkelse."
26821
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
26676
26822
 
26677
26823
 
26678
26824
  /***/ }),
@@ -26758,6 +26904,7 @@ var persianSurveyStrings = {
26758
26904
  savingData: "نتایج در حال ذخیره سازی در سرور است",
26759
26905
  savingDataError: "خطایی در ذخیره سازی نتایج رخ داده است",
26760
26906
  savingDataSuccess: "نتایج با موفقیت ذخیره شد",
26907
+ savingExceedSize: "پاسخ شما بیش از 64KB است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید.",
26761
26908
  saveAgainButton: "مجدد تلاش کنید",
26762
26909
  timerMin: "دقیقه",
26763
26910
  timerSec: "ثانیه",
@@ -26769,6 +26916,7 @@ var persianSurveyStrings = {
26769
26916
  timerLimitSurvey: "شما مدت {0} از {1} را در مجموع سپری کرده اید.",
26770
26917
  clearCaption: "خالی کردن",
26771
26918
  signaturePlaceHolder: "اینجا را امضا کنید",
26919
+ signaturePlaceHolderReadOnly: "بدون امضا",
26772
26920
  chooseFileCaption: "انتخاب فایل",
26773
26921
  takePhotoCaption: "گرفتن عکس",
26774
26922
  photoPlaceholder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
@@ -26825,7 +26973,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
26825
26973
  // ok: "OK" => "باشه"
26826
26974
  // cancel: "Cancel" => "لغو"
26827
26975
  // refuseItemText: "Refuse to answer" => "امتناع از پاسخ دادن"
26828
- // dontKnowItemText: "Don't know" => "نمی دانم"
26976
+ // dontKnowItemText: "Don't know" => "نمی دانم"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "پاسخ شما بیش از 64KB است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید."
26977
+ // signaturePlaceHolderReadOnly: "No signature" => "بدون امضا"
26829
26978
 
26830
26979
 
26831
26980
  /***/ }),
@@ -26911,6 +27060,7 @@ var polishSurveyStrings = {
26911
27060
  savingData: "Zapisuję wyniki ankiety na serwerze...",
26912
27061
  savingDataError: "Wystąpił błąd i wyniki nie mogły zostać zapisane.",
26913
27062
  savingDataSuccess: "Wyniki zostały poprawnie zapisane!",
27063
+ savingExceedSize: "Twoja odpowiedź przekracza 64 KB. Zmniejsz rozmiar plików i spróbuj ponownie lub skontaktuj się z właścicielem ankiety.",
26914
27064
  saveAgainButton: "Spróbuj ponownie",
26915
27065
  timerMin: "min",
26916
27066
  timerSec: "sek",
@@ -26922,6 +27072,7 @@ var polishSurveyStrings = {
26922
27072
  timerLimitSurvey: "Spędziłeś {0} z {1}.",
26923
27073
  clearCaption: "Wyczyść",
26924
27074
  signaturePlaceHolder: "Podpisz tutaj",
27075
+ signaturePlaceHolderReadOnly: "Brak podpisu",
26925
27076
  chooseFileCaption: "Wybierz plik",
26926
27077
  takePhotoCaption: "Zrób zdjęcie",
26927
27078
  photoPlaceholder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
@@ -26966,7 +27117,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
26966
27117
  // ok: "OK" => "OK"
26967
27118
  // cancel: "Cancel" => "Anuluj"
26968
27119
  // refuseItemText: "Refuse to answer" => "Odmów odpowiedzi"
26969
- // dontKnowItemText: "Don't know" => "Nie wiem"
27120
+ // dontKnowItemText: "Don't know" => "Nie wiem"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Twoja odpowiedź przekracza 64 KB. Zmniejsz rozmiar plików i spróbuj ponownie lub skontaktuj się z właścicielem ankiety."
27121
+ // signaturePlaceHolderReadOnly: "No signature" => "Brak podpisu"
26970
27122
 
26971
27123
 
26972
27124
  /***/ }),
@@ -27055,6 +27207,7 @@ var portugueseBrSurveyStrings = {
27055
27207
  savingData: "Os resultados esto sendo salvos no servidor...",
27056
27208
  savingDataError: "Ocorreu um erro e não foi possível salvar os resultados.",
27057
27209
  savingDataSuccess: "Os resultados foram salvos com sucesso!",
27210
+ savingExceedSize: "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário.",
27058
27211
  saveAgainButton: "Tentar novamente",
27059
27212
  timerMin: "Min",
27060
27213
  timerSec: "segundo",
@@ -27066,6 +27219,7 @@ var portugueseBrSurveyStrings = {
27066
27219
  timerLimitSurvey: "Gastou {0} de {1} no total.",
27067
27220
  clearCaption: "Claro",
27068
27221
  signaturePlaceHolder: "Assine aqui",
27222
+ signaturePlaceHolderReadOnly: "Sem assinatura",
27069
27223
  chooseFileCaption: "Escolher arquivo",
27070
27224
  takePhotoCaption: "Tirar foto",
27071
27225
  photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
@@ -27169,7 +27323,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
27169
27323
  // ok: "OK" => "OKEY"
27170
27324
  // cancel: "Cancel" => "Cancelar"
27171
27325
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27172
- // dontKnowItemText: "Don't know" => "Não sei"
27326
+ // dontKnowItemText: "Don't know" => "Não sei"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário."
27327
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27173
27328
 
27174
27329
 
27175
27330
  /***/ }),
@@ -27255,6 +27410,7 @@ var portugueseSurveyStrings = {
27255
27410
  savingData: "Os resultados estão a ser guardados no servidor...",
27256
27411
  savingDataError: "Ocorreu um erro e não foi possível guardar os resultados.",
27257
27412
  savingDataSuccess: "Os resultados foram guardados com sucesso!",
27413
+ savingExceedSize: "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário.",
27258
27414
  saveAgainButton: "Tente novamente",
27259
27415
  timerMin: "min",
27260
27416
  timerSec: "seg",
@@ -27266,6 +27422,7 @@ var portugueseSurveyStrings = {
27266
27422
  timerLimitSurvey: "Você gastou {0} de {1} no total.",
27267
27423
  clearCaption: "Limpar",
27268
27424
  signaturePlaceHolder: "Assine aqui",
27425
+ signaturePlaceHolderReadOnly: "Sem assinatura",
27269
27426
  chooseFileCaption: "Escolher ficheiro",
27270
27427
  takePhotoCaption: "Tirar foto",
27271
27428
  photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
@@ -27307,7 +27464,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
27307
27464
  // ok: "OK" => "OKEY"
27308
27465
  // cancel: "Cancel" => "Cancelar"
27309
27466
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27310
- // dontKnowItemText: "Don't know" => "Não sei"
27467
+ // dontKnowItemText: "Don't know" => "Não sei"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário."
27468
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27311
27469
 
27312
27470
 
27313
27471
  /***/ }),
@@ -27393,6 +27551,7 @@ var romanianSurveyStrings = {
27393
27551
  savingData: "Rezultatele sunt în curs de salvare...",
27394
27552
  savingDataError: "A intervenit o eroare, rezultatele nu au putut fi salvate.",
27395
27553
  savingDataSuccess: "Rezultatele au fost salvate cu succes!",
27554
+ savingExceedSize: "Răspunsul tău depășește 64KB. Reduceți dimensiunea fișierelor și încercați din nou sau contactați un proprietar de sondaj.",
27396
27555
  saveAgainButton: "Încercați din nou",
27397
27556
  timerMin: "min",
27398
27557
  timerSec: "sec",
@@ -27404,6 +27563,7 @@ var romanianSurveyStrings = {
27404
27563
  timerLimitSurvey: "Ați petrecut {0} din {1} în total.",
27405
27564
  clearCaption: "clar",
27406
27565
  signaturePlaceHolder: "Semnează aici",
27566
+ signaturePlaceHolderReadOnly: "Fără semnătură",
27407
27567
  chooseFileCaption: "Alege fișierul",
27408
27568
  takePhotoCaption: "Faceți o fotografie",
27409
27569
  photoPlaceholder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
@@ -27460,7 +27620,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
27460
27620
  // ok: "OK" => "OK"
27461
27621
  // cancel: "Cancel" => "Anula"
27462
27622
  // refuseItemText: "Refuse to answer" => "Refuză să răspundă"
27463
- // dontKnowItemText: "Don't know" => "Nu ştiu"
27623
+ // dontKnowItemText: "Don't know" => "Nu ştiu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Răspunsul tău depășește 64KB. Reduceți dimensiunea fișierelor și încercați din nou sau contactați un proprietar de sondaj."
27624
+ // signaturePlaceHolderReadOnly: "No signature" => "Fără semnătură"
27464
27625
 
27465
27626
 
27466
27627
  /***/ }),
@@ -27546,6 +27707,7 @@ var russianSurveyStrings = {
27546
27707
  savingData: "Результаты сохраняются на сервер...",
27547
27708
  savingDataError: "Произошла ошибка, результат не был сохранён.",
27548
27709
  savingDataSuccess: "Результат успешно сохранён!",
27710
+ savingExceedSize: "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса.",
27549
27711
  saveAgainButton: "Попробовать снова",
27550
27712
  timerMin: "мин",
27551
27713
  timerSec: "сек",
@@ -27557,6 +27719,7 @@ var russianSurveyStrings = {
27557
27719
  timerLimitSurvey: "Вы потратили {0} из {1} для всего теста.",
27558
27720
  clearCaption: "Очистить",
27559
27721
  signaturePlaceHolder: "Подпишите здесь",
27722
+ signaturePlaceHolderReadOnly: "Без подписи",
27560
27723
  chooseFileCaption: "Выберите файл",
27561
27724
  takePhotoCaption: "Сделать фото",
27562
27725
  photoPlaceholder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
@@ -27597,7 +27760,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
27597
27760
  // noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event." => "Файлы не могут быть загружены. Пожалуйста, добавьте обработчик для события 'onUploadFiles'."
27598
27761
  // showDetails: "Show Details" => "Показать подробности"
27599
27762
  // hideDetails: "Hide Details" => "Скрыть подробности"
27600
- // cancel: "Cancel" => "Отмена"
27763
+ // cancel: "Cancel" => "Отмена"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса."
27764
+ // signaturePlaceHolderReadOnly: "No signature" => "Без подписи"
27601
27765
 
27602
27766
 
27603
27767
  /***/ }),
@@ -27683,6 +27847,7 @@ var serbianStrings = {
27683
27847
  savingData: "U toku je čuvanje podataka na serveru...",
27684
27848
  savingDataError: "Došlo je do greške i rezultati nisu sačuvani.",
27685
27849
  savingDataSuccess: "Rezultati su uspešno sačuvani!",
27850
+ savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovo ili se obratite vlasniku ankete.",
27686
27851
  saveAgainButton: "Pokušajte ponovo",
27687
27852
  timerMin: "min",
27688
27853
  timerSec: "sek",
@@ -27694,6 +27859,7 @@ var serbianStrings = {
27694
27859
  timerLimitSurvey: "Proveli ste {0} od {1} ukupno.",
27695
27860
  clearCaption: "Poništi",
27696
27861
  signaturePlaceHolder: "Potpišite ovde",
27862
+ signaturePlaceHolderReadOnly: "Bez potpisa",
27697
27863
  chooseFileCaption: "Izaberi fajl",
27698
27864
  takePhotoCaption: "Fotografisanje",
27699
27865
  photoPlaceholder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
@@ -27745,7 +27911,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
27745
27911
  // ok: "OK" => "U redu"
27746
27912
  // cancel: "Cancel" => "Otkaži"
27747
27913
  // refuseItemText: "Refuse to answer" => "Odbijanje odgovora"
27748
- // dontKnowItemText: "Don't know" => "Ne znam"
27914
+ // dontKnowItemText: "Don't know" => "Ne znam"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovo ili se obratite vlasniku ankete."
27915
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
27749
27916
 
27750
27917
 
27751
27918
  /***/ }),
@@ -27831,6 +27998,7 @@ var simplifiedChineseSurveyStrings = {
27831
27998
  savingData: "正在将结果保存到服务器...",
27832
27999
  savingDataError: "在保存结果过程中发生了错误,结果未能保存",
27833
28000
  savingDataSuccess: "结果保存成功!",
28001
+ savingExceedSize: "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。",
27834
28002
  saveAgainButton: "请重试",
27835
28003
  timerMin: "分",
27836
28004
  timerSec: "秒",
@@ -27842,6 +28010,7 @@ var simplifiedChineseSurveyStrings = {
27842
28010
  timerLimitSurvey: "总计用时 {0} 共 {1}.",
27843
28011
  clearCaption: "清除",
27844
28012
  signaturePlaceHolder: "在此签名",
28013
+ signaturePlaceHolderReadOnly: "无签名",
27845
28014
  chooseFileCaption: "选择文件",
27846
28015
  takePhotoCaption: "拍照",
27847
28016
  photoPlaceholder: "单击下面的按钮使用相机拍照。",
@@ -27892,7 +28061,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
27892
28061
  // ok: "OK" => "还行"
27893
28062
  // cancel: "Cancel" => "取消"
27894
28063
  // refuseItemText: "Refuse to answer" => "拒绝回答"
27895
- // dontKnowItemText: "Don't know" => "不知道"
28064
+ // dontKnowItemText: "Don't know" => "不知道"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。"
28065
+ // signaturePlaceHolderReadOnly: "No signature" => "无签名"
27896
28066
 
27897
28067
 
27898
28068
  /***/ }),
@@ -27978,6 +28148,7 @@ var slovakSurveyStrings = {
27978
28148
  savingData: "Výsledky sa ukladajú na server...",
27979
28149
  savingDataError: "V dôsledku chyby sa nepodarilo výsledky uložiť.",
27980
28150
  savingDataSuccess: "Výsledky sa úspešne uložili.",
28151
+ savingExceedSize: "Vaša odpoveď presahuje 64 kB. Zmenšite veľkosť svojich súborov a skúste to znova alebo kontaktujte vlastníka prieskumu.",
27981
28152
  saveAgainButton: "Skúste to znova",
27982
28153
  timerMin: "min",
27983
28154
  timerSec: "s",
@@ -27989,6 +28160,7 @@ var slovakSurveyStrings = {
27989
28160
  timerLimitSurvey: "Celkovo ste strávili {0} z {1}.",
27990
28161
  clearCaption: "Vymazať",
27991
28162
  signaturePlaceHolder: "Podpísať tu",
28163
+ signaturePlaceHolderReadOnly: "Bez podpisu",
27992
28164
  chooseFileCaption: "Vybrať súbor",
27993
28165
  takePhotoCaption: "Odfotiť",
27994
28166
  photoPlaceholder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
@@ -28035,7 +28207,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
28035
28207
  // ok: "OK" => "OK"
28036
28208
  // cancel: "Cancel" => "Zrušiť"
28037
28209
  // refuseItemText: "Refuse to answer" => "Odmietnuť odpovedať"
28038
- // dontKnowItemText: "Don't know" => "Neviem"
28210
+ // dontKnowItemText: "Don't know" => "Neviem"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaša odpoveď presahuje 64 kB. Zmenšite veľkosť svojich súborov a skúste to znova alebo kontaktujte vlastníka prieskumu."
28211
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
28039
28212
 
28040
28213
 
28041
28214
  /***/ }),
@@ -28121,6 +28294,7 @@ var spanishSurveyStrings = {
28121
28294
  savingData: "Los resultados se están guardando en el servidor...",
28122
28295
  savingDataError: "Los resultados se están guardando en el servidor...",
28123
28296
  savingDataSuccess: "¡Los resultados se guardaron con éxito!",
28297
+ savingExceedSize: "Su respuesta supera los 64 KB. Reduzca el tamaño de su(s) archivo(s) e inténtelo de nuevo o póngase en contacto con el propietario de una encuesta.",
28124
28298
  saveAgainButton: "Inténtalo de nuevo.",
28125
28299
  timerMin: "min",
28126
28300
  timerSec: "sec",
@@ -28132,6 +28306,7 @@ var spanishSurveyStrings = {
28132
28306
  timerLimitSurvey: "Usted ha gastado {0} de {1} en total.",
28133
28307
  clearCaption: "Borrar",
28134
28308
  signaturePlaceHolder: "Firma aqui",
28309
+ signaturePlaceHolderReadOnly: "Sin firma",
28135
28310
  chooseFileCaption: "Elija el archivo",
28136
28311
  takePhotoCaption: "Tomar foto",
28137
28312
  photoPlaceholder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
@@ -28176,7 +28351,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
28176
28351
  // ok: "OK" => "De acuerdo"
28177
28352
  // cancel: "Cancel" => "Cancelar"
28178
28353
  // refuseItemText: "Refuse to answer" => "Negarse a responder"
28179
- // dontKnowItemText: "Don't know" => "No sé"
28354
+ // dontKnowItemText: "Don't know" => "No sé"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Su respuesta supera los 64 KB. Reduzca el tamaño de su(s) archivo(s) e inténtelo de nuevo o póngase en contacto con el propietario de una encuesta."
28355
+ // signaturePlaceHolderReadOnly: "No signature" => "Sin firma"
28180
28356
 
28181
28357
 
28182
28358
  /***/ }),
@@ -28262,6 +28438,7 @@ var swahiliStrings = {
28262
28438
  savingData: "Matokeo yamehifadhiwa kwa seva...",
28263
28439
  savingDataError: "Kosa limetokea na hatukuweza kuhifadhi matokeo.",
28264
28440
  savingDataSuccess: "Matokeo yamehifadhiwa!",
28441
+ savingExceedSize: "Jibu lako ni zaidi ya 64KB. Tafadhali punguza ukubwa wa faili yako na jaribu tena au wasiliana na mmiliki wa utafiti.",
28265
28442
  saveAgainButton: "Jaribu tena",
28266
28443
  timerMin: "dakika",
28267
28444
  timerSec: "sekunde",
@@ -28273,6 +28450,7 @@ var swahiliStrings = {
28273
28450
  timerLimitSurvey: "Umetumia {0} ya {1} kwa jumla.",
28274
28451
  clearCaption: "Ondoa",
28275
28452
  signaturePlaceHolder: "Ingia hapa",
28453
+ signaturePlaceHolderReadOnly: "Hakuna saini",
28276
28454
  chooseFileCaption: "Chagua faili",
28277
28455
  takePhotoCaption: "Chukua Picha",
28278
28456
  photoPlaceholder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
@@ -28329,7 +28507,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
28329
28507
  // ok: "OK" => "Sawa kabisa"
28330
28508
  // cancel: "Cancel" => "Katisha"
28331
28509
  // refuseItemText: "Refuse to answer" => "Kukataa kujibu"
28332
- // dontKnowItemText: "Don't know" => "Sijui"
28510
+ // dontKnowItemText: "Don't know" => "Sijui"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jibu lako ni zaidi ya 64KB. Tafadhali punguza ukubwa wa faili yako na jaribu tena au wasiliana na mmiliki wa utafiti."
28511
+ // signaturePlaceHolderReadOnly: "No signature" => "Hakuna saini"
28333
28512
 
28334
28513
 
28335
28514
  /***/ }),
@@ -28415,6 +28594,7 @@ var swedishSurveyStrings = {
28415
28594
  savingData: "Resultaten sparas på servern ...",
28416
28595
  savingDataError: "Ett fel inträffade och vi kunde inte spara resultaten.",
28417
28596
  savingDataSuccess: "Resultaten lyckades sparas!",
28597
+ savingExceedSize: "Ditt svar överskrider 64 kB. Minska storleken på dina filer och försök igen eller kontakta en undersökningsägare.",
28418
28598
  saveAgainButton: "Försök igen",
28419
28599
  timerMin: "min",
28420
28600
  timerSec: "sek",
@@ -28426,6 +28606,7 @@ var swedishSurveyStrings = {
28426
28606
  timerLimitSurvey: "Du har spenderat {0} av {1} totalt.",
28427
28607
  clearCaption: "Klar",
28428
28608
  signaturePlaceHolder: "Signera här",
28609
+ signaturePlaceHolderReadOnly: "Ingen signatur",
28429
28610
  chooseFileCaption: "Välj fil",
28430
28611
  takePhotoCaption: "Ta foto",
28431
28612
  photoPlaceholder: "Klicka på knappen nedan för att ta ett foto med kameran.",
@@ -28470,7 +28651,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
28470
28651
  // ok: "OK" => "OKEJ"
28471
28652
  // cancel: "Cancel" => "Annullera"
28472
28653
  // refuseItemText: "Refuse to answer" => "Vägra svara"
28473
- // dontKnowItemText: "Don't know" => "Vet inte"
28654
+ // dontKnowItemText: "Don't know" => "Vet inte"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ditt svar överskrider 64 kB. Minska storleken på dina filer och försök igen eller kontakta en undersökningsägare."
28655
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
28474
28656
 
28475
28657
 
28476
28658
  /***/ }),
@@ -28663,6 +28845,7 @@ var teluguStrings = {
28663
28845
  savingData: "ఫలితాంశాలు సర్వర్లో సేవ్ అవుతున్నాయి",
28664
28846
  savingDataError: "ఒక లోపము సంభవించినది అందుకని ఫలితాంశాలను సేవ్ చేయలేకపోయాము ",
28665
28847
  savingDataSuccess: "ఫలితాంశాలను విజయవంతంగా సేవ్ చేసాము",
28848
+ savingExceedSize: "మీ ప్రతిస్పందన 64KBని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి.",
28666
28849
  saveAgainButton: "మళ్లీ ప్రయత్నించు",
28667
28850
  timerMin: "నిమిషాలు ",
28668
28851
  timerSec: "సెకండ్లు",
@@ -28674,6 +28857,7 @@ var teluguStrings = {
28674
28857
  timerLimitSurvey: " మొత్తంగా మీరు {1} లో {0} ని ఉపయోగించారు ",
28675
28858
  clearCaption: "స్పష్టమ్",
28676
28859
  signaturePlaceHolder: "ఇక్కడ సంతకం చేయండి",
28860
+ signaturePlaceHolderReadOnly: "సంతకం లేదు",
28677
28861
  chooseFileCaption: "ఫైల్ ఎంచుకోండి",
28678
28862
  takePhotoCaption: "ఫోటో తీసుకోండి",
28679
28863
  photoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
@@ -28730,7 +28914,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
28730
28914
  // hideDetails: "Hide Details" => "వివరాలను దాచండి"
28731
28915
  // ok: "OK" => "సరే"
28732
28916
  // cancel: "Cancel" => "రద్దు"// refuseItemText: "Refuse to answer" => "సమాధానం ఇవ్వడానికి నిరాకరించండి"
28733
- // dontKnowItemText: "Don't know" => "తెలియదు"
28917
+ // dontKnowItemText: "Don't know" => "తెలియదు"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "మీ ప్రతిస్పందన 64KBని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి."
28918
+ // signaturePlaceHolderReadOnly: "No signature" => "సంతకం లేదు"
28734
28919
 
28735
28920
 
28736
28921
  /***/ }),
@@ -28816,6 +29001,7 @@ var thaiStrings = {
28816
29001
  savingData: "ผลลัพท์กำลังบันทึกลงที่เซิร์ฟเวอร์...",
28817
29002
  savingDataError: "มีความผิดพลาดเกิดขึ้นส่งผลให้ไม่สามารถบันทึกผลได้",
28818
29003
  savingDataSuccess: "บันทึกสำเร็จแล้ว",
29004
+ savingExceedSize: "คําตอบของคุณเกิน 64KB โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ",
28819
29005
  saveAgainButton: "รบกวนลองอีกครั้ง",
28820
29006
  timerMin: "นาที",
28821
29007
  timerSec: "วินาที",
@@ -28827,6 +29013,7 @@ var thaiStrings = {
28827
29013
  timerLimitSurvey: "คุณใช้เวลา {0} ของ {1} รวมทั้งหมด",
28828
29014
  clearCaption: "เคลียร์",
28829
29015
  signaturePlaceHolder: "ลงชื่อที่นี่",
29016
+ signaturePlaceHolderReadOnly: "ไม่มีลายเซ็น",
28830
29017
  chooseFileCaption: "เลือกไฟล์",
28831
29018
  takePhotoCaption: "ถ่ายรูป",
28832
29019
  photoPlaceholder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
@@ -28882,7 +29069,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
28882
29069
  // hideDetails: "Hide Details" => "ซ่อนรายละเอียด"
28883
29070
  // ok: "OK" => "ตกลง, ได้"
28884
29071
  // cancel: "Cancel" => "ยกเลิก"// refuseItemText: "Refuse to answer" => "ปฏิเสธที่จะตอบ"
28885
- // dontKnowItemText: "Don't know" => "ไม่ทราบ"
29072
+ // dontKnowItemText: "Don't know" => "ไม่ทราบ"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "คําตอบของคุณเกิน 64KB โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ"
29073
+ // signaturePlaceHolderReadOnly: "No signature" => "ไม่มีลายเซ็น"
28886
29074
 
28887
29075
 
28888
29076
  /***/ }),
@@ -28968,6 +29156,7 @@ var traditionalChineseSurveyStrings = {
28968
29156
  savingData: "正在將結果保存到服務器...",
28969
29157
  savingDataError: "在保存結果過程中發生了錯誤,結果未能保存",
28970
29158
  savingDataSuccess: "結果保存成功!",
29159
+ savingExceedSize: "您的回復超過 64KB。請減小檔的大小,然後重試或聯繫調查擁有者。",
28971
29160
  saveAgainButton: "請重試",
28972
29161
  timerMin: "最小",
28973
29162
  timerSec: "秒",
@@ -28979,6 +29168,7 @@ var traditionalChineseSurveyStrings = {
28979
29168
  timerLimitSurvey: "您總共花費了{1}的{0}。",
28980
29169
  clearCaption: "清楚",
28981
29170
  signaturePlaceHolder: "在此簽名",
29171
+ signaturePlaceHolderReadOnly: "無簽名",
28982
29172
  chooseFileCaption: "選擇檔案",
28983
29173
  takePhotoCaption: "拍照",
28984
29174
  photoPlaceholder: "按下下面的按鈕使用相機拍照。",
@@ -29069,7 +29259,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
29069
29259
  // hideDetails: "Hide Details" => "隱藏詳細資訊"
29070
29260
  // ok: "OK" => "還行"
29071
29261
  // cancel: "Cancel" => "取消"// refuseItemText: "Refuse to answer" => "拒絕回答"
29072
- // dontKnowItemText: "Don't know" => "不知道"
29262
+ // dontKnowItemText: "Don't know" => "不知道"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "您的回復超過 64KB。請減小檔的大小,然後重試或聯繫調查擁有者。"
29263
+ // signaturePlaceHolderReadOnly: "No signature" => "無簽名"
29073
29264
 
29074
29265
 
29075
29266
  /***/ }),
@@ -29155,6 +29346,7 @@ var turkishSurveyStrings = {
29155
29346
  savingData: "Sonuçlar sunucuya kaydediliyor...",
29156
29347
  savingDataError: "Bir hata oluştu ve sonuçlar kaydedilemedi.",
29157
29348
  savingDataSuccess: "Sonuçlar başarıyla kaydedildi!",
29349
+ savingExceedSize: "Yanıtınız 64 KB'ı aşıyor. Lütfen dosyalarınızın boyutunu küçültün ve tekrar deneyin veya bir anket sahibiyle iletişime geçin.",
29158
29350
  saveAgainButton: "Tekrar deneyin",
29159
29351
  timerMin: "dakika",
29160
29352
  timerSec: "saniye",
@@ -29166,6 +29358,7 @@ var turkishSurveyStrings = {
29166
29358
  timerLimitSurvey: "Toplamda {0}/{1} harcadınız.",
29167
29359
  clearCaption: "Temizle",
29168
29360
  signaturePlaceHolder: "Burayı imzalayın",
29361
+ signaturePlaceHolderReadOnly: "İmza yok",
29169
29362
  chooseFileCaption: "Dosya seçin",
29170
29363
  takePhotoCaption: "Fotoğraf Çekin",
29171
29364
  photoPlaceholder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
@@ -29203,7 +29396,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
29203
29396
  // hideDetails: "Hide Details" => "Detayları Gizle"
29204
29397
  // ok: "OK" => "TAMAM"
29205
29398
  // cancel: "Cancel" => "İptal"// refuseItemText: "Refuse to answer" => "Cevap vermeyi reddet"
29206
- // dontKnowItemText: "Don't know" => "Bilmiyorum"
29399
+ // dontKnowItemText: "Don't know" => "Bilmiyorum"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Yanıtınız 64 KB'ı aşıyor. Lütfen dosyalarınızın boyutunu küçültün ve tekrar deneyin veya bir anket sahibiyle iletişime geçin."
29400
+ // signaturePlaceHolderReadOnly: "No signature" => "İmza yok"
29207
29401
 
29208
29402
 
29209
29403
  /***/ }),
@@ -29289,6 +29483,7 @@ var ukrainianSurveyStrings = {
29289
29483
  savingData: "Результати зберігаються на сервер...",
29290
29484
  savingDataError: "Відбулася помилка, результат не був збережений.",
29291
29485
  savingDataSuccess: "Резвультат успішно збережений!",
29486
+ savingExceedSize: "Ваша відповідь перевищує 64 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування.",
29292
29487
  saveAgainButton: "Спробувати знову",
29293
29488
  timerMin: "хв",
29294
29489
  timerSec: "сек",
@@ -29300,6 +29495,7 @@ var ukrainianSurveyStrings = {
29300
29495
  timerLimitSurvey: "Ви витратили {0} з {1} для всього тесту.",
29301
29496
  clearCaption: "Очистити",
29302
29497
  signaturePlaceHolder: "Підпишіться тут",
29498
+ signaturePlaceHolderReadOnly: "Без підпису",
29303
29499
  chooseFileCaption: "Виберіть файл",
29304
29500
  takePhotoCaption: "Зробити фото",
29305
29501
  photoPlaceholder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
@@ -29355,7 +29551,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
29355
29551
  // hideDetails: "Hide Details" => "Сховати подробиці"
29356
29552
  // ok: "OK" => "ГАРАЗД"
29357
29553
  // cancel: "Cancel" => "Скасувати"// refuseItemText: "Refuse to answer" => "Відмовтеся відповідати"
29358
- // dontKnowItemText: "Don't know" => "Не знаю"
29554
+ // dontKnowItemText: "Don't know" => "Не знаю"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваша відповідь перевищує 64 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування."
29555
+ // signaturePlaceHolderReadOnly: "No signature" => "Без підпису"
29359
29556
 
29360
29557
 
29361
29558
  /***/ }),
@@ -29441,6 +29638,7 @@ var vietnameseSurveyStrings = {
29441
29638
  savingData: "Kết quả đang lưu lại trên hệ thống...",
29442
29639
  savingDataError: "Có lỗi xảy ra và chúng ta không thể lưu kết quả.",
29443
29640
  savingDataSuccess: "Kết quả đã được lưu thành công!",
29641
+ savingExceedSize: "Phản hồi của bạn vượt quá 64KB. Vui lòng giảm kích thước (các) tệp của bạn và thử lại hoặc liên hệ với chủ sở hữu khảo sát.",
29444
29642
  saveAgainButton: "Thử lại",
29445
29643
  timerMin: "phút",
29446
29644
  timerSec: "giây",
@@ -29452,6 +29650,7 @@ var vietnameseSurveyStrings = {
29452
29650
  timerLimitSurvey: "Bạn đã sử dụng {0} / {1} trên toàn bộ.",
29453
29651
  clearCaption: "Xóa",
29454
29652
  signaturePlaceHolder: "Ký tên tại đây",
29653
+ signaturePlaceHolderReadOnly: "Không có chữ ký",
29455
29654
  chooseFileCaption: "Chọn tập tin",
29456
29655
  takePhotoCaption: "Chụp ảnh",
29457
29656
  photoPlaceholder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
@@ -29508,7 +29707,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
29508
29707
  // hideDetails: "Hide Details" => "Ẩn chi tiết"
29509
29708
  // ok: "OK" => "OK"
29510
29709
  // cancel: "Cancel" => "Hủy"// refuseItemText: "Refuse to answer" => "Từ chối trả lời"
29511
- // dontKnowItemText: "Don't know" => "Không biết"
29710
+ // dontKnowItemText: "Don't know" => "Không biết"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Phản hồi của bạn vượt quá 64KB. Vui lòng giảm kích thước (các) tệp của bạn và thử lại hoặc liên hệ với chủ sở hữu khảo sát."
29711
+ // signaturePlaceHolderReadOnly: "No signature" => "Không có chữ ký"
29512
29712
 
29513
29713
 
29514
29714
  /***/ }),
@@ -29594,6 +29794,7 @@ var welshSurveyStrings = {
29594
29794
  savingData: "Mae’r canlyniadau’n cael eu cadw ar y gweinydd...",
29595
29795
  savingDataError: "Roedd gwall a doedd dim modd cadw’r canlyniadau.",
29596
29796
  savingDataSuccess: "Wedi llwyddo i gadw’r canlyniadau!",
29797
+ savingExceedSize: "Mae eich ymateb yn fwy na 64KB. Lleihau maint eich ffeil(au) a cheisiwch eto neu cysylltwch â pherchennog yr arolwg.",
29597
29798
  saveAgainButton: "Rhowch gynnig arall arni",
29598
29799
  timerMin: "mun",
29599
29800
  timerSec: "eil",
@@ -29605,6 +29806,7 @@ var welshSurveyStrings = {
29605
29806
  timerLimitSurvey: "Rydych chi wedi treulio {0} o {1} gyda’i gilydd.",
29606
29807
  clearCaption: "Clirio",
29607
29808
  signaturePlaceHolder: "Arwydd yma",
29809
+ signaturePlaceHolderReadOnly: "Dim llofnod",
29608
29810
  chooseFileCaption: "Dewiswch ffeil ",
29609
29811
  takePhotoCaption: "Tynnu Llun",
29610
29812
  photoPlaceholder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
@@ -29660,7 +29862,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
29660
29862
  // hideDetails: "Hide Details" => "Manylion Cuddio"
29661
29863
  // ok: "OK" => "OCÊ"
29662
29864
  // cancel: "Cancel" => "Canslo"// refuseItemText: "Refuse to answer" => "Gwrthod ateb"
29663
- // dontKnowItemText: "Don't know" => "Ddim yn gwybod"
29865
+ // dontKnowItemText: "Don't know" => "Ddim yn gwybod"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Mae eich ymateb yn fwy na 64KB. Lleihau maint eich ffeil(au) a cheisiwch eto neu cysylltwch â pherchennog yr arolwg."
29866
+ // signaturePlaceHolderReadOnly: "No signature" => "Dim llofnod"
29664
29867
 
29665
29868
 
29666
29869
  /***/ }),
@@ -30253,17 +30456,12 @@ var InputMaskBase = /** @class */ (function (_super) {
30253
30456
  });
30254
30457
  return res;
30255
30458
  };
30256
- // public get maskedInputValue(): string {
30257
- // return this.input.value;
30258
- // }
30259
- // public get unmaskedInputValue(): string {
30260
- // return this.getUnmaskedValue(this.input.value, true);
30261
- // }
30262
30459
  InputMaskBase.prototype.processInput = function (args) {
30263
30460
  return { value: args.prevValue, caretPosition: args.selectionEnd, cancelPreventDefault: false };
30264
30461
  };
30265
30462
  InputMaskBase.prototype.getUnmaskedValue = function (src) { return src; };
30266
30463
  InputMaskBase.prototype.getMaskedValue = function (src) { return src; };
30464
+ InputMaskBase.prototype.getTextAlignment = function () { return "auto"; };
30267
30465
  __decorate([
30268
30466
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
30269
30467
  ], InputMaskBase.prototype, "saveMaskedValue", void 0);
@@ -31303,9 +31501,6 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31303
31501
  InputMaskNumeric.prototype.parseNumber = function (src) {
31304
31502
  var result = { integralPart: "", fractionalPart: "", hasDecimalSeparator: false, isNegative: false };
31305
31503
  var input = (src === undefined || src === null) ? "" : src.toString();
31306
- if (typeof src === "number") {
31307
- input = src.toString().replace(".", this.decimalSeparator);
31308
- }
31309
31504
  var minusCharCount = 0;
31310
31505
  for (var inputIndex = 0; inputIndex < input.length; inputIndex++) {
31311
31506
  var currentChar = input[inputIndex];
@@ -31345,8 +31540,7 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31345
31540
  };
31346
31541
  InputMaskNumeric.prototype.getNumberMaskedValue = function (src, matchWholeMask) {
31347
31542
  if (matchWholeMask === void 0) { matchWholeMask = false; }
31348
- var input = (src === undefined || src === null) ? "" : src;
31349
- var parsedNumber = this.parseNumber(input);
31543
+ var parsedNumber = this.parseNumber(src);
31350
31544
  if (!this.validateNumber(parsedNumber, matchWholeMask)) {
31351
31545
  return null;
31352
31546
  }
@@ -31357,8 +31551,13 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31357
31551
  var parsedNumber = this.parseNumber(str);
31358
31552
  return this.convertNumber(parsedNumber);
31359
31553
  };
31554
+ InputMaskNumeric.prototype.getTextAlignment = function () {
31555
+ return "right";
31556
+ };
31360
31557
  InputMaskNumeric.prototype.getMaskedValue = function (src) {
31361
- return this.getNumberMaskedValue(src, true);
31558
+ var input = (src === undefined || src === null) ? "" : src.toString();
31559
+ input = input.replace(".", this.decimalSeparator);
31560
+ return this.getNumberMaskedValue(input, true);
31362
31561
  };
31363
31562
  InputMaskNumeric.prototype.getUnmaskedValue = function (src) {
31364
31563
  return this.getNumberUnmaskedValue(src);
@@ -31689,8 +31888,8 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
31689
31888
 
31690
31889
  var MultiSelectListModel = /** @class */ (function (_super) {
31691
31890
  __extends(MultiSelectListModel, _super);
31692
- function MultiSelectListModel(items, onSelectionChanged, allowSelection, selectedItems, onFilterStringChangedCallback, elementId) {
31693
- var _this = _super.call(this, items, onSelectionChanged, allowSelection, undefined, onFilterStringChangedCallback, elementId) || this;
31891
+ function MultiSelectListModel(items, onSelectionChanged, allowSelection, selectedItems, elementId) {
31892
+ var _this = _super.call(this, items, onSelectionChanged, allowSelection, undefined, elementId) || this;
31694
31893
  _this.onItemClick = function (item) {
31695
31894
  if (_this.isItemDisabled(item))
31696
31895
  return;
@@ -31924,7 +32123,6 @@ var PageModel = /** @class */ (function (_super) {
31924
32123
  return _this.num + ". " + text;
31925
32124
  return text;
31926
32125
  };
31927
- _this.createLocalizableString("navigationTitle", _this, true);
31928
32126
  _this.createLocalizableString("navigationDescription", _this, true);
31929
32127
  _this.dragDropPageHelper = new _drag_drop_page_helper_v1__WEBPACK_IMPORTED_MODULE_3__["DragDropPageHelperV1"](_this);
31930
32128
  return _this;
@@ -31963,13 +32161,6 @@ var PageModel = /** @class */ (function (_super) {
31963
32161
  enumerable: false,
31964
32162
  configurable: true
31965
32163
  });
31966
- Object.defineProperty(PageModel.prototype, "locNavigationTitle", {
31967
- get: function () {
31968
- return this.getLocalizableString("navigationTitle");
31969
- },
31970
- enumerable: false,
31971
- configurable: true
31972
- });
31973
32164
  Object.defineProperty(PageModel.prototype, "navigationDescription", {
31974
32165
  /**
31975
32166
  * Explanatory text displayed under a navigation button in the progress bar. Applies when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar), `SurveyModel`'s [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is set to `"pages"`, and [`progressBarShowPageTitles`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarShowPageTitles) is `true`.
@@ -31991,16 +32182,12 @@ var PageModel = /** @class */ (function (_super) {
31991
32182
  configurable: true
31992
32183
  });
31993
32184
  PageModel.prototype.navigationLocStrChanged = function () {
32185
+ if (this.locNavigationTitle.isEmpty) {
32186
+ this.locTitle.strChanged();
32187
+ }
31994
32188
  this.locNavigationTitle.strChanged();
31995
32189
  this.locNavigationDescription.strChanged();
31996
32190
  };
31997
- Object.defineProperty(PageModel.prototype, "renderedNavigationTitle", {
31998
- get: function () {
31999
- return this.locNavigationTitle.renderedHtml || this.title || this.name;
32000
- },
32001
- enumerable: false,
32002
- configurable: true
32003
- });
32004
32191
  Object.defineProperty(PageModel.prototype, "passed", {
32005
32192
  get: function () {
32006
32193
  return this.getPropertyValue("passed", false);
@@ -32442,6 +32629,10 @@ var QuestionRowModel = /** @class */ (function (_super) {
32442
32629
  enumerable: false,
32443
32630
  configurable: true
32444
32631
  });
32632
+ QuestionRowModel.prototype.getIsAnimationAllowed = function () {
32633
+ var _a;
32634
+ return _super.prototype.getIsAnimationAllowed.call(this) && this.visible && ((_a = this.panel) === null || _a === void 0 ? void 0 : _a.animationAllowed);
32635
+ };
32445
32636
  QuestionRowModel.prototype.getVisibleElementsAnimationOptions = function () {
32446
32637
  var _this = this;
32447
32638
  var beforeRunAnimation = function (el) {
@@ -32449,7 +32640,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
32449
32640
  el.style.setProperty("--animation-width", Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["getElementWidth"])(el) + "px");
32450
32641
  };
32451
32642
  return {
32452
- isAnimationEnabled: function () { var _a; return _settings__WEBPACK_IMPORTED_MODULE_7__["settings"].animationEnabled && ((_a = _this.panel) === null || _a === void 0 ? void 0 : _a.animationAllowed) && _this.visible; },
32643
+ isAnimationEnabled: function () { return _this.animationAllowed; },
32453
32644
  getAnimatedElement: function (element) { return element.getWrapperElement(); },
32454
32645
  getLeaveOptions: function (element) {
32455
32646
  var surveyElement = element;
@@ -32598,7 +32789,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
32598
32789
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
32599
32790
  .append(this.panel.cssClasses.row)
32600
32791
  .append(this.panel.cssClasses.rowCompact, this.panel["isCompact"])
32601
- .append(this.panel.cssClasses.pageRow, this.panel.isPage || (!!this.panel.originalPage))
32792
+ .append(this.panel.cssClasses.pageRow, this.panel.isPage || this.panel.showPanelAsPage)
32602
32793
  .append(this.panel.cssClasses.rowMultiple, this.visibleElements.length > 1)
32603
32794
  .toString();
32604
32795
  };
@@ -32638,6 +32829,9 @@ var PanelModelBase = /** @class */ (function (_super) {
32638
32829
  _this.addExpressionProperty("enableIf", function (obj, res) { _this.readOnly = res === false; });
32639
32830
  _this.addExpressionProperty("requiredIf", function (obj, res) { _this.isRequired = res === true; });
32640
32831
  _this.createLocalizableString("requiredErrorText", _this);
32832
+ _this.createLocalizableString("navigationTitle", _this, true).onGetTextCallback = function (text) {
32833
+ return text || _this.title || _this.name;
32834
+ };
32641
32835
  _this.registerPropertyChangedHandlers(["questionTitleLocation"], function () {
32642
32836
  _this.onVisibleChanged.bind(_this);
32643
32837
  _this.updateElementCss(true);
@@ -32662,7 +32856,7 @@ var PanelModelBase = /** @class */ (function (_super) {
32662
32856
  el.style.setProperty("--animation-height", el.offsetHeight + "px");
32663
32857
  };
32664
32858
  return {
32665
- isAnimationEnabled: function () { return _settings__WEBPACK_IMPORTED_MODULE_7__["settings"].animationEnabled && _this.animationAllowed; },
32859
+ isAnimationEnabled: function () { return _this.animationAllowed; },
32666
32860
  getAnimatedElement: function (row) { return row.getRootElement(); },
32667
32861
  getLeaveOptions: function (_) {
32668
32862
  return { cssClass: _this.cssClasses.rowFadeOut,
@@ -32699,14 +32893,14 @@ var PanelModelBase = /** @class */ (function (_super) {
32699
32893
  return "panelbase";
32700
32894
  };
32701
32895
  PanelModelBase.prototype.setSurveyImpl = function (value, isLight) {
32702
- this.animationAllowed = false;
32896
+ this.blockAnimations();
32703
32897
  _super.prototype.setSurveyImpl.call(this, value, isLight);
32704
32898
  if (this.isDesignMode)
32705
32899
  this.onVisibleChanged();
32706
32900
  for (var i = 0; i < this.elements.length; i++) {
32707
32901
  this.elements[i].setSurveyImpl(value, isLight);
32708
32902
  }
32709
- this.animationAllowed = true;
32903
+ this.releaseAnimations();
32710
32904
  };
32711
32905
  PanelModelBase.prototype.endLoadingFromJson = function () {
32712
32906
  _super.prototype.endLoadingFromJson.call(this);
@@ -32754,9 +32948,22 @@ var PanelModelBase = /** @class */ (function (_super) {
32754
32948
  this.elements[i].locStrsChanged();
32755
32949
  }
32756
32950
  };
32951
+ PanelModelBase.prototype.getMarkdownHtml = function (text, name) {
32952
+ if (name === "navigationTitle" && this.locNavigationTitle.isEmpty) {
32953
+ return this.locTitle.renderedHtml || this.name;
32954
+ }
32955
+ return _super.prototype.getMarkdownHtml.call(this, text, name);
32956
+ };
32957
+ Object.defineProperty(PanelModelBase.prototype, "locNavigationTitle", {
32958
+ get: function () {
32959
+ return this.getLocalizableString("navigationTitle");
32960
+ },
32961
+ enumerable: false,
32962
+ configurable: true
32963
+ });
32757
32964
  Object.defineProperty(PanelModelBase.prototype, "renderedNavigationTitle", {
32758
32965
  get: function () {
32759
- return this.title || this.name;
32966
+ return this.locNavigationTitle.renderedHtml;
32760
32967
  },
32761
32968
  enumerable: false,
32762
32969
  configurable: true
@@ -33521,13 +33728,13 @@ var PanelModelBase = /** @class */ (function (_super) {
33521
33728
  return new QuestionRowModel(this);
33522
33729
  };
33523
33730
  PanelModelBase.prototype.onSurveyLoad = function () {
33524
- this.animationAllowed = false;
33731
+ this.blockAnimations();
33525
33732
  _super.prototype.onSurveyLoad.call(this);
33526
33733
  for (var i = 0; i < this.elements.length; i++) {
33527
33734
  this.elements[i].onSurveyLoad();
33528
33735
  }
33529
33736
  this.onElementVisibilityChanged(this);
33530
- this.animationAllowed = true;
33737
+ this.releaseAnimations();
33531
33738
  };
33532
33739
  PanelModelBase.prototype.onFirstRendering = function () {
33533
33740
  _super.prototype.onFirstRendering.call(this);
@@ -33561,9 +33768,9 @@ var PanelModelBase = /** @class */ (function (_super) {
33561
33768
  PanelModelBase.prototype.onRowsChanged = function () {
33562
33769
  if (this.isLoadingFromJson)
33563
33770
  return;
33564
- this.animationAllowed = false;
33771
+ this.blockAnimations();
33565
33772
  this.setArrayPropertyDirectly("rows", this.buildRows());
33566
- this.animationAllowed = true;
33773
+ this.releaseAnimations();
33567
33774
  };
33568
33775
  PanelModelBase.prototype.blockRowsUpdates = function () {
33569
33776
  this.locCountRowUpdates++;
@@ -36309,6 +36516,7 @@ var PopupDropdownViewModel = /** @class */ (function (_super) {
36309
36516
  this.resizeEventCallback();
36310
36517
  }
36311
36518
  _global_variables_utils__WEBPACK_IMPORTED_MODULE_6__["DomWindowHelper"].addEventListener("scroll", this.scrollEventCallBack);
36519
+ this._isPositionSetValue = true;
36312
36520
  };
36313
36521
  Object.defineProperty(PopupDropdownViewModel.prototype, "shouldCreateResizeCallback", {
36314
36522
  get: function () {
@@ -37049,6 +37257,7 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37049
37257
  if (!val) {
37050
37258
  _this.updateOnHiding();
37051
37259
  _this.updateIsVisible(val);
37260
+ _this._isPositionSetValue = false;
37052
37261
  }
37053
37262
  else {
37054
37263
  _this.updateIsVisible(val);
@@ -37059,6 +37268,7 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37059
37268
  _this.onModelIsVisibleChangedCallback = function () {
37060
37269
  _this.isVisible = _this.model.isVisible;
37061
37270
  };
37271
+ _this._isPositionSetValue = false;
37062
37272
  _this.model = model;
37063
37273
  _this.locale = _this.model.locale;
37064
37274
  return _this;
@@ -37296,12 +37506,20 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37296
37506
  this.focusContainer();
37297
37507
  }
37298
37508
  };
37509
+ Object.defineProperty(PopupBaseViewModel.prototype, "isPositionSet", {
37510
+ get: function () {
37511
+ return this._isPositionSetValue;
37512
+ },
37513
+ enumerable: false,
37514
+ configurable: true
37515
+ });
37299
37516
  PopupBaseViewModel.prototype.updateOnShowing = function () {
37300
37517
  this.prevActiveElement = _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].environment.root.activeElement;
37301
37518
  if (this.isOverlay) {
37302
37519
  this.resetDimensionsAndPositionStyleProperties();
37303
37520
  }
37304
37521
  this.switchFocus();
37522
+ this._isPositionSetValue = true;
37305
37523
  };
37306
37524
  PopupBaseViewModel.prototype.updateOnHiding = function () {
37307
37525
  if (this.isFocusedContent && this.prevActiveElement) {
@@ -38474,8 +38692,7 @@ var Question = /** @class */ (function (_super) {
38474
38692
  };
38475
38693
  Question.prototype.runTriggers = function (name, value) {
38476
38694
  var _this = this;
38477
- if (this.isReadOnly || this.isSettingQuestionValue ||
38478
- (this.parentQuestion && this.parentQuestion.getValueName() === name))
38695
+ if (this.isSettingQuestionValue || (this.parentQuestion && this.parentQuestion.getValueName() === name))
38479
38696
  return;
38480
38697
  this.triggersInfo.forEach(function (info) {
38481
38698
  _this.runTriggerInfo(info, name, value);
@@ -39693,6 +39910,7 @@ var Question = /** @class */ (function (_super) {
39693
39910
  configurable: true
39694
39911
  });
39695
39912
  Question.prototype.getFilteredValue = function () { return this.value; };
39913
+ Question.prototype.getFilteredName = function () { return this.getValueName(); };
39696
39914
  Object.defineProperty(Question.prototype, "valueForSurvey", {
39697
39915
  get: function () {
39698
39916
  if (!!this.valueToDataCallback) {
@@ -40295,7 +40513,7 @@ var Question = /** @class */ (function (_super) {
40295
40513
  };
40296
40514
  Question.prototype.addConditionObjectsByContext = function (objects, context) {
40297
40515
  objects.push({
40298
- name: this.getValueName(),
40516
+ name: this.getFilteredName(),
40299
40517
  text: this.processedTitle,
40300
40518
  question: this,
40301
40519
  });
@@ -43337,17 +43555,19 @@ var QuestionSelectBase = /** @class */ (function (_super) {
43337
43555
  .append(this.cssClasses.itemInline, !this.hasColumns && this.colCount === 0)
43338
43556
  .append("sv-q-col-" + this.getCurrentColCount(), !this.hasColumns && this.colCount !== 0)
43339
43557
  .append(this.cssClasses.itemOnError, this.hasCssError());
43340
- var isDisabled = this.isReadOnly || !item.isEnabled;
43558
+ var readOnlyStyles = this.getIsDisableAndReadOnlyStyles(!item.isEnabled);
43559
+ var isReadOnly = readOnlyStyles[0];
43560
+ var isDisabled = readOnlyStyles[1];
43341
43561
  var isChecked = this.isItemSelected(item) ||
43342
43562
  (this.isOtherSelected && this.otherItem.value === item.value);
43343
43563
  var allowHover = !isDisabled && !isChecked && !(!!this.survey && this.survey.isDesignMode);
43344
43564
  var isNone = item === this.noneItem;
43345
- options.isDisabled = isDisabled;
43565
+ options.isDisabled = isDisabled || isReadOnly;
43346
43566
  options.isChecked = isChecked;
43347
43567
  options.isNone = isNone;
43348
43568
  return builder
43349
- .append(this.cssClasses.itemDisabled, this.isDisabledStyle)
43350
- .append(this.cssClasses.itemReadOnly, this.isReadOnlyStyle)
43569
+ .append(this.cssClasses.itemDisabled, isDisabled)
43570
+ .append(this.cssClasses.itemReadOnly, isReadOnly)
43351
43571
  .append(this.cssClasses.itemPreview, this.isPreviewStyle)
43352
43572
  .append(this.cssClasses.itemChecked, isChecked)
43353
43573
  .append(this.cssClasses.itemHover, allowHover)
@@ -44844,6 +45064,13 @@ var QuestionCheckboxModel = /** @class */ (function (_super) {
44844
45064
  enumerable: false,
44845
45065
  configurable: true
44846
45066
  });
45067
+ QuestionCheckboxModel.prototype.getFilteredName = function () {
45068
+ var res = _super.prototype.getFilteredName.call(this);
45069
+ if (this.hasFilteredValue) {
45070
+ res += "-unwrapped";
45071
+ }
45072
+ return res;
45073
+ };
44847
45074
  QuestionCheckboxModel.prototype.getFilteredValue = function () {
44848
45075
  if (this.hasFilteredValue)
44849
45076
  return this.renderedValue;
@@ -47086,7 +47313,13 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
47086
47313
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: "" })
47087
47314
  ], QuestionDropdownModel.prototype, "readOnlyText", void 0);
47088
47315
  __decorate([
47089
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
47316
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({
47317
+ onSet: function (newValue, target) {
47318
+ if (!!target.dropdownListModel) {
47319
+ target.dropdownListModel.setChoicesLazyLoadEnabled(newValue);
47320
+ }
47321
+ }
47322
+ })
47090
47323
  ], QuestionDropdownModel.prototype, "choicesLazyLoadEnabled", void 0);
47091
47324
  __decorate([
47092
47325
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
@@ -47987,6 +48220,7 @@ var QuestionFileModel = /** @class */ (function (_super) {
47987
48220
  }
47988
48221
  };
47989
48222
  _this.createLocalizableString("takePhotoCaption", _this, false, true);
48223
+ _this.createLocalizableString("clearCaption", _this, false, true);
47990
48224
  _this.actionsContainer = new _actions_container__WEBPACK_IMPORTED_MODULE_7__["ActionContainer"]();
47991
48225
  _this.actionsContainer.locOwner = _this;
47992
48226
  _this.fileIndexAction = new _actions_action__WEBPACK_IMPORTED_MODULE_8__["Action"]({
@@ -48063,7 +48297,7 @@ var QuestionFileModel = /** @class */ (function (_super) {
48063
48297
  iconName: "icon-clear",
48064
48298
  id: "sv-file-clean",
48065
48299
  iconSize: "auto",
48066
- title: new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () { return _this.clearButtonCaption; }),
48300
+ locTitle: _this.locClearButtonCaption,
48067
48301
  showTitle: false,
48068
48302
  enabledIf: function () { return !_this.isInputReadOnly; },
48069
48303
  innerCss: new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () { return _this.cssClasses.removeButton; }),
@@ -48375,6 +48609,23 @@ var QuestionFileModel = /** @class */ (function (_super) {
48375
48609
  enumerable: false,
48376
48610
  configurable: true
48377
48611
  });
48612
+ Object.defineProperty(QuestionFileModel.prototype, "clearButtonCaption", {
48613
+ get: function () {
48614
+ return this.getLocalizableStringText("clearCaption");
48615
+ },
48616
+ set: function (value) {
48617
+ this.setLocalizableStringText("clearCaption", value);
48618
+ },
48619
+ enumerable: false,
48620
+ configurable: true
48621
+ });
48622
+ Object.defineProperty(QuestionFileModel.prototype, "locClearButtonCaption", {
48623
+ get: function () {
48624
+ return this.getLocalizableString("clearCaption");
48625
+ },
48626
+ enumerable: false,
48627
+ configurable: true
48628
+ });
48378
48629
  Object.defineProperty(QuestionFileModel.prototype, "locRenderedPlaceholder", {
48379
48630
  get: function () {
48380
48631
  var _this = this;
@@ -48950,9 +49201,6 @@ var QuestionFileModel = /** @class */ (function (_super) {
48950
49201
  __decorate([
48951
49202
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "replaceFileCaption" } })
48952
49203
  ], QuestionFileModel.prototype, "replaceButtonCaption", void 0);
48953
- __decorate([
48954
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "clearCaption" } })
48955
- ], QuestionFileModel.prototype, "clearButtonCaption", void 0);
48956
49204
  __decorate([
48957
49205
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "removeFileCaption" } })
48958
49206
  ], QuestionFileModel.prototype, "removeFileCaption", void 0);
@@ -49974,6 +50222,9 @@ var QuestionImagePickerModel = /** @class */ (function (_super) {
49974
50222
  QuestionImagePickerModel.prototype.needResponsiveness = function () {
49975
50223
  return this.supportResponsiveness() && this.isDefaultV2Theme;
49976
50224
  };
50225
+ QuestionImagePickerModel.prototype.needResponsiveWidth = function () {
50226
+ return this.colCount > 2;
50227
+ };
49977
50228
  QuestionImagePickerModel.prototype.getCurrentColCount = function () {
49978
50229
  if (this.responsiveColCount === undefined || this.colCount === 0) {
49979
50230
  return this.colCount;
@@ -50205,6 +50456,9 @@ var MatrixRowModel = /** @class */ (function (_super) {
50205
50456
  if (_this.data)
50206
50457
  _this.data.onMatrixRowChanged(_this);
50207
50458
  });
50459
+ if (_this.data && _this.data.hasErrorInRow(_this)) {
50460
+ _this.hasError = true;
50461
+ }
50208
50462
  return _this;
50209
50463
  }
50210
50464
  Object.defineProperty(MatrixRowModel.prototype, "name", {
@@ -50255,11 +50509,21 @@ var MatrixRowModel = /** @class */ (function (_super) {
50255
50509
  enumerable: false,
50256
50510
  configurable: true
50257
50511
  });
50512
+ Object.defineProperty(MatrixRowModel.prototype, "hasError", {
50513
+ get: function () {
50514
+ return this.getPropertyValue("hasError", false);
50515
+ },
50516
+ set: function (val) {
50517
+ this.setPropertyValue("hasError", val);
50518
+ },
50519
+ enumerable: false,
50520
+ configurable: true
50521
+ });
50258
50522
  Object.defineProperty(MatrixRowModel.prototype, "rowClasses", {
50259
50523
  get: function () {
50260
50524
  var cssClasses = this.data.cssClasses;
50261
50525
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_11__["CssClassBuilder"]().append(cssClasses.row)
50262
- .append(cssClasses.rowError, this.data.hasErrorInRow(this))
50526
+ .append(cssClasses.rowError, this.hasError)
50263
50527
  .append(cssClasses.rowReadOnly, this.isReadOnly)
50264
50528
  .append(cssClasses.rowDisabled, this.data.isDisabledStyle)
50265
50529
  .toString();
@@ -50585,7 +50849,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
50585
50849
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_11__["CssClassBuilder"]()
50586
50850
  .append(css.cell, hasCellText)
50587
50851
  .append(hasCellText ? css.cellText : css.label)
50588
- .append(css.itemOnError, !hasCellText && (this.isAllRowRequired ? this.hasErrorInRow(row) : this.hasCssError()))
50852
+ .append(css.itemOnError, !hasCellText && (this.isAllRowRequired || this.eachRowUnique ? row.hasError : this.hasCssError()))
50589
50853
  .append(hasCellText ? css.cellTextSelected : css.itemChecked, isChecked)
50590
50854
  .append(hasCellText ? css.cellTextDisabled : css.itemDisabled, this.isDisabledStyle)
50591
50855
  .append(hasCellText ? css.cellTextReadOnly : css.itemReadOnly, this.isReadOnlyStyle)
@@ -50715,72 +50979,76 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
50715
50979
  return loc ? loc : this.emptyLocalizableString;
50716
50980
  };
50717
50981
  QuestionMatrixModel.prototype.supportGoNextPageAutomatic = function () {
50718
- return this.isMouseDown === true && this.hasValuesInAllRows(false);
50982
+ return this.isMouseDown === true && this.hasValuesInAllRows();
50719
50983
  };
50720
50984
  QuestionMatrixModel.prototype.onCheckForErrors = function (errors, isOnValueChanged) {
50721
50985
  _super.prototype.onCheckForErrors.call(this, errors, isOnValueChanged);
50722
- this.errorsInRow = undefined;
50723
50986
  if (!isOnValueChanged || this.hasCssError()) {
50724
- if (this.hasErrorAllRowsRequired()) {
50987
+ var rowsErrors = { noValue: false, isNotUnique: false };
50988
+ this.checkErrorsAllRows(true, rowsErrors);
50989
+ if (rowsErrors.noValue) {
50725
50990
  errors.push(new _error__WEBPACK_IMPORTED_MODULE_6__["RequiredInAllRowsError"](null, this));
50726
50991
  }
50727
- if (this.hasErrorEachRowUnique()) {
50992
+ if (rowsErrors.isNotUnique) {
50728
50993
  errors.push(new _error__WEBPACK_IMPORTED_MODULE_6__["EachRowUniqueError"](null, this));
50729
50994
  }
50730
50995
  }
50731
50996
  };
50732
- QuestionMatrixModel.prototype.hasErrorAllRowsRequired = function () {
50733
- return this.isAllRowRequired && !this.hasValuesInAllRows(true);
50734
- };
50735
- QuestionMatrixModel.prototype.hasErrorEachRowUnique = function () {
50736
- return this.eachRowUnique && this.hasNonUniqueValueInRow();
50997
+ QuestionMatrixModel.prototype.hasValuesInAllRows = function () {
50998
+ var rowsErrors = { noValue: false, isNotUnique: false };
50999
+ this.checkErrorsAllRows(false, rowsErrors, true);
51000
+ return !rowsErrors.noValue;
50737
51001
  };
50738
- QuestionMatrixModel.prototype.hasValuesInAllRows = function (addError) {
51002
+ QuestionMatrixModel.prototype.checkErrorsAllRows = function (modifyErrors, res, allRowsRequired) {
51003
+ var _this = this;
50739
51004
  var rows = this.generatedVisibleRows;
50740
51005
  if (!rows)
50741
51006
  rows = this.visibleRows;
50742
51007
  if (!rows)
50743
- return true;
50744
- var res = true;
50745
- for (var i = 0; i < rows.length; i++) {
50746
- var row = rows[i];
50747
- var hasValue = !this.isValueEmpty(row.value);
50748
- if (addError && !hasValue) {
50749
- this.addErrorIntoRow(row);
50750
- }
50751
- res = res && hasValue;
51008
+ return;
51009
+ var rowsRequired = this.isAllRowRequired || allRowsRequired;
51010
+ var rowsUnique = this.eachRowUnique;
51011
+ res.noValue = false;
51012
+ res.isNotUnique = false;
51013
+ if (modifyErrors) {
51014
+ this.errorsInRow = undefined;
50752
51015
  }
50753
- return res;
50754
- };
50755
- QuestionMatrixModel.prototype.hasNonUniqueValueInRow = function () {
50756
- var rows = this.generatedVisibleRows;
50757
- if (!rows)
50758
- rows = this.visibleRows;
50759
- if (!rows)
50760
- return false;
51016
+ if (!rowsRequired && !rowsUnique)
51017
+ return;
50761
51018
  var hash = {};
50762
- var res = true;
50763
51019
  for (var i = 0; i < rows.length; i++) {
50764
51020
  var val = rows[i].value;
50765
51021
  var isEmpty = this.isValueEmpty(val);
50766
- var isUnique = isEmpty || hash[val] !== true;
50767
- if (!isUnique) {
51022
+ var isNotUnique = rowsUnique && (!isEmpty && hash[val] === true);
51023
+ isEmpty = isEmpty && rowsRequired;
51024
+ if (modifyErrors && (isEmpty || isNotUnique)) {
50768
51025
  this.addErrorIntoRow(rows[i]);
50769
51026
  }
50770
- res = res && isUnique;
50771
51027
  if (!isEmpty) {
50772
51028
  hash[val] = true;
50773
51029
  }
51030
+ res.noValue = res.noValue || isEmpty;
51031
+ res.isNotUnique = res.isNotUnique || isNotUnique;
51032
+ }
51033
+ if (modifyErrors) {
51034
+ rows.forEach(function (row) {
51035
+ row.hasError = _this.hasErrorInRow(row);
51036
+ });
50774
51037
  }
50775
- return !res;
50776
51038
  };
50777
51039
  QuestionMatrixModel.prototype.addErrorIntoRow = function (row) {
50778
51040
  if (!this.errorsInRow)
50779
51041
  this.errorsInRow = {};
50780
51042
  this.errorsInRow[row.name] = true;
51043
+ row.hasError = true;
51044
+ };
51045
+ QuestionMatrixModel.prototype.refreshRowsErrors = function () {
51046
+ if (!this.errorsInRow)
51047
+ return;
51048
+ this.checkErrorsAllRows(true, { noValue: false, isNotUnique: false });
50781
51049
  };
50782
51050
  QuestionMatrixModel.prototype.getIsAnswered = function () {
50783
- return _super.prototype.getIsAnswered.call(this) && this.hasValuesInAllRows(false);
51051
+ return _super.prototype.getIsAnswered.call(this) && this.hasValuesInAllRows();
50784
51052
  };
50785
51053
  QuestionMatrixModel.prototype.createMatrixRow = function (item, fullName, value) {
50786
51054
  var row = new MatrixRowModel(item, fullName, this, value);
@@ -50809,6 +51077,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
50809
51077
  this.generatedVisibleRows[i].setValueDirectly(rowVal);
50810
51078
  }
50811
51079
  }
51080
+ this.refreshRowsErrors();
50812
51081
  this.updateIsAnswered();
50813
51082
  this.isRowChanging = false;
50814
51083
  };
@@ -55063,6 +55332,7 @@ __webpack_require__.r(__webpack_exports__);
55063
55332
  /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
55064
55333
  /* harmony import */ var _actions_container__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./actions/container */ "./src/actions/container.ts");
55065
55334
  /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
55335
+ /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
55066
55336
  var __extends = (undefined && undefined.__extends) || (function () {
55067
55337
  var extendStatics = function (d, b) {
55068
55338
  extendStatics = Object.setPrototypeOf ||
@@ -55097,6 +55367,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
55097
55367
 
55098
55368
 
55099
55369
 
55370
+
55100
55371
  var QuestionMatrixDropdownRenderedCell = /** @class */ (function () {
55101
55372
  function QuestionMatrixDropdownRenderedCell() {
55102
55373
  this.minWidth = "";
@@ -55321,6 +55592,12 @@ var QuestionMatrixDropdownRenderedRow = /** @class */ (function (_super) {
55321
55592
  enumerable: false,
55322
55593
  configurable: true
55323
55594
  });
55595
+ QuestionMatrixDropdownRenderedRow.prototype.setRootElement = function (val) {
55596
+ this.rootElement = val;
55597
+ };
55598
+ QuestionMatrixDropdownRenderedRow.prototype.getRootElement = function () {
55599
+ return this.rootElement;
55600
+ };
55324
55601
  QuestionMatrixDropdownRenderedRow.counter = 1;
55325
55602
  __decorate([
55326
55603
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
@@ -55379,10 +55656,53 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
55379
55656
  var _this = _super.call(this) || this;
55380
55657
  _this.matrix = matrix;
55381
55658
  _this.renderedRowsChangedCallback = function () { };
55659
+ _this._renderedRows = [];
55660
+ _this.renderedRowsAnimation = new _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"](_this.getRenderedRowsAnimationOptions(), function (val) {
55661
+ _this._renderedRows = val;
55662
+ _this.renderedRowsChangedCallback();
55663
+ }, function () { return _this._renderedRows; });
55382
55664
  _this.hasActionCellInRowsValues = {};
55383
55665
  _this.build();
55384
55666
  return _this;
55385
55667
  }
55668
+ QuestionMatrixDropdownRenderedTable.prototype.getIsAnimationAllowed = function () {
55669
+ return _super.prototype.getIsAnimationAllowed.call(this) && this.matrix.animationAllowed;
55670
+ };
55671
+ QuestionMatrixDropdownRenderedTable.prototype.getRenderedRowsAnimationOptions = function () {
55672
+ var _this = this;
55673
+ var beforeAnimationRun = function (el) {
55674
+ el.querySelectorAll(":scope > td > *").forEach(function (el) {
55675
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
55676
+ });
55677
+ };
55678
+ return {
55679
+ isAnimationEnabled: function () {
55680
+ return _this.animationAllowed;
55681
+ },
55682
+ getAnimatedElement: function (el) {
55683
+ return el.getRootElement();
55684
+ },
55685
+ getLeaveOptions: function () {
55686
+ return { cssClass: _this.cssClasses.rowFadeOut, onBeforeRunAnimation: beforeAnimationRun };
55687
+ },
55688
+ getEnterOptions: function () {
55689
+ return { cssClass: _this.cssClasses.rowFadeIn, onBeforeRunAnimation: beforeAnimationRun };
55690
+ }
55691
+ };
55692
+ };
55693
+ QuestionMatrixDropdownRenderedTable.prototype.updateRenderedRows = function () {
55694
+ this.renderedRows = this.rows;
55695
+ };
55696
+ Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "renderedRows", {
55697
+ get: function () {
55698
+ return this._renderedRows;
55699
+ },
55700
+ set: function (val) {
55701
+ this.renderedRowsAnimation.sync(val);
55702
+ },
55703
+ enumerable: false,
55704
+ configurable: true
55705
+ });
55386
55706
  Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "showTable", {
55387
55707
  get: function () {
55388
55708
  return this.getPropertyValue("showTable", true);
@@ -55697,10 +56017,12 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
55697
56017
  }
55698
56018
  };
55699
56019
  QuestionMatrixDropdownRenderedTable.prototype.buildRows = function () {
56020
+ this.blockAnimations();
55700
56021
  var rows = this.matrix.isColumnLayoutHorizontal
55701
56022
  ? this.buildHorizontalRows()
55702
56023
  : this.buildVerticalRows();
55703
56024
  this.rows = rows;
56025
+ this.releaseAnimations();
55704
56026
  };
55705
56027
  QuestionMatrixDropdownRenderedTable.prototype.hasActionCellInRows = function (location) {
55706
56028
  if (this.hasActionCellInRowsValues[location] === undefined) {
@@ -56218,9 +56540,16 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
56218
56540
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])({
56219
56541
  onPush: function (_, i, target) {
56220
56542
  target.renderedRowsChangedCallback();
56543
+ target.updateRenderedRows();
56221
56544
  },
56545
+ onRemove: function (_, i, target) {
56546
+ target.updateRenderedRows();
56547
+ }
56222
56548
  })
56223
56549
  ], QuestionMatrixDropdownRenderedTable.prototype, "rows", void 0);
56550
+ __decorate([
56551
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])()
56552
+ ], QuestionMatrixDropdownRenderedTable.prototype, "_renderedRows", void 0);
56224
56553
  return QuestionMatrixDropdownRenderedTable;
56225
56554
  }(_base__WEBPACK_IMPORTED_MODULE_1__["Base"]));
56226
56555
 
@@ -58618,6 +58947,7 @@ __webpack_require__.r(__webpack_exports__);
58618
58947
  /* harmony import */ var _actions_action__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./actions/action */ "./src/actions/action.ts");
58619
58948
  /* harmony import */ var _base__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./base */ "./src/base.ts");
58620
58949
  /* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./actions/adaptive-container */ "./src/actions/adaptive-container.ts");
58950
+ /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
58621
58951
  var __extends = (undefined && undefined.__extends) || (function () {
58622
58952
  var extendStatics = function (d, b) {
58623
58953
  extendStatics = Object.setPrototypeOf ||
@@ -58658,6 +58988,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
58658
58988
 
58659
58989
 
58660
58990
 
58991
+
58661
58992
  var QuestionPanelDynamicItemTextProcessor = /** @class */ (function (_super) {
58662
58993
  __extends(QuestionPanelDynamicItemTextProcessor, _super);
58663
58994
  function QuestionPanelDynamicItemTextProcessor(data, panelItem, variableName) {
@@ -58881,6 +59212,8 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
58881
59212
  __extends(QuestionPanelDynamicModel, _super);
58882
59213
  function QuestionPanelDynamicModel(name) {
58883
59214
  var _this = _super.call(this, name) || this;
59215
+ _this._renderedPanels = [];
59216
+ _this.isPanelsAnimationRunning = false;
58884
59217
  _this.isAddingNewPanels = false;
58885
59218
  _this.isSetPanelItemData = {};
58886
59219
  _this.createNewArray("panels", function (panel) { _this.onPanelAdded(panel); }, function (panel) { _this.onPanelRemoved(panel); });
@@ -59206,6 +59539,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59206
59539
  if (!this.currentPanel) {
59207
59540
  this.currentPanel = panel;
59208
59541
  }
59542
+ this.updateRenderedPanels();
59209
59543
  };
59210
59544
  QuestionPanelDynamicModel.prototype.onPanelRemoved = function (panel) {
59211
59545
  var index = this.onPanelRemovedCore(panel);
@@ -59215,6 +59549,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59215
59549
  index = visPanels.length - 1;
59216
59550
  this.currentPanel = index >= 0 ? visPanels[index] : null;
59217
59551
  }
59552
+ this.updateRenderedPanels();
59218
59553
  };
59219
59554
  QuestionPanelDynamicModel.prototype.onPanelRemovedCore = function (panel) {
59220
59555
  var visPanels = this.visiblePanelsCore;
@@ -59285,6 +59620,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59285
59620
  curPanel.onHidingContent();
59286
59621
  }
59287
59622
  this.setPropertyValue("currentPanel", val);
59623
+ this.updateRenderedPanels();
59288
59624
  this.updateFooterActions();
59289
59625
  this.updateTabToolbarItemsPressedState();
59290
59626
  this.fireCallback(this.currentIndexChangedCallback);
@@ -59299,6 +59635,123 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59299
59635
  enumerable: false,
59300
59636
  configurable: true
59301
59637
  });
59638
+ QuestionPanelDynamicModel.prototype.updateRenderedPanels = function () {
59639
+ if (this.isRenderModeList) {
59640
+ this.renderedPanels = [].concat(this.visiblePanels);
59641
+ }
59642
+ else if (this.currentPanel) {
59643
+ this.renderedPanels = [this.currentPanel];
59644
+ }
59645
+ else {
59646
+ this.renderedPanels = [];
59647
+ }
59648
+ };
59649
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "renderedPanels", {
59650
+ get: function () {
59651
+ return this._renderedPanels;
59652
+ },
59653
+ set: function (val) {
59654
+ if (this.renderedPanels.length == 0 || val.length == 0) {
59655
+ this.blockAnimations();
59656
+ this.panelsAnimation.sync(val);
59657
+ this.releaseAnimations();
59658
+ }
59659
+ else {
59660
+ this.isPanelsAnimationRunning = true;
59661
+ this.panelsAnimation.sync(val);
59662
+ }
59663
+ },
59664
+ enumerable: false,
59665
+ configurable: true
59666
+ });
59667
+ QuestionPanelDynamicModel.prototype.getPanelsAnimationOptions = function () {
59668
+ var _this = this;
59669
+ var getDirection = function () {
59670
+ if (_this.isRenderModeList)
59671
+ return "";
59672
+ var leavingPanel = _this.renderedPanels.filter(function (el) { return el !== _this.currentPanel; })[0];
59673
+ var leavingPanelIndex = _this.visiblePanels.indexOf(leavingPanel);
59674
+ if (leavingPanelIndex < 0)
59675
+ leavingPanelIndex = _this.removedPanelIndex;
59676
+ return leavingPanelIndex > _this.currentIndex ? "-right" : "-left";
59677
+ };
59678
+ return {
59679
+ getAnimatedElement: function (panel) {
59680
+ var _a, _b;
59681
+ if (panel && _this.cssContent) {
59682
+ var contentSelector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_9__["classesToSelector"])(_this.cssContent);
59683
+ return (_b = (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(":scope " + contentSelector + " #" + panel.id)) === null || _b === void 0 ? void 0 : _b.parentElement;
59684
+ }
59685
+ },
59686
+ getEnterOptions: function () {
59687
+ var cssClass = _this.cssClasses.panelWrapperFadeIn ? "" + _this.cssClasses.panelWrapperFadeIn + getDirection() : "";
59688
+ return {
59689
+ onBeforeRunAnimation: function (el) {
59690
+ var _a;
59691
+ if (_this.focusNewPanelCallback) {
59692
+ var scolledElement = _this.isRenderModeList ? el : el.parentElement;
59693
+ _survey_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElement"].ScrollElementToViewCore(scolledElement, false, false, { behavior: "smooth" });
59694
+ }
59695
+ if (!_this.isRenderModeList) {
59696
+ (_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-to", el.offsetHeight + "px");
59697
+ }
59698
+ else {
59699
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
59700
+ }
59701
+ },
59702
+ cssClass: cssClass
59703
+ };
59704
+ },
59705
+ getLeaveOptions: function () {
59706
+ var cssClass = _this.cssClasses.panelWrapperFadeOut ? "" + _this.cssClasses.panelWrapperFadeOut + getDirection() : "";
59707
+ return {
59708
+ onBeforeRunAnimation: function (el) {
59709
+ var _a;
59710
+ if (!_this.isRenderModeList) {
59711
+ (_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-from", el.offsetHeight + "px");
59712
+ }
59713
+ else {
59714
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
59715
+ }
59716
+ },
59717
+ cssClass: cssClass
59718
+ };
59719
+ },
59720
+ isAnimationEnabled: function () {
59721
+ return _this.animationAllowed && !!_this.getWrapperElement();
59722
+ },
59723
+ };
59724
+ };
59725
+ QuestionPanelDynamicModel.prototype.disablePanelsAnimations = function () {
59726
+ this.panelsCore.forEach(function (panel) {
59727
+ panel.blockAnimations();
59728
+ });
59729
+ };
59730
+ QuestionPanelDynamicModel.prototype.enablePanelsAnimations = function () {
59731
+ this.panelsCore.forEach(function (panel) {
59732
+ panel.releaseAnimations();
59733
+ });
59734
+ };
59735
+ QuestionPanelDynamicModel.prototype.updatePanelsAnimation = function () {
59736
+ var _this = this;
59737
+ this._panelsAnimations = new (this.isRenderModeList ? _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationGroup"] : _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationTab"])(this.getPanelsAnimationOptions(), function (val, isTempUpdate) {
59738
+ _this._renderedPanels = val;
59739
+ if (!isTempUpdate) {
59740
+ _this.isPanelsAnimationRunning = false;
59741
+ _this.focusNewPanel();
59742
+ }
59743
+ }, function () { return _this._renderedPanels; });
59744
+ };
59745
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "panelsAnimation", {
59746
+ get: function () {
59747
+ if (!this._panelsAnimations) {
59748
+ this.updatePanelsAnimation();
59749
+ }
59750
+ return this._panelsAnimations;
59751
+ },
59752
+ enumerable: false,
59753
+ configurable: true
59754
+ });
59302
59755
  QuestionPanelDynamicModel.prototype.onHidingContent = function () {
59303
59756
  _super.prototype.onHidingContent.call(this);
59304
59757
  if (this.currentPanel) {
@@ -59613,11 +60066,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59613
60066
  if (val < this.panelCount) {
59614
60067
  this.panelsCore.splice(val, this.panelCount - val);
59615
60068
  }
60069
+ this.disablePanelsAnimations();
59616
60070
  this.setValueAfterPanelsCreating();
59617
60071
  this.setValueBasedOnPanelCount();
59618
60072
  this.reRunCondition();
59619
60073
  this.updateFooterActions();
59620
60074
  this.fireCallback(this.panelCountChangedCallback);
60075
+ this.enablePanelsAnimations();
59621
60076
  },
59622
60077
  enumerable: false,
59623
60078
  configurable: true
@@ -59912,6 +60367,10 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59912
60367
  set: function (val) {
59913
60368
  this.setPropertyValue("renderMode", val);
59914
60369
  this.fireCallback(this.renderModeChangedCallback);
60370
+ this.blockAnimations();
60371
+ this.updateRenderedPanels();
60372
+ this.releaseAnimations();
60373
+ this.updatePanelsAnimation();
59915
60374
  },
59916
60375
  enumerable: false,
59917
60376
  configurable: true
@@ -60145,9 +60604,20 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60145
60604
  if (this.renderMode === "list" && this.panelsState !== "default") {
60146
60605
  newPanel.expand();
60147
60606
  }
60148
- newPanel.focusFirstQuestion();
60607
+ this.focusNewPanelCallback = function () {
60608
+ newPanel.focusFirstQuestion();
60609
+ };
60610
+ if (!this.isPanelsAnimationRunning) {
60611
+ this.focusNewPanel();
60612
+ }
60149
60613
  return newPanel;
60150
60614
  };
60615
+ QuestionPanelDynamicModel.prototype.focusNewPanel = function () {
60616
+ if (this.focusNewPanelCallback) {
60617
+ this.focusNewPanelCallback();
60618
+ this.focusNewPanelCallback = undefined;
60619
+ }
60620
+ };
60151
60621
  /**
60152
60622
  * Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
60153
60623
  * @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
@@ -60256,16 +60726,11 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60256
60726
  return;
60257
60727
  this.currentIndex--;
60258
60728
  };
60259
- /**
60260
- * Removes a dynamic panel from the panels array.
60261
- * @param value a panel or panel index
60262
- * @see panels
60263
- * @see template
60264
- */
60265
60729
  QuestionPanelDynamicModel.prototype.removePanel = function (value) {
60266
60730
  var visIndex = this.getVisualPanelIndex(value);
60267
60731
  if (visIndex < 0 || visIndex >= this.visiblePanelCount)
60268
60732
  return;
60733
+ this.removedPanelIndex = visIndex;
60269
60734
  var panel = this.visiblePanelsCore[visIndex];
60270
60735
  var index = this.panelsCore.indexOf(panel);
60271
60736
  if (index < 0)
@@ -60378,11 +60843,16 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60378
60843
  var prefixName = this.getValueName() + indexStr;
60379
60844
  var prefixText = this.processedTitle + indexStr;
60380
60845
  for (var i = 0; i < panelObjs.length; i++) {
60381
- objects.push({
60382
- name: prefixName + panelObjs[i].name,
60383
- text: prefixText + panelObjs[i].text,
60384
- question: panelObjs[i].question,
60385
- });
60846
+ if (!!panelObjs[i].context) {
60847
+ objects.push(panelObjs[i]);
60848
+ }
60849
+ else {
60850
+ objects.push({
60851
+ name: prefixName + panelObjs[i].name,
60852
+ text: prefixText + panelObjs[i].text,
60853
+ question: panelObjs[i].question,
60854
+ });
60855
+ }
60386
60856
  }
60387
60857
  }
60388
60858
  if (hasContext) {
@@ -60396,9 +60866,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60396
60866
  text: prefixText + QuestionPanelDynamicItem.ItemVariableName + "." + panelObjs[i].text,
60397
60867
  question: panelObjs[i].question
60398
60868
  };
60399
- if (context === true) {
60400
- obj.context = this;
60401
- }
60869
+ obj.context = this;
60402
60870
  objects.push(obj);
60403
60871
  }
60404
60872
  }
@@ -60456,6 +60924,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60456
60924
  return;
60457
60925
  if (!force && this.wasNotRenderedInSurvey)
60458
60926
  return;
60927
+ this.blockAnimations();
60459
60928
  this.hasPanelBuildFirstTime = true;
60460
60929
  this.isBuildingPanelsFirstTime = true;
60461
60930
  if (this.getPropertyValue("panelCount") > 0) {
@@ -60478,6 +60947,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60478
60947
  }
60479
60948
  this.updateFooterActions();
60480
60949
  this.isBuildingPanelsFirstTime = false;
60950
+ this.releaseAnimations();
60481
60951
  };
60482
60952
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "wasNotRenderedInSurvey", {
60483
60953
  get: function () {
@@ -61023,7 +61493,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61023
61493
  };
61024
61494
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "cssHeader", {
61025
61495
  get: function () {
61026
- var showTab = this.isRenderModeTab && !!this.panelCount;
61496
+ var showTab = this.isRenderModeTab && !!this.visiblePanelCount;
61027
61497
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
61028
61498
  .append(this.cssClasses.header)
61029
61499
  .append(this.cssClasses.headerTop, this.hasTitleOnTop || showTab)
@@ -61036,6 +61506,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61036
61506
  QuestionPanelDynamicModel.prototype.getPanelWrapperCss = function (panel) {
61037
61507
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
61038
61508
  .append(this.cssClasses.panelWrapper, !panel || panel.visible)
61509
+ .append(this.cssClasses.panelWrapperList, this.isRenderModeList)
61039
61510
  .append(this.cssClasses.panelWrapperInRow, this.panelRemoveButtonLocation === "right")
61040
61511
  .toString();
61041
61512
  };
@@ -61094,6 +61565,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61094
61565
  return true;
61095
61566
  return false;
61096
61567
  };
61568
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "hasAdditionalTitleToolbar", {
61569
+ get: function () {
61570
+ return this.isRenderModeTab && this.visiblePanels.length > 0;
61571
+ },
61572
+ enumerable: false,
61573
+ configurable: true
61574
+ });
61097
61575
  QuestionPanelDynamicModel.prototype.getAdditionalTitleToolbar = function () {
61098
61576
  if (!this.isRenderModeTab)
61099
61577
  return null;
@@ -61282,7 +61760,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61282
61760
  configurable: true
61283
61761
  });
61284
61762
  QuestionPanelDynamicModel.prototype.showSeparator = function (index) {
61285
- return this.isRenderModeList && index < this.visiblePanelCount - 1;
61763
+ return this.isRenderModeList && index < this.renderedPanels.length - 1;
61286
61764
  };
61287
61765
  QuestionPanelDynamicModel.prototype.calcCssClasses = function (css) {
61288
61766
  var classes = _super.prototype.calcCssClasses.call(this, css);
@@ -61296,6 +61774,9 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61296
61774
  return classes;
61297
61775
  };
61298
61776
  QuestionPanelDynamicModel.maxCheckCount = 3;
61777
+ __decorate([
61778
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["propertyArray"])({})
61779
+ ], QuestionPanelDynamicModel.prototype, "_renderedPanels", void 0);
61299
61780
  __decorate([
61300
61781
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["property"])({ defaultValue: false, onSet: function (_, target) { target.updateFooterActions(); } })
61301
61782
  ], QuestionPanelDynamicModel.prototype, "legacyNavigation", void 0);
@@ -61595,6 +62076,7 @@ __webpack_require__.r(__webpack_exports__);
61595
62076
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./helpers */ "./src/helpers.ts");
61596
62077
  /* harmony import */ var _src_settings__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../src/settings */ "./src/settings.ts");
61597
62078
  /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
62079
+ /* harmony import */ var _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utils/dragOrClickHelper */ "./src/utils/dragOrClickHelper.ts");
61598
62080
  var __extends = (undefined && undefined.__extends) || (function () {
61599
62081
  var extendStatics = function (d, b) {
61600
62082
  extendStatics = Object.setPrototypeOf ||
@@ -61627,6 +62109,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
61627
62109
 
61628
62110
 
61629
62111
 
62112
+
61630
62113
  /**
61631
62114
  * A class that describes the Ranking question type.
61632
62115
  *
@@ -61680,7 +62163,19 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61680
62163
  if (_this.allowStartDrag &&
61681
62164
  _this.canStartDragDueMaxSelectedChoices(target) &&
61682
62165
  _this.canStartDragDueItemEnabled(choice)) {
61683
- _this.dragDropRankingChoices.startDrag(event, choice, _this, node);
62166
+ _this.draggedChoise = choice;
62167
+ _this.draggedTargetNode = node;
62168
+ _this.dragOrClickHelper.onPointerDown(event);
62169
+ }
62170
+ };
62171
+ _this.startDrag = function (event) {
62172
+ _this.dragDropRankingChoices.startDrag(event, _this.draggedChoise, _this, _this.draggedTargetNode);
62173
+ };
62174
+ _this.handlePointerUp = function (event, choice, node) {
62175
+ if (!_this.selectToRankEnabled)
62176
+ return;
62177
+ if (_this.allowStartDrag) {
62178
+ _this.handleKeydownSelectToRank(event, choice, " ", false);
61684
62179
  }
61685
62180
  };
61686
62181
  _this.handleKeydown = function (event, choice) {
@@ -61740,6 +62235,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61740
62235
  _this.setDragDropRankingChoices();
61741
62236
  _this.updateRankingChoicesSync();
61742
62237
  });
62238
+ _this.dragOrClickHelper = new _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__["DragOrClickHelper"](_this.startDrag);
61743
62239
  return _this;
61744
62240
  }
61745
62241
  QuestionRankingModel.prototype.getDefaultItemComponent = function () {
@@ -61777,7 +62273,10 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61777
62273
  configurable: true
61778
62274
  });
61779
62275
  QuestionRankingModel.prototype.isItemSelectedCore = function (item) {
61780
- return false;
62276
+ if (this.selectToRankEnabled) {
62277
+ return _super.prototype.isItemSelectedCore.call(this, item);
62278
+ }
62279
+ return true;
61781
62280
  };
61782
62281
  QuestionRankingModel.prototype.getItemClassCore = function (item, options) {
61783
62282
  var itemIndex = this.rankingChoices.indexOf(item);
@@ -61839,9 +62338,9 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61839
62338
  return this.isEmpty() ? "" : index + 1 + "";
61840
62339
  };
61841
62340
  QuestionRankingModel.prototype.updateRankingChoicesSync = function () {
61842
- this.animationAllowed = false;
62341
+ this.blockAnimations();
61843
62342
  this.updateRankingChoices();
61844
- this.animationAllowed = true;
62343
+ this.releaseAnimations();
61845
62344
  };
61846
62345
  QuestionRankingModel.prototype.setSurveyImpl = function (value, isLight) {
61847
62346
  _super.prototype.setSurveyImpl.call(this, value, isLight);
@@ -61884,7 +62383,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61884
62383
  QuestionRankingModel.prototype.getChoicesAnimation = function (isRankingChoices) {
61885
62384
  var _this = this;
61886
62385
  return {
61887
- isAnimationEnabled: function () { return _src_settings__WEBPACK_IMPORTED_MODULE_9__["settings"].animationEnabled && _this.animationAllowed; },
62386
+ isAnimationEnabled: function () { return _this.animationAllowed; },
61888
62387
  getLeaveOptions: function (item) {
61889
62388
  var choices = isRankingChoices ? _this.rankingChoices : _this.unRankingChoices;
61890
62389
  if (_this.renderedSelectToRankAreasLayout == "vertical" && choices.length == 1 && choices.indexOf(item) >= 0) {
@@ -62052,10 +62551,13 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62052
62551
  QuestionRankingModel.prototype.supportNone = function () { return false; };
62053
62552
  QuestionRankingModel.prototype.supportRefuse = function () { return false; };
62054
62553
  QuestionRankingModel.prototype.supportDontKnow = function () { return false; };
62055
- QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement) {
62554
+ QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement, hardKey, isNeedFocus) {
62555
+ if (isNeedFocus === void 0) { isNeedFocus = true; }
62056
62556
  if (this.isDesignMode)
62057
62557
  return;
62058
62558
  var key = event.key;
62559
+ if (hardKey)
62560
+ key = hardKey;
62059
62561
  if (key !== " " && key !== "ArrowUp" && key !== "ArrowDown")
62060
62562
  return;
62061
62563
  var dnd = this.dragDropRankingChoices; //????
@@ -62067,21 +62569,23 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62067
62569
  return;
62068
62570
  var toIndex;
62069
62571
  if (key === " " && !isMovedElementRanked) {
62070
- toIndex = 0;
62071
- this.animationAllowed = false;
62572
+ if (!this.checkMaxSelectedChoicesUnreached() || !this.canStartDragDueItemEnabled(movedElement))
62573
+ return;
62574
+ toIndex = this.value.length;
62575
+ this.blockAnimations();
62072
62576
  dnd.selectToRank(this, fromIndex, toIndex);
62073
- this.animationAllowed = true;
62074
- this.setValueAfterKeydown(toIndex, "to-container");
62577
+ this.releaseAnimations();
62578
+ this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
62075
62579
  return;
62076
62580
  }
62077
62581
  if (!isMovedElementRanked)
62078
62582
  return;
62079
62583
  if (key === " ") {
62080
- this.animationAllowed = false;
62584
+ this.blockAnimations();
62081
62585
  dnd.unselectFromRank(this, fromIndex);
62082
- this.animationAllowed = true;
62586
+ this.releaseAnimations();
62083
62587
  toIndex = this.unRankingChoices.indexOf(movedElement); //'this.' leads to actual array after the 'unselectFromRank' method
62084
- this.setValueAfterKeydown(toIndex, "from-container");
62588
+ this.setValueAfterKeydown(toIndex, "from-container", isNeedFocus);
62085
62589
  return;
62086
62590
  }
62087
62591
  var delta = key === "ArrowUp" ? -1 : (key === "ArrowDown" ? 1 : 0);
@@ -62091,15 +62595,18 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62091
62595
  if (toIndex < 0 || toIndex >= rankingChoices.length)
62092
62596
  return;
62093
62597
  dnd.reorderRankedItem(this, fromIndex, toIndex);
62094
- this.setValueAfterKeydown(toIndex, "to-container");
62598
+ this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
62095
62599
  };
62096
- QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container) {
62600
+ QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container, isNeedFocus) {
62097
62601
  var _this = this;
62602
+ if (isNeedFocus === void 0) { isNeedFocus = true; }
62098
62603
  this.setValue();
62099
- setTimeout(function () {
62100
- _this.focusItem(index, container);
62101
- }, 1);
62102
- event.preventDefault();
62604
+ if (isNeedFocus) {
62605
+ setTimeout(function () {
62606
+ _this.focusItem(index, container);
62607
+ }, 1);
62608
+ }
62609
+ event && event.preventDefault();
62103
62610
  };
62104
62611
  QuestionRankingModel.prototype.getIconHoverCss = function () {
62105
62612
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
@@ -62443,19 +62950,23 @@ var QuestionRatingModel = /** @class */ (function (_super) {
62443
62950
  _this.updateRateCount();
62444
62951
  });
62445
62952
  _this.registerFunctionOnPropertiesValueChanged(["rateValues"], function () {
62446
- _this.autoGenerate = false;
62953
+ _this.setIconsToRateValues();
62954
+ _this.createRenderedRateItems();
62955
+ });
62956
+ _this.registerSychProperties(["rateValues"], function () {
62957
+ _this.autoGenerate = _this.rateValues.length == 0;
62447
62958
  _this.setIconsToRateValues();
62448
62959
  _this.createRenderedRateItems();
62449
62960
  });
62450
62961
  _this.registerFunctionOnPropertiesValueChanged(["rateColorMode", "scaleColorMode"], function () {
62451
62962
  _this.updateColors(_this.survey.themeVariables);
62452
62963
  });
62453
- _this.registerFunctionOnPropertiesValueChanged(["autoGenerate"], function () {
62964
+ _this.registerSychProperties(["autoGenerate"], function () {
62454
62965
  if (!_this.autoGenerate && _this.rateValues.length === 0) {
62455
62966
  _this.setPropertyValue("rateValues", _this.visibleRateValues);
62456
62967
  }
62457
62968
  if (_this.autoGenerate) {
62458
- _this.rateValues.length = 0;
62969
+ _this.rateValues.splice(0, _this.rateValues.length);
62459
62970
  _this.updateRateMax();
62460
62971
  }
62461
62972
  _this.createRenderedRateItems();
@@ -62781,6 +63292,13 @@ var QuestionRatingModel = /** @class */ (function (_super) {
62781
63292
  QuestionRatingModel.prototype.getInputId = function (index) {
62782
63293
  return this.inputId + "_" + index;
62783
63294
  };
63295
+ Object.defineProperty(QuestionRatingModel.prototype, "questionName", {
63296
+ get: function () {
63297
+ return this.name + "_" + this.id;
63298
+ },
63299
+ enumerable: false,
63300
+ configurable: true
63301
+ });
62784
63302
  QuestionRatingModel.prototype.supportGoNextPageAutomatic = function () {
62785
63303
  return this.isMouseDown === true || this.renderAs === "dropdown";
62786
63304
  };
@@ -64321,7 +64839,13 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
64321
64839
  })
64322
64840
  ], QuestionTagboxModel.prototype, "hideSelectedItems", void 0);
64323
64841
  __decorate([
64324
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
64842
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({
64843
+ onSet: function (newValue, target) {
64844
+ if (!!target.dropdownListModel) {
64845
+ target.dropdownListModel.setChoicesLazyLoadEnabled(newValue);
64846
+ }
64847
+ }
64848
+ })
64325
64849
  ], QuestionTagboxModel.prototype, "choicesLazyLoadEnabled", void 0);
64326
64850
  __decorate([
64327
64851
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
@@ -65037,8 +65561,8 @@ var QuestionTextModel = /** @class */ (function (_super) {
65037
65561
  if (this.inputTextAlignment !== "auto") {
65038
65562
  style.textAlign = this.inputTextAlignment;
65039
65563
  }
65040
- else if (this.maskType === "numeric" || this.maskType === "currency") {
65041
- style.textAlign = "right";
65564
+ else if (this.maskSettings.getTextAlignment() !== "auto") {
65565
+ style.textAlign = this.maskSettings.getTextAlignment();
65042
65566
  }
65043
65567
  };
65044
65568
  QuestionTextModel.prototype.updateValueOnEvent = function (event) {
@@ -67404,6 +67928,7 @@ var MatrixRow = /** @class */ (function (_super) {
67404
67928
  __extends(MatrixRow, _super);
67405
67929
  function MatrixRow(props) {
67406
67930
  var _this = _super.call(this, props) || this;
67931
+ _this.root = react__WEBPACK_IMPORTED_MODULE_0___default.a.createRef();
67407
67932
  _this.onPointerDownHandler = function (event) {
67408
67933
  _this.parentMatrix.onPointerDown(event.nativeEvent, _this.model.row);
67409
67934
  };
@@ -67426,12 +67951,35 @@ var MatrixRow = /** @class */ (function (_super) {
67426
67951
  MatrixRow.prototype.getStateElement = function () {
67427
67952
  return this.model;
67428
67953
  };
67954
+ MatrixRow.prototype.componentDidMount = function () {
67955
+ _super.prototype.componentDidMount.call(this);
67956
+ if (this.root.current) {
67957
+ this.model.setRootElement(this.root.current);
67958
+ }
67959
+ };
67960
+ MatrixRow.prototype.componentWillUnmount = function () {
67961
+ _super.prototype.componentWillUnmount.call(this);
67962
+ this.model.setRootElement(undefined);
67963
+ };
67964
+ MatrixRow.prototype.shouldComponentUpdate = function (nextProps, nextState) {
67965
+ if (!_super.prototype.shouldComponentUpdate.call(this, nextProps, nextState))
67966
+ return false;
67967
+ if (nextProps.model !== this.model) {
67968
+ if (nextProps.element) {
67969
+ nextProps.element.setRootElement(this.root.current);
67970
+ }
67971
+ if (this.model) {
67972
+ this.model.setRootElement(undefined);
67973
+ }
67974
+ }
67975
+ return true;
67976
+ };
67429
67977
  MatrixRow.prototype.render = function () {
67430
67978
  var _this = this;
67431
67979
  var model = this.model;
67432
67980
  if (!model.visible)
67433
67981
  return null;
67434
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("tr", { className: model.className, "data-sv-drop-target-matrix-row": model.row && model.row.id, onPointerDown: function (event) { return _this.onPointerDownHandler(event); } }, this.props.children));
67982
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("tr", { ref: this.root, className: model.className, "data-sv-drop-target-matrix-row": model.row && model.row.id, onPointerDown: function (event) { return _this.onPointerDownHandler(event); } }, this.props.children));
67435
67983
  };
67436
67984
  return MatrixRow;
67437
67985
  }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
@@ -67924,7 +68472,6 @@ var PopupContainer = /** @class */ (function (_super) {
67924
68472
  __extends(PopupContainer, _super);
67925
68473
  function PopupContainer(props) {
67926
68474
  var _this = _super.call(this, props) || this;
67927
- _this.prevIsVisible = false;
67928
68475
  _this.handleKeydown = function (event) {
67929
68476
  _this.model.onKeyDown(event);
67930
68477
  };
@@ -67945,10 +68492,9 @@ var PopupContainer = /** @class */ (function (_super) {
67945
68492
  };
67946
68493
  PopupContainer.prototype.componentDidUpdate = function (prevProps, prevState) {
67947
68494
  _super.prototype.componentDidUpdate.call(this, prevProps, prevState);
67948
- if (!this.prevIsVisible && this.model.isVisible) {
68495
+ if (!this.model.isPositionSet && this.model.isVisible) {
67949
68496
  this.model.updateOnShowing();
67950
68497
  }
67951
- this.prevIsVisible = this.model.isVisible;
67952
68498
  };
67953
68499
  PopupContainer.prototype.renderContainer = function (popupBaseViewModel) {
67954
68500
  var _this = this;
@@ -68041,6 +68587,59 @@ survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showModal = showModal;
68041
68587
  survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showDialog = showDialog;
68042
68588
 
68043
68589
 
68590
+ /***/ }),
68591
+
68592
+ /***/ "./src/react/components/question-error.tsx":
68593
+ /*!*************************************************!*\
68594
+ !*** ./src/react/components/question-error.tsx ***!
68595
+ \*************************************************/
68596
+ /*! exports provided: QuestionErrorComponent */
68597
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
68598
+
68599
+ "use strict";
68600
+ __webpack_require__.r(__webpack_exports__);
68601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "QuestionErrorComponent", function() { return QuestionErrorComponent; });
68602
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
68603
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
68604
+ /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../element-factory */ "./src/react/element-factory.tsx");
68605
+ /* harmony import */ var _string_viewer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../string-viewer */ "./src/react/string-viewer.tsx");
68606
+ var __extends = (undefined && undefined.__extends) || (function () {
68607
+ var extendStatics = function (d, b) {
68608
+ extendStatics = Object.setPrototypeOf ||
68609
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
68610
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
68611
+ return extendStatics(d, b);
68612
+ };
68613
+ return function (d, b) {
68614
+ if (typeof b !== "function" && b !== null)
68615
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
68616
+ extendStatics(d, b);
68617
+ function __() { this.constructor = d; }
68618
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
68619
+ };
68620
+ })();
68621
+
68622
+
68623
+
68624
+ var QuestionErrorComponent = /** @class */ (function (_super) {
68625
+ __extends(QuestionErrorComponent, _super);
68626
+ function QuestionErrorComponent() {
68627
+ return _super !== null && _super.apply(this, arguments) || this;
68628
+ }
68629
+ QuestionErrorComponent.prototype.render = function () {
68630
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", null,
68631
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: this.props.cssClasses.error.icon || undefined, "aria-hidden": "true" }),
68632
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: this.props.cssClasses.error.item || undefined },
68633
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_string_viewer__WEBPACK_IMPORTED_MODULE_2__["SurveyLocStringViewer"], { locStr: this.props.error.locText }))));
68634
+ };
68635
+ return QuestionErrorComponent;
68636
+ }(react__WEBPACK_IMPORTED_MODULE_0___default.a.Component));
68637
+
68638
+ _element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.registerElement("sv-question-error", function (props) {
68639
+ return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(QuestionErrorComponent, props);
68640
+ });
68641
+
68642
+
68044
68643
  /***/ }),
68045
68644
 
68046
68645
  /***/ "./src/react/components/rating/rating-dropdown-item.tsx":
@@ -68156,7 +68755,7 @@ var RatingItemSmiley = /** @class */ (function (_super) {
68156
68755
  RatingItemSmiley.prototype.render = function () {
68157
68756
  var _this = this;
68158
68757
  return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, style: this.question.getItemStyle(this.item.itemValue, this.item.highlight), 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); } },
68159
- 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-errormessage": this.question.ariaErrormessage }),
68758
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, 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-errormessage": this.question.ariaErrormessage }),
68160
68759
  react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { size: "auto", iconName: this.question.getItemSmileyIconName(this.item.itemValue), title: this.item.text })));
68161
68760
  };
68162
68761
  return RatingItemSmiley;
@@ -68211,7 +68810,7 @@ var RatingItemStar = /** @class */ (function (_super) {
68211
68810
  RatingItemStar.prototype.render = function () {
68212
68811
  var _this = this;
68213
68812
  return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, 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); } },
68214
- 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-errormessage": this.question.ariaErrormessage }),
68813
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, 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-errormessage": this.question.ariaErrormessage }),
68215
68814
  react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { className: "sv-star", size: "auto", iconName: this.question.itemStarIcon, title: this.item.text }),
68216
68815
  react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { className: "sv-star-2", size: "auto", iconName: this.question.itemStarIconAlt, title: this.item.text })));
68217
68816
  };
@@ -68303,7 +68902,7 @@ var RatingItem = /** @class */ (function (_super) {
68303
68902
  RatingItem.prototype.render = function () {
68304
68903
  var itemText = this.renderLocString(this.item.locText);
68305
68904
  return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, className: this.question.getItemClassByText(this.item.itemValue, this.item.text) },
68306
- 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-errormessage": this.question.ariaErrormessage }),
68905
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, 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-errormessage": this.question.ariaErrormessage }),
68307
68906
  react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: this.question.cssClasses.itemText }, itemText)));
68308
68907
  };
68309
68908
  RatingItem.prototype.componentDidMount = function () {
@@ -69409,7 +70008,7 @@ var SurveyElementHeader = /** @class */ (function (_super) {
69409
70008
  var description = element.hasDescriptionUnderTitle
69410
70009
  ? _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"].renderQuestionDescription(this.element)
69411
70010
  : null;
69412
- var additionalTitleToolbarElement = !!element.additionalTitleToolbar ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_1__["SurveyActionBar"], { model: element.additionalTitleToolbar }) : null;
70011
+ var additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_1__["SurveyActionBar"], { model: element.additionalTitleToolbar }) : null;
69413
70012
  return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: element.cssHeader, onClick: function (e) { return element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent); } },
69414
70013
  title,
69415
70014
  description,
@@ -70484,6 +71083,7 @@ __webpack_require__.r(__webpack_exports__);
70484
71083
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "./src/entries/core.ts");
70485
71084
  /* harmony import */ var _reactSurveyNavigationBase__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./reactSurveyNavigationBase */ "./src/react/reactSurveyNavigationBase.tsx");
70486
71085
  /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./element-factory */ "./src/react/element-factory.tsx");
71086
+ /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
70487
71087
  var __extends = (undefined && undefined.__extends) || (function () {
70488
71088
  var extendStatics = function (d, b) {
70489
71089
  extendStatics = Object.setPrototypeOf ||
@@ -70503,6 +71103,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
70503
71103
 
70504
71104
 
70505
71105
 
71106
+
70506
71107
  var SurveyProgressButtons = /** @class */ (function (_super) {
70507
71108
  __extends(SurveyProgressButtons, _super);
70508
71109
  function SurveyProgressButtons(props) {
@@ -70562,12 +71163,13 @@ var SurveyProgressButtons = /** @class */ (function (_super) {
70562
71163
  };
70563
71164
  SurveyProgressButtons.prototype.renderListElement = function (page, index) {
70564
71165
  var _this = this;
71166
+ var text = _reactquestion_element__WEBPACK_IMPORTED_MODULE_4__["SurveyElementBase"].renderLocString(page.locNavigationTitle);
70565
71167
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("li", { key: "listelement" + index, className: this.model.getListElementCss(index), onClick: this.model.isListElementClickable(index)
70566
71168
  ? function () { return _this.model.clickListElement(page); }
70567
71169
  : undefined, "data-page-number": this.model.getItemNumber(page) },
70568
71170
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsConnector }),
70569
71171
  this.state.canShowItemTitles ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null,
70570
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsPageTitle, title: page.renderedNavigationTitle }, page.renderedNavigationTitle),
71172
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsPageTitle, title: page.renderedNavigationTitle }, text),
70571
71173
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsPageDescription, title: page.navigationDescription }, page.navigationDescription)) : null,
70572
71174
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsButton },
70573
71175
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.progressButtonsButtonBackground }),
@@ -70896,14 +71498,13 @@ __webpack_require__.r(__webpack_exports__);
70896
71498
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "./src/entries/core.ts");
70897
71499
  /* harmony import */ var _page__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./page */ "./src/react/page.tsx");
70898
71500
  /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
70899
- /* harmony import */ var _string_viewer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./string-viewer */ "./src/react/string-viewer.tsx");
70900
- /* harmony import */ var _components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./components/survey-header/survey-header */ "./src/react/components/survey-header/survey-header.tsx");
70901
- /* harmony import */ var _reactquestion_factory__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
70902
- /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./element-factory */ "./src/react/element-factory.tsx");
70903
- /* harmony import */ var _components_brand_info__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./components/brand-info */ "./src/react/components/brand-info.tsx");
70904
- /* harmony import */ var _components_notifier__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./components/notifier */ "./src/react/components/notifier.tsx");
70905
- /* harmony import */ var _components_components_container__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./components/components-container */ "./src/react/components/components-container.tsx");
70906
- /* harmony import */ var _svgbundle__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./svgbundle */ "./src/react/svgbundle.tsx");
71501
+ /* harmony import */ var _components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./components/survey-header/survey-header */ "./src/react/components/survey-header/survey-header.tsx");
71502
+ /* harmony import */ var _reactquestion_factory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
71503
+ /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./element-factory */ "./src/react/element-factory.tsx");
71504
+ /* harmony import */ var _components_brand_info__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./components/brand-info */ "./src/react/components/brand-info.tsx");
71505
+ /* harmony import */ var _components_notifier__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./components/notifier */ "./src/react/components/notifier.tsx");
71506
+ /* harmony import */ var _components_components_container__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./components/components-container */ "./src/react/components/components-container.tsx");
71507
+ /* harmony import */ var _svgbundle__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./svgbundle */ "./src/react/svgbundle.tsx");
70907
71508
  var __extends = (undefined && undefined.__extends) || (function () {
70908
71509
  var extendStatics = function (d, b) {
70909
71510
  extendStatics = Object.setPrototypeOf ||
@@ -70941,7 +71542,6 @@ var __assign = (undefined && undefined.__assign) || function () {
70941
71542
 
70942
71543
 
70943
71544
 
70944
-
70945
71545
  var Survey = /** @class */ (function (_super) {
70946
71546
  __extends(Survey, _super);
70947
71547
  function Survey(props) {
@@ -71029,7 +71629,7 @@ var Survey = /** @class */ (function (_super) {
71029
71629
  renderResult = this.renderSurvey();
71030
71630
  }
71031
71631
  var backgroundImage = !!this.survey.backgroundImage ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.rootBackgroundImage, style: this.survey.backgroundImageStyle }) : null;
71032
- var header = this.survey.headerView === "basic" ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_5__["SurveyHeader"], { survey: this.survey }) : null;
71632
+ var header = this.survey.headerView === "basic" ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_4__["SurveyHeader"], { survey: this.survey }) : null;
71033
71633
  var onSubmit = function (event) {
71034
71634
  event.preventDefault();
71035
71635
  };
@@ -71040,18 +71640,18 @@ var Survey = /** @class */ (function (_super) {
71040
71640
  var rootCss = this.survey.getRootCss();
71041
71641
  var cssClasses = this.rootNodeClassName ? this.rootNodeClassName + " " + rootCss : rootCss;
71042
71642
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { id: this.rootNodeId, ref: this.rootRef, className: cssClasses, style: this.survey.themeVariables },
71043
- this.survey.needRenderIcons ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_svgbundle__WEBPACK_IMPORTED_MODULE_11__["SvgBundleComponent"], null) : null,
71643
+ this.survey.needRenderIcons ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_svgbundle__WEBPACK_IMPORTED_MODULE_10__["SvgBundleComponent"], null) : null,
71044
71644
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.survey.wrapperFormCss },
71045
71645
  backgroundImage,
71046
71646
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("form", { onSubmit: onSubmit },
71047
71647
  customHeader,
71048
71648
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.css.container },
71049
71649
  header,
71050
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "header", needRenderWrapper: false }),
71650
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "header", needRenderWrapper: false }),
71051
71651
  renderResult,
71052
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "footer", needRenderWrapper: false }))),
71053
- this.survey.showBrandInfo ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_brand_info__WEBPACK_IMPORTED_MODULE_8__["BrandInfo"], null) : null,
71054
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_notifier__WEBPACK_IMPORTED_MODULE_9__["NotifierComponent"], { notifier: this.survey.notifier }))));
71652
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "footer", needRenderWrapper: false }))),
71653
+ this.survey.showBrandInfo ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_brand_info__WEBPACK_IMPORTED_MODULE_7__["BrandInfo"], null) : null,
71654
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_notifier__WEBPACK_IMPORTED_MODULE_8__["NotifierComponent"], { notifier: this.survey.notifier }))));
71055
71655
  };
71056
71656
  Survey.prototype.renderElement = function () {
71057
71657
  return this.doRender();
@@ -71072,7 +71672,7 @@ var Survey = /** @class */ (function (_super) {
71072
71672
  var htmlValue = { __html: this.survey.processedCompletedHtml };
71073
71673
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null,
71074
71674
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { dangerouslySetInnerHTML: htmlValue, className: this.survey.completedCss }),
71075
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "completePage", needRenderWrapper: false })));
71675
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "completePage", needRenderWrapper: false })));
71076
71676
  };
71077
71677
  Survey.prototype.renderCompletedBefore = function () {
71078
71678
  var htmlValue = { __html: this.survey.processedCompletedBeforeHtml };
@@ -71094,14 +71694,14 @@ var Survey = /** @class */ (function (_super) {
71094
71694
  style.maxWidth = this.survey.renderedWidth;
71095
71695
  }
71096
71696
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.survey.bodyContainerCss },
71097
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "left" }),
71697
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "left" }),
71098
71698
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: "sv-components-column sv-components-column--expandable" },
71099
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "center" }),
71699
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "center" }),
71100
71700
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { id: pageId, className: className, style: style },
71101
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "contentTop" }),
71701
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "contentTop" }),
71102
71702
  activePage,
71103
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "contentBottom" }))),
71104
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_10__["ComponentsContainer"], { survey: this.survey, container: "right" })));
71703
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "contentBottom" }))),
71704
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_components_container__WEBPACK_IMPORTED_MODULE_9__["ComponentsContainer"], { survey: this.survey, container: "right" })));
71105
71705
  };
71106
71706
  Survey.prototype.renderPage = function (page) {
71107
71707
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_page__WEBPACK_IMPORTED_MODULE_2__["SurveyPage"], { survey: this.survey, page: page, css: this.css, creator: this }));
@@ -71182,17 +71782,14 @@ var Survey = /** @class */ (function (_super) {
71182
71782
  };
71183
71783
  //ISurveyCreator
71184
71784
  Survey.prototype.createQuestionElement = function (question) {
71185
- return _reactquestion_factory__WEBPACK_IMPORTED_MODULE_6__["ReactQuestionFactory"].Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
71785
+ return _reactquestion_factory__WEBPACK_IMPORTED_MODULE_5__["ReactQuestionFactory"].Instance.createQuestion(question.isDefaultRendering() ? question.getTemplate() : question.getComponentName(), {
71186
71786
  question: question,
71187
71787
  isDisplayMode: question.isInputReadOnly,
71188
71788
  creator: this,
71189
71789
  });
71190
71790
  };
71191
- Survey.prototype.renderError = function (key, error, cssClasses) {
71192
- return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { key: key },
71193
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: cssClasses.error.icon || undefined, "aria-hidden": "true" }),
71194
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: cssClasses.error.item || undefined },
71195
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_string_viewer__WEBPACK_IMPORTED_MODULE_4__["SurveyLocStringViewer"], { locStr: error.locText }))));
71791
+ Survey.prototype.renderError = function (key, error, cssClasses, element) {
71792
+ return _element_factory__WEBPACK_IMPORTED_MODULE_6__["ReactElementFactory"].Instance.createElement(this.survey.questionErrorComponent, { key: key, error: error, cssClasses: cssClasses, element: element });
71196
71793
  };
71197
71794
  Survey.prototype.questionTitleLocation = function () {
71198
71795
  return this.survey.questionTitleLocation;
@@ -71203,7 +71800,7 @@ var Survey = /** @class */ (function (_super) {
71203
71800
  return Survey;
71204
71801
  }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"]));
71205
71802
 
71206
- _element_factory__WEBPACK_IMPORTED_MODULE_7__["ReactElementFactory"].Instance.registerElement("survey", function (props) {
71803
+ _element_factory__WEBPACK_IMPORTED_MODULE_6__["ReactElementFactory"].Instance.registerElement("survey", function (props) {
71207
71804
  return react__WEBPACK_IMPORTED_MODULE_0__["createElement"](Survey, props);
71208
71805
  });
71209
71806
  function attachKey2click(element, viewModel, options) {
@@ -71555,7 +72152,7 @@ var SurveyElementErrors = /** @class */ (function (_super) {
71555
72152
  var errors = [];
71556
72153
  for (var i = 0; i < this.element.errors.length; i++) {
71557
72154
  var key = "error" + i;
71558
- errors.push(this.creator.renderError(key, this.element.errors[i], this.cssClasses));
72155
+ errors.push(this.creator.renderError(key, this.element.errors[i], this.cssClasses, this.element));
71559
72156
  }
71560
72157
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { role: "alert", "aria-live": "polite", className: this.element.cssError, id: this.id }, errors));
71561
72158
  };
@@ -73595,7 +74192,7 @@ var SurveyQuestionMatrixDropdownBase = /** @class */ (function (_super) {
73595
74192
  SurveyQuestionMatrixDropdownBase.prototype.renderRows = function () {
73596
74193
  var cssClasses = this.question.cssClasses;
73597
74194
  var rows = [];
73598
- var renderedRows = this.question.renderedTable.rows;
74195
+ var renderedRows = this.question.renderedTable.renderedRows;
73599
74196
  for (var i = 0; i < renderedRows.length; i++) {
73600
74197
  rows.push(this.renderRow(renderedRows[i].id, renderedRows[i], cssClasses));
73601
74198
  }
@@ -74180,19 +74777,11 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
74180
74777
  });
74181
74778
  };
74182
74779
  SurveyQuestionPanelDynamic.prototype.renderElement = function () {
74780
+ var _this = this;
74183
74781
  var panels = [];
74184
- if (this.question.isRenderModeList) {
74185
- for (var i = 0; i < this.question.visiblePanels.length; i++) {
74186
- var panel = this.question.visiblePanels[i];
74187
- panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: panel.id, element: panel, question: this.question, index: i, cssClasses: this.question.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.creator }));
74188
- }
74189
- }
74190
- else {
74191
- if (this.question.currentPanel != null) {
74192
- var panel = this.question.currentPanel;
74193
- panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: this.question.currentIndex, element: panel, question: this.question, index: this.question.currentIndex, cssClasses: this.question.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.creator }));
74194
- }
74195
- }
74782
+ this.question.renderedPanels.forEach(function (panel, index) {
74783
+ panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: panel.id, element: panel, question: _this.question, index: index, cssClasses: _this.question.cssClasses, isDisplayMode: _this.isDisplayMode, creator: _this.creator }));
74784
+ });
74196
74785
  var btnAdd = this.question.isRenderModeList && this.question["showLegacyNavigation"]
74197
74786
  ? this.renderAddRowButton()
74198
74787
  : null;
@@ -74202,13 +74791,12 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
74202
74791
  var navBottom = this.question.isProgressBottomShowing
74203
74792
  ? this.renderNavigator()
74204
74793
  : null;
74205
- var style = {};
74206
74794
  var navV2 = this.renderNavigatorV2();
74207
74795
  var noEntriesPlaceholder = this.renderPlaceholder();
74208
74796
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.root },
74209
74797
  noEntriesPlaceholder,
74210
74798
  navTop,
74211
- panels,
74799
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.panelsContainer }, panels),
74212
74800
  navBottom,
74213
74801
  btnAdd,
74214
74802
  navV2));
@@ -74657,6 +75245,10 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
74657
75245
  event.persist();
74658
75246
  //event.preventDefault();
74659
75247
  _this.question.handlePointerDown.call(_this.question, event, item, event.currentTarget);
75248
+ }, function (event) {
75249
+ event.persist();
75250
+ //event.preventDefault();
75251
+ _this.question.handlePointerUp.call(_this.question, event, item, event.currentTarget);
74660
75252
  }, this_1.question.cssClasses, this_1.question.getItemClass(item), this_1.question, unrankedItem));
74661
75253
  };
74662
75254
  var this_1 = this;
@@ -74665,13 +75257,13 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
74665
75257
  }
74666
75258
  return items;
74667
75259
  };
74668
- SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, cssClasses, itemClass, question, unrankedItem) {
75260
+ SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, handlePointerUp, cssClasses, itemClass, question, unrankedItem) {
74669
75261
  var key = "id-" + item.renderedId;
74670
75262
  var text = this.renderLocString(item.locText);
74671
75263
  var index = i;
74672
75264
  var indexText = this.question.getNumberByIndex(index);
74673
75265
  var tabIndex = this.question.getItemTabIndex(item);
74674
- var renderedItem = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionRankingItem, { key: item.value, text: text, index: index, indexText: indexText, itemTabIndex: tabIndex, handleKeydown: handleKeydown, handlePointerDown: handlePointerDown, cssClasses: cssClasses, itemClass: itemClass, question: question, unrankedItem: unrankedItem, item: item }));
75266
+ var renderedItem = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionRankingItem, { key: item.value, text: text, index: index, indexText: indexText, itemTabIndex: tabIndex, handleKeydown: handleKeydown, handlePointerDown: handlePointerDown, handlePointerUp: handlePointerUp, cssClasses: cssClasses, itemClass: itemClass, question: question, unrankedItem: unrankedItem, item: item }));
74675
75267
  var survey = this.question.survey;
74676
75268
  var wrappedItem = null;
74677
75269
  if (!!survey) {
@@ -74722,6 +75314,13 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
74722
75314
  enumerable: false,
74723
75315
  configurable: true
74724
75316
  });
75317
+ Object.defineProperty(SurveyQuestionRankingItem.prototype, "handlePointerUp", {
75318
+ get: function () {
75319
+ return this.props.handlePointerUp;
75320
+ },
75321
+ enumerable: false,
75322
+ configurable: true
75323
+ });
74725
75324
  Object.defineProperty(SurveyQuestionRankingItem.prototype, "cssClasses", {
74726
75325
  get: function () {
74727
75326
  return this.props.cssClasses;
@@ -74769,7 +75368,7 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
74769
75368
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.dashSvgIcon })));
74770
75369
  };
74771
75370
  SurveyQuestionRankingItem.prototype.renderElement = function () {
74772
- return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: this.itemTabIndex, className: this.itemClass, onKeyDown: this.handleKeydown, onPointerDown: this.handlePointerDown, "data-sv-drop-target-ranking-item": this.index },
75371
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: this.itemTabIndex, className: this.itemClass, onKeyDown: this.handleKeydown, onPointerDown: this.handlePointerDown, onPointerUp: this.handlePointerUp, "data-sv-drop-target-ranking-item": this.index },
74773
75372
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: -1, style: { outline: "none" } },
74774
75373
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemGhostNode }),
74775
75374
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemContent },
@@ -77303,7 +77902,6 @@ var SurveyElement = /** @class */ (function (_super) {
77303
77902
  }
77304
77903
  }
77305
77904
  }, function () { return _this.renderedIsExpanded; });
77306
- _this.animationAllowedValue = true;
77307
77905
  _this.name = name;
77308
77906
  _this.createNewArray("errors");
77309
77907
  _this.createNewArray("titleActions");
@@ -77339,7 +77937,7 @@ var SurveyElement = /** @class */ (function (_super) {
77339
77937
  var el = root.getElementById(elementId);
77340
77938
  return SurveyElement.ScrollElementToViewCore(el, false, scrollIfVisible);
77341
77939
  };
77342
- SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible) {
77940
+ SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible, scrollIntoViewOptions) {
77343
77941
  if (!el || !el.scrollIntoView)
77344
77942
  return false;
77345
77943
  var elTop = scrollIfVisible ? -1 : el.getBoundingClientRect().top;
@@ -77358,7 +77956,7 @@ var SurveyElement = /** @class */ (function (_super) {
77358
77956
  }
77359
77957
  }
77360
77958
  if (needScroll) {
77361
- el.scrollIntoView();
77959
+ el.scrollIntoView(scrollIntoViewOptions);
77362
77960
  }
77363
77961
  return needScroll;
77364
77962
  };
@@ -78342,6 +78940,13 @@ var SurveyElement = /** @class */ (function (_super) {
78342
78940
  this.toggleState();
78343
78941
  }
78344
78942
  };
78943
+ Object.defineProperty(SurveyElement.prototype, "hasAdditionalTitleToolbar", {
78944
+ get: function () {
78945
+ return false;
78946
+ },
78947
+ enumerable: false,
78948
+ configurable: true
78949
+ });
78345
78950
  Object.defineProperty(SurveyElement.prototype, "additionalTitleToolbar", {
78346
78951
  get: function () {
78347
78952
  return this.getAdditionalTitleToolbar();
@@ -78367,18 +78972,25 @@ var SurveyElement = /** @class */ (function (_super) {
78367
78972
  };
78368
78973
  Object.defineProperty(SurveyElement.prototype, "isDisabledStyle", {
78369
78974
  get: function () {
78370
- return !this.isDefaultV2Theme && (this.isReadOnlyStyle || this.isPreviewStyle);
78975
+ return this.getIsDisableAndReadOnlyStyles(false)[1];
78371
78976
  },
78372
78977
  enumerable: false,
78373
78978
  configurable: true
78374
78979
  });
78375
78980
  Object.defineProperty(SurveyElement.prototype, "isReadOnlyStyle", {
78376
78981
  get: function () {
78377
- return this.isReadOnly && !this.isPreviewStyle;
78982
+ return this.getIsDisableAndReadOnlyStyles(false)[0];
78378
78983
  },
78379
78984
  enumerable: false,
78380
78985
  configurable: true
78381
78986
  });
78987
+ SurveyElement.prototype.getIsDisableAndReadOnlyStyles = function (itemReadOnly) {
78988
+ var isPreview = this.isPreviewStyle;
78989
+ var isReadOnly = itemReadOnly || this.isReadOnly;
78990
+ var isReadOnlyStyle = isReadOnly && !isPreview;
78991
+ var isDisableStyle = !this.isDefaultV2Theme && (isReadOnly || isPreview);
78992
+ return [isReadOnlyStyle, isDisableStyle];
78993
+ };
78382
78994
  Object.defineProperty(SurveyElement.prototype, "isPreviewStyle", {
78383
78995
  get: function () {
78384
78996
  return !!this.survey && this.survey.state === "preview";
@@ -78445,12 +79057,12 @@ var SurveyElement = /** @class */ (function (_super) {
78445
79057
  if (cssClasses.content) {
78446
79058
  var selector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["classesToSelector"])(cssClasses.content);
78447
79059
  if (selector) {
78448
- return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(selector);
79060
+ return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(":scope " + selector);
78449
79061
  }
78450
79062
  }
78451
79063
  return undefined;
78452
79064
  },
78453
- isAnimationEnabled: function () { return _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].animationEnabled && _this.animationAllowed && !_this.isDesignMode; }
79065
+ isAnimationEnabled: function () { return _this.animationAllowed && !_this.isDesignMode; }
78454
79066
  };
78455
79067
  };
78456
79068
  Object.defineProperty(SurveyElement.prototype, "renderedIsExpanded", {
@@ -78463,16 +79075,9 @@ var SurveyElement = /** @class */ (function (_super) {
78463
79075
  enumerable: false,
78464
79076
  configurable: true
78465
79077
  });
78466
- Object.defineProperty(SurveyElement.prototype, "animationAllowed", {
78467
- get: function () {
78468
- return !this.isLoadingFromJson && !this.isDisposed && !!this.survey && this.animationAllowedValue;
78469
- },
78470
- set: function (val) {
78471
- this.animationAllowedValue = val;
78472
- },
78473
- enumerable: false,
78474
- configurable: true
78475
- });
79078
+ SurveyElement.prototype.getIsAnimationAllowed = function () {
79079
+ return _super.prototype.getIsAnimationAllowed.call(this) && !!this.survey;
79080
+ };
78476
79081
  SurveyElement.prototype.dispose = function () {
78477
79082
  _super.prototype.dispose.call(this);
78478
79083
  if (this.titleToolbarValue) {
@@ -79412,6 +80017,7 @@ var SurveyModel = /** @class */ (function (_super) {
79412
80017
  _this.skippedPages = [];
79413
80018
  _this.skeletonComponentName = "sv-skeleton";
79414
80019
  _this.taskManager = new _surveyTaskManager__WEBPACK_IMPORTED_MODULE_22__["SurveyTaskManagerModel"]();
80020
+ _this.questionErrorComponent = "sv-question-error";
79415
80021
  if (_global_variables_utils__WEBPACK_IMPORTED_MODULE_25__["DomDocumentHelper"].isAvailable()) {
79416
80022
  SurveyModel.stylesManager = new _stylesmanager__WEBPACK_IMPORTED_MODULE_11__["StylesManager"]();
79417
80023
  }
@@ -81978,7 +82584,7 @@ var SurveyModel = /** @class */ (function (_super) {
81978
82584
  }
81979
82585
  this.getAllQuestions().forEach(function (q) {
81980
82586
  if (q.hasFilteredValue) {
81981
- values[q.getValueName()] = q.getFilteredValue();
82587
+ values[q.getFilteredName()] = q.getFilteredValue();
81982
82588
  }
81983
82589
  });
81984
82590
  return values;
@@ -85078,6 +85684,7 @@ var SurveyModel = /** @class */ (function (_super) {
85078
85684
  * @param isPartial Pass `true` to save partial survey results (see [Continue an Incomplete Survey](https://surveyjs.io/form-library/documentation/handle-survey-results-continue-incomplete)).
85079
85685
  */
85080
85686
  SurveyModel.prototype.sendResult = function (postId, clientId, isPartial) {
85687
+ var _this = this;
85081
85688
  if (postId === void 0) { postId = null; }
85082
85689
  if (clientId === void 0) { clientId = null; }
85083
85690
  if (isPartial === void 0) { isPartial = false; }
@@ -85096,24 +85703,23 @@ var SurveyModel = /** @class */ (function (_super) {
85096
85703
  }
85097
85704
  if (isPartial && !this.clientId)
85098
85705
  return;
85099
- var self = this;
85100
- if (this.surveyShowDataSaving) {
85706
+ var service = this.createSurveyService();
85707
+ service.locale = this.getLocale();
85708
+ var showSaving = this.surveyShowDataSaving || (!isPartial && service.isSurveJSIOService);
85709
+ if (showSaving) {
85101
85710
  this.setCompletedState("saving", "");
85102
85711
  }
85103
- this.createSurveyService().sendResult(postId, this.data, function (success, response, request) {
85104
- if (self.surveyShowDataSaving) {
85712
+ service.sendResult(postId, this.data, function (success, response, request) {
85713
+ if (showSaving || service.isSurveJSIOService) {
85105
85714
  if (success) {
85106
- self.setCompletedState("success", "");
85715
+ _this.setCompletedState("success", "");
85107
85716
  }
85108
85717
  else {
85109
- self.setCompletedState("error", response);
85718
+ _this.setCompletedState("error", response);
85110
85719
  }
85111
85720
  }
85112
- self.onSendResult.fire(self, {
85113
- success: success,
85114
- response: response,
85115
- request: request,
85116
- });
85721
+ var options = { success: success, response: response, request: request };
85722
+ _this.onSendResult.fire(_this, options);
85117
85723
  }, this.clientId, isPartial);
85118
85724
  };
85119
85725
  /**
@@ -85751,7 +86357,7 @@ var SurveyModel = /** @class */ (function (_super) {
85751
86357
  if (locNotification !== "text") {
85752
86358
  this.tryGoNextPageAutomatic(name);
85753
86359
  }
85754
- var question = this.getQuestionByName(name);
86360
+ var question = this.getQuestionByValueName(name);
85755
86361
  if (question) {
85756
86362
  this.onValueChanged.fire(this, {
85757
86363
  name: commentName,
@@ -87076,7 +87682,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("survey", [
87076
87682
  {
87077
87683
  name: "showProgressBar",
87078
87684
  default: "off",
87079
- choices: ["off", "auto", "aboveHeader", "belowHeader", "bottom", "topBottom"],
87685
+ choices: ["off", "auto", "aboveheader", "belowheader", "bottom", "topbottom"],
87080
87686
  },
87081
87687
  {
87082
87688
  name: "progressBarType",
@@ -87715,11 +88321,9 @@ function createTOCListModel(survey, onAction) {
87715
88321
  var _a;
87716
88322
  var pagesSource = survey.questionsOnPageMode === "singlePage" ? (_a = survey.pages[0]) === null || _a === void 0 ? void 0 : _a.elements : survey.pages;
87717
88323
  var items = (pagesSource || []).map(function (page) {
87718
- var _a, _b;
87719
88324
  return new _actions_action__WEBPACK_IMPORTED_MODULE_0__["Action"]({
87720
88325
  id: page.name,
87721
- locTitle: ((_a = page.locNavigationTitle) === null || _a === void 0 ? void 0 : _a.text) ? page.locNavigationTitle : (((_b = page.locTitle) === null || _b === void 0 ? void 0 : _b.text) ? page.locTitle : undefined),
87722
- title: page.renderedNavigationTitle,
88326
+ locTitle: page.locNavigationTitle,
87723
88327
  action: function () {
87724
88328
  _global_variables_utils__WEBPACK_IMPORTED_MODULE_2__["DomDocumentHelper"].activeElementBlur();
87725
88329
  !!onAction && onAction();
@@ -88754,6 +89358,9 @@ var SurveyTriggerRunExpression = /** @class */ (function (_super) {
88754
89358
  enumerable: false,
88755
89359
  configurable: true
88756
89360
  });
89361
+ SurveyTriggerRunExpression.prototype.canBeExecuted = function (isOnNextPage) {
89362
+ return !isOnNextPage;
89363
+ };
88757
89364
  SurveyTriggerRunExpression.prototype.onSuccess = function (values, properties) {
88758
89365
  var _this = this;
88759
89366
  if (!this.owner || !this.runExpression)
@@ -88877,7 +89484,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_2__["Serializer"].addClass("runexpressiontr
88877
89484
  /*!********************************!*\
88878
89485
  !*** ./src/utils/animation.ts ***!
88879
89486
  \********************************/
88880
- /*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup */
89487
+ /*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab */
88881
89488
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
88882
89489
 
88883
89490
  "use strict";
@@ -88885,8 +89492,10 @@ __webpack_require__.r(__webpack_exports__);
88885
89492
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationUtils", function() { return AnimationUtils; });
88886
89493
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationPropertyUtils", function() { return AnimationPropertyUtils; });
88887
89494
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return AnimationGroupUtils; });
89495
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return AnimationProperty; });
88888
89496
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return AnimationBoolean; });
88889
89497
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return AnimationGroup; });
89498
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return AnimationTab; });
88890
89499
  /* harmony import */ var _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../global_variables_utils */ "./src/global_variables_utils.ts");
88891
89500
  /* harmony import */ var _taskmanager__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./taskmanager */ "./src/utils/taskmanager.ts");
88892
89501
  var __extends = (undefined && undefined.__extends) || (function () {
@@ -88915,6 +89524,9 @@ var AnimationUtils = /** @class */ (function () {
88915
89524
  return 0;
88916
89525
  return Number(value.slice(0, -1).replace(",", ".")) * 1000;
88917
89526
  };
89527
+ AnimationUtils.prototype.reflow = function (element) {
89528
+ return element.offsetHeight;
89529
+ };
88918
89530
  AnimationUtils.prototype.getAnimationsCount = function (element) {
88919
89531
  var animationName = "";
88920
89532
  if (getComputedStyle) {
@@ -88932,6 +89544,14 @@ var AnimationUtils = /** @class */ (function () {
88932
89544
  }
88933
89545
  return duration;
88934
89546
  };
89547
+ AnimationUtils.prototype.addCancelCallback = function (callback) {
89548
+ this.cancelQueue.push(callback);
89549
+ };
89550
+ AnimationUtils.prototype.removeCancelCallback = function (callback) {
89551
+ if (this.cancelQueue.indexOf(callback) >= 0) {
89552
+ this.cancelQueue.splice(this.cancelQueue.indexOf(callback), 1);
89553
+ }
89554
+ };
88935
89555
  AnimationUtils.prototype.onAnimationEnd = function (element, callback, options) {
88936
89556
  var _this = this;
88937
89557
  var cancelTimeout;
@@ -88941,7 +89561,7 @@ var AnimationUtils = /** @class */ (function () {
88941
89561
  options.onAfterRunAnimation && options.onAfterRunAnimation(element);
88942
89562
  callback(isCancel);
88943
89563
  clearTimeout(cancelTimeout);
88944
- _this.cancelQueue.splice(_this.cancelQueue.indexOf(onEndCallback), 1);
89564
+ _this.removeCancelCallback(onEndCallback);
88945
89565
  element.removeEventListener("animationend", onAnimationEndCallback);
88946
89566
  };
88947
89567
  var onAnimationEndCallback = function (event) {
@@ -88951,7 +89571,7 @@ var AnimationUtils = /** @class */ (function () {
88951
89571
  };
88952
89572
  if (animationsCount > 0) {
88953
89573
  element.addEventListener("animationend", onAnimationEndCallback);
88954
- this.cancelQueue.push(onEndCallback);
89574
+ this.addCancelCallback(onEndCallback);
88955
89575
  cancelTimeout = setTimeout(function () {
88956
89576
  onEndCallback(false);
88957
89577
  }, this.getAnimationDuration(element) + 10);
@@ -88961,40 +89581,51 @@ var AnimationUtils = /** @class */ (function () {
88961
89581
  }
88962
89582
  };
88963
89583
  AnimationUtils.prototype.beforeAnimationRun = function (element, options) {
88964
- if (element) {
89584
+ if (element && options) {
88965
89585
  options.onBeforeRunAnimation && options.onBeforeRunAnimation(element);
88966
89586
  }
88967
89587
  };
88968
- AnimationUtils.prototype.runLeaveAnimation = function (element, options, callback) {
89588
+ AnimationUtils.prototype.runAnimation = function (element, options, callback) {
88969
89589
  if (element && options.cssClass) {
89590
+ this.reflow(element);
88970
89591
  element.classList.add(options.cssClass);
88971
- var onAnimationEndCallback = function (isCancel) {
89592
+ this.onAnimationEnd(element, callback, options);
89593
+ }
89594
+ else {
89595
+ callback(true);
89596
+ }
89597
+ };
89598
+ AnimationUtils.prototype.clearHtmlElement = function (element, options) {
89599
+ if (element && options.cssClass) {
89600
+ element.classList.remove(options.cssClass);
89601
+ }
89602
+ };
89603
+ AnimationUtils.prototype.onNextRender = function (callback, runEarly, isCancel) {
89604
+ var _this = this;
89605
+ if (isCancel === void 0) { isCancel = false; }
89606
+ if (!isCancel && _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].isAvailable()) {
89607
+ var cancelCallback_1 = function () {
88972
89608
  callback();
88973
- if (isCancel) {
88974
- element.classList.remove(options.cssClass);
89609
+ cancelAnimationFrame(latestRAF_1);
89610
+ };
89611
+ var latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89612
+ if (runEarly && runEarly()) {
89613
+ callback();
89614
+ _this.removeCancelCallback(cancelCallback_1);
88975
89615
  }
88976
89616
  else {
88977
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
88978
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
88979
- element.classList.remove(options.cssClass);
88980
- });
89617
+ latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89618
+ callback();
89619
+ _this.removeCancelCallback(cancelCallback_1);
88981
89620
  });
88982
89621
  }
88983
- };
88984
- this.onAnimationEnd(element, onAnimationEndCallback, options);
89622
+ });
89623
+ this.addCancelCallback(cancelCallback_1);
88985
89624
  }
88986
89625
  else {
88987
89626
  callback();
88988
89627
  }
88989
89628
  };
88990
- AnimationUtils.prototype.runEnterAnimation = function (element, options) {
88991
- if (element && options.cssClass) {
88992
- element.classList.add(options.cssClass);
88993
- this.onAnimationEnd(element, function () {
88994
- element.classList.remove(options.cssClass);
88995
- }, options);
88996
- }
88997
- };
88998
89629
  AnimationUtils.prototype.cancel = function () {
88999
89630
  var cancelQueue = [].concat(this.cancelQueue);
89000
89631
  cancelQueue.forEach(function (callback) { return callback(); });
@@ -89008,26 +89639,28 @@ var AnimationPropertyUtils = /** @class */ (function (_super) {
89008
89639
  function AnimationPropertyUtils() {
89009
89640
  return _super !== null && _super.apply(this, arguments) || this;
89010
89641
  }
89011
- AnimationPropertyUtils.prototype.onEnter = function (getElement, options) {
89642
+ AnimationPropertyUtils.prototype.onEnter = function (options) {
89012
89643
  var _this = this;
89013
- var callback = function () {
89014
- var element = getElement();
89015
- _this.beforeAnimationRun(element, options);
89016
- _this.runEnterAnimation(element, options);
89017
- };
89018
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89019
- if (getElement()) {
89020
- callback();
89021
- }
89022
- else {
89023
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(callback);
89024
- }
89025
- });
89644
+ this.onNextRender(function () {
89645
+ var htmlElement = options.getAnimatedElement();
89646
+ var enterOptions = options.getEnterOptions();
89647
+ _this.beforeAnimationRun(htmlElement, enterOptions);
89648
+ _this.runAnimation(htmlElement, enterOptions, function () {
89649
+ _this.clearHtmlElement(htmlElement, enterOptions);
89650
+ });
89651
+ }, function () { return !!options.getAnimatedElement(); });
89026
89652
  };
89027
- AnimationPropertyUtils.prototype.onLeave = function (getElement, callback, options) {
89028
- var element = getElement();
89029
- this.beforeAnimationRun(element, options);
89030
- this.runLeaveAnimation(element, options, callback);
89653
+ AnimationPropertyUtils.prototype.onLeave = function (options, callback) {
89654
+ var _this = this;
89655
+ var htmlElement = options.getAnimatedElement();
89656
+ var leaveOptions = options.getLeaveOptions();
89657
+ this.beforeAnimationRun(htmlElement, leaveOptions);
89658
+ this.runAnimation(htmlElement, leaveOptions, function (isCancel) {
89659
+ callback();
89660
+ _this.onNextRender(function () {
89661
+ _this.clearHtmlElement(htmlElement, leaveOptions);
89662
+ }, undefined, isCancel);
89663
+ });
89031
89664
  };
89032
89665
  return AnimationPropertyUtils;
89033
89666
  }(AnimationUtils));
@@ -89037,41 +89670,40 @@ var AnimationGroupUtils = /** @class */ (function (_super) {
89037
89670
  function AnimationGroupUtils() {
89038
89671
  return _super !== null && _super.apply(this, arguments) || this;
89039
89672
  }
89040
- AnimationGroupUtils.prototype.onEnter = function (getElement, getOptions, elements) {
89673
+ AnimationGroupUtils.prototype.runGroupAnimation = function (options, addedElements, removedElements, callback) {
89041
89674
  var _this = this;
89042
- if (elements.length == 0)
89043
- return;
89044
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89045
- var callback = function () {
89046
- elements.forEach(function (el) {
89047
- _this.beforeAnimationRun(getElement(el), getOptions(el));
89048
- });
89049
- elements.forEach(function (el) {
89050
- _this.runEnterAnimation(getElement(el), getOptions(el));
89051
- });
89675
+ this.onNextRender(function () {
89676
+ var addedHtmlElements = addedElements.map(function (el) { return options.getAnimatedElement(el); });
89677
+ var enterOptions = addedElements.map(function (el) { return options.getEnterOptions(el); });
89678
+ var removedHtmlElements = removedElements.map(function (el) { return options.getAnimatedElement(el); });
89679
+ var leaveOptions = removedElements.map(function (el) { return options.getLeaveOptions(el); });
89680
+ addedElements.forEach(function (_, i) {
89681
+ _this.beforeAnimationRun(addedHtmlElements[i], enterOptions[i]);
89682
+ });
89683
+ removedElements.forEach(function (_, i) {
89684
+ _this.beforeAnimationRun(removedHtmlElements[i], leaveOptions[i]);
89685
+ });
89686
+ var counter = addedElements.length + removedElements.length;
89687
+ var onAnimationEndCallback = function (isCancel) {
89688
+ if (--counter <= 0) {
89689
+ callback && callback();
89690
+ _this.onNextRender(function () {
89691
+ addedElements.forEach(function (_, i) {
89692
+ _this.clearHtmlElement(addedHtmlElements[i], enterOptions[i]);
89693
+ });
89694
+ removedElements.forEach(function (_, i) {
89695
+ _this.clearHtmlElement(removedHtmlElements[i], leaveOptions[i]);
89696
+ });
89697
+ }, undefined, isCancel);
89698
+ }
89052
89699
  };
89053
- if (!getElement(elements[0])) {
89054
- _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(callback);
89055
- }
89056
- else {
89057
- callback();
89058
- }
89059
- });
89060
- };
89061
- AnimationGroupUtils.prototype.onLeave = function (getElement, callback, getOptions, elements) {
89062
- var _this = this;
89063
- elements.forEach(function (el) {
89064
- _this.beforeAnimationRun(getElement(el), getOptions(el));
89065
- });
89066
- var counter = elements.length;
89067
- var onEndCallback = function () {
89068
- if (--counter <= 0) {
89069
- callback();
89070
- }
89071
- };
89072
- elements.forEach(function (el) {
89073
- _this.runLeaveAnimation(getElement(el), getOptions(el), onEndCallback);
89074
- });
89700
+ addedElements.forEach(function (_, i) {
89701
+ _this.runAnimation(addedHtmlElements[i], enterOptions[i], onAnimationEndCallback);
89702
+ });
89703
+ removedElements.forEach(function (_, i) {
89704
+ _this.runAnimation(removedHtmlElements[i], leaveOptions[i], onAnimationEndCallback);
89705
+ });
89706
+ }, function () { return addedElements.length == 0 || addedElements.some(function (el) { return !!options.getAnimatedElement(el); }); });
89075
89707
  };
89076
89708
  return AnimationGroupUtils;
89077
89709
  }(AnimationUtils));
@@ -89092,6 +89724,7 @@ var AnimationProperty = /** @class */ (function () {
89092
89724
  this._debouncedSync.run(newValue);
89093
89725
  }
89094
89726
  else {
89727
+ this.cancel();
89095
89728
  this.update(newValue);
89096
89729
  }
89097
89730
  };
@@ -89101,6 +89734,7 @@ var AnimationProperty = /** @class */ (function () {
89101
89734
  };
89102
89735
  return AnimationProperty;
89103
89736
  }());
89737
+
89104
89738
  var AnimationBoolean = /** @class */ (function (_super) {
89105
89739
  __extends(AnimationBoolean, _super);
89106
89740
  function AnimationBoolean() {
@@ -89113,12 +89747,12 @@ var AnimationBoolean = /** @class */ (function (_super) {
89113
89747
  if (newValue !== this.getCurrentValue()) {
89114
89748
  if (newValue) {
89115
89749
  this.update(newValue);
89116
- this.animation.onEnter(function () { return _this.animationOptions.getAnimatedElement(); }, this.animationOptions.getEnterOptions());
89750
+ this.animation.onEnter(this.animationOptions);
89117
89751
  }
89118
89752
  else {
89119
- this.animation.onLeave(function () { return _this.animationOptions.getAnimatedElement(); }, function () {
89753
+ this.animation.onLeave(this.animationOptions, function () {
89120
89754
  _this.update(newValue);
89121
- }, this.animationOptions.getLeaveOptions());
89755
+ });
89122
89756
  }
89123
89757
  }
89124
89758
  else {
@@ -89140,19 +89774,42 @@ var AnimationGroup = /** @class */ (function (_super) {
89140
89774
  var oldValue = this.getCurrentValue();
89141
89775
  var itemsToAdd = newValue.filter(function (el) { return oldValue.indexOf(el) < 0; });
89142
89776
  var deletedItems = oldValue.filter(function (el) { return newValue.indexOf(el) < 0; });
89143
- this.animation.onEnter(function (el) { return _this.animationOptions.getAnimatedElement(el); }, function (el) { return _this.animationOptions.getEnterOptions(el); }, itemsToAdd);
89144
89777
  if (itemsToAdd.length == 0 && (deletedItems === null || deletedItems === void 0 ? void 0 : deletedItems.length) > 0) {
89145
- this.animation.onLeave(function (el) { return _this.animationOptions.getAnimatedElement(el); }, function () {
89146
- _this.update(newValue);
89147
- }, function (el) { return _this.animationOptions.getLeaveOptions(el); }, deletedItems);
89778
+ this.animation.runGroupAnimation(this.animationOptions, [], deletedItems, function () { return _this.update(newValue); });
89148
89779
  }
89149
89780
  else {
89150
89781
  this.update(newValue);
89782
+ this.animation.runGroupAnimation(this.animationOptions, itemsToAdd, []);
89151
89783
  }
89152
89784
  };
89153
89785
  return AnimationGroup;
89154
89786
  }(AnimationProperty));
89155
89787
 
89788
+ var AnimationTab = /** @class */ (function (_super) {
89789
+ __extends(AnimationTab, _super);
89790
+ function AnimationTab(animationOptions, update, getCurrentValue, mergeValues) {
89791
+ var _this = _super.call(this, animationOptions, update, getCurrentValue) || this;
89792
+ _this.mergeValues = mergeValues;
89793
+ _this.animation = new AnimationGroupUtils();
89794
+ return _this;
89795
+ }
89796
+ AnimationTab.prototype._sync = function (newValue) {
89797
+ var _this = this;
89798
+ var oldValue = [].concat(this.getCurrentValue());
89799
+ if (oldValue[0] !== newValue[0]) {
89800
+ var tempValue = !!this.mergeValues ? this.mergeValues(newValue, oldValue) : [].concat(oldValue, newValue);
89801
+ this.update(tempValue, true);
89802
+ this.animation.runGroupAnimation(this.animationOptions, newValue, oldValue, function () {
89803
+ _this.update(newValue);
89804
+ });
89805
+ }
89806
+ else {
89807
+ this.update(newValue);
89808
+ }
89809
+ };
89810
+ return AnimationTab;
89811
+ }(AnimationProperty));
89812
+
89156
89813
 
89157
89814
 
89158
89815
  /***/ }),