survey-analytics 1.9.109 → 1.9.111
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-datatables.types/tables/table.d.ts +2 -0
- package/survey-analytics-tabulator.types/tables/table.d.ts +2 -0
- package/survey-analytics.types/visualizerBase.d.ts +4 -4
- package/survey.analytics.css +1 -1
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +10 -3
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +6 -6
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +10 -3
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
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.111",
|
|
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.11.1",
|
|
61
|
-
"survey-core": "1.9.
|
|
61
|
+
"survey-core": "1.9.111",
|
|
62
62
|
"tabulator-tables": "4.8.4",
|
|
63
63
|
"wordcloud": "^1.2.2"
|
|
64
64
|
},
|
|
@@ -72,6 +72,8 @@ export declare abstract class Table {
|
|
|
72
72
|
isColumnVisible(column: IColumn): boolean;
|
|
73
73
|
get columns(): Array<IColumn>;
|
|
74
74
|
set columns(columns: Array<IColumn>);
|
|
75
|
+
get isInitTableDataProcessing(): boolean;
|
|
76
|
+
private isInitTableDataProcessingValue;
|
|
75
77
|
protected initTableData(data: Array<any>): void;
|
|
76
78
|
moveColumn(from: number, to: number): void;
|
|
77
79
|
setColumnLocation(columnName: string, location: QuestionLocation): void;
|
|
@@ -72,6 +72,8 @@ export declare abstract class Table {
|
|
|
72
72
|
isColumnVisible(column: IColumn): boolean;
|
|
73
73
|
get columns(): Array<IColumn>;
|
|
74
74
|
set columns(columns: Array<IColumn>);
|
|
75
|
+
get isInitTableDataProcessing(): boolean;
|
|
76
|
+
private isInitTableDataProcessingValue;
|
|
75
77
|
protected initTableData(data: Array<any>): void;
|
|
76
78
|
moveColumn(from: number, to: number): void;
|
|
77
79
|
setColumnLocation(columnName: string, location: QuestionLocation): void;
|
|
@@ -12,15 +12,15 @@ import { Event } from "survey-core";
|
|
|
12
12
|
* Survey results.
|
|
13
13
|
* - `options`\
|
|
14
14
|
* An object with the following properties:
|
|
15
|
-
* - `seriesValues`: `Array<
|
|
15
|
+
* - `seriesValues`: `Array<string>`\
|
|
16
16
|
* Series values used to group data.
|
|
17
|
-
* - `seriesLabels`: `Array<
|
|
17
|
+
* - `seriesLabels`: `Array<string>`\
|
|
18
18
|
* Series labels to display. If this property is not set, `seriesValues` are used as labels.
|
|
19
19
|
* - `survey`: [`SurveyModel`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model)\
|
|
20
20
|
* Pass a `SurveyModel` instance if you want to use locales from the survey JSON schema.
|
|
21
21
|
* - `dataProvider`: `DataProvider`\
|
|
22
22
|
* A data provider for this visualizer.
|
|
23
|
-
* - `type`: `
|
|
23
|
+
* - `type`: `string`\
|
|
24
24
|
* *(Optional)* The visualizer's type.
|
|
25
25
|
*
|
|
26
26
|
* [View Demo](https://surveyjs.io/dashboard/examples/how-to-plot-survey-data-in-custom-bar-chart/ (linkStyle))
|
|
@@ -65,7 +65,7 @@ export declare class VisualizerBase implements IDataInfo {
|
|
|
65
65
|
* - `sender`: `VisualizerBase`\
|
|
66
66
|
* A `VisualizerBase` instance that raised the event.
|
|
67
67
|
*
|
|
68
|
-
* - `options.locale`: `
|
|
68
|
+
* - `options.locale`: `string`\
|
|
69
69
|
* The indentifier of a new locale (for example, "en").
|
|
70
70
|
* @see locale
|
|
71
71
|
*/
|
package/survey.analytics.css
CHANGED