survey-react 1.11.2 → 1.11.3

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.11.2
2
+ * surveyjs - Survey JavaScript library v1.11.3
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
  */
@@ -4958,6 +4958,7 @@ var modernCss = {
4958
4958
  matrixdropdown: {
4959
4959
  root: "sv-table sv-matrixdropdown",
4960
4960
  cell: "sv-table__cell",
4961
+ cellResponsiveTitle: "sv-table__responsive-title",
4961
4962
  headerCell: "sv-table__cell sv-table__cell--header",
4962
4963
  row: "sv-table__row",
4963
4964
  rowTextCell: "sv-table__cell--row-text",
@@ -4976,6 +4977,7 @@ var modernCss = {
4976
4977
  matrixdynamic: {
4977
4978
  root: "sv-table sv-matrixdynamic",
4978
4979
  cell: "sv-table__cell",
4980
+ cellResponsiveTitle: "sv-table__responsive-title",
4979
4981
  headerCell: "sv-table__cell sv-table__cell--header",
4980
4982
  button: "sv-btn",
4981
4983
  buttonAdd: "sv-matrixdynamic__add-btn",
@@ -5304,6 +5306,7 @@ var defaultStandardCss = {
5304
5306
  matrixdropdown: {
5305
5307
  root: "sv_q_matrix_dropdown",
5306
5308
  cell: "sv_matrix_cell",
5309
+ cellResponsiveTitle: "sv_matrix_cell_responsive_title",
5307
5310
  headerCell: "sv_matrix_cell_header",
5308
5311
  row: "sv_matrix_row",
5309
5312
  rowAdditional: "sv-matrix__row--additional",
@@ -5328,6 +5331,7 @@ var defaultStandardCss = {
5328
5331
  iconRemove: "",
5329
5332
  iconDrag: "sv-matrixdynamic__drag-icon",
5330
5333
  cell: "sv_matrix_cell",
5334
+ cellResponsiveTitle: "sv_matrix_cell_responsive_title",
5331
5335
  headerCell: "sv_matrix_cell_header",
5332
5336
  row: "sv_matrix_row",
5333
5337
  detailRow: "sv_matrix_detail_row",
@@ -6038,6 +6042,7 @@ var defaultV2Css = {
6038
6042
  tableWrapper: "sd-table-wrapper",
6039
6043
  rootAlternateRows: "sd-table--alternate-rows",
6040
6044
  cell: "sd-table__cell",
6045
+ cellResponsiveTitle: "sd-table__responsive-title",
6041
6046
  errorsCell: "sd-table__cell--error",
6042
6047
  errorsCellTop: "sd-table__cell--error-top",
6043
6048
  errorsCellBottom: "sd-table__cell--error-bottom",
@@ -6082,6 +6087,7 @@ var defaultV2Css = {
6082
6087
  rootAlternateRows: "sd-table--alternate-rows",
6083
6088
  content: "sd-matrixdynamic__content sd-question__content",
6084
6089
  cell: "sd-table__cell",
6090
+ cellResponsiveTitle: "sd-table__responsive-title",
6085
6091
  row: "sd-table__row",
6086
6092
  rowFadeIn: "sd-table__row--fade-in",
6087
6093
  rowFadeOut: "sd-table__row--fade-out",
@@ -8573,7 +8579,7 @@ var DropdownListModel = /** @class */ (function (_super) {
8573
8579
  this.listModel.setItems(this.getAvailableItems());
8574
8580
  };
8575
8581
  DropdownListModel.prototype.onClick = function (event) {
8576
- if (this.question.readOnly || this.question.isDesignMode)
8582
+ if (this.question.readOnly || this.question.isDesignMode || this.question.isPreviewStyle)
8577
8583
  return;
8578
8584
  this._popupModel.toggleVisibility();
8579
8585
  this.focusItemOnClickAndPopup();
@@ -9036,7 +9042,7 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
9036
9042
  };
9037
9043
  DropdownMultiSelectListModel.prototype.onPropertyChangedHandler = function (sender, options) {
9038
9044
  _super.prototype.onPropertyChangedHandler.call(this, sender, options);
9039
- if (options.name === "value" || options.name === "renderedValue") {
9045
+ if (options.name === "value" || options.name === "renderedValue" || options.name === "placeholder") {
9040
9046
  this.syncFilterStringPlaceholder();
9041
9047
  }
9042
9048
  };
@@ -9898,8 +9904,8 @@ __webpack_require__.r(__webpack_exports__);
9898
9904
 
9899
9905
  var Version;
9900
9906
  var ReleaseDate;
9901
- Version = "" + "1.11.2";
9902
- ReleaseDate = "" + "2024-06-11";
9907
+ Version = "" + "1.11.3";
9908
+ ReleaseDate = "" + "2024-06-18";
9903
9909
  function checkLibraryVersion(ver, libraryName) {
9904
9910
  if (Version != ver) {
9905
9911
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -17375,7 +17381,7 @@ var Cover = /** @class */ (function (_super) {
17375
17381
  .toString();
17376
17382
  };
17377
17383
  Cover.prototype.fromTheme = function (theme) {
17378
- _super.prototype.fromJSON.call(this, theme.header);
17384
+ _super.prototype.fromJSON.call(this, theme.header || {});
17379
17385
  if (!!theme.cssVariables) {
17380
17386
  this.backgroundColor = theme.cssVariables["--sjs-header-backcolor"];
17381
17387
  this.titleColor = theme.cssVariables["--sjs-font-headertitle-color"];
@@ -21547,13 +21553,13 @@ var ListModel = /** @class */ (function (_super) {
21547
21553
  if (_this.allowSelection) {
21548
21554
  _this.selectedItem = itemValue;
21549
21555
  }
21556
+ if (!!_this.onSelectionChanged) {
21557
+ _this.onSelectionChanged(itemValue);
21558
+ }
21550
21559
  var action = itemValue.action;
21551
21560
  if (!!action) {
21552
21561
  action(itemValue);
21553
21562
  }
21554
- if (!!_this.onSelectionChanged) {
21555
- _this.onSelectionChanged(itemValue);
21556
- }
21557
21563
  };
21558
21564
  _this.onItemHover = function (itemValue) {
21559
21565
  _this.mouseOverHandler(itemValue);
@@ -22674,6 +22680,7 @@ var arabicSurveyStrings = {
22674
22680
  emptyMessage: "لا توجد بيانات للعرض",
22675
22681
  noEntriesText: "لا توجد إدخالات حتى الآن.\nانقر فوق الزر أدناه لإضافة إدخال جديد.",
22676
22682
  noEntriesReadonlyText: "لا توجد إدخالات.",
22683
+ tabTitlePlaceholder: "لوحة جديدة",
22677
22684
  more: "أكثر",
22678
22685
  tagboxDoneButtonCaption: "موافق",
22679
22686
  selectToRankEmptyRankedAreaText: "يتم ترتيب جميع الخيارات",
@@ -22714,7 +22721,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
22714
22721
  // cancel: "Cancel" => "إلغاء الأمر"
22715
22722
  // refuseItemText: "Refuse to answer" => "رفض الإجابة"
22716
22723
  // 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 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع."
22717
- // signaturePlaceHolderReadOnly: "No signature" => "لا يوجد توقيع"
22724
+ // signaturePlaceHolderReadOnly: "No signature" => "لا يوجد توقيع"// tabTitlePlaceholder: "New Panel" => "لوحة جديدة"
22718
22725
 
22719
22726
 
22720
22727
  /***/ }),
@@ -22830,6 +22837,7 @@ var basqueSurveyStrings = {
22830
22837
  emptyMessage: "Ez daturik erakusteko",
22831
22838
  noEntriesText: "Oraindik ez sarrerarik.\nKlik beheko botoian klik egin sarrera berri bat eransteko.",
22832
22839
  noEntriesReadonlyText: "Ez sarrerarik.",
22840
+ tabTitlePlaceholder: "Panel berria",
22833
22841
  more: "Gehiago",
22834
22842
  tagboxDoneButtonCaption: "Ados",
22835
22843
  selectToRankEmptyRankedAreaText: "Aukera guztiak sailkatuta daude",
@@ -22863,7 +22871,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
22863
22871
  // cancel: "Cancel" => "Ezeztatu"
22864
22872
  // refuseItemText: "Refuse to answer" => "Erantzuteari uko egin"
22865
22873
  // 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."
22866
- // signaturePlaceHolderReadOnly: "No signature" => "Sinadurarik gabe"
22874
+ // signaturePlaceHolderReadOnly: "No signature" => "Sinadurarik gabe"// tabTitlePlaceholder: "New Panel" => "Panel berria"
22867
22875
 
22868
22876
 
22869
22877
  /***/ }),
@@ -22979,6 +22987,7 @@ var bulgarianStrings = {
22979
22987
  emptyMessage: "Няма данни за показване",
22980
22988
  noEntriesText: "Все още няма записи.\nЩракнете върху бутона по-долу, за да добавите нов запис.",
22981
22989
  noEntriesReadonlyText: "Няма записи.",
22990
+ tabTitlePlaceholder: "Нов панел",
22982
22991
  more: "Още",
22983
22992
  tagboxDoneButtonCaption: "Добре",
22984
22993
  selectToRankEmptyRankedAreaText: "Всички възможности за избор са класирани",
@@ -23019,7 +23028,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
23019
23028
  // cancel: "Cancel" => "Отмени"
23020
23029
  // refuseItemText: "Refuse to answer" => "Отказва да отговори"
23021
23030
  // 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. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването."
23022
- // signaturePlaceHolderReadOnly: "No signature" => "Няма подпис"
23031
+ // signaturePlaceHolderReadOnly: "No signature" => "Няма подпис"// tabTitlePlaceholder: "New Panel" => "Нов панел"
23023
23032
 
23024
23033
 
23025
23034
  /***/ }),
@@ -23135,6 +23144,7 @@ var catalanSurveyStrings = {
23135
23144
  emptyMessage: "No hi ha dades per mostrar",
23136
23145
  noEntriesText: "Encara no hi ha entrades.\nFeu clic al botó següent per afegir una entrada nova.",
23137
23146
  noEntriesReadonlyText: "No hi ha entrades.",
23147
+ tabTitlePlaceholder: "Nou Panell",
23138
23148
  more: "Més",
23139
23149
  tagboxDoneButtonCaption: "D'ACORD",
23140
23150
  selectToRankEmptyRankedAreaText: "Totes les opcions estan classificades",
@@ -23215,7 +23225,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
23215
23225
  // cancel: "Cancel" => "Cancel·lar"
23216
23226
  // refuseItemText: "Refuse to answer" => "Negar-se a respondre"
23217
23227
  // 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."
23218
- // signaturePlaceHolderReadOnly: "No signature" => "Sense signatura"
23228
+ // signaturePlaceHolderReadOnly: "No signature" => "Sense signatura"// tabTitlePlaceholder: "New Panel" => "Nou Panell"
23219
23229
 
23220
23230
 
23221
23231
  /***/ }),
@@ -23331,6 +23341,7 @@ var croatianStrings = {
23331
23341
  emptyMessage: "Nema podataka za prikaz",
23332
23342
  noEntriesText: "Još nema unosa.\nKliknite donji gumb da biste dodali novi unos.",
23333
23343
  noEntriesReadonlyText: "Nema unosa.",
23344
+ tabTitlePlaceholder: "Nova ploča",
23334
23345
  more: "Više",
23335
23346
  tagboxDoneButtonCaption: "OK",
23336
23347
  selectToRankEmptyRankedAreaText: "Svi izbori su rangirani",
@@ -23369,7 +23380,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
23369
23380
  // cancel: "Cancel" => "Otkazati"
23370
23381
  // refuseItemText: "Refuse to answer" => "Odbijte odgovoriti"
23371
23382
  // 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."
23372
- // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
23383
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"// tabTitlePlaceholder: "New Panel" => "Nova ploča"
23373
23384
 
23374
23385
 
23375
23386
  /***/ }),
@@ -23485,6 +23496,7 @@ var czechSurveyStrings = {
23485
23496
  emptyMessage: "Žádná data k zobrazení",
23486
23497
  noEntriesText: "Zatím nejsou žádné záznamy.\nKliknutím na tlačítko níže přidáte novou položku.",
23487
23498
  noEntriesReadonlyText: "Nejsou zde žádné položky.",
23499
+ tabTitlePlaceholder: "Nový panel",
23488
23500
  more: "Více",
23489
23501
  tagboxDoneButtonCaption: "OK",
23490
23502
  selectToRankEmptyRankedAreaText: "Všechny možnosti jsou seřazeny",
@@ -23525,7 +23537,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
23525
23537
  // cancel: "Cancel" => "Zrušit"
23526
23538
  // refuseItemText: "Refuse to answer" => "Odmítnout odpovědět"
23527
23539
  // 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."
23528
- // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
23540
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"// tabTitlePlaceholder: "New Panel" => "Nový panel"
23529
23541
 
23530
23542
 
23531
23543
  /***/ }),
@@ -23641,6 +23653,7 @@ var danishSurveyStrings = {
23641
23653
  emptyMessage: "Ingen data at vise",
23642
23654
  noEntriesText: "Der er endnu ingen tilmeldinger.\nKlik på knappen nedenfor for at tilføje en ny post.",
23643
23655
  noEntriesReadonlyText: "Der er ingen poster.",
23656
+ tabTitlePlaceholder: "Nyt panel",
23644
23657
  more: "Mere",
23645
23658
  tagboxDoneButtonCaption: "OK",
23646
23659
  selectToRankEmptyRankedAreaText: "Alle valg er rangeret",
@@ -23681,7 +23694,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
23681
23694
  // cancel: "Cancel" => "Aflyse"
23682
23695
  // refuseItemText: "Refuse to answer" => "Nægt at svare"
23683
23696
  // 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."
23684
- // signaturePlaceHolderReadOnly: "No signature" => "Ingen underskrift"
23697
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen underskrift"// tabTitlePlaceholder: "New Panel" => "Nyt panel"
23685
23698
 
23686
23699
 
23687
23700
  /***/ }),
@@ -23797,6 +23810,7 @@ var dutchSurveyStrings = {
23797
23810
  emptyMessage: "Geen gegevens om weer te geven",
23798
23811
  noEntriesText: "Er zijn nog geen inzendingen.\nKlik op de onderstaande knop om een nieuw item toe te voegen.",
23799
23812
  noEntriesReadonlyText: "Er zijn geen inzendingen.",
23813
+ tabTitlePlaceholder: "Nieuw paneel",
23800
23814
  more: "Meer",
23801
23815
  tagboxDoneButtonCaption: "OK",
23802
23816
  selectToRankEmptyRankedAreaText: "Alle keuzes zijn gerangschikt",
@@ -23835,7 +23849,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
23835
23849
  // cancel: "Cancel" => "Annuleren"
23836
23850
  // refuseItemText: "Refuse to answer" => "Weiger te antwoorden"
23837
23851
  // 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."
23838
- // signaturePlaceHolderReadOnly: "No signature" => "Geen handtekening"
23852
+ // signaturePlaceHolderReadOnly: "No signature" => "Geen handtekening"// tabTitlePlaceholder: "New Panel" => "Nieuw paneel"
23839
23853
 
23840
23854
 
23841
23855
  /***/ }),
@@ -23951,6 +23965,7 @@ var englishStrings = {
23951
23965
  emptyMessage: "No data to display",
23952
23966
  noEntriesText: "No entries yet.\nClick the button below to add a new entry.",
23953
23967
  noEntriesReadonlyText: "No entries",
23968
+ tabTitlePlaceholder: "New Panel",
23954
23969
  more: "More",
23955
23970
  tagboxDoneButtonCaption: "OK",
23956
23971
  selectToRankEmptyRankedAreaText: "All choices are selected for ranking",
@@ -24078,6 +24093,7 @@ var estonianSurveyStrings = {
24078
24093
  emptyMessage: "Kuvatavaid andmeid pole",
24079
24094
  noEntriesText: "Sissekandeid veel ei ole.\nUue kirje lisamiseks klõpsake allolevat nuppu.",
24080
24095
  noEntriesReadonlyText: "Kirjeid ei ole.",
24096
+ tabTitlePlaceholder: "Uus paneel",
24081
24097
  more: "Rohkem",
24082
24098
  tagboxDoneButtonCaption: "OK",
24083
24099
  selectToRankEmptyRankedAreaText: "Kõik valikud on järjestatud",
@@ -24118,7 +24134,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
24118
24134
  // cancel: "Cancel" => "Tühistama"
24119
24135
  // refuseItemText: "Refuse to answer" => "Keeldu vastamast"
24120
24136
  // 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."
24121
- // signaturePlaceHolderReadOnly: "No signature" => "Allkiri puudub"
24137
+ // signaturePlaceHolderReadOnly: "No signature" => "Allkiri puudub"// tabTitlePlaceholder: "New Panel" => "Uus paneel"
24122
24138
 
24123
24139
 
24124
24140
  /***/ }),
@@ -24234,6 +24250,7 @@ var finnishSurveyStrings = {
24234
24250
  emptyMessage: "Ei näytettäviä tietoja",
24235
24251
  noEntriesText: "Merkintöjä ei ole vielä.\nLisää uusi merkintä napsauttamalla alla olevaa painiketta.",
24236
24252
  noEntriesReadonlyText: "Merkintöjä ei ole.",
24253
+ tabTitlePlaceholder: "Uusi paneeli",
24237
24254
  more: "Enemmän",
24238
24255
  tagboxDoneButtonCaption: "OKEI",
24239
24256
  selectToRankEmptyRankedAreaText: "Kaikki valinnat asetetaan paremmuusjärjestykseen",
@@ -24262,7 +24279,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
24262
24279
  // cancel: "Cancel" => "Perua"
24263
24280
  // refuseItemText: "Refuse to answer" => "Kieltäydy vastaamasta"
24264
24281
  // 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."
24265
- // signaturePlaceHolderReadOnly: "No signature" => "Ei allekirjoitusta"
24282
+ // signaturePlaceHolderReadOnly: "No signature" => "Ei allekirjoitusta"// tabTitlePlaceholder: "New Panel" => "Uusi paneeli"
24266
24283
 
24267
24284
 
24268
24285
  /***/ }),
@@ -24378,6 +24395,7 @@ var frenchSurveyStrings = {
24378
24395
  emptyMessage: "Aucune donnée à afficher",
24379
24396
  noEntriesText: "Il n'y a pas encore d'entrées.\nCliquez sur le bouton ci-dessous pour ajouter une nouvelle entrée.",
24380
24397
  noEntriesReadonlyText: "Il n’y a pas d’entrées.",
24398
+ tabTitlePlaceholder: "Nouveau panneau",
24381
24399
  more: "Plus",
24382
24400
  tagboxDoneButtonCaption: "D’ACCORD",
24383
24401
  selectToRankEmptyRankedAreaText: "Tous les choix sont classés",
@@ -24406,7 +24424,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
24406
24424
  // cancel: "Cancel" => "Annuler"
24407
24425
  // refuseItemText: "Refuse to answer" => "Refuser de répondre"
24408
24426
  // 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."
24409
- // signaturePlaceHolderReadOnly: "No signature" => "Pas de signature"
24427
+ // signaturePlaceHolderReadOnly: "No signature" => "Pas de signature"// tabTitlePlaceholder: "New Panel" => "Nouveau panneau"
24410
24428
 
24411
24429
 
24412
24430
  /***/ }),
@@ -24522,6 +24540,7 @@ var georgianSurveyStrings = {
24522
24540
  emptyMessage: "მონაცემები არ არის საჩვენებლად",
24523
24541
  noEntriesText: "ჯერ არ არის ჩანაწერები.\nდააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ დაამატოთ ახალი ჩანაწერი.",
24524
24542
  noEntriesReadonlyText: "არ არსებობს ჩანაწერები.",
24543
+ tabTitlePlaceholder: "ახალი პანელი",
24525
24544
  more: "სრულად",
24526
24545
  tagboxDoneButtonCaption: "კარგი",
24527
24546
  selectToRankEmptyRankedAreaText: "ყველა არჩევანი რანჟირებულია",
@@ -24615,7 +24634,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
24615
24634
  // cancel: "Cancel" => "გაუქმება"
24616
24635
  // refuseItemText: "Refuse to answer" => "უარი პასუხზე"
24617
24636
  // 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. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს."
24618
- // signaturePlaceHolderReadOnly: "No signature" => "ხელმოწერა არ არის"
24637
+ // signaturePlaceHolderReadOnly: "No signature" => "ხელმოწერა არ არის"// tabTitlePlaceholder: "New Panel" => "ახალი პანელი"
24619
24638
 
24620
24639
 
24621
24640
  /***/ }),
@@ -24731,6 +24750,7 @@ var germanSurveyStrings = {
24731
24750
  emptyMessage: "Es gibt noch keine Daten.",
24732
24751
  noEntriesText: "Es gibt noch keine Einträge.\nKlicken Sie auf die Schaltfläche unten, um einen neuen Eintrag hinzuzufügen.",
24733
24752
  noEntriesReadonlyText: "Es gibt keine Einträge.",
24753
+ tabTitlePlaceholder: "Neues Panel",
24734
24754
  more: "Mehr",
24735
24755
  tagboxDoneButtonCaption: "OK",
24736
24756
  selectToRankEmptyRankedAreaText: "Alle Auswahlmöglichkeiten sind in einer Rangfolge angeordnet",
@@ -24742,6 +24762,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].locales["de"] = g
24742
24762
  survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"] = "deutsch";
24743
24763
  // The following strings have been translated by a machine translation service
24744
24764
  // Remove those strings that you have corrected manually
24765
+ // tabTitlePlaceholder: "New Panel" => "Neues Panel"
24745
24766
 
24746
24767
 
24747
24768
  /***/ }),
@@ -24857,6 +24878,7 @@ var greekSurveyStrings = {
24857
24878
  emptyMessage: "Δεν υπάρχουν δεδομένα προς εμφάνιση",
24858
24879
  noEntriesText: "Δεν υπάρχουν ακόμη εγγραφές.\nΚάντε κλικ στο κουμπί παρακάτω για να προσθέσετε μια νέα εγγραφή.",
24859
24880
  noEntriesReadonlyText: "Δεν υπάρχουν καταχωρήσεις.",
24881
+ tabTitlePlaceholder: "Νέο πάνελ",
24860
24882
  more: "Περισσότερα",
24861
24883
  tagboxDoneButtonCaption: "ΟΚ",
24862
24884
  selectToRankEmptyRankedAreaText: "Όλες οι επιλογές κατατάσσονται",
@@ -24882,7 +24904,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
24882
24904
  // cancel: "Cancel" => "Ακυρώνω"
24883
24905
  // refuseItemText: "Refuse to answer" => "Αρνηθείτε να απαντήσετε"
24884
24906
  // 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. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας."
24885
- // signaturePlaceHolderReadOnly: "No signature" => "Χωρίς υπογραφή"
24907
+ // signaturePlaceHolderReadOnly: "No signature" => "Χωρίς υπογραφή"// tabTitlePlaceholder: "New Panel" => "Νέο πάνελ"
24886
24908
 
24887
24909
 
24888
24910
  /***/ }),
@@ -24911,7 +24933,7 @@ var hebrewSurveyStrings = {
24911
24933
  refuseItemText: "מסרבים לענות",
24912
24934
  dontKnowItemText: "לא יודע",
24913
24935
  selectAllItemText: "בחר הכל",
24914
- progressText: "דף {1} מתוך {0}",
24936
+ progressText: "דף {0} מתוך {1}",
24915
24937
  indexText: "{0} מתוך {1}",
24916
24938
  panelDynamicProgressText: "הקלטה {0} מתוך {1}",
24917
24939
  panelDynamicTabTextFormat: "לוח {panelIndex}",
@@ -24998,6 +25020,7 @@ var hebrewSurveyStrings = {
24998
25020
  emptyMessage: "אין נתונים להצגה",
24999
25021
  noEntriesText: "אין עדיין ערכים.\nלחץ על הלחצן למטה כדי להוסיף ערך חדש.",
25000
25022
  noEntriesReadonlyText: "אין ערכים.",
25023
+ tabTitlePlaceholder: "פאנל חדש",
25001
25024
  more: "עוד",
25002
25025
  tagboxDoneButtonCaption: "אוקיי",
25003
25026
  selectToRankEmptyRankedAreaText: "כל האפשרויות מדורגות",
@@ -25039,7 +25062,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
25039
25062
  // refuseItemText: "Refuse to answer" => "מסרבים לענות"
25040
25063
  // dontKnowItemText: "Don't know" => "לא יודע"
25041
25064
  // savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר."
25042
- // signaturePlaceHolderReadOnly: "No signature" => "אין חתימה"
25065
+ // signaturePlaceHolderReadOnly: "No signature" => "אין חתימה"// tabTitlePlaceholder: "New Panel" => "פאנל חדש"
25043
25066
 
25044
25067
 
25045
25068
  /***/ }),
@@ -25155,6 +25178,7 @@ var hindiStrings = {
25155
25178
  emptyMessage: "प्रदर्शित करने के लिए कोई डेटा नहीं",
25156
25179
  noEntriesText: "अभी तक कोई प्रविष्टियां नहीं हैं।\nनई प्रविष्टि जोड़ने के लिए नीचे दिए गए बटन पर क्लिक करें.",
25157
25180
  noEntriesReadonlyText: "कोई प्रविष्टियाँ नहीं हैं.",
25181
+ tabTitlePlaceholder: "नया पैनल",
25158
25182
  more: "अधिक",
25159
25183
  tagboxDoneButtonCaption: "ठीक है",
25160
25184
  selectToRankEmptyRankedAreaText: "सभी विकल्पों को रैंक किया गया है",
@@ -25195,7 +25219,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
25195
25219
  // ok: "OK" => "ठीक है"
25196
25220
  // cancel: "Cancel" => "रद्द करना"// refuseItemText: "Refuse to answer" => "जवाब देने से इनकार"
25197
25221
  // 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 से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें."
25198
- // signaturePlaceHolderReadOnly: "No signature" => "कोई हस्ताक्षर नहीं"
25222
+ // signaturePlaceHolderReadOnly: "No signature" => "कोई हस्ताक्षर नहीं"// tabTitlePlaceholder: "New Panel" => "नया पैनल"
25199
25223
 
25200
25224
 
25201
25225
  /***/ }),
@@ -25311,6 +25335,7 @@ var hungarianSurveyStrings = {
25311
25335
  emptyMessage: "Nincs megjeleníthető adat",
25312
25336
  noEntriesText: "Még nincsenek bejegyzések.\nKattintson az alábbi gombra egy új bejegyzés hozzáadásához.",
25313
25337
  noEntriesReadonlyText: "Nincsenek bejegyzések.",
25338
+ tabTitlePlaceholder: "Új panel",
25314
25339
  more: "Több",
25315
25340
  tagboxDoneButtonCaption: "OKÉ",
25316
25341
  selectToRankEmptyRankedAreaText: "Minden választási lehetőség rangsorolva van",
@@ -25350,7 +25375,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
25350
25375
  // cancel: "Cancel" => "Érvénytelenít"
25351
25376
  // refuseItemText: "Refuse to answer" => "A válaszadás megtagadása"
25352
25377
  // 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."
25353
- // signaturePlaceHolderReadOnly: "No signature" => "Nincs aláírás"
25378
+ // signaturePlaceHolderReadOnly: "No signature" => "Nincs aláírás"// tabTitlePlaceholder: "New Panel" => "Új panel"
25354
25379
 
25355
25380
 
25356
25381
  /***/ }),
@@ -25466,6 +25491,7 @@ var icelandicSurveyStrings = {
25466
25491
  emptyMessage: "Engin gögn til að birta",
25467
25492
  noEntriesText: "Það eru engar færslur ennþá.\nSmelltu á hnappinn hér að neðan til að bæta við nýrri færslu.",
25468
25493
  noEntriesReadonlyText: "Það eru engar færslur.",
25494
+ tabTitlePlaceholder: "Nýtt spjald",
25469
25495
  more: "Fleiri",
25470
25496
  tagboxDoneButtonCaption: "ÓKEI",
25471
25497
  selectToRankEmptyRankedAreaText: "Öllum valkostum er raðað",
@@ -25506,7 +25532,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
25506
25532
  // cancel: "Cancel" => "Afturkalla"
25507
25533
  // refuseItemText: "Refuse to answer" => "Neita að svara"
25508
25534
  // 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."
25509
- // signaturePlaceHolderReadOnly: "No signature" => "Engin undirskrift"
25535
+ // signaturePlaceHolderReadOnly: "No signature" => "Engin undirskrift"// tabTitlePlaceholder: "New Panel" => "Nýtt spjald"
25510
25536
 
25511
25537
 
25512
25538
  /***/ }),
@@ -25622,6 +25648,7 @@ var indonesianStrings = {
25622
25648
  emptyMessage: "Tidak ada data untuk ditampilkan",
25623
25649
  noEntriesText: "Belum ada entri.\nKlik tombol di bawah ini untuk menambahkan entri baru.",
25624
25650
  noEntriesReadonlyText: "Tidak ada entri.",
25651
+ tabTitlePlaceholder: "Panel Baru",
25625
25652
  more: "Lebih",
25626
25653
  tagboxDoneButtonCaption: "OKE",
25627
25654
  selectToRankEmptyRankedAreaText: "Semua pilihan diberi peringkat",
@@ -25662,7 +25689,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
25662
25689
  // cancel: "Cancel" => "Membatalkan"
25663
25690
  // refuseItemText: "Refuse to answer" => "Menolak untuk menjawab"
25664
25691
  // 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."
25665
- // signaturePlaceHolderReadOnly: "No signature" => "Tidak ada tanda tangan"
25692
+ // signaturePlaceHolderReadOnly: "No signature" => "Tidak ada tanda tangan"// tabTitlePlaceholder: "New Panel" => "Panel Baru"
25666
25693
 
25667
25694
 
25668
25695
  /***/ }),
