survey-analytics 1.9.59 → 1.9.61

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
@@ -12,7 +12,7 @@
12
12
 
13
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.
14
14
 
15
- ![SurveyJS Analytics](docs/images/survey-analytics-overview.png)
15
+ ![SurveyJS Dashboard](docs/images/survey-analytics-overview.png)
16
16
 
17
17
  ## Features
18
18
 
@@ -44,7 +44,7 @@ The SurveyJS Dashboard library lets you build survey data dashboards and simplif
44
44
  - [Live Examples](https://surveyjs.io/Examples/Analytics)
45
45
  - [What's New](https://surveyjs.io/WhatsNew)
46
46
 
47
- ## Build SurveyJS Analytics from Sources
47
+ ## Build SurveyJS Dashboard from Sources
48
48
 
49
49
  1. **Clone the repo**
50
50
 
@@ -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(s)](https://surveyjs.io/licensing) for software developer(s) who will be working with the SurveyJS product's APIs and implementing their integration.
87
+ SurveyJS Dashboard 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.59",
22
+ "version": "1.9.61",
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.59",
74
+ "survey-core": "1.9.61",
75
75
  "tabulator-tables": "4.8.4",
76
76
  "wordcloud": "^1.2.2"
77
77
  },
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.59
2
+ * surveyjs - SurveyJS Dashboard library v1.9.61
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
  */
@@ -1193,7 +1193,7 @@ declare module "visualizationPanel" {
1193
1193
  *
1194
1194
  * Default value: `true`
1195
1195
  *
1196
- * [View the "Disable the Layout Engine" example](https://surveyjs.io/Examples/Analytics?id=custom-layout (linkStyle))
1196
+ * [View Demo](https://surveyjs.io/Examples/Analytics?id=custom-layout (linkStyle))
1197
1197
  *
1198
1198
  * @see layoutEngine
1199
1199
  */
@@ -1201,7 +1201,7 @@ declare module "visualizationPanel" {
1201
1201
  /**
1202
1202
  * A layout engine used to arrange charts on the Visualization Panel.
1203
1203
  *
1204
- * You can use this property to integrate a third-party layout engine with SurveyJS Analytics.
1204
+ * You can use this property to integrate a third-party layout engine with SurveyJS Dashboard.
1205
1205
  *
1206
1206
  * @see allowDynamicLayout
1207
1207
  */
@@ -1257,7 +1257,7 @@ declare module "visualizationPanel" {
1257
1257
  *
1258
1258
  * Default value: `false`
1259
1259
  *
1260
- * **IMPORTANT**: You can enable this property only if you have a SurveyJS Analytics commercial license. It is illegal to enable this property without a license.
1260
+ * > You can enable this property only if you have a SurveyJS Dashboard commercial license. It is illegal to enable this property without a license.
1261
1261
  */
1262
1262
  haveCommercialLicense?: boolean;
1263
1263
  /**
@@ -1548,7 +1548,7 @@ declare module "visualizationMatrixDynamic" {
1548
1548
  [index: string]: any;
1549
1549
  }>, options?: Object);
1550
1550
  get name(): string;
1551
- getQuestions(): any;
1551
+ getQuestions(): Question[];
1552
1552
  }
1553
1553
  }
1554
1554
  declare module "visualizationMatrixDropdown" {
@@ -1568,7 +1568,7 @@ declare module "visualizationMatrixDropdown" {
1568
1568
  [index: string]: any;
1569
1569
  }>): void;
1570
1570
  protected onDataChanged(): void;
1571
- getQuestions(): any;
1571
+ getQuestions(): any[];
1572
1572
  destroyContent(container: HTMLElement): void;
1573
1573
  renderContent(container: HTMLElement): void;
1574
1574
  destroy(): void;
@@ -1753,6 +1753,9 @@ declare module "wordcloud/stopwords/norwegian" {
1753
1753
  declare module "wordcloud/stopwords/dutch" {
1754
1754
  export var stopWords: string[];
1755
1755
  }
1756
+ declare module "wordcloud/stopwords/spanish" {
1757
+ export var stopWords: string[];
1758
+ }
1756
1759
  declare module "wordcloud/stopwords/index" {
1757
1760
  export var textHelper: {
1758
1761
  getStopWords: (locale?: string) => string[];
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.59
2
+ * surveyjs - SurveyJS Dashboard library v1.9.61
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.59
2
+ * surveyjs - SurveyJS Dashboard library v1.9.61
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.59
2
+ * surveyjs - SurveyJS Dashboard library v1.9.61
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.59
2
+ * surveyjs - SurveyJS Dashboard library v1.9.61
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
  */