survey-react 1.9.139 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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.1
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
  */
@@ -1867,6 +1867,7 @@ var Base = /** @class */ (function () {
1867
1867
  */
1868
1868
  this.onItemValuePropertyChanged = this.addEvent();
1869
1869
  this.isCreating = true;
1870
+ this.animationAllowedLock = 0;
1870
1871
  this.bindingsValue = new Bindings(this);
1871
1872
  _jsonobject__WEBPACK_IMPORTED_MODULE_2__["CustomPropertiesCollection"].createProperties(this);
1872
1873
  this.onBaseCreating();
@@ -2787,6 +2788,22 @@ var Base = /** @class */ (function () {
2787
2788
  if (includeHidden === void 0) { includeHidden = false; }
2788
2789
  return [];
2789
2790
  };
2791
+ Object.defineProperty(Base.prototype, "animationAllowed", {
2792
+ get: function () {
2793
+ return this.getIsAnimationAllowed();
2794
+ },
2795
+ enumerable: false,
2796
+ configurable: true
2797
+ });
2798
+ Base.prototype.getIsAnimationAllowed = function () {
2799
+ return _settings__WEBPACK_IMPORTED_MODULE_3__["settings"].animationEnabled && this.animationAllowedLock >= 0 && !this.isLoadingFromJson && !this.isDisposed;
2800
+ };
2801
+ Base.prototype.blockAnimations = function () {
2802
+ this.animationAllowedLock--;
2803
+ };
2804
+ Base.prototype.releaseAnimations = function () {
2805
+ this.animationAllowedLock++;
2806
+ };
2790
2807
  Base.currentDependencis = undefined;
2791
2808
  return Base;
2792
2809
  }());
@@ -5503,7 +5520,11 @@ var defaultV2Css = {
5503
5520
  footer: "sd-paneldynamic__footer",
5504
5521
  panelFooter: "sd-paneldynamic__panel-footer",
5505
5522
  footerButtonsContainer: "sd-paneldynamic__buttons-container",
5523
+ panelsContainer: "sd-paneldynamic__panels-container",
5506
5524
  panelWrapperInRow: "sd-paneldynamic__panel-wrapper--in-row",
5525
+ panelWrapperFadeIn: "sd-paneldynamic__panel-wrapper--fade-in",
5526
+ panelWrapperFadeOut: "sd-paneldynamic__panel-wrapper--fade-out",
5527
+ panelWrapperList: "sd-paneldynamic__panel-wrapper--list",
5507
5528
  progressBtnIcon: "icon-progressbuttonv2",
5508
5529
  noEntriesPlaceholder: "sd-paneldynamic__placeholder sd-question__placeholder",
5509
5530
  compact: "sd-element--with-frame sd-element--compact",
@@ -5890,6 +5911,8 @@ var defaultV2Css = {
5890
5911
  errorsCellBottom: "sd-table__cell--error-bottom",
5891
5912
  itemCell: "sd-table__cell--item",
5892
5913
  row: "sd-table__row",
5914
+ rowFadeIn: "sd-table__row--fade-in",
5915
+ rowFadeOut: "sd-table__row--fade-out",
5893
5916
  expandedRow: "sd-table__row--expanded",
5894
5917
  rowHasPanel: "sd-table__row--has-panel",
5895
5918
  rowHasEndActions: "sd-table__row--has-end-actions",
@@ -5928,6 +5951,8 @@ var defaultV2Css = {
5928
5951
  content: "sd-matrixdynamic__content sd-question__content",
5929
5952
  cell: "sd-table__cell",
5930
5953
  row: "sd-table__row",
5954
+ rowFadeIn: "sd-table__row--fade-in",
5955
+ rowFadeOut: "sd-table__row--fade-out",
5931
5956
  rowHasPanel: "sd-table__row--has-panel",
5932
5957
  rowHasEndActions: "sd-table__row--has-end-actions",
5933
5958
  expandedRow: "sd-table__row--expanded",
@@ -8954,7 +8979,11 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
8954
8979
  __webpack_require__.r(__webpack_exports__);
8955
8980
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dxSurveyService", function() { return dxSurveyService; });
8956
8981
  /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
8982
+ /* harmony import */ var _surveyStrings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./surveyStrings */ "./src/surveyStrings.ts");
8983
+
8957
8984
 
8985
+ var surveyIOSite = "surveyjs.io";
8986
+ var surveyIOMaxPostSize = 65536;
8958
8987
  /**
8959
8988
  * The class contains methods to work with api.surveyjs.io service.
8960
8989
  */
@@ -8973,7 +9002,7 @@ var dxSurveyService = /** @class */ (function () {
8973
9002
  });
8974
9003
  dxSurveyService.prototype.loadSurvey = function (surveyId, onLoad) {
8975
9004
  var xhr = new XMLHttpRequest();
8976
- xhr.open("GET", dxSurveyService.serviceUrl + "/getSurvey?surveyId=" + surveyId);
9005
+ xhr.open("GET", this.serviceUrl + "/getSurvey?surveyId=" + surveyId);
8977
9006
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
8978
9007
  xhr.onload = function () {
8979
9008
  var result = JSON.parse(xhr.response);
@@ -8983,7 +9012,7 @@ var dxSurveyService = /** @class */ (function () {
8983
9012
  };
8984
9013
  dxSurveyService.prototype.getSurveyJsonAndIsCompleted = function (surveyId, clientId, onLoad) {
8985
9014
  var xhr = new XMLHttpRequest();
8986
- xhr.open("GET", dxSurveyService.serviceUrl +
9015
+ xhr.open("GET", this.serviceUrl +
8987
9016
  "/getSurveyAndIsCompleted?surveyId=" +
8988
9017
  surveyId +
8989
9018
  "&clientId=" +
@@ -8997,11 +9026,34 @@ var dxSurveyService = /** @class */ (function () {
8997
9026
  };
8998
9027
  xhr.send();
8999
9028
  };
9029
+ dxSurveyService.prototype.canSendResult = function (result) {
9030
+ if (!this.isSurveJSIOService)
9031
+ return true;
9032
+ var str = JSON.stringify(result);
9033
+ return str.length < surveyIOMaxPostSize;
9034
+ };
9035
+ Object.defineProperty(dxSurveyService.prototype, "isSurveJSIOService", {
9036
+ get: function () {
9037
+ return this.serviceUrl.indexOf(surveyIOSite) >= 0;
9038
+ },
9039
+ enumerable: false,
9040
+ configurable: true
9041
+ });
9000
9042
  dxSurveyService.prototype.sendResult = function (postId, result, onSendResult, clientId, isPartialCompleted) {
9043
+ if (clientId === void 0) { clientId = null; }
9044
+ if (isPartialCompleted === void 0) { isPartialCompleted = false; }
9045
+ if (!this.canSendResult(result)) {
9046
+ onSendResult(false, _surveyStrings__WEBPACK_IMPORTED_MODULE_1__["surveyLocalization"].getString("savingExceedSize", this.locale), undefined);
9047
+ }
9048
+ else {
9049
+ this.sendResultCore(postId, result, onSendResult, clientId, isPartialCompleted);
9050
+ }
9051
+ };
9052
+ dxSurveyService.prototype.sendResultCore = function (postId, result, onSendResult, clientId, isPartialCompleted) {
9001
9053
  if (clientId === void 0) { clientId = null; }
9002
9054
  if (isPartialCompleted === void 0) { isPartialCompleted = false; }
9003
9055
  var xhr = new XMLHttpRequest();
9004
- xhr.open("POST", dxSurveyService.serviceUrl + "/post/");
9056
+ xhr.open("POST", this.serviceUrl + "/post/");
9005
9057
  xhr.setRequestHeader("Content-Type", "application/json; charset=utf-8");
9006
9058
  var data = { postId: postId, surveyResult: JSON.stringify(result) };
9007
9059
  if (clientId)
@@ -9009,7 +9061,6 @@ var dxSurveyService = /** @class */ (function () {
9009
9061
  if (isPartialCompleted)
9010
9062
  data["isPartialCompleted"] = true;
9011
9063
  var dataStringify = JSON.stringify(data);
9012
- var self = this;
9013
9064
  xhr.onload = xhr.onerror = function () {
9014
9065
  if (!onSendResult)
9015
9066
  return;
@@ -9024,7 +9075,7 @@ var dxSurveyService = /** @class */ (function () {
9024
9075
  return;
9025
9076
  onSendFile(xhr.status == 200, JSON.parse(xhr.response));
9026
9077
  };
9027
- xhr.open("POST", dxSurveyService.serviceUrl + "/upload/", true);
9078
+ xhr.open("POST", this.serviceUrl + "/upload/", true);
9028
9079
  var formData = new FormData();
9029
9080
  formData.append("file", file);
9030
9081
  formData.append("postId", postId);
@@ -9033,7 +9084,7 @@ var dxSurveyService = /** @class */ (function () {
9033
9084
  dxSurveyService.prototype.getResult = function (resultId, name, onGetResult) {
9034
9085
  var xhr = new XMLHttpRequest();
9035
9086
  var data = "resultId=" + resultId + "&name=" + name;
9036
- xhr.open("GET", dxSurveyService.serviceUrl + "/getResult?" + data);
9087
+ xhr.open("GET", this.serviceUrl + "/getResult?" + data);
9037
9088
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
9038
9089
  var self = this;
9039
9090
  xhr.onload = function () {
@@ -9054,7 +9105,7 @@ var dxSurveyService = /** @class */ (function () {
9054
9105
  dxSurveyService.prototype.isCompleted = function (resultId, clientId, onIsCompleted) {
9055
9106
  var xhr = new XMLHttpRequest();
9056
9107
  var data = "resultId=" + resultId + "&clientId=" + clientId;
9057
- xhr.open("GET", dxSurveyService.serviceUrl + "/isCompleted?" + data);
9108
+ xhr.open("GET", this.serviceUrl + "/isCompleted?" + data);
9058
9109
  xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
9059
9110
  var self = this;
9060
9111
  xhr.onload = function () {
@@ -9066,6 +9117,13 @@ var dxSurveyService = /** @class */ (function () {
9066
9117
  };
9067
9118
  xhr.send();
9068
9119
  };
9120
+ Object.defineProperty(dxSurveyService.prototype, "serviceUrl", {
9121
+ get: function () {
9122
+ return dxSurveyService.serviceUrl || "";
9123
+ },
9124
+ enumerable: false,
9125
+ configurable: true
9126
+ });
9069
9127
  return dxSurveyService;
9070
9128
  }());
9071
9129
 
@@ -9747,8 +9805,8 @@ __webpack_require__.r(__webpack_exports__);
9747
9805
 
9748
9806
  var Version;
9749
9807
  var ReleaseDate;
9750
- Version = "" + "1.9.139";
9751
- ReleaseDate = "" + "2024-04-16";
9808
+ Version = "" + "1.10.1";
9809
+ ReleaseDate = "" + "2024-04-25";
9752
9810
  function checkLibraryVersion(ver, libraryName) {
9753
9811
  if (Version != ver) {
9754
9812
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -9929,7 +9987,7 @@ function checkPrefix(prefix) {
9929
9987
  /*!**************************************!*\
9930
9988
  !*** ./src/entries/core-wo-model.ts ***!
9931
9989
  \**************************************/
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 */
9990
+ /*! 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
9991
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9934
9992
 
9935
9993
  "use strict";
@@ -10381,10 +10439,14 @@ __webpack_require__.r(__webpack_exports__);
10381
10439
 
10382
10440
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroupUtils"]; });
10383
10441
 
10442
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationProperty"]; });
10443
+
10384
10444
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationBoolean"]; });
10385
10445
 
10386
10446
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"]; });
10387
10447
 
10448
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationTab"]; });
10449
+
10388
10450
  /* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../actions/adaptive-container */ "./src/actions/adaptive-container.ts");
10389
10451
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__["AdaptiveActionContainer"]; });
10390
10452
 
@@ -10420,7 +10482,7 @@ __webpack_require__.r(__webpack_exports__);
10420
10482
  /*!*****************************!*\
10421
10483
  !*** ./src/entries/core.ts ***!
10422
10484
  \*****************************/
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 */
10485
+ /*! 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
10486
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10425
10487
 
10426
10488
  "use strict";
@@ -10864,10 +10926,14 @@ __webpack_require__.r(__webpack_exports__);
10864
10926
 
10865
10927
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
10866
10928
 
10929
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
10930
+
10867
10931
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
10868
10932
 
10869
10933
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
10870
10934
 
10935
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
10936
+
10871
10937
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
10872
10938
 
10873
10939
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
@@ -11301,7 +11367,7 @@ __webpack_require__.r(__webpack_exports__);
11301
11367
  /*!******************************!*\
11302
11368
  !*** ./src/entries/react.ts ***!
11303
11369
  \******************************/
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 */
11370
+ /*! 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, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent, SvgBundleComponent */
11305
11371
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
11306
11372
 
11307
11373
  "use strict";
@@ -11745,10 +11811,14 @@ __webpack_require__.r(__webpack_exports__);
11745
11811
 
11746
11812
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
11747
11813
 
11814
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
11815
+
11748
11816
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
11749
11817
 
11750
11818
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
11751
11819
 
11820
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
11821
+
11752
11822
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
11753
11823
 
11754
11824
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
@@ -22349,6 +22419,7 @@ var arabicSurveyStrings = {
22349
22419
  savingData: "يتم حفظ النتائج على الخادم ...",
22350
22420
  savingDataError: "حدث خطأ ولم نتمكن من حفظ النتائج.",
22351
22421
  savingDataSuccess: "تم حفظ النتائج بنجاح!",
22422
+ savingExceedSize: "ردك يتجاوز 64 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع.",
22352
22423
  saveAgainButton: "حاول مجددا",
22353
22424
  timerMin: "دقيقة",
22354
22425
  timerSec: "ثانية",
@@ -22360,6 +22431,7 @@ var arabicSurveyStrings = {
22360
22431
  timerLimitSurvey: "لقد أنفقت {0} من إجمالي {1}.",
22361
22432
  clearCaption: "واضح",
22362
22433
  signaturePlaceHolder: "وقع هنا",
22434
+ signaturePlaceHolderReadOnly: "لا يوجد توقيع",
22363
22435
  chooseFileCaption: "اختر ملف",
22364
22436
  takePhotoCaption: "التقاط صورة",
22365
22437
  photoPlaceholder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
@@ -22416,7 +22488,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
22416
22488
  // ok: "OK" => "موافق"
22417
22489
  // cancel: "Cancel" => "إلغاء الأمر"
22418
22490
  // refuseItemText: "Refuse to answer" => "رفض الإجابة"
22419
- // dontKnowItemText: "Don't know" => "لا أعرف"
22491
+ // 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 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع."
22492
+ // signaturePlaceHolderReadOnly: "No signature" => "لا يوجد توقيع"
22420
22493
 
22421
22494
 
22422
22495
  /***/ }),
@@ -22502,6 +22575,7 @@ var basqueSurveyStrings = {
22502
22575
  savingData: "Erantzunak zerbitzarian gordetzen ari dira...",
22503
22576
  savingDataError: "Erroreren bat gertatu eta erantzunak ez dira zerbitzarian gorde ahal izan.",
22504
22577
  savingDataSuccess: "Erantzunak egoki gorde dira!",
22578
+ savingExceedSize: "Erantzuna 64 KB-tik gorakoa da. Murriztu artxiboaren tamaina, eta berriro saiatu edo jarri harremanetan inkesta baten jabearekin.",
22505
22579
  saveAgainButton: "Berriro saiatu.",
22506
22580
  timerMin: "min",
22507
22581
  timerSec: "seg",
@@ -22513,6 +22587,7 @@ var basqueSurveyStrings = {
22513
22587
  timerLimitSurvey: "Zuk orotara {0} gastatu duzu {1}-(e)tik.",
22514
22588
  clearCaption: "Hustu",
22515
22589
  signaturePlaceHolder: "Sinatu hemen",
22590
+ signaturePlaceHolderReadOnly: "Sinadurarik gabe",
22516
22591
  chooseFileCaption: "Fitxategia hautatu",
22517
22592
  takePhotoCaption: "Argazkia hartu",
22518
22593
  photoPlaceholder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
@@ -22562,7 +22637,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
22562
22637
  // ok: "OK" => "Ados"
22563
22638
  // cancel: "Cancel" => "Ezeztatu"
22564
22639
  // refuseItemText: "Refuse to answer" => "Erantzuteari uko egin"
22565
- // dontKnowItemText: "Don't know" => "Ez dakit"
22640
+ // 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."
22641
+ // signaturePlaceHolderReadOnly: "No signature" => "Sinadurarik gabe"
22566
22642
 
22567
22643
 
22568
22644
  /***/ }),
@@ -22648,6 +22724,7 @@ var bulgarianStrings = {
22648
22724
  savingData: "Резултатите се запазват на сървъра...",
22649
22725
  savingDataError: "Поради възникнала грешка резултатите не можаха да бъдат запазени.",
22650
22726
  savingDataSuccess: "Резултатите бяха запазени успешно!",
22727
+ savingExceedSize: "Вашият отговор надхвърля 64KB. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването.",
22651
22728
  saveAgainButton: "Нов опит",
22652
22729
  timerMin: "мин",
22653
22730
  timerSec: "сек",
@@ -22659,6 +22736,7 @@ var bulgarianStrings = {
22659
22736
  timerLimitSurvey: "Вие използвахте общо {0} от {1}.",
22660
22737
  clearCaption: "Начално състояние",
22661
22738
  signaturePlaceHolder: "Подпишете тук",
22739
+ signaturePlaceHolderReadOnly: "Няма подпис",
22662
22740
  chooseFileCaption: "Изберете файл",
22663
22741
  takePhotoCaption: "Направете снимка",
22664
22742
  photoPlaceholder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
@@ -22715,7 +22793,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
22715
22793
  // ok: "OK" => "Добре"
22716
22794
  // cancel: "Cancel" => "Отмени"
22717
22795
  // refuseItemText: "Refuse to answer" => "Отказва да отговори"
22718
- // dontKnowItemText: "Don't know" => "Не знам"
22796
+ // 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. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването."
22797
+ // signaturePlaceHolderReadOnly: "No signature" => "Няма подпис"
22719
22798
 
22720
22799
 
22721
22800
  /***/ }),
@@ -22801,6 +22880,7 @@ var catalanSurveyStrings = {
22801
22880
  savingData: "Els resultats s'estan guardant al servidor...",
22802
22881
  savingDataError: "S'ha produït un error i no hem pogut guardar els resultats.",
22803
22882
  savingDataSuccess: "Els resultats es van salvar amb èxit!",
22883
+ 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
22884
  saveAgainButton: "Prova una altra vegada",
22805
22885
  timerMin: "min",
22806
22886
  timerSec: "Seg",
@@ -22812,6 +22892,7 @@ var catalanSurveyStrings = {
22812
22892
  timerLimitSurvey: "Has gastat {0} d'{1} en total.",
22813
22893
  clearCaption: "Clar",
22814
22894
  signaturePlaceHolder: "Inscriu-te aquí",
22895
+ signaturePlaceHolderReadOnly: "Sense signatura",
22815
22896
  chooseFileCaption: "Tria un fitxer",
22816
22897
  takePhotoCaption: "Fer foto",
22817
22898
  photoPlaceholder: "Feu clic al botó següent per fer una foto amb la càmera.",
@@ -22908,7 +22989,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
22908
22989
  // ok: "OK" => "D'ACORD"
22909
22990
  // cancel: "Cancel" => "Cancel·lar"
22910
22991
  // refuseItemText: "Refuse to answer" => "Negar-se a respondre"
22911
- // dontKnowItemText: "Don't know" => "No sé"
22992
+ // 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."
22993
+ // signaturePlaceHolderReadOnly: "No signature" => "Sense signatura"
22912
22994
 
22913
22995
 
22914
22996
  /***/ }),
@@ -22994,6 +23076,7 @@ var croatianStrings = {
22994
23076
  savingData: "Rezultati se spremaju na poslužitelju...",
22995
23077
  savingDataError: "Došlo je do pogreške i nismo mogli spremiti rezultate.",
22996
23078
  savingDataSuccess: "Rezultati su uspješno spremljeni!",
23079
+ savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovno ili se obratite vlasniku upitnika.",
22997
23080
  saveAgainButton: "Pokušaj ponovo",
22998
23081
  timerMin: "min",
22999
23082
  timerSec: "sec",
@@ -23005,6 +23088,7 @@ var croatianStrings = {
23005
23088
  timerLimitSurvey: "Ukupno ste potrošili {0} od {1}.",
23006
23089
  clearCaption: "Očistiti",
23007
23090
  signaturePlaceHolder: "Potpiši ovdje",
23091
+ signaturePlaceHolderReadOnly: "Bez potpisa",
23008
23092
  chooseFileCaption: "Odaberite datoteku",
23009
23093
  takePhotoCaption: "Snimi fotografiju",
23010
23094
  photoPlaceholder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
@@ -23059,7 +23143,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
23059
23143
  // ok: "OK" => "OK"
23060
23144
  // cancel: "Cancel" => "Otkazati"
23061
23145
  // refuseItemText: "Refuse to answer" => "Odbijte odgovoriti"
23062
- // dontKnowItemText: "Don't know" => "Ne znam"
23146
+ // 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."
23147
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
23063
23148
 
23064
23149
 
23065
23150
  /***/ }),
@@ -23145,6 +23230,7 @@ var czechSurveyStrings = {
23145
23230
  savingData: "Výsledky se ukládají na server...",
23146
23231
  savingDataError: "Došlo k chybě a výsledky jsme nemohli uložit.",
23147
23232
  savingDataSuccess: "Výsledky byly úspěšně uloženy!",
23233
+ 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
23234
  saveAgainButton: "Zkuste to znovu",
23149
23235
  timerMin: "min",
23150
23236
  timerSec: "sek",
@@ -23156,6 +23242,7 @@ var czechSurveyStrings = {
23156
23242
  timerLimitSurvey: "Celkově jste strávil/a {0} z {1}.",
23157
23243
  clearCaption: "Vymazat",
23158
23244
  signaturePlaceHolder: "Podepište se zde",
23245
+ signaturePlaceHolderReadOnly: "Bez podpisu",
23159
23246
  chooseFileCaption: "Vyberte soubor",
23160
23247
  takePhotoCaption: "Pořídit fotografii",
23161
23248
  photoPlaceholder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
@@ -23212,7 +23299,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
23212
23299
  // ok: "OK" => "OK"
23213
23300
  // cancel: "Cancel" => "Zrušit"
23214
23301
  // refuseItemText: "Refuse to answer" => "Odmítnout odpovědět"
23215
- // dontKnowItemText: "Don't know" => "Nevím"
23302
+ // 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."
23303
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
23216
23304
 
23217
23305
 
23218
23306
  /***/ }),
@@ -23298,6 +23386,7 @@ var danishSurveyStrings = {
23298
23386
  savingData: "Resultaterne bliver gemt på serveren...",
23299
23387
  savingDataError: "Der opstod en fejl og vi kunne ikke gemme resultatet.",
23300
23388
  savingDataSuccess: "Resultatet blev gemt!",
23389
+ savingExceedSize: "Dit svar overstiger 64 KB. Reducer størrelsen på din(e) fil(er), og prøv igen, eller kontakt en undersøgelsesejer.",
23301
23390
  saveAgainButton: "Prøv igen",
23302
23391
  timerMin: "min",
23303
23392
  timerSec: "sek",
@@ -23309,6 +23398,7 @@ var danishSurveyStrings = {
23309
23398
  timerLimitSurvey: "Du har brugt {0} af {1} i alt.",
23310
23399
  clearCaption: "Fjern",
23311
23400
  signaturePlaceHolder: "Tilmeld dig her",
23401
+ signaturePlaceHolderReadOnly: "Ingen underskrift",
23312
23402
  chooseFileCaption: "Vælg fil",
23313
23403
  takePhotoCaption: "Tag billede",
23314
23404
  photoPlaceholder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
@@ -23365,7 +23455,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
23365
23455
  // ok: "OK" => "OK"
23366
23456
  // cancel: "Cancel" => "Aflyse"
23367
23457
  // refuseItemText: "Refuse to answer" => "Nægt at svare"
23368
- // dontKnowItemText: "Don't know" => "Ved ikke"
23458
+ // 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."
23459
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen underskrift"
23369
23460
 
23370
23461
 
23371
23462
  /***/ }),
@@ -23451,6 +23542,7 @@ var dutchSurveyStrings = {
23451
23542
  savingData: "De resultaten worden bewaard op de server...",
23452
23543
  savingDataError: "Er was een probleem en we konden de resultaten niet bewaren.",
23453
23544
  savingDataSuccess: "De resultaten werden succesvol bewaard!",
23545
+ 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
23546
  saveAgainButton: "Probeer opnieuw",
23455
23547
  timerMin: "minimum",
23456
23548
  timerSec: "sec",
@@ -23462,6 +23554,7 @@ var dutchSurveyStrings = {
23462
23554
  timerLimitSurvey: "U heeft {0} van {1} in het totaal.",
23463
23555
  clearCaption: "Verwijder",
23464
23556
  signaturePlaceHolder: "Hier tekenen",
23557
+ signaturePlaceHolderReadOnly: "Geen handtekening",
23465
23558
  chooseFileCaption: "Gekozen bestand",
23466
23559
  takePhotoCaption: "Foto maken",
23467
23560
  photoPlaceholder: "Klik op de onderstaande knop om een foto te maken met de camera.",
@@ -23516,7 +23609,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
23516
23609
  // ok: "OK" => "OK"
23517
23610
  // cancel: "Cancel" => "Annuleren"
23518
23611
  // refuseItemText: "Refuse to answer" => "Weiger te antwoorden"
23519
- // dontKnowItemText: "Don't know" => "Weet niet"
23612
+ // 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."
23613
+ // signaturePlaceHolderReadOnly: "No signature" => "Geen handtekening"
23520
23614
 
23521
23615
 
23522
23616
  /***/ }),
@@ -23602,6 +23696,7 @@ var englishStrings = {
23602
23696
  savingData: "The results are being saved on the server...",
23603
23697
  savingDataError: "An error occurred and we could not save the results.",
23604
23698
  savingDataSuccess: "The results were saved successfully!",
23699
+ savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner.",
23605
23700
  saveAgainButton: "Try again",
23606
23701
  timerMin: "min",
23607
23702
  timerSec: "sec",
@@ -23728,6 +23823,7 @@ var estonianSurveyStrings = {
23728
23823
  savingData: "Salvestan andmed serveris...",
23729
23824
  savingDataError: "Tekkis viga ning me ei saanud vastuseid salvestada.",
23730
23825
  savingDataSuccess: "Vastuste salvestamine õnnestus!",
23826
+ savingExceedSize: "Teie vastus ületab 64 KB. Vähendage faili(de) mahtu ja proovige uuesti või võtke ühendust uuringu omanikuga.",
23731
23827
  saveAgainButton: "Proovi uuesti",
23732
23828
  timerMin: "min",
23733
23829
  timerSec: "sek",
@@ -23739,6 +23835,7 @@ var estonianSurveyStrings = {
23739
23835
  timerLimitSurvey: "Oled kulutanud {0} võimalikust {1} koguajast.",
23740
23836
  clearCaption: "Puhasta",
23741
23837
  signaturePlaceHolder: "Allkirjasta siin",
23838
+ signaturePlaceHolderReadOnly: "Allkiri puudub",
23742
23839
  chooseFileCaption: "Vali fail",
23743
23840
  takePhotoCaption: "Pildistamine",
23744
23841
  photoPlaceholder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
@@ -23795,7 +23892,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
23795
23892
  // ok: "OK" => "OK"
23796
23893
  // cancel: "Cancel" => "Tühistama"
23797
23894
  // refuseItemText: "Refuse to answer" => "Keeldu vastamast"
23798
- // dontKnowItemText: "Don't know" => "Ei tea"
23895
+ // 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."
23896
+ // signaturePlaceHolderReadOnly: "No signature" => "Allkiri puudub"
23799
23897
 
23800
23898
 
23801
23899
  /***/ }),
@@ -23881,6 +23979,7 @@ var finnishSurveyStrings = {
23881
23979
  savingData: "Tietoja tallennetaan palvelimelle...",
23882
23980
  savingDataError: "Tapahtui virhe, emmekä voineet tallentaa kyselyn tietoja.",
23883
23981
  savingDataSuccess: "Tiedot tallennettiin onnistuneesti!",
23982
+ savingExceedSize: "Vastauksesi ylittää 64 kt. Pienennä tiedostojesi kokoa ja yritä uudelleen tai ota yhteyttä kyselyn omistajaan.",
23884
23983
  saveAgainButton: "Yritä uudelleen",
23885
23984
  timerMin: "min",
23886
23985
  timerSec: "sek",
@@ -23892,6 +23991,7 @@ var finnishSurveyStrings = {
23892
23991
  timerLimitSurvey: "Olet käyttänyt yhteensä {0} / {1}.",
23893
23992
  clearCaption: "Tyhjennä",
23894
23993
  signaturePlaceHolder: "Allekirjoita tähän",
23994
+ signaturePlaceHolderReadOnly: "Ei allekirjoitusta",
23895
23995
  chooseFileCaption: "Valitse tiedosto",
23896
23996
  takePhotoCaption: "Ota valokuva",
23897
23997
  photoPlaceholder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
@@ -23936,7 +24036,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
23936
24036
  // ok: "OK" => "OKEI"
23937
24037
  // cancel: "Cancel" => "Perua"
23938
24038
  // refuseItemText: "Refuse to answer" => "Kieltäydy vastaamasta"
23939
- // dontKnowItemText: "Don't know" => "Ei tiedä"
24039
+ // 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."
24040
+ // signaturePlaceHolderReadOnly: "No signature" => "Ei allekirjoitusta"
23940
24041
 
23941
24042
 
23942
24043
  /***/ }),
@@ -24022,6 +24123,7 @@ var frenchSurveyStrings = {
24022
24123
  savingData: "Les résultats sont en cours de sauvegarde sur le serveur...",
24023
24124
  savingDataError: "Une erreur est survenue et a empêché la sauvegarde des résultats.",
24024
24125
  savingDataSuccess: "Les résultats ont bien été enregistrés !",
24126
+ 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
24127
  saveAgainButton: "Réessayer",
24026
24128
  timerMin: "min",
24027
24129
  timerSec: "sec",
@@ -24033,6 +24135,7 @@ var frenchSurveyStrings = {
24033
24135
  timerLimitSurvey: "Vous avez passé {0} sur {1} au total.",
24034
24136
  clearCaption: "Vider",
24035
24137
  signaturePlaceHolder: "Signez ici",
24138
+ signaturePlaceHolderReadOnly: "Pas de signature",
24036
24139
  chooseFileCaption: "Ajouter un fichier",
24037
24140
  takePhotoCaption: "Prendre une photo",
24038
24141
  photoPlaceholder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
@@ -24077,7 +24180,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
24077
24180
  // ok: "OK" => "D’ACCORD"
24078
24181
  // cancel: "Cancel" => "Annuler"
24079
24182
  // refuseItemText: "Refuse to answer" => "Refuser de répondre"
24080
- // dontKnowItemText: "Don't know" => "Sais pas"
24183
+ // 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."
24184
+ // signaturePlaceHolderReadOnly: "No signature" => "Pas de signature"
24081
24185
 
24082
24186
 
24083
24187
  /***/ }),
@@ -24163,6 +24267,7 @@ var georgianSurveyStrings = {
24163
24267
  savingData: "შედეგები ინახება სერვერზე...",
24164
24268
  savingDataError: "დაფიქსირდა შეცდომა და შედეგი ვერ შევინახავდით.",
24165
24269
  savingDataSuccess: "შედეგები წარმატებით გადაარჩინეს!",
24270
+ savingExceedSize: "თქვენი პასუხი აღემატება 64KB. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს.",
24166
24271
  saveAgainButton: "კიდევ სცადე",
24167
24272
  timerMin: "წთ",
24168
24273
  timerSec: "წმ",
@@ -24174,6 +24279,7 @@ var georgianSurveyStrings = {
24174
24279
  timerLimitSurvey: "თქვენ სულ {1} {0} დახარჯეთ.",
24175
24280
  clearCaption: "მოწმენდილი ცა",
24176
24281
  signaturePlaceHolder: "შესვლა აქ",
24282
+ signaturePlaceHolderReadOnly: "ხელმოწერა არ არის",
24177
24283
  chooseFileCaption: "ვაუჩერის ნახვა",
24178
24284
  takePhotoCaption: "გადაიღეთ ფოტო",
24179
24285
  photoPlaceholder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
@@ -24283,7 +24389,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
24283
24389
  // ok: "OK" => "კარგი"
24284
24390
  // cancel: "Cancel" => "გაუქმება"
24285
24391
  // refuseItemText: "Refuse to answer" => "უარი პასუხზე"
24286
- // dontKnowItemText: "Don't know" => "არ ვიცი"
24392
+ // 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. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს."
24393
+ // signaturePlaceHolderReadOnly: "No signature" => "ხელმოწერა არ არის"
24287
24394
 
24288
24395
 
24289
24396
  /***/ }),
@@ -24369,6 +24476,7 @@ var germanSurveyStrings = {
24369
24476
  savingData: "Die Ergebnisse werden auf dem Server gespeichert...",
24370
24477
  savingDataError: "Es ist ein Fehler aufgetreten. Die Ergebnisse konnten nicht gespeichert werden.",
24371
24478
  savingDataSuccess: "Die Ergebnisse wurden gespeichert!",
24479
+ savingExceedSize: "Ihre Antwort überschreitet 64 KB. Reduzieren Sie die Größe Ihrer Datei(en) und versuchen Sie es erneut, oder wenden Sie sich an einen Umfragebesitzer.",
24372
24480
  saveAgainButton: "Erneut absenden",
24373
24481
  timerMin: "Min.",
24374
24482
  timerSec: "Sek.",
@@ -24380,6 +24488,7 @@ var germanSurveyStrings = {
24380
24488
  timerLimitSurvey: "Sie haben insgesamt {0} von {1} gebraucht.",
24381
24489
  clearCaption: "Auswahl entfernen",
24382
24490
  signaturePlaceHolder: "Hier unterschreiben",
24491
+ signaturePlaceHolderReadOnly: "Keine Unterschrift",
24383
24492
  chooseFileCaption: "Datei auswählen",
24384
24493
  takePhotoCaption: "Foto machen",
24385
24494
  photoPlaceholder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
@@ -24423,6 +24532,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"]
24423
24532
  // cancel: "Cancel" => "Abbrechen"
24424
24533
  // refuseItemText: "Refuse to answer" => "Verweigern Sie die Antwort"
24425
24534
  // dontKnowItemText: "Don't know" => "Weiß ich nicht"
24535
+ // savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ihre Antwort überschreitet 64 KB. Reduzieren Sie die Größe Ihrer Datei(en) und versuchen Sie es erneut, oder wenden Sie sich an einen Umfragebesitzer."
24536
+ // signaturePlaceHolderReadOnly: "No signature" => "Keine Unterschrift"
24426
24537
 
24427
24538
 
24428
24539
  /***/ }),
@@ -24508,6 +24619,7 @@ var greekSurveyStrings = {
24508
24619
  savingData: "Τα αποτελέσματα αποθηκεύονται στον διακομιστή ...",
24509
24620
  savingDataError: "Παρουσιάστηκε σφάλμα και δεν ήταν δυνατή η αποθήκευση των αποτελεσμάτων.",
24510
24621
  savingDataSuccess: "Τα αποτελέσματα αποθηκεύτηκαν με επιτυχία!",
24622
+ savingExceedSize: "Η απάντησή σας υπερβαίνει τα 64KB. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας.",
24511
24623
  saveAgainButton: "Προσπάθησε ξανά",
24512
24624
  timerMin: "ελάχ",
24513
24625
  timerSec: "δευτ",
@@ -24519,6 +24631,7 @@ var greekSurveyStrings = {
24519
24631
  timerLimitSurvey: "Έχετε ξοδέψει {0} από {1} συνολικά.",
24520
24632
  clearCaption: "Εκκαθάριση",
24521
24633
  signaturePlaceHolder: "Υπογράψτε εδώ",
24634
+ signaturePlaceHolderReadOnly: "Χωρίς υπογραφή",
24522
24635
  chooseFileCaption: "Επιλέξτε αρχείο",
24523
24636
  takePhotoCaption: "Λήψη φωτογραφίας",
24524
24637
  photoPlaceholder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
@@ -24560,7 +24673,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
24560
24673
  // ok: "OK" => "OK"
24561
24674
  // cancel: "Cancel" => "Ακυρώνω"
24562
24675
  // refuseItemText: "Refuse to answer" => "Αρνηθείτε να απαντήσετε"
24563
- // dontKnowItemText: "Don't know" => "Δεν ξέρω"
24676
+ // 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. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας."
24677
+ // signaturePlaceHolderReadOnly: "No signature" => "Χωρίς υπογραφή"
24564
24678
 
24565
24679
 
24566
24680
  /***/ }),
@@ -24646,6 +24760,7 @@ var hebrewSurveyStrings = {
24646
24760
  savingData: "התוצאות נשמרות בשרת ...",
24647
24761
  savingDataError: "אירעה שגיאה ולא הצלחנו לשמור את התוצאות.",
24648
24762
  savingDataSuccess: "התוצאות נשמרו בהצלחה!",
24763
+ savingExceedSize: "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר.",
24649
24764
  saveAgainButton: "נסה שוב",
24650
24765
  timerMin: "דקה",
24651
24766
  timerSec: "שניות",
@@ -24657,6 +24772,7 @@ var hebrewSurveyStrings = {
24657
24772
  timerLimitSurvey: "הוצאת סכום כולל של {0} מתוך {1}.",
24658
24773
  clearCaption: "לנקות",
24659
24774
  signaturePlaceHolder: "חתום כאן",
24775
+ signaturePlaceHolderReadOnly: "אין חתימה",
24660
24776
  chooseFileCaption: "בחר קובץ",
24661
24777
  takePhotoCaption: "צלם תמונה",
24662
24778
  photoPlaceholder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
@@ -24714,6 +24830,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
24714
24830
  // cancel: "Cancel" => "ביטל"
24715
24831
  // refuseItemText: "Refuse to answer" => "מסרבים לענות"
24716
24832
  // dontKnowItemText: "Don't know" => "לא יודע"
24833
+ // savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר."
24834
+ // signaturePlaceHolderReadOnly: "No signature" => "אין חתימה"
24717
24835
 
24718
24836
 
24719
24837
  /***/ }),
@@ -24799,6 +24917,7 @@ var hindiStrings = {
24799
24917
  savingData: "परिणाम सर्वर पर सेव हो रहे हैं",
24800
24918
  savingDataError: "एक त्रुटि हुई और हम परिणामों को नहीं सेव कर सके",
24801
24919
  savingDataSuccess: "परिणाम सफलतापूर्वक सेव हो गए",
24920
+ savingExceedSize: "आपकी प्रतिक्रिया 64KB से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें.",
24802
24921
  saveAgainButton: "फिर कोशिश करो",
24803
24922
  timerMin: "मिनट",
24804
24923
  timerSec: "सेकंड",
@@ -24810,6 +24929,7 @@ var hindiStrings = {
24810
24929
  timerLimitSurvey: "आपने कुल {1} की {0} खर्च की है",
24811
24930
  clearCaption: "स्पष्ट",
24812
24931
  signaturePlaceHolder: "यहां साइन करें",
24932
+ signaturePlaceHolderReadOnly: "कोई हस्ताक्षर नहीं",
24813
24933
  chooseFileCaption: "फ़ाइल चुनें",
24814
24934
  takePhotoCaption: "फोटो ले लो",
24815
24935
  photoPlaceholder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
@@ -24866,7 +24986,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
24866
24986
  // hideDetails: "Hide Details" => "विवरण छुपाएँ"
24867
24987
  // ok: "OK" => "ठीक है"
24868
24988
  // cancel: "Cancel" => "रद्द करना"// refuseItemText: "Refuse to answer" => "जवाब देने से इनकार"
24869
- // dontKnowItemText: "Don't know" => "नहीं मालूम"
24989
+ // 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 से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें."
24990
+ // signaturePlaceHolderReadOnly: "No signature" => "कोई हस्ताक्षर नहीं"
24870
24991
 
24871
24992
 
24872
24993
  /***/ }),
@@ -24952,6 +25073,7 @@ var hungarianSurveyStrings = {
24952
25073
  savingData: "Eredmény mentése a szerverre...",
24953
25074
  savingDataError: "Egy hiba folytán nem tudtuk elmenteni az eredményt.",
24954
25075
  savingDataSuccess: "Eredmény sikeresen mentve!",
25076
+ 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
25077
  saveAgainButton: "Próbálja újra",
24956
25078
  timerMin: "min",
24957
25079
  timerSec: "sec",
@@ -24963,6 +25085,7 @@ var hungarianSurveyStrings = {
24963
25085
  timerLimitSurvey: "Összesen {0} / {1} összeget költött el.",
24964
25086
  clearCaption: "Egyértelmű",
24965
25087
  signaturePlaceHolder: "Írja alá itt",
25088
+ signaturePlaceHolderReadOnly: "Nincs aláírás",
24966
25089
  chooseFileCaption: "Válassz fájlt",
24967
25090
  takePhotoCaption: "Fotó készítése",
24968
25091
  photoPlaceholder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
@@ -25018,7 +25141,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
25018
25141
  // ok: "OK" => "OKÉ"
25019
25142
  // cancel: "Cancel" => "Érvénytelenít"
25020
25143
  // refuseItemText: "Refuse to answer" => "A válaszadás megtagadása"
25021
- // dontKnowItemText: "Don't know" => "Nem tudom"
25144
+ // 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."
25145
+ // signaturePlaceHolderReadOnly: "No signature" => "Nincs aláírás"
25022
25146
 
25023
25147
 
25024
25148
  /***/ }),
@@ -25104,6 +25228,7 @@ var icelandicSurveyStrings = {
25104
25228
  savingData: "Niðurstöðurnar eru að spara á netþjóninum ... ",
25105
25229
  savingDataError: "Villa kom upp og við gátum ekki vistað niðurstöðurnar.",
25106
25230
  savingDataSuccess: "Árangurinn var vistaður með góðum árangri!",
25231
+ 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
25232
  saveAgainButton: "Reyndu aftur",
25108
25233
  timerMin: "mín",
25109
25234
  timerSec: "sek",
@@ -25115,6 +25240,7 @@ var icelandicSurveyStrings = {
25115
25240
  timerLimitSurvey: "Þú hefur eytt {0} af {1} samtals.",
25116
25241
  clearCaption: "Hreinsa",
25117
25242
  signaturePlaceHolder: "Kvittađu hér",
25243
+ signaturePlaceHolderReadOnly: "Engin undirskrift",
25118
25244
  chooseFileCaption: "Veldu skrá",
25119
25245
  takePhotoCaption: "Taka mynd",
25120
25246
  photoPlaceholder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
@@ -25171,7 +25297,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
25171
25297
  // ok: "OK" => "ÓKEI"
25172
25298
  // cancel: "Cancel" => "Afturkalla"
25173
25299
  // refuseItemText: "Refuse to answer" => "Neita að svara"
25174
- // dontKnowItemText: "Don't know" => "Veit ekki"
25300
+ // 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."
25301
+ // signaturePlaceHolderReadOnly: "No signature" => "Engin undirskrift"
25175
25302
 
25176
25303
 
25177
25304
  /***/ }),
@@ -25257,6 +25384,7 @@ var indonesianStrings = {
25257
25384
  savingData: "Hasil sedang disimpan pada server...",
25258
25385
  savingDataError: "Kesalahan terjadi dan kami tidak dapat menyimpan hasil.",
25259
25386
  savingDataSuccess: "Hasil telah sukses disimpan!",
25387
+ savingExceedSize: "Respons Anda melebihi 64 KB. Harap kurangi ukuran file Anda dan coba lagi atau hubungi pemilik survei.",
25260
25388
  saveAgainButton: "Coba lagi",
25261
25389
  timerMin: "menit",
25262
25390
  timerSec: "detik",
@@ -25268,6 +25396,7 @@ var indonesianStrings = {
25268
25396
  timerLimitSurvey: "Anda telah menghabiskan {0} dari {1} secara keseluruhan.",
25269
25397
  clearCaption: "Bersihkan",
25270
25398
  signaturePlaceHolder: "Tanda tangan di sini",
25399
+ signaturePlaceHolderReadOnly: "Tidak ada tanda tangan",
25271
25400
  chooseFileCaption: "Pilih File",
25272
25401
  takePhotoCaption: "Ambil Foto",
25273
25402
  photoPlaceholder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
@@ -25324,7 +25453,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
25324
25453
  // ok: "OK" => "OKE"
25325
25454
  // cancel: "Cancel" => "Membatalkan"
25326
25455
  // refuseItemText: "Refuse to answer" => "Menolak untuk menjawab"
25327
- // dontKnowItemText: "Don't know" => "Tidak tahu"
25456
+ // 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."
25457
+ // signaturePlaceHolderReadOnly: "No signature" => "Tidak ada tanda tangan"
25328
25458
 
25329
25459
 
25330
25460
  /***/ }),
@@ -25410,6 +25540,7 @@ var italianSurveyStrings = {
25410
25540
  savingData: "Salvataggio dati sul server...",
25411
25541
  savingDataError: "Si è verificato un errore e non è stato possibile salvare i risultati.",
25412
25542
  savingDataSuccess: "I risultati sono stati salvati con successo!",
25543
+ savingExceedSize: "La tua risposta supera i 64 KB. Riduci le dimensioni dei tuoi file e riprova o contatta il proprietario di un'indagine.",
25413
25544
  saveAgainButton: "Riprova",
25414
25545
  timerMin: "min",
25415
25546
  timerSec: "sec",
@@ -25421,6 +25552,7 @@ var italianSurveyStrings = {
25421
25552
  timerLimitSurvey: "Hai impiegato {0} di {1} in totale.",
25422
25553
  clearCaption: "Cancella",
25423
25554
  signaturePlaceHolder: "Firmare qui",
25555
+ signaturePlaceHolderReadOnly: "Nessuna firma",
25424
25556
  chooseFileCaption: "Scegliere il file",
25425
25557
  takePhotoCaption: "Scatta foto",
25426
25558
  photoPlaceholder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
@@ -25465,7 +25597,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
25465
25597
  // ok: "OK" => "OK"
25466
25598
  // cancel: "Cancel" => "Annulla"
25467
25599
  // refuseItemText: "Refuse to answer" => "Rifiuta di rispondere"
25468
- // dontKnowItemText: "Don't know" => "Non lo so"
25600
+ // 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."
25601
+ // signaturePlaceHolderReadOnly: "No signature" => "Nessuna firma"
25469
25602
 
25470
25603
 
25471
25604
  /***/ }),
@@ -25551,6 +25684,7 @@ var japaneseSurveyStrings = {
25551
25684
  savingData: "結果はサーバーに保存されています...。",
25552
25685
  savingDataError: "エラーが発生し、結果を保存できませんでした。",
25553
25686
  savingDataSuccess: "結果は無事に保存されました",
25687
+ savingExceedSize: "回答は 64 KB を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。",
25554
25688
  saveAgainButton: "もう一度試してみてください。",
25555
25689
  timerMin: "僅少",
25556
25690
  timerSec: "セック",
@@ -25562,6 +25696,7 @@ var japaneseSurveyStrings = {
25562
25696
  timerLimitSurvey: "合計で{1}の{0}を使ったことがあります。",
25563
25697
  clearCaption: "空白",
25564
25698
  signaturePlaceHolder: "ここに署名",
25699
+ signaturePlaceHolderReadOnly: "署名なし",
25565
25700
  chooseFileCaption: "ファイルを選択",
25566
25701
  takePhotoCaption: "写真を撮る",
25567
25702
  photoPlaceholder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
@@ -25618,7 +25753,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
25618
25753
  // ok: "OK" => "わかりました"
25619
25754
  // cancel: "Cancel" => "キャンセル"
25620
25755
  // refuseItemText: "Refuse to answer" => "回答を拒否する"
25621
- // dontKnowItemText: "Don't know" => "わかりません"
25756
+ // 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 を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。"
25757
+ // signaturePlaceHolderReadOnly: "No signature" => "署名なし"
25622
25758
 
25623
25759
 
25624
25760
  /***/ }),
@@ -25704,6 +25840,7 @@ var kazakhStrings = {
25704
25840
  savingData: "Нәтижелер серверде сақталады...",
25705
25841
  savingDataError: "Қателік туындады, нәтиже сақталынбады.",
25706
25842
  savingDataSuccess: "Нәтиже ойдағыдай сақталды!",
25843
+ savingExceedSize: "Сіздің жауабыңыз 64КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз.",
25707
25844
  saveAgainButton: "Қайтадан байқап көру",
25708
25845
  timerMin: "мин",
25709
25846
  timerSec: "сек",
@@ -25715,6 +25852,7 @@ var kazakhStrings = {
25715
25852
  timerLimitSurvey: "Сіз бүкіл сауалнама үшін {0} ден {1} кетірдіңіз ",
25716
25853
  clearCaption: "Тазалау",
25717
25854
  signaturePlaceHolder: "Осында кіру",
25855
+ signaturePlaceHolderReadOnly: "Қолдың No",
25718
25856
  chooseFileCaption: "Файл таңдаңыз",
25719
25857
  takePhotoCaption: "Фотосуретке түсу",
25720
25858
  photoPlaceholder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
@@ -25771,7 +25909,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
25771
25909
  // ok: "OK" => "ЖАҚСЫ"
25772
25910
  // cancel: "Cancel" => "Болдырмау"
25773
25911
  // refuseItemText: "Refuse to answer" => "Жауап беруден бас тарту"
25774
- // dontKnowItemText: "Don't know" => "Білмеймін"
25912
+ // 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КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз."
25913
+ // signaturePlaceHolderReadOnly: "No signature" => "Қолдың No"
25775
25914
 
25776
25915
 
25777
25916
  /***/ }),
@@ -25857,6 +25996,7 @@ var koreanStrings = {
25857
25996
  savingData: "결과가 서버에 저장 중입니다...",
25858
25997
  savingDataError: "오류가 발생하여 결과를 저장할 수 없습니다.",
25859
25998
  savingDataSuccess: "결과가 성공적으로 저장되었습니다.",
25999
+ savingExceedSize: "응답이 64KB를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요.",
25860
26000
  saveAgainButton: "다시 시도하세요.",
25861
26001
  timerMin: "분",
25862
26002
  timerSec: "초",
@@ -25868,6 +26008,7 @@ var koreanStrings = {
25868
26008
  timerLimitSurvey: "총 {0}/{1}이 걸렸습니다.",
25869
26009
  clearCaption: "지우기",
25870
26010
  signaturePlaceHolder: "서명하세요.",
26011
+ signaturePlaceHolderReadOnly: "서명 없음",
25871
26012
  chooseFileCaption: "파일 선택",
25872
26013
  takePhotoCaption: "사진 찍기",
25873
26014
  photoPlaceholder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
@@ -25911,7 +26052,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
25911
26052
  // ok: "OK" => "그래"
25912
26053
  // cancel: "Cancel" => "취소"
25913
26054
  // refuseItemText: "Refuse to answer" => "대답 거부"
25914
- // dontKnowItemText: "Don't know" => "모르다"
26055
+ // 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를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요."
26056
+ // signaturePlaceHolderReadOnly: "No signature" => "서명 없음"
25915
26057
 
25916
26058
 
25917
26059
  /***/ }),
@@ -25997,6 +26139,7 @@ var latvianSurveyStrings = {
25997
26139
  savingData: "Rezultāti tiek saglabāti serverī ...",
25998
26140
  savingDataError: "Radās kļūda, un mēs nevarējām saglabāt rezultātus.",
25999
26141
  savingDataSuccess: "Rezultāti tika veiksmīgi saglabāti!",
26142
+ 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
26143
  saveAgainButton: "Mēģiniet vēlreiz",
26001
26144
  timerMin: "min",
26002
26145
  timerSec: "sek",
@@ -26008,6 +26151,7 @@ var latvianSurveyStrings = {
26008
26151
  timerLimitSurvey: "Kopā esat iztērējis {0} no {1}.",
26009
26152
  clearCaption: "Iztīrīt",
26010
26153
  signaturePlaceHolder: "Parakstieties šeit",
26154
+ signaturePlaceHolderReadOnly: "Nav paraksta",
26011
26155
  chooseFileCaption: "Izvēlēties failu",
26012
26156
  takePhotoCaption: "Uzņemt fotoattēlu",
26013
26157
  photoPlaceholder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
@@ -26052,7 +26196,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
26052
26196
  // ok: "OK" => "LABI"
26053
26197
  // cancel: "Cancel" => "Atcelt"
26054
26198
  // refuseItemText: "Refuse to answer" => "Atteikties atbildēt"
26055
- // dontKnowItemText: "Don't know" => "Es nezinu"
26199
+ // 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."
26200
+ // signaturePlaceHolderReadOnly: "No signature" => "Nav paraksta"
26056
26201
 
26057
26202
 
26058
26203
  /***/ }),
@@ -26138,6 +26283,7 @@ var lithuaniaSurveyStrings = {
26138
26283
  savingData: "Rezultatai saugomi serveryje...",
26139
26284
  savingDataError: "Įvyko klaida ir mes negalėjome išsaugoti rezultatų.",
26140
26285
  savingDataSuccess: "Rezultatai buvo išsaugoti sėkmingai!",
26286
+ savingExceedSize: "Jūsų atsakymas viršija 64 KB. Sumažinkite failo (-ų) dydį ir bandykite dar kartą arba susisiekite su apklausos savininku.",
26141
26287
  saveAgainButton: "Bandyti dar kartą",
26142
26288
  timerMin: "min",
26143
26289
  timerSec: "sek",
@@ -26149,6 +26295,7 @@ var lithuaniaSurveyStrings = {
26149
26295
  timerLimitSurvey: "Praleidote {0} iš {1} iš viso.",
26150
26296
  clearCaption: "Valyti",
26151
26297
  signaturePlaceHolder: "Pasirašykite čia",
26298
+ signaturePlaceHolderReadOnly: "Nėra parašo",
26152
26299
  chooseFileCaption: "Pasirinkti failą",
26153
26300
  takePhotoCaption: "Fotografuoti",
26154
26301
  photoPlaceholder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
@@ -26205,7 +26352,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
26205
26352
  // ok: "OK" => "GERAI"
26206
26353
  // cancel: "Cancel" => "Atšaukti"
26207
26354
  // refuseItemText: "Refuse to answer" => "Atsisakyti atsakyti"
26208
- // dontKnowItemText: "Don't know" => "Nežinau"
26355
+ // 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."
26356
+ // signaturePlaceHolderReadOnly: "No signature" => "Nėra parašo"
26209
26357
 
26210
26358
 
26211
26359
  /***/ }),
@@ -26291,6 +26439,7 @@ var macedonianSurveyStrings = {
26291
26439
  savingData: "Резултатите се зачувуваат на серверот ...",
26292
26440
  savingDataError: "Настана грешка и не можевме да ги зачуваме резултатите.",
26293
26441
  savingDataSuccess: "Резултатите беа успешно зачувани!",
26442
+ savingExceedSize: "Вашиот одговор надминува 64KB. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето.",
26294
26443
  saveAgainButton: "Обиди се повторно",
26295
26444
  timerMin: "мин",
26296
26445
  timerSec: "сек",
@@ -26302,6 +26451,7 @@ var macedonianSurveyStrings = {
26302
26451
  timerLimitSurvey: "Вие потрошивте вкупно {0} од {1}.",
26303
26452
  clearCaption: "Да расчисти",
26304
26453
  signaturePlaceHolder: "Потпиши се овде.",
26454
+ signaturePlaceHolderReadOnly: "Нема потпис",
26305
26455
  chooseFileCaption: "Изберете датотека",
26306
26456
  takePhotoCaption: "Фотографирајте",
26307
26457
  photoPlaceholder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
@@ -26352,7 +26502,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
26352
26502
  // ok: "OK" => "ДОБРО"
26353
26503
  // cancel: "Cancel" => "Откажи"
26354
26504
  // refuseItemText: "Refuse to answer" => "Одбиј да одговориш."
26355
- // dontKnowItemText: "Don't know" => "Не знам"
26505
+ // 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. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето."
26506
+ // signaturePlaceHolderReadOnly: "No signature" => "Нема потпис"
26356
26507
 
26357
26508
 
26358
26509
  /***/ }),
@@ -26438,6 +26589,7 @@ var malaySurveyStrings = {
26438
26589
  savingData: "Keputusan sedang disimpan pada pelayan...",
26439
26590
  savingDataError: "Ralat berlaku dan kami tidak dapat menyimpan keputusan.",
26440
26591
  savingDataSuccess: "Keputusan berjaya disimpan!",
26592
+ savingExceedSize: "Jawapan anda melebihi 64KB. Sila kurangkan saiz fail anda dan cuba lagi atau hubungi pemilik tinjauan.",
26441
26593
  saveAgainButton: "Cuba lagi",
26442
26594
  timerMin: "min",
26443
26595
  timerSec: "saat",
@@ -26449,6 +26601,7 @@ var malaySurveyStrings = {
26449
26601
  timerLimitSurvey: "Anda telah meluangkan {0} daripada {1} secara keseluruhan.",
26450
26602
  clearCaption: "Kosongkan",
26451
26603
  signaturePlaceHolder: "Tandatangan di sini",
26604
+ signaturePlaceHolderReadOnly: "Tiada tandatangan",
26452
26605
  chooseFileCaption: "Pilih fail",
26453
26606
  takePhotoCaption: "Ambil gambar",
26454
26607
  photoPlaceholder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
@@ -26495,7 +26648,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
26495
26648
  // ok: "OK" => "OK"
26496
26649
  // cancel: "Cancel" => "Batal"
26497
26650
  // refuseItemText: "Refuse to answer" => "Enggan menjawab"
26498
- // dontKnowItemText: "Don't know" => "Tak tahu"
26651
+ // 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."
26652
+ // signaturePlaceHolderReadOnly: "No signature" => "Tiada tandatangan"
26499
26653
 
26500
26654
 
26501
26655
  /***/ }),
@@ -26605,6 +26759,7 @@ var norwegianSurveyStrings = {
26605
26759
  savingData: "Resultatene lagres på serveren ...",
26606
26760
  savingDataError: "Det oppsto en feil, og vi kunne ikke lagre resultatene.",
26607
26761
  savingDataSuccess: "Resultatene ble lagret!",
26762
+ 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
26763
  saveAgainButton: "Prøv igjen",
26609
26764
  timerMin: "min",
26610
26765
  timerSec: "sek",
@@ -26616,6 +26771,7 @@ var norwegianSurveyStrings = {
26616
26771
  timerLimitSurvey: "Du har tilbrakt {0} av {1} totalt.",
26617
26772
  clearCaption: "Klar",
26618
26773
  signaturePlaceHolder: "Logg inn her",
26774
+ signaturePlaceHolderReadOnly: "Ingen signatur",
26619
26775
  chooseFileCaption: "Velg Fil",
26620
26776
  takePhotoCaption: "Ta bilde",
26621
26777
  photoPlaceholder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
@@ -26672,7 +26828,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
26672
26828
  // ok: "OK" => "OK"
26673
26829
  // cancel: "Cancel" => "Annullere"
26674
26830
  // refuseItemText: "Refuse to answer" => "Nekter å svare"
26675
- // dontKnowItemText: "Don't know" => "Vet ikke"
26831
+ // 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."
26832
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
26676
26833
 
26677
26834
 
26678
26835
  /***/ }),
@@ -26758,6 +26915,7 @@ var persianSurveyStrings = {
26758
26915
  savingData: "نتایج در حال ذخیره سازی در سرور است",
26759
26916
  savingDataError: "خطایی در ذخیره سازی نتایج رخ داده است",
26760
26917
  savingDataSuccess: "نتایج با موفقیت ذخیره شد",
26918
+ savingExceedSize: "پاسخ شما بیش از 64KB است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید.",
26761
26919
  saveAgainButton: "مجدد تلاش کنید",
26762
26920
  timerMin: "دقیقه",
26763
26921
  timerSec: "ثانیه",
@@ -26769,6 +26927,7 @@ var persianSurveyStrings = {
26769
26927
  timerLimitSurvey: "شما مدت {0} از {1} را در مجموع سپری کرده اید.",
26770
26928
  clearCaption: "خالی کردن",
26771
26929
  signaturePlaceHolder: "اینجا را امضا کنید",
26930
+ signaturePlaceHolderReadOnly: "بدون امضا",
26772
26931
  chooseFileCaption: "انتخاب فایل",
26773
26932
  takePhotoCaption: "گرفتن عکس",
26774
26933
  photoPlaceholder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
@@ -26825,7 +26984,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
26825
26984
  // ok: "OK" => "باشه"
26826
26985
  // cancel: "Cancel" => "لغو"
26827
26986
  // refuseItemText: "Refuse to answer" => "امتناع از پاسخ دادن"
26828
- // dontKnowItemText: "Don't know" => "نمی دانم"
26987
+ // 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 است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید."
26988
+ // signaturePlaceHolderReadOnly: "No signature" => "بدون امضا"
26829
26989
 
26830
26990
 
26831
26991
  /***/ }),
@@ -26911,6 +27071,7 @@ var polishSurveyStrings = {
26911
27071
  savingData: "Zapisuję wyniki ankiety na serwerze...",
26912
27072
  savingDataError: "Wystąpił błąd i wyniki nie mogły zostać zapisane.",
26913
27073
  savingDataSuccess: "Wyniki zostały poprawnie zapisane!",
27074
+ savingExceedSize: "Twoja odpowiedź przekracza 64 KB. Zmniejsz rozmiar plików i spróbuj ponownie lub skontaktuj się z właścicielem ankiety.",
26914
27075
  saveAgainButton: "Spróbuj ponownie",
26915
27076
  timerMin: "min",
26916
27077
  timerSec: "sek",
@@ -26922,6 +27083,7 @@ var polishSurveyStrings = {
26922
27083
  timerLimitSurvey: "Spędziłeś {0} z {1}.",
26923
27084
  clearCaption: "Wyczyść",
26924
27085
  signaturePlaceHolder: "Podpisz tutaj",
27086
+ signaturePlaceHolderReadOnly: "Brak podpisu",
26925
27087
  chooseFileCaption: "Wybierz plik",
26926
27088
  takePhotoCaption: "Zrób zdjęcie",
26927
27089
  photoPlaceholder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
@@ -26966,7 +27128,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
26966
27128
  // ok: "OK" => "OK"
26967
27129
  // cancel: "Cancel" => "Anuluj"
26968
27130
  // refuseItemText: "Refuse to answer" => "Odmów odpowiedzi"
26969
- // dontKnowItemText: "Don't know" => "Nie wiem"
27131
+ // 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."
27132
+ // signaturePlaceHolderReadOnly: "No signature" => "Brak podpisu"
26970
27133
 
26971
27134
 
26972
27135
  /***/ }),
@@ -27055,6 +27218,7 @@ var portugueseBrSurveyStrings = {
27055
27218
  savingData: "Os resultados esto sendo salvos no servidor...",
27056
27219
  savingDataError: "Ocorreu um erro e não foi possível salvar os resultados.",
27057
27220
  savingDataSuccess: "Os resultados foram salvos com sucesso!",
27221
+ 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
27222
  saveAgainButton: "Tentar novamente",
27059
27223
  timerMin: "Min",
27060
27224
  timerSec: "segundo",
@@ -27066,6 +27230,7 @@ var portugueseBrSurveyStrings = {
27066
27230
  timerLimitSurvey: "Gastou {0} de {1} no total.",
27067
27231
  clearCaption: "Claro",
27068
27232
  signaturePlaceHolder: "Assine aqui",
27233
+ signaturePlaceHolderReadOnly: "Sem assinatura",
27069
27234
  chooseFileCaption: "Escolher arquivo",
27070
27235
  takePhotoCaption: "Tirar foto",
27071
27236
  photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
@@ -27169,7 +27334,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
27169
27334
  // ok: "OK" => "OKEY"
27170
27335
  // cancel: "Cancel" => "Cancelar"
27171
27336
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27172
- // dontKnowItemText: "Don't know" => "Não sei"
27337
+ // 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."
27338
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27173
27339
 
27174
27340
 
27175
27341
  /***/ }),
@@ -27255,6 +27421,7 @@ var portugueseSurveyStrings = {
27255
27421
  savingData: "Os resultados estão a ser guardados no servidor...",
27256
27422
  savingDataError: "Ocorreu um erro e não foi possível guardar os resultados.",
27257
27423
  savingDataSuccess: "Os resultados foram guardados com sucesso!",
27424
+ 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
27425
  saveAgainButton: "Tente novamente",
27259
27426
  timerMin: "min",
27260
27427
  timerSec: "seg",
@@ -27266,6 +27433,7 @@ var portugueseSurveyStrings = {
27266
27433
  timerLimitSurvey: "Você gastou {0} de {1} no total.",
27267
27434
  clearCaption: "Limpar",
27268
27435
  signaturePlaceHolder: "Assine aqui",
27436
+ signaturePlaceHolderReadOnly: "Sem assinatura",
27269
27437
  chooseFileCaption: "Escolher ficheiro",
27270
27438
  takePhotoCaption: "Tirar foto",
27271
27439
  photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
@@ -27307,7 +27475,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
27307
27475
  // ok: "OK" => "OKEY"
27308
27476
  // cancel: "Cancel" => "Cancelar"
27309
27477
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27310
- // dontKnowItemText: "Don't know" => "Não sei"
27478
+ // 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."
27479
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27311
27480
 
27312
27481
 
27313
27482
  /***/ }),
@@ -27393,6 +27562,7 @@ var romanianSurveyStrings = {
27393
27562
  savingData: "Rezultatele sunt în curs de salvare...",
27394
27563
  savingDataError: "A intervenit o eroare, rezultatele nu au putut fi salvate.",
27395
27564
  savingDataSuccess: "Rezultatele au fost salvate cu succes!",
27565
+ 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
27566
  saveAgainButton: "Încercați din nou",
27397
27567
  timerMin: "min",
27398
27568
  timerSec: "sec",
@@ -27404,6 +27574,7 @@ var romanianSurveyStrings = {
27404
27574
  timerLimitSurvey: "Ați petrecut {0} din {1} în total.",
27405
27575
  clearCaption: "clar",
27406
27576
  signaturePlaceHolder: "Semnează aici",
27577
+ signaturePlaceHolderReadOnly: "Fără semnătură",
27407
27578
  chooseFileCaption: "Alege fișierul",
27408
27579
  takePhotoCaption: "Faceți o fotografie",
27409
27580
  photoPlaceholder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
@@ -27460,7 +27631,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
27460
27631
  // ok: "OK" => "OK"
27461
27632
  // cancel: "Cancel" => "Anula"
27462
27633
  // refuseItemText: "Refuse to answer" => "Refuză să răspundă"
27463
- // dontKnowItemText: "Don't know" => "Nu ştiu"
27634
+ // 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."
27635
+ // signaturePlaceHolderReadOnly: "No signature" => "Fără semnătură"
27464
27636
 
27465
27637
 
27466
27638
  /***/ }),
@@ -27546,6 +27718,7 @@ var russianSurveyStrings = {
27546
27718
  savingData: "Результаты сохраняются на сервер...",
27547
27719
  savingDataError: "Произошла ошибка, результат не был сохранён.",
27548
27720
  savingDataSuccess: "Результат успешно сохранён!",
27721
+ savingExceedSize: "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса.",
27549
27722
  saveAgainButton: "Попробовать снова",
27550
27723
  timerMin: "мин",
27551
27724
  timerSec: "сек",
@@ -27557,6 +27730,7 @@ var russianSurveyStrings = {
27557
27730
  timerLimitSurvey: "Вы потратили {0} из {1} для всего теста.",
27558
27731
  clearCaption: "Очистить",
27559
27732
  signaturePlaceHolder: "Подпишите здесь",
27733
+ signaturePlaceHolderReadOnly: "Без подписи",
27560
27734
  chooseFileCaption: "Выберите файл",
27561
27735
  takePhotoCaption: "Сделать фото",
27562
27736
  photoPlaceholder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
@@ -27597,7 +27771,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
27597
27771
  // noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event." => "Файлы не могут быть загружены. Пожалуйста, добавьте обработчик для события 'onUploadFiles'."
27598
27772
  // showDetails: "Show Details" => "Показать подробности"
27599
27773
  // hideDetails: "Hide Details" => "Скрыть подробности"
27600
- // cancel: "Cancel" => "Отмена"
27774
+ // cancel: "Cancel" => "Отмена"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса."
27775
+ // signaturePlaceHolderReadOnly: "No signature" => "Без подписи"
27601
27776
 
27602
27777
 
27603
27778
  /***/ }),
@@ -27683,6 +27858,7 @@ var serbianStrings = {
27683
27858
  savingData: "U toku je čuvanje podataka na serveru...",
27684
27859
  savingDataError: "Došlo je do greške i rezultati nisu sačuvani.",
27685
27860
  savingDataSuccess: "Rezultati su uspešno sačuvani!",
27861
+ savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovo ili se obratite vlasniku ankete.",
27686
27862
  saveAgainButton: "Pokušajte ponovo",
27687
27863
  timerMin: "min",
27688
27864
  timerSec: "sek",
@@ -27694,6 +27870,7 @@ var serbianStrings = {
27694
27870
  timerLimitSurvey: "Proveli ste {0} od {1} ukupno.",
27695
27871
  clearCaption: "Poništi",
27696
27872
  signaturePlaceHolder: "Potpišite ovde",
27873
+ signaturePlaceHolderReadOnly: "Bez potpisa",
27697
27874
  chooseFileCaption: "Izaberi fajl",
27698
27875
  takePhotoCaption: "Fotografisanje",
27699
27876
  photoPlaceholder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
@@ -27745,7 +27922,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
27745
27922
  // ok: "OK" => "U redu"
27746
27923
  // cancel: "Cancel" => "Otkaži"
27747
27924
  // refuseItemText: "Refuse to answer" => "Odbijanje odgovora"
27748
- // dontKnowItemText: "Don't know" => "Ne znam"
27925
+ // 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."
27926
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
27749
27927
 
27750
27928
 
27751
27929
  /***/ }),
@@ -27831,6 +28009,7 @@ var simplifiedChineseSurveyStrings = {
27831
28009
  savingData: "正在将结果保存到服务器...",
27832
28010
  savingDataError: "在保存结果过程中发生了错误,结果未能保存",
27833
28011
  savingDataSuccess: "结果保存成功!",
28012
+ savingExceedSize: "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。",
27834
28013
  saveAgainButton: "请重试",
27835
28014
  timerMin: "分",
27836
28015
  timerSec: "秒",
@@ -27842,6 +28021,7 @@ var simplifiedChineseSurveyStrings = {
27842
28021
  timerLimitSurvey: "总计用时 {0} 共 {1}.",
27843
28022
  clearCaption: "清除",
27844
28023
  signaturePlaceHolder: "在此签名",
28024
+ signaturePlaceHolderReadOnly: "无签名",
27845
28025
  chooseFileCaption: "选择文件",
27846
28026
  takePhotoCaption: "拍照",
27847
28027
  photoPlaceholder: "单击下面的按钮使用相机拍照。",
@@ -27892,7 +28072,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
27892
28072
  // ok: "OK" => "还行"
27893
28073
  // cancel: "Cancel" => "取消"
27894
28074
  // refuseItemText: "Refuse to answer" => "拒绝回答"
27895
- // dontKnowItemText: "Don't know" => "不知道"
28075
+ // 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。请减小文件的大小,然后重试或联系调查所有者。"
28076
+ // signaturePlaceHolderReadOnly: "No signature" => "无签名"
27896
28077
 
27897
28078
 
27898
28079
  /***/ }),
@@ -27978,6 +28159,7 @@ var slovakSurveyStrings = {
27978
28159
  savingData: "Výsledky sa ukladajú na server...",
27979
28160
  savingDataError: "V dôsledku chyby sa nepodarilo výsledky uložiť.",
27980
28161
  savingDataSuccess: "Výsledky sa úspešne uložili.",
28162
+ 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
28163
  saveAgainButton: "Skúste to znova",
27982
28164
  timerMin: "min",
27983
28165
  timerSec: "s",
@@ -27989,6 +28171,7 @@ var slovakSurveyStrings = {
27989
28171
  timerLimitSurvey: "Celkovo ste strávili {0} z {1}.",
27990
28172
  clearCaption: "Vymazať",
27991
28173
  signaturePlaceHolder: "Podpísať tu",
28174
+ signaturePlaceHolderReadOnly: "Bez podpisu",
27992
28175
  chooseFileCaption: "Vybrať súbor",
27993
28176
  takePhotoCaption: "Odfotiť",
27994
28177
  photoPlaceholder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
@@ -28035,7 +28218,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
28035
28218
  // ok: "OK" => "OK"
28036
28219
  // cancel: "Cancel" => "Zrušiť"
28037
28220
  // refuseItemText: "Refuse to answer" => "Odmietnuť odpovedať"
28038
- // dontKnowItemText: "Don't know" => "Neviem"
28221
+ // 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."
28222
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
28039
28223
 
28040
28224
 
28041
28225
  /***/ }),
@@ -28121,6 +28305,7 @@ var spanishSurveyStrings = {
28121
28305
  savingData: "Los resultados se están guardando en el servidor...",
28122
28306
  savingDataError: "Los resultados se están guardando en el servidor...",
28123
28307
  savingDataSuccess: "¡Los resultados se guardaron con éxito!",
28308
+ 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
28309
  saveAgainButton: "Inténtalo de nuevo.",
28125
28310
  timerMin: "min",
28126
28311
  timerSec: "sec",
@@ -28132,6 +28317,7 @@ var spanishSurveyStrings = {
28132
28317
  timerLimitSurvey: "Usted ha gastado {0} de {1} en total.",
28133
28318
  clearCaption: "Borrar",
28134
28319
  signaturePlaceHolder: "Firma aqui",
28320
+ signaturePlaceHolderReadOnly: "Sin firma",
28135
28321
  chooseFileCaption: "Elija el archivo",
28136
28322
  takePhotoCaption: "Tomar foto",
28137
28323
  photoPlaceholder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
@@ -28176,7 +28362,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
28176
28362
  // ok: "OK" => "De acuerdo"
28177
28363
  // cancel: "Cancel" => "Cancelar"
28178
28364
  // refuseItemText: "Refuse to answer" => "Negarse a responder"
28179
- // dontKnowItemText: "Don't know" => "No sé"
28365
+ // 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."
28366
+ // signaturePlaceHolderReadOnly: "No signature" => "Sin firma"
28180
28367
 
28181
28368
 
28182
28369
  /***/ }),
@@ -28262,6 +28449,7 @@ var swahiliStrings = {
28262
28449
  savingData: "Matokeo yamehifadhiwa kwa seva...",
28263
28450
  savingDataError: "Kosa limetokea na hatukuweza kuhifadhi matokeo.",
28264
28451
  savingDataSuccess: "Matokeo yamehifadhiwa!",
28452
+ savingExceedSize: "Jibu lako ni zaidi ya 64KB. Tafadhali punguza ukubwa wa faili yako na jaribu tena au wasiliana na mmiliki wa utafiti.",
28265
28453
  saveAgainButton: "Jaribu tena",
28266
28454
  timerMin: "dakika",
28267
28455
  timerSec: "sekunde",
@@ -28273,6 +28461,7 @@ var swahiliStrings = {
28273
28461
  timerLimitSurvey: "Umetumia {0} ya {1} kwa jumla.",
28274
28462
  clearCaption: "Ondoa",
28275
28463
  signaturePlaceHolder: "Ingia hapa",
28464
+ signaturePlaceHolderReadOnly: "Hakuna saini",
28276
28465
  chooseFileCaption: "Chagua faili",
28277
28466
  takePhotoCaption: "Chukua Picha",
28278
28467
  photoPlaceholder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
@@ -28329,7 +28518,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
28329
28518
  // ok: "OK" => "Sawa kabisa"
28330
28519
  // cancel: "Cancel" => "Katisha"
28331
28520
  // refuseItemText: "Refuse to answer" => "Kukataa kujibu"
28332
- // dontKnowItemText: "Don't know" => "Sijui"
28521
+ // 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."
28522
+ // signaturePlaceHolderReadOnly: "No signature" => "Hakuna saini"
28333
28523
 
28334
28524
 
28335
28525
  /***/ }),
@@ -28415,6 +28605,7 @@ var swedishSurveyStrings = {
28415
28605
  savingData: "Resultaten sparas på servern ...",
28416
28606
  savingDataError: "Ett fel inträffade och vi kunde inte spara resultaten.",
28417
28607
  savingDataSuccess: "Resultaten lyckades sparas!",
28608
+ savingExceedSize: "Ditt svar överskrider 64 kB. Minska storleken på dina filer och försök igen eller kontakta en undersökningsägare.",
28418
28609
  saveAgainButton: "Försök igen",
28419
28610
  timerMin: "min",
28420
28611
  timerSec: "sek",
@@ -28426,6 +28617,7 @@ var swedishSurveyStrings = {
28426
28617
  timerLimitSurvey: "Du har spenderat {0} av {1} totalt.",
28427
28618
  clearCaption: "Klar",
28428
28619
  signaturePlaceHolder: "Signera här",
28620
+ signaturePlaceHolderReadOnly: "Ingen signatur",
28429
28621
  chooseFileCaption: "Välj fil",
28430
28622
  takePhotoCaption: "Ta foto",
28431
28623
  photoPlaceholder: "Klicka på knappen nedan för att ta ett foto med kameran.",
@@ -28470,7 +28662,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
28470
28662
  // ok: "OK" => "OKEJ"
28471
28663
  // cancel: "Cancel" => "Annullera"
28472
28664
  // refuseItemText: "Refuse to answer" => "Vägra svara"
28473
- // dontKnowItemText: "Don't know" => "Vet inte"
28665
+ // 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."
28666
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
28474
28667
 
28475
28668
 
28476
28669
  /***/ }),
@@ -28663,6 +28856,7 @@ var teluguStrings = {
28663
28856
  savingData: "ఫలితాంశాలు సర్వర్లో సేవ్ అవుతున్నాయి",
28664
28857
  savingDataError: "ఒక లోపము సంభవించినది అందుకని ఫలితాంశాలను సేవ్ చేయలేకపోయాము ",
28665
28858
  savingDataSuccess: "ఫలితాంశాలను విజయవంతంగా సేవ్ చేసాము",
28859
+ savingExceedSize: "మీ ప్రతిస్పందన 64KBని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి.",
28666
28860
  saveAgainButton: "మళ్లీ ప్రయత్నించు",
28667
28861
  timerMin: "నిమిషాలు ",
28668
28862
  timerSec: "సెకండ్లు",
@@ -28674,6 +28868,7 @@ var teluguStrings = {
28674
28868
  timerLimitSurvey: " మొత్తంగా మీరు {1} లో {0} ని ఉపయోగించారు ",
28675
28869
  clearCaption: "స్పష్టమ్",
28676
28870
  signaturePlaceHolder: "ఇక్కడ సంతకం చేయండి",
28871
+ signaturePlaceHolderReadOnly: "సంతకం లేదు",
28677
28872
  chooseFileCaption: "ఫైల్ ఎంచుకోండి",
28678
28873
  takePhotoCaption: "ఫోటో తీసుకోండి",
28679
28874
  photoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
@@ -28730,7 +28925,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
28730
28925
  // hideDetails: "Hide Details" => "వివరాలను దాచండి"
28731
28926
  // ok: "OK" => "సరే"
28732
28927
  // cancel: "Cancel" => "రద్దు"// refuseItemText: "Refuse to answer" => "సమాధానం ఇవ్వడానికి నిరాకరించండి"
28733
- // dontKnowItemText: "Don't know" => "తెలియదు"
28928
+ // 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ని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి."
28929
+ // signaturePlaceHolderReadOnly: "No signature" => "సంతకం లేదు"
28734
28930
 
28735
28931
 
28736
28932
  /***/ }),
@@ -28816,6 +29012,7 @@ var thaiStrings = {
28816
29012
  savingData: "ผลลัพท์กำลังบันทึกลงที่เซิร์ฟเวอร์...",
28817
29013
  savingDataError: "มีความผิดพลาดเกิดขึ้นส่งผลให้ไม่สามารถบันทึกผลได้",
28818
29014
  savingDataSuccess: "บันทึกสำเร็จแล้ว",
29015
+ savingExceedSize: "คําตอบของคุณเกิน 64KB โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ",
28819
29016
  saveAgainButton: "รบกวนลองอีกครั้ง",
28820
29017
  timerMin: "นาที",
28821
29018
  timerSec: "วินาที",
@@ -28827,6 +29024,7 @@ var thaiStrings = {
28827
29024
  timerLimitSurvey: "คุณใช้เวลา {0} ของ {1} รวมทั้งหมด",
28828
29025
  clearCaption: "เคลียร์",
28829
29026
  signaturePlaceHolder: "ลงชื่อที่นี่",
29027
+ signaturePlaceHolderReadOnly: "ไม่มีลายเซ็น",
28830
29028
  chooseFileCaption: "เลือกไฟล์",
28831
29029
  takePhotoCaption: "ถ่ายรูป",
28832
29030
  photoPlaceholder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
@@ -28882,7 +29080,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
28882
29080
  // hideDetails: "Hide Details" => "ซ่อนรายละเอียด"
28883
29081
  // ok: "OK" => "ตกลง, ได้"
28884
29082
  // cancel: "Cancel" => "ยกเลิก"// refuseItemText: "Refuse to answer" => "ปฏิเสธที่จะตอบ"
28885
- // dontKnowItemText: "Don't know" => "ไม่ทราบ"
29083
+ // 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 โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ"
29084
+ // signaturePlaceHolderReadOnly: "No signature" => "ไม่มีลายเซ็น"
28886
29085
 
28887
29086
 
28888
29087
  /***/ }),
@@ -28968,6 +29167,7 @@ var traditionalChineseSurveyStrings = {
28968
29167
  savingData: "正在將結果保存到服務器...",
28969
29168
  savingDataError: "在保存結果過程中發生了錯誤,結果未能保存",
28970
29169
  savingDataSuccess: "結果保存成功!",
29170
+ savingExceedSize: "您的回復超過 64KB。請減小檔的大小,然後重試或聯繫調查擁有者。",
28971
29171
  saveAgainButton: "請重試",
28972
29172
  timerMin: "最小",
28973
29173
  timerSec: "秒",
@@ -28979,6 +29179,7 @@ var traditionalChineseSurveyStrings = {
28979
29179
  timerLimitSurvey: "您總共花費了{1}的{0}。",
28980
29180
  clearCaption: "清楚",
28981
29181
  signaturePlaceHolder: "在此簽名",
29182
+ signaturePlaceHolderReadOnly: "無簽名",
28982
29183
  chooseFileCaption: "選擇檔案",
28983
29184
  takePhotoCaption: "拍照",
28984
29185
  photoPlaceholder: "按下下面的按鈕使用相機拍照。",
@@ -29069,7 +29270,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
29069
29270
  // hideDetails: "Hide Details" => "隱藏詳細資訊"
29070
29271
  // ok: "OK" => "還行"
29071
29272
  // cancel: "Cancel" => "取消"// refuseItemText: "Refuse to answer" => "拒絕回答"
29072
- // dontKnowItemText: "Don't know" => "不知道"
29273
+ // 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。請減小檔的大小,然後重試或聯繫調查擁有者。"
29274
+ // signaturePlaceHolderReadOnly: "No signature" => "無簽名"
29073
29275
 
29074
29276
 
29075
29277
  /***/ }),
@@ -29155,6 +29357,7 @@ var turkishSurveyStrings = {
29155
29357
  savingData: "Sonuçlar sunucuya kaydediliyor...",
29156
29358
  savingDataError: "Bir hata oluştu ve sonuçlar kaydedilemedi.",
29157
29359
  savingDataSuccess: "Sonuçlar başarıyla kaydedildi!",
29360
+ 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
29361
  saveAgainButton: "Tekrar deneyin",
29159
29362
  timerMin: "dakika",
29160
29363
  timerSec: "saniye",
@@ -29166,6 +29369,7 @@ var turkishSurveyStrings = {
29166
29369
  timerLimitSurvey: "Toplamda {0}/{1} harcadınız.",
29167
29370
  clearCaption: "Temizle",
29168
29371
  signaturePlaceHolder: "Burayı imzalayın",
29372
+ signaturePlaceHolderReadOnly: "İmza yok",
29169
29373
  chooseFileCaption: "Dosya seçin",
29170
29374
  takePhotoCaption: "Fotoğraf Çekin",
29171
29375
  photoPlaceholder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
@@ -29203,7 +29407,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
29203
29407
  // hideDetails: "Hide Details" => "Detayları Gizle"
29204
29408
  // ok: "OK" => "TAMAM"
29205
29409
  // cancel: "Cancel" => "İptal"// refuseItemText: "Refuse to answer" => "Cevap vermeyi reddet"
29206
- // dontKnowItemText: "Don't know" => "Bilmiyorum"
29410
+ // 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."
29411
+ // signaturePlaceHolderReadOnly: "No signature" => "İmza yok"
29207
29412
 
29208
29413
 
29209
29414
  /***/ }),
@@ -29289,6 +29494,7 @@ var ukrainianSurveyStrings = {
29289
29494
  savingData: "Результати зберігаються на сервер...",
29290
29495
  savingDataError: "Відбулася помилка, результат не був збережений.",
29291
29496
  savingDataSuccess: "Резвультат успішно збережений!",
29497
+ savingExceedSize: "Ваша відповідь перевищує 64 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування.",
29292
29498
  saveAgainButton: "Спробувати знову",
29293
29499
  timerMin: "хв",
29294
29500
  timerSec: "сек",
@@ -29300,6 +29506,7 @@ var ukrainianSurveyStrings = {
29300
29506
  timerLimitSurvey: "Ви витратили {0} з {1} для всього тесту.",
29301
29507
  clearCaption: "Очистити",
29302
29508
  signaturePlaceHolder: "Підпишіться тут",
29509
+ signaturePlaceHolderReadOnly: "Без підпису",
29303
29510
  chooseFileCaption: "Виберіть файл",
29304
29511
  takePhotoCaption: "Зробити фото",
29305
29512
  photoPlaceholder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
@@ -29355,7 +29562,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
29355
29562
  // hideDetails: "Hide Details" => "Сховати подробиці"
29356
29563
  // ok: "OK" => "ГАРАЗД"
29357
29564
  // cancel: "Cancel" => "Скасувати"// refuseItemText: "Refuse to answer" => "Відмовтеся відповідати"
29358
- // dontKnowItemText: "Don't know" => "Не знаю"
29565
+ // 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 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування."
29566
+ // signaturePlaceHolderReadOnly: "No signature" => "Без підпису"
29359
29567
 
29360
29568
 
29361
29569
  /***/ }),
@@ -29441,6 +29649,7 @@ var vietnameseSurveyStrings = {
29441
29649
  savingData: "Kết quả đang lưu lại trên hệ thống...",
29442
29650
  savingDataError: "Có lỗi xảy ra và chúng ta không thể lưu kết quả.",
29443
29651
  savingDataSuccess: "Kết quả đã được lưu thành công!",
29652
+ 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
29653
  saveAgainButton: "Thử lại",
29445
29654
  timerMin: "phút",
29446
29655
  timerSec: "giây",
@@ -29452,6 +29661,7 @@ var vietnameseSurveyStrings = {
29452
29661
  timerLimitSurvey: "Bạn đã sử dụng {0} / {1} trên toàn bộ.",
29453
29662
  clearCaption: "Xóa",
29454
29663
  signaturePlaceHolder: "Ký tên tại đây",
29664
+ signaturePlaceHolderReadOnly: "Không có chữ ký",
29455
29665
  chooseFileCaption: "Chọn tập tin",
29456
29666
  takePhotoCaption: "Chụp ảnh",
29457
29667
  photoPlaceholder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
@@ -29508,7 +29718,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
29508
29718
  // hideDetails: "Hide Details" => "Ẩn chi tiết"
29509
29719
  // ok: "OK" => "OK"
29510
29720
  // cancel: "Cancel" => "Hủy"// refuseItemText: "Refuse to answer" => "Từ chối trả lời"
29511
- // dontKnowItemText: "Don't know" => "Không biết"
29721
+ // 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."
29722
+ // signaturePlaceHolderReadOnly: "No signature" => "Không có chữ ký"
29512
29723
 
29513
29724
 
29514
29725
  /***/ }),
@@ -29594,6 +29805,7 @@ var welshSurveyStrings = {
29594
29805
  savingData: "Mae’r canlyniadau’n cael eu cadw ar y gweinydd...",
29595
29806
  savingDataError: "Roedd gwall a doedd dim modd cadw’r canlyniadau.",
29596
29807
  savingDataSuccess: "Wedi llwyddo i gadw’r canlyniadau!",
29808
+ savingExceedSize: "Mae eich ymateb yn fwy na 64KB. Lleihau maint eich ffeil(au) a cheisiwch eto neu cysylltwch â pherchennog yr arolwg.",
29597
29809
  saveAgainButton: "Rhowch gynnig arall arni",
29598
29810
  timerMin: "mun",
29599
29811
  timerSec: "eil",
@@ -29605,6 +29817,7 @@ var welshSurveyStrings = {
29605
29817
  timerLimitSurvey: "Rydych chi wedi treulio {0} o {1} gyda’i gilydd.",
29606
29818
  clearCaption: "Clirio",
29607
29819
  signaturePlaceHolder: "Arwydd yma",
29820
+ signaturePlaceHolderReadOnly: "Dim llofnod",
29608
29821
  chooseFileCaption: "Dewiswch ffeil ",
29609
29822
  takePhotoCaption: "Tynnu Llun",
29610
29823
  photoPlaceholder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
@@ -29660,7 +29873,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
29660
29873
  // hideDetails: "Hide Details" => "Manylion Cuddio"
29661
29874
  // ok: "OK" => "OCÊ"
29662
29875
  // cancel: "Cancel" => "Canslo"// refuseItemText: "Refuse to answer" => "Gwrthod ateb"
29663
- // dontKnowItemText: "Don't know" => "Ddim yn gwybod"
29876
+ // 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."
29877
+ // signaturePlaceHolderReadOnly: "No signature" => "Dim llofnod"
29664
29878
 
29665
29879
 
29666
29880
  /***/ }),
@@ -30253,17 +30467,12 @@ var InputMaskBase = /** @class */ (function (_super) {
30253
30467
  });
30254
30468
  return res;
30255
30469
  };
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
30470
  InputMaskBase.prototype.processInput = function (args) {
30263
30471
  return { value: args.prevValue, caretPosition: args.selectionEnd, cancelPreventDefault: false };
30264
30472
  };
30265
30473
  InputMaskBase.prototype.getUnmaskedValue = function (src) { return src; };
30266
30474
  InputMaskBase.prototype.getMaskedValue = function (src) { return src; };
30475
+ InputMaskBase.prototype.getTextAlignment = function () { return "auto"; };
30267
30476
  __decorate([
30268
30477
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
30269
30478
  ], InputMaskBase.prototype, "saveMaskedValue", void 0);
@@ -31303,9 +31512,6 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31303
31512
  InputMaskNumeric.prototype.parseNumber = function (src) {
31304
31513
  var result = { integralPart: "", fractionalPart: "", hasDecimalSeparator: false, isNegative: false };
31305
31514
  var input = (src === undefined || src === null) ? "" : src.toString();
31306
- if (typeof src === "number") {
31307
- input = src.toString().replace(".", this.decimalSeparator);
31308
- }
31309
31515
  var minusCharCount = 0;
31310
31516
  for (var inputIndex = 0; inputIndex < input.length; inputIndex++) {
31311
31517
  var currentChar = input[inputIndex];
@@ -31345,8 +31551,7 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31345
31551
  };
31346
31552
  InputMaskNumeric.prototype.getNumberMaskedValue = function (src, matchWholeMask) {
31347
31553
  if (matchWholeMask === void 0) { matchWholeMask = false; }
31348
- var input = (src === undefined || src === null) ? "" : src;
31349
- var parsedNumber = this.parseNumber(input);
31554
+ var parsedNumber = this.parseNumber(src);
31350
31555
  if (!this.validateNumber(parsedNumber, matchWholeMask)) {
31351
31556
  return null;
31352
31557
  }
@@ -31357,8 +31562,13 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31357
31562
  var parsedNumber = this.parseNumber(str);
31358
31563
  return this.convertNumber(parsedNumber);
31359
31564
  };
31565
+ InputMaskNumeric.prototype.getTextAlignment = function () {
31566
+ return "right";
31567
+ };
31360
31568
  InputMaskNumeric.prototype.getMaskedValue = function (src) {
31361
- return this.getNumberMaskedValue(src, true);
31569
+ var input = (src === undefined || src === null) ? "" : src.toString();
31570
+ input = input.replace(".", this.decimalSeparator);
31571
+ return this.getNumberMaskedValue(input, true);
31362
31572
  };
31363
31573
  InputMaskNumeric.prototype.getUnmaskedValue = function (src) {
31364
31574
  return this.getNumberUnmaskedValue(src);
@@ -32442,6 +32652,10 @@ var QuestionRowModel = /** @class */ (function (_super) {
32442
32652
  enumerable: false,
32443
32653
  configurable: true
32444
32654
  });
32655
+ QuestionRowModel.prototype.getIsAnimationAllowed = function () {
32656
+ var _a;
32657
+ return _super.prototype.getIsAnimationAllowed.call(this) && this.visible && ((_a = this.panel) === null || _a === void 0 ? void 0 : _a.animationAllowed);
32658
+ };
32445
32659
  QuestionRowModel.prototype.getVisibleElementsAnimationOptions = function () {
32446
32660
  var _this = this;
32447
32661
  var beforeRunAnimation = function (el) {
@@ -32449,7 +32663,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
32449
32663
  el.style.setProperty("--animation-width", Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["getElementWidth"])(el) + "px");
32450
32664
  };
32451
32665
  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; },
32666
+ isAnimationEnabled: function () { return _this.animationAllowed; },
32453
32667
  getAnimatedElement: function (element) { return element.getWrapperElement(); },
32454
32668
  getLeaveOptions: function (element) {
32455
32669
  var surveyElement = element;
@@ -32598,7 +32812,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
32598
32812
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
32599
32813
  .append(this.panel.cssClasses.row)
32600
32814
  .append(this.panel.cssClasses.rowCompact, this.panel["isCompact"])
32601
- .append(this.panel.cssClasses.pageRow, this.panel.isPage || (!!this.panel.originalPage))
32815
+ .append(this.panel.cssClasses.pageRow, this.panel.isPage || this.panel.showPanelAsPage)
32602
32816
  .append(this.panel.cssClasses.rowMultiple, this.visibleElements.length > 1)
32603
32817
  .toString();
32604
32818
  };
@@ -32662,7 +32876,7 @@ var PanelModelBase = /** @class */ (function (_super) {
32662
32876
  el.style.setProperty("--animation-height", el.offsetHeight + "px");
32663
32877
  };
32664
32878
  return {
32665
- isAnimationEnabled: function () { return _settings__WEBPACK_IMPORTED_MODULE_7__["settings"].animationEnabled && _this.animationAllowed; },
32879
+ isAnimationEnabled: function () { return _this.animationAllowed; },
32666
32880
  getAnimatedElement: function (row) { return row.getRootElement(); },
32667
32881
  getLeaveOptions: function (_) {
32668
32882
  return { cssClass: _this.cssClasses.rowFadeOut,
@@ -32699,14 +32913,14 @@ var PanelModelBase = /** @class */ (function (_super) {
32699
32913
  return "panelbase";
32700
32914
  };
32701
32915
  PanelModelBase.prototype.setSurveyImpl = function (value, isLight) {
32702
- this.animationAllowed = false;
32916
+ this.blockAnimations();
32703
32917
  _super.prototype.setSurveyImpl.call(this, value, isLight);
32704
32918
  if (this.isDesignMode)
32705
32919
  this.onVisibleChanged();
32706
32920
  for (var i = 0; i < this.elements.length; i++) {
32707
32921
  this.elements[i].setSurveyImpl(value, isLight);
32708
32922
  }
32709
- this.animationAllowed = true;
32923
+ this.releaseAnimations();
32710
32924
  };
32711
32925
  PanelModelBase.prototype.endLoadingFromJson = function () {
32712
32926
  _super.prototype.endLoadingFromJson.call(this);
@@ -33521,13 +33735,13 @@ var PanelModelBase = /** @class */ (function (_super) {
33521
33735
  return new QuestionRowModel(this);
33522
33736
  };
33523
33737
  PanelModelBase.prototype.onSurveyLoad = function () {
33524
- this.animationAllowed = false;
33738
+ this.blockAnimations();
33525
33739
  _super.prototype.onSurveyLoad.call(this);
33526
33740
  for (var i = 0; i < this.elements.length; i++) {
33527
33741
  this.elements[i].onSurveyLoad();
33528
33742
  }
33529
33743
  this.onElementVisibilityChanged(this);
33530
- this.animationAllowed = true;
33744
+ this.releaseAnimations();
33531
33745
  };
33532
33746
  PanelModelBase.prototype.onFirstRendering = function () {
33533
33747
  _super.prototype.onFirstRendering.call(this);
@@ -33561,9 +33775,9 @@ var PanelModelBase = /** @class */ (function (_super) {
33561
33775
  PanelModelBase.prototype.onRowsChanged = function () {
33562
33776
  if (this.isLoadingFromJson)
33563
33777
  return;
33564
- this.animationAllowed = false;
33778
+ this.blockAnimations();
33565
33779
  this.setArrayPropertyDirectly("rows", this.buildRows());
33566
- this.animationAllowed = true;
33780
+ this.releaseAnimations();
33567
33781
  };
33568
33782
  PanelModelBase.prototype.blockRowsUpdates = function () {
33569
33783
  this.locCountRowUpdates++;
@@ -36309,6 +36523,7 @@ var PopupDropdownViewModel = /** @class */ (function (_super) {
36309
36523
  this.resizeEventCallback();
36310
36524
  }
36311
36525
  _global_variables_utils__WEBPACK_IMPORTED_MODULE_6__["DomWindowHelper"].addEventListener("scroll", this.scrollEventCallBack);
36526
+ this._isPositionSetValue = true;
36312
36527
  };
36313
36528
  Object.defineProperty(PopupDropdownViewModel.prototype, "shouldCreateResizeCallback", {
36314
36529
  get: function () {
@@ -37049,6 +37264,7 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37049
37264
  if (!val) {
37050
37265
  _this.updateOnHiding();
37051
37266
  _this.updateIsVisible(val);
37267
+ _this._isPositionSetValue = false;
37052
37268
  }
37053
37269
  else {
37054
37270
  _this.updateIsVisible(val);
@@ -37059,6 +37275,7 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37059
37275
  _this.onModelIsVisibleChangedCallback = function () {
37060
37276
  _this.isVisible = _this.model.isVisible;
37061
37277
  };
37278
+ _this._isPositionSetValue = false;
37062
37279
  _this.model = model;
37063
37280
  _this.locale = _this.model.locale;
37064
37281
  return _this;
@@ -37296,12 +37513,20 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
37296
37513
  this.focusContainer();
37297
37514
  }
37298
37515
  };
37516
+ Object.defineProperty(PopupBaseViewModel.prototype, "isPositionSet", {
37517
+ get: function () {
37518
+ return this._isPositionSetValue;
37519
+ },
37520
+ enumerable: false,
37521
+ configurable: true
37522
+ });
37299
37523
  PopupBaseViewModel.prototype.updateOnShowing = function () {
37300
37524
  this.prevActiveElement = _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].environment.root.activeElement;
37301
37525
  if (this.isOverlay) {
37302
37526
  this.resetDimensionsAndPositionStyleProperties();
37303
37527
  }
37304
37528
  this.switchFocus();
37529
+ this._isPositionSetValue = true;
37305
37530
  };
37306
37531
  PopupBaseViewModel.prototype.updateOnHiding = function () {
37307
37532
  if (this.isFocusedContent && this.prevActiveElement) {
@@ -38474,8 +38699,7 @@ var Question = /** @class */ (function (_super) {
38474
38699
  };
38475
38700
  Question.prototype.runTriggers = function (name, value) {
38476
38701
  var _this = this;
38477
- if (this.isReadOnly || this.isSettingQuestionValue ||
38478
- (this.parentQuestion && this.parentQuestion.getValueName() === name))
38702
+ if (this.isSettingQuestionValue || (this.parentQuestion && this.parentQuestion.getValueName() === name))
38479
38703
  return;
38480
38704
  this.triggersInfo.forEach(function (info) {
38481
38705
  _this.runTriggerInfo(info, name, value);
@@ -39693,6 +39917,7 @@ var Question = /** @class */ (function (_super) {
39693
39917
  configurable: true
39694
39918
  });
39695
39919
  Question.prototype.getFilteredValue = function () { return this.value; };
39920
+ Question.prototype.getFilteredName = function () { return this.getValueName(); };
39696
39921
  Object.defineProperty(Question.prototype, "valueForSurvey", {
39697
39922
  get: function () {
39698
39923
  if (!!this.valueToDataCallback) {
@@ -40295,7 +40520,7 @@ var Question = /** @class */ (function (_super) {
40295
40520
  };
40296
40521
  Question.prototype.addConditionObjectsByContext = function (objects, context) {
40297
40522
  objects.push({
40298
- name: this.getValueName(),
40523
+ name: this.getFilteredName(),
40299
40524
  text: this.processedTitle,
40300
40525
  question: this,
40301
40526
  });
@@ -43337,17 +43562,19 @@ var QuestionSelectBase = /** @class */ (function (_super) {
43337
43562
  .append(this.cssClasses.itemInline, !this.hasColumns && this.colCount === 0)
43338
43563
  .append("sv-q-col-" + this.getCurrentColCount(), !this.hasColumns && this.colCount !== 0)
43339
43564
  .append(this.cssClasses.itemOnError, this.hasCssError());
43340
- var isDisabled = this.isReadOnly || !item.isEnabled;
43565
+ var readOnlyStyles = this.getIsDisableAndReadOnlyStyles(!item.isEnabled);
43566
+ var isReadOnly = readOnlyStyles[0];
43567
+ var isDisabled = readOnlyStyles[1];
43341
43568
  var isChecked = this.isItemSelected(item) ||
43342
43569
  (this.isOtherSelected && this.otherItem.value === item.value);
43343
43570
  var allowHover = !isDisabled && !isChecked && !(!!this.survey && this.survey.isDesignMode);
43344
43571
  var isNone = item === this.noneItem;
43345
- options.isDisabled = isDisabled;
43572
+ options.isDisabled = isDisabled || isReadOnly;
43346
43573
  options.isChecked = isChecked;
43347
43574
  options.isNone = isNone;
43348
43575
  return builder
43349
- .append(this.cssClasses.itemDisabled, this.isDisabledStyle)
43350
- .append(this.cssClasses.itemReadOnly, this.isReadOnlyStyle)
43576
+ .append(this.cssClasses.itemDisabled, isDisabled)
43577
+ .append(this.cssClasses.itemReadOnly, isReadOnly)
43351
43578
  .append(this.cssClasses.itemPreview, this.isPreviewStyle)
43352
43579
  .append(this.cssClasses.itemChecked, isChecked)
43353
43580
  .append(this.cssClasses.itemHover, allowHover)
@@ -44844,6 +45071,13 @@ var QuestionCheckboxModel = /** @class */ (function (_super) {
44844
45071
  enumerable: false,
44845
45072
  configurable: true
44846
45073
  });
45074
+ QuestionCheckboxModel.prototype.getFilteredName = function () {
45075
+ var res = _super.prototype.getFilteredName.call(this);
45076
+ if (this.hasFilteredValue) {
45077
+ res += "-unwrapped";
45078
+ }
45079
+ return res;
45080
+ };
44847
45081
  QuestionCheckboxModel.prototype.getFilteredValue = function () {
44848
45082
  if (this.hasFilteredValue)
44849
45083
  return this.renderedValue;
@@ -55063,6 +55297,7 @@ __webpack_require__.r(__webpack_exports__);
55063
55297
  /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
55064
55298
  /* harmony import */ var _actions_container__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./actions/container */ "./src/actions/container.ts");
55065
55299
  /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
55300
+ /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
55066
55301
  var __extends = (undefined && undefined.__extends) || (function () {
55067
55302
  var extendStatics = function (d, b) {
55068
55303
  extendStatics = Object.setPrototypeOf ||
@@ -55097,6 +55332,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
55097
55332
 
55098
55333
 
55099
55334
 
55335
+
55100
55336
  var QuestionMatrixDropdownRenderedCell = /** @class */ (function () {
55101
55337
  function QuestionMatrixDropdownRenderedCell() {
55102
55338
  this.minWidth = "";
@@ -55321,6 +55557,12 @@ var QuestionMatrixDropdownRenderedRow = /** @class */ (function (_super) {
55321
55557
  enumerable: false,
55322
55558
  configurable: true
55323
55559
  });
55560
+ QuestionMatrixDropdownRenderedRow.prototype.setRootElement = function (val) {
55561
+ this.rootElement = val;
55562
+ };
55563
+ QuestionMatrixDropdownRenderedRow.prototype.getRootElement = function () {
55564
+ return this.rootElement;
55565
+ };
55324
55566
  QuestionMatrixDropdownRenderedRow.counter = 1;
55325
55567
  __decorate([
55326
55568
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
@@ -55379,10 +55621,53 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
55379
55621
  var _this = _super.call(this) || this;
55380
55622
  _this.matrix = matrix;
55381
55623
  _this.renderedRowsChangedCallback = function () { };
55624
+ _this._renderedRows = [];
55625
+ _this.renderedRowsAnimation = new _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"](_this.getRenderedRowsAnimationOptions(), function (val) {
55626
+ _this._renderedRows = val;
55627
+ _this.renderedRowsChangedCallback();
55628
+ }, function () { return _this._renderedRows; });
55382
55629
  _this.hasActionCellInRowsValues = {};
55383
55630
  _this.build();
55384
55631
  return _this;
55385
55632
  }
55633
+ QuestionMatrixDropdownRenderedTable.prototype.getIsAnimationAllowed = function () {
55634
+ return _super.prototype.getIsAnimationAllowed.call(this) && this.matrix.animationAllowed;
55635
+ };
55636
+ QuestionMatrixDropdownRenderedTable.prototype.getRenderedRowsAnimationOptions = function () {
55637
+ var _this = this;
55638
+ var beforeAnimationRun = function (el) {
55639
+ el.querySelectorAll(":scope > td > *").forEach(function (el) {
55640
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
55641
+ });
55642
+ };
55643
+ return {
55644
+ isAnimationEnabled: function () {
55645
+ return _this.animationAllowed;
55646
+ },
55647
+ getAnimatedElement: function (el) {
55648
+ return el.getRootElement();
55649
+ },
55650
+ getLeaveOptions: function () {
55651
+ return { cssClass: _this.cssClasses.rowFadeOut, onBeforeRunAnimation: beforeAnimationRun };
55652
+ },
55653
+ getEnterOptions: function () {
55654
+ return { cssClass: _this.cssClasses.rowFadeIn, onBeforeRunAnimation: beforeAnimationRun };
55655
+ }
55656
+ };
55657
+ };
55658
+ QuestionMatrixDropdownRenderedTable.prototype.updateRenderedRows = function () {
55659
+ this.renderedRows = this.rows;
55660
+ };
55661
+ Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "renderedRows", {
55662
+ get: function () {
55663
+ return this._renderedRows;
55664
+ },
55665
+ set: function (val) {
55666
+ this.renderedRowsAnimation.sync(val);
55667
+ },
55668
+ enumerable: false,
55669
+ configurable: true
55670
+ });
55386
55671
  Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "showTable", {
55387
55672
  get: function () {
55388
55673
  return this.getPropertyValue("showTable", true);
@@ -55697,10 +55982,12 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
55697
55982
  }
55698
55983
  };
55699
55984
  QuestionMatrixDropdownRenderedTable.prototype.buildRows = function () {
55985
+ this.blockAnimations();
55700
55986
  var rows = this.matrix.isColumnLayoutHorizontal
55701
55987
  ? this.buildHorizontalRows()
55702
55988
  : this.buildVerticalRows();
55703
55989
  this.rows = rows;
55990
+ this.releaseAnimations();
55704
55991
  };
55705
55992
  QuestionMatrixDropdownRenderedTable.prototype.hasActionCellInRows = function (location) {
55706
55993
  if (this.hasActionCellInRowsValues[location] === undefined) {
@@ -56218,9 +56505,16 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
56218
56505
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])({
56219
56506
  onPush: function (_, i, target) {
56220
56507
  target.renderedRowsChangedCallback();
56508
+ target.updateRenderedRows();
56221
56509
  },
56510
+ onRemove: function (_, i, target) {
56511
+ target.updateRenderedRows();
56512
+ }
56222
56513
  })
56223
56514
  ], QuestionMatrixDropdownRenderedTable.prototype, "rows", void 0);
56515
+ __decorate([
56516
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])()
56517
+ ], QuestionMatrixDropdownRenderedTable.prototype, "_renderedRows", void 0);
56224
56518
  return QuestionMatrixDropdownRenderedTable;
56225
56519
  }(_base__WEBPACK_IMPORTED_MODULE_1__["Base"]));
56226
56520
 
@@ -58618,6 +58912,7 @@ __webpack_require__.r(__webpack_exports__);
58618
58912
  /* harmony import */ var _actions_action__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./actions/action */ "./src/actions/action.ts");
58619
58913
  /* harmony import */ var _base__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./base */ "./src/base.ts");
58620
58914
  /* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./actions/adaptive-container */ "./src/actions/adaptive-container.ts");
58915
+ /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
58621
58916
  var __extends = (undefined && undefined.__extends) || (function () {
58622
58917
  var extendStatics = function (d, b) {
58623
58918
  extendStatics = Object.setPrototypeOf ||
@@ -58658,6 +58953,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
58658
58953
 
58659
58954
 
58660
58955
 
58956
+
58661
58957
  var QuestionPanelDynamicItemTextProcessor = /** @class */ (function (_super) {
58662
58958
  __extends(QuestionPanelDynamicItemTextProcessor, _super);
58663
58959
  function QuestionPanelDynamicItemTextProcessor(data, panelItem, variableName) {
@@ -58881,6 +59177,8 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
58881
59177
  __extends(QuestionPanelDynamicModel, _super);
58882
59178
  function QuestionPanelDynamicModel(name) {
58883
59179
  var _this = _super.call(this, name) || this;
59180
+ _this._renderedPanels = [];
59181
+ _this.isPanelsAnimationRunning = false;
58884
59182
  _this.isAddingNewPanels = false;
58885
59183
  _this.isSetPanelItemData = {};
58886
59184
  _this.createNewArray("panels", function (panel) { _this.onPanelAdded(panel); }, function (panel) { _this.onPanelRemoved(panel); });
@@ -59206,6 +59504,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59206
59504
  if (!this.currentPanel) {
59207
59505
  this.currentPanel = panel;
59208
59506
  }
59507
+ this.updateRenderedPanels();
59209
59508
  };
59210
59509
  QuestionPanelDynamicModel.prototype.onPanelRemoved = function (panel) {
59211
59510
  var index = this.onPanelRemovedCore(panel);
@@ -59215,6 +59514,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59215
59514
  index = visPanels.length - 1;
59216
59515
  this.currentPanel = index >= 0 ? visPanels[index] : null;
59217
59516
  }
59517
+ this.updateRenderedPanels();
59218
59518
  };
59219
59519
  QuestionPanelDynamicModel.prototype.onPanelRemovedCore = function (panel) {
59220
59520
  var visPanels = this.visiblePanelsCore;
@@ -59285,6 +59585,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59285
59585
  curPanel.onHidingContent();
59286
59586
  }
59287
59587
  this.setPropertyValue("currentPanel", val);
59588
+ this.updateRenderedPanels();
59288
59589
  this.updateFooterActions();
59289
59590
  this.updateTabToolbarItemsPressedState();
59290
59591
  this.fireCallback(this.currentIndexChangedCallback);
@@ -59299,6 +59600,123 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59299
59600
  enumerable: false,
59300
59601
  configurable: true
59301
59602
  });
59603
+ QuestionPanelDynamicModel.prototype.updateRenderedPanels = function () {
59604
+ if (this.isRenderModeList) {
59605
+ this.renderedPanels = [].concat(this.visiblePanels);
59606
+ }
59607
+ else if (this.currentPanel) {
59608
+ this.renderedPanels = [this.currentPanel];
59609
+ }
59610
+ else {
59611
+ this.renderedPanels = [];
59612
+ }
59613
+ };
59614
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "renderedPanels", {
59615
+ get: function () {
59616
+ return this._renderedPanels;
59617
+ },
59618
+ set: function (val) {
59619
+ if (this.renderedPanels.length == 0 || val.length == 0) {
59620
+ this.blockAnimations();
59621
+ this.panelsAnimation.sync(val);
59622
+ this.releaseAnimations();
59623
+ }
59624
+ else {
59625
+ this.isPanelsAnimationRunning = true;
59626
+ this.panelsAnimation.sync(val);
59627
+ }
59628
+ },
59629
+ enumerable: false,
59630
+ configurable: true
59631
+ });
59632
+ QuestionPanelDynamicModel.prototype.getPanelsAnimationOptions = function () {
59633
+ var _this = this;
59634
+ var getDirection = function () {
59635
+ if (_this.isRenderModeList)
59636
+ return "";
59637
+ var leavingPanel = _this.renderedPanels.filter(function (el) { return el !== _this.currentPanel; })[0];
59638
+ var leavingPanelIndex = _this.visiblePanels.indexOf(leavingPanel);
59639
+ if (leavingPanelIndex < 0)
59640
+ leavingPanelIndex = _this.removedPanelIndex;
59641
+ return leavingPanelIndex > _this.currentIndex ? "-right" : "-left";
59642
+ };
59643
+ return {
59644
+ getAnimatedElement: function (panel) {
59645
+ var _a, _b;
59646
+ if (panel && _this.cssContent) {
59647
+ var contentSelector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_9__["classesToSelector"])(_this.cssContent);
59648
+ 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;
59649
+ }
59650
+ },
59651
+ getEnterOptions: function () {
59652
+ var cssClass = _this.cssClasses.panelWrapperFadeIn ? "" + _this.cssClasses.panelWrapperFadeIn + getDirection() : "";
59653
+ return {
59654
+ onBeforeRunAnimation: function (el) {
59655
+ var _a;
59656
+ if (_this.focusNewPanelCallback) {
59657
+ var scolledElement = _this.isRenderModeList ? el : el.parentElement;
59658
+ _survey_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElement"].ScrollElementToViewCore(scolledElement, false, false, { behavior: "smooth" });
59659
+ }
59660
+ if (!_this.isRenderModeList) {
59661
+ (_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-to", el.offsetHeight + "px");
59662
+ }
59663
+ else {
59664
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
59665
+ }
59666
+ },
59667
+ cssClass: cssClass
59668
+ };
59669
+ },
59670
+ getLeaveOptions: function () {
59671
+ var cssClass = _this.cssClasses.panelWrapperFadeOut ? "" + _this.cssClasses.panelWrapperFadeOut + getDirection() : "";
59672
+ return {
59673
+ onBeforeRunAnimation: function (el) {
59674
+ var _a;
59675
+ if (!_this.isRenderModeList) {
59676
+ (_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-from", el.offsetHeight + "px");
59677
+ }
59678
+ else {
59679
+ el.style.setProperty("--animation-height", el.offsetHeight + "px");
59680
+ }
59681
+ },
59682
+ cssClass: cssClass
59683
+ };
59684
+ },
59685
+ isAnimationEnabled: function () {
59686
+ return _this.animationAllowed && !!_this.getWrapperElement();
59687
+ },
59688
+ };
59689
+ };
59690
+ QuestionPanelDynamicModel.prototype.disablePanelsAnimations = function () {
59691
+ this.panelsCore.forEach(function (panel) {
59692
+ panel.blockAnimations();
59693
+ });
59694
+ };
59695
+ QuestionPanelDynamicModel.prototype.enablePanelsAnimations = function () {
59696
+ this.panelsCore.forEach(function (panel) {
59697
+ panel.releaseAnimations();
59698
+ });
59699
+ };
59700
+ QuestionPanelDynamicModel.prototype.updatePanelsAnimation = function () {
59701
+ var _this = this;
59702
+ this._panelsAnimations = new (this.isRenderModeList ? _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationGroup"] : _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationTab"])(this.getPanelsAnimationOptions(), function (val, isTempUpdate) {
59703
+ _this._renderedPanels = val;
59704
+ if (!isTempUpdate) {
59705
+ _this.isPanelsAnimationRunning = false;
59706
+ _this.focusNewPanel();
59707
+ }
59708
+ }, function () { return _this._renderedPanels; });
59709
+ };
59710
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "panelsAnimation", {
59711
+ get: function () {
59712
+ if (!this._panelsAnimations) {
59713
+ this.updatePanelsAnimation();
59714
+ }
59715
+ return this._panelsAnimations;
59716
+ },
59717
+ enumerable: false,
59718
+ configurable: true
59719
+ });
59302
59720
  QuestionPanelDynamicModel.prototype.onHidingContent = function () {
59303
59721
  _super.prototype.onHidingContent.call(this);
59304
59722
  if (this.currentPanel) {
@@ -59613,11 +60031,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59613
60031
  if (val < this.panelCount) {
59614
60032
  this.panelsCore.splice(val, this.panelCount - val);
59615
60033
  }
60034
+ this.disablePanelsAnimations();
59616
60035
  this.setValueAfterPanelsCreating();
59617
60036
  this.setValueBasedOnPanelCount();
59618
60037
  this.reRunCondition();
59619
60038
  this.updateFooterActions();
59620
60039
  this.fireCallback(this.panelCountChangedCallback);
60040
+ this.enablePanelsAnimations();
59621
60041
  },
59622
60042
  enumerable: false,
59623
60043
  configurable: true
@@ -59912,6 +60332,10 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59912
60332
  set: function (val) {
59913
60333
  this.setPropertyValue("renderMode", val);
59914
60334
  this.fireCallback(this.renderModeChangedCallback);
60335
+ this.blockAnimations();
60336
+ this.updateRenderedPanels();
60337
+ this.releaseAnimations();
60338
+ this.updatePanelsAnimation();
59915
60339
  },
59916
60340
  enumerable: false,
59917
60341
  configurable: true
@@ -60145,9 +60569,20 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60145
60569
  if (this.renderMode === "list" && this.panelsState !== "default") {
60146
60570
  newPanel.expand();
60147
60571
  }
60148
- newPanel.focusFirstQuestion();
60572
+ this.focusNewPanelCallback = function () {
60573
+ newPanel.focusFirstQuestion();
60574
+ };
60575
+ if (!this.isPanelsAnimationRunning) {
60576
+ this.focusNewPanel();
60577
+ }
60149
60578
  return newPanel;
60150
60579
  };
60580
+ QuestionPanelDynamicModel.prototype.focusNewPanel = function () {
60581
+ if (this.focusNewPanelCallback) {
60582
+ this.focusNewPanelCallback();
60583
+ this.focusNewPanelCallback = undefined;
60584
+ }
60585
+ };
60151
60586
  /**
60152
60587
  * Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
60153
60588
  * @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 +60691,11 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60256
60691
  return;
60257
60692
  this.currentIndex--;
60258
60693
  };
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
60694
  QuestionPanelDynamicModel.prototype.removePanel = function (value) {
60266
60695
  var visIndex = this.getVisualPanelIndex(value);
60267
60696
  if (visIndex < 0 || visIndex >= this.visiblePanelCount)
60268
60697
  return;
60698
+ this.removedPanelIndex = visIndex;
60269
60699
  var panel = this.visiblePanelsCore[visIndex];
60270
60700
  var index = this.panelsCore.indexOf(panel);
60271
60701
  if (index < 0)
@@ -60456,6 +60886,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60456
60886
  return;
60457
60887
  if (!force && this.wasNotRenderedInSurvey)
60458
60888
  return;
60889
+ this.blockAnimations();
60459
60890
  this.hasPanelBuildFirstTime = true;
60460
60891
  this.isBuildingPanelsFirstTime = true;
60461
60892
  if (this.getPropertyValue("panelCount") > 0) {
@@ -60478,6 +60909,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60478
60909
  }
60479
60910
  this.updateFooterActions();
60480
60911
  this.isBuildingPanelsFirstTime = false;
60912
+ this.releaseAnimations();
60481
60913
  };
60482
60914
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "wasNotRenderedInSurvey", {
60483
60915
  get: function () {
@@ -61023,7 +61455,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61023
61455
  };
61024
61456
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "cssHeader", {
61025
61457
  get: function () {
61026
- var showTab = this.isRenderModeTab && !!this.panelCount;
61458
+ var showTab = this.isRenderModeTab && !!this.visiblePanelCount;
61027
61459
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
61028
61460
  .append(this.cssClasses.header)
61029
61461
  .append(this.cssClasses.headerTop, this.hasTitleOnTop || showTab)
@@ -61036,6 +61468,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61036
61468
  QuestionPanelDynamicModel.prototype.getPanelWrapperCss = function (panel) {
61037
61469
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
61038
61470
  .append(this.cssClasses.panelWrapper, !panel || panel.visible)
61471
+ .append(this.cssClasses.panelWrapperList, this.isRenderModeList)
61039
61472
  .append(this.cssClasses.panelWrapperInRow, this.panelRemoveButtonLocation === "right")
61040
61473
  .toString();
61041
61474
  };
@@ -61094,6 +61527,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61094
61527
  return true;
61095
61528
  return false;
61096
61529
  };
61530
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "hasAdditionalTitleToolbar", {
61531
+ get: function () {
61532
+ return this.isRenderModeTab && this.visiblePanels.length > 0;
61533
+ },
61534
+ enumerable: false,
61535
+ configurable: true
61536
+ });
61097
61537
  QuestionPanelDynamicModel.prototype.getAdditionalTitleToolbar = function () {
61098
61538
  if (!this.isRenderModeTab)
61099
61539
  return null;
@@ -61282,7 +61722,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61282
61722
  configurable: true
61283
61723
  });
61284
61724
  QuestionPanelDynamicModel.prototype.showSeparator = function (index) {
61285
- return this.isRenderModeList && index < this.visiblePanelCount - 1;
61725
+ return this.isRenderModeList && index < this.renderedPanels.length - 1;
61286
61726
  };
61287
61727
  QuestionPanelDynamicModel.prototype.calcCssClasses = function (css) {
61288
61728
  var classes = _super.prototype.calcCssClasses.call(this, css);
@@ -61296,6 +61736,9 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
61296
61736
  return classes;
61297
61737
  };
61298
61738
  QuestionPanelDynamicModel.maxCheckCount = 3;
61739
+ __decorate([
61740
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["propertyArray"])({})
61741
+ ], QuestionPanelDynamicModel.prototype, "_renderedPanels", void 0);
61299
61742
  __decorate([
61300
61743
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["property"])({ defaultValue: false, onSet: function (_, target) { target.updateFooterActions(); } })
61301
61744
  ], QuestionPanelDynamicModel.prototype, "legacyNavigation", void 0);
@@ -61595,6 +62038,7 @@ __webpack_require__.r(__webpack_exports__);
61595
62038
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./helpers */ "./src/helpers.ts");
61596
62039
  /* harmony import */ var _src_settings__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../src/settings */ "./src/settings.ts");
61597
62040
  /* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
62041
+ /* harmony import */ var _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utils/dragOrClickHelper */ "./src/utils/dragOrClickHelper.ts");
61598
62042
  var __extends = (undefined && undefined.__extends) || (function () {
61599
62043
  var extendStatics = function (d, b) {
61600
62044
  extendStatics = Object.setPrototypeOf ||
@@ -61627,6 +62071,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
61627
62071
 
61628
62072
 
61629
62073
 
62074
+
61630
62075
  /**
61631
62076
  * A class that describes the Ranking question type.
61632
62077
  *
@@ -61680,7 +62125,19 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61680
62125
  if (_this.allowStartDrag &&
61681
62126
  _this.canStartDragDueMaxSelectedChoices(target) &&
61682
62127
  _this.canStartDragDueItemEnabled(choice)) {
61683
- _this.dragDropRankingChoices.startDrag(event, choice, _this, node);
62128
+ _this.draggedChoise = choice;
62129
+ _this.draggedTargetNode = node;
62130
+ _this.dragOrClickHelper.onPointerDown(event);
62131
+ }
62132
+ };
62133
+ _this.startDrag = function (event) {
62134
+ _this.dragDropRankingChoices.startDrag(event, _this.draggedChoise, _this, _this.draggedTargetNode);
62135
+ };
62136
+ _this.handlePointerUp = function (event, choice, node) {
62137
+ if (!_this.selectToRankEnabled)
62138
+ return;
62139
+ if (_this.allowStartDrag) {
62140
+ _this.handleKeydownSelectToRank(event, choice, " ", false);
61684
62141
  }
61685
62142
  };
61686
62143
  _this.handleKeydown = function (event, choice) {
@@ -61740,6 +62197,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61740
62197
  _this.setDragDropRankingChoices();
61741
62198
  _this.updateRankingChoicesSync();
61742
62199
  });
62200
+ _this.dragOrClickHelper = new _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__["DragOrClickHelper"](_this.startDrag);
61743
62201
  return _this;
61744
62202
  }
61745
62203
  QuestionRankingModel.prototype.getDefaultItemComponent = function () {
@@ -61777,7 +62235,10 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61777
62235
  configurable: true
61778
62236
  });
61779
62237
  QuestionRankingModel.prototype.isItemSelectedCore = function (item) {
61780
- return false;
62238
+ if (this.selectToRankEnabled) {
62239
+ return _super.prototype.isItemSelectedCore.call(this, item);
62240
+ }
62241
+ return true;
61781
62242
  };
61782
62243
  QuestionRankingModel.prototype.getItemClassCore = function (item, options) {
61783
62244
  var itemIndex = this.rankingChoices.indexOf(item);
@@ -61839,9 +62300,9 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61839
62300
  return this.isEmpty() ? "" : index + 1 + "";
61840
62301
  };
61841
62302
  QuestionRankingModel.prototype.updateRankingChoicesSync = function () {
61842
- this.animationAllowed = false;
62303
+ this.blockAnimations();
61843
62304
  this.updateRankingChoices();
61844
- this.animationAllowed = true;
62305
+ this.releaseAnimations();
61845
62306
  };
61846
62307
  QuestionRankingModel.prototype.setSurveyImpl = function (value, isLight) {
61847
62308
  _super.prototype.setSurveyImpl.call(this, value, isLight);
@@ -61884,7 +62345,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
61884
62345
  QuestionRankingModel.prototype.getChoicesAnimation = function (isRankingChoices) {
61885
62346
  var _this = this;
61886
62347
  return {
61887
- isAnimationEnabled: function () { return _src_settings__WEBPACK_IMPORTED_MODULE_9__["settings"].animationEnabled && _this.animationAllowed; },
62348
+ isAnimationEnabled: function () { return _this.animationAllowed; },
61888
62349
  getLeaveOptions: function (item) {
61889
62350
  var choices = isRankingChoices ? _this.rankingChoices : _this.unRankingChoices;
61890
62351
  if (_this.renderedSelectToRankAreasLayout == "vertical" && choices.length == 1 && choices.indexOf(item) >= 0) {
@@ -62052,10 +62513,13 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62052
62513
  QuestionRankingModel.prototype.supportNone = function () { return false; };
62053
62514
  QuestionRankingModel.prototype.supportRefuse = function () { return false; };
62054
62515
  QuestionRankingModel.prototype.supportDontKnow = function () { return false; };
62055
- QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement) {
62516
+ QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement, hardKey, isNeedFocus) {
62517
+ if (isNeedFocus === void 0) { isNeedFocus = true; }
62056
62518
  if (this.isDesignMode)
62057
62519
  return;
62058
62520
  var key = event.key;
62521
+ if (hardKey)
62522
+ key = hardKey;
62059
62523
  if (key !== " " && key !== "ArrowUp" && key !== "ArrowDown")
62060
62524
  return;
62061
62525
  var dnd = this.dragDropRankingChoices; //????
@@ -62067,21 +62531,23 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62067
62531
  return;
62068
62532
  var toIndex;
62069
62533
  if (key === " " && !isMovedElementRanked) {
62070
- toIndex = 0;
62071
- this.animationAllowed = false;
62534
+ if (!this.checkMaxSelectedChoicesUnreached() || !this.canStartDragDueItemEnabled(movedElement))
62535
+ return;
62536
+ toIndex = this.value.length;
62537
+ this.blockAnimations();
62072
62538
  dnd.selectToRank(this, fromIndex, toIndex);
62073
- this.animationAllowed = true;
62074
- this.setValueAfterKeydown(toIndex, "to-container");
62539
+ this.releaseAnimations();
62540
+ this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
62075
62541
  return;
62076
62542
  }
62077
62543
  if (!isMovedElementRanked)
62078
62544
  return;
62079
62545
  if (key === " ") {
62080
- this.animationAllowed = false;
62546
+ this.blockAnimations();
62081
62547
  dnd.unselectFromRank(this, fromIndex);
62082
- this.animationAllowed = true;
62548
+ this.releaseAnimations();
62083
62549
  toIndex = this.unRankingChoices.indexOf(movedElement); //'this.' leads to actual array after the 'unselectFromRank' method
62084
- this.setValueAfterKeydown(toIndex, "from-container");
62550
+ this.setValueAfterKeydown(toIndex, "from-container", isNeedFocus);
62085
62551
  return;
62086
62552
  }
62087
62553
  var delta = key === "ArrowUp" ? -1 : (key === "ArrowDown" ? 1 : 0);
@@ -62091,15 +62557,18 @@ var QuestionRankingModel = /** @class */ (function (_super) {
62091
62557
  if (toIndex < 0 || toIndex >= rankingChoices.length)
62092
62558
  return;
62093
62559
  dnd.reorderRankedItem(this, fromIndex, toIndex);
62094
- this.setValueAfterKeydown(toIndex, "to-container");
62560
+ this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
62095
62561
  };
62096
- QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container) {
62562
+ QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container, isNeedFocus) {
62097
62563
  var _this = this;
62564
+ if (isNeedFocus === void 0) { isNeedFocus = true; }
62098
62565
  this.setValue();
62099
- setTimeout(function () {
62100
- _this.focusItem(index, container);
62101
- }, 1);
62102
- event.preventDefault();
62566
+ if (isNeedFocus) {
62567
+ setTimeout(function () {
62568
+ _this.focusItem(index, container);
62569
+ }, 1);
62570
+ }
62571
+ event && event.preventDefault();
62103
62572
  };
62104
62573
  QuestionRankingModel.prototype.getIconHoverCss = function () {
62105
62574
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
@@ -62443,19 +62912,23 @@ var QuestionRatingModel = /** @class */ (function (_super) {
62443
62912
  _this.updateRateCount();
62444
62913
  });
62445
62914
  _this.registerFunctionOnPropertiesValueChanged(["rateValues"], function () {
62446
- _this.autoGenerate = false;
62915
+ _this.setIconsToRateValues();
62916
+ _this.createRenderedRateItems();
62917
+ });
62918
+ _this.registerSychProperties(["rateValues"], function () {
62919
+ _this.autoGenerate = _this.rateValues.length == 0;
62447
62920
  _this.setIconsToRateValues();
62448
62921
  _this.createRenderedRateItems();
62449
62922
  });
62450
62923
  _this.registerFunctionOnPropertiesValueChanged(["rateColorMode", "scaleColorMode"], function () {
62451
62924
  _this.updateColors(_this.survey.themeVariables);
62452
62925
  });
62453
- _this.registerFunctionOnPropertiesValueChanged(["autoGenerate"], function () {
62926
+ _this.registerSychProperties(["autoGenerate"], function () {
62454
62927
  if (!_this.autoGenerate && _this.rateValues.length === 0) {
62455
62928
  _this.setPropertyValue("rateValues", _this.visibleRateValues);
62456
62929
  }
62457
62930
  if (_this.autoGenerate) {
62458
- _this.rateValues.length = 0;
62931
+ _this.rateValues.splice(0, _this.rateValues.length);
62459
62932
  _this.updateRateMax();
62460
62933
  }
62461
62934
  _this.createRenderedRateItems();
@@ -62781,6 +63254,13 @@ var QuestionRatingModel = /** @class */ (function (_super) {
62781
63254
  QuestionRatingModel.prototype.getInputId = function (index) {
62782
63255
  return this.inputId + "_" + index;
62783
63256
  };
63257
+ Object.defineProperty(QuestionRatingModel.prototype, "questionName", {
63258
+ get: function () {
63259
+ return this.name + "_" + this.id;
63260
+ },
63261
+ enumerable: false,
63262
+ configurable: true
63263
+ });
62784
63264
  QuestionRatingModel.prototype.supportGoNextPageAutomatic = function () {
62785
63265
  return this.isMouseDown === true || this.renderAs === "dropdown";
62786
63266
  };
@@ -65037,8 +65517,8 @@ var QuestionTextModel = /** @class */ (function (_super) {
65037
65517
  if (this.inputTextAlignment !== "auto") {
65038
65518
  style.textAlign = this.inputTextAlignment;
65039
65519
  }
65040
- else if (this.maskType === "numeric" || this.maskType === "currency") {
65041
- style.textAlign = "right";
65520
+ else if (this.maskSettings.getTextAlignment() !== "auto") {
65521
+ style.textAlign = this.maskSettings.getTextAlignment();
65042
65522
  }
65043
65523
  };
65044
65524
  QuestionTextModel.prototype.updateValueOnEvent = function (event) {
@@ -67404,6 +67884,7 @@ var MatrixRow = /** @class */ (function (_super) {
67404
67884
  __extends(MatrixRow, _super);
67405
67885
  function MatrixRow(props) {
67406
67886
  var _this = _super.call(this, props) || this;
67887
+ _this.root = react__WEBPACK_IMPORTED_MODULE_0___default.a.createRef();
67407
67888
  _this.onPointerDownHandler = function (event) {
67408
67889
  _this.parentMatrix.onPointerDown(event.nativeEvent, _this.model.row);
67409
67890
  };
@@ -67426,12 +67907,35 @@ var MatrixRow = /** @class */ (function (_super) {
67426
67907
  MatrixRow.prototype.getStateElement = function () {
67427
67908
  return this.model;
67428
67909
  };
67910
+ MatrixRow.prototype.componentDidMount = function () {
67911
+ _super.prototype.componentDidMount.call(this);
67912
+ if (this.root.current) {
67913
+ this.model.setRootElement(this.root.current);
67914
+ }
67915
+ };
67916
+ MatrixRow.prototype.componentWillUnmount = function () {
67917
+ _super.prototype.componentWillUnmount.call(this);
67918
+ this.model.setRootElement(undefined);
67919
+ };
67920
+ MatrixRow.prototype.shouldComponentUpdate = function (nextProps, nextState) {
67921
+ if (!_super.prototype.shouldComponentUpdate.call(this, nextProps, nextState))
67922
+ return false;
67923
+ if (nextProps.model !== this.model) {
67924
+ if (nextProps.element) {
67925
+ nextProps.element.setRootElement(this.root.current);
67926
+ }
67927
+ if (this.model) {
67928
+ this.model.setRootElement(undefined);
67929
+ }
67930
+ }
67931
+ return true;
67932
+ };
67429
67933
  MatrixRow.prototype.render = function () {
67430
67934
  var _this = this;
67431
67935
  var model = this.model;
67432
67936
  if (!model.visible)
67433
67937
  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));
67938
+ 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
67939
  };
67436
67940
  return MatrixRow;
67437
67941
  }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
@@ -67924,7 +68428,6 @@ var PopupContainer = /** @class */ (function (_super) {
67924
68428
  __extends(PopupContainer, _super);
67925
68429
  function PopupContainer(props) {
67926
68430
  var _this = _super.call(this, props) || this;
67927
- _this.prevIsVisible = false;
67928
68431
  _this.handleKeydown = function (event) {
67929
68432
  _this.model.onKeyDown(event);
67930
68433
  };
@@ -67945,10 +68448,9 @@ var PopupContainer = /** @class */ (function (_super) {
67945
68448
  };
67946
68449
  PopupContainer.prototype.componentDidUpdate = function (prevProps, prevState) {
67947
68450
  _super.prototype.componentDidUpdate.call(this, prevProps, prevState);
67948
- if (!this.prevIsVisible && this.model.isVisible) {
68451
+ if (!this.model.isPositionSet && this.model.isVisible) {
67949
68452
  this.model.updateOnShowing();
67950
68453
  }
67951
- this.prevIsVisible = this.model.isVisible;
67952
68454
  };
67953
68455
  PopupContainer.prototype.renderContainer = function (popupBaseViewModel) {
67954
68456
  var _this = this;
@@ -68156,7 +68658,7 @@ var RatingItemSmiley = /** @class */ (function (_super) {
68156
68658
  RatingItemSmiley.prototype.render = function () {
68157
68659
  var _this = this;
68158
68660
  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 }),
68661
+ 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
68662
  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
68663
  };
68162
68664
  return RatingItemSmiley;
@@ -68211,7 +68713,7 @@ var RatingItemStar = /** @class */ (function (_super) {
68211
68713
  RatingItemStar.prototype.render = function () {
68212
68714
  var _this = this;
68213
68715
  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 }),
68716
+ 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
68717
  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
68718
  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
68719
  };
@@ -68303,7 +68805,7 @@ var RatingItem = /** @class */ (function (_super) {
68303
68805
  RatingItem.prototype.render = function () {
68304
68806
  var itemText = this.renderLocString(this.item.locText);
68305
68807
  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 }),
68808
+ 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
68809
  react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: this.question.cssClasses.itemText }, itemText)));
68308
68810
  };
68309
68811
  RatingItem.prototype.componentDidMount = function () {
@@ -69409,7 +69911,7 @@ var SurveyElementHeader = /** @class */ (function (_super) {
69409
69911
  var description = element.hasDescriptionUnderTitle
69410
69912
  ? _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"].renderQuestionDescription(this.element)
69411
69913
  : 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;
69914
+ 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
69915
  return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: element.cssHeader, onClick: function (e) { return element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent); } },
69414
69916
  title,
69415
69917
  description,
@@ -73595,7 +74097,7 @@ var SurveyQuestionMatrixDropdownBase = /** @class */ (function (_super) {
73595
74097
  SurveyQuestionMatrixDropdownBase.prototype.renderRows = function () {
73596
74098
  var cssClasses = this.question.cssClasses;
73597
74099
  var rows = [];
73598
- var renderedRows = this.question.renderedTable.rows;
74100
+ var renderedRows = this.question.renderedTable.renderedRows;
73599
74101
  for (var i = 0; i < renderedRows.length; i++) {
73600
74102
  rows.push(this.renderRow(renderedRows[i].id, renderedRows[i], cssClasses));
73601
74103
  }
@@ -74180,19 +74682,11 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
74180
74682
  });
74181
74683
  };
74182
74684
  SurveyQuestionPanelDynamic.prototype.renderElement = function () {
74685
+ var _this = this;
74183
74686
  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
- }
74687
+ this.question.renderedPanels.forEach(function (panel, index) {
74688
+ 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 }));
74689
+ });
74196
74690
  var btnAdd = this.question.isRenderModeList && this.question["showLegacyNavigation"]
74197
74691
  ? this.renderAddRowButton()
74198
74692
  : null;
@@ -74202,13 +74696,12 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
74202
74696
  var navBottom = this.question.isProgressBottomShowing
74203
74697
  ? this.renderNavigator()
74204
74698
  : null;
74205
- var style = {};
74206
74699
  var navV2 = this.renderNavigatorV2();
74207
74700
  var noEntriesPlaceholder = this.renderPlaceholder();
74208
74701
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.root },
74209
74702
  noEntriesPlaceholder,
74210
74703
  navTop,
74211
- panels,
74704
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.panelsContainer }, panels),
74212
74705
  navBottom,
74213
74706
  btnAdd,
74214
74707
  navV2));
@@ -74657,6 +75150,10 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
74657
75150
  event.persist();
74658
75151
  //event.preventDefault();
74659
75152
  _this.question.handlePointerDown.call(_this.question, event, item, event.currentTarget);
75153
+ }, function (event) {
75154
+ event.persist();
75155
+ //event.preventDefault();
75156
+ _this.question.handlePointerUp.call(_this.question, event, item, event.currentTarget);
74660
75157
  }, this_1.question.cssClasses, this_1.question.getItemClass(item), this_1.question, unrankedItem));
74661
75158
  };
74662
75159
  var this_1 = this;
@@ -74665,13 +75162,13 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
74665
75162
  }
74666
75163
  return items;
74667
75164
  };
74668
- SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, cssClasses, itemClass, question, unrankedItem) {
75165
+ SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, handlePointerUp, cssClasses, itemClass, question, unrankedItem) {
74669
75166
  var key = "id-" + item.renderedId;
74670
75167
  var text = this.renderLocString(item.locText);
74671
75168
  var index = i;
74672
75169
  var indexText = this.question.getNumberByIndex(index);
74673
75170
  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 }));
75171
+ 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
75172
  var survey = this.question.survey;
74676
75173
  var wrappedItem = null;
74677
75174
  if (!!survey) {
@@ -74722,6 +75219,13 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
74722
75219
  enumerable: false,
74723
75220
  configurable: true
74724
75221
  });
75222
+ Object.defineProperty(SurveyQuestionRankingItem.prototype, "handlePointerUp", {
75223
+ get: function () {
75224
+ return this.props.handlePointerUp;
75225
+ },
75226
+ enumerable: false,
75227
+ configurable: true
75228
+ });
74725
75229
  Object.defineProperty(SurveyQuestionRankingItem.prototype, "cssClasses", {
74726
75230
  get: function () {
74727
75231
  return this.props.cssClasses;
@@ -74769,7 +75273,7 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
74769
75273
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.dashSvgIcon })));
74770
75274
  };
74771
75275
  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 },
75276
+ 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
75277
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: -1, style: { outline: "none" } },
74774
75278
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemGhostNode }),
74775
75279
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemContent },
@@ -77303,7 +77807,6 @@ var SurveyElement = /** @class */ (function (_super) {
77303
77807
  }
77304
77808
  }
77305
77809
  }, function () { return _this.renderedIsExpanded; });
77306
- _this.animationAllowedValue = true;
77307
77810
  _this.name = name;
77308
77811
  _this.createNewArray("errors");
77309
77812
  _this.createNewArray("titleActions");
@@ -77339,7 +77842,7 @@ var SurveyElement = /** @class */ (function (_super) {
77339
77842
  var el = root.getElementById(elementId);
77340
77843
  return SurveyElement.ScrollElementToViewCore(el, false, scrollIfVisible);
77341
77844
  };
77342
- SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible) {
77845
+ SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible, scrollIntoViewOptions) {
77343
77846
  if (!el || !el.scrollIntoView)
77344
77847
  return false;
77345
77848
  var elTop = scrollIfVisible ? -1 : el.getBoundingClientRect().top;
@@ -77358,7 +77861,7 @@ var SurveyElement = /** @class */ (function (_super) {
77358
77861
  }
77359
77862
  }
77360
77863
  if (needScroll) {
77361
- el.scrollIntoView();
77864
+ el.scrollIntoView(scrollIntoViewOptions);
77362
77865
  }
77363
77866
  return needScroll;
77364
77867
  };
@@ -78342,6 +78845,13 @@ var SurveyElement = /** @class */ (function (_super) {
78342
78845
  this.toggleState();
78343
78846
  }
78344
78847
  };
78848
+ Object.defineProperty(SurveyElement.prototype, "hasAdditionalTitleToolbar", {
78849
+ get: function () {
78850
+ return false;
78851
+ },
78852
+ enumerable: false,
78853
+ configurable: true
78854
+ });
78345
78855
  Object.defineProperty(SurveyElement.prototype, "additionalTitleToolbar", {
78346
78856
  get: function () {
78347
78857
  return this.getAdditionalTitleToolbar();
@@ -78367,18 +78877,25 @@ var SurveyElement = /** @class */ (function (_super) {
78367
78877
  };
78368
78878
  Object.defineProperty(SurveyElement.prototype, "isDisabledStyle", {
78369
78879
  get: function () {
78370
- return !this.isDefaultV2Theme && (this.isReadOnlyStyle || this.isPreviewStyle);
78880
+ return this.getIsDisableAndReadOnlyStyles(false)[1];
78371
78881
  },
78372
78882
  enumerable: false,
78373
78883
  configurable: true
78374
78884
  });
78375
78885
  Object.defineProperty(SurveyElement.prototype, "isReadOnlyStyle", {
78376
78886
  get: function () {
78377
- return this.isReadOnly && !this.isPreviewStyle;
78887
+ return this.getIsDisableAndReadOnlyStyles(false)[0];
78378
78888
  },
78379
78889
  enumerable: false,
78380
78890
  configurable: true
78381
78891
  });
78892
+ SurveyElement.prototype.getIsDisableAndReadOnlyStyles = function (itemReadOnly) {
78893
+ var isPreview = this.isPreviewStyle;
78894
+ var isReadOnly = itemReadOnly || this.isReadOnly;
78895
+ var isReadOnlyStyle = isReadOnly && !isPreview;
78896
+ var isDisableStyle = !this.isDefaultV2Theme && (isReadOnly || isPreview);
78897
+ return [isReadOnlyStyle, isDisableStyle];
78898
+ };
78382
78899
  Object.defineProperty(SurveyElement.prototype, "isPreviewStyle", {
78383
78900
  get: function () {
78384
78901
  return !!this.survey && this.survey.state === "preview";
@@ -78445,12 +78962,12 @@ var SurveyElement = /** @class */ (function (_super) {
78445
78962
  if (cssClasses.content) {
78446
78963
  var selector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["classesToSelector"])(cssClasses.content);
78447
78964
  if (selector) {
78448
- return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(selector);
78965
+ return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(":scope " + selector);
78449
78966
  }
78450
78967
  }
78451
78968
  return undefined;
78452
78969
  },
78453
- isAnimationEnabled: function () { return _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].animationEnabled && _this.animationAllowed && !_this.isDesignMode; }
78970
+ isAnimationEnabled: function () { return _this.animationAllowed && !_this.isDesignMode; }
78454
78971
  };
78455
78972
  };
78456
78973
  Object.defineProperty(SurveyElement.prototype, "renderedIsExpanded", {
@@ -78463,16 +78980,9 @@ var SurveyElement = /** @class */ (function (_super) {
78463
78980
  enumerable: false,
78464
78981
  configurable: true
78465
78982
  });
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
- });
78983
+ SurveyElement.prototype.getIsAnimationAllowed = function () {
78984
+ return _super.prototype.getIsAnimationAllowed.call(this) && !!this.survey;
78985
+ };
78476
78986
  SurveyElement.prototype.dispose = function () {
78477
78987
  _super.prototype.dispose.call(this);
78478
78988
  if (this.titleToolbarValue) {
@@ -81978,7 +82488,7 @@ var SurveyModel = /** @class */ (function (_super) {
81978
82488
  }
81979
82489
  this.getAllQuestions().forEach(function (q) {
81980
82490
  if (q.hasFilteredValue) {
81981
- values[q.getValueName()] = q.getFilteredValue();
82491
+ values[q.getFilteredName()] = q.getFilteredValue();
81982
82492
  }
81983
82493
  });
81984
82494
  return values;
@@ -85078,6 +85588,7 @@ var SurveyModel = /** @class */ (function (_super) {
85078
85588
  * @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
85589
  */
85080
85590
  SurveyModel.prototype.sendResult = function (postId, clientId, isPartial) {
85591
+ var _this = this;
85081
85592
  if (postId === void 0) { postId = null; }
85082
85593
  if (clientId === void 0) { clientId = null; }
85083
85594
  if (isPartial === void 0) { isPartial = false; }
@@ -85096,24 +85607,23 @@ var SurveyModel = /** @class */ (function (_super) {
85096
85607
  }
85097
85608
  if (isPartial && !this.clientId)
85098
85609
  return;
85099
- var self = this;
85100
- if (this.surveyShowDataSaving) {
85610
+ var service = this.createSurveyService();
85611
+ service.locale = this.getLocale();
85612
+ var showSaving = this.surveyShowDataSaving || (!isPartial && service.isSurveJSIOService);
85613
+ if (showSaving) {
85101
85614
  this.setCompletedState("saving", "");
85102
85615
  }
85103
- this.createSurveyService().sendResult(postId, this.data, function (success, response, request) {
85104
- if (self.surveyShowDataSaving) {
85616
+ service.sendResult(postId, this.data, function (success, response, request) {
85617
+ if (showSaving || service.isSurveJSIOService) {
85105
85618
  if (success) {
85106
- self.setCompletedState("success", "");
85619
+ _this.setCompletedState("success", "");
85107
85620
  }
85108
85621
  else {
85109
- self.setCompletedState("error", response);
85622
+ _this.setCompletedState("error", response);
85110
85623
  }
85111
85624
  }
85112
- self.onSendResult.fire(self, {
85113
- success: success,
85114
- response: response,
85115
- request: request,
85116
- });
85625
+ var options = { success: success, response: response, request: request };
85626
+ _this.onSendResult.fire(_this, options);
85117
85627
  }, this.clientId, isPartial);
85118
85628
  };
85119
85629
  /**
@@ -85751,7 +86261,7 @@ var SurveyModel = /** @class */ (function (_super) {
85751
86261
  if (locNotification !== "text") {
85752
86262
  this.tryGoNextPageAutomatic(name);
85753
86263
  }
85754
- var question = this.getQuestionByName(name);
86264
+ var question = this.getQuestionByValueName(name);
85755
86265
  if (question) {
85756
86266
  this.onValueChanged.fire(this, {
85757
86267
  name: commentName,
@@ -88754,6 +89264,9 @@ var SurveyTriggerRunExpression = /** @class */ (function (_super) {
88754
89264
  enumerable: false,
88755
89265
  configurable: true
88756
89266
  });
89267
+ SurveyTriggerRunExpression.prototype.canBeExecuted = function (isOnNextPage) {
89268
+ return !isOnNextPage;
89269
+ };
88757
89270
  SurveyTriggerRunExpression.prototype.onSuccess = function (values, properties) {
88758
89271
  var _this = this;
88759
89272
  if (!this.owner || !this.runExpression)
@@ -88877,7 +89390,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_2__["Serializer"].addClass("runexpressiontr
88877
89390
  /*!********************************!*\
88878
89391
  !*** ./src/utils/animation.ts ***!
88879
89392
  \********************************/
88880
- /*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup */
89393
+ /*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab */
88881
89394
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
88882
89395
 
88883
89396
  "use strict";
@@ -88885,8 +89398,10 @@ __webpack_require__.r(__webpack_exports__);
88885
89398
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationUtils", function() { return AnimationUtils; });
88886
89399
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationPropertyUtils", function() { return AnimationPropertyUtils; });
88887
89400
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return AnimationGroupUtils; });
89401
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return AnimationProperty; });
88888
89402
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return AnimationBoolean; });
88889
89403
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return AnimationGroup; });
89404
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return AnimationTab; });
88890
89405
  /* harmony import */ var _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../global_variables_utils */ "./src/global_variables_utils.ts");
88891
89406
  /* harmony import */ var _taskmanager__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./taskmanager */ "./src/utils/taskmanager.ts");
88892
89407
  var __extends = (undefined && undefined.__extends) || (function () {
@@ -88915,6 +89430,9 @@ var AnimationUtils = /** @class */ (function () {
88915
89430
  return 0;
88916
89431
  return Number(value.slice(0, -1).replace(",", ".")) * 1000;
88917
89432
  };
89433
+ AnimationUtils.prototype.reflow = function (element) {
89434
+ return element.offsetHeight;
89435
+ };
88918
89436
  AnimationUtils.prototype.getAnimationsCount = function (element) {
88919
89437
  var animationName = "";
88920
89438
  if (getComputedStyle) {
@@ -88932,6 +89450,14 @@ var AnimationUtils = /** @class */ (function () {
88932
89450
  }
88933
89451
  return duration;
88934
89452
  };
89453
+ AnimationUtils.prototype.addCancelCallback = function (callback) {
89454
+ this.cancelQueue.push(callback);
89455
+ };
89456
+ AnimationUtils.prototype.removeCancelCallback = function (callback) {
89457
+ if (this.cancelQueue.indexOf(callback) >= 0) {
89458
+ this.cancelQueue.splice(this.cancelQueue.indexOf(callback), 1);
89459
+ }
89460
+ };
88935
89461
  AnimationUtils.prototype.onAnimationEnd = function (element, callback, options) {
88936
89462
  var _this = this;
88937
89463
  var cancelTimeout;
@@ -88941,7 +89467,7 @@ var AnimationUtils = /** @class */ (function () {
88941
89467
  options.onAfterRunAnimation && options.onAfterRunAnimation(element);
88942
89468
  callback(isCancel);
88943
89469
  clearTimeout(cancelTimeout);
88944
- _this.cancelQueue.splice(_this.cancelQueue.indexOf(onEndCallback), 1);
89470
+ _this.removeCancelCallback(onEndCallback);
88945
89471
  element.removeEventListener("animationend", onAnimationEndCallback);
88946
89472
  };
88947
89473
  var onAnimationEndCallback = function (event) {
@@ -88951,7 +89477,7 @@ var AnimationUtils = /** @class */ (function () {
88951
89477
  };
88952
89478
  if (animationsCount > 0) {
88953
89479
  element.addEventListener("animationend", onAnimationEndCallback);
88954
- this.cancelQueue.push(onEndCallback);
89480
+ this.addCancelCallback(onEndCallback);
88955
89481
  cancelTimeout = setTimeout(function () {
88956
89482
  onEndCallback(false);
88957
89483
  }, this.getAnimationDuration(element) + 10);
@@ -88961,40 +89487,51 @@ var AnimationUtils = /** @class */ (function () {
88961
89487
  }
88962
89488
  };
88963
89489
  AnimationUtils.prototype.beforeAnimationRun = function (element, options) {
88964
- if (element) {
89490
+ if (element && options) {
88965
89491
  options.onBeforeRunAnimation && options.onBeforeRunAnimation(element);
88966
89492
  }
88967
89493
  };
88968
- AnimationUtils.prototype.runLeaveAnimation = function (element, options, callback) {
89494
+ AnimationUtils.prototype.runAnimation = function (element, options, callback) {
88969
89495
  if (element && options.cssClass) {
89496
+ this.reflow(element);
88970
89497
  element.classList.add(options.cssClass);
88971
- var onAnimationEndCallback = function (isCancel) {
89498
+ this.onAnimationEnd(element, callback, options);
89499
+ }
89500
+ else {
89501
+ callback(true);
89502
+ }
89503
+ };
89504
+ AnimationUtils.prototype.clearHtmlElement = function (element, options) {
89505
+ if (element && options.cssClass) {
89506
+ element.classList.remove(options.cssClass);
89507
+ }
89508
+ };
89509
+ AnimationUtils.prototype.onNextRender = function (callback, runEarly, isCancel) {
89510
+ var _this = this;
89511
+ if (isCancel === void 0) { isCancel = false; }
89512
+ if (!isCancel && _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].isAvailable()) {
89513
+ var cancelCallback_1 = function () {
88972
89514
  callback();
88973
- if (isCancel) {
88974
- element.classList.remove(options.cssClass);
89515
+ cancelAnimationFrame(latestRAF_1);
89516
+ };
89517
+ var latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89518
+ if (runEarly && runEarly()) {
89519
+ callback();
89520
+ _this.removeCancelCallback(cancelCallback_1);
88975
89521
  }
88976
89522
  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
- });
89523
+ latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
89524
+ callback();
89525
+ _this.removeCancelCallback(cancelCallback_1);
88981
89526
  });
88982
89527
  }
88983
- };
88984
- this.onAnimationEnd(element, onAnimationEndCallback, options);
89528
+ });
89529
+ this.addCancelCallback(cancelCallback_1);
88985
89530
  }
88986
89531
  else {
88987
89532
  callback();
88988
89533
  }
88989
89534
  };
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
89535
  AnimationUtils.prototype.cancel = function () {
88999
89536
  var cancelQueue = [].concat(this.cancelQueue);
89000
89537
  cancelQueue.forEach(function (callback) { return callback(); });
@@ -89008,26 +89545,28 @@ var AnimationPropertyUtils = /** @class */ (function (_super) {
89008
89545
  function AnimationPropertyUtils() {
89009
89546
  return _super !== null && _super.apply(this, arguments) || this;
89010
89547
  }
89011
- AnimationPropertyUtils.prototype.onEnter = function (getElement, options) {
89548
+ AnimationPropertyUtils.prototype.onEnter = function (options) {
89012
89549
  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
- });
89550
+ this.onNextRender(function () {
89551
+ var htmlElement = options.getAnimatedElement();
89552
+ var enterOptions = options.getEnterOptions();
89553
+ _this.beforeAnimationRun(htmlElement, enterOptions);
89554
+ _this.runAnimation(htmlElement, enterOptions, function () {
89555
+ _this.clearHtmlElement(htmlElement, enterOptions);
89556
+ });
89557
+ }, function () { return !!options.getAnimatedElement(); });
89026
89558
  };
89027
- AnimationPropertyUtils.prototype.onLeave = function (getElement, callback, options) {
89028
- var element = getElement();
89029
- this.beforeAnimationRun(element, options);
89030
- this.runLeaveAnimation(element, options, callback);
89559
+ AnimationPropertyUtils.prototype.onLeave = function (options, callback) {
89560
+ var _this = this;
89561
+ var htmlElement = options.getAnimatedElement();
89562
+ var leaveOptions = options.getLeaveOptions();
89563
+ this.beforeAnimationRun(htmlElement, leaveOptions);
89564
+ this.runAnimation(htmlElement, leaveOptions, function (isCancel) {
89565
+ callback();
89566
+ _this.onNextRender(function () {
89567
+ _this.clearHtmlElement(htmlElement, leaveOptions);
89568
+ }, undefined, isCancel);
89569
+ });
89031
89570
  };
89032
89571
  return AnimationPropertyUtils;
89033
89572
  }(AnimationUtils));
@@ -89037,41 +89576,40 @@ var AnimationGroupUtils = /** @class */ (function (_super) {
89037
89576
  function AnimationGroupUtils() {
89038
89577
  return _super !== null && _super.apply(this, arguments) || this;
89039
89578
  }
89040
- AnimationGroupUtils.prototype.onEnter = function (getElement, getOptions, elements) {
89579
+ AnimationGroupUtils.prototype.runGroupAnimation = function (options, addedElements, removedElements, callback) {
89041
89580
  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
- });
89581
+ this.onNextRender(function () {
89582
+ var addedHtmlElements = addedElements.map(function (el) { return options.getAnimatedElement(el); });
89583
+ var enterOptions = addedElements.map(function (el) { return options.getEnterOptions(el); });
89584
+ var removedHtmlElements = removedElements.map(function (el) { return options.getAnimatedElement(el); });
89585
+ var leaveOptions = removedElements.map(function (el) { return options.getLeaveOptions(el); });
89586
+ addedElements.forEach(function (_, i) {
89587
+ _this.beforeAnimationRun(addedHtmlElements[i], enterOptions[i]);
89588
+ });
89589
+ removedElements.forEach(function (_, i) {
89590
+ _this.beforeAnimationRun(removedHtmlElements[i], leaveOptions[i]);
89591
+ });
89592
+ var counter = addedElements.length + removedElements.length;
89593
+ var onAnimationEndCallback = function (isCancel) {
89594
+ if (--counter <= 0) {
89595
+ callback && callback();
89596
+ _this.onNextRender(function () {
89597
+ addedElements.forEach(function (_, i) {
89598
+ _this.clearHtmlElement(addedHtmlElements[i], enterOptions[i]);
89599
+ });
89600
+ removedElements.forEach(function (_, i) {
89601
+ _this.clearHtmlElement(removedHtmlElements[i], leaveOptions[i]);
89602
+ });
89603
+ }, undefined, isCancel);
89604
+ }
89052
89605
  };
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
- });
89606
+ addedElements.forEach(function (_, i) {
89607
+ _this.runAnimation(addedHtmlElements[i], enterOptions[i], onAnimationEndCallback);
89608
+ });
89609
+ removedElements.forEach(function (_, i) {
89610
+ _this.runAnimation(removedHtmlElements[i], leaveOptions[i], onAnimationEndCallback);
89611
+ });
89612
+ }, function () { return addedElements.length == 0 || addedElements.some(function (el) { return !!options.getAnimatedElement(el); }); });
89075
89613
  };
89076
89614
  return AnimationGroupUtils;
89077
89615
  }(AnimationUtils));
@@ -89092,6 +89630,7 @@ var AnimationProperty = /** @class */ (function () {
89092
89630
  this._debouncedSync.run(newValue);
89093
89631
  }
89094
89632
  else {
89633
+ this.cancel();
89095
89634
  this.update(newValue);
89096
89635
  }
89097
89636
  };
@@ -89101,6 +89640,7 @@ var AnimationProperty = /** @class */ (function () {
89101
89640
  };
89102
89641
  return AnimationProperty;
89103
89642
  }());
89643
+
89104
89644
  var AnimationBoolean = /** @class */ (function (_super) {
89105
89645
  __extends(AnimationBoolean, _super);
89106
89646
  function AnimationBoolean() {
@@ -89113,12 +89653,12 @@ var AnimationBoolean = /** @class */ (function (_super) {
89113
89653
  if (newValue !== this.getCurrentValue()) {
89114
89654
  if (newValue) {
89115
89655
  this.update(newValue);
89116
- this.animation.onEnter(function () { return _this.animationOptions.getAnimatedElement(); }, this.animationOptions.getEnterOptions());
89656
+ this.animation.onEnter(this.animationOptions);
89117
89657
  }
89118
89658
  else {
89119
- this.animation.onLeave(function () { return _this.animationOptions.getAnimatedElement(); }, function () {
89659
+ this.animation.onLeave(this.animationOptions, function () {
89120
89660
  _this.update(newValue);
89121
- }, this.animationOptions.getLeaveOptions());
89661
+ });
89122
89662
  }
89123
89663
  }
89124
89664
  else {
@@ -89140,19 +89680,42 @@ var AnimationGroup = /** @class */ (function (_super) {
89140
89680
  var oldValue = this.getCurrentValue();
89141
89681
  var itemsToAdd = newValue.filter(function (el) { return oldValue.indexOf(el) < 0; });
89142
89682
  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
89683
  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);
89684
+ this.animation.runGroupAnimation(this.animationOptions, [], deletedItems, function () { return _this.update(newValue); });
89148
89685
  }
89149
89686
  else {
89150
89687
  this.update(newValue);
89688
+ this.animation.runGroupAnimation(this.animationOptions, itemsToAdd, []);
89151
89689
  }
89152
89690
  };
89153
89691
  return AnimationGroup;
89154
89692
  }(AnimationProperty));
89155
89693
 
89694
+ var AnimationTab = /** @class */ (function (_super) {
89695
+ __extends(AnimationTab, _super);
89696
+ function AnimationTab(animationOptions, update, getCurrentValue, mergeValues) {
89697
+ var _this = _super.call(this, animationOptions, update, getCurrentValue) || this;
89698
+ _this.mergeValues = mergeValues;
89699
+ _this.animation = new AnimationGroupUtils();
89700
+ return _this;
89701
+ }
89702
+ AnimationTab.prototype._sync = function (newValue) {
89703
+ var _this = this;
89704
+ var oldValue = [].concat(this.getCurrentValue());
89705
+ if (oldValue[0] !== newValue[0]) {
89706
+ var tempValue = !!this.mergeValues ? this.mergeValues(newValue, oldValue) : [].concat(oldValue, newValue);
89707
+ this.update(tempValue, true);
89708
+ this.animation.runGroupAnimation(this.animationOptions, newValue, oldValue, function () {
89709
+ _this.update(newValue);
89710
+ });
89711
+ }
89712
+ else {
89713
+ this.update(newValue);
89714
+ }
89715
+ };
89716
+ return AnimationTab;
89717
+ }(AnimationProperty));
89718
+
89156
89719
 
89157
89720
 
89158
89721
  /***/ }),