@@ -25778,6 +25805,7 @@ var italianSurveyStrings = {
25778
25805
  emptyMessage: "Nessun dato da visualizzare",
25779
25806
  noEntriesText: "Non ci sono ancora voci.\nFai clic sul pulsante qui sotto per aggiungere una nuova voce.",
25780
25807
  noEntriesReadonlyText: "Non ci sono voci.",
25808
+ tabTitlePlaceholder: "Nuovo pannello",
25781
25809
  more: "Più",
25782
25810
  tagboxDoneButtonCaption: "OK",
25783
25811
  selectToRankEmptyRankedAreaText: "Tutte le scelte sono classificate",
@@ -25806,7 +25834,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
25806
25834
  // cancel: "Cancel" => "Annulla"
25807
25835
  // refuseItemText: "Refuse to answer" => "Rifiuta di rispondere"
25808
25836
  // 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."
25809
- // signaturePlaceHolderReadOnly: "No signature" => "Nessuna firma"
25837
+ // signaturePlaceHolderReadOnly: "No signature" => "Nessuna firma"// tabTitlePlaceholder: "New Panel" => "Nuovo pannello"
25810
25838
 
25811
25839
 
25812
25840
  /***/ }),
@@ -25922,6 +25950,7 @@ var japaneseSurveyStrings = {
25922
25950
  emptyMessage: "表示するデータがありません",
25923
25951
  noEntriesText: "エントリはまだありません。\n下のボタンをクリックして、新しいエントリを追加します。",
25924
25952
  noEntriesReadonlyText: "エントリはありません。",
25953
+ tabTitlePlaceholder: "新規パネル",
25925
25954
  more: "もっとその",
25926
25955
  tagboxDoneButtonCaption: "わかりました",
25927
25956
  selectToRankEmptyRankedAreaText: "すべての選択肢がランク付けされます",
@@ -25962,7 +25991,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
25962
25991
  // cancel: "Cancel" => "キャンセル"
25963
25992
  // refuseItemText: "Refuse to answer" => "回答を拒否する"
25964
25993
  // 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 を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。"
25965
- // signaturePlaceHolderReadOnly: "No signature" => "署名なし"
25994
+ // signaturePlaceHolderReadOnly: "No signature" => "署名なし"// tabTitlePlaceholder: "New Panel" => "新規パネル"
25966
25995
 
25967
25996
 
25968
25997
  /***/ }),
