survey-analytics 1.9.92 → 1.9.93
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 +3 -3
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +14 -0
- package/survey.analytics.css +1 -1
- 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 +37 -2
- 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/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.
|
|
23
|
+
"version": "1.9.93",
|
|
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.
|
|
61
|
+
"survey-core": "1.9.93",
|
|
62
62
|
"tabulator-tables": "4.8.4",
|
|
63
63
|
"wordcloud": "^1.2.2"
|
|
64
64
|
},
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"github-api": "^3.4.0",
|
|
80
80
|
"html-loader": "^0.4.4",
|
|
81
81
|
"http-server": "^0.12.3",
|
|
82
|
-
"husky": "^
|
|
82
|
+
"husky": "^8.0.3",
|
|
83
83
|
"jest": "^26.6.3",
|
|
84
84
|
"jest-canvas-mock": "^2.3.1",
|
|
85
85
|
"live-server": "^1.2.1",
|
|
@@ -37,5 +37,19 @@ export declare class AlternativeVisualizersWrapper extends VisualizerBase implem
|
|
|
37
37
|
get selection(): any;
|
|
38
38
|
protected renderContent(container: HTMLElement): void;
|
|
39
39
|
protected setBackgroundColorCore(color: string): void;
|
|
40
|
+
/**
|
|
41
|
+
* Returns an object with properties that describe a current visualizer state. The properties are different for each individual visualizer.
|
|
42
|
+
*
|
|
43
|
+
* > This method is overriden in descendant classes.
|
|
44
|
+
* @see setState
|
|
45
|
+
*/
|
|
46
|
+
getState(): any;
|
|
47
|
+
/**
|
|
48
|
+
* Sets the visualizer's state.
|
|
49
|
+
*
|
|
50
|
+
* > This method is overriden in descendant classes.
|
|
51
|
+
* @see getState
|
|
52
|
+
*/
|
|
53
|
+
setState(state: any): void;
|
|
40
54
|
destroy(): void;
|
|
41
55
|
}
|
package/survey.analytics.css
CHANGED