survey-analytics 1.9.130 → 1.9.132
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.types/alternativeVizualizersWrapper.d.ts +1 -0
- package/survey-analytics.types/visualizationPanel.d.ts +2 -1
- package/survey-analytics.types/visualizerBase.d.ts +3 -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 +73 -30
- 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.132",
|
|
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.28.0",
|
|
61
|
-
"survey-core": "1.9.
|
|
61
|
+
"survey-core": "1.9.132",
|
|
62
62
|
"tabulator-tables": "4.8.4",
|
|
63
63
|
"wordcloud": "^1.2.2"
|
|
64
64
|
},
|
|
@@ -16,6 +16,7 @@ export declare class AlternativeVisualizersWrapper extends VisualizerBase implem
|
|
|
16
16
|
private selectedItem;
|
|
17
17
|
private visualizer;
|
|
18
18
|
private onAfterVisualizerRenderCallback;
|
|
19
|
+
private onVisualizerStateChangedCallback;
|
|
19
20
|
/**
|
|
20
21
|
* The event is fired right after AlternativeVisualizersWrapper content type has been changed.
|
|
21
22
|
**/
|
|
@@ -251,6 +251,7 @@ export declare class VisualizationPanel extends VisualizerBase {
|
|
|
251
251
|
[index: string]: any;
|
|
252
252
|
}>, options?: IVisualizationPanelOptions, _elements?: Array<IVisualizerPanelRenderedElement>);
|
|
253
253
|
private onAfterRenderQuestionCallback;
|
|
254
|
+
private onStateChangedCallback;
|
|
254
255
|
/**
|
|
255
256
|
* An event that is raised when a user selects a different visualizer type from the Type drop-down menu.
|
|
256
257
|
*
|
|
@@ -393,7 +394,6 @@ export declare class VisualizationPanel extends VisualizerBase {
|
|
|
393
394
|
*/
|
|
394
395
|
onElementMoved: Event<(sender: VisualizationPanel, options: any) => any, VisualizationPanel, any>;
|
|
395
396
|
protected visibleElementsChanged(element: IVisualizerPanelElement, reason: string): void;
|
|
396
|
-
onStateChanged: Event<(sender: VisualizationPanel, state: IState) => any, VisualizationPanel, any>;
|
|
397
397
|
onPermissionsChangedCallback: any;
|
|
398
398
|
protected renderPanelElement(element: IVisualizerPanelRenderedElement, container: HTMLElement): HTMLElement;
|
|
399
399
|
protected renderToolbar(container: HTMLElement): void;
|
|
@@ -411,6 +411,7 @@ export declare class VisualizationPanel extends VisualizerBase {
|
|
|
411
411
|
* @see IVisualizationPanelOptions.allowSelection
|
|
412
412
|
*/
|
|
413
413
|
setFilter(questionName: string, selectedValue: any): void;
|
|
414
|
+
getState(): IState;
|
|
414
415
|
/**
|
|
415
416
|
* The state of `VisualizationPanel`. Includes information about the visualized elements and current locale.
|
|
416
417
|
*/
|
|
@@ -72,6 +72,8 @@ export declare class VisualizerBase implements IDataInfo {
|
|
|
72
72
|
onLocaleChanged: Event<(sender: VisualizerBase, options: {
|
|
73
73
|
locale: string;
|
|
74
74
|
}) => any, VisualizerBase, any>;
|
|
75
|
+
onStateChanged: Event<(sender: VisualizerBase, options: any) => any, VisualizerBase, any>;
|
|
76
|
+
protected stateChanged(name: string, value: any): void;
|
|
75
77
|
protected toolbarItemCreators: {
|
|
76
78
|
[name: string]: (toolbar?: HTMLDivElement) => HTMLElement;
|
|
77
79
|
};
|
|
@@ -248,6 +250,7 @@ export declare class VisualizerBase implements IDataInfo {
|
|
|
248
250
|
* To get an array of source survey results, use the [`surveyData`](https://surveyjs.io/dashboard/documentation/api-reference/visualizerbase#surveyData) property.
|
|
249
251
|
*/
|
|
250
252
|
getCalculatedValues(): any;
|
|
253
|
+
protected _settingState: boolean;
|
|
251
254
|
/**
|
|
252
255
|
* Returns an object with properties that describe a current visualizer state. The properties are different for each individual visualizer.
|
|
253
256
|
*
|
package/survey.analytics.css
CHANGED