@@ -26078,6 +26107,7 @@ var kazakhStrings = {
26078
26107
  emptyMessage: "Көрсетілетін деректер жоқ",
26079
26108
  noEntriesText: "Әзірге жазбалар жоқ.\nЖаңа жазбаны қосу үшін төмендегі түймешігіңді басыңыз.",
26080
26109
  noEntriesReadonlyText: "Жазбалар жоқ.",
26110
+ tabTitlePlaceholder: "Жаңа панель",
26081
26111
  more: "Қосымша",
26082
26112
  tagboxDoneButtonCaption: "ЖАҚСЫ",
26083
26113
  selectToRankEmptyRankedAreaText: "Барлық таңдаулар ранжирленген",
@@ -26118,7 +26148,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
26118
26148
  // cancel: "Cancel" => "Болдырмау"
26119
26149
  // refuseItemText: "Refuse to answer" => "Жауап беруден бас тарту"
26120
26150
  // 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КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз."
26121
- // signaturePlaceHolderReadOnly: "No signature" => "Қолдың No"
26151
+ // signaturePlaceHolderReadOnly: "No signature" => "Қолдың No"// tabTitlePlaceholder: "New Panel" => "Жаңа панель"
26122
26152
 
26123
26153
 
26124
26154
  /***/ }),
