survey-analytics 1.9.69 → 1.9.70
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/package.json +2 -2
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +69 -0
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.d.ts +69 -0
- package/survey.analytics.datatables.js +102 -16
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +139 -53
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +3 -3
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.d.ts +69 -0
- package/survey.analytics.tabulator.js +104 -18
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
|
@@ -405,6 +405,74 @@ declare module "localization/dutch" {
|
|
|
405
405
|
topNValueText20: string;
|
|
406
406
|
};
|
|
407
407
|
}
|
|
408
|
+
declare module "localization/arabic" {
|
|
409
|
+
export var arabicStrings: {
|
|
410
|
+
groupButton: string;
|
|
411
|
+
ungroupButton: string;
|
|
412
|
+
selectButton: string;
|
|
413
|
+
hideColumn: string;
|
|
414
|
+
showColumn: string;
|
|
415
|
+
makePrivateColumn: string;
|
|
416
|
+
makePublicColumn: string;
|
|
417
|
+
moveToDetail: string;
|
|
418
|
+
showAsColumn: string;
|
|
419
|
+
filterPlaceholder: string;
|
|
420
|
+
removeRows: string;
|
|
421
|
+
showLabel: string;
|
|
422
|
+
entriesLabel: string;
|
|
423
|
+
visualizer_text: string;
|
|
424
|
+
visualizer_wordcloud: string;
|
|
425
|
+
visualizer_histogram: string;
|
|
426
|
+
visualizer_number: string;
|
|
427
|
+
visualizer_choices: string;
|
|
428
|
+
visualizer_selectBase: string;
|
|
429
|
+
chartType_bar: string;
|
|
430
|
+
chartType_vbar: string;
|
|
431
|
+
chartType_stackedbar: string;
|
|
432
|
+
chartType_doughnut: string;
|
|
433
|
+
chartType_pie: string;
|
|
434
|
+
chartType_scatter: string;
|
|
435
|
+
chartType_gauge: string;
|
|
436
|
+
chartType_bullet: string;
|
|
437
|
+
hideButton: string;
|
|
438
|
+
makePrivateButton: string;
|
|
439
|
+
makePublicButton: string;
|
|
440
|
+
showButton: string;
|
|
441
|
+
filter: string;
|
|
442
|
+
resetFilter: string;
|
|
443
|
+
changeLocale: string;
|
|
444
|
+
en: string;
|
|
445
|
+
fr: string;
|
|
446
|
+
ru: string;
|
|
447
|
+
de: string;
|
|
448
|
+
clearButton: string;
|
|
449
|
+
addElement: string;
|
|
450
|
+
defaultOrder: string;
|
|
451
|
+
ascOrder: string;
|
|
452
|
+
descOrder: string;
|
|
453
|
+
showMinorColumns: string;
|
|
454
|
+
otherCommentTitle: string;
|
|
455
|
+
showPercentages: string;
|
|
456
|
+
hidePercentages: string;
|
|
457
|
+
pdfDownloadCaption: string;
|
|
458
|
+
xlsxDownloadCaption: string;
|
|
459
|
+
csvDownloadCaption: string;
|
|
460
|
+
saveDiagramAsPNG: string;
|
|
461
|
+
hideEmptyAnswers: string;
|
|
462
|
+
showEmptyAnswers: string;
|
|
463
|
+
hideMissingAnswers: string;
|
|
464
|
+
showMissingAnswers: string;
|
|
465
|
+
missingAnswersLabel: string;
|
|
466
|
+
noVisualizerForQuestion: string;
|
|
467
|
+
noResults: string;
|
|
468
|
+
showPerValues: string;
|
|
469
|
+
showPerColumns: string;
|
|
470
|
+
answer: string;
|
|
471
|
+
correctAnswer: string;
|
|
472
|
+
percent: string;
|
|
473
|
+
responses: string;
|
|
474
|
+
};
|
|
475
|
+
}
|
|
408
476
|
declare module "tables/config" {
|
|
409
477
|
import { Question } from "survey-core";
|
|
410
478
|
import { Table } from "tables/table";
|
|
@@ -887,6 +955,7 @@ declare module "entries/tabulator" {
|
|
|
887
955
|
import "localization/portuguese";
|
|
888
956
|
import "localization/russian";
|
|
889
957
|
import "localization/dutch";
|
|
958
|
+
import "localization/arabic";
|
|
890
959
|
import "tables/extensions/rowextensions";
|
|
891
960
|
import "tables/extensions/headerextensions";
|
|
892
961
|
import "tables/extensions/columnextensions";
|