survey-analytics 1.9.60 → 1.9.62
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 +3 -3
- package/package.json +2 -2
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +5 -5
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +1 -1
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +1 -1
- package/survey.analytics.js +3 -3
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +2 -2
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
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
|
-

|
|
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
|
|
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
|
|
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.
|
|
22
|
+
"version": "1.9.62",
|
|
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.
|
|
74
|
+
"survey-core": "1.9.62",
|
|
75
75
|
"tabulator-tables": "4.8.4",
|
|
76
76
|
"wordcloud": "^1.2.2"
|
|
77
77
|
},
|
package/survey.analytics.css
CHANGED
package/survey.analytics.d.ts
CHANGED
|
@@ -1193,7 +1193,7 @@ declare module "visualizationPanel" {
|
|
|
1193
1193
|
*
|
|
1194
1194
|
* Default value: `true`
|
|
1195
1195
|
*
|
|
1196
|
-
* [View
|
|
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
|
|
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
|
-
*
|
|
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():
|
|
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;
|