@@ -26234,6 +26264,7 @@ var koreanStrings = {
26234
26264
  emptyMessage: "표시할 데이터가 없습니다.",
26235
26265
  noEntriesText: "아직 항목이 없습니다.\n새 항목을 추가하려면 아래 버튼을 클릭하세요.",
26236
26266
  noEntriesReadonlyText: "항목이 없습니다.",
26267
+ tabTitlePlaceholder: "새 패널",
26237
26268
  more: "더보기",
26238
26269
  tagboxDoneButtonCaption: "그래",
26239
26270
  selectToRankEmptyRankedAreaText: "모든 선택 항목이 순위가 매겨집니다.",
@@ -26261,7 +26292,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
26261
26292
  // cancel: "Cancel" => "취소"
26262
26293
  // refuseItemText: "Refuse to answer" => "대답 거부"
26263
26294
  // 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를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요."
26264
- // signaturePlaceHolderReadOnly: "No signature" => "서명 없음"
26295
+ // signaturePlaceHolderReadOnly: "No signature" => "서명 없음"// tabTitlePlaceholder: "New Panel" => "새 패널"
26265
26296
 
26266
26297
 
26267
26298
  /***/ }),
@@ -26377,6 +26408,7 @@ var latvianSurveyStrings = {
26377
26408
  emptyMessage: "Nav datu, ko rādīt",
26378
26409
  noEntriesText: "Vēl nav neviena ieraksta.\nNoklikšķiniet uz zemāk esošās pogas, lai pievienotu jaunu ierakstu.",
26379
26410
  noEntriesReadonlyText: "Ierakstu nav.",
26411
+ tabTitlePlaceholder: "Jauns panelis",
26380
26412
  more: "Vairāk",
26381
26413
  tagboxDoneButtonCaption: "LABI",
26382
26414
  selectToRankEmptyRankedAreaText: "Visas izvēles ir sarindotas",
@@ -26405,7 +26437,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
26405
26437
  // cancel: "Cancel" => "Atcelt"
26406
26438
  // refuseItemText: "Refuse to answer" => "Atteikties atbildēt"
26407
26439
  // 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."
26408
- // signaturePlaceHolderReadOnly: "No signature" => "Nav paraksta"
26440
+ // signaturePlaceHolderReadOnly: "No signature" => "Nav paraksta"// tabTitlePlaceholder: "New Panel" => "Jauns panelis"
26409
26441
 
26410
26442
 
26411
26443
  /***/ }),
@@ -26521,6 +26553,7 @@ var lithuaniaSurveyStrings = {
26521
26553
  emptyMessage: "Nėra rodomų duomenų",
26522
26554
  noEntriesText: "Įrašų dar nėra.\nSpustelėkite žemiau esantį mygtuką, kad pridėtumėte naują įrašą.",
26523
26555
  noEntriesReadonlyText: "Įrašų nėra.",
26556
+ tabTitlePlaceholder: "Naujas skydelis",
26524
26557
  more: "Daugiau",
26525
26558
  tagboxDoneButtonCaption: "GERAI",
26526
26559
  selectToRankEmptyRankedAreaText: "Visi pasirinkimai yra reitinguojami",
@@ -26561,7 +26594,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
26561
26594
  // cancel: "Cancel" => "Atšaukti"
26562
26595
  // refuseItemText: "Refuse to answer" => "Atsisakyti atsakyti"
26563
26596
  // 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."
26564
- // signaturePlaceHolderReadOnly: "No signature" => "Nėra parašo"
26597
+ // signaturePlaceHolderReadOnly: "No signature" => "Nėra parašo"// tabTitlePlaceholder: "New Panel" => "Naujas skydelis"
26565
26598
 
26566
26599
 
26567
26600
  /***/ }),
@@ -26677,6 +26710,7 @@ var macedonianSurveyStrings = {
26677
26710
  emptyMessage: "Нема податоци за прикажување",
26678
26711
  noEntriesText: "Сеуште нема влезници.\nКликнете на копчето подолу за да додадете нов влез.",
26679
26712
  noEntriesReadonlyText: "Нема влезници.",
26713
+ tabTitlePlaceholder: "Нов панел",
26680
26714
  more: "Повеќе",
26681
26715
  tagboxDoneButtonCaption: "ДОБРО",
26682
26716
  selectToRankEmptyRankedAreaText: "Сите избори се рангирани",
@@ -26711,7 +26745,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
26711
26745
  // cancel: "Cancel" => "Откажи"
26712
26746
  // refuseItemText: "Refuse to answer" => "Одбиј да одговориш."
26713
26747
  // 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. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето."
26714
- // signaturePlaceHolderReadOnly: "No signature" => "Нема потпис"
26748
+ // signaturePlaceHolderReadOnly: "No signature" => "Нема потпис"// tabTitlePlaceholder: "New Panel" => "Нов панел"
26715
26749
 
26716
26750
 
26717
26751
  /***/ }),
@@ -26827,6 +26861,7 @@ var malaySurveyStrings = {
26827
26861
  emptyMessage: "Tiada data untuk dipaparkan",
26828
26862
  noEntriesText: "Belum ada entri.\nKlik butang di bawah untuk menambahkan entri.",
26829
26863
  noEntriesReadonlyText: "Tiada penyertaan.",
26864
+ tabTitlePlaceholder: "Panel Baru",
26830
26865
  more: "Lebih banyak",
26831
26866
  tagboxDoneButtonCaption: "OK",
26832
26867
  selectToRankEmptyRankedAreaText: "Semua pilihan disenaraikan",
@@ -26857,7 +26892,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
26857
26892
  // cancel: "Cancel" => "Batal"
26858
26893
  // refuseItemText: "Refuse to answer" => "Enggan menjawab"
26859
26894
  // 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."
26860
- // signaturePlaceHolderReadOnly: "No signature" => "Tiada tandatangan"
26895
+ // signaturePlaceHolderReadOnly: "No signature" => "Tiada tandatangan"// tabTitlePlaceholder: "New Panel" => "Panel Baru"
26861
26896
 
26862
26897
 
26863
26898
  /***/ }),
@@ -26997,6 +27032,7 @@ var norwegianSurveyStrings = {
26997
27032
  emptyMessage: "Ingen data å vise",
26998
27033
  noEntriesText: "Det er ingen oppføringer ennå.\nKlikk på knappen nedenfor for å legge til en ny oppføring.",
26999
27034
  noEntriesReadonlyText: "Det er ingen oppføringer.",
27035
+ tabTitlePlaceholder: "Nytt panel",
27000
27036
  more: "Mer",
27001
27037
  tagboxDoneButtonCaption: "OK",
27002
27038
  selectToRankEmptyRankedAreaText: "Alle valg er rangert",
@@ -27037,7 +27073,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
27037
27073
  // cancel: "Cancel" => "Annullere"
27038
27074
  // refuseItemText: "Refuse to answer" => "Nekter å svare"
27039
27075
  // 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."
27040
- // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
27076
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"// tabTitlePlaceholder: "New Panel" => "Nytt panel"
27041
27077
 
27042
27078
 
27043
27079
  /***/ }),
@@ -27153,6 +27189,7 @@ var persianSurveyStrings = {
27153
27189
  emptyMessage: "داده ای برای نمایش وجود ندارد",
27154
27190
  noEntriesText: "هنوز هیچ ورودی وجود ندارد.\nروی دکمه زیر کلیک کنید تا یک ورودی جدید اضافه شود.",
27155
27191
  noEntriesReadonlyText: "هیچ ورودی وجود ندارد.",
27192
+ tabTitlePlaceholder: "پنل جدید",
27156
27193
  more: "بیشتر",
27157
27194
  tagboxDoneButtonCaption: "باشه",
27158
27195
  selectToRankEmptyRankedAreaText: "همه انتخاب ها رتبه بندی می شوند",
@@ -27193,7 +27230,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
27193
27230
  // cancel: "Cancel" => "لغو"
27194
27231
  // refuseItemText: "Refuse to answer" => "امتناع از پاسخ دادن"
27195
27232
  // 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 است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید."
27196
- // signaturePlaceHolderReadOnly: "No signature" => "بدون امضا"
27233
+ // signaturePlaceHolderReadOnly: "No signature" => "بدون امضا"// tabTitlePlaceholder: "New Panel" => "پنل جدید"
27197
27234
 
27198
27235
 
27199
27236
  /***/ }),
