survey-analytics 1.11.13 → 1.12.1
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/README.md +0 -2
- package/package.json +3 -5
- package/survey-analytics-datatables.types/analytics-localization/english.d.ts +3 -0
- package/survey-analytics-datatables.types/localizationManager.d.ts +3 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +3 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +3 -0
- package/survey-analytics.types/analytics-localization/english.d.ts +3 -0
- package/survey-analytics.types/choices-table.d.ts +17 -17
- package/survey-analytics.types/config.d.ts +2 -3
- package/survey-analytics.types/entries/summary.d.ts +1 -1
- package/survey-analytics.types/localizationManager.d.ts +3 -0
- package/survey-analytics.types/statistics-table.d.ts +17 -0
- package/survey-analytics.types/visualizationPanel.d.ts +11 -11
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +0 -1
- package/survey.analytics.css +9 -9
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +4 -1
- package/survey.analytics.datatables.js.map +1 -1
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +1 -1
- package/survey.analytics.datatables.min.js.LICENSE.txt +1 -1
- package/survey.analytics.js +216 -233
- 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 +4 -1
- 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/README.md
CHANGED
|
@@ -23,10 +23,8 @@ The SurveyJS Dashboard library lets you build survey data dashboards and simplif
|
|
|
23
23
|
- Bar chart
|
|
24
24
|
- Donut graph
|
|
25
25
|
- Pie chart
|
|
26
|
-
- Line chart (also known as line graph or curve chart)
|
|
27
26
|
- Gauge chart
|
|
28
27
|
- Bullet graph
|
|
29
|
-
- Scatter plot
|
|
30
28
|
- Word cloud
|
|
31
29
|
- Interactive value filtering ordering
|
|
32
30
|
- Customizable colors
|
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.
|
|
23
|
+
"version": "1.12.1",
|
|
24
24
|
"name": "survey-analytics",
|
|
25
25
|
"description": "SurveyJS analytics Library.",
|
|
26
26
|
"main": "survey.analytics.js",
|
|
@@ -58,15 +58,13 @@
|
|
|
58
58
|
"jquery": "3.5.0",
|
|
59
59
|
"muuri": "^0.8.0",
|
|
60
60
|
"plotly.js-dist-min": "^2.28.0",
|
|
61
|
-
"tabulator-tables": "4.8.4"
|
|
62
|
-
"wordcloud": "^1.2.2"
|
|
61
|
+
"tabulator-tables": "4.8.4"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
64
|
"@types/jest": "^26.0.24",
|
|
66
65
|
"@types/jquery": "3.3.29",
|
|
67
66
|
"@types/lodash": "4.14.121",
|
|
68
67
|
"@types/node": "7.0.4",
|
|
69
|
-
"@types/wordcloud": "^1.1.3",
|
|
70
68
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
71
69
|
"@typescript-eslint/parser": "^4.33.0",
|
|
72
70
|
"ajv": "6.12.3",
|
|
@@ -103,7 +101,7 @@
|
|
|
103
101
|
},
|
|
104
102
|
"peerDependencies": {
|
|
105
103
|
"@types/plotly.js-dist-min": "^2.3.0",
|
|
106
|
-
"survey-core": "1.
|
|
104
|
+
"survey-core": "1.12.1"
|
|
107
105
|
},
|
|
108
106
|
"husky": {
|
|
109
107
|
"hooks": {
|
|
@@ -27,6 +27,7 @@ export declare var englishStrings: {
|
|
|
27
27
|
chartType_scatter: string;
|
|
28
28
|
chartType_gauge: string;
|
|
29
29
|
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
30
31
|
hideButton: string;
|
|
31
32
|
makePrivateButton: string;
|
|
32
33
|
makePublicButton: string;
|
|
@@ -63,6 +64,8 @@ export declare var englishStrings: {
|
|
|
63
64
|
answer: string;
|
|
64
65
|
correctAnswer: string;
|
|
65
66
|
percent: string;
|
|
67
|
+
percentage: string;
|
|
68
|
+
statistics_chart: string;
|
|
66
69
|
responses: string;
|
|
67
70
|
visualizer_nps: string;
|
|
68
71
|
npsScore: string;
|
|
@@ -42,6 +42,7 @@ export declare var surveyStrings: {
|
|
|
42
42
|
chartType_scatter: string;
|
|
43
43
|
chartType_gauge: string;
|
|
44
44
|
chartType_bullet: string;
|
|
45
|
+
chartType_line: string;
|
|
45
46
|
hideButton: string;
|
|
46
47
|
makePrivateButton: string;
|
|
47
48
|
makePublicButton: string;
|
|
@@ -78,6 +79,8 @@ export declare var surveyStrings: {
|
|
|
78
79
|
answer: string;
|
|
79
80
|
correctAnswer: string;
|
|
80
81
|
percent: string;
|
|
82
|
+
percentage: string;
|
|
83
|
+
statistics_chart: string;
|
|
81
84
|
responses: string;
|
|
82
85
|
visualizer_nps: string;
|
|
83
86
|
npsScore: string;
|
|
@@ -27,6 +27,7 @@ export declare var englishStrings: {
|
|
|
27
27
|
chartType_scatter: string;
|
|
28
28
|
chartType_gauge: string;
|
|
29
29
|
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
30
31
|
hideButton: string;
|
|
31
32
|
makePrivateButton: string;
|
|
32
33
|
makePublicButton: string;
|
|
@@ -63,6 +64,8 @@ export declare var englishStrings: {
|
|
|
63
64
|
answer: string;
|
|
64
65
|
correctAnswer: string;
|
|
65
66
|
percent: string;
|
|
67
|
+
percentage: string;
|
|
68
|
+
statistics_chart: string;
|
|
66
69
|
responses: string;
|
|
67
70
|
visualizer_nps: string;
|
|
68
71
|
npsScore: string;
|
|
@@ -42,6 +42,7 @@ export declare var surveyStrings: {
|
|
|
42
42
|
chartType_scatter: string;
|
|
43
43
|
chartType_gauge: string;
|
|
44
44
|
chartType_bullet: string;
|
|
45
|
+
chartType_line: string;
|
|
45
46
|
hideButton: string;
|
|
46
47
|
makePrivateButton: string;
|
|
47
48
|
makePublicButton: string;
|
|
@@ -78,6 +79,8 @@ export declare var surveyStrings: {
|
|
|
78
79
|
answer: string;
|
|
79
80
|
correctAnswer: string;
|
|
80
81
|
percent: string;
|
|
82
|
+
percentage: string;
|
|
83
|
+
statistics_chart: string;
|
|
81
84
|
responses: string;
|
|
82
85
|
visualizer_nps: string;
|
|
83
86
|
npsScore: string;
|
|
@@ -27,6 +27,7 @@ export declare var englishStrings: {
|
|
|
27
27
|
chartType_scatter: string;
|
|
28
28
|
chartType_gauge: string;
|
|
29
29
|
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
30
31
|
hideButton: string;
|
|
31
32
|
makePrivateButton: string;
|
|
32
33
|
makePublicButton: string;
|
|
@@ -63,6 +64,8 @@ export declare var englishStrings: {
|
|
|
63
64
|
answer: string;
|
|
64
65
|
correctAnswer: string;
|
|
65
66
|
percent: string;
|
|
67
|
+
percentage: string;
|
|
68
|
+
statistics_chart: string;
|
|
66
69
|
responses: string;
|
|
67
70
|
visualizer_nps: string;
|
|
68
71
|
npsScore: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Question } from "survey-core";
|
|
2
|
-
import { SelectBase } from "./selectBase";
|
|
3
|
-
export declare class ChoicesTableAdapter {
|
|
4
|
-
private model;
|
|
5
|
-
constructor(model: ChoicesTable);
|
|
6
|
-
create(container: HTMLElement): Promise<void>;
|
|
7
|
-
destroy(node: HTMLElement): void;
|
|
8
|
-
}
|
|
9
|
-
export declare class ChoicesTable extends SelectBase {
|
|
10
|
-
private _choicesTableAdapter;
|
|
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
|
-
destroy(): void;
|
|
17
|
-
}
|
|
1
|
+
import { Question } from "survey-core";
|
|
2
|
+
import { SelectBase } from "./selectBase";
|
|
3
|
+
export declare class ChoicesTableAdapter {
|
|
4
|
+
private model;
|
|
5
|
+
constructor(model: ChoicesTable);
|
|
6
|
+
create(container: HTMLElement): Promise<void>;
|
|
7
|
+
destroy(node: HTMLElement): void;
|
|
8
|
+
}
|
|
9
|
+
export declare class ChoicesTable extends SelectBase {
|
|
10
|
+
private _choicesTableAdapter;
|
|
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
|
+
destroy(): void;
|
|
17
|
+
}
|
|
@@ -33,13 +33,12 @@ export interface IVisualizerPanelElement {
|
|
|
33
33
|
* - `"stackedbar"`
|
|
34
34
|
* - `"pie"`
|
|
35
35
|
* - `"doughnut"`
|
|
36
|
-
* - `"scatter"`
|
|
37
36
|
* - `"gauge"`
|
|
38
37
|
* - `"bullet"`
|
|
39
38
|
*/
|
|
40
39
|
chartType?: string;
|
|
41
40
|
/**
|
|
42
|
-
* Indicates the answer order in bar and
|
|
41
|
+
* Indicates the answer order in [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
43
42
|
*
|
|
44
43
|
* Possible values:
|
|
45
44
|
*
|
|
@@ -49,7 +48,7 @@ export interface IVisualizerPanelElement {
|
|
|
49
48
|
*/
|
|
50
49
|
answersOrder?: string;
|
|
51
50
|
/**
|
|
52
|
-
* Indicates whether answers with zero count are hidden in bar and
|
|
51
|
+
* Indicates whether answers with zero count are hidden in [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
53
52
|
*/
|
|
54
53
|
hideEmptyAnswers?: boolean;
|
|
55
54
|
/**
|
|
@@ -28,6 +28,6 @@ export * from "../plotly/index";
|
|
|
28
28
|
export * from "../wordcloud/wordcloud";
|
|
29
29
|
export * from "../wordcloud/stopwords/index";
|
|
30
30
|
export * from "../text";
|
|
31
|
-
export * from "../
|
|
31
|
+
export * from "../statistics-table";
|
|
32
32
|
export * from "../nps";
|
|
33
33
|
export { DocumentHelper } from "../utils/index";
|
|
@@ -42,6 +42,7 @@ export declare var surveyStrings: {
|
|
|
42
42
|
chartType_scatter: string;
|
|
43
43
|
chartType_gauge: string;
|
|
44
44
|
chartType_bullet: string;
|
|
45
|
+
chartType_line: string;
|
|
45
46
|
hideButton: string;
|
|
46
47
|
makePrivateButton: string;
|
|
47
48
|
makePublicButton: string;
|
|
@@ -78,6 +79,8 @@ export declare var surveyStrings: {
|
|
|
78
79
|
answer: string;
|
|
79
80
|
correctAnswer: string;
|
|
80
81
|
percent: string;
|
|
82
|
+
percentage: string;
|
|
83
|
+
statistics_chart: string;
|
|
81
84
|
responses: string;
|
|
82
85
|
visualizer_nps: string;
|
|
83
86
|
npsScore: string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Question } from "survey-core";
|
|
2
|
+
import { SelectBase } from "./selectBase";
|
|
3
|
+
export declare class StatisticsTableAdapter {
|
|
4
|
+
private model;
|
|
5
|
+
constructor(model: StatisticsTable);
|
|
6
|
+
create(container: HTMLElement): Promise<void>;
|
|
7
|
+
destroy(node: HTMLElement): void;
|
|
8
|
+
}
|
|
9
|
+
export declare class StatisticsTable extends SelectBase {
|
|
10
|
+
private _statisticsTableAdapter;
|
|
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
|
+
destroy(): void;
|
|
17
|
+
}
|
|
@@ -123,9 +123,9 @@ export interface IVisualizationPanelOptions {
|
|
|
123
123
|
percentagePrecision?: number;
|
|
124
124
|
haveCommercialLicense?: boolean;
|
|
125
125
|
/**
|
|
126
|
-
* Allows users to sort answers by answer count. Applies only to bar and
|
|
126
|
+
* Allows users to sort answers by answer count. Applies only to [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
127
127
|
*
|
|
128
|
-
* This property adds a Sorting dropdown to each
|
|
128
|
+
* This property adds a Sorting dropdown to each supported visualizer.
|
|
129
129
|
*
|
|
130
130
|
* Default value: `true`
|
|
131
131
|
*
|
|
@@ -133,7 +133,7 @@ export interface IVisualizationPanelOptions {
|
|
|
133
133
|
*/
|
|
134
134
|
allowChangeAnswersOrder?: boolean;
|
|
135
135
|
/**
|
|
136
|
-
* Specifies how to sort answers in bar and
|
|
136
|
+
* Specifies how to sort answers in [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
137
137
|
*
|
|
138
138
|
* Accepted values:
|
|
139
139
|
*
|
|
@@ -147,15 +147,15 @@ export interface IVisualizationPanelOptions {
|
|
|
147
147
|
*/
|
|
148
148
|
answersOrder?: "default" | "asc" | "desc";
|
|
149
149
|
/**
|
|
150
|
-
* Allows users to hide answers with zero count in bar and
|
|
150
|
+
* Allows users to hide answers with zero count in [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
151
151
|
*
|
|
152
|
-
* This property adds a Hide Empty Answers button to each
|
|
152
|
+
* This property adds a Hide Empty Answers button to each supported visualizer.
|
|
153
153
|
*
|
|
154
154
|
* Default value: `false`
|
|
155
155
|
*/
|
|
156
156
|
allowHideEmptyAnswers?: boolean;
|
|
157
157
|
/**
|
|
158
|
-
* Hides answers with zero count in bar and
|
|
158
|
+
* Hides answers with zero count in [bar charts](https://surveyjs.io/dashboard/documentation/chart-types#bar-chart), [histograms](https://surveyjs.io/dashboard/documentation/chart-types#histogram), and [statistics tables](https://surveyjs.io/dashboard/documentation/chart-types#statistics-table).
|
|
159
159
|
*
|
|
160
160
|
* Users can change this property value if you enable the `allowHideEmptyAnswers` property.
|
|
161
161
|
*
|
|
@@ -186,11 +186,11 @@ export interface IVisualizationPanelOptions {
|
|
|
186
186
|
*
|
|
187
187
|
* Accepted values depend on the question type as follows:
|
|
188
188
|
*
|
|
189
|
-
* - Boolean: `"bar"` | `"pie"` | `"doughnut"`
|
|
190
|
-
* - Date, Number: `"bar"` | `"
|
|
191
|
-
* - Matrix: `"bar"` | `"pie"` | `"doughnut"` | `"stackedbar"`
|
|
192
|
-
* - Rating: `"bar"` | `"
|
|
193
|
-
* - Radiogroup, Checkbox, Dropdown, Image Picker: `"bar"` | `"
|
|
189
|
+
* - Boolean: `"bar"` | `"vbar"` | `"pie"` | `"doughnut"`
|
|
190
|
+
* - Date, Number: `"bar"` | `"vbar"`
|
|
191
|
+
* - Matrix: `"bar"` | `"vbar"` | `"pie"` | `"doughnut"` | `"stackedbar"`
|
|
192
|
+
* - Rating: `"bar"` | `"vbar"` | `"gauge"` | `"bullet"`
|
|
193
|
+
* - Radiogroup, Checkbox, Dropdown, Image Picker: `"bar"` | `"vbar"` | `"pie"` | `"doughnut"`
|
|
194
194
|
*
|
|
195
195
|
* To set a type for an individual chart, access this chart in the `visualizers` array and set its `chartType` property to one of the values described above:
|
|
196
196
|
*
|
|
@@ -10,7 +10,6 @@ export declare class WordCloudAdapter {
|
|
|
10
10
|
static onWordcloudCreating: Event<(sender: WordCloud, options: any) => any, WordCloud, any>;
|
|
11
11
|
constructor(model: WordCloud);
|
|
12
12
|
get wordcloud(): any;
|
|
13
|
-
private createWordCloud2;
|
|
14
13
|
create(element: HTMLElement): Promise<any>;
|
|
15
14
|
destroy(node: HTMLElement): void;
|
|
16
15
|
}
|
package/survey.analytics.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v1.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v1.12.1
|
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -324,17 +324,17 @@
|
|
|
324
324
|
background-color: var(--background-color, #f7f7f7);
|
|
325
325
|
min-height: 34px;
|
|
326
326
|
}
|
|
327
|
-
|
|
328
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/
|
|
329
|
-
|
|
330
|
-
.sa-
|
|
327
|
+
/*!****************************************************************************************************************************************************************************!*\
|
|
328
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/statistics-table.scss ***!
|
|
329
|
+
\****************************************************************************************************************************************************************************/
|
|
330
|
+
.sa-statistics-table__container {
|
|
331
331
|
width: 100%;
|
|
332
332
|
min-height: 200px;
|
|
333
333
|
max-height: 500px;
|
|
334
334
|
overflow: auto;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
-
.sa-
|
|
337
|
+
.sa-statistics-table {
|
|
338
338
|
width: 100%;
|
|
339
339
|
font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
340
340
|
font-size: var(--root-font-size, 14px);
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
background-color: var(--background-color, #f7f7f7);
|
|
343
343
|
}
|
|
344
344
|
|
|
345
|
-
.sa-
|
|
345
|
+
.sa-statistics-table__cell {
|
|
346
346
|
border-width: 1px;
|
|
347
347
|
padding: 8px;
|
|
348
348
|
border-style: solid;
|
|
@@ -351,12 +351,12 @@
|
|
|
351
351
|
min-height: 34px;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
.sa-
|
|
354
|
+
.sa-statistics-table__cell-value {
|
|
355
355
|
text-align: right;
|
|
356
356
|
min-width: 30px;
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
-
.sa-
|
|
359
|
+
.sa-statistics-table__cell-header {
|
|
360
360
|
font-weight: bold;
|
|
361
361
|
}
|
|
362
362
|
|
package/survey.analytics.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey.analytics.css","mappings":";;;;;;;;AAKA;EACE,qECsBsB;EDrBtB,sCCsBe;AD1BjB;;AAOA;EACE,uECgBY;EDfZ;EACA;EACA;AAJF;;AAOA;EACE;AAJF;;AAOA;EACE;EACA,qECKsB;EDJtB,sCCKe;EDJf;EACA;EACA;EACA;AAJF;;AAOA;EACE;AAJF;;AAOA;EACE;EACA;EACA;AAJF;;AAOA;EACE;EACA;EACA;EACA;EACA;EACA;AAJF;;AAOA;EACE;IACI;EAJJ;EAMA;IACI;EAJJ;AACF;;;;AElDA;EACE;AADF;;AAIA;EACE;AADF;;AAIA;EACE;EACA;AADF;AAEE;EAHF;IAII;EACF;AACF;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;AACF;;AAEA;EACE;AACF;AACE;EAHF;IAII;EAEF;AACF;;AACA;EACE,kDDpBiB;ECqBjB;AAEF;;AACA;EACE;EACA,qEDdsB;ECetB;EACA;EACA,iCDjCW;ECkCX;EACA;AAEF;;AACA;EACE;AAEF;AADE;EACE;EACA;EACA;EACA;EACA;EACA;AAGJ;;AACA;EACE,uEDpCY;ECqCZ,sCDnCe;ECoCf,iCDrDW;ECsDX;EACA;EACA;EACA;EACA;EACA;AAEF;;AAAA;EACE;EACA;AAGF;;AAAA;EACE,uEDpDY;ECqDZ,sCDnDe;ECoDf;EACA;EACA;EACA;EACA;EACA;AAGF;AADE;EACE,0CDrEW;ECsEX;AAGJ;AADE;EACE;AAGJ;AADE;EACE;AAGJ;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;AAEF;AADE;EACE,gDDrFQ;ACwFZ;AAAI;EACE,qCDxFY;AC0FlB;AACE;EACE;EACA;AACJ;;AAGA;EACE;AAAF;;AAIA;EACE;EACA;EACA;EACA;AADF;AAGE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,2CDlIiB;ECmIjB,0CD1HW;EC2HX,YDzHkB;EC0HlB;EACA;AADJ;AAGI;EACE;AADN;AAII;EACE;EACA;AAFN;AAKI;EACE,qCDxJW;ACqJjB;AAOE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AALJ;;AAUA;EACE;EACA;AAPF;;AAUA;EACE;EACA;EACA;AAPF;;AAUA;EACE;EACA;AAPF;AAQE;EACE;EACA;EACA,gCDpMS;AC8Lb;;AASA;EACE;EACA;EACA,iCD1MW;ACoMb;;AAQA;EACE;AALF;;AAQA;AACA;EACE;EACA;EACA;EACA;EAGA;AAPF;AAUA;AACA;EACE;EACA;EACA;EACA;EAGA;AAVF;AAcA;AACA;EACE;EACA;EACA;EACA;EAGA;AAdF;AAiBA;AACA;EACE;EACA;EACA;EACA;EAGA;AAjBF;;;;ACvOA;EACE;EACA;EACA;EACA;AADF;;AAIA;EACE;EACA,uEFgBY;EEfZ,sCFiBe;EEhBf,iCFDW;EEEX;EACD;EACC;AADF;;AAIA;EACC;EACA;EACA;EACA,0CFHc;EEIb,kDFRiB;EESjB,gBFHoB;AEEtB;;;;ACtBA;EACE;EACA;EACA;EACA;AADF;;AAIA;EACE;EACA,uEHgBY;EGfZ,sCHiBe;EGhBf,iCHDW;EGGX,kDHCiB;AGHnB;;AAKA;EACC;EACA;EACA;EACA,0CHFc;EGGb,kDHPiB;EGQjB,gBHFoB;AGAtB;;AAKA;EACE;EACA;AAFF;;AAKA;EACE;AAFF;;AAKA;EACE;EACA;EACA;AAFF;;AAIA;EACE;EACA,4CH3CW;AG0Cb;;;;AC1CA;EACE;EACA;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;EACA;AACF;;AAEA;EACE;AACF;;AAEA;EACE;EACA;AACF","sources":["webpack://[pc-name]/./src/visualizerBase.scss","webpack://[pc-name]/./src/_globals.scss","webpack://[pc-name]/./src/visualizationPanel.scss","webpack://[pc-name]/./src/text.scss","webpack://[pc-name]/./src/choices-table.scss","webpack://[pc-name]/./src/nps.scss"],"sourcesContent":["@import \"globals\";\n\n.sa-visualizer__toolbar {\n}\n\n.sa-visualizer__header {\n font-family: $font-family-secondary;\n font-size: $root-font-size;\n}\n\n.sa-visualizer__content {\n font-family: $font-family;\n display: inline-block;\n overflow: hidden;\n width: 100%;\n}\n\n.sa-visualizer__footer {\n margin-top: 10px;\n}\n\n.sa-visualizer__footer-title {\n display: inline-block;\n font-family: $font-family-secondary;\n font-size: $root-font-size;\n color: #404040;\n line-height: 34px;\n vertical-align: middle;\n margin: 0;\n}\n\n.sa-visualizer__footer-content {\n margin-top: 10px;\n}\n\n.sa-data-loading-indicator-panel {\n width: 100%;\n min-height: 200px;\n position: relative;\n}\n\n.sa-data-loading-indicator {\n position: absolute;\n width: 64px;\n height: 64px;\n left: calc((100% - 64px) / 2);\n top: calc((100% - 64px) / 2);\n animation: sa-data-loading-indicator-spinner 1s infinite linear;\n}\n\n@keyframes sa-data-loading-indicator-spinner {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(359deg);\n }\n}","$main-color: var(--main-color, #1ab394);\n$auxiliary-color: var(--auxiliary-color, #ff9814);\n$auxiliary-color-1: var(--auxiliary-color-1, #666666);\n$auxiliary-color-2: var(--auxiliary-color-2, #1948b3);\n$danger-color: var(--danger-color, #d9534f);\n$disabled-color: var(--disabled-color, #b0b0b0);\n\n$blue-color: var(--blue-color, #394cff);\n$purple-color: var(--purple-color, #aa42d0);\n$green-color: var(--green-color, #41c02c);\n\n$text-color-inverse: var(--text-color-inverse, #fff);\n$text-color: var(--text-color, #404040);\n\n$content-max-width: 1170px;\n\n$background-color: var(--background-color, #f7f7f7);\n$background-color-dark: var(--background-color-dark, #eeeeee);\n$background-disabled-color: var(--background-disabled-color, #b7b7b7);\n\n$border-color: var(--border-color, #e7e7e7);\n\n$form-element-height: 34px;\n\n$svg-color: var(--svg-color, rgba(#9f9f9f, 0.4));\n$svg-hover-color: var(--svg-hover-color, #9f9f9f);\n\n$font-family: var(--font-family, \"Segoe UI\", SegoeUI, Arial, sans-serif);\n$font-family-secondary: var(--font-family-secondary, Raleway, Arial, sans-serif);\n$root-font-size: var(--root-font-size, 14px);","@import \"globals\";\n\n.sa-panel__header {\n margin: 0 1em;\n}\n\n.sa-grid {\n position: relative;\n}\n\n.sa-grid__grid-sizer {\n width: 100%;\n box-sizing: border-box;\n @media screen and (min-width: 1400px) {\n width: 50%;\n }\n}\n\n.sa-question {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n box-sizing: border-box;\n overflow: hidden;\n padding: 1em;\n}\n\n.sa-question-layouted {\n position: absolute;\n\n @media screen and (min-width: 1400px) {\n width: calc(50% - 1px);\n }\n}\n\n.sa-question__content {\n background-color: $background-color;\n padding: 20px;\n}\n\n.sa-question__title {\n margin-left: 30px;\n font-family: $font-family-secondary;\n font-size: 18px;\n font-weight: bold;\n color: $text-color;\n margin: 0;\n margin-bottom: 1em;\n}\n\n.sa-question__title--draggable {\n cursor: move;\n &:after {\n content: \" \";\n display: block;\n float: right;\n width: 15px;\n height: 15px;\n background-image: url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg%3E%3Cpolygon style='fill: %231ab394' points='13,5 12,6 13,7 9,7 9,3 10,4 11,3 8,0 5,3 6,4 7,3 7,7 3,7 4,6 3,5 0,8 3,11 4,10 3,9 7,9 7,13 6,12 5,13 8,16 11,13 10,12 9,13 9,9 13,9 12,10 13,11 16,8 '/%3E%3C/g%3E%3C/svg%3E \");\n }\n}\n\n.sa-toolbar {\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n line-height: 34px;\n margin-bottom: 25px;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 10px;\n}\n.sa-toolbar.sa-toolbar > * {\n display: inline-flex;\n line-height: 1em;\n}\n\n.sa-toolbar__button {\n font-family: $font-family;\n font-size: $root-font-size;\n padding: 8px;\n vertical-align: middle;\n cursor: pointer;\n border: 1px solid transparent;\n white-space: nowrap;\n margin: 0 10px;\n\n &:hover {\n border-color: $border-color;\n background-blend-mode: darken;\n }\n &:first-child {\n margin-left: 0;\n }\n &:last-child {\n margin-right: 0;\n }\n}\n\n.sa-toolbar__svg-button {\n width: 15px;\n height: 15px;\n padding: 0;\n border: none;\n outline: none;\n background-color: inherit;\n cursor: pointer;\n use {\n fill: $svg-color;\n }\n &:hover {\n use {\n fill: $svg-hover-color;\n }\n }\n svg {\n width: 15px;\n height: 15px;\n }\n}\n\n.sa-toolbar__button--right {\n float: right;\n}\n\n// custom select\n.sa-question__select-wrapper {\n position: relative;\n display: inline-block;\n min-width: 100px;\n max-width: 300px;\n\n .sa-question__select {\n width: 100%;\n display: block;\n position: relative;\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-radius: 2px;\n background: $text-color-inverse;\n border-color: $border-color;\n height: $form-element-height;\n padding: 5px 23px 5px 15px;\n line-height: initial;\n\n &::-ms-expand {\n display: none;\n }\n\n &:focus {\n outline: 0;\n box-shadow: none;\n }\n\n &:disabled {\n color: $disabled-color;\n }\n }\n\n &:before {\n margin-top: -4px;\n top: 50%;\n right: 10px;\n z-index: 1;\n content: \"\";\n position: absolute;\n width: 4px;\n height: 4px;\n border-right: 2px solid $text-color;\n border-bottom: 2px solid $text-color;\n transform: rotate(45deg);\n box-sizing: content-box;\n pointer-events: none;\n }\n}\n// EO custom select\n\n.sa-question__filter {\n display: inline-block;\n padding: 0 1em;\n}\n\n.sa-question__filter-text {\n vertical-align: middle;\n margin-top: 1px;\n line-height: 32px;\n}\n\n.sa-commercial {\n font-size: 12px;\n padding: 1em 0 0.5em 2em;\n svg {\n width: 20px;\n height: 20px;\n fill: $main-color;\n }\n}\n.sa-commercial__text {\n font-weight: bold;\n text-decoration: none;\n color: $main-color;\n}\n.sa-commercial__product {\n padding-left: 0.5em;\n}\n\n/* latin-ext */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 400;\n src: local(\"Raleway\"), local(\"Raleway-Regular\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2)\n format(\"woff2\");\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,\n U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 400;\n src: local(\"Raleway\"), local(\"Raleway-Regular\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2)\n format(\"woff2\");\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,\n U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,\n U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 700;\n src: local(\"Raleway Bold\"), local(\"Raleway-Bold\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2)\n format(\"woff2\");\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,\n U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 700;\n src: local(\"Raleway Bold\"), local(\"Raleway-Bold\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2)\n format(\"woff2\");\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,\n U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,\n U+FEFF, U+FFFD;\n}\n","@import \"globals\";\n\n.sa-text-table__container {\n width: 100%;\n min-height: 200px;\n max-height: 500px;\n overflow: auto;\n}\n\n.sa-text-table {\n width: 100%;\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n border-width: 1px;\n\tborder-collapse: collapse;\n background-color: $background-color;\n}\n\n.sa-text-table__cell {\n\tborder-width: 1px;\n\tpadding: 8px;\n\tborder-style: solid;\n\tborder-color: $border-color;\n background-color: $background-color;\n min-height: $form-element-height;\n}\n","@import \"globals\";\n\n.sa-choices-table__container {\n width: 100%;\n min-height: 200px;\n max-height: 500px;\n overflow: auto;\n}\n\n.sa-choices-table {\n width: 100%;\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n\t// border-collapse: collapse;\n background-color: $background-color;\n}\n\n.sa-choices-table__cell {\n\tborder-width: 1px;\n\tpadding: 8px;\n\tborder-style: solid;\n\tborder-color: $border-color;\n background-color: $background-color;\n min-height: $form-element-height;\n}\n\n.sa-choices-table__cell-value {\n text-align: right;\n min-width: 30px;\n}\n\n.sa-choices-table__cell-header {\n font-weight: bold;\n}\n\n.sa-choices-sparkline {\n min-width: 100px;\n height: 24px;\n border: 1px solid $main-color;\n}\n.sa-choices-sparkline-value {\n height: 100%;\n background-color: $main-color;\n}",".sa-visualizer-nps {\n display: flex;\n flex-direction: row;\n gap: 16px;\n overflow-x: auto;\n}\n\n.sa-visualizer-nps__score-part {\n display: flex;\n flex-direction: column;\n padding: 0 16px;\n}\n\n.sa-visualizer-nps__score-part-title {\n font-size: 32px;\n text-align: center;\n color: #909090;\n}\n\n.sa-visualizer-nps__score-part-values {\n display: flex;\n flex-direction: row;\n gap: 16px;\n align-items: baseline;\n}\n\n.sa-visualizer-nps__score-part-value {\n font-size: 48px;\n}\n\n.sa-visualizer-nps__score-part-percent {\n font-size: 24px;\n color: #606060;\n}"],"names":[],"sourceRoot":""}
|
|
1
|
+
{"version":3,"file":"survey.analytics.css","mappings":";;;;;;;;AAKA;EACE,qECsBsB;EDrBtB,sCCsBe;AD1BjB;;AAOA;EACE,uECgBY;EDfZ;EACA;EACA;AAJF;;AAOA;EACE;AAJF;;AAOA;EACE;EACA,qECKsB;EDJtB,sCCKe;EDJf;EACA;EACA;EACA;AAJF;;AAOA;EACE;AAJF;;AAOA;EACE;EACA;EACA;AAJF;;AAOA;EACE;EACA;EACA;EACA;EACA;EACA;AAJF;;AAOA;EACE;IACI;EAJJ;EAMA;IACI;EAJJ;AACF;;;;AElDA;EACE;AADF;;AAIA;EACE;AADF;;AAIA;EACE;EACA;AADF;AAEE;EAHF;IAII;EACF;AACF;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;AACF;;AAEA;EACE;AACF;AACE;EAHF;IAII;EAEF;AACF;;AACA;EACE,kDDpBiB;ECqBjB;AAEF;;AACA;EACE;EACA,qEDdsB;ECetB;EACA;EACA,iCDjCW;ECkCX;EACA;AAEF;;AACA;EACE;AAEF;AADE;EACE;EACA;EACA;EACA;EACA;EACA;AAGJ;;AACA;EACE,uEDpCY;ECqCZ,sCDnCe;ECoCf,iCDrDW;ECsDX;EACA;EACA;EACA;EACA;EACA;AAEF;;AAAA;EACE;EACA;AAGF;;AAAA;EACE,uEDpDY;ECqDZ,sCDnDe;ECoDf;EACA;EACA;EACA;EACA;EACA;AAGF;AADE;EACE,0CDrEW;ECsEX;AAGJ;AADE;EACE;AAGJ;AADE;EACE;AAGJ;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;AAEF;AADE;EACE,gDDrFQ;ACwFZ;AAAI;EACE,qCDxFY;AC0FlB;AACE;EACE;EACA;AACJ;;AAGA;EACE;AAAF;;AAIA;EACE;EACA;EACA;EACA;AADF;AAGE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,2CDlIiB;ECmIjB,0CD1HW;EC2HX,YDzHkB;EC0HlB;EACA;AADJ;AAGI;EACE;AADN;AAII;EACE;EACA;AAFN;AAKI;EACE,qCDxJW;ACqJjB;AAOE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AALJ;;AAUA;EACE;EACA;AAPF;;AAUA;EACE;EACA;EACA;AAPF;;AAUA;EACE;EACA;AAPF;AAQE;EACE;EACA;EACA,gCDpMS;AC8Lb;;AASA;EACE;EACA;EACA,iCD1MW;ACoMb;;AAQA;EACE;AALF;;AAQA;AACA;EACE;EACA;EACA;EACA;EAGA;AAPF;AAUA;AACA;EACE;EACA;EACA;EACA;EAGA;AAVF;AAcA;AACA;EACE;EACA;EACA;EACA;EAGA;AAdF;AAiBA;AACA;EACE;EACA;EACA;EACA;EAGA;AAjBF;;;;ACvOA;EACE;EACA;EACA;EACA;AADF;;AAIA;EACE;EACA,uEFgBY;EEfZ,sCFiBe;EEhBf,iCFDW;EEEX;EACD;EACC;AADF;;AAIA;EACC;EACA;EACA;EACA,0CFHc;EEIb,kDFRiB;EESjB,gBFHoB;AEEtB;;;;ACtBA;EACE;EACA;EACA;EACA;AADF;;AAIA;EACE;EACA,uEHgBY;EGfZ,sCHiBe;EGhBf,iCHDW;EGGX,kDHCiB;AGHnB;;AAKA;EACC;EACA;EACA;EACA,0CHFc;EGGb,kDHPiB;EGQjB,gBHFoB;AGAtB;;AAKA;EACE;EACA;AAFF;;AAKA;EACE;AAFF;;AAKA;EACE;EACA;EACA;AAFF;;AAIA;EACE;EACA,4CH3CW;AG0Cb;;;;AC1CA;EACE;EACA;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;AACF;;AAEA;EACE;EACA;EACA;EACA;AACF;;AAEA;EACE;AACF;;AAEA;EACE;EACA;AACF","sources":["webpack://[pc-name]/./src/visualizerBase.scss","webpack://[pc-name]/./src/_globals.scss","webpack://[pc-name]/./src/visualizationPanel.scss","webpack://[pc-name]/./src/text.scss","webpack://[pc-name]/./src/statistics-table.scss","webpack://[pc-name]/./src/nps.scss"],"sourcesContent":["@import \"globals\";\n\n.sa-visualizer__toolbar {\n}\n\n.sa-visualizer__header {\n font-family: $font-family-secondary;\n font-size: $root-font-size;\n}\n\n.sa-visualizer__content {\n font-family: $font-family;\n display: inline-block;\n overflow: hidden;\n width: 100%;\n}\n\n.sa-visualizer__footer {\n margin-top: 10px;\n}\n\n.sa-visualizer__footer-title {\n display: inline-block;\n font-family: $font-family-secondary;\n font-size: $root-font-size;\n color: #404040;\n line-height: 34px;\n vertical-align: middle;\n margin: 0;\n}\n\n.sa-visualizer__footer-content {\n margin-top: 10px;\n}\n\n.sa-data-loading-indicator-panel {\n width: 100%;\n min-height: 200px;\n position: relative;\n}\n\n.sa-data-loading-indicator {\n position: absolute;\n width: 64px;\n height: 64px;\n left: calc((100% - 64px) / 2);\n top: calc((100% - 64px) / 2);\n animation: sa-data-loading-indicator-spinner 1s infinite linear;\n}\n\n@keyframes sa-data-loading-indicator-spinner {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(359deg);\n }\n}","$main-color: var(--main-color, #1ab394);\n$auxiliary-color: var(--auxiliary-color, #ff9814);\n$auxiliary-color-1: var(--auxiliary-color-1, #666666);\n$auxiliary-color-2: var(--auxiliary-color-2, #1948b3);\n$danger-color: var(--danger-color, #d9534f);\n$disabled-color: var(--disabled-color, #b0b0b0);\n\n$blue-color: var(--blue-color, #394cff);\n$purple-color: var(--purple-color, #aa42d0);\n$green-color: var(--green-color, #41c02c);\n\n$text-color-inverse: var(--text-color-inverse, #fff);\n$text-color: var(--text-color, #404040);\n\n$content-max-width: 1170px;\n\n$background-color: var(--background-color, #f7f7f7);\n$background-color-dark: var(--background-color-dark, #eeeeee);\n$background-disabled-color: var(--background-disabled-color, #b7b7b7);\n\n$border-color: var(--border-color, #e7e7e7);\n\n$form-element-height: 34px;\n\n$svg-color: var(--svg-color, rgba(#9f9f9f, 0.4));\n$svg-hover-color: var(--svg-hover-color, #9f9f9f);\n\n$font-family: var(--font-family, \"Segoe UI\", SegoeUI, Arial, sans-serif);\n$font-family-secondary: var(--font-family-secondary, Raleway, Arial, sans-serif);\n$root-font-size: var(--root-font-size, 14px);","@import \"globals\";\n\n.sa-panel__header {\n margin: 0 1em;\n}\n\n.sa-grid {\n position: relative;\n}\n\n.sa-grid__grid-sizer {\n width: 100%;\n box-sizing: border-box;\n @media screen and (min-width: 1400px) {\n width: 50%;\n }\n}\n\n.sa-question {\n display: inline-block;\n width: 100%;\n vertical-align: top;\n box-sizing: border-box;\n overflow: hidden;\n padding: 1em;\n}\n\n.sa-question-layouted {\n position: absolute;\n\n @media screen and (min-width: 1400px) {\n width: calc(50% - 1px);\n }\n}\n\n.sa-question__content {\n background-color: $background-color;\n padding: 20px;\n}\n\n.sa-question__title {\n margin-left: 30px;\n font-family: $font-family-secondary;\n font-size: 18px;\n font-weight: bold;\n color: $text-color;\n margin: 0;\n margin-bottom: 1em;\n}\n\n.sa-question__title--draggable {\n cursor: move;\n &:after {\n content: \" \";\n display: block;\n float: right;\n width: 15px;\n height: 15px;\n background-image: url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg%3E%3Cpolygon style='fill: %231ab394' points='13,5 12,6 13,7 9,7 9,3 10,4 11,3 8,0 5,3 6,4 7,3 7,7 3,7 4,6 3,5 0,8 3,11 4,10 3,9 7,9 7,13 6,12 5,13 8,16 11,13 10,12 9,13 9,9 13,9 12,10 13,11 16,8 '/%3E%3C/g%3E%3C/svg%3E \");\n }\n}\n\n.sa-toolbar {\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n line-height: 34px;\n margin-bottom: 25px;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 10px;\n}\n.sa-toolbar.sa-toolbar > * {\n display: inline-flex;\n line-height: 1em;\n}\n\n.sa-toolbar__button {\n font-family: $font-family;\n font-size: $root-font-size;\n padding: 8px;\n vertical-align: middle;\n cursor: pointer;\n border: 1px solid transparent;\n white-space: nowrap;\n margin: 0 10px;\n\n &:hover {\n border-color: $border-color;\n background-blend-mode: darken;\n }\n &:first-child {\n margin-left: 0;\n }\n &:last-child {\n margin-right: 0;\n }\n}\n\n.sa-toolbar__svg-button {\n width: 15px;\n height: 15px;\n padding: 0;\n border: none;\n outline: none;\n background-color: inherit;\n cursor: pointer;\n use {\n fill: $svg-color;\n }\n &:hover {\n use {\n fill: $svg-hover-color;\n }\n }\n svg {\n width: 15px;\n height: 15px;\n }\n}\n\n.sa-toolbar__button--right {\n float: right;\n}\n\n// custom select\n.sa-question__select-wrapper {\n position: relative;\n display: inline-block;\n min-width: 100px;\n max-width: 300px;\n\n .sa-question__select {\n width: 100%;\n display: block;\n position: relative;\n appearance: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n border-radius: 2px;\n background: $text-color-inverse;\n border-color: $border-color;\n height: $form-element-height;\n padding: 5px 23px 5px 15px;\n line-height: initial;\n\n &::-ms-expand {\n display: none;\n }\n\n &:focus {\n outline: 0;\n box-shadow: none;\n }\n\n &:disabled {\n color: $disabled-color;\n }\n }\n\n &:before {\n margin-top: -4px;\n top: 50%;\n right: 10px;\n z-index: 1;\n content: \"\";\n position: absolute;\n width: 4px;\n height: 4px;\n border-right: 2px solid $text-color;\n border-bottom: 2px solid $text-color;\n transform: rotate(45deg);\n box-sizing: content-box;\n pointer-events: none;\n }\n}\n// EO custom select\n\n.sa-question__filter {\n display: inline-block;\n padding: 0 1em;\n}\n\n.sa-question__filter-text {\n vertical-align: middle;\n margin-top: 1px;\n line-height: 32px;\n}\n\n.sa-commercial {\n font-size: 12px;\n padding: 1em 0 0.5em 2em;\n svg {\n width: 20px;\n height: 20px;\n fill: $main-color;\n }\n}\n.sa-commercial__text {\n font-weight: bold;\n text-decoration: none;\n color: $main-color;\n}\n.sa-commercial__product {\n padding-left: 0.5em;\n}\n\n/* latin-ext */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 400;\n src: local(\"Raleway\"), local(\"Raleway-Regular\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2)\n format(\"woff2\");\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,\n U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 400;\n src: local(\"Raleway\"), local(\"Raleway-Regular\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2)\n format(\"woff2\");\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,\n U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,\n U+FEFF, U+FFFD;\n}\n/* latin-ext */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 700;\n src: local(\"Raleway Bold\"), local(\"Raleway-Bold\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2)\n format(\"woff2\");\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,\n U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: \"Raleway\";\n font-style: normal;\n font-weight: 700;\n src: local(\"Raleway Bold\"), local(\"Raleway-Bold\"),\n url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2)\n format(\"woff2\");\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,\n U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,\n U+FEFF, U+FFFD;\n}\n","@import \"globals\";\n\n.sa-text-table__container {\n width: 100%;\n min-height: 200px;\n max-height: 500px;\n overflow: auto;\n}\n\n.sa-text-table {\n width: 100%;\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n border-width: 1px;\n\tborder-collapse: collapse;\n background-color: $background-color;\n}\n\n.sa-text-table__cell {\n\tborder-width: 1px;\n\tpadding: 8px;\n\tborder-style: solid;\n\tborder-color: $border-color;\n background-color: $background-color;\n min-height: $form-element-height;\n}\n","@import \"globals\";\n\n.sa-statistics-table__container {\n width: 100%;\n min-height: 200px;\n max-height: 500px;\n overflow: auto;\n}\n\n.sa-statistics-table {\n width: 100%;\n font-family: $font-family;\n font-size: $root-font-size;\n color: $text-color;\n\t// border-collapse: collapse;\n background-color: $background-color;\n}\n\n.sa-statistics-table__cell {\n\tborder-width: 1px;\n\tpadding: 8px;\n\tborder-style: solid;\n\tborder-color: $border-color;\n background-color: $background-color;\n min-height: $form-element-height;\n}\n\n.sa-statistics-table__cell-value {\n text-align: right;\n min-width: 30px;\n}\n\n.sa-statistics-table__cell-header {\n font-weight: bold;\n}\n\n.sa-choices-sparkline {\n min-width: 100px;\n height: 24px;\n border: 1px solid $main-color;\n}\n.sa-choices-sparkline-value {\n height: 100%;\n background-color: $main-color;\n}",".sa-visualizer-nps {\n display: flex;\n flex-direction: row;\n gap: 16px;\n overflow-x: auto;\n}\n\n.sa-visualizer-nps__score-part {\n display: flex;\n flex-direction: column;\n padding: 0 16px;\n}\n\n.sa-visualizer-nps__score-part-title {\n font-size: 32px;\n text-align: center;\n color: #909090;\n}\n\n.sa-visualizer-nps__score-part-values {\n display: flex;\n flex-direction: row;\n gap: 16px;\n align-items: baseline;\n}\n\n.sa-visualizer-nps__score-part-value {\n font-size: 48px;\n}\n\n.sa-visualizer-nps__score-part-percent {\n font-size: 24px;\n color: #606060;\n}"],"names":[],"sourceRoot":""}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v1.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v1.12.1
|
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -287,6 +287,7 @@ var englishStrings = {
|
|
|
287
287
|
chartType_scatter: "Scatter",
|
|
288
288
|
chartType_gauge: "Gauge",
|
|
289
289
|
chartType_bullet: "Bullet",
|
|
290
|
+
chartType_line: "Line",
|
|
290
291
|
hideButton: "Hide",
|
|
291
292
|
makePrivateButton: "Make private",
|
|
292
293
|
makePublicButton: "Make public",
|
|
@@ -323,6 +324,8 @@ var englishStrings = {
|
|
|
323
324
|
answer: "Answer",
|
|
324
325
|
correctAnswer: "Correct answer: ",
|
|
325
326
|
percent: "Percent",
|
|
327
|
+
percentage: "Percentage",
|
|
328
|
+
statistics_chart: "Chart",
|
|
326
329
|
responses: "Responses",
|
|
327
330
|
visualizer_nps: "NPS",
|
|
328
331
|
npsScore: "NPS",
|