survey-analytics 2.2.2 → 2.2.4
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/fesm/shared.mjs +10 -2
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +748 -262
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/survey.analytics.core.mjs +2 -2
- package/fesm/survey.analytics.mjs +315 -538
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.tabulator.mjs +1 -1
- package/package.json +8 -8
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +2 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +2 -0
- package/survey-analytics-tabulator.types/utils/index.d.ts +1 -1
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +2 -0
- package/survey-analytics.types/analytics-localization/english.d.ts +2 -0
- package/survey-analytics.types/boolean.d.ts +0 -1
- package/survey-analytics.types/entries/summary.core.d.ts +3 -1
- package/survey-analytics.types/histogram.d.ts +1 -1
- package/survey-analytics.types/localizationManager.d.ts +2 -0
- package/survey-analytics.types/matrix.d.ts +0 -1
- package/survey-analytics.types/pivot.d.ts +64 -0
- package/survey-analytics.types/plotly/chart-adapter.d.ts +13 -0
- package/survey-analytics.types/plotly/index.d.ts +2 -7
- package/survey-analytics.types/plotly/legacy.d.ts +33 -0
- package/survey-analytics.types/plotly/setup.d.ts +5 -3
- package/survey-analytics.types/{plotly/ranking.d.ts → ranking.d.ts} +2 -2
- package/survey-analytics.types/selectBase.d.ts +3 -1
- package/survey-analytics.types/utils/index.d.ts +1 -1
- package/survey-analytics.types/visualizationManager.d.ts +3 -0
- package/survey-analytics.types/visualizerBase.d.ts +13 -1
- package/survey.analytics.core.css +7 -1
- package/survey.analytics.core.css.map +1 -1
- package/survey.analytics.core.js +659 -51
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +2 -2
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +7 -1
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.js +1048 -817
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +2 -2
- 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 +10 -2
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/survey-analytics.types/plotly/boolean.d.ts +0 -16
- package/survey-analytics.types/plotly/histogram.d.ts +0 -13
- package/survey-analytics.types/plotly/matrix.d.ts +0 -11
- package/survey-analytics.types/plotly/matrixdropdown-grouped.d.ts +0 -11
- package/survey-analytics.types/plotly/rating.d.ts +0 -20
- package/survey-analytics.types/plotly/selectBase.d.ts +0 -26
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { BooleanModel } from "../boolean";
|
|
3
|
-
import { PlotlyChartAdapter } from "./selectBase";
|
|
4
|
-
export declare class PlotlyBoolChartAdapter extends PlotlyChartAdapter {
|
|
5
|
-
constructor(model: BooleanPlotly);
|
|
6
|
-
protected patchConfigParameters(chartNode: object, traces: Array<object>, layout: object, config: object): void;
|
|
7
|
-
}
|
|
8
|
-
export declare class BooleanPlotly extends BooleanModel {
|
|
9
|
-
private _chartAdapter;
|
|
10
|
-
static types: string[];
|
|
11
|
-
constructor(question: Question, data: Array<{
|
|
12
|
-
[index: string]: any;
|
|
13
|
-
}>, options?: Object, name?: string);
|
|
14
|
-
protected destroyContent(container: HTMLElement): void;
|
|
15
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
16
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { HistogramModel } from "../histogram";
|
|
3
|
-
export declare class HistogramPlotly extends HistogramModel {
|
|
4
|
-
private _chartAdapter;
|
|
5
|
-
static types: string[];
|
|
6
|
-
constructor(question: Question, data: Array<{
|
|
7
|
-
[index: string]: any;
|
|
8
|
-
}>, options?: Object, name?: string);
|
|
9
|
-
protected destroyContent(container: HTMLElement): void;
|
|
10
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
11
|
-
protected getCalculatedValuesCore(): Array<any>;
|
|
12
|
-
getValueType(): "date" | "number";
|
|
13
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { Matrix } from "../matrix";
|
|
3
|
-
export declare class MatrixPlotly extends Matrix {
|
|
4
|
-
private _chartAdapter;
|
|
5
|
-
static types: string[];
|
|
6
|
-
constructor(question: Question, data: Array<{
|
|
7
|
-
[index: string]: any;
|
|
8
|
-
}>, options?: Object, name?: string);
|
|
9
|
-
protected destroyContent(container: HTMLElement): void;
|
|
10
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { QuestionMatrixDropdownModel } from "survey-core";
|
|
2
|
-
import { MatrixDropdownGrouped } from "../matrixDropdownGrouped";
|
|
3
|
-
export declare class MatrixDropdownGroupedPlotly extends MatrixDropdownGrouped {
|
|
4
|
-
private _chartAdapter;
|
|
5
|
-
static types: string[];
|
|
6
|
-
constructor(question: QuestionMatrixDropdownModel, data: Array<{
|
|
7
|
-
[index: string]: any;
|
|
8
|
-
}>, options?: Object, name?: string);
|
|
9
|
-
protected destroyContent(container: HTMLElement): void;
|
|
10
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
11
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { NumberModel } from "../number";
|
|
3
|
-
export declare class PlotlyGaugeAdapter {
|
|
4
|
-
private model;
|
|
5
|
-
private _chart;
|
|
6
|
-
constructor(model: GaugePlotly);
|
|
7
|
-
get chart(): Promise<Plotly.PlotlyHTMLElement>;
|
|
8
|
-
create(chartNode: HTMLElement): Promise<any>;
|
|
9
|
-
destroy(node: HTMLElement): void;
|
|
10
|
-
}
|
|
11
|
-
export declare class GaugePlotly extends NumberModel {
|
|
12
|
-
private _chartAdapter;
|
|
13
|
-
static displayModeBar: any;
|
|
14
|
-
static types: string[];
|
|
15
|
-
constructor(question: Question, data: Array<{
|
|
16
|
-
[index: string]: any;
|
|
17
|
-
}>, options?: Object, name?: string);
|
|
18
|
-
protected destroyContent(container: HTMLElement): void;
|
|
19
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
20
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { SelectBase } from "../selectBase";
|
|
3
|
-
export declare class PlotlyChartAdapter {
|
|
4
|
-
protected model: SelectBase;
|
|
5
|
-
private _chart;
|
|
6
|
-
constructor(model: SelectBase);
|
|
7
|
-
protected patchConfigParameters(chartNode: object, traces: Array<object>, layout: object, config: object): void;
|
|
8
|
-
get chart(): Promise<Plotly.PlotlyHTMLElement>;
|
|
9
|
-
create(chartNode: HTMLElement): Promise<any>;
|
|
10
|
-
update(chartNode: HTMLElement): Promise<any>;
|
|
11
|
-
destroy(node: HTMLElement): void;
|
|
12
|
-
}
|
|
13
|
-
export declare class SelectBasePlotly extends SelectBase {
|
|
14
|
-
private _chartAdapter;
|
|
15
|
-
static types: string[];
|
|
16
|
-
static displayModeBar: any;
|
|
17
|
-
constructor(question: Question, data: Array<{
|
|
18
|
-
[index: string]: any;
|
|
19
|
-
}>, options?: {
|
|
20
|
-
[index: string]: any;
|
|
21
|
-
}, name?: string);
|
|
22
|
-
protected destroyContent(container: HTMLElement): void;
|
|
23
|
-
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
|
|
24
|
-
updateContent(): void;
|
|
25
|
-
protected getCalculatedValuesCore(): Array<any>;
|
|
26
|
-
}
|