@@ -27209,7 +27246,6 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
27209
27246
  __webpack_require__.r(__webpack_exports__);
27210
27247
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "philippinesStrings", function() { return philippinesStrings; });
27211
27248
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! survey-core */ "./src/entries/core.ts");
27212
- // Uncomment the line below if you create a custom dictionary
27213
27249
 
27214
27250
  var philippinesStrings = {
27215
27251
  pagePrevText: "Nakaraang",
@@ -27310,18 +27346,22 @@ var philippinesStrings = {
27310
27346
  emptyMessage: "walang maipakitang datos",
27311
27347
  noEntriesText: "Wala pang entry.\nI-click ang button sa ibaba para magdagdag ng bagong entry.",
27312
27348
  noEntriesReadonlyText: "Walang entry",
27349
+ tabTitlePlaceholder: "Bagong Panel",
27313
27350
  more: "Higit pa",
27314
27351
  tagboxDoneButtonCaption: "OK",
27315
27352
  selectToRankEmptyRankedAreaText: "Ang lahat ng mga pagpipilian ay pinili para sa pagraranggo",
27316
27353
  selectToRankEmptyUnrankedAreaText: "I-drag ang mga pagpipilian dito upang i-rank ang mga ito",
27317
27354
  ok: "OK",
27318
- cancel: "Kanselahin",
27355
+ cancel: "Kanselahin"
27319
27356
  };
27320
27357
  // Uncomment the lines below if you create a custom dictionary.
27321
27358
  // Replace "en" with a custom locale code (for example, "fr" or "de"),
27322
27359
  // Replace `englishStrings` with the name of the variable that contains the custom dictionary.
27323
27360
  survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].locales["fil"] = philippinesStrings;
27324
27361
  survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fil"] = "Filipino";
27362
+ // The following strings have been translated by a machine translation service
27363
+ // Remove those strings that you have corrected manually
27364
+ // tabTitlePlaceholder: "New Panel" => "Bagong Panel"
27325
27365
 
27326
27366
 
27327
27367
  /***/ }),
@@ -27437,6 +27477,7 @@ var polishSurveyStrings = {
27437
27477
  emptyMessage: "Brak danych do wyświetlenia",
27438
27478
  noEntriesText: "Nie ma jeszcze wpisów.\nKliknij przycisk poniżej, aby dodać nowy wpis.",
27439
27479
  noEntriesReadonlyText: "Brak wpisów.",
27480
+ tabTitlePlaceholder: "Nowy panel",
27440
27481
  more: "Więcej",
27441
27482
  tagboxDoneButtonCaption: "OK",
27442
27483
  selectToRankEmptyRankedAreaText: "Wszystkie wybory są uszeregowane",
@@ -27465,7 +27506,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
27465
27506
  // cancel: "Cancel" => "Anuluj"
27466
27507
  // refuseItemText: "Refuse to answer" => "Odmów odpowiedzi"
27467
27508
  // 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."
27468
- // signaturePlaceHolderReadOnly: "No signature" => "Brak podpisu"
27509
+ // signaturePlaceHolderReadOnly: "No signature" => "Brak podpisu"// tabTitlePlaceholder: "New Panel" => "Nowy panel"
27469
27510
 
27470
27511
 
27471
27512
  /***/ }),
@@ -27584,6 +27625,7 @@ var portugueseBrSurveyStrings = {
27584
27625
  emptyMessage: "Nenhum dado a ser exibido",
27585
27626
  noEntriesText: "Ainda não há inscrições.\nClique no botão abaixo para adicionar uma nova entrada.",
27586
27627
  noEntriesReadonlyText: "Não há entradas.",
27628
+ tabTitlePlaceholder: "Novo Painel",
27587
27629
  more: "Mais",
27588
27630
  tagboxDoneButtonCaption: "OKEY",
27589
27631
  selectToRankEmptyRankedAreaText: "Todas as opções são classificadas",
@@ -27671,7 +27713,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
27671
27713
  // cancel: "Cancel" => "Cancelar"
27672
27714
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27673
27715
  // 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."
27674
- // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27716
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"// tabTitlePlaceholder: "New Panel" => "Novo Painel"
27675
27717
 
27676
27718
 
27677
27719
  /***/ }),
@@ -27787,6 +27829,7 @@ var portugueseSurveyStrings = {
27787
27829
  emptyMessage: "Não existe informação a mostrar",
27788
27830
  noEntriesText: "Ainda não existem registos.\nClique no botão abaixo para adicionar um novo registo.",
27789
27831
  noEntriesReadonlyText: "Não há entradas.",
27832
+ tabTitlePlaceholder: "Novo Painel",
27790
27833
  more: "Mais",
27791
27834
  tagboxDoneButtonCaption: "Terminado",
27792
27835
  selectToRankEmptyRankedAreaText: "Todas as opções são classificadas",
@@ -27812,7 +27855,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
27812
27855
  // cancel: "Cancel" => "Cancelar"
27813
27856
  // refuseItemText: "Refuse to answer" => "Recusar-se a responder"
27814
27857
  // 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."
27815
- // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
27858
+ // signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"// tabTitlePlaceholder: "New Panel" => "Novo Painel"
27816
27859
 
27817
27860
 
27818
27861
  /***/ }),
@@ -27928,6 +27971,7 @@ var romanianSurveyStrings = {
27928
27971
  emptyMessage: "Nu există date de afișat",
27929
27972
  noEntriesText: "Nu există încă intrări.\nFaceți clic pe butonul de mai jos pentru a adăuga o intrare nouă.",
27930
27973
  noEntriesReadonlyText: "Nu există intrări.",
27974
+ tabTitlePlaceholder: "Panou nou",
27931
27975
  more: "Mai mult",
27932
27976
  tagboxDoneButtonCaption: "OK",
27933
27977
  selectToRankEmptyRankedAreaText: "Toate opțiunile sunt clasificate",
@@ -27968,7 +28012,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
27968
28012
  // cancel: "Cancel" => "Anula"
27969
28013
  // refuseItemText: "Refuse to answer" => "Refuză să răspundă"
27970
28014
  // 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."
27971
- // signaturePlaceHolderReadOnly: "No signature" => "Fără semnătură"
28015
+ // signaturePlaceHolderReadOnly: "No signature" => "Fără semnătură"// tabTitlePlaceholder: "New Panel" => "Panou nou"
27972
28016
 
27973
28017
 
27974
28018
  /***/ }),
@@ -28084,6 +28128,7 @@ var russianSurveyStrings = {
28084
28128
  emptyMessage: "Нет данных для отображения",
28085
28129
  noEntriesText: "Пока нет записей.\nНажмите кнопку ниже, чтобы добавить новую запись.",
28086
28130
  noEntriesReadonlyText: "Записей нет.",
28131
+ tabTitlePlaceholder: "Новая панель",
28087
28132
  more: "Больше",
28088
28133
  tagboxDoneButtonCaption: "Хорошо",
28089
28134
  selectToRankEmptyRankedAreaText: "Все варианты ранжируются",
@@ -28108,7 +28153,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
28108
28153
  // showDetails: "Show Details" => "Показать подробности"
28109
28154
  // hideDetails: "Hide Details" => "Скрыть подробности"
28110
28155
  // cancel: "Cancel" => "Отмена"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса."
28111
- // signaturePlaceHolderReadOnly: "No signature" => "Без подписи"
28156
+ // signaturePlaceHolderReadOnly: "No signature" => "Без подписи"// tabTitlePlaceholder: "New Panel" => "Новая панель"
28112
28157
 
28113
28158
 
28114
28159
  /***/ }),
@@ -28224,6 +28269,7 @@ var serbianStrings = {
28224
28269
  emptyMessage: "Nema podataka za prikazivanje",
28225
28270
  noEntriesText: "Još uvek nema stavki.\nKliknite na dugme ispod da biste dodali novu stavku.",
28226
28271
  noEntriesReadonlyText: "Nema stavki.",
28272
+ tabTitlePlaceholder: "Nova tabla",
28227
28273
  more: "Viљe",
28228
28274
  tagboxDoneButtonCaption: "U redu",
28229
28275
  selectToRankEmptyRankedAreaText: "Svi izbori su rangirani",
@@ -28259,7 +28305,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
28259
28305
  // cancel: "Cancel" => "Otkaži"
28260
28306
  // refuseItemText: "Refuse to answer" => "Odbijanje odgovora"
28261
28307
  // 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."
28262
- // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
28308
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"// tabTitlePlaceholder: "New Panel" => "Nova tabla"
28263
28309
 
28264
28310
 
28265
28311
  /***/ }),
@@ -28375,6 +28421,7 @@ var simplifiedChineseSurveyStrings = {
28375
28421
  emptyMessage: "没有要显示的数据",
28376
28422
  noEntriesText: "尚无条目。\n单击下面的按钮以添加新条目。",
28377
28423
  noEntriesReadonlyText: "没有条目。",
28424
+ tabTitlePlaceholder: "新面板",
28378
28425
  more: "更多",
28379
28426
  tagboxDoneButtonCaption: "还行",
28380
28427
  selectToRankEmptyRankedAreaText: "所有选择均已排名",
@@ -28409,7 +28456,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
28409
28456
  // cancel: "Cancel" => "取消"
28410
28457
  // refuseItemText: "Refuse to answer" => "拒绝回答"
28411
28458
  // 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。请减小文件的大小,然后重试或联系调查所有者。"
28412
- // signaturePlaceHolderReadOnly: "No signature" => "无签名"
28459
+ // signaturePlaceHolderReadOnly: "No signature" => "无签名"// tabTitlePlaceholder: "New Panel" => "新面板"
28413
28460
 
28414
28461
 
28415
28462
  /***/ }),
@@ -28525,6 +28572,7 @@ var slovakSurveyStrings = {
28525
28572
  emptyMessage: "Žiadne údaje na zobrazenie",
28526
28573
  noEntriesText: "K dispozícii ešte nie sú žiadne zadania.\nKliknutím na nasledujúce tlačidlo pridajte nové zadanie.",
28527
28574
  noEntriesReadonlyText: "Nie sú k dispozícii žiadne záznamy.",
28575
+ tabTitlePlaceholder: "Nový panel",
28528
28576
  more: "Viacej",
28529
28577
  tagboxDoneButtonCaption: "OK",
28530
28578
  selectToRankEmptyRankedAreaText: "Všetky možnosti sú zoradené",
@@ -28555,7 +28603,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
28555
28603
  // cancel: "Cancel" => "Zrušiť"
28556
28604
  // refuseItemText: "Refuse to answer" => "Odmietnuť odpovedať"
28557
28605
  // 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."
28558
- // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
28606
+ // signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"// tabTitlePlaceholder: "New Panel" => "Nový panel"
28559
28607
 
28560
28608
 
28561
28609
  /***/ }),
