survey-analytics 2.2.3 → 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.
Files changed (42) hide show
  1. package/fesm/shared.mjs +1 -1
  2. package/fesm/shared2.mjs +298 -193
  3. package/fesm/shared2.mjs.map +1 -1
  4. package/fesm/survey.analytics.core.mjs +2 -2
  5. package/fesm/survey.analytics.mjs +187 -418
  6. package/fesm/survey.analytics.mjs.map +1 -1
  7. package/fesm/survey.analytics.tabulator.mjs +1 -1
  8. package/package.json +2 -2
  9. package/survey-analytics.types/boolean.d.ts +0 -1
  10. package/survey-analytics.types/entries/summary.core.d.ts +2 -1
  11. package/survey-analytics.types/histogram.d.ts +1 -1
  12. package/survey-analytics.types/pivot.d.ts +2 -0
  13. package/survey-analytics.types/plotly/chart-adapter.d.ts +13 -0
  14. package/survey-analytics.types/plotly/index.d.ts +2 -8
  15. package/survey-analytics.types/plotly/legacy.d.ts +33 -0
  16. package/survey-analytics.types/plotly/setup.d.ts +5 -3
  17. package/survey-analytics.types/{plotly/ranking.d.ts → ranking.d.ts} +2 -2
  18. package/survey-analytics.types/selectBase.d.ts +2 -0
  19. package/survey-analytics.types/visualizerBase.d.ts +11 -0
  20. package/survey.analytics.core.css +1 -1
  21. package/survey.analytics.core.js +178 -23
  22. package/survey.analytics.core.js.map +1 -1
  23. package/survey.analytics.core.min.css +1 -1
  24. package/survey.analytics.core.min.js +1 -1
  25. package/survey.analytics.core.min.js.LICENSE.txt +1 -1
  26. package/survey.analytics.css +1 -1
  27. package/survey.analytics.js +491 -762
  28. package/survey.analytics.js.map +1 -1
  29. package/survey.analytics.min.css +1 -1
  30. package/survey.analytics.min.js +1 -1
  31. package/survey.analytics.min.js.LICENSE.txt +1 -1
  32. package/survey.analytics.tabulator.css +1 -1
  33. package/survey.analytics.tabulator.js +1 -1
  34. package/survey.analytics.tabulator.min.css +1 -1
  35. package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
  36. package/survey-analytics.types/plotly/boolean.d.ts +0 -16
  37. package/survey-analytics.types/plotly/histogram.d.ts +0 -12
  38. package/survey-analytics.types/plotly/matrix.d.ts +0 -11
  39. package/survey-analytics.types/plotly/matrixdropdown-grouped.d.ts +0 -11
  40. package/survey-analytics.types/plotly/pivot.d.ts +0 -12
  41. package/survey-analytics.types/plotly/rating.d.ts +0 -20
  42. package/survey-analytics.types/plotly/selectBase.d.ts +0 -25
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.2.3
2
+ * surveyjs - SurveyJS Dashboard library v2.2.4
3
3
  * Copyright (c) 2015-2025 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 v2.2.3
2
+ * surveyjs - SurveyJS Dashboard library v2.2.4
3
3
  * Copyright (c) 2015-2025 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 v2.2.3
2
+ * surveyjs - SurveyJS Dashboard library v2.2.4
3
3
  * Copyright (c) 2015-2025 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 v2.2.3
2
+ * surveyjs - SurveyJS Dashboard library v2.2.4
3
3
  * Copyright (c) 2015-2025 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 v2.2.3
2
+ * surveyjs - SurveyJS Dashboard library v2.2.4
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -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,12 +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
- getValueType(): "date" | "number";
12
- }
@@ -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,12 +0,0 @@
1
- import { Question } from "survey-core";
2
- import { PivotModel } from "../pivot";
3
- export declare class PivotPlotly extends PivotModel {
4
- private _chartAdapter;
5
- static types: string[];
6
- constructor(questions: Array<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
- getValueType(): "enum" | "date" | "number";
12
- }
@@ -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,25 +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
- }