survey-analytics 1.9.34 → 1.9.37

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
@@ -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.34",
22
+ "version": "1.9.37",
23
23
  "name": "survey-analytics",
24
24
  "description": "SurveyJS analytics Library.",
25
25
  "main": "survey.analytics.js",
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.34
2
+ * surveyjs - SurveyJS Analytics library v1.9.37
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
  */
@@ -1029,6 +1029,34 @@ declare module "histogram" {
1029
1029
  getData(): any;
1030
1030
  }
1031
1031
  }
1032
+ declare module "alternativeVizualizersWrapper" {
1033
+ import { Question, ItemValue } from "survey-core";
1034
+ import { VisualizerBase } from "visualizerBase";
1035
+ import { IVisualizerWithSelection } from "selectBase";
1036
+ export class AlternativeVisualizersWrapper extends VisualizerBase implements IVisualizerWithSelection {
1037
+ private visualizers;
1038
+ constructor(visualizers: Array<VisualizerBase>, question: Question, data: Array<{
1039
+ [index: string]: any;
1040
+ }>, options?: Object);
1041
+ protected visualizerContainer: HTMLElement;
1042
+ get hasFooter(): boolean;
1043
+ getVisualizers(): VisualizerBase[];
1044
+ private visualizersWithSelection;
1045
+ private selectedItem;
1046
+ private visualizer;
1047
+ private onAfterVisualizerRenderCallback;
1048
+ private setVisualizer;
1049
+ updateData(data: Array<{
1050
+ [index: string]: any;
1051
+ }>): void;
1052
+ set onDataItemSelected(val: (selectedValue: any, selectedText: string) => void);
1053
+ setSelection(item: ItemValue): void;
1054
+ get selection(): any;
1055
+ protected renderContent(container: HTMLElement): void;
1056
+ protected setBackgroundColorCore(color: string): void;
1057
+ destroy(): void;
1058
+ }
1059
+ }
1032
1060
  declare module "config" {
1033
1061
  export interface IVisualizerPanelElement {
1034
1062
  name: string;
@@ -1508,34 +1536,6 @@ declare module "visualizationMatrixDropdown" {
1508
1536
  destroy(): void;
1509
1537
  }
1510
1538
  }
1511
- declare module "alternativeVizualizersWrapper" {
1512
- import { Question, ItemValue } from "survey-core";
1513
- import { VisualizerBase } from "visualizerBase";
1514
- import { IVisualizerWithSelection } from "selectBase";
1515
- export class AlternativeVisualizersWrapper extends VisualizerBase implements IVisualizerWithSelection {
1516
- private visualizers;
1517
- constructor(visualizers: Array<VisualizerBase>, question: Question, data: Array<{
1518
- [index: string]: any;
1519
- }>, options?: Object);
1520
- protected visualizerContainer: HTMLElement;
1521
- get hasFooter(): boolean;
1522
- getVisualizers(): VisualizerBase[];
1523
- private visualizersWithSelection;
1524
- private selectedItem;
1525
- private visualizer;
1526
- private onAfterVisualizerRenderCallback;
1527
- private setVisualizer;
1528
- updateData(data: Array<{
1529
- [index: string]: any;
1530
- }>): void;
1531
- set onDataItemSelected(val: (selectedValue: any, selectedText: string) => void);
1532
- setSelection(item: ItemValue): void;
1533
- get selection(): any;
1534
- protected renderContent(container: HTMLElement): void;
1535
- protected setBackgroundColorCore(color: string): void;
1536
- destroy(): void;
1537
- }
1538
- }
1539
1539
  declare module "plotly/setup" {
1540
1540
  import { Event } from "survey-core";
1541
1541
  import { SelectBase } from "selectBase";
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.34
2
+ * surveyjs - SurveyJS Analytics library v1.9.37
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
  */