survey-analytics 1.9.1 → 1.9.5

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
@@ -15,7 +15,7 @@
15
15
  "lint": "eslint ./src --quiet",
16
16
  "pre-push-check": "npm run lint && npm run test"
17
17
  },
18
- "version": "1.9.1",
18
+ "version": "1.9.5",
19
19
  "name": "survey-analytics",
20
20
  "description": "SurveyJS analytics Library.",
21
21
  "main": "survey.analytics.js",
@@ -111,7 +111,8 @@
111
111
  "webpack": "^4.43.0",
112
112
  "webpack-cli": "^3.3.11",
113
113
  "webpack-dev-server": "^3.11.0",
114
- "webpack-svgstore-plugin": "^4.1.0"
114
+ "webpack-svgstore-plugin": "^4.1.0",
115
+ "colors": "1.4.0"
115
116
  },
116
117
  "husky": {
117
118
  "hooks": {
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.1
3
- * Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
2
+ * surveyjs - SurveyJS Analytics library v1.9.5
3
+ * Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
6
6
  .sa-visualizer__content {
@@ -1,5 +1,5 @@
1
- /*Type definitions for SurveyJS Analytics library v1.9.1
2
- Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
1
+ /*Type definitions for SurveyJS Analytics library v1.9.5
2
+ Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
3
3
  Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
4
4
  */
5
5
  // Dependencies for this module:
@@ -185,7 +185,7 @@ export class VisualizerBase implements IDataInfo {
185
185
  /**
186
186
  * Name of the data field of data object from the data array.
187
187
  */
188
- get dataName(): string;
188
+ get dataName(): string | Array<string>;
189
189
  /**
190
190
  * Indicates whether visualizer has footer. Usually it is true then a question has comment or choices question has other item.
191
191
  */
@@ -522,7 +522,7 @@ export class VisualizationMatrixDynamic extends VisualizationPanelDynamic {
522
522
  [index: string]: any;
523
523
  }>, options?: Object);
524
524
  get name(): string;
525
- getQuestions(): Question[];
525
+ getQuestions(): any;
526
526
  }
527
527
 
528
528
  export class VisualizationMatrixDropdown extends VisualizerBase {
@@ -536,7 +536,7 @@ export class VisualizationMatrixDropdown extends VisualizerBase {
536
536
  updateData(data: Array<{
537
537
  [index: string]: any;
538
538
  }>): void;
539
- getQuestions(): import("survey-core").Question[];
539
+ getQuestions(): any;
540
540
  destroyContent(container: HTMLElement): void;
541
541
  renderContent(container: HTMLElement): void;
542
542
  destroy(): void;
@@ -1120,7 +1120,7 @@ export class MatrixDropdownGrouped extends SelectBase {
1120
1120
  [index: string]: any;
1121
1121
  }>, options?: Object, name?: string);
1122
1122
  protected get matrixQuestion(): QuestionMatrixDropdownModel;
1123
- get dataName(): string;
1123
+ get dataName(): string | Array<string>;
1124
1124
  getSeriesValues(): Array<string>;
1125
1125
  getSeriesLabels(): Array<string>;
1126
1126
  valuesSource(): Array<ItemValue>;
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.1
3
- * Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
2
+ * surveyjs - SurveyJS Analytics library v1.9.5
3
+ * Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
6
6
  .sa-table {