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 +1 -1
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +28 -28
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +8 -6
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +102 -100
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +3 -3
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +8 -6
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
package/package.json
CHANGED
package/survey.analytics.css
CHANGED
package/survey.analytics.d.ts
CHANGED
|
@@ -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";
|