survey-analytics 1.12.13 → 1.12.15

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 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.13",
23
+ "version": "1.12.15",
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.13"
105
+ "survey-core": "1.12.15"
106
106
  },
107
107
  "husky": {
108
108
  "hooks": {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v1.12.13
2
+ * surveyjs - SurveyJS Dashboard library v1.12.15
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
  */
@@ -11035,11 +11035,13 @@ var SelectBase = /** @class */ (function (_super) {
11035
11035
  }
11036
11036
  };
11037
11037
  SelectBase.prototype.setSelection = function (item) {
11038
+ var _a;
11038
11039
  if (this.selectedItem !== item) {
11039
11040
  this.selectedItem = item;
11040
11041
  if (this.onDataItemSelected !== undefined) {
11041
11042
  this.onDataItemSelected(item !== undefined ? item.value : undefined, item !== undefined ? item.text : "");
11042
11043
  }
11044
+ this.stateChanged("filter", (_a = this.selectedItem) === null || _a === void 0 ? void 0 : _a.value);
11043
11045
  }
11044
11046
  };
11045
11047
  Object.defineProperty(SelectBase.prototype, "selection", {