survey-analytics 2.3.9 → 2.3.11
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/fesm/shared.mjs +479 -15
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +696 -212
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/survey.analytics.core.mjs +2 -2
- package/fesm/survey.analytics.mjs +27 -8
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.tabulator.mjs +28 -24
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/package.json +4 -3
- package/survey-analytics-tabulator.types/analytics-localization/arabic.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/dutch.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/farsi.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/finnish.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/french.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/german.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/italian.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/japanese.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/norwegian.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/polish.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/portuguese.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/russian.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/spanish.d.ts +16 -0
- package/survey-analytics-tabulator.types/analytics-localization/swedish.d.ts +16 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +16 -0
- package/survey-analytics-tabulator.types/tables/table.d.ts +2 -0
- package/survey-analytics.types/analytics-localization/arabic.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/dutch.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/english.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/farsi.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/finnish.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/french.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/german.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/italian.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/japanese.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/norwegian.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/polish.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/portuguese.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/russian.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/spanish.d.ts +16 -0
- package/survey-analytics.types/analytics-localization/swedish.d.ts +16 -0
- package/survey-analytics.types/dataProvider.d.ts +10 -0
- package/survey-analytics.types/entries/mongo.d.ts +1 -0
- package/survey-analytics.types/histogram.d.ts +48 -1
- package/survey-analytics.types/localizationManager.d.ts +16 -0
- package/survey-analytics.types/mongo/index.d.ts +16 -0
- package/survey-analytics.types/mongo/pipelines.d.ts +1 -0
- package/survey-analytics.types/mongo/result-transformers.d.ts +35 -0
- package/survey-analytics.types/selectBase.d.ts +3 -1
- package/survey-analytics.types/statisticCalculators.d.ts +12 -2
- package/survey-analytics.types/visualizationMatrixDropdown.d.ts +4 -6
- package/survey-analytics.types/visualizationPanel.d.ts +1 -0
- package/survey-analytics.types/visualizationPanelDynamic.d.ts +2 -5
- package/survey-analytics.types/visualizerBase.d.ts +2 -0
- package/survey.analytics.core.css +1 -1
- package/survey.analytics.core.d.ts +1 -0
- package/survey.analytics.core.js +1215 -201
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +1 -1
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +1 -0
- package/survey.analytics.js +1241 -206
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.mongo.d.ts +1 -0
- package/survey.analytics.mongo.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.d.ts +1 -0
- package/survey.analytics.tabulator.js +506 -38
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.11
|
|
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
|
*/
|
|
@@ -193,7 +193,39 @@ var arabicStrings = {
|
|
|
193
193
|
// [Auto-translated] "Groups:"
|
|
194
194
|
axisYAlternativeSelectorTitle: "المجموعات:",
|
|
195
195
|
// [Auto-translated] "Not selected"
|
|
196
|
-
notSelected: "غير محدد"
|
|
196
|
+
notSelected: "غير محدد",
|
|
197
|
+
// [Auto-translated] "Default"
|
|
198
|
+
intervalMode_default: "افتراضي",
|
|
199
|
+
// [Auto-translated] "Decades"
|
|
200
|
+
intervalMode_decades: "عقود",
|
|
201
|
+
// [Auto-translated] "Years"
|
|
202
|
+
intervalMode_years: "اعوام",
|
|
203
|
+
// [Auto-translated] "Quarters"
|
|
204
|
+
intervalMode_quarters: "ارباع",
|
|
205
|
+
// [Auto-translated] "Months"
|
|
206
|
+
intervalMode_months: "أشهر",
|
|
207
|
+
// [Auto-translated] "Days"
|
|
208
|
+
intervalMode_days: "أيام",
|
|
209
|
+
// [Auto-translated] "Custom"
|
|
210
|
+
intervalMode_custom: "تقليد",
|
|
211
|
+
// [Auto-translated] "Auto"
|
|
212
|
+
intervalMode_auto: "تلقائي",
|
|
213
|
+
// [Auto-translated] "Intervals:"
|
|
214
|
+
intervalModeTitle: "فترات:",
|
|
215
|
+
// [Auto-translated] "Show individual values"
|
|
216
|
+
noRunningTotals: "إظهار القيم الفردية",
|
|
217
|
+
// [Auto-translated] "Show running totals"
|
|
218
|
+
runningTotals: "إظهار الإجماليات الجارية",
|
|
219
|
+
// [Auto-translated] "Compare periods"
|
|
220
|
+
groupDateSeries: "مقارنة الفترات",
|
|
221
|
+
// [Auto-translated] "View timeline"
|
|
222
|
+
ungroupDateSeries: "عرض الجدول الزمني",
|
|
223
|
+
// [Auto-translated] "None"
|
|
224
|
+
noneAggregateText: "اي",
|
|
225
|
+
// [Auto-translated] "Aggregate:"
|
|
226
|
+
selectAggregateText: "تجميع:",
|
|
227
|
+
// [Auto-translated] "Year ends with"
|
|
228
|
+
groupedYearsAxisTitle: "ينتهي العام ب"
|
|
197
229
|
};
|
|
198
230
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ar", strings: arabicStrings, nativeName: "العربية" });
|
|
199
231
|
|
|
@@ -377,7 +409,39 @@ var dutchStrings = {
|
|
|
377
409
|
// [Auto-translated] "Groups:"
|
|
378
410
|
axisYAlternativeSelectorTitle: "Groepen:",
|
|
379
411
|
// [Auto-translated] "Not selected"
|
|
380
|
-
notSelected: "Niet geselecteerd"
|
|
412
|
+
notSelected: "Niet geselecteerd",
|
|
413
|
+
// [Auto-translated] "Default"
|
|
414
|
+
intervalMode_default: "Verstek",
|
|
415
|
+
// [Auto-translated] "Decades"
|
|
416
|
+
intervalMode_decades: "Decennia",
|
|
417
|
+
// [Auto-translated] "Years"
|
|
418
|
+
intervalMode_years: "Jaren",
|
|
419
|
+
// [Auto-translated] "Quarters"
|
|
420
|
+
intervalMode_quarters: "Vertrekken",
|
|
421
|
+
// [Auto-translated] "Months"
|
|
422
|
+
intervalMode_months: "Maanden",
|
|
423
|
+
// [Auto-translated] "Days"
|
|
424
|
+
intervalMode_days: "Dagen",
|
|
425
|
+
// [Auto-translated] "Custom"
|
|
426
|
+
intervalMode_custom: "Gewoonte",
|
|
427
|
+
// [Auto-translated] "Auto"
|
|
428
|
+
intervalMode_auto: "Auto",
|
|
429
|
+
// [Auto-translated] "Intervals:"
|
|
430
|
+
intervalModeTitle: "Intervallen:",
|
|
431
|
+
// [Auto-translated] "Show individual values"
|
|
432
|
+
noRunningTotals: "Toon individuele waarden",
|
|
433
|
+
// [Auto-translated] "Show running totals"
|
|
434
|
+
runningTotals: "Toon lopende totalen",
|
|
435
|
+
// [Auto-translated] "Compare periods"
|
|
436
|
+
groupDateSeries: "Vergelijk periodes",
|
|
437
|
+
// [Auto-translated] "View timeline"
|
|
438
|
+
ungroupDateSeries: "Tijdlijn bekijken",
|
|
439
|
+
// [Auto-translated] "None"
|
|
440
|
+
noneAggregateText: "Geen",
|
|
441
|
+
// [Auto-translated] "Aggregate:"
|
|
442
|
+
selectAggregateText: "Aggregaat:",
|
|
443
|
+
// [Auto-translated] "Year ends with"
|
|
444
|
+
groupedYearsAxisTitle: "Het jaar eindigt met"
|
|
381
445
|
};
|
|
382
446
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "nl", strings: dutchStrings, nativeName: "Nederlands" });
|
|
383
447
|
|
|
@@ -480,6 +544,22 @@ var englishStrings = {
|
|
|
480
544
|
axisXAlternativeSelectorTitle: "Segments:",
|
|
481
545
|
axisYAlternativeSelectorTitle: "Groups:",
|
|
482
546
|
notSelected: "Not selected",
|
|
547
|
+
intervalMode_default: "Default",
|
|
548
|
+
intervalMode_decades: "Decades",
|
|
549
|
+
intervalMode_years: "Years",
|
|
550
|
+
intervalMode_quarters: "Quarters",
|
|
551
|
+
intervalMode_months: "Months",
|
|
552
|
+
intervalMode_days: "Days",
|
|
553
|
+
intervalMode_custom: "Custom",
|
|
554
|
+
intervalMode_auto: "Auto",
|
|
555
|
+
intervalModeTitle: "Intervals:",
|
|
556
|
+
noRunningTotals: "Show individual values",
|
|
557
|
+
runningTotals: "Show running totals",
|
|
558
|
+
groupDateSeries: "Compare periods",
|
|
559
|
+
ungroupDateSeries: "View timeline",
|
|
560
|
+
noneAggregateText: "None",
|
|
561
|
+
selectAggregateText: "Aggregate:",
|
|
562
|
+
groupedYearsAxisTitle: "Year ends with",
|
|
483
563
|
license: "To use the Dashboard library in your application, a <a href='https://surveyjs.io/licensing' target='_blank'>developer license</a> is required. If you have an active license, please <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up your license key</a> and ensure you're using the <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>latest version</a>.",
|
|
484
564
|
license2: "This banner appears because your maintenance subscription for the Dashboard library expired on {date}. You may continue using <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>all versions released up to that date</a>. To remove this banner in the latest version, please <a href='https://surveyjs.io/manage#license-manager' target='_blank'>renew your subscription</a> and <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up a new license key</a>."
|
|
485
565
|
};
|
|
@@ -668,7 +748,39 @@ var farsiStrings = {
|
|
|
668
748
|
// [Auto-translated] "Groups:"
|
|
669
749
|
axisYAlternativeSelectorTitle: "گروه:",
|
|
670
750
|
// [Auto-translated] "Not selected"
|
|
671
|
-
notSelected: "انتخاب نشده است"
|
|
751
|
+
notSelected: "انتخاب نشده است",
|
|
752
|
+
// [Auto-translated] "Default"
|
|
753
|
+
intervalMode_default: "پیش فرض",
|
|
754
|
+
// [Auto-translated] "Decades"
|
|
755
|
+
intervalMode_decades: "دهه",
|
|
756
|
+
// [Auto-translated] "Years"
|
|
757
|
+
intervalMode_years: "سال",
|
|
758
|
+
// [Auto-translated] "Quarters"
|
|
759
|
+
intervalMode_quarters: "چهارم",
|
|
760
|
+
// [Auto-translated] "Months"
|
|
761
|
+
intervalMode_months: "ماهها",
|
|
762
|
+
// [Auto-translated] "Days"
|
|
763
|
+
intervalMode_days: "روزها",
|
|
764
|
+
// [Auto-translated] "Custom"
|
|
765
|
+
intervalMode_custom: "سفارشی",
|
|
766
|
+
// [Auto-translated] "Auto"
|
|
767
|
+
intervalMode_auto: "خودکار",
|
|
768
|
+
// [Auto-translated] "Intervals:"
|
|
769
|
+
intervalModeTitle: "فواصل:",
|
|
770
|
+
// [Auto-translated] "Show individual values"
|
|
771
|
+
noRunningTotals: "نمایش ارزش های فردی",
|
|
772
|
+
// [Auto-translated] "Show running totals"
|
|
773
|
+
runningTotals: "نمایش مجموع در حال اجرا",
|
|
774
|
+
// [Auto-translated] "Compare periods"
|
|
775
|
+
groupDateSeries: "دوره ها را مقایسه کنید",
|
|
776
|
+
// [Auto-translated] "View timeline"
|
|
777
|
+
ungroupDateSeries: "مشاهده جدول زمانی",
|
|
778
|
+
// [Auto-translated] "None"
|
|
779
|
+
noneAggregateText: "هیچ کدام",
|
|
780
|
+
// [Auto-translated] "Aggregate:"
|
|
781
|
+
selectAggregateText: "مجموع:",
|
|
782
|
+
// [Auto-translated] "Year ends with"
|
|
783
|
+
groupedYearsAxisTitle: "سال به پایان می رسد با"
|
|
672
784
|
};
|
|
673
785
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fa", strings: farsiStrings, nativeName: "فارسی" });
|
|
674
786
|
|
|
@@ -852,7 +964,39 @@ var finnishStrings = {
|
|
|
852
964
|
// [Auto-translated] "Groups:"
|
|
853
965
|
axisYAlternativeSelectorTitle: "Ryhmät:",
|
|
854
966
|
// [Auto-translated] "Not selected"
|
|
855
|
-
notSelected: "Ei valittu"
|
|
967
|
+
notSelected: "Ei valittu",
|
|
968
|
+
// [Auto-translated] "Default"
|
|
969
|
+
intervalMode_default: "Laiminlyönti",
|
|
970
|
+
// [Auto-translated] "Decades"
|
|
971
|
+
intervalMode_decades: "Vuosikymmeniä",
|
|
972
|
+
// [Auto-translated] "Years"
|
|
973
|
+
intervalMode_years: "Vuosia",
|
|
974
|
+
// [Auto-translated] "Quarters"
|
|
975
|
+
intervalMode_quarters: "Neljäsosaa",
|
|
976
|
+
// [Auto-translated] "Months"
|
|
977
|
+
intervalMode_months: "Kuukautta",
|
|
978
|
+
// [Auto-translated] "Days"
|
|
979
|
+
intervalMode_days: "Päivää",
|
|
980
|
+
// [Auto-translated] "Custom"
|
|
981
|
+
intervalMode_custom: "Tapa",
|
|
982
|
+
// [Auto-translated] "Auto"
|
|
983
|
+
intervalMode_auto: "Auto",
|
|
984
|
+
// [Auto-translated] "Intervals:"
|
|
985
|
+
intervalModeTitle: "Välein:",
|
|
986
|
+
// [Auto-translated] "Show individual values"
|
|
987
|
+
noRunningTotals: "Näytä yksittäiset arvot",
|
|
988
|
+
// [Auto-translated] "Show running totals"
|
|
989
|
+
runningTotals: "Näytä juoksevat kokonaismäärät",
|
|
990
|
+
// [Auto-translated] "Compare periods"
|
|
991
|
+
groupDateSeries: "Vertaile kausia",
|
|
992
|
+
// [Auto-translated] "View timeline"
|
|
993
|
+
ungroupDateSeries: "Näytä aikajana",
|
|
994
|
+
// [Auto-translated] "None"
|
|
995
|
+
noneAggregateText: "Ei lainkaan",
|
|
996
|
+
// [Auto-translated] "Aggregate:"
|
|
997
|
+
selectAggregateText: "Aggregaatti:",
|
|
998
|
+
// [Auto-translated] "Year ends with"
|
|
999
|
+
groupedYearsAxisTitle: "Vuosi päättyy"
|
|
856
1000
|
};
|
|
857
1001
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fi", strings: finnishStrings, nativeName: "Suomi" });
|
|
858
1002
|
|
|
@@ -1036,7 +1180,39 @@ var frenchStrings = {
|
|
|
1036
1180
|
// [Auto-translated] "Groups:"
|
|
1037
1181
|
axisYAlternativeSelectorTitle: "Groupe:",
|
|
1038
1182
|
// [Auto-translated] "Not selected"
|
|
1039
|
-
notSelected: "Non sélectionné"
|
|
1183
|
+
notSelected: "Non sélectionné",
|
|
1184
|
+
// [Auto-translated] "Default"
|
|
1185
|
+
intervalMode_default: "Faire défaut",
|
|
1186
|
+
// [Auto-translated] "Decades"
|
|
1187
|
+
intervalMode_decades: "Décennies",
|
|
1188
|
+
// [Auto-translated] "Years"
|
|
1189
|
+
intervalMode_years: "Années",
|
|
1190
|
+
// [Auto-translated] "Quarters"
|
|
1191
|
+
intervalMode_quarters: "Quartier",
|
|
1192
|
+
// [Auto-translated] "Months"
|
|
1193
|
+
intervalMode_months: "Mois",
|
|
1194
|
+
// [Auto-translated] "Days"
|
|
1195
|
+
intervalMode_days: "Jours",
|
|
1196
|
+
// [Auto-translated] "Custom"
|
|
1197
|
+
intervalMode_custom: "Coutume",
|
|
1198
|
+
// [Auto-translated] "Auto"
|
|
1199
|
+
intervalMode_auto: "Auto",
|
|
1200
|
+
// [Auto-translated] "Intervals:"
|
|
1201
|
+
intervalModeTitle: "Intervalles:",
|
|
1202
|
+
// [Auto-translated] "Show individual values"
|
|
1203
|
+
noRunningTotals: "Afficher les valeurs individuelles",
|
|
1204
|
+
// [Auto-translated] "Show running totals"
|
|
1205
|
+
runningTotals: "Afficher les totaux cumulés",
|
|
1206
|
+
// [Auto-translated] "Compare periods"
|
|
1207
|
+
groupDateSeries: "Comparer les périodes",
|
|
1208
|
+
// [Auto-translated] "View timeline"
|
|
1209
|
+
ungroupDateSeries: "Voir la chronologie",
|
|
1210
|
+
// [Auto-translated] "None"
|
|
1211
|
+
noneAggregateText: "Aucun",
|
|
1212
|
+
// [Auto-translated] "Aggregate:"
|
|
1213
|
+
selectAggregateText: "Agrégat:",
|
|
1214
|
+
// [Auto-translated] "Year ends with"
|
|
1215
|
+
groupedYearsAxisTitle: "L’exercice se termine avec"
|
|
1040
1216
|
};
|
|
1041
1217
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fr", strings: frenchStrings, nativeName: "Français" });
|
|
1042
1218
|
|
|
@@ -1220,7 +1396,39 @@ var germanStrings = {
|
|
|
1220
1396
|
// [Auto-translated] "Groups:"
|
|
1221
1397
|
axisYAlternativeSelectorTitle: "Gruppen:",
|
|
1222
1398
|
// [Auto-translated] "Not selected"
|
|
1223
|
-
notSelected: "Nicht ausgewählt"
|
|
1399
|
+
notSelected: "Nicht ausgewählt",
|
|
1400
|
+
// [Auto-translated] "Default"
|
|
1401
|
+
intervalMode_default: "Vorgabe",
|
|
1402
|
+
// [Auto-translated] "Decades"
|
|
1403
|
+
intervalMode_decades: "Dekaden",
|
|
1404
|
+
// [Auto-translated] "Years"
|
|
1405
|
+
intervalMode_years: "Jahre",
|
|
1406
|
+
// [Auto-translated] "Quarters"
|
|
1407
|
+
intervalMode_quarters: "Quartier",
|
|
1408
|
+
// [Auto-translated] "Months"
|
|
1409
|
+
intervalMode_months: "Monate",
|
|
1410
|
+
// [Auto-translated] "Days"
|
|
1411
|
+
intervalMode_days: "Tage",
|
|
1412
|
+
// [Auto-translated] "Custom"
|
|
1413
|
+
intervalMode_custom: "Gewohnheit",
|
|
1414
|
+
// [Auto-translated] "Auto"
|
|
1415
|
+
intervalMode_auto: "Auto",
|
|
1416
|
+
// [Auto-translated] "Intervals:"
|
|
1417
|
+
intervalModeTitle: "Intervalle:",
|
|
1418
|
+
// [Auto-translated] "Show individual values"
|
|
1419
|
+
noRunningTotals: "Einzelne Werte anzeigen",
|
|
1420
|
+
// [Auto-translated] "Show running totals"
|
|
1421
|
+
runningTotals: "Laufende Summen anzeigen",
|
|
1422
|
+
// [Auto-translated] "Compare periods"
|
|
1423
|
+
groupDateSeries: "Zeiträume vergleichen",
|
|
1424
|
+
// [Auto-translated] "View timeline"
|
|
1425
|
+
ungroupDateSeries: "Zeitleiste anzeigen",
|
|
1426
|
+
// [Auto-translated] "None"
|
|
1427
|
+
noneAggregateText: "Nichts",
|
|
1428
|
+
// [Auto-translated] "Aggregate:"
|
|
1429
|
+
selectAggregateText: "Aggregat:",
|
|
1430
|
+
// [Auto-translated] "Year ends with"
|
|
1431
|
+
groupedYearsAxisTitle: "Das Jahr endet mit"
|
|
1224
1432
|
};
|
|
1225
1433
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "de", strings: germanStrings, nativeName: "Deutsch" });
|
|
1226
1434
|
|
|
@@ -1404,7 +1612,39 @@ var italianStrings = {
|
|
|
1404
1612
|
// [Auto-translated] "Groups:"
|
|
1405
1613
|
axisYAlternativeSelectorTitle: "Gruppi:",
|
|
1406
1614
|
// [Auto-translated] "Not selected"
|
|
1407
|
-
notSelected: "Non selezionato"
|
|
1615
|
+
notSelected: "Non selezionato",
|
|
1616
|
+
// [Auto-translated] "Default"
|
|
1617
|
+
intervalMode_default: "Default",
|
|
1618
|
+
// [Auto-translated] "Decades"
|
|
1619
|
+
intervalMode_decades: "Decenni",
|
|
1620
|
+
// [Auto-translated] "Years"
|
|
1621
|
+
intervalMode_years: "Anni",
|
|
1622
|
+
// [Auto-translated] "Quarters"
|
|
1623
|
+
intervalMode_quarters: "Quarti",
|
|
1624
|
+
// [Auto-translated] "Months"
|
|
1625
|
+
intervalMode_months: "Mesi",
|
|
1626
|
+
// [Auto-translated] "Days"
|
|
1627
|
+
intervalMode_days: "Giorni",
|
|
1628
|
+
// [Auto-translated] "Custom"
|
|
1629
|
+
intervalMode_custom: "Costume",
|
|
1630
|
+
// [Auto-translated] "Auto"
|
|
1631
|
+
intervalMode_auto: "Automatico",
|
|
1632
|
+
// [Auto-translated] "Intervals:"
|
|
1633
|
+
intervalModeTitle: "Intervalli:",
|
|
1634
|
+
// [Auto-translated] "Show individual values"
|
|
1635
|
+
noRunningTotals: "Mostra i singoli valori",
|
|
1636
|
+
// [Auto-translated] "Show running totals"
|
|
1637
|
+
runningTotals: "Mostra totali parziali",
|
|
1638
|
+
// [Auto-translated] "Compare periods"
|
|
1639
|
+
groupDateSeries: "Confronta i periodi",
|
|
1640
|
+
// [Auto-translated] "View timeline"
|
|
1641
|
+
ungroupDateSeries: "Visualizza la timeline",
|
|
1642
|
+
// [Auto-translated] "None"
|
|
1643
|
+
noneAggregateText: "Nessuno",
|
|
1644
|
+
// [Auto-translated] "Aggregate:"
|
|
1645
|
+
selectAggregateText: "Aggregato:",
|
|
1646
|
+
// [Auto-translated] "Year ends with"
|
|
1647
|
+
groupedYearsAxisTitle: "L'anno si chiude con"
|
|
1408
1648
|
};
|
|
1409
1649
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "it", strings: italianStrings, nativeName: "Italiano" });
|
|
1410
1650
|
|
|
@@ -1588,7 +1828,39 @@ var japaneseStrings = {
|
|
|
1588
1828
|
// [Auto-translated] "Groups:"
|
|
1589
1829
|
axisYAlternativeSelectorTitle: "グループ:",
|
|
1590
1830
|
// [Auto-translated] "Not selected"
|
|
1591
|
-
notSelected: "選択されていない"
|
|
1831
|
+
notSelected: "選択されていない",
|
|
1832
|
+
// [Auto-translated] "Default"
|
|
1833
|
+
intervalMode_default: "デフォルト",
|
|
1834
|
+
// [Auto-translated] "Decades"
|
|
1835
|
+
intervalMode_decades: "数 十 年",
|
|
1836
|
+
// [Auto-translated] "Years"
|
|
1837
|
+
intervalMode_years: "月日",
|
|
1838
|
+
// [Auto-translated] "Quarters"
|
|
1839
|
+
intervalMode_quarters: "四半期",
|
|
1840
|
+
// [Auto-translated] "Months"
|
|
1841
|
+
intervalMode_months: "月",
|
|
1842
|
+
// [Auto-translated] "Days"
|
|
1843
|
+
intervalMode_days: "日",
|
|
1844
|
+
// [Auto-translated] "Custom"
|
|
1845
|
+
intervalMode_custom: "習慣",
|
|
1846
|
+
// [Auto-translated] "Auto"
|
|
1847
|
+
intervalMode_auto: "自動",
|
|
1848
|
+
// [Auto-translated] "Intervals:"
|
|
1849
|
+
intervalModeTitle: "間隔:",
|
|
1850
|
+
// [Auto-translated] "Show individual values"
|
|
1851
|
+
noRunningTotals: "個々の値を表示する",
|
|
1852
|
+
// [Auto-translated] "Show running totals"
|
|
1853
|
+
runningTotals: "累計を表示する",
|
|
1854
|
+
// [Auto-translated] "Compare periods"
|
|
1855
|
+
groupDateSeries: "期間の比較",
|
|
1856
|
+
// [Auto-translated] "View timeline"
|
|
1857
|
+
ungroupDateSeries: "タイムラインの表示",
|
|
1858
|
+
// [Auto-translated] "None"
|
|
1859
|
+
noneAggregateText: "何一つ",
|
|
1860
|
+
// [Auto-translated] "Aggregate:"
|
|
1861
|
+
selectAggregateText: "骨材:",
|
|
1862
|
+
// [Auto-translated] "Year ends with"
|
|
1863
|
+
groupedYearsAxisTitle: "年末は"
|
|
1592
1864
|
};
|
|
1593
1865
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ja", strings: japaneseStrings, nativeName: "日本語" });
|
|
1594
1866
|
|
|
@@ -1772,7 +2044,39 @@ var norwegianStrings = {
|
|
|
1772
2044
|
// [Auto-translated] "Groups:"
|
|
1773
2045
|
axisYAlternativeSelectorTitle: "Grupper:",
|
|
1774
2046
|
// [Auto-translated] "Not selected"
|
|
1775
|
-
notSelected: "Ikke valgt"
|
|
2047
|
+
notSelected: "Ikke valgt",
|
|
2048
|
+
// [Auto-translated] "Default"
|
|
2049
|
+
intervalMode_default: "Standard",
|
|
2050
|
+
// [Auto-translated] "Decades"
|
|
2051
|
+
intervalMode_decades: "Tiår",
|
|
2052
|
+
// [Auto-translated] "Years"
|
|
2053
|
+
intervalMode_years: "År",
|
|
2054
|
+
// [Auto-translated] "Quarters"
|
|
2055
|
+
intervalMode_quarters: "Kvartaler",
|
|
2056
|
+
// [Auto-translated] "Months"
|
|
2057
|
+
intervalMode_months: "Måneder",
|
|
2058
|
+
// [Auto-translated] "Days"
|
|
2059
|
+
intervalMode_days: "Dager",
|
|
2060
|
+
// [Auto-translated] "Custom"
|
|
2061
|
+
intervalMode_custom: "Skikk",
|
|
2062
|
+
// [Auto-translated] "Auto"
|
|
2063
|
+
intervalMode_auto: "Auto",
|
|
2064
|
+
// [Auto-translated] "Intervals:"
|
|
2065
|
+
intervalModeTitle: "Intervaller:",
|
|
2066
|
+
// [Auto-translated] "Show individual values"
|
|
2067
|
+
noRunningTotals: "Vis individuelle verdier",
|
|
2068
|
+
// [Auto-translated] "Show running totals"
|
|
2069
|
+
runningTotals: "Vis løpende totaler",
|
|
2070
|
+
// [Auto-translated] "Compare periods"
|
|
2071
|
+
groupDateSeries: "Sammenlign perioder",
|
|
2072
|
+
// [Auto-translated] "View timeline"
|
|
2073
|
+
ungroupDateSeries: "Vis tidslinje",
|
|
2074
|
+
// [Auto-translated] "None"
|
|
2075
|
+
noneAggregateText: "Ingen",
|
|
2076
|
+
// [Auto-translated] "Aggregate:"
|
|
2077
|
+
selectAggregateText: "Samlet:",
|
|
2078
|
+
// [Auto-translated] "Year ends with"
|
|
2079
|
+
groupedYearsAxisTitle: "Året avsluttes med"
|
|
1776
2080
|
};
|
|
1777
2081
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "no", strings: norwegianStrings, nativeName: "Norsk" });
|
|
1778
2082
|
|
|
@@ -1956,7 +2260,39 @@ var plStrings = {
|
|
|
1956
2260
|
// [Auto-translated] "Groups:"
|
|
1957
2261
|
axisYAlternativeSelectorTitle: "Grupy:",
|
|
1958
2262
|
// [Auto-translated] "Not selected"
|
|
1959
|
-
notSelected: "Nie wybrano"
|
|
2263
|
+
notSelected: "Nie wybrano",
|
|
2264
|
+
// [Auto-translated] "Default"
|
|
2265
|
+
intervalMode_default: "Domyślny",
|
|
2266
|
+
// [Auto-translated] "Decades"
|
|
2267
|
+
intervalMode_decades: "Dziesięciolecia",
|
|
2268
|
+
// [Auto-translated] "Years"
|
|
2269
|
+
intervalMode_years: "Lata",
|
|
2270
|
+
// [Auto-translated] "Quarters"
|
|
2271
|
+
intervalMode_quarters: "Kwartałów",
|
|
2272
|
+
// [Auto-translated] "Months"
|
|
2273
|
+
intervalMode_months: "Miesiące",
|
|
2274
|
+
// [Auto-translated] "Days"
|
|
2275
|
+
intervalMode_days: "Dni",
|
|
2276
|
+
// [Auto-translated] "Custom"
|
|
2277
|
+
intervalMode_custom: "Zwyczaj",
|
|
2278
|
+
// [Auto-translated] "Auto"
|
|
2279
|
+
intervalMode_auto: "Automatycznie",
|
|
2280
|
+
// [Auto-translated] "Intervals:"
|
|
2281
|
+
intervalModeTitle: "Odstępach czasu:",
|
|
2282
|
+
// [Auto-translated] "Show individual values"
|
|
2283
|
+
noRunningTotals: "Pokaż poszczególne wartości",
|
|
2284
|
+
// [Auto-translated] "Show running totals"
|
|
2285
|
+
runningTotals: "Pokazywanie sum bieżących",
|
|
2286
|
+
// [Auto-translated] "Compare periods"
|
|
2287
|
+
groupDateSeries: "Porównywanie okresów",
|
|
2288
|
+
// [Auto-translated] "View timeline"
|
|
2289
|
+
ungroupDateSeries: "Wyświetl oś czasu",
|
|
2290
|
+
// [Auto-translated] "None"
|
|
2291
|
+
noneAggregateText: "Żaden",
|
|
2292
|
+
// [Auto-translated] "Aggregate:"
|
|
2293
|
+
selectAggregateText: "Kruszywo:",
|
|
2294
|
+
// [Auto-translated] "Year ends with"
|
|
2295
|
+
groupedYearsAxisTitle: "Rok kończy się na"
|
|
1960
2296
|
};
|
|
1961
2297
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "pl", strings: plStrings, nativeName: "Polski" });
|
|
1962
2298
|
|
|
@@ -2140,7 +2476,39 @@ var portugueseStrings = {
|
|
|
2140
2476
|
// [Auto-translated] "Groups:"
|
|
2141
2477
|
axisYAlternativeSelectorTitle: "Grupos:",
|
|
2142
2478
|
// [Auto-translated] "Not selected"
|
|
2143
|
-
notSelected: "Não selecionado"
|
|
2479
|
+
notSelected: "Não selecionado",
|
|
2480
|
+
// [Auto-translated] "Default"
|
|
2481
|
+
intervalMode_default: "Inadimplência",
|
|
2482
|
+
// [Auto-translated] "Decades"
|
|
2483
|
+
intervalMode_decades: "Décadas",
|
|
2484
|
+
// [Auto-translated] "Years"
|
|
2485
|
+
intervalMode_years: "Anos",
|
|
2486
|
+
// [Auto-translated] "Quarters"
|
|
2487
|
+
intervalMode_quarters: "Quartos",
|
|
2488
|
+
// [Auto-translated] "Months"
|
|
2489
|
+
intervalMode_months: "Meses",
|
|
2490
|
+
// [Auto-translated] "Days"
|
|
2491
|
+
intervalMode_days: "Dias",
|
|
2492
|
+
// [Auto-translated] "Custom"
|
|
2493
|
+
intervalMode_custom: "Costume",
|
|
2494
|
+
// [Auto-translated] "Auto"
|
|
2495
|
+
intervalMode_auto: "Automático",
|
|
2496
|
+
// [Auto-translated] "Intervals:"
|
|
2497
|
+
intervalModeTitle: "Intervalos:",
|
|
2498
|
+
// [Auto-translated] "Show individual values"
|
|
2499
|
+
noRunningTotals: "Mostrar valores individuais",
|
|
2500
|
+
// [Auto-translated] "Show running totals"
|
|
2501
|
+
runningTotals: "Mostrar totais acumulados",
|
|
2502
|
+
// [Auto-translated] "Compare periods"
|
|
2503
|
+
groupDateSeries: "Comparar períodos",
|
|
2504
|
+
// [Auto-translated] "View timeline"
|
|
2505
|
+
ungroupDateSeries: "Ver linha do tempo",
|
|
2506
|
+
// [Auto-translated] "None"
|
|
2507
|
+
noneAggregateText: "Nenhum",
|
|
2508
|
+
// [Auto-translated] "Aggregate:"
|
|
2509
|
+
selectAggregateText: "Agregado:",
|
|
2510
|
+
// [Auto-translated] "Year ends with"
|
|
2511
|
+
groupedYearsAxisTitle: "O ano termina com"
|
|
2144
2512
|
};
|
|
2145
2513
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "pt", strings: portugueseStrings, nativeName: "Português" });
|
|
2146
2514
|
|
|
@@ -2324,7 +2692,39 @@ var russianStrings = {
|
|
|
2324
2692
|
// [Auto-translated] "Groups:"
|
|
2325
2693
|
axisYAlternativeSelectorTitle: "Группы:",
|
|
2326
2694
|
// [Auto-translated] "Not selected"
|
|
2327
|
-
notSelected: "Не выбрано"
|
|
2695
|
+
notSelected: "Не выбрано",
|
|
2696
|
+
// [Auto-translated] "Default"
|
|
2697
|
+
intervalMode_default: "По умолчанию",
|
|
2698
|
+
// [Auto-translated] "Decades"
|
|
2699
|
+
intervalMode_decades: "Десятилетий",
|
|
2700
|
+
// [Auto-translated] "Years"
|
|
2701
|
+
intervalMode_years: "Годы",
|
|
2702
|
+
// [Auto-translated] "Quarters"
|
|
2703
|
+
intervalMode_quarters: "Квартира",
|
|
2704
|
+
// [Auto-translated] "Months"
|
|
2705
|
+
intervalMode_months: "Месяцы",
|
|
2706
|
+
// [Auto-translated] "Days"
|
|
2707
|
+
intervalMode_days: "Дни недели",
|
|
2708
|
+
// [Auto-translated] "Custom"
|
|
2709
|
+
intervalMode_custom: "Обычай",
|
|
2710
|
+
// [Auto-translated] "Auto"
|
|
2711
|
+
intervalMode_auto: "Авто",
|
|
2712
|
+
// [Auto-translated] "Intervals:"
|
|
2713
|
+
intervalModeTitle: "Интервалы:",
|
|
2714
|
+
// [Auto-translated] "Show individual values"
|
|
2715
|
+
noRunningTotals: "Отображение отдельных значений",
|
|
2716
|
+
// [Auto-translated] "Show running totals"
|
|
2717
|
+
runningTotals: "Показать промежуточные итоги",
|
|
2718
|
+
// [Auto-translated] "Compare periods"
|
|
2719
|
+
groupDateSeries: "Сравнение периодов",
|
|
2720
|
+
// [Auto-translated] "View timeline"
|
|
2721
|
+
ungroupDateSeries: "Просмотр временной шкалы",
|
|
2722
|
+
// [Auto-translated] "None"
|
|
2723
|
+
noneAggregateText: "Никакой",
|
|
2724
|
+
// [Auto-translated] "Aggregate:"
|
|
2725
|
+
selectAggregateText: "Совокупность:",
|
|
2726
|
+
// [Auto-translated] "Year ends with"
|
|
2727
|
+
groupedYearsAxisTitle: "Год заканчивается с"
|
|
2328
2728
|
};
|
|
2329
2729
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ru", strings: russianStrings, nativeName: "Русский" });
|
|
2330
2730
|
|
|
@@ -2508,7 +2908,39 @@ var spanishStrings = {
|
|
|
2508
2908
|
// [Auto-translated] "Groups:"
|
|
2509
2909
|
axisYAlternativeSelectorTitle: "Grupos:",
|
|
2510
2910
|
// [Auto-translated] "Not selected"
|
|
2511
|
-
notSelected: "No seleccionado"
|
|
2911
|
+
notSelected: "No seleccionado",
|
|
2912
|
+
// [Auto-translated] "Default"
|
|
2913
|
+
intervalMode_default: "Predeterminado",
|
|
2914
|
+
// [Auto-translated] "Decades"
|
|
2915
|
+
intervalMode_decades: "Décadas",
|
|
2916
|
+
// [Auto-translated] "Years"
|
|
2917
|
+
intervalMode_years: "Años",
|
|
2918
|
+
// [Auto-translated] "Quarters"
|
|
2919
|
+
intervalMode_quarters: "Alojamiento",
|
|
2920
|
+
// [Auto-translated] "Months"
|
|
2921
|
+
intervalMode_months: "Meses",
|
|
2922
|
+
// [Auto-translated] "Days"
|
|
2923
|
+
intervalMode_days: "Días",
|
|
2924
|
+
// [Auto-translated] "Custom"
|
|
2925
|
+
intervalMode_custom: "Costumbre",
|
|
2926
|
+
// [Auto-translated] "Auto"
|
|
2927
|
+
intervalMode_auto: "Automático",
|
|
2928
|
+
// [Auto-translated] "Intervals:"
|
|
2929
|
+
intervalModeTitle: "Intervalos:",
|
|
2930
|
+
// [Auto-translated] "Show individual values"
|
|
2931
|
+
noRunningTotals: "Mostrar valores individuales",
|
|
2932
|
+
// [Auto-translated] "Show running totals"
|
|
2933
|
+
runningTotals: "Mostrar totales acumulados",
|
|
2934
|
+
// [Auto-translated] "Compare periods"
|
|
2935
|
+
groupDateSeries: "Comparar períodos",
|
|
2936
|
+
// [Auto-translated] "View timeline"
|
|
2937
|
+
ungroupDateSeries: "Ver cronograma",
|
|
2938
|
+
// [Auto-translated] "None"
|
|
2939
|
+
noneAggregateText: "Ninguno",
|
|
2940
|
+
// [Auto-translated] "Aggregate:"
|
|
2941
|
+
selectAggregateText: "Agregado:",
|
|
2942
|
+
// [Auto-translated] "Year ends with"
|
|
2943
|
+
groupedYearsAxisTitle: "El año termina con"
|
|
2512
2944
|
};
|
|
2513
2945
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "es", strings: spanishStrings, nativeName: "Español" });
|
|
2514
2946
|
|
|
@@ -2692,7 +3124,39 @@ var swedishStrings = {
|
|
|
2692
3124
|
// [Auto-translated] "Groups:"
|
|
2693
3125
|
axisYAlternativeSelectorTitle: "Grupper:",
|
|
2694
3126
|
// [Auto-translated] "Not selected"
|
|
2695
|
-
notSelected: "Inte valt"
|
|
3127
|
+
notSelected: "Inte valt",
|
|
3128
|
+
// [Auto-translated] "Default"
|
|
3129
|
+
intervalMode_default: "Standard",
|
|
3130
|
+
// [Auto-translated] "Decades"
|
|
3131
|
+
intervalMode_decades: "Årtionden",
|
|
3132
|
+
// [Auto-translated] "Years"
|
|
3133
|
+
intervalMode_years: "År",
|
|
3134
|
+
// [Auto-translated] "Quarters"
|
|
3135
|
+
intervalMode_quarters: "Bostad",
|
|
3136
|
+
// [Auto-translated] "Months"
|
|
3137
|
+
intervalMode_months: "Månader",
|
|
3138
|
+
// [Auto-translated] "Days"
|
|
3139
|
+
intervalMode_days: "Dagar",
|
|
3140
|
+
// [Auto-translated] "Custom"
|
|
3141
|
+
intervalMode_custom: "Sed",
|
|
3142
|
+
// [Auto-translated] "Auto"
|
|
3143
|
+
intervalMode_auto: "Bil",
|
|
3144
|
+
// [Auto-translated] "Intervals:"
|
|
3145
|
+
intervalModeTitle: "Mellanrum:",
|
|
3146
|
+
// [Auto-translated] "Show individual values"
|
|
3147
|
+
noRunningTotals: "Visa individuella värden",
|
|
3148
|
+
// [Auto-translated] "Show running totals"
|
|
3149
|
+
runningTotals: "Visa löpande totaler",
|
|
3150
|
+
// [Auto-translated] "Compare periods"
|
|
3151
|
+
groupDateSeries: "Jämför perioder",
|
|
3152
|
+
// [Auto-translated] "View timeline"
|
|
3153
|
+
ungroupDateSeries: "Visa tidslinjen",
|
|
3154
|
+
// [Auto-translated] "None"
|
|
3155
|
+
noneAggregateText: "Ingen",
|
|
3156
|
+
// [Auto-translated] "Aggregate:"
|
|
3157
|
+
selectAggregateText: "Aggregat:",
|
|
3158
|
+
// [Auto-translated] "Year ends with"
|
|
3159
|
+
groupedYearsAxisTitle: "Året slutar med"
|
|
2696
3160
|
};
|
|
2697
3161
|
(0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "sv", strings: swedishStrings, nativeName: "Svenska" });
|
|
2698
3162
|
|
|
@@ -3232,9 +3696,10 @@ var CompositeColumnsBuilder = /** @class */ (function (_super) {
|
|
|
3232
3696
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
3233
3697
|
}
|
|
3234
3698
|
CompositeColumnsBuilder.prototype.getDisplayName = function (question, table) {
|
|
3699
|
+
var _a;
|
|
3235
3700
|
return table.useNamesAsTitles
|
|
3236
3701
|
? question.name
|
|
3237
|
-
: (question.title || "").trim() || question.name;
|
|
3702
|
+
: (((_a = question.locTitle) === null || _a === void 0 ? void 0 : _a.renderedHtml) || question.title || "").trim() || question.name;
|
|
3238
3703
|
};
|
|
3239
3704
|
CompositeColumnsBuilder.prototype.buildColumnsCore = function (question, table) {
|
|
3240
3705
|
var _this = this;
|
|
@@ -3337,9 +3802,10 @@ var BaseColumn = /** @class */ (function () {
|
|
|
3337
3802
|
configurable: true
|
|
3338
3803
|
});
|
|
3339
3804
|
BaseColumn.prototype.getDisplayName = function () {
|
|
3805
|
+
var _a;
|
|
3340
3806
|
return this.table.useNamesAsTitles
|
|
3341
3807
|
? this.question.name
|
|
3342
|
-
: (this.question.title || "").trim() || this.question.name;
|
|
3808
|
+
: (((_a = this.question.locTitle) === null || _a === void 0 ? void 0 : _a.renderedHtml) || this.question.title || "").trim() || this.question.name;
|
|
3343
3809
|
};
|
|
3344
3810
|
BaseColumn.prototype.getName = function () {
|
|
3345
3811
|
return this.question.name;
|
|
@@ -4297,13 +4763,7 @@ var Table = /** @class */ (function () {
|
|
|
4297
4763
|
if (!this._options) {
|
|
4298
4764
|
this._options = {};
|
|
4299
4765
|
}
|
|
4300
|
-
this.
|
|
4301
|
-
this.initTableData(data);
|
|
4302
|
-
_localizationManager__WEBPACK_IMPORTED_MODULE_4__.localization.currentLocale = this._survey.locale;
|
|
4303
|
-
this._columns = this.buildColumns(_survey);
|
|
4304
|
-
if (_columnsData.length !== 0) {
|
|
4305
|
-
this.updateColumnsFromData(this._columnsData);
|
|
4306
|
-
}
|
|
4766
|
+
this.initialize();
|
|
4307
4767
|
this.extensions = new _extensions_tableextensions__WEBPACK_IMPORTED_MODULE_5__.TableExtensions(this);
|
|
4308
4768
|
var f = survey_core__WEBPACK_IMPORTED_MODULE_1__.hasLicense;
|
|
4309
4769
|
this.haveCommercialLicense = (!!f && f(4)) ||
|
|
@@ -4313,6 +4773,16 @@ var Table = /** @class */ (function () {
|
|
|
4313
4773
|
? _options.haveCommercialLicense
|
|
4314
4774
|
: false));
|
|
4315
4775
|
}
|
|
4776
|
+
Table.prototype.initialize = function () {
|
|
4777
|
+
this.currentPageSize = this.options.pageSize || 5;
|
|
4778
|
+
this.currentPageNumber = 1;
|
|
4779
|
+
this._columns = this.buildColumns(this._survey);
|
|
4780
|
+
this.initTableData(this.data);
|
|
4781
|
+
_localizationManager__WEBPACK_IMPORTED_MODULE_4__.localization.currentLocale = this._survey.locale;
|
|
4782
|
+
if (this._columnsData.length !== 0) {
|
|
4783
|
+
this.updateColumnsFromData(this._columnsData);
|
|
4784
|
+
}
|
|
4785
|
+
};
|
|
4316
4786
|
Table.prototype.getTableData = function () {
|
|
4317
4787
|
return [].concat(this.tableData || []);
|
|
4318
4788
|
};
|
|
@@ -4487,6 +4957,7 @@ var Table = /** @class */ (function () {
|
|
|
4487
4957
|
set: function (newLocale) {
|
|
4488
4958
|
this._survey.locale = newLocale;
|
|
4489
4959
|
_localizationManager__WEBPACK_IMPORTED_MODULE_4__.localization.currentLocale = newLocale;
|
|
4960
|
+
this.columns.forEach(function (c) { return c.displayName = undefined; });
|
|
4490
4961
|
this.refresh(true);
|
|
4491
4962
|
this.onStateChanged.fire(this, this.state);
|
|
4492
4963
|
},
|
|
@@ -4540,15 +5011,18 @@ var Table = /** @class */ (function () {
|
|
|
4540
5011
|
set: function (newState) {
|
|
4541
5012
|
if (!newState)
|
|
4542
5013
|
return;
|
|
5014
|
+
if (typeof newState.elements !== "undefined") {
|
|
5015
|
+
this.updateColumnsFromData(newState.elements);
|
|
5016
|
+
}
|
|
4543
5017
|
if (typeof newState.locale !== "undefined") {
|
|
4544
5018
|
_localizationManager__WEBPACK_IMPORTED_MODULE_4__.localization.currentLocale = newState.locale;
|
|
4545
5019
|
this._survey.locale = newState.locale;
|
|
4546
5020
|
this.initTableData(this.data);
|
|
4547
5021
|
}
|
|
4548
|
-
if (typeof newState.
|
|
4549
|
-
this.updateColumnsFromData(newState.elements);
|
|
4550
|
-
if (typeof newState.pageSize !== "undefined")
|
|
5022
|
+
if (typeof newState.pageSize !== "undefined") {
|
|
4551
5023
|
this.currentPageSize = newState.pageSize;
|
|
5024
|
+
}
|
|
5025
|
+
this.refresh(true);
|
|
4552
5026
|
},
|
|
4553
5027
|
enumerable: false,
|
|
4554
5028
|
configurable: true
|
|
@@ -4557,13 +5031,9 @@ var Table = /** @class */ (function () {
|
|
|
4557
5031
|
* Resets table state.
|
|
4558
5032
|
*/
|
|
4559
5033
|
Table.prototype.resetState = function () {
|
|
4560
|
-
this.
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
});
|
|
4564
|
-
this.locale = survey_core__WEBPACK_IMPORTED_MODULE_1__.surveyLocalization.defaultLocale;
|
|
4565
|
-
this.currentPageSize = 5;
|
|
4566
|
-
this.initTableData(this.data);
|
|
5034
|
+
this._survey.locale = survey_core__WEBPACK_IMPORTED_MODULE_1__.surveyLocalization.defaultLocale;
|
|
5035
|
+
this.initialize();
|
|
5036
|
+
this.refresh(true);
|
|
4567
5037
|
this.onStateChanged.fire(this, this.state);
|
|
4568
5038
|
};
|
|
4569
5039
|
Table.prototype.updateColumnsFromData = function (columnsData) {
|
|
@@ -4990,7 +5460,6 @@ var Tabulator = /** @class */ (function (_super) {
|
|
|
4990
5460
|
Tabulator.prototype.getColumns = function () {
|
|
4991
5461
|
var _this = this;
|
|
4992
5462
|
var columns = this.columns.map(function (column, index) {
|
|
4993
|
-
var question = _this._survey.getQuestionByName(column.name);
|
|
4994
5463
|
var formatter = "plaintext";
|
|
4995
5464
|
if (column.dataType == _config__WEBPACK_IMPORTED_MODULE_2__.ColumnDataType.FileLink) {
|
|
4996
5465
|
formatter = "html";
|
|
@@ -5000,9 +5469,7 @@ var Tabulator = /** @class */ (function (_super) {
|
|
|
5000
5469
|
}
|
|
5001
5470
|
return {
|
|
5002
5471
|
field: column.name,
|
|
5003
|
-
title:
|
|
5004
|
-
(_this._options.useNamesAsTitles ? question.name : question.title)) ||
|
|
5005
|
-
column.displayName,
|
|
5472
|
+
title: column.displayName || column.name,
|
|
5006
5473
|
width: column.width,
|
|
5007
5474
|
widthShrink: !column.width ? 1 : 0,
|
|
5008
5475
|
visible: _this.isColumnVisible(column),
|
|
@@ -5011,6 +5478,7 @@ var Tabulator = /** @class */ (function (_super) {
|
|
|
5011
5478
|
download: _this.options.downloadHiddenColumns ? true : undefined,
|
|
5012
5479
|
formatter: formatter,
|
|
5013
5480
|
headerTooltip: true,
|
|
5481
|
+
headerWordWrap: true,
|
|
5014
5482
|
accessorDownload: _this.accessorDownload,
|
|
5015
5483
|
titleFormatter: function (cell, formatterParams, onRendered) {
|
|
5016
5484
|
return _this.getTitleFormatter(cell, formatterParams, onRendered, column.name);
|