@@ -28671,6 +28719,7 @@ var spanishSurveyStrings = {
28671
28719
  emptyMessage: "No hay datos para mostrar",
28672
28720
  noEntriesText: "Aún no hay entradas.\nHaga clic en el botón de abajo para agregar una nueva entrada.",
28673
28721
  noEntriesReadonlyText: "No hay entradas.",
28722
+ tabTitlePlaceholder: "Nuevo panel",
28674
28723
  more: "Más",
28675
28724
  tagboxDoneButtonCaption: "De acuerdo",
28676
28725
  selectToRankEmptyRankedAreaText: "Todas las opciones están clasificadas",
@@ -28699,7 +28748,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
28699
28748
  // cancel: "Cancel" => "Cancelar"
28700
28749
  // refuseItemText: "Refuse to answer" => "Negarse a responder"
28701
28750
  // 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."
28702
- // signaturePlaceHolderReadOnly: "No signature" => "Sin firma"
28751
+ // signaturePlaceHolderReadOnly: "No signature" => "Sin firma"// tabTitlePlaceholder: "New Panel" => "Nuevo panel"
28703
28752
 
28704
28753
 
28705
28754
  /***/ }),
@@ -28815,6 +28864,7 @@ var swahiliStrings = {
28815
28864
  emptyMessage: "Hakuna data ya kuonyesha",
28816
28865
  noEntriesText: "Hakuna maingizo kwa sasa.\nBofya kitufe hapa chini ili kuongeza ingizo jipya.",
28817
28866
  noEntriesReadonlyText: "Hakuna viingilio.",
28867
+ tabTitlePlaceholder: "Jopo Jipya",
28818
28868
  more: "Zaidi",
28819
28869
  tagboxDoneButtonCaption: "Sawa kabisa",
28820
28870
  selectToRankEmptyRankedAreaText: "Chaguzi zote zimeorodheshwa",
@@ -28855,7 +28905,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
28855
28905
  // cancel: "Cancel" => "Katisha"
28856
28906
  // refuseItemText: "Refuse to answer" => "Kukataa kujibu"
28857
28907
  // 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."
28858
- // signaturePlaceHolderReadOnly: "No signature" => "Hakuna saini"
28908
+ // signaturePlaceHolderReadOnly: "No signature" => "Hakuna saini"// tabTitlePlaceholder: "New Panel" => "Jopo Jipya"
28859
28909
 
28860
28910
 
28861
28911
  /***/ }),
@@ -28971,6 +29021,7 @@ var swedishSurveyStrings = {
28971
29021
  emptyMessage: "Ingen data finns",
28972
29022
  noEntriesText: "Det finns inga värden än.\nKlicka på knappen nedan för att lägga till nytt värde.",
28973
29023
  noEntriesReadonlyText: "Det finns inga poster.",
29024
+ tabTitlePlaceholder: "Ny panel",
28974
29025
  more: "Mer",
28975
29026
  tagboxDoneButtonCaption: "OKEJ",
28976
29027
  selectToRankEmptyRankedAreaText: "Alla val rangordnas",
@@ -28999,7 +29050,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
28999
29050
  // cancel: "Cancel" => "Annullera"
29000
29051
  // refuseItemText: "Refuse to answer" => "Vägra svara"
29001
29052
  // 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."
29002
- // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
29053
+ // signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"// tabTitlePlaceholder: "New Panel" => "Ny panel"
29003
29054
 
29004
29055
 
29005
29056
  /***/ }),
@@ -29222,6 +29273,7 @@ var teluguStrings = {
29222
29273
  emptyMessage: "డిస్ ప్లే చేయడానికి డేటా లేదు",
29223
29274
  noEntriesText: "ఇంకా ఎలాంటి ఎంట్రీలు లేవు.\nకొత్త ఎంట్రీని జోడించడం కొరకు దిగువ బటన్ మీద క్లిక్ చేయండి.",
29224
29275
  noEntriesReadonlyText: "ఎలాంటి ఎంట్రీలు లేవు.",
29276
+ tabTitlePlaceholder: "కొత్త ప్యానెల్",
29225
29277
  more: "ఎక్కువ",
29226
29278
  tagboxDoneButtonCaption: "సరే",
29227
29279
  selectToRankEmptyRankedAreaText: "అన్ని ఎంపికలు ర్యాంక్ చేయబడతాయి",
@@ -29262,7 +29314,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
29262
29314
  // ok: "OK" => "సరే"
29263
29315
  // cancel: "Cancel" => "రద్దు"// refuseItemText: "Refuse to answer" => "సమాధానం ఇవ్వడానికి నిరాకరించండి"
29264
29316
  // 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ని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి."
29265
- // signaturePlaceHolderReadOnly: "No signature" => "సంతకం లేదు"
29317
+ // signaturePlaceHolderReadOnly: "No signature" => "సంతకం లేదు"// tabTitlePlaceholder: "New Panel" => "కొత్త ప్యానెల్"
29266
29318
 
29267
29319
 
29268
29320
  /***/ }),
@@ -29378,6 +29430,7 @@ var thaiStrings = {
29378
29430
  emptyMessage: "ไม่มีข้อมูลที่จะแสดง",
29379
29431
  noEntriesText: "ยังไม่มีรายการ\nคลิกปุ่มด้านล่างเพื่อเพิ่มรายการใหม่",
29380
29432
  noEntriesReadonlyText: "ไม่มีรายการ",
29433
+ tabTitlePlaceholder: "แผงใหม่",
29381
29434
  more: "อีก",
29382
29435
  tagboxDoneButtonCaption: "ตกลง, ได้",
29383
29436
  selectToRankEmptyRankedAreaText: "ตัวเลือกทั้งหมดจะถูกจัดอันดับ",
@@ -29417,7 +29470,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
29417
29470
  // ok: "OK" => "ตกลง, ได้"
29418
29471
  // cancel: "Cancel" => "ยกเลิก"// refuseItemText: "Refuse to answer" => "ปฏิเสธที่จะตอบ"
29419
29472
  // 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 โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ"
29420
- // signaturePlaceHolderReadOnly: "No signature" => "ไม่มีลายเซ็น"
29473
+ // signaturePlaceHolderReadOnly: "No signature" => "ไม่มีลายเซ็น"// tabTitlePlaceholder: "New Panel" => "แผงใหม่"
29421
29474
 
29422
29475
 
29423
29476
  /***/ }),
@@ -29533,6 +29586,7 @@ var traditionalChineseSurveyStrings = {
29533
29586
  emptyMessage: "沒有要顯示的數據",
29534
29587
  noEntriesText: "尚無條目。\n按下下面的按鈕以添加新條目。",
29535
29588
  noEntriesReadonlyText: "沒有條目。",
29589
+ tabTitlePlaceholder: "新面板",
29536
29590
  more: "更多",
29537
29591
  tagboxDoneButtonCaption: "還行",
29538
29592
  selectToRankEmptyRankedAreaText: "所有選擇均已排名",
@@ -29607,7 +29661,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
29607
29661
  // ok: "OK" => "還行"
29608
29662
  // cancel: "Cancel" => "取消"// refuseItemText: "Refuse to answer" => "拒絕回答"
29609
29663
  // 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。請減小檔的大小,然後重試或聯繫調查擁有者。"
29610
- // signaturePlaceHolderReadOnly: "No signature" => "無簽名"
29664
+ // signaturePlaceHolderReadOnly: "No signature" => "無簽名"// tabTitlePlaceholder: "New Panel" => "新面板"
29611
29665
 
29612
29666
 
29613
29667
  /***/ }),
@@ -29723,6 +29777,7 @@ var turkishSurveyStrings = {
29723
29777
  emptyMessage: "Görüntülenecek veri yok",
29724
29778
  noEntriesText: "Henüz giriş yok.\nYeni bir giriş eklemek için aşağıdaki düğmeyi tıklayın.",
29725
29779
  noEntriesReadonlyText: "Giriş yok.",
29780
+ tabTitlePlaceholder: "Yeni Panel",
29726
29781
  more: "Daha fazla",
29727
29782
  tagboxDoneButtonCaption: "TAMAM",
29728
29783
  selectToRankEmptyRankedAreaText: "Tüm seçenekler sıralanmıştır",
@@ -29744,7 +29799,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
29744
29799
  // ok: "OK" => "TAMAM"
29745
29800
  // cancel: "Cancel" => "İptal"// refuseItemText: "Refuse to answer" => "Cevap vermeyi reddet"
29746
29801
  // 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."
29747
- // signaturePlaceHolderReadOnly: "No signature" => "İmza yok"
29802
+ // signaturePlaceHolderReadOnly: "No signature" => "İmza yok"// tabTitlePlaceholder: "New Panel" => "Yeni Panel"
29748
29803
 
29749
29804
 
29750
29805
  /***/ }),
@@ -29860,6 +29915,7 @@ var ukrainianSurveyStrings = {
29860
29915
  emptyMessage: "Немає даних для відображення",
29861
29916
  noEntriesText: "Записів поки немає.\nНатисніть кнопку нижче, щоб додати новий запис.",
29862
29917
  noEntriesReadonlyText: "Записів немає.",
29918
+ tabTitlePlaceholder: "Нова панель",
29863
29919
  more: "Більше",
29864
29920
  tagboxDoneButtonCaption: "ГАРАЗД",
29865
29921
  selectToRankEmptyRankedAreaText: "Всі варіанти ранжуються",
@@ -29899,7 +29955,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
29899
29955
  // ok: "OK" => "ГАРАЗД"
29900
29956
  // cancel: "Cancel" => "Скасувати"// refuseItemText: "Refuse to answer" => "Відмовтеся відповідати"
29901
29957
  // 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 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування."
29902
- // signaturePlaceHolderReadOnly: "No signature" => "Без підпису"
29958
+ // signaturePlaceHolderReadOnly: "No signature" => "Без підпису"// tabTitlePlaceholder: "New Panel" => "Нова панель"
29903
29959
 
29904
29960
 
29905
29961
  /***/ }),
