survey-analytics 1.12.12 → 1.12.13
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 +2 -2
- 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.LICENSE.txt +1 -1
- package/survey.analytics.js +5 -3
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- 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.LICENSE.txt +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.12.
|
|
23
|
+
"version": "1.12.13",
|
|
24
24
|
"name": "survey-analytics",
|
|
25
25
|
"description": "SurveyJS analytics Library.",
|
|
26
26
|
"main": "survey.analytics.js",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
},
|
|
103
103
|
"peerDependencies": {
|
|
104
104
|
"@types/plotly.js-dist-min": "^2.3.0",
|
|
105
|
-
"survey-core": "1.12.
|
|
105
|
+
"survey-core": "1.12.13"
|
|
106
106
|
},
|
|
107
107
|
"husky": {
|
|
108
108
|
"hooks": {
|
package/survey.analytics.css
CHANGED
package/survey.analytics.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v1.12.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v1.12.13
|
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -13663,8 +13663,10 @@ var VisualizerBase = /** @class */ (function () {
|
|
|
13663
13663
|
VisualizerBase.prototype.renderContent = function (container) {
|
|
13664
13664
|
var _this = this;
|
|
13665
13665
|
if (!!this.options && typeof this.options.renderContent === "function") {
|
|
13666
|
-
this.options.renderContent(container, this);
|
|
13667
|
-
|
|
13666
|
+
var rendered = this.options.renderContent(container, this);
|
|
13667
|
+
if (rendered !== false) {
|
|
13668
|
+
this.afterRender(container);
|
|
13669
|
+
}
|
|
13668
13670
|
}
|
|
13669
13671
|
else {
|
|
13670
13672
|
if (this.loadingData) {
|