survey-react 1.12.27 → 1.12.28

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/modern.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.27
2
+ * surveyjs - Survey JavaScript library v1.12.28
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/modern.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.27
2
+ * surveyjs - Survey JavaScript library v1.12.28
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react",
3
- "version": "1.12.27",
3
+ "version": "1.12.28",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
package/survey.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.27
2
+ * surveyjs - Survey JavaScript library v1.12.28
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.27
2
+ * surveyjs - Survey JavaScript library v1.12.28
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.react.d.ts CHANGED
@@ -11971,8 +11971,10 @@ declare module "packages/survey-core/src/survey" {
11971
11971
  private createRootPage;
11972
11972
  private disposeContainerPage;
11973
11973
  private updatePagesContainer;
11974
- private currentSingleQuestionValue;
11974
+ private currentSingleElementValue;
11975
11975
  private getSingleQuestions;
11976
+ get currentSingleElement(): IElement;
11977
+ set currentSingleElement(val: IElement);
11976
11978
  get currentSingleQuestion(): Question;
11977
11979
  set currentSingleQuestion(val: Question);
11978
11980
  private changeCurrentPageFromPreview;
@@ -15193,7 +15195,7 @@ declare module "packages/survey-core/src/base-interfaces" {
15193
15195
  isDisplayMode: boolean;
15194
15196
  isDesignMode: boolean;
15195
15197
  areInvisibleElementsShowing: boolean;
15196
- currentSingleQuestion: IQuestion;
15198
+ currentSingleElement: IElement;
15197
15199
  areEmptyElementsHidden: boolean;
15198
15200
  isLoadingFromJson: boolean;
15199
15201
  isUpdateValueTextOnTyping: boolean;
@@ -15318,6 +15320,7 @@ declare module "packages/survey-core/src/base-interfaces" {
15318
15320
  isReadOnly: boolean;
15319
15321
  isPage: boolean;
15320
15322
  isPanel: boolean;
15323
+ isQuestion: boolean;
15321
15324
  containsErrors: boolean;
15322
15325
  parent: IPanel;
15323
15326
  skeletonComponentName: string;
package/survey.react.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.27
2
+ * surveyjs - Survey JavaScript library v1.12.28
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -9963,24 +9963,31 @@ var base_Bindings = /** @class */ (function () {
9963
9963
  return res;
9964
9964
  };
9965
9965
  Bindings.prototype.getJson = function () {
9966
+ var _this = this;
9966
9967
  if (this.isEmpty())
9967
9968
  return undefined;
9968
9969
  var res = {};
9969
- for (var key in this.values) {
9970
- res[key] = this.values[key];
9971
- }
9970
+ this.getNames().forEach(function (key) {
9971
+ if (_this.values[key] !== undefined) {
9972
+ res[key] = _this.values[key];
9973
+ }
9974
+ });
9972
9975
  return res;
9973
9976
  };
9974
9977
  Bindings.prototype.setJson = function (value, isLoading) {
9978
+ var _this = this;
9975
9979
  var oldValue = this.getJson();
9976
9980
  this.values = null;
9977
9981
  if (!!value) {
9978
- this.values = {};
9979
- for (var key in value) {
9980
- this.values[key] = value[key];
9981
- }
9982
+ this.getNames().forEach(function (key) {
9983
+ if (value[key] !== undefined) {
9984
+ if (!_this.values)
9985
+ _this.values = {};
9986
+ _this.values[key] = value[key];
9987
+ }
9988
+ });
9982
9989
  }
9983
- if (!isLoading) {
9990
+ if (!isLoading && !helpers_Helpers.isTwoValueEquals(oldValue, this.values)) {
9984
9991
  this.onChangedJSON(oldValue);
9985
9992
  }
9986
9993
  };
@@ -14834,7 +14841,7 @@ var survey_element_SurveyElement = /** @class */ (function (_super) {
14834
14841
  });
14835
14842
  SurveyElement.prototype.canHaveFrameStyles = function () {
14836
14843
  var _a;
14837
- if (((_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleQuestion) === this)
14844
+ if (((_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleElement) === this)
14838
14845
  return true;
14839
14846
  return (this.parent !== undefined && (!this.hasParent || this.parent && this.parent.showPanelAsPage));
14840
14847
  };
@@ -39496,7 +39503,7 @@ var page_PageModel = /** @class */ (function (_super) {
39496
39503
  PageModel.prototype.getElementsForRows = function () {
39497
39504
  var _a;
39498
39505
  if (!this.isStartPage) {
39499
- var q = (_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleQuestion;
39506
+ var q = (_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleElement;
39500
39507
  if (!!q) {
39501
39508
  if (q.page === this)
39502
39509
  return [q];
@@ -39534,7 +39541,7 @@ var page_PageModel = /** @class */ (function (_super) {
39534
39541
  });
39535
39542
  Object.defineProperty(PageModel.prototype, "cssTitleNumber", {
39536
39543
  get: function () {
39537
- return this.cssClasses.page.number;
39544
+ return this.isPanel ? this.cssClasses.panel.number : this.cssClasses.page.number;
39538
39545
  },
39539
39546
  enumerable: false,
39540
39547
  configurable: true
@@ -39784,9 +39791,9 @@ var page_PageModel = /** @class */ (function (_super) {
39784
39791
  }
39785
39792
  }
39786
39793
  if (this.randomizeElements(this.areQuestionsRandomized)) {
39787
- var singleQuestion = (_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleQuestion;
39794
+ var singleQuestion = (_a = this.survey) === null || _a === void 0 ? void 0 : _a.currentSingleElement;
39788
39795
  if ((singleQuestion === null || singleQuestion === void 0 ? void 0 : singleQuestion.page) === this) {
39789
- this.survey.currentSingleQuestion = this.getFirstVisibleQuestion();
39796
+ this.survey.currentSingleElement = this.elements[0];
39790
39797
  }
39791
39798
  }
39792
39799
  };
@@ -44121,7 +44128,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44121
44128
  if (newPage == this.currentPage)
44122
44129
  return;
44123
44130
  var oldValue = this.currentPage;
44124
- if (!this.isShowingPreview && !this.currentSingleQuestion && !this.currentPageChanging(newPage, oldValue))
44131
+ if (!this.isShowingPreview && !this.currentSingleElement && !this.currentPageChanging(newPage, oldValue))
44125
44132
  return;
44126
44133
  this.setPropertyValue("currentPage", newPage);
44127
44134
  if (!!newPage) {
@@ -44488,9 +44495,9 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44488
44495
  this.onFirstPageIsStartedChanged();
44489
44496
  if (goToFirstPage) {
44490
44497
  this.currentPage = this.firstVisiblePage;
44491
- if (this.currentSingleQuestion) {
44498
+ if (this.currentSingleElement) {
44492
44499
  var questions = this.getSingleQuestions();
44493
- this.currentSingleQuestion = questions.length > 0 ? questions[0] : undefined;
44500
+ this.currentSingleElement = questions.length > 0 ? questions[0] : undefined;
44494
44501
  }
44495
44502
  }
44496
44503
  if (clearData) {
@@ -44539,7 +44546,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44539
44546
  if (this.isCurrentPageRendered === true) {
44540
44547
  this.isCurrentPageRendered = false;
44541
44548
  }
44542
- if (!this.currentSingleQuestion) {
44549
+ if (!this.currentSingleElement) {
44543
44550
  var options = this.createPageChangeEventOptions(newValue, oldValue);
44544
44551
  this.onCurrentPageChanged.fire(this, options);
44545
44552
  }
@@ -44786,14 +44793,14 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44786
44793
  * @see completeLastPage
44787
44794
  */
44788
44795
  SurveyModel.prototype.nextPage = function () {
44789
- if (this.currentSingleQuestion)
44796
+ if (this.currentSingleElement)
44790
44797
  return this.performNext();
44791
44798
  if (this.isLastPage)
44792
44799
  return false;
44793
44800
  return this.doCurrentPageComplete(false);
44794
44801
  };
44795
44802
  SurveyModel.prototype.performNext = function () {
44796
- var q = this.currentSingleQuestion;
44803
+ var q = this.currentSingleElement;
44797
44804
  if (!q)
44798
44805
  return this.nextPage();
44799
44806
  if (this.validationEnabled && !q.validate(true))
@@ -44802,21 +44809,28 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44802
44809
  var index = questions.indexOf(q);
44803
44810
  if (index < 0 || index === questions.length - 1)
44804
44811
  return false;
44805
- var key = {};
44806
- key[q.name] = q.value;
44807
- this.checkTriggers(key, false, false, true, q.name);
44808
- this.currentSingleQuestion = questions[index + 1];
44812
+ var keys = {};
44813
+ if (q.isQuestion) {
44814
+ keys[q.name] = q.value;
44815
+ }
44816
+ else {
44817
+ if (q.isPanel) {
44818
+ keys = q.getValue();
44819
+ }
44820
+ }
44821
+ this.checkTriggers(keys, false, false, true, q.name);
44822
+ this.currentSingleElement = questions[index + 1];
44809
44823
  return true;
44810
44824
  };
44811
44825
  SurveyModel.prototype.performPrevious = function () {
44812
- var q = this.currentSingleQuestion;
44826
+ var q = this.currentSingleElement;
44813
44827
  if (!q)
44814
44828
  return this.prevPage();
44815
44829
  var questions = this.getSingleQuestions();
44816
44830
  var index = questions.indexOf(q);
44817
44831
  if (index === 0)
44818
44832
  return false;
44819
- this.currentSingleQuestion = questions[index - 1];
44833
+ this.currentSingleElement = questions[index - 1];
44820
44834
  return true;
44821
44835
  };
44822
44836
  SurveyModel.prototype.hasErrorsOnNavigate = function (doComplete) {
@@ -45074,8 +45088,8 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45074
45088
  if (!page)
45075
45089
  return true;
45076
45090
  var res = false;
45077
- if (this.currentSingleQuestion) {
45078
- res = !this.currentSingleQuestion.validate(true);
45091
+ if (this.currentSingleElement) {
45092
+ res = !this.currentSingleElement.validate(true);
45079
45093
  }
45080
45094
  else {
45081
45095
  res = !page.validate(true, isFocuseOnFirstError);
@@ -45114,7 +45128,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45114
45128
  */
45115
45129
  SurveyModel.prototype.prevPage = function () {
45116
45130
  var _this = this;
45117
- if (this.currentSingleQuestion)
45131
+ if (this.currentSingleElement)
45118
45132
  return this.performPrevious();
45119
45133
  if (this.isFirstPage || this.state === "starting")
45120
45134
  return false;
@@ -45203,15 +45217,16 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45203
45217
  * @see state
45204
45218
  */
45205
45219
  SurveyModel.prototype.cancelPreview = function (currentPage) {
45220
+ var _a;
45206
45221
  if (currentPage === void 0) { currentPage = null; }
45207
45222
  if (!this.isShowingPreview)
45208
45223
  return;
45209
45224
  this.gotoPageFromPreview = currentPage;
45210
45225
  this.isShowingPreview = false;
45211
- var q = this.currentSingleQuestion;
45212
- if (!!(q === null || q === void 0 ? void 0 : q.page)) {
45213
- q.page.updateRows();
45214
- this.currentPage = q.page;
45226
+ var page = (_a = this.currentSingleElement) === null || _a === void 0 ? void 0 : _a.page;
45227
+ if (!!page) {
45228
+ page.updateRows();
45229
+ this.currentPage = page;
45215
45230
  }
45216
45231
  };
45217
45232
  SurveyModel.prototype.cancelPreviewByPage = function (panel) {
@@ -45375,7 +45390,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45375
45390
  rootPage.setSurveyImpl(this);
45376
45391
  this.pageContainerValue = rootPage;
45377
45392
  this.currentPage = rootPage;
45378
- if (!!this.currentSingleQuestionValue) {
45393
+ if (!!this.currentSingleElementValue) {
45379
45394
  this.visiblePages.forEach(function (page) { return page.updateRows(); });
45380
45395
  }
45381
45396
  }
@@ -45405,37 +45420,44 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45405
45420
  SurveyModel.prototype.getSingleQuestions = function () {
45406
45421
  var res = new Array();
45407
45422
  var pages = this.pages;
45408
- for (var i = 0; i < pages.length; i++) {
45423
+ var _loop_3 = function () {
45409
45424
  var p = pages[i];
45410
45425
  if (!p.isStartPage && p.isVisible) {
45411
- var qs = [];
45412
- p.addQuestionsToList(qs, true);
45413
- qs.forEach(function (q) { if (q.isVisible)
45426
+ var qs_1 = [];
45427
+ //p.addQuestionsToList(qs, true);
45428
+ p.elements.forEach(function (el) { return qs_1.push(el); });
45429
+ qs_1.forEach(function (q) { if (q.isVisible)
45414
45430
  res.push(q); });
45415
45431
  }
45432
+ };
45433
+ for (var i = 0; i < pages.length; i++) {
45434
+ _loop_3();
45416
45435
  }
45417
45436
  return res;
45418
45437
  };
45419
- Object.defineProperty(SurveyModel.prototype, "currentSingleQuestion", {
45438
+ Object.defineProperty(SurveyModel.prototype, "currentSingleElement", {
45420
45439
  get: function () {
45421
- return !this.isShowingPreview ? this.currentSingleQuestionValue : undefined;
45440
+ return !this.isShowingPreview ? this.currentSingleElementValue : undefined;
45422
45441
  },
45423
45442
  set: function (val) {
45424
- var oldVal = this.currentSingleQuestion;
45443
+ var _a;
45444
+ var oldVal = this.currentSingleElement;
45425
45445
  if (val !== oldVal && !this.isCompleted) {
45426
- var options = !!val && !!oldVal ? this.createPageChangeEventOptions(val.page, oldVal.page, val, oldVal) : undefined;
45446
+ var valQuestion = (val === null || val === void 0 ? void 0 : val.isQuestion) ? val : undefined;
45447
+ var oldValQuestion = (oldVal === null || oldVal === void 0 ? void 0 : oldVal.isQuestion) ? oldVal : undefined;
45448
+ var page = (_a = val) === null || _a === void 0 ? void 0 : _a.page;
45449
+ var options = !!page && !!oldVal ? this.createPageChangeEventOptions(page, oldVal.page, valQuestion, oldValQuestion) : undefined;
45427
45450
  if (!!options && !this.currentPageChangingFromOptions(options))
45428
45451
  return;
45429
- this.currentSingleQuestionValue = val;
45452
+ this.currentSingleElementValue = val;
45430
45453
  if (!!val) {
45431
- var page = val.page;
45432
45454
  page.updateRows();
45433
45455
  if (page !== this.currentPage) {
45434
45456
  this.currentPage = page;
45435
45457
  }
45436
45458
  else {
45437
- if (this.focusFirstQuestionAutomatic) {
45438
- val.focus();
45459
+ if (!!valQuestion && this.focusFirstQuestionAutomatic) {
45460
+ valQuestion.focus();
45439
45461
  }
45440
45462
  }
45441
45463
  this.updateButtonsVisibility();
@@ -45451,10 +45473,21 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45451
45473
  enumerable: false,
45452
45474
  configurable: true
45453
45475
  });
45476
+ Object.defineProperty(SurveyModel.prototype, "currentSingleQuestion", {
45477
+ get: function () {
45478
+ var res = this.currentSingleElement;
45479
+ return !!res && res.isQuestion ? res : undefined;
45480
+ },
45481
+ set: function (val) {
45482
+ this.currentSingleElement = val;
45483
+ },
45484
+ enumerable: false,
45485
+ configurable: true
45486
+ });
45454
45487
  SurveyModel.prototype.onQuestionsOnPageModeChanged = function (oldValue) {
45455
45488
  if (this.isShowingPreview || this.isDesignMode)
45456
45489
  return;
45457
- this.currentSingleQuestion = undefined;
45490
+ this.currentSingleElement = undefined;
45458
45491
  if (oldValue === "singlePage") {
45459
45492
  this.updatePagesContainer();
45460
45493
  }
@@ -45464,7 +45497,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45464
45497
  if (this.isSingleVisibleQuestion) {
45465
45498
  var questions = this.getSingleQuestions();
45466
45499
  if (questions.length > 0) {
45467
- this.currentSingleQuestion = questions[0];
45500
+ this.currentSingleElement = questions[0];
45468
45501
  }
45469
45502
  }
45470
45503
  };
@@ -45556,7 +45589,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45556
45589
  this.setPropertyValue("isLastPage", !!curPage && curPage === this.lastVisiblePage);
45557
45590
  var fVal = undefined;
45558
45591
  var lVal = undefined;
45559
- var q = this.currentSingleQuestion;
45592
+ var q = this.currentSingleElement;
45560
45593
  if (!!q) {
45561
45594
  var questions = this.getSingleQuestions();
45562
45595
  var index = questions.indexOf(q);
@@ -47840,10 +47873,10 @@ var survey_SurveyModel = /** @class */ (function (_super) {
47840
47873
  return;
47841
47874
  if (!question.validate(false) && !question.supportGoNextPageError())
47842
47875
  return;
47843
- if (!!this.currentSingleQuestion) {
47844
- var curQuestion_1 = this.currentSingleQuestion;
47876
+ if (!!this.currentSingleElement) {
47877
+ var curQuestion_1 = this.currentSingleElement;
47845
47878
  var goNextQuestion = function () {
47846
- if (curQuestion_1 !== _this.currentSingleQuestion)
47879
+ if (curQuestion_1 !== _this.currentSingleElement)
47847
47880
  return;
47848
47881
  if (!_this.isLastElement) {
47849
47882
  _this.performNext();
@@ -48859,7 +48892,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
48859
48892
  if (isNeedWaitForPageRendered) {
48860
48893
  this.currentPage = question.page;
48861
48894
  if (this.isSingleVisibleQuestion && !this.isDesignMode) {
48862
- this.currentSingleQuestion = question;
48895
+ this.currentSingleElement = question;
48863
48896
  }
48864
48897
  }
48865
48898
  if (!isNeedWaitForPageRendered) {
@@ -54568,7 +54601,8 @@ var question_matrix_MatrixCells = /** @class */ (function (_super) {
54568
54601
  var rowValues = this.values[row];
54569
54602
  for (var col in rowValues) {
54570
54603
  if (row === this.defaultRowValue || !defaultRow || defaultRow[col] !== rowValues[col]) {
54571
- resRow[col] = rowValues[col];
54604
+ var loc = this.getCellLocCore(row, col);
54605
+ resRow[col] = loc ? loc.getJson() : rowValues[col];
54572
54606
  }
54573
54607
  }
54574
54608
  res[row] = resRow;
@@ -72842,9 +72876,9 @@ Serializer.addClass("currencymask", [
72842
72876
 
72843
72877
  var Version;
72844
72878
  var ReleaseDate;
72845
- Version = "" + "1.12.27";
72879
+ Version = "" + "1.12.28";
72846
72880
  settings.version = Version;
72847
- ReleaseDate = "" + "2025-03-12";
72881
+ ReleaseDate = "" + "2025-03-18";
72848
72882
  function checkLibraryVersion(ver, libraryName) {
72849
72883
  if (Version != ver) {
72850
72884
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -80884,7 +80918,7 @@ var simplifiedChineseSurveyStrings = {
80884
80918
  selectAllItemText: "选择全部",
80885
80919
  deselectAllItemText: "取消全选",
80886
80920
  progressText: "第 {0} 页, 共 {1} 页",
80887
- indexText: "{1}{0}",
80921
+ indexText: "{0} 页,共 {1}",
80888
80922
  panelDynamicProgressText: "{0} of {1}",
80889
80923
  panelDynamicTabTextFormat: "面板 {面板索引}",
80890
80924
  questionsProgressText: "第 {0}/{1} 题",
@@ -80982,7 +81016,6 @@ var simplifiedChineseSurveyStrings = {
80982
81016
  setupLocale({ localeCode: "zh-cn", strings: simplifiedChineseSurveyStrings, nativeName: "简体中文", englishName: "Simplified Chinese" });
80983
81017
  // The following strings have been translated by a machine translation service
80984
81018
  // Remove those strings that you have corrected manually
80985
- // indexText: "{0} of {1}" => "{1}{0}"
80986
81019
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "面板 {面板索引}"
80987
81020
  // ratingOptionsCaption: "Select..." => "选择。。。"
80988
81021
  // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "将文件拖放到此处或单击下面的按钮并选择要上传的文件。"
@@ -81004,9 +81037,15 @@ setupLocale({ localeCode: "zh-cn", strings: simplifiedChineseSurveyStrings, nati
81004
81037
  // ok: "OK" => "还行"
81005
81038
  // cancel: "Cancel" => "取消"
81006
81039
  // refuseItemText: "Refuse to answer" => "拒绝回答"
81007
- // 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。请减小文件的大小,然后重试或联系调查所有者。"
81008
- // signaturePlaceHolderReadOnly: "No signature" => "无签名"// tabTitlePlaceholder: "New Panel" => "新面板"// deselectAllItemText: "Deselect all" => "取消全选"
81040
+ // dontKnowItemText: "Don't know" => "不知道"
81041
+ // savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。"
81042
+ // signaturePlaceHolderReadOnly: "No signature" => "无签名"
81043
+ // tabTitlePlaceholder: "New Panel" => "新面板"
81044
+ // deselectAllItemText: "Deselect all" => "取消全选"
81009
81045
  // textNoDigitsAllow: "Numbers are not allowed." => "不允许使用数字。"
81046
+ // choices_Choice: "Choice option" => "Choice 选项"
81047
+ // loadingPage: "Loading..." => "装载。。。"
81048
+ // loadingData: "Loading..." => "装载。。。"
81010
81049
 
81011
81050
  // CONCATENATED MODULE: ./packages/survey-core/src/localization/slovak.ts
81012
81051