@@ -30015,6 +30071,7 @@ var vietnameseSurveyStrings = {
30015
30071
  emptyMessage: "Không có dữ liệu để hiển thị",
30016
30072
  noEntriesText: "Chưa có mục nào.\nNhấp vào nút bên dưới để thêm mục nhập mới.",
30017
30073
  noEntriesReadonlyText: "Không có mục.",
30074
+ tabTitlePlaceholder: "Bảng điều khiển mới",
30018
30075
  more: "Nhiều hơn",
30019
30076
  tagboxDoneButtonCaption: "OK",
30020
30077
  selectToRankEmptyRankedAreaText: "Tất cả các lựa chọn được xếp hạng",
@@ -30055,7 +30112,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
30055
30112
  // ok: "OK" => "OK"
30056
30113
  // cancel: "Cancel" => "Hủy"// refuseItemText: "Refuse to answer" => "Từ chối trả lời"
30057
30114
  // 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."
30058
- // signaturePlaceHolderReadOnly: "No signature" => "Không có chữ ký"
30115
+ // signaturePlaceHolderReadOnly: "No signature" => "Không có chữ ký"// tabTitlePlaceholder: "New Panel" => "Bảng điều khiển mới"
30059
30116
 
30060
30117
 
30061
30118
  /***/ }),
@@ -30171,6 +30228,7 @@ var welshSurveyStrings = {
30171
30228
  emptyMessage: "Dim data i'w arddangos",
30172
30229
  noEntriesText: "Nid oes unrhyw gofnodion hyd yn hyn.\nCliciwch y botwm isod i ychwanegu cofnod newydd.",
30173
30230
  noEntriesReadonlyText: "Nid oes unrhyw gofnodion.",
30231
+ tabTitlePlaceholder: "Panel newydd",
30174
30232
  more: "Rhagor",
30175
30233
  tagboxDoneButtonCaption: "OCÊ",
30176
30234
  selectToRankEmptyRankedAreaText: "Mae'r holl ddewisiadau yn cael eu rhestru",
@@ -30210,7 +30268,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
30210
30268
  // ok: "OK" => "OCÊ"
30211
30269
  // cancel: "Cancel" => "Canslo"// refuseItemText: "Refuse to answer" => "Gwrthod ateb"
30212
30270
  // 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."
30213
- // signaturePlaceHolderReadOnly: "No signature" => "Dim llofnod"
30271
+ // signaturePlaceHolderReadOnly: "No signature" => "Dim llofnod"// tabTitlePlaceholder: "New Panel" => "Panel newydd"
30214
30272
 
30215
30273
 
30216
30274
  /***/ }),
