survey-analytics 1.9.41 → 1.9.44
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 +5 -3
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +2 -7
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +73 -17
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +53 -52
- 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 +90 -34
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
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.
|
|
22
|
+
"version": "1.9.44",
|
|
23
23
|
"name": "survey-analytics",
|
|
24
24
|
"description": "SurveyJS analytics Library.",
|
|
25
25
|
"main": "survey.analytics.js",
|
|
@@ -74,12 +74,10 @@
|
|
|
74
74
|
"wordcloud": "^1.2.2"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@types/datatables.net": "^1.10.21",
|
|
78
77
|
"@types/jest": "^26.0.24",
|
|
79
78
|
"@types/jquery": "3.3.29",
|
|
80
79
|
"@types/lodash": "4.14.121",
|
|
81
80
|
"@types/node": "7.0.4",
|
|
82
|
-
"@types/plotly.js-dist-min": "^2.3.0",
|
|
83
81
|
"@types/wordcloud": "^1.1.3",
|
|
84
82
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
85
83
|
"@typescript-eslint/parser": "^4.33.0",
|
|
@@ -117,6 +115,10 @@
|
|
|
117
115
|
"webpack-dev-server": "^3.11.3",
|
|
118
116
|
"webpack-svgstore-plugin": "^4.1.0"
|
|
119
117
|
},
|
|
118
|
+
"peerDependencies": {
|
|
119
|
+
"@types/datatables.net": "^1.10.21",
|
|
120
|
+
"@types/plotly.js-dist-min": "^2.3.0"
|
|
121
|
+
},
|
|
120
122
|
"husky": {
|
|
121
123
|
"hooks": {
|
|
122
124
|
"pre-push": "npm run pre-push-check"
|
package/survey.analytics.css
CHANGED
package/survey.analytics.d.ts
CHANGED
|
@@ -663,7 +663,6 @@ declare module "visualizerBase" {
|
|
|
663
663
|
import { Question } from "survey-core";
|
|
664
664
|
import { IDataInfo, DataProvider } from "dataProvider";
|
|
665
665
|
import { Event } from "survey-core";
|
|
666
|
-
import "./visualizerBase.scss";
|
|
667
666
|
/**
|
|
668
667
|
* VisualizerBase is a base object for all visuzlizers. It responsible for the rendering and destroying visualizer.
|
|
669
668
|
*
|
|
@@ -1126,7 +1125,6 @@ declare module "visualizationPanel" {
|
|
|
1126
1125
|
import { IVisualizerPanelElement, IState, IPermission } from "config";
|
|
1127
1126
|
import { LayoutEngine } from "layoutEngine";
|
|
1128
1127
|
import { DataProvider } from "dataProvider";
|
|
1129
|
-
import "./visualizationPanel.scss";
|
|
1130
1128
|
export interface IVisualizerPanelRenderedElement extends IVisualizerPanelElement {
|
|
1131
1129
|
renderedElement?: HTMLElement;
|
|
1132
1130
|
}
|
|
@@ -1587,7 +1585,6 @@ declare module "plotly/setup" {
|
|
|
1587
1585
|
declare module "plotly/selectBase" {
|
|
1588
1586
|
import { Question } from "survey-core";
|
|
1589
1587
|
import { SelectBase } from "selectBase";
|
|
1590
|
-
import Plotly from "plotly.js-dist-min";
|
|
1591
1588
|
export class PlotlyChartAdapter {
|
|
1592
1589
|
protected model: SelectBase;
|
|
1593
1590
|
private _chart;
|
|
@@ -1697,7 +1694,6 @@ declare module "plotly/histogram" {
|
|
|
1697
1694
|
declare module "plotly/rating" {
|
|
1698
1695
|
import { Question } from "survey-core";
|
|
1699
1696
|
import { NumberModel } from "number";
|
|
1700
|
-
import Plotly from "plotly.js-dist-min";
|
|
1701
1697
|
export class PlotlyGaugeAdapter {
|
|
1702
1698
|
private model;
|
|
1703
1699
|
private _chart;
|
|
@@ -1741,7 +1737,7 @@ declare module "wordcloud/stopwords/index" {
|
|
|
1741
1737
|
};
|
|
1742
1738
|
}
|
|
1743
1739
|
declare module "wordcloud/wordcloud" {
|
|
1744
|
-
import { Question } from "survey-core";
|
|
1740
|
+
import { Question, Event } from "survey-core";
|
|
1745
1741
|
import { VisualizerBase } from "visualizerBase";
|
|
1746
1742
|
export class WordCloudAdapter {
|
|
1747
1743
|
private model;
|
|
@@ -1750,6 +1746,7 @@ declare module "wordcloud/wordcloud" {
|
|
|
1750
1746
|
static shrinkToFit: boolean;
|
|
1751
1747
|
static abortThreshold: any;
|
|
1752
1748
|
static weightFactor: number;
|
|
1749
|
+
static onWordcloudCreating: Event<(sender: WordCloud, options: any) => any, any>;
|
|
1753
1750
|
constructor(model: WordCloud);
|
|
1754
1751
|
get wordcloud(): any;
|
|
1755
1752
|
create(node: HTMLElement): any;
|
|
@@ -1769,7 +1766,6 @@ declare module "wordcloud/wordcloud" {
|
|
|
1769
1766
|
declare module "text" {
|
|
1770
1767
|
import { Question } from "survey-core";
|
|
1771
1768
|
import { VisualizerBase } from "visualizerBase";
|
|
1772
|
-
import "./text.scss";
|
|
1773
1769
|
export class TextTableAdapter {
|
|
1774
1770
|
private model;
|
|
1775
1771
|
constructor(model: Text);
|
|
@@ -1793,7 +1789,6 @@ declare module "text" {
|
|
|
1793
1789
|
declare module "choices-table" {
|
|
1794
1790
|
import { Question } from "survey-core";
|
|
1795
1791
|
import { SelectBase } from "selectBase";
|
|
1796
|
-
import "./choices-table.scss";
|
|
1797
1792
|
export class ChoicesTableAdapter {
|
|
1798
1793
|
private model;
|
|
1799
1794
|
constructor(model: ChoicesTable);
|