survey-analytics 1.9.123 → 1.9.125

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 CHANGED
@@ -20,7 +20,7 @@
20
20
  "lint": "eslint ./src --quiet",
21
21
  "pre-push-check": "npm run lint && npm run test"
22
22
  },
23
- "version": "1.9.123",
23
+ "version": "1.9.125",
24
24
  "name": "survey-analytics",
25
25
  "description": "SurveyJS analytics Library.",
26
26
  "main": "survey.analytics.js",
@@ -58,7 +58,7 @@
58
58
  "jquery": "3.5.0",
59
59
  "muuri": "^0.8.0",
60
60
  "plotly.js-dist-min": "^2.11.1",
61
- "survey-core": "1.9.123",
61
+ "survey-core": "1.9.125",
62
62
  "tabulator-tables": "4.8.4",
63
63
  "wordcloud": "^1.2.2"
64
64
  },
@@ -14,7 +14,12 @@ export declare var germanStrings: {
14
14
  entriesLabel: string;
15
15
  visualizer_text: string;
16
16
  visualizer_wordcloud: string;
17
+ visualizer_histogram: string;
18
+ visualizer_number: string;
19
+ visualizer_choices: string;
20
+ visualizer_selectBase: string;
17
21
  chartType_bar: string;
22
+ chartType_vbar: string;
18
23
  chartType_stackedbar: string;
19
24
  chartType_doughnut: string;
20
25
  chartType_pie: string;
@@ -47,6 +52,15 @@ export declare var germanStrings: {
47
52
  topNValueText5: string;
48
53
  topNValueText10: string;
49
54
  topNValueText20: string;
55
+ hideMissingAnswers: string;
56
+ showMissingAnswers: string;
57
+ missingAnswersLabel: string;
50
58
  noVisualizerForQuestion: string;
51
59
  noResults: string;
60
+ showPerValues: string;
61
+ showPerColumns: string;
62
+ answer: string;
63
+ correctAnswer: string;
64
+ percent: string;
65
+ responses: string;
52
66
  };
@@ -14,7 +14,12 @@ export declare var germanStrings: {
14
14
  entriesLabel: string;
15
15
  visualizer_text: string;
16
16
  visualizer_wordcloud: string;
17
+ visualizer_histogram: string;
18
+ visualizer_number: string;
19
+ visualizer_choices: string;
20
+ visualizer_selectBase: string;
17
21
  chartType_bar: string;
22
+ chartType_vbar: string;
18
23
  chartType_stackedbar: string;
19
24
  chartType_doughnut: string;
20
25
  chartType_pie: string;
@@ -47,6 +52,15 @@ export declare var germanStrings: {
47
52
  topNValueText5: string;
48
53
  topNValueText10: string;
49
54
  topNValueText20: string;
55
+ hideMissingAnswers: string;
56
+ showMissingAnswers: string;
57
+ missingAnswersLabel: string;
50
58
  noVisualizerForQuestion: string;
51
59
  noResults: string;
60
+ showPerValues: string;
61
+ showPerColumns: string;
62
+ answer: string;
63
+ correctAnswer: string;
64
+ percent: string;
65
+ responses: string;
52
66
  };
@@ -14,7 +14,12 @@ export declare var germanStrings: {
14
14
  entriesLabel: string;
15
15
  visualizer_text: string;
16
16
  visualizer_wordcloud: string;
17
+ visualizer_histogram: string;
18
+ visualizer_number: string;
19
+ visualizer_choices: string;
20
+ visualizer_selectBase: string;
17
21
  chartType_bar: string;
22
+ chartType_vbar: string;
18
23
  chartType_stackedbar: string;
19
24
  chartType_doughnut: string;
20
25
  chartType_pie: string;
@@ -47,6 +52,15 @@ export declare var germanStrings: {
47
52
  topNValueText5: string;
48
53
  topNValueText10: string;
49
54
  topNValueText20: string;
55
+ hideMissingAnswers: string;
56
+ showMissingAnswers: string;
57
+ missingAnswersLabel: string;
50
58
  noVisualizerForQuestion: string;
51
59
  noResults: string;
60
+ showPerValues: string;
61
+ showPerColumns: string;
62
+ answer: string;
63
+ correctAnswer: string;
64
+ percent: string;
65
+ responses: string;
52
66
  };
@@ -12,6 +12,7 @@ export interface IAnswersData {
12
12
  texts: Array<Array<any>>;
13
13
  seriesLabels: Array<string>;
14
14
  }
15
+ export declare function hideEmptyAnswersInData(answersData: IAnswersData): IAnswersData;
15
16
  export declare class SelectBase extends VisualizerBase implements IVisualizerWithSelection {
16
17
  protected selectedItem: ItemValue;
17
18
  private choicesOrderSelector;
@@ -93,7 +94,6 @@ export declare class SelectBase extends VisualizerBase implements IVisualizerWit
93
94
  getValues(): Array<any>;
94
95
  getLabels(): Array<string>;
95
96
  getPercentages(): Array<Array<number>>;
96
- protected hideEmptyAnswersInData(answersData: IAnswersData): IAnswersData;
97
97
  protected answersDataReady(answersData: IAnswersData): any;
98
98
  /**
99
99
  * Fires when answer data has been combined before they passed to draw graph.
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.9.123
3
- * Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
2
+ * surveyjs - SurveyJS Dashboard library v1.9.125
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
  */
6
6
  .sa-visualizer__header {
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.9.123
3
- * Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
2
+ * surveyjs - SurveyJS Dashboard library v1.9.125
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
  */
6
6
  .sa-table {