@@ -31842,10 +31900,10 @@ var InputMaskNumeric = /** @class */ (function (_super) {
31842
31900
  if (value >= min && value <= max)
31843
31901
  return true;
31844
31902
  if (!matchWholeMask) {
31845
- if (!number.hasDecimalSeparator) {
31903
+ if (!number.hasDecimalSeparator && value != 0) {
31846
31904
  var test_high = value;
31847
31905
  var test_low = value;
31848
- if (value >= 0) {
31906
+ if (value > 0) {
31849
31907
  if (value + 1 > min && value <= max)
31850
31908
  return true;
31851
31909
  while (true) {
@@ -34098,6 +34156,9 @@ var PanelModelBase = /** @class */ (function (_super) {
34098
34156
  return this.parent.getQuestionTitleLocation();
34099
34157
  return this.survey ? this.survey.questionTitleLocation : "top";
34100
34158
  };
34159
+ PanelModelBase.prototype.getQuestionTitleWidth = function () {
34160
+ return this.questionTitleWidth || this.parent && this.parent.getQuestionTitleWidth();
34161
+ };
34101
34162
  PanelModelBase.prototype.getStartIndex = function () {
34102
34163
  if (!!this.parent)
34103
34164
  return this.parent.getQuestionStartIndex();
@@ -34853,6 +34914,9 @@ var PanelModelBase = /** @class */ (function (_super) {
34853
34914
  __decorate([
34854
34915
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: true })
34855
34916
  ], PanelModelBase.prototype, "showDescription", void 0);
34917
+ __decorate([
34918
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])()
34919
+ ], PanelModelBase.prototype, "questionTitleWidth", void 0);
34856
34920
  return PanelModelBase;
34857
34921
  }(_survey_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElement"]));
34858
34922
 
@@ -35296,6 +35360,12 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_0__["Serializer"].addClass("panelbase", [
35296
35360
  "visibleIf:condition",
35297
35361
  "enableIf:condition",
35298
35362
  "requiredIf:condition",
35363
+ {
35364
+ name: "questionTitleWidth",
35365
+ visibleIf: function (obj) {
35366
+ return !!obj && obj["getQuestionTitleLocation"]() === "left";
35367
+ }
35368
+ },
35299
35369
  {
35300
35370
  name: "questionTitleLocation",
35301
35371
  default: "default",
@@ -39249,6 +39319,17 @@ var Question = /** @class */ (function (_super) {
39249
39319
  this.clearValueIfInvisible();
39250
39320
  }
39251
39321
  };
39322
+ Object.defineProperty(Question.prototype, "titleWidth", {
39323
+ get: function () {
39324
+ if (this.getTitleLocation() === "left") {
39325
+ if (!!this.parent)
39326
+ return this.parent.getQuestionTitleWidth();
39327
+ }
39328
+ return undefined;
39329
+ },
39330
+ enumerable: false,
39331
+ configurable: true
39332
+ });
39252
39333
  /**
39253
39334
  * Returns title location calculated based on the question's `titleLocation` property and the `questionTitleLocation` property of the question's containers (survey, page, or panel).
39254
39335
  * @see titleLocation
@@ -46795,6 +46876,9 @@ var QuestionCustomModelBase = /** @class */ (function (_super) {
46795
46876
  QuestionCustomModelBase.prototype.getQuestionTitleLocation = function () {
46796
46877
  return "left";
46797
46878
  };
46879
+ QuestionCustomModelBase.prototype.getQuestionTitleWidth = function () {
46880
+ return undefined;
46881
+ };
46798
46882
  QuestionCustomModelBase.prototype.getQuestionStartIndex = function () {
46799
46883
  return this.getStartIndex();
46800
46884
  };
@@ -56137,6 +56221,28 @@ var QuestionMatrixDropdownRenderedCell = /** @class */ (function () {
56137
56221
  enumerable: false,
56138
56222
  configurable: true
56139
56223
  });
56224
+ Object.defineProperty(QuestionMatrixDropdownRenderedCell.prototype, "showResponsiveTitle", {
56225
+ get: function () {
56226
+ var _a;
56227
+ return this.hasQuestion && ((_a = this.matrix) === null || _a === void 0 ? void 0 : _a.isMobile);
56228
+ },
56229
+ enumerable: false,
56230
+ configurable: true
56231
+ });
56232
+ Object.defineProperty(QuestionMatrixDropdownRenderedCell.prototype, "responsiveTitleCss", {
56233
+ get: function () {
56234
+ return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]().append(this.matrix.cssClasses.cellResponsiveTitle).toString();
56235
+ },
56236
+ enumerable: false,
56237
+ configurable: true
56238
+ });
56239
+ Object.defineProperty(QuestionMatrixDropdownRenderedCell.prototype, "responsiveLocTitle", {
56240
+ get: function () {
56241
+ return this.cell.column.locTitle;
56242
+ },
56243
+ enumerable: false,
56244
+ configurable: true
56245
+ });
56140
56246
  Object.defineProperty(QuestionMatrixDropdownRenderedCell.prototype, "headers", {
56141
56247
  get: function () {
56142
56248
  if (this.cell && this.cell.column) {
@@ -59361,6 +59467,9 @@ var QuestionMultipleTextModel = /** @class */ (function (_super) {
59361
59467
  QuestionMultipleTextModel.prototype.getQuestionTitleLocation = function () {
59362
59468
  return "left";
59363
59469
  };
59470
+ QuestionMultipleTextModel.prototype.getQuestionTitleWidth = function () {
59471
+ return undefined;
59472
+ };
59364
59473
  QuestionMultipleTextModel.prototype.getQuestionStartIndex = function () {
59365
59474
  return this.getStartIndex();
59366
59475
  };
@@ -59882,6 +59991,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
59882
59991
  _this.createLocalizableString("panelNextText", _this, false, "pageNextText");
59883
59992
  _this.createLocalizableString("noEntriesText", _this, false, "noEntriesText");
59884
59993
  _this.createLocalizableString("templateTabTitle", _this, true, "panelDynamicTabTextFormat");
59994
+ _this.createLocalizableString("tabTitlePlaceholder", _this, true, "tabTitlePlaceholder");
59885
59995
  _this.registerPropertyChangedHandlers(["panelsState"], function () {
59886
59996
  _this.setPanelsState();
59887
59997
  });
@@ -60052,6 +60162,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60052
60162
  *
60053
60163
  * [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
60054
60164
  * @see templateTitle
60165
+ * @see tabTitlePlaceholder
60055
60166
  * @see renderMode
60056
60167
  */
60057
60168
  get: function () {
@@ -60070,6 +60181,28 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
60070
60181
  enumerable: false,
60071
60182
  configurable: true
60072
60183
  });
60184
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "tabTitlePlaceholder", {
60185
+ /**
60186
+ * A placeholder for tab titles that applies when the [`templateTabTitle`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#templateTabTitle) expression doesn't produce a meaningful value.
60187
+ *
60188
+ * Default value: `"New Panel"` (taken from a [localization dictionary](https://github.com/surveyjs/survey-library/tree/master/src/localization))
60189
+ */
60190
+ get: function () {
60191
+ return this.locTabTitlePlaceholder.text;
60192
+ },
60193
+ set: function (newValue) {
60194
+ this.locTabTitlePlaceholder.text = newValue;
60195
+ },
60196
+ enumerable: false,
60197
+ configurable: true
60198
+ });
60199
+ Object.defineProperty(QuestionPanelDynamicModel.prototype, "locTabTitlePlaceholder", {
60200
+ get: function () {
60201
+ return this.getLocalizableString("tabTitlePlaceholder");
60202
+ },
60203
+ enumerable: false,
60204
+ configurable: true
60205
+ });
60073
60206
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "templateDescription", {
60074
60207
  /**
60075
60208
  * A template for panel descriptions.
@@ -62320,6 +62453,9 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
62320
62453
  return;
62321
62454
  var locTitle = new _localizablestring__WEBPACK_IMPORTED_MODULE_2__["LocalizableString"](panel, true);
62322
62455
  locTitle.onGetTextCallback = function (str) {
62456
+ if (!str) {
62457
+ str = _this.locTabTitlePlaceholder.renderedHtml;
62458
+ }
62323
62459
  if (!_this.survey)
62324
62460
  return str;
62325
62461
  var options = {
@@ -62450,6 +62586,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_5__["Serializer"].addClass("paneldynamic",
62450
62586
  },
62451
62587
  { name: "templateTitle:text", serializationProperty: "locTemplateTitle" },
62452
62588
  { name: "templateTabTitle", serializationProperty: "locTemplateTabTitle", visibleIf: function (obj) { return obj.renderMode === "tab"; } },
62589
+ { name: "tabTitlePlaceholder", serializationProperty: "locTabTitlePlaceholder", visibleIf: function (obj) { return obj.renderMode === "tab"; } },
62453
62590
  {
62454
62591
  name: "templateDescription:text",
62455
62592
  serializationProperty: "locTemplateDescription",
@@ -65777,7 +65914,7 @@ var QuestionTextModel = /** @class */ (function (_super) {
65777
65914
  };
65778
65915
  Object.defineProperty(QuestionTextModel.prototype, "maskTypeIsEmpty", {
65779
65916
  get: function () {
65780
- return this.maskType === "none";
65917
+ return this.maskType === "none" || this.inputType !== "text";
65781
65918
  },
65782
65919
  enumerable: false,
65783
65920
  configurable: true
@@ -65851,6 +65988,7 @@ var QuestionTextModel = /** @class */ (function (_super) {
65851
65988
  this.max = undefined;
65852
65989
  this.step = undefined;
65853
65990
  }
65991
+ this.updateMaskAdapter();
65854
65992
  },
65855
65993
  enumerable: false,
65856
65994
  configurable: true
@@ -70866,9 +71004,10 @@ __webpack_require__.r(__webpack_exports__);
70866
71004
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SurveyElementHeader", function() { return SurveyElementHeader; });
70867
71005
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
70868
71006
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
70869
- /* harmony import */ var _components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./components/action-bar/action-bar */ "./src/react/components/action-bar/action-bar.tsx");
70870
- /* harmony import */ var _components_title_title_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./components/title/title-element */ "./src/react/components/title/title-element.tsx");
70871
- /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
71007
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "./src/entries/core.ts");
71008
+ /* harmony import */ var _components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./components/action-bar/action-bar */ "./src/react/components/action-bar/action-bar.tsx");
71009
+ /* harmony import */ var _components_title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components/title/title-element */ "./src/react/components/title/title-element.tsx");
71010
+ /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
70872
71011
  var __extends = (undefined && undefined.__extends) || (function () {
70873
71012
  var extendStatics = function (d, b) {
70874
71013
  extendStatics = Object.setPrototypeOf ||
@@ -70888,6 +71027,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
70888
71027
 
70889
71028
 
70890
71029
 
71030
+
70891
71031
  var SurveyElementHeader = /** @class */ (function (_super) {
70892
71032
  __extends(SurveyElementHeader, _super);
70893
71033
  function SurveyElementHeader() {
@@ -70902,12 +71042,16 @@ var SurveyElementHeader = /** @class */ (function (_super) {
70902
71042
  });
70903
71043
  SurveyElementHeader.prototype.render = function () {
70904
71044
  var element = this.element;
70905
- var title = element.hasTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_title_title_element__WEBPACK_IMPORTED_MODULE_2__["TitleElement"], { element: element })) : null;
71045
+ var title = element.hasTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_title_title_element__WEBPACK_IMPORTED_MODULE_3__["TitleElement"], { element: element })) : null;
70906
71046
  var description = element.hasDescriptionUnderTitle
70907
- ? _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"].renderQuestionDescription(this.element)
71047
+ ? _reactquestion_element__WEBPACK_IMPORTED_MODULE_4__["SurveyElementBase"].renderQuestionDescription(this.element)
70908
71048
  : null;
70909
- 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;
70910
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: element.cssHeader, onClick: function (e) { return element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent); } },
71049
+ var additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_2__["SurveyActionBar"], { model: element.additionalTitleToolbar }) : null;
71050
+ var headerStyle = { width: undefined };
71051
+ if (element instanceof survey_core__WEBPACK_IMPORTED_MODULE_1__["Question"]) {
71052
+ headerStyle.width = element.titleWidth;
71053
+ }
71054
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: element.cssHeader, onClick: function (e) { return element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent); }, style: headerStyle },
70911
71055
  title,
70912
71056
  description,
70913
71057
  additionalTitleToolbarElement));
@@ -73132,11 +73276,14 @@ var SurveyQuestionAndErrorsCell = /** @class */ (function (_super) {
73132
73276
  }
73133
73277
  }
73134
73278
  };
73279
+ SurveyQuestionAndErrorsCell.prototype.renderCellContent = function () {
73280
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.props.cell.cellQuestionWrapperClassName }, this.renderQuestion()));
73281
+ };
73135
73282
  SurveyQuestionAndErrorsCell.prototype.renderElement = function () {
73136
73283
  var style = this.getCellStyle();
73137
73284
  var cell = this.props.cell;
73138
73285
  var focusIn = function () { cell.focusIn(); };
73139
- return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("td", { ref: this.cellRef, className: this.itemCss, colSpan: cell.colSpans, "data-responsive-title": this.getHeaderText(), title: cell.getTitle(), style: style, onFocus: focusIn }, this.wrapCell(this.props.cell, (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.props.cell.cellQuestionWrapperClassName }, this.renderQuestion())))));
73286
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("td", { ref: this.cellRef, className: this.itemCss, colSpan: cell.colSpans, title: cell.getTitle(), style: style, onFocus: focusIn }, this.wrapCell(this.props.cell, this.renderCellContent())));
73140
73287
  };
73141
73288
  SurveyQuestionAndErrorsCell.prototype.getCellStyle = function () {
73142
73289
  return null;
@@ -75108,7 +75255,7 @@ var SurveyQuestionMatrixTable = /** @class */ (function (_super) {
75108
75255
  if (!!cell.minWidth)
75109
75256
  cellStyle.minWidth = cell.minWidth;
75110
75257
  }
75111
- return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("td", { className: cell.className, key: key, style: cellStyle, colSpan: cell.colSpans, "data-responsive-title": cell.headers, title: cell.getTitle() }, cellContent));
75258
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("td", { className: cell.className, key: key, style: cellStyle, colSpan: cell.colSpans, title: cell.getTitle() }, cellContent));
75112
75259
  };
75113
75260
  SurveyQuestionMatrixTable.prototype.renderCellContent = function (cell, reason, cssClasses) {
75114
75261
  var cellContent = null;
@@ -75327,6 +75474,13 @@ var SurveyQuestionMatrixDropdownCell = /** @class */ (function (_super) {
75327
75474
  SurveyQuestionMatrixDropdownCell.prototype.getHeaderText = function () {
75328
75475
  return this.cell.headers;
75329
75476
  };
75477
+ SurveyQuestionMatrixDropdownCell.prototype.renderCellContent = function () {
75478
+ var content = _super.prototype.renderCellContent.call(this);
75479
+ var responsiveTitle = this.cell.showResponsiveTitle ? (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.cell.responsiveTitleCss }, this.renderLocString(this.cell.responsiveLocTitle))) : null;
75480
+ return react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null,
75481
+ responsiveTitle,
75482
+ content);
75483
+ };
75330
75484
  SurveyQuestionMatrixDropdownCell.prototype.renderQuestion = function () {
75331
75485
  if (!this.question.isVisible)
75332
75486
  return react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null);
@@ -82273,12 +82427,13 @@ var SurveyModel = /** @class */ (function (_super) {
82273
82427
  };
82274
82428
  SurveyModel.prototype.getRendererForString = function (element, name) {
82275
82429
  var renderAs = this.getBuiltInRendererForString(element, name);
82430
+ renderAs = this.elementWrapperComponentNameCore(renderAs, element, "string", name);
82276
82431
  var options = { element: element, name: name, renderAs: renderAs };
82277
82432
  this.onTextRenderAs.fire(this, options);
82278
82433
  return options.renderAs;
82279
82434
  };
82280
82435
  SurveyModel.prototype.getRendererContextForString = function (element, locStr) {
82281
- return locStr;
82436
+ return this.elementWrapperDataCore(locStr, element, "string");
82282
82437
  };
82283
82438
  SurveyModel.prototype.getExpressionDisplayValue = function (question, value, displayValue) {
82284
82439
  var options = {
@@ -88422,10 +88577,7 @@ var SurveyModel = /** @class */ (function (_super) {
88422
88577
  return;
88423
88578
  Object.keys(theme).forEach(function (key) {
88424
88579
  if (key === "header") {
88425
- _this.removeLayoutElement("advanced-header");
88426
- var advHeader = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
88427
- advHeader.fromTheme(theme);
88428
- _this.insertAdvancedHeader(advHeader);
88580
+ return;
88429
88581
  }
88430
88582
  if (key === "isPanelless") {
88431
88583
  _this.isCompact = theme[key];
@@ -88434,6 +88586,12 @@ var SurveyModel = /** @class */ (function (_super) {
88434
88586
  _this[key] = theme[key];
88435
88587
  }
88436
88588
  });
88589
+ if (this.headerView === "advanced" || "header" in theme) {
88590
+ this.removeLayoutElement("advanced-header");
88591
+ var advHeader = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
88592
+ advHeader.fromTheme(theme);
88593
+ this.insertAdvancedHeader(advHeader);
88594
+ }
88437
88595
  this.themeChanged(theme);
88438
88596
  };
88439
88597
  SurveyModel.prototype.themeChanged = function (theme) {
@@ -90194,7 +90352,17 @@ var Trigger = /** @class */ (function (_super) {
90194
90352
  Trigger.prototype.getUsedVariables = function () {
90195
90353
  if (!this.conditionRunner)
90196
90354
  return [];
90197
- return this.conditionRunner.getVariables();
90355
+ var res = this.conditionRunner.getVariables();
90356
+ if (Array.isArray(res)) {
90357
+ var unw = "-unwrapped";
90358
+ for (var i = res.length - 1; i >= 0; i--) {
90359
+ var s = res[i];
90360
+ if (s.endsWith(unw)) {
90361
+ res.push(s.substring(0, s.length - unw.length));
90362
+ }
90363
+ }
90364
+ }
90365
+ return res;
90198
90366
  };
90199
90367
  Trigger.prototype.createConditionRunner = function () {
90200
90368
  if (!!this.conditionRunner)