survey-analytics 2.3.15 → 2.3.16
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 +2 -2
- package/fesm/shared.mjs +1 -1
- package/fesm/shared2.mjs +1 -1
- package/fesm/survey.analytics.core.mjs +1 -1
- package/fesm/survey.analytics.mjs +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.tabulator.mjs +1 -1
- package/package.json +28 -14
- package/survey.analytics.core.css +2 -2
- package/survey.analytics.core.js +2 -2
- package/survey.analytics.core.min.css +2 -2
- package/survey.analytics.core.min.js.LICENSE.txt +2 -2
- package/survey.analytics.css +2 -2
- package/survey.analytics.js +2 -2
- package/survey.analytics.min.css +2 -2
- package/survey.analytics.min.js.LICENSE.txt +2 -2
- package/survey.analytics.mongo.js +2 -2
- package/survey.analytics.mongo.min.js.LICENSE.txt +2 -2
- package/survey.analytics.tabulator.css +2 -2
- package/survey.analytics.tabulator.js +2 -2
- package/survey.analytics.tabulator.min.css +2 -2
- package/survey.analytics.tabulator.min.js.LICENSE.txt +2 -2
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
[](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=7&branchName=master)
|
|
8
|
-
<a href="https://github.com/
|
|
9
|
-
<img alt="Tested with
|
|
8
|
+
<a href="https://github.com/microsoft/playwright">
|
|
9
|
+
<img alt="Tested with Playwright" src="https://img.shields.io/badge/tested%20with-Playwright-2fa4cf.svg">
|
|
10
10
|
</a>
|
|
11
11
|
<a href="https://github.com/surveyjs/survey-analytics/issues">
|
|
12
12
|
<img alt="Open Issues" title="Open Issues" src="https://img.shields.io/github/issues/surveyjs/survey-analytics.svg">
|
package/fesm/shared.mjs
CHANGED
package/fesm/shared2.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
+
"version": "2.3.16",
|
|
3
|
+
"name": "survey-analytics",
|
|
2
4
|
"scripts": {
|
|
3
5
|
"start": "webpack-dev-server --env buildType=dev",
|
|
4
6
|
"test": "jest",
|
|
@@ -21,28 +23,16 @@
|
|
|
21
23
|
"pre-push-check": "npm run lint && npm run test",
|
|
22
24
|
"pwinst": "playwright install chromium"
|
|
23
25
|
},
|
|
24
|
-
"version": "2.3.15",
|
|
25
|
-
"name": "survey-analytics",
|
|
26
|
-
"description": "SurveyJS analytics Library.",
|
|
27
26
|
"main": "survey.analytics.js",
|
|
28
27
|
"files": [
|
|
29
28
|
"**/*"
|
|
30
29
|
],
|
|
31
30
|
"typings": "survey.analytics.d.ts",
|
|
32
31
|
"private": false,
|
|
33
|
-
"keywords": [
|
|
34
|
-
"Survey",
|
|
35
|
-
"JavaScript",
|
|
36
|
-
"Library",
|
|
37
|
-
"SurveyJS",
|
|
38
|
-
"Analytics"
|
|
39
|
-
],
|
|
40
32
|
"repository": {
|
|
41
33
|
"type": "git",
|
|
42
34
|
"url": "https://github.com/surveyjs/survey-analytics.git"
|
|
43
35
|
},
|
|
44
|
-
"homepage": "https://surveyjs.io/",
|
|
45
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
46
36
|
"dependencies": {
|
|
47
37
|
"mongodb": "^6.20.0",
|
|
48
38
|
"muuri": "^0.8.0",
|
|
@@ -97,7 +87,7 @@
|
|
|
97
87
|
"@types/mongodb": "^4.0.6",
|
|
98
88
|
"@types/plotly.js-dist-min": "^2.3.0",
|
|
99
89
|
"@types/tabulator-tables": "^6.2.3",
|
|
100
|
-
"survey-core": "2.3.
|
|
90
|
+
"survey-core": "2.3.16"
|
|
101
91
|
},
|
|
102
92
|
"husky": {
|
|
103
93
|
"hooks": {
|
|
@@ -127,5 +117,29 @@
|
|
|
127
117
|
"require": "./survey.analytics.tabulator.js"
|
|
128
118
|
}
|
|
129
119
|
},
|
|
130
|
-
"module": "fesm/survey.analytics.mjs"
|
|
120
|
+
"module": "fesm/survey.analytics.mjs",
|
|
121
|
+
"homepage": "https://surveyjs.io/",
|
|
122
|
+
"author": "DevSoft Baltic OÜ <info@devsoftbaltic.com>",
|
|
123
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
124
|
+
"licenseUrl": "https://surveyjs.io/licensing",
|
|
125
|
+
"description": "SurveyJS Dashboard is a UI component for visualizing and analyzing survey data. It interprets the form JSON schema to identify question types and renders collected responses using interactive charts and tables.",
|
|
126
|
+
"keywords": [
|
|
127
|
+
"survey",
|
|
128
|
+
"form",
|
|
129
|
+
"surveyjs",
|
|
130
|
+
"dashboard",
|
|
131
|
+
"analytics",
|
|
132
|
+
"data-visualization",
|
|
133
|
+
"charts",
|
|
134
|
+
"tables",
|
|
135
|
+
"survey-results",
|
|
136
|
+
"survey-data",
|
|
137
|
+
"survey-analysis",
|
|
138
|
+
"json",
|
|
139
|
+
"data-analysis",
|
|
140
|
+
"survey-library",
|
|
141
|
+
"reporting",
|
|
142
|
+
"data-management",
|
|
143
|
+
"visualize-survey"
|
|
144
|
+
]
|
|
131
145
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
/*!**************************************************************************************************************************************************************************!*\
|
|
7
7
|
!*** 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/visualizerBase.scss ***!
|
package/survey.analytics.core.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7
7
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
.sa-visualizer__header{font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:var(--root-font-size, 14px)}.sa-visualizer__content{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);display:inline-block;overflow:hidden;width:100%}.sa-visualizer__footer{margin-top:10px}.sa-visualizer__footer-title{display:inline-block;font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:var(--root-font-size, 14px);color:#404040;line-height:34px;vertical-align:middle;margin:0}.sa-visualizer__footer-content{margin-top:10px}.sa-data-loading-indicator-panel{width:100%;min-height:200px;position:relative}.sa-data-loading-indicator{position:absolute;width:64px;height:64px;left:calc((100% - 64px)/2);top:calc((100% - 64px)/2);animation:sa-data-loading-indicator-spinner 1s infinite linear}@keyframes sa-data-loading-indicator-spinner{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}
|
|
7
7
|
.sa-commercial{box-sizing:border-box;padding:var(--sjs2-spacing-static-x150, 12px) var(--sjs2-spacing-static-x600, 48px);justify-content:center;width:100%;background:var(--sjs2-color-bg-brand-primary, #19B394)}@media screen and (max-width: 600px){.sa-commercial{padding:var(--sjs2-spacing-static-x100, 8px) var(--sjs2-spacing-static-x300, 24px)}}.sa-commercial__text{text-decoration:none;color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px)}@media screen and (max-width: 600px){.sa-commercial__text{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-commercial__text a{color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px);text-decoration-line:underline;text-decoration-style:solid;text-decoration-skip-ink:auto;text-decoration-thickness:5%;text-underline-offset:10%;text-underline-position:from-font}@media screen and (max-width: 600px){.sa-commercial__text a{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-panel__header{margin:0 1em}.sa-grid{position:relative}.sa-grid__grid-sizer{width:100%;box-sizing:border-box}@media screen and (min-width: 1400px){.sa-grid__grid-sizer{width:50%}}.sa-question{display:inline-block;width:100%;vertical-align:top;box-sizing:border-box;overflow:hidden;padding:1em}.sa-question-layouted{position:absolute}@media screen and (min-width: 1400px){.sa-question-layouted{width:calc(50% - 1px)}}.sa-question__content{background-color:var(--background-color, #f7f7f7);padding:20px}.sa-question__title{margin-left:30px;font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:18px;font-weight:bold;color:var(--text-color, #404040);margin:0;margin-bottom:1em}.sa-question__title--draggable{cursor:move}.sa-question__title--draggable:after{content:" ";display:block;float:right;width:15px;height:15px;background-image:url("data:image/svg+xml,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cg%3E%3Cpolygon style=%27fill: %231ab394%27 points=%2713,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 %27/%3E%3C/g%3E%3C/svg%3E")}[dir=rtl] .sa-question__title--draggable:after,[style*="direction: rtl"] .sa-question__title--draggable:after,[style*="direction:rtl"] .sa-question__title--draggable:after{float:left}.sa-toolbar{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--root-font-size, 14px);color:var(--text-color, #404040);line-height:34px;margin-bottom:25px;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px}.sa-toolbar.sa-toolbar>*{display:inline-flex;line-height:1em}.sa-toolbar__button{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--root-font-size, 14px);padding:8px;vertical-align:middle;cursor:pointer;border:1px solid rgba(0,0,0,0);white-space:nowrap;margin:0 10px}.sa-toolbar__button:hover{border-color:var(--border-color, #e7e7e7);background-blend-mode:darken}.sa-toolbar__button:first-child{margin-left:0}.sa-toolbar__button:last-child{margin-right:0}.sa-toolbar__svg-button{width:15px;height:15px;padding:0;border:none;outline:none;background-color:inherit;cursor:pointer}.sa-toolbar__svg-button use{fill:var(--svg-color, rgba(159, 159, 159, 0.4))}.sa-toolbar__svg-button:hover use{fill:var(--svg-hover-color, #9f9f9f)}.sa-toolbar__svg-button svg{width:15px;height:15px}.sa-toolbar__button--right{float:right}.sa-question__select-wrapper{position:relative;display:inline-block;min-width:100px;max-width:300px}.sa-question__select-wrapper .sa-question__select-title{white-space:nowrap;display:inline-block;line-height:34px;padding-right:8px}.sa-question__select-wrapper .sa-question__select{width:100%;display:block;position:relative;appearance:none;-webkit-appearance:none;-moz-appearance:none;border-radius:2px;background:var(--text-color-inverse, #fff);border-color:var(--border-color, #e7e7e7);height:34px;padding:5px 23px 5px 15px;line-height:initial}.sa-question__select-wrapper .sa-question__select::-ms-expand{display:none}.sa-question__select-wrapper .sa-question__select:focus{outline:0;box-shadow:none}.sa-question__select-wrapper .sa-question__select:disabled{color:var(--disabled-color, #b0b0b0)}.sa-question__select-wrapper:before{margin-top:-4px;top:50%;right:10px;z-index:1;content:"";position:absolute;width:4px;height:4px;border-right:2px solid var(--text-color, #404040);border-bottom:2px solid var(--text-color, #404040);transform:rotate(45deg);box-sizing:content-box;pointer-events:none}.sa-question__filter{display:inline-block;padding:0 1em}.sa-question__filter-text{vertical-align:middle;margin-top:1px;line-height:32px}@font-face{font-family:"Raleway";font-style:normal;font-weight:400;src:local("Raleway"),local("Raleway-Regular"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Raleway";font-style:normal;font-weight:400;src:local("Raleway"),local("Raleway-Regular"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Raleway";font-style:normal;font-weight:700;src:local("Raleway Bold"),local("Raleway-Bold"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Raleway";font-style:normal;font-weight:700;src:local("Raleway Bold"),local("Raleway-Bold"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/**
|
package/survey.analytics.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
/*!**************************************************************************************************************************************************************************!*\
|
|
7
7
|
!*** 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/visualizerBase.scss ***!
|
package/survey.analytics.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7
7
|
if(typeof exports === 'object' && typeof module === 'object')
|
package/survey.analytics.min.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
.sa-visualizer__header{font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:var(--root-font-size, 14px)}.sa-visualizer__content{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);display:inline-block;overflow:hidden;width:100%}.sa-visualizer__footer{margin-top:10px}.sa-visualizer__footer-title{display:inline-block;font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:var(--root-font-size, 14px);color:#404040;line-height:34px;vertical-align:middle;margin:0}.sa-visualizer__footer-content{margin-top:10px}.sa-data-loading-indicator-panel{width:100%;min-height:200px;position:relative}.sa-data-loading-indicator{position:absolute;width:64px;height:64px;left:calc((100% - 64px)/2);top:calc((100% - 64px)/2);animation:sa-data-loading-indicator-spinner 1s infinite linear}@keyframes sa-data-loading-indicator-spinner{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}
|
|
7
7
|
.sa-commercial{box-sizing:border-box;padding:var(--sjs2-spacing-static-x150, 12px) var(--sjs2-spacing-static-x600, 48px);justify-content:center;width:100%;background:var(--sjs2-color-bg-brand-primary, #19B394)}@media screen and (max-width: 600px){.sa-commercial{padding:var(--sjs2-spacing-static-x100, 8px) var(--sjs2-spacing-static-x300, 24px)}}.sa-commercial__text{text-decoration:none;color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px)}@media screen and (max-width: 600px){.sa-commercial__text{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-commercial__text a{color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px);text-decoration-line:underline;text-decoration-style:solid;text-decoration-skip-ink:auto;text-decoration-thickness:5%;text-underline-offset:10%;text-underline-position:from-font}@media screen and (max-width: 600px){.sa-commercial__text a{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-panel__header{margin:0 1em}.sa-grid{position:relative}.sa-grid__grid-sizer{width:100%;box-sizing:border-box}@media screen and (min-width: 1400px){.sa-grid__grid-sizer{width:50%}}.sa-question{display:inline-block;width:100%;vertical-align:top;box-sizing:border-box;overflow:hidden;padding:1em}.sa-question-layouted{position:absolute}@media screen and (min-width: 1400px){.sa-question-layouted{width:calc(50% - 1px)}}.sa-question__content{background-color:var(--background-color, #f7f7f7);padding:20px}.sa-question__title{margin-left:30px;font-family:var(--font-family-secondary, Raleway, Arial, sans-serif);font-size:18px;font-weight:bold;color:var(--text-color, #404040);margin:0;margin-bottom:1em}.sa-question__title--draggable{cursor:move}.sa-question__title--draggable:after{content:" ";display:block;float:right;width:15px;height:15px;background-image:url("data:image/svg+xml,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cg%3E%3Cpolygon style=%27fill: %231ab394%27 points=%2713,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 %27/%3E%3C/g%3E%3C/svg%3E")}[dir=rtl] .sa-question__title--draggable:after,[style*="direction: rtl"] .sa-question__title--draggable:after,[style*="direction:rtl"] .sa-question__title--draggable:after{float:left}.sa-toolbar{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--root-font-size, 14px);color:var(--text-color, #404040);line-height:34px;margin-bottom:25px;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px}.sa-toolbar.sa-toolbar>*{display:inline-flex;line-height:1em}.sa-toolbar__button{font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--root-font-size, 14px);padding:8px;vertical-align:middle;cursor:pointer;border:1px solid rgba(0,0,0,0);white-space:nowrap;margin:0 10px}.sa-toolbar__button:hover{border-color:var(--border-color, #e7e7e7);background-blend-mode:darken}.sa-toolbar__button:first-child{margin-left:0}.sa-toolbar__button:last-child{margin-right:0}.sa-toolbar__svg-button{width:15px;height:15px;padding:0;border:none;outline:none;background-color:inherit;cursor:pointer}.sa-toolbar__svg-button use{fill:var(--svg-color, rgba(159, 159, 159, 0.4))}.sa-toolbar__svg-button:hover use{fill:var(--svg-hover-color, #9f9f9f)}.sa-toolbar__svg-button svg{width:15px;height:15px}.sa-toolbar__button--right{float:right}.sa-question__select-wrapper{position:relative;display:inline-block;min-width:100px;max-width:300px}.sa-question__select-wrapper .sa-question__select-title{white-space:nowrap;display:inline-block;line-height:34px;padding-right:8px}.sa-question__select-wrapper .sa-question__select{width:100%;display:block;position:relative;appearance:none;-webkit-appearance:none;-moz-appearance:none;border-radius:2px;background:var(--text-color-inverse, #fff);border-color:var(--border-color, #e7e7e7);height:34px;padding:5px 23px 5px 15px;line-height:initial}.sa-question__select-wrapper .sa-question__select::-ms-expand{display:none}.sa-question__select-wrapper .sa-question__select:focus{outline:0;box-shadow:none}.sa-question__select-wrapper .sa-question__select:disabled{color:var(--disabled-color, #b0b0b0)}.sa-question__select-wrapper:before{margin-top:-4px;top:50%;right:10px;z-index:1;content:"";position:absolute;width:4px;height:4px;border-right:2px solid var(--text-color, #404040);border-bottom:2px solid var(--text-color, #404040);transform:rotate(45deg);box-sizing:content-box;pointer-events:none}.sa-question__filter{display:inline-block;padding:0 1em}.sa-question__filter-text{vertical-align:middle;margin-top:1px;line-height:32px}@font-face{font-family:"Raleway";font-style:normal;font-weight:400;src:local("Raleway"),local("Raleway-Regular"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Raleway";font-style:normal;font-weight:400;src:local("Raleway"),local("Raleway-Regular"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ITw.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Raleway";font-style:normal;font-weight:700;src:local("Raleway Bold"),local("Raleway-Bold"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqhPAMif.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Raleway";font-style:normal;font-weight:700;src:local("Raleway Bold"),local("Raleway-Bold"),url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPAA.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7
7
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
/*!****************************************************************************************************************************************************************************!*\
|
|
7
7
|
!*** 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/tables/tabulator.scss ***!
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
7
7
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
.sa-commercial{box-sizing:border-box;padding:var(--sjs2-spacing-static-x150, 12px) var(--sjs2-spacing-static-x600, 48px);justify-content:center;width:100%;background:var(--sjs2-color-bg-brand-primary, #19B394)}@media screen and (max-width: 600px){.sa-commercial{padding:var(--sjs2-spacing-static-x100, 8px) var(--sjs2-spacing-static-x300, 24px)}}.sa-commercial__text{text-decoration:none;color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px)}@media screen and (max-width: 600px){.sa-commercial__text{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-commercial__text a{color:var(--sjs2-color-fg-static-main-primary, #FFF);text-align:center;font-family:var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);font-size:var(--sjs2-font-size-semantic-default, 16px);font-style:normal;font-weight:600;line-height:var(--sjs2-line-height-semantic-default, 24px);text-decoration-line:underline;text-decoration-style:solid;text-decoration-skip-ink:auto;text-decoration-thickness:5%;text-underline-offset:10%;text-underline-position:from-font}@media screen and (max-width: 600px){.sa-commercial__text a{font-size:var(--sjs2-font-size-semantic-small, 12px);line-height:var(--sjs2-line-height-semantic-small, 16px)}}.sa-table{font-size:var(--root-font-size, 14px);font-family:var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif)}.sa-table button{cursor:pointer;background-color:inherit;outline:none}.sa-table select{line-height:initial;appearance:none;-webkit-appearance:none;-moz-appearance:none;background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,repeat;background-position:right .7em top 50%,0 0;background-size:.57em 100%;height:34px;border-radius:2px;border:solid 1px #d4d4d4;box-sizing:border-box;font-family:inherit;font-size:inherit;padding:.25em 2em .25em .87em}.sa-table select:focus{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%231AB394;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E");border-color:#d4d4d4;outline:none}.sa-table select::-ms-expand{display:none}.sa-table input{height:34px;border:none;border-bottom:.06em solid #d4d4d4;box-sizing:border-box;font-family:inherit;font-size:inherit;padding:.25em 1.5em .25em .87em;background:rgba(0,0,0,0)}.sa-table input:focus{border-color:var(--main-color, #1ab394);outline:none}.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row{background-color:#f7f7f7}.sa-table__detail-table.sa-table__detail-table{width:100%;border-collapse:collapse;border-right:1px solid #d4d4d4;border-bottom:none}.sa-table__detail{border-top:1px solid #d4d4d4}.sa-table__detail td{box-sizing:border-box;padding:20px;border-left:none;border-right:none;white-space:initial}.sa-table__detail td:first-child{width:267px;border-left:none;font-weight:bold}.sa-table__detail td:nth-child(2){width:208px}.sa-table__btn{height:34px;width:154px;font-size:var(--root-font-size, 14px);font-weight:bold;background-color:rgba(0,0,0,0);box-sizing:border-box;border:solid 2px;border-radius:17px;padding:0;outline:none}a.sa-table__btn{display:inline-block;text-align:center;padding-top:5px}.sa-table__btn--small{width:99px}.sa-table__btn--gray{border-color:#a0a0a0;color:#a0a0a0}.sa-table__btn--gray:hover{background-color:#9b9b9b;color:var(--text-color-inverse, #fff)}.sa-table__btn--green{border-color:var(--main-color, #1ab394);color:var(--main-color, #1ab394)}.sa-table__btn--green:hover{background-color:var(--main-color, #1ab394);color:var(--text-color-inverse, #fff)}.sa-table__svg-button{width:15px;height:15px;padding:0;border:none}.sa-table__svg-button use{fill:var(--svg-color, rgba(159, 159, 159, 0.4))}.sa-table__svg-button:hover use{fill:var(--svg-hover-color, #9f9f9f)}.sa-table__svg-button svg{width:15px;height:15px}.sa-table__action-container{margin-bottom:10px;white-space:normal}.sa-table__action-container .sa-table__svg-button{float:right;margin:0 0 13px 13px;pointer-events:all}.sa-table__action-container:after{content:"";display:table;clear:both}.sa-table__action-container .sa-table__drag-button{float:left;cursor:move}.sa-table__action-container .sa-table__drag-button use{fill:var(--main-color, #1ab394)}.sa-table__action-container .sa-table__drag-button:hover use{fill:var(--main-color, #1ab394)}.sa-table__global-filter.sa-table__global-filter,.sa-table__filter.sa-table__filter{background:rgba(0,0,0,0);background-image:url("data:image/svg+xml;charset=utf8,%3C?xml%20version=%271.0%27%20encoding=%27utf-8%27?%3E%3C%21--%20Generator:%20Adobe%20Illustrator%2024.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200%29%20--%3E%3Csvg%20version=%271.1%27%20id=%27Layer_1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20x=%270px%27%20y=%270px%27%20viewBox=%270%200%2016%2016%27%20style=%27enable-background:new%200%200%2016%2016;%27%20xml:space=%27preserve%27%3E%3Cstyle%20type=%27text/css%27%3E%20.st0{fill:%239F9E9E;}%20%3C/style%3E%3Cpath%20class=%27st0%27%20d=%27M13.56,11.44L11.3,9.18C11.74,8.38,12,7.47,12,6.5C12,3.47,9.53,1,6.5,1S1,3.47,1,6.5C1,9.53,3.47,12,6.5,12%20c0.97,0,1.88-0.26,2.68-0.7l2.26,2.26c0.29,0.29,0.66,0.43,1.04,0.44c0.39,0.01,0.78-0.14,1.08-0.44c0.3-0.3,0.44-0.69,0.44-1.08%20C13.99,12.1,13.85,11.72,13.56,11.44z%20M4,6.5C4,5.12,5.12,4,6.5,4S9,5.12,9,6.5S7.88,9,6.5,9S4,7.88,4,6.5z%27/%3E%3C/svg%3E");background-repeat:no-repeat,repeat;background-position:left .7em top 50%,0 0;background-size:1em 100%;padding-left:35px;border:solid 1px #d4d4d4;pointer-events:all}.sa-table__filter.sa-table__filter{width:100%}.sa-table__show-column.sa-table__show-column{background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 16 16%27 style=%27enable-background:new 0 0 16 16;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D .st1%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class=%27st1%27 d=%27M8,2.03C3.63,2.03,0,8,0,8s3.63,6.03,8,6.03s8-6,8-6S12.37,2.03,8,2.03z M8,12c-2.58,0-5.13-2.81-6-4 c1.07-1.47,3.61-4,6-4c2.58,0,5.13,2.81,6,4C12.93,9.47,10.39,12,8,12z%27/%3E%3Ccircle class=%27st1%27 cx=%278%27 cy=%278%27 r=%273%27/%3E%3C/g%3E%3C/svg%3E"),url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,no-repeat;background-position:left .7em top 50%,right .7em top 50%;background-size:1em 100%,.57em 100%;padding-left:35px;border:solid 1px #d4d4d4;pointer-events:all;margin-left:20px}.sa-table__show-column.sa-table__show-column:focus{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 16 16%27 style=%27enable-background:new 0 0 16 16;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D .st1%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class=%27st1%27 d=%27M8,2.03C3.63,2.03,0,8,0,8s3.63,6.03,8,6.03s8-6,8-6S12.37,2.03,8,2.03z M8,12c-2.58,0-5.13-2.81-6-4 c1.07-1.47,3.61-4,6-4c2.58,0,5.13,2.81,6,4C12.93,9.47,10.39,12,8,12z%27/%3E%3Ccircle class=%27st1%27 cx=%278%27 cy=%278%27 r=%273%27/%3E%3C/g%3E%3C/svg%3E"),url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%231AB394;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E") !important}.sa-table__entries{float:right;white-space:nowrap}.sa-table__entries-label{font-weight:bold}.sa-table__entries-label--right{margin-right:5px}.sa-table__entries-label--left{margin-left:5px}.sa-table__detail-row{background-color:#f7f7f7}.sa-table__detail-table{background-color:#f7f7f7}.sa-table input.sa-table__row-extension{height:auto}.sa-table__row-extension+.sa-table__row-extension{margin-left:10px;vertical-align:middle}.sa-table__header-extensions{float:left;margin-left:10px;width:calc(100% - 540px)}.sa-table__header-extension+.sa-table__header-extension{margin-left:10px}.sa-tabulator__header{padding:20px 13px;background-color:#f7f7f7;overflow:auto;display:flex;flex-direction:row;gap:10px;flex-wrap:wrap}.sa-tabulator__header:after{content:"";clear:both;display:block}.sa-tabulator__header .sa-table__header-space{display:flex;flex-grow:1}.sa-tabulator__header .sa-table__entries{float:none;line-height:34px;display:flex;flex-grow:1}.sa-tabulator__downloads-bar{float:left}.sa-tabulator__downloads-bar .sa-table__btn{margin-left:10px}.sa-tabulator__pagination-container{float:right;margin-top:8px;min-width:200px;text-align:right}.sa-tabulator__filter-container{margin-bottom:20px}.sa-tabulator__filter-container input{box-sizing:border-box}.tabulator-col.tabulator-moving .sa-table__filter.sa-table__filter{pointer-events:none}.sa-tabulator .tabulator-page{margin-right:15px;padding:1px;vertical-align:middle;color:#a0a0a0;cursor:pointer;outline:none;border:none}.sa-tabulator .tabulator-page:last-child{margin-right:0}.sa-tabulator .tabulator-page:disabled{cursor:default}.sa-tabulator .tabulator-page[aria-label~=Prev]{display:inline-block;background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,repeat;background-size:9px 100%;height:10px;width:10px;white-space:nowrap;overflow:hidden;text-indent:-9999px;transform:rotate(90deg);margin-right:20px}.sa-tabulator .tabulator-page[aria-label~=Next]{display:inline-block;background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,repeat;background-size:9px 100%;height:10px;width:10px;white-space:nowrap;overflow:hidden;text-indent:-9999px;transform:rotate(270deg);margin-left:20px;margin-right:0}.sa-tabulator .tabulator-page[aria-label~=First]{display:inline-block;background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A"),url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,no-repeat;background-size:9px 100%;background-position:left 0,left 5px;height:20px;width:10px;white-space:nowrap;overflow:hidden;text-indent:-9999px;transform:rotate(90deg);margin-right:10px}.sa-tabulator .tabulator-page[aria-label~=Last]{display:inline-block;background:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A"),url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");background-repeat:no-repeat,no-repeat;background-size:9px 100%;background-position:left 0,left 5px;height:20px;width:10px;white-space:nowrap;overflow:hidden;text-indent:-9999px;transform:rotate(270deg);margin-left:10px}.sa-tabulator .tabulator-page.active{font-weight:bold;border-bottom:1px solid #a0a0a0}.sa-tabulator .tabulator{border:1px solid #ddd;background-color:#fff}.sa-tabulator .tabulator .tabulator-row .tabulator-cell{padding:20px;border-top:1px solid #ddd;border-right:1px solid #ddd}.sa-tabulator .tabulator .tabulator-header .tabulator-col{padding:13px 20px;border-right:1px solid #ddd}.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content{padding:0}.sa-tabulator .tabulator .tabulator-header{border-bottom:none}.sa-tabulator .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover{background-color:#fff}.sa-tabulator .tabulator .tabulator-header,.sa-tabulator .tabulator .tabulator-header .tabulator-col{background-color:#fff}.sa-tabulator .tabulator .tabulator-header .tabulator-col:first-child{pointer-events:none}.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow{display:none}.sa-tabulator .tabulator .tabulator-row.tabulator-selectable:hover{cursor:default;background-color:#fff}.sa-tabulator .tabulator .tabulator-row.tabulator-selectable.sa-table__detail-row:hover{background-color:#f7f7f7}.sa-tabulator .tabulator .tabulator-row.tabulator-row-even{background-color:#fff}.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content{border-top:none}.sa-tabulator .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title{padding-right:0}.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar{height:10px;width:10px;background-color:#e2e2e2}.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar-thumb{background:var(--main-color, #1ab394)}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library v2.3.
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.3.16
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
-
* License:
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|