survey-analytics 1.9.52 → 1.9.54

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/README.md CHANGED
@@ -1,5 +1,4 @@
1
- # SurveyJS Analytics
2
-
1
+ # SurveyJS Dashboard
3
2
  [![Build Status](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_apis/build/status/SurveyJS%20Library?branchName=master)](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=7&branchName=master)
4
3
  <a href="https://github.com/DevExpress/testcafe">
5
4
  <img alt="Tested with TestCafe" src="https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg">
@@ -11,24 +10,25 @@
11
10
  <img alt="Closed issues" title="Closed issues" src="https://img.shields.io/github/issues-closed/surveyjs/survey-analytics.svg">
12
11
  </a>
13
12
 
14
- SurveyJS Analytics visualizes survey results and allows users to analyze them.
13
+ The SurveyJS Dashboard library lets you build survey data dashboards and simplify survey data analysis with interactive and customizable charts and tables. Visualize your insights and analyze survey results in one view.
15
14
 
16
15
  ![SurveyJS Analytics](docs/images/survey-analytics-overview.png)
17
16
 
18
17
  ## Features
19
18
 
20
- - Supported chart types:
21
- - Bar
22
- - Pie
23
- - Line
24
- - Gauge
25
- - Bullet
26
- - Scatter
19
+ - Supported chart and graph types:
20
+ - Bar chart
21
+ - Donut graph
22
+ - Pie chart
23
+ - Line chart (also known as line graph or curve chart)
24
+ - Gauge chart
25
+ - Bullet graph
26
+ - Scatter plot
27
27
  - Word cloud
28
- - Interactive filtering
28
+ - Interactive value filtering ordering
29
29
  - Customizable colors
30
30
  - Dynamic layout
31
- - Chart reordering via drag and drop
31
+ - Drag-and-drop chart reordering
32
32
 
33
33
  ## Get Started
34
34
 
@@ -84,4 +84,4 @@ Make sure that you have Node.js v6.0.0 or later and npm v2.7.0 or later installe
84
84
 
85
85
  ## Licensing
86
86
 
87
- SurveyJS Analytics is **not available for free commercial usage**. If you want to integrate it into your application, you must purchase a [commercial license](/Licenses#SurveyCreator).
87
+ SurveyJS Analytics is **not available for free commercial usage**. If you want to integrate it into your application, you must purchase a [commercial license(s)](https://surveyjs.io/licensing) for software developer(s) who will be working with the SurveyJS product's APIs and implementing their integration.
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "lint": "eslint ./src --quiet",
20
20
  "pre-push-check": "npm run lint && npm run test"
21
21
  },
22
- "version": "1.9.52",
22
+ "version": "1.9.54",
23
23
  "name": "survey-analytics",
24
24
  "description": "SurveyJS analytics Library.",
25
25
  "main": "survey.analytics.js",
@@ -71,7 +71,7 @@
71
71
  "jquery": "3.5.0",
72
72
  "muuri": "^0.8.0",
73
73
  "plotly.js-dist-min": "^2.11.1",
74
- "survey-core": "1.9.52",
74
+ "survey-core": "1.9.54",
75
75
  "tabulator-tables": "4.8.4",
76
76
  "wordcloud": "^1.2.2"
77
77
  },
@@ -108,13 +108,13 @@
108
108
  "testcafe": "^1.18.4",
109
109
  "testcafe-reporter-dashboard": "^0.2.5",
110
110
  "ts-jest": "^26.5.6",
111
- "ts-loader": "^7.0.5",
112
- "typescript": "^4.6.3",
111
+ "ts-loader": "^8.0.0",
112
+ "typescript": "^4.8.0",
113
113
  "url-loader": "0.6.2",
114
114
  "val-loader": "0.5.0",
115
115
  "webpack": "^4.46.0",
116
116
  "webpack-cli": "^3.3.11",
117
- "webpack-dev-server": "^4.10.0",
117
+ "webpack-dev-server": "~3",
118
118
  "webpack-svgstore-plugin": "^4.1.0"
119
119
  },
120
120
  "peerDependencies": {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.52
2
+ * surveyjs - SurveyJS Analytics library v1.9.54
3
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
  */
@@ -998,6 +998,7 @@ declare module "histogram" {
998
998
  private _cachedValues;
999
999
  private _continiousData;
1000
1000
  private _cachedIntervals;
1001
+ private _intervalPrecision;
1001
1002
  protected chartTypes: string[];
1002
1003
  chartType: string;
1003
1004
  static IntervalsCount: number;
@@ -1008,6 +1009,7 @@ declare module "histogram" {
1008
1009
  private reset;
1009
1010
  getContiniousValue(value: any): number;
1010
1011
  getString(value: number): string;
1012
+ private toPrecision;
1011
1013
  getSelectedItemByText(itemText: string): ItemValue;
1012
1014
  /**
1013
1015
  * Updates visualizer data.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.52
2
+ * surveyjs - SurveyJS Analytics library v1.9.54
3
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.52
2
+ * surveyjs - SurveyJS Analytics library v1.9.54
3
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.52
2
+ * surveyjs - SurveyJS Analytics library v1.9.54
3
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.52
2
+ * surveyjs - SurveyJS Analytics library v1.9.54
3
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
  */