survey-analytics 2.3.11 → 2.3.13
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 +18 -18
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +1 -1
- package/fesm/survey.analytics.core.mjs +1 -1
- package/fesm/survey.analytics.mjs +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.tabulator.mjs +32 -7
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-analytics-tabulator.types/tables/table.d.ts +18 -0
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +2 -0
- package/survey.analytics.core.css +1 -1
- package/survey.analytics.core.js +18 -18
- 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.js +18 -18
- 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.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +50 -25
- 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
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"pre-push-check": "npm run lint && npm run test",
|
|
21
21
|
"pwinst": "playwright install chromium"
|
|
22
22
|
},
|
|
23
|
-
"version": "2.3.
|
|
23
|
+
"version": "2.3.13",
|
|
24
24
|
"name": "survey-analytics",
|
|
25
25
|
"description": "SurveyJS analytics Library.",
|
|
26
26
|
"main": "survey.analytics.js",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"@types/mongodb": "^4.0.6",
|
|
97
97
|
"@types/plotly.js-dist-min": "^2.3.0",
|
|
98
98
|
"@types/tabulator-tables": "^6.2.3",
|
|
99
|
-
"survey-core": "2.3.
|
|
99
|
+
"survey-core": "2.3.13"
|
|
100
100
|
},
|
|
101
101
|
"husky": {
|
|
102
102
|
"hooks": {
|
|
@@ -30,7 +30,22 @@ export interface ITableOptions {
|
|
|
30
30
|
question: Question;
|
|
31
31
|
displayValue: any;
|
|
32
32
|
}) => void;
|
|
33
|
+
/**
|
|
34
|
+
* Specifies the number of data items to load and display per page. Applies only if `paginationEnabled` is `true`.
|
|
35
|
+
*
|
|
36
|
+
* Default value: 10
|
|
37
|
+
* @see paginationEnabled
|
|
38
|
+
*/
|
|
33
39
|
pageSize?: number;
|
|
40
|
+
/**
|
|
41
|
+
* Specifies whether the dataset is split into pages.
|
|
42
|
+
*
|
|
43
|
+
* Default value: `true`
|
|
44
|
+
*
|
|
45
|
+
* > Pagination cannot be disabled if the dataset is loaded from a server (that is, if the second parameter passed to the `Tabulator` constructor is a function).
|
|
46
|
+
* @see pageSize
|
|
47
|
+
*/
|
|
48
|
+
paginationEnabled?: boolean;
|
|
34
49
|
}
|
|
35
50
|
export type TabulatorFilter = {
|
|
36
51
|
field: string;
|
|
@@ -140,6 +155,9 @@ export declare abstract class Table {
|
|
|
140
155
|
*/
|
|
141
156
|
set locale(newLocale: string);
|
|
142
157
|
getLocales(): Array<string>;
|
|
158
|
+
protected supportSoftRefresh(): boolean;
|
|
159
|
+
protected softRefresh(): void;
|
|
160
|
+
protected hardRefresh(): void;
|
|
143
161
|
refresh(hard?: boolean): void;
|
|
144
162
|
destroy(): void;
|
|
145
163
|
get isRendered(): boolean;
|
|
@@ -57,6 +57,8 @@ export declare class Tabulator extends Table {
|
|
|
57
57
|
tabulatorTables: TabulatorFull;
|
|
58
58
|
private tableContainer;
|
|
59
59
|
private currentDownloadType;
|
|
60
|
+
protected supportSoftRefresh(): boolean;
|
|
61
|
+
protected softRefresh(): void;
|
|
60
62
|
render(targetNode: HTMLElement | string): void;
|
|
61
63
|
private createDownloadsBar;
|
|
62
64
|
destroy: () => void;
|
package/survey.analytics.core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.13
|
|
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
|
*/
|
|
@@ -8293,7 +8293,7 @@ var germanStrings = {
|
|
|
8293
8293
|
// "Remove rows"
|
|
8294
8294
|
removeRows: "Zeilen entfernen",
|
|
8295
8295
|
// "Show"
|
|
8296
|
-
showLabel: "
|
|
8296
|
+
showLabel: "Anzeigen",
|
|
8297
8297
|
// "entries"
|
|
8298
8298
|
entriesLabel: "Einträge",
|
|
8299
8299
|
// "Texts in table"
|
|
@@ -8305,13 +8305,13 @@ var germanStrings = {
|
|
|
8305
8305
|
// "Average"
|
|
8306
8306
|
visualizer_number: "Durchschnitt",
|
|
8307
8307
|
// "Table"
|
|
8308
|
-
visualizer_choices: "
|
|
8308
|
+
visualizer_choices: "Tabelle",
|
|
8309
8309
|
// "Chart"
|
|
8310
8310
|
visualizer_selectBase: "Diagrammtyp",
|
|
8311
8311
|
// [Auto-translated] "Chart"
|
|
8312
8312
|
visualizer_matrix: "Diagramm",
|
|
8313
|
-
//
|
|
8314
|
-
chartType_bar: "
|
|
8313
|
+
// "Bar"
|
|
8314
|
+
chartType_bar: "Balkendiagramm",
|
|
8315
8315
|
// "Vertical Bar"
|
|
8316
8316
|
chartType_vbar: "Balkendiagramm vertikal",
|
|
8317
8317
|
// "Stacked Bar"
|
|
@@ -8371,7 +8371,7 @@ var germanStrings = {
|
|
|
8371
8371
|
// "CSV"
|
|
8372
8372
|
csvDownloadCaption: "CSV",
|
|
8373
8373
|
// "Download plot as a PNG file"
|
|
8374
|
-
saveDiagramAsPNG: "Diagramm als
|
|
8374
|
+
saveDiagramAsPNG: "Diagramm als PNG herunterladen",
|
|
8375
8375
|
// "Hide empty answers"
|
|
8376
8376
|
hideEmptyAnswers: "Leere Antworten ausblenden",
|
|
8377
8377
|
// "Show empty answers"
|
|
@@ -8389,7 +8389,7 @@ var germanStrings = {
|
|
|
8389
8389
|
// "Show missing answers"
|
|
8390
8390
|
showMissingAnswers: "Fehlende Antworten anzeigen",
|
|
8391
8391
|
// "Missing answers"
|
|
8392
|
-
missingAnswersLabel: "
|
|
8392
|
+
missingAnswersLabel: "Fehlende Antworten",
|
|
8393
8393
|
// "This question type is not visualized yet"
|
|
8394
8394
|
noVisualizerForQuestion: "Für diesen Fragetyp gibt es noch keine Visualisierung.",
|
|
8395
8395
|
// "There are no results yet"
|
|
@@ -8410,20 +8410,20 @@ var germanStrings = {
|
|
|
8410
8410
|
statistics_chart: "Diagramm",
|
|
8411
8411
|
// "Responses"
|
|
8412
8412
|
responses: "Antworten",
|
|
8413
|
-
//
|
|
8414
|
-
visualizer_nps: "NPS
|
|
8413
|
+
// "NPS"
|
|
8414
|
+
visualizer_nps: "NPS",
|
|
8415
8415
|
// [Auto-translated] "Chart"
|
|
8416
8416
|
visualizer_boolean: "Diagramm",
|
|
8417
|
-
//
|
|
8418
|
-
visualizer_options: "
|
|
8419
|
-
//
|
|
8420
|
-
npsScore: "NPS
|
|
8421
|
-
//
|
|
8417
|
+
// "Table"
|
|
8418
|
+
visualizer_options: "Tabelle",
|
|
8419
|
+
// "NPS"
|
|
8420
|
+
npsScore: "NPS",
|
|
8421
|
+
// "Promoters"
|
|
8422
8422
|
npsPromoters: "Promotoren",
|
|
8423
|
-
//
|
|
8424
|
-
npsPassives: "Passive
|
|
8425
|
-
//
|
|
8426
|
-
npsDetractors: "
|
|
8423
|
+
// "Passives"
|
|
8424
|
+
npsPassives: "Passive",
|
|
8425
|
+
// "Detractors"
|
|
8426
|
+
npsDetractors: "Detraktoren",
|
|
8427
8427
|
// [Auto-translated] "Category (X Axis):"
|
|
8428
8428
|
axisXSelectorTitle: "Kategorie (X-Achse):",
|
|
8429
8429
|
// [Auto-translated] "Legend (Series):"
|