survey-analytics 2.5.16 → 3.0.0-beta.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.
Files changed (237) hide show
  1. package/fesm/shared.mjs +759 -3180
  2. package/fesm/shared.mjs.map +1 -1
  3. package/fesm/shared2.mjs +10561 -8296
  4. package/fesm/shared2.mjs.map +1 -1
  5. package/fesm/shared3.mjs +4844 -0
  6. package/fesm/shared3.mjs.map +1 -0
  7. package/fesm/shared4.mjs +42 -0
  8. package/fesm/shared4.mjs.map +1 -0
  9. package/fesm/survey.analytics.apexcharts.mjs +1082 -0
  10. package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
  11. package/fesm/survey.analytics.core.mjs +3 -3
  12. package/fesm/survey.analytics.mjs +7 -755
  13. package/fesm/survey.analytics.mjs.map +1 -1
  14. package/fesm/survey.analytics.mongo.mjs +1 -1
  15. package/fesm/survey.analytics.plotly.mjs +13 -0
  16. package/fesm/survey.analytics.plotly.mjs.map +1 -0
  17. package/fesm/survey.analytics.tabulator.mjs +341 -193
  18. package/fesm/survey.analytics.tabulator.mjs.map +1 -1
  19. package/fesm/themes/index.mjs +1942 -0
  20. package/fesm/themes/index.mjs.map +1 -0
  21. package/package.json +39 -10
  22. package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
  23. package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
  24. package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
  25. package/survey-analytics-plotly.types/analytics-localization/english.d.ts +142 -0
  26. package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
  27. package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
  28. package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
  29. package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
  30. package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
  31. package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
  32. package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
  33. package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
  34. package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
  35. package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
  36. package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
  37. package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
  38. package/survey-analytics-plotly.types/axisDescription.d.ts +6 -0
  39. package/survey-analytics-plotly.types/boolean.d.ts +15 -0
  40. package/survey-analytics-plotly.types/card.d.ts +29 -0
  41. package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
  42. package/survey-analytics-plotly.types/config.d.ts +35 -0
  43. package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
  44. package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
  45. package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
  46. package/survey-analytics-plotly.types/entries/summary.core.d.ts +46 -0
  47. package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
  48. package/survey-analytics-plotly.types/histogram.d.ts +102 -0
  49. package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
  50. package/survey-analytics-plotly.types/localizationManager.d.ts +164 -0
  51. package/survey-analytics-plotly.types/matrix.d.ts +17 -0
  52. package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
  53. package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
  54. package/survey-analytics-plotly.types/nps.d.ts +37 -0
  55. package/survey-analytics-plotly.types/number.d.ts +27 -0
  56. package/survey-analytics-plotly.types/pivot.d.ts +71 -0
  57. package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
  58. package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
  59. package/survey-analytics-plotly.types/ranking.d.ts +12 -0
  60. package/survey-analytics-plotly.types/selectBase.d.ts +117 -0
  61. package/survey-analytics-plotly.types/sideBarItemCreators.d.ts +7 -0
  62. package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
  63. package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
  64. package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
  65. package/survey-analytics-plotly.types/text.d.ts +25 -0
  66. package/survey-analytics-plotly.types/theme.d.ts +51 -0
  67. package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
  68. package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
  69. package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
  70. package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
  71. package/survey-analytics-plotly.types/utils/documentHelper.d.ts +28 -0
  72. package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +34 -0
  73. package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +48 -0
  74. package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +46 -0
  75. package/survey-analytics-plotly.types/utils/editableSeriesListWidget.d.ts +34 -0
  76. package/survey-analytics-plotly.types/utils/elementVisibilityAction.d.ts +22 -0
  77. package/survey-analytics-plotly.types/utils/index.d.ts +25 -0
  78. package/survey-analytics-plotly.types/utils/sidebarWidget.d.ts +48 -0
  79. package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
  80. package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
  81. package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
  82. package/survey-analytics-plotly.types/visualizationManager.d.ts +61 -0
  83. package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
  84. package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
  85. package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
  86. package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
  87. package/survey-analytics-plotly.types/visualizer-interfaces.d.ts +25 -0
  88. package/survey-analytics-plotly.types/visualizerBase.d.ts +435 -0
  89. package/survey-analytics-plotly.types/visualizerDescription.d.ts +4 -0
  90. package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
  91. package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
  92. package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
  93. package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
  94. package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
  95. package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
  96. package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
  97. package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
  98. package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +40 -0
  99. package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
  100. package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
  101. package/survey-analytics-tabulator.types/localizationManager.d.ts +40 -0
  102. package/survey-analytics-tabulator.types/tables/columnbuilder.d.ts +16 -16
  103. package/survey-analytics-tabulator.types/tables/columns.d.ts +18 -18
  104. package/survey-analytics-tabulator.types/tables/config.d.ts +2 -2
  105. package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
  106. package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
  107. package/survey-analytics-tabulator.types/tables/table-interfaces.d.ts +56 -0
  108. package/survey-analytics-tabulator.types/tables/table.d.ts +4 -48
  109. package/survey-analytics-tabulator.types/tables/tabulator.d.ts +9 -1
  110. package/survey-analytics-tabulator.types/theme.d.ts +51 -0
  111. package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
  112. package/survey-analytics-tabulator.types/utils/documentHelper.d.ts +28 -0
  113. package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +34 -0
  114. package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +48 -0
  115. package/survey-analytics-tabulator.types/utils/index.d.ts +1 -15
  116. package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
  117. package/survey-analytics.types/analytics-localization/english.d.ts +40 -0
  118. package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
  119. package/survey-analytics.types/apexcharts/index.d.ts +2 -0
  120. package/survey-analytics.types/apexcharts/setup.d.ts +200 -0
  121. package/survey-analytics.types/axisDescription.d.ts +6 -0
  122. package/survey-analytics.types/boolean.d.ts +1 -1
  123. package/survey-analytics.types/card.d.ts +29 -0
  124. package/survey-analytics.types/chartConfig.d.ts +9 -0
  125. package/survey-analytics.types/config.d.ts +1 -33
  126. package/survey-analytics.types/dashboard.d.ts +51 -0
  127. package/survey-analytics.types/dataProvider.d.ts +17 -0
  128. package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
  129. package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
  130. package/survey-analytics.types/entries/summary.core.d.ts +9 -1
  131. package/survey-analytics.types/histogram.d.ts +29 -13
  132. package/survey-analytics.types/layout-engine.d.ts +29 -0
  133. package/survey-analytics.types/localizationManager.d.ts +40 -0
  134. package/survey-analytics.types/matrix.d.ts +3 -2
  135. package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
  136. package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
  137. package/survey-analytics.types/nps.d.ts +5 -10
  138. package/survey-analytics.types/number.d.ts +8 -7
  139. package/survey-analytics.types/pivot.d.ts +42 -40
  140. package/survey-analytics.types/ranking.d.ts +3 -2
  141. package/survey-analytics.types/selectBase.d.ts +13 -15
  142. package/survey-analytics.types/sideBarItemCreators.d.ts +7 -0
  143. package/survey-analytics.types/statisticCalculators.d.ts +8 -13
  144. package/survey-analytics.types/statistics-table.d.ts +2 -2
  145. package/survey-analytics.types/text.d.ts +4 -3
  146. package/survey-analytics.types/theme.d.ts +51 -0
  147. package/survey-analytics.types/themes/default-light.d.ts +965 -0
  148. package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
  149. package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
  150. package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
  151. package/survey-analytics.types/utils/documentHelper.d.ts +28 -0
  152. package/survey-analytics.types/utils/dropdownActionWidget.d.ts +34 -0
  153. package/survey-analytics.types/utils/dropdownBase.d.ts +48 -0
  154. package/survey-analytics.types/utils/dropdownWidget.d.ts +46 -0
  155. package/survey-analytics.types/utils/editableSeriesListWidget.d.ts +34 -0
  156. package/survey-analytics.types/utils/elementVisibilityAction.d.ts +22 -0
  157. package/survey-analytics.types/utils/index.d.ts +1 -15
  158. package/survey-analytics.types/utils/sidebarWidget.d.ts +48 -0
  159. package/survey-analytics.types/utils/toggle.d.ts +17 -0
  160. package/survey-analytics.types/utils/utils.d.ts +9 -0
  161. package/survey-analytics.types/visualizationComposite.d.ts +1 -1
  162. package/survey-analytics.types/visualizationManager.d.ts +6 -5
  163. package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
  164. package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
  165. package/survey-analytics.types/visualizationPanel.d.ts +20 -3
  166. package/survey-analytics.types/visualizationPanelDynamic.d.ts +4 -3
  167. package/survey-analytics.types/visualizer-interfaces.d.ts +25 -0
  168. package/survey-analytics.types/visualizerBase.d.ts +80 -12
  169. package/survey-analytics.types/visualizerDescription.d.ts +4 -0
  170. package/survey-analytics.types/visualizerFactory.d.ts +11 -2
  171. package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
  172. package/survey.analytics.core.css +1534 -122
  173. package/survey.analytics.core.css.map +1 -1
  174. package/survey.analytics.core.d.ts +1 -0
  175. package/survey.analytics.core.js +6118 -1229
  176. package/survey.analytics.core.js.map +1 -1
  177. package/survey.analytics.core.min.css +11 -6
  178. package/survey.analytics.core.min.js +1 -1
  179. package/survey.analytics.core.min.js.LICENSE.txt +1 -1
  180. package/survey.analytics.css +1900 -129
  181. package/survey.analytics.css.map +1 -1
  182. package/survey.analytics.d.ts +2 -2
  183. package/survey.analytics.fontless.css +2009 -0
  184. package/survey.analytics.fontless.css.map +1 -0
  185. package/survey.analytics.fontless.min.css +16 -0
  186. package/survey.analytics.js +9764 -4539
  187. package/survey.analytics.js.map +1 -1
  188. package/survey.analytics.min.css +13 -6
  189. package/survey.analytics.min.js +1 -1
  190. package/survey.analytics.min.js.LICENSE.txt +1 -1
  191. package/survey.analytics.mongo.d.ts +1 -0
  192. package/survey.analytics.mongo.js +2 -2
  193. package/survey.analytics.mongo.js.map +1 -1
  194. package/survey.analytics.mongo.min.js +1 -1
  195. package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
  196. package/survey.analytics.plotly.css +2094 -0
  197. package/survey.analytics.plotly.css.map +1 -0
  198. package/survey.analytics.plotly.d.ts +2 -0
  199. package/survey.analytics.plotly.fontless.css +1872 -0
  200. package/survey.analytics.plotly.fontless.css.map +1 -0
  201. package/survey.analytics.plotly.fontless.min.css +15 -0
  202. package/survey.analytics.plotly.js +24673 -0
  203. package/survey.analytics.plotly.js.map +1 -0
  204. package/survey.analytics.plotly.min.css +16 -0
  205. package/survey.analytics.plotly.min.js +2 -0
  206. package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
  207. package/survey.analytics.tabulator.css +1005 -132
  208. package/survey.analytics.tabulator.css.map +1 -1
  209. package/survey.analytics.tabulator.d.ts +1 -0
  210. package/survey.analytics.tabulator.fontless.css +1134 -0
  211. package/survey.analytics.tabulator.fontless.css.map +1 -0
  212. package/survey.analytics.tabulator.fontless.min.css +6 -0
  213. package/survey.analytics.tabulator.js +2719 -476
  214. package/survey.analytics.tabulator.js.map +1 -1
  215. package/survey.analytics.tabulator.min.css +3 -2
  216. package/survey.analytics.tabulator.min.js +1 -1
  217. package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
  218. package/themes/default-dark.js +1032 -0
  219. package/themes/default-dark.js.map +1 -0
  220. package/themes/default-dark.min.js +2 -0
  221. package/themes/default-dark.min.js.LICENSE.txt +5 -0
  222. package/themes/default-light.js +1032 -0
  223. package/themes/default-light.js.map +1 -0
  224. package/themes/default-light.min.js +2 -0
  225. package/themes/default-light.min.js.LICENSE.txt +5 -0
  226. package/themes/index.js +2063 -0
  227. package/themes/index.js.map +1 -0
  228. package/themes/index.min.js +2 -0
  229. package/themes/index.min.js.LICENSE.txt +5 -0
  230. package/themes/themes/default-dark.d.ts +965 -0
  231. package/themes/themes/default-light.d.ts +965 -0
  232. package/themes/themes/index.d.ts +1934 -0
  233. package/themes/utils/helpers.d.ts +8 -0
  234. package/survey-analytics.types/plotly/setup.d.ts +0 -32
  235. /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
  236. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
  237. /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
@@ -1,31 +1,174 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.5.16
2
+ * surveyjs - SurveyJS Dashboard library v3.0.0-beta.1
3
3
  * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: SEE LICENSE IN LICENSE
5
5
  */
6
+ /*!*************************************************************************************************************************************************************************!*\
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/utils/sidebar.scss ***!
8
+ \*************************************************************************************************************************************************************************/
9
+ .sa-sidebar--opened .sa-dropdown {
10
+ width: 100%;
11
+ flex-direction: column;
12
+ flex-grow: 0;
13
+ }
14
+ .sa-sidebar--opened .sa-dropdown-container {
15
+ width: 100%;
16
+ flex-grow: 0;
17
+ }
18
+ .sa-sidebar--opened .sa-dropdown-list.sa-dropdown--opened {
19
+ min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
20
+ max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
21
+ }
22
+
23
+ .sa-sidebar-backdrop {
24
+ position: fixed;
25
+ inset: 0;
26
+ z-index: 9998;
27
+ background: transparent;
28
+ pointer-events: none;
29
+ transition: background 0.2s ease;
30
+ }
31
+ .sa-sidebar-backdrop.sa-sidebar--opened {
32
+ pointer-events: auto;
33
+ background: var(--sjs2-color-utility-overlay, rgba(66, 65, 70, 0.6));
34
+ }
35
+
36
+ .sa-sidebar {
37
+ position: fixed;
38
+ top: 0;
39
+ right: 0;
40
+ bottom: 0;
41
+ z-index: 9999;
42
+ width: min(540px, 90vw);
43
+ max-width: 100%;
44
+ overflow: auto;
45
+ display: flex;
46
+ flex-direction: column;
47
+ align-items: flex-start;
48
+ background: var(--sjs2-color-utility-sheet, #fff);
49
+ /* sjs2/border-effect/elevated/default */
50
+ box-shadow: var(--sjs2-border-offset-x-elevated-default, 0) var(--sjs2-border-offset-y-elevated-default, 4px) var(--sjs2-border-blur-elevated-default, 12px) var(--sjs2-border-spread-elevated-default, 0) var(--sjs2-color-utility-shadow-elevated-default, rgba(0, 76, 68, 0.1));
51
+ transform: translateX(100%);
52
+ transition: transform 0.25s ease;
53
+ }
54
+ .sa-sidebar.sa-sidebar--opened {
55
+ transform: translateX(0);
56
+ }
57
+ .sa-sidebar .sa-sidebar-header {
58
+ display: flex;
59
+ padding-right: 40px;
60
+ align-items: flex-start;
61
+ align-self: stretch;
62
+ flex-direction: column;
63
+ gap: var(--sjs2-spacing-x300, 24px);
64
+ }
65
+ .sa-sidebar .sa-sidebar-title {
66
+ flex: 1 0 0;
67
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
68
+ font-family: var(--sjs2-typography-font-family-text);
69
+ font-weight: var(--sjs2-typography-font-weight-strong);
70
+ font-size: var(--sjs2-typography-font-size-default);
71
+ line-height: var(--sjs2-typography-line-height-default);
72
+ }
73
+ .sa-sidebar .sa-sidebar-close {
74
+ position: absolute;
75
+ right: 12px;
76
+ top: 12px;
77
+ display: flex;
78
+ justify-content: center;
79
+ align-items: center;
80
+ padding: var(--sjs2-spacing-x100, 8px);
81
+ background: transparent;
82
+ border: none;
83
+ cursor: pointer;
84
+ }
85
+ .sa-sidebar .sa-sidebar-close:hover {
86
+ border-radius: var(--sjs2-radius-component-action, 8px);
87
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(95, 94, 97, 0.1));
88
+ }
89
+ .sa-sidebar .sa-sidebar-close:hover use {
90
+ fill: var(--sjs2-color-fg-basic-primary-muted, #424146);
91
+ }
92
+ .sa-sidebar .sa-sidebar-close use {
93
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
94
+ }
95
+ .sa-sidebar .sa-sidebar-close svg {
96
+ display: flex;
97
+ width: 24px;
98
+ height: 24px;
99
+ justify-content: center;
100
+ align-items: center;
101
+ }
102
+ .sa-sidebar .sa-sidebar-content {
103
+ overflow: auto;
104
+ height: 100%;
105
+ display: flex;
106
+ padding: var(--sjs2-spacing-x300, 24px);
107
+ flex-direction: column;
108
+ align-items: flex-start;
109
+ gap: var(--sjs2-spacing-x300, 24px);
110
+ align-self: stretch;
111
+ }
112
+
113
+ .sa-sidebar-divider {
114
+ display: flex;
115
+ padding: var(--sjs2-spacing-x000, 0) 0;
116
+ flex-direction: column;
117
+ align-items: flex-start;
118
+ align-self: stretch;
119
+ }
120
+ .sa-sidebar-divider .sa-line-1 {
121
+ display: flex;
122
+ max-width: var(--_ctr-toolbox-separator-max-width-compact, 10000px);
123
+ flex-direction: column;
124
+ align-items: flex-start;
125
+ align-self: stretch;
126
+ }
127
+ .sa-sidebar-divider .sa-line-2 {
128
+ height: var(--sjs2-border-width-static-x100, 1px);
129
+ align-self: stretch;
130
+ background: var(--sjs2-color-border-basic-secondary, #d4d4d4);
131
+ }
6
132
  /*!**************************************************************************************************************************************************************************!*\
7
133
  !*** 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 ***!
8
134
  \**************************************************************************************************************************************************************************/
135
+ .sa-visualizer-wrapper {
136
+ min-width: 450px;
137
+ padding: var(--sjs2-spacing-x300, 24px);
138
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
139
+ }
140
+ @media screen and (max-width: 600px) {
141
+ .sa-visualizer-wrapper {
142
+ padding: var(--sjs2-spacing-x150, 12px);
143
+ }
144
+ }
145
+
9
146
  .sa-visualizer__header {
10
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
11
- font-size: var(--root-font-size, 14px);
147
+ font-family: var(--sjs2-typography-font-family-text);
148
+ font-weight: var(--sjs2-typography-font-weight-basic);
149
+ font-size: var(--sjs2-typography-font-size-default);
150
+ line-height: var(--sjs2-typography-line-height-default);
12
151
  }
13
152
 
14
153
  .sa-visualizer__content {
15
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
154
+ font-family: var(--sjs2-typography-font-family-text);
16
155
  display: inline-block;
17
- overflow: hidden;
18
156
  width: 100%;
19
157
  }
20
158
 
21
- .sa-visualizer__footer {
159
+ .sa-visualizer__footer--has-content {
22
160
  margin-top: 10px;
161
+ display: flex;
162
+ flex-direction: column;
163
+ gap: 8px;
23
164
  }
24
165
 
25
166
  .sa-visualizer__footer-title {
167
+ font-family: var(--sjs2-typography-font-family-text);
168
+ font-weight: var(--sjs2-typography-font-weight-strong);
169
+ font-size: var(--sjs2-typography-font-size-default);
170
+ line-height: var(--sjs2-typography-line-height-default);
26
171
  display: inline-block;
27
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
28
- font-size: var(--root-font-size, 14px);
29
172
  color: #404040;
30
173
  line-height: 34px;
31
174
  vertical-align: middle;
@@ -59,6 +202,463 @@
59
202
  transform: rotate(359deg);
60
203
  }
61
204
  }
205
+ /*!*****************************************************************************************************************************************************************************!*\
206
+ !*** 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/apexcharts/styles.scss ***!
207
+ \*****************************************************************************************************************************************************************************/
208
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip {
209
+ padding: var(--sjs2-spacing-x075, 6px) var(--sjs2-spacing-x150, 12px);
210
+ border-radius: var(--sjs2-radius-container-tooltip, 4px);
211
+ border-color: var(--sjs2-color-bg-neutral-primary, #1C1B20);
212
+ background: var(--sjs2-color-bg-neutral-primary, #1C1B20);
213
+ color: var(--sjs2-color-fg-neutral-on-primary, #FFF);
214
+ }
215
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-title {
216
+ display: none;
217
+ }
218
+ .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-goals-value, .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-y-value, .sa-visualizer .apexcharts-tooltip.apexcharts-tooltip .apexcharts-tooltip-text-z-value {
219
+ margin: 0;
220
+ }
221
+ .sa-visualizer .apexcharts-xaxistooltip.apexcharts-xaxistooltip {
222
+ display: none;
223
+ }
224
+ .sa-visualizer .apexcharts-tooltip-series-group.apexcharts-active {
225
+ padding: 0;
226
+ }
227
+ .sa-visualizer .apexcharts-tooltip-y-group.apexcharts-tooltip-y-group {
228
+ display: flex;
229
+ flex-direction: column;
230
+ padding: 0;
231
+ }
232
+ .sa-visualizer .apexcharts-toolbar div svg {
233
+ fill: var(--sjs2-color-fg-brand-primary, #19B394);
234
+ opacity: var(--sjs2-opacity-x035, 0.35);
235
+ }
236
+ .sa-visualizer .apexcharts-toolbar div:hover svg {
237
+ fill: var(--sjs2-color-fg-brand-primary, #19B394);
238
+ opacity: 1;
239
+ }
240
+ .sa-visualizer .apexcharts-menu.apexcharts-menu-open {
241
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
242
+ border-top: none;
243
+ border-radius: var(--sjs2-radius-container-drop, 16px);
244
+ background: var(--sjs2-color-utility-sheet, #FFF);
245
+ margin-top: 8px;
246
+ padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
247
+ box-shadow: var(--sjs2-shadow-size-large-offset-x, 0) var(--sjs2-shadow-size-large-offset-y, 6px) var(--sjs2-shadow-size-large-blur, 12px) var(--sjs2-shadow-size-large-spread, 4px) var(--sjs2-shadow-color-large, rgba(0, 76, 68, 0.1));
248
+ }
249
+ .sa-visualizer .apexcharts-menu-item.apexcharts-menu-item {
250
+ width: max-content;
251
+ min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
252
+ max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
253
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
254
+ cursor: pointer;
255
+ transition: all 0.3s;
256
+ display: flex;
257
+ align-items: center;
258
+ gap: var(--sjs2-spacing-x150, 12px);
259
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
260
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
261
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
262
+ font-family: var(--sjs2-typography-font-family-text);
263
+ font-weight: var(--sjs2-typography-font-weight-basic);
264
+ font-size: var(--sjs2-typography-font-size-default);
265
+ line-height: var(--sjs2-typography-line-height-default);
266
+ }
267
+ .sa-visualizer .apexcharts-menu-item.apexcharts-menu-item:hover {
268
+ background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
269
+ }
270
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
271
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
272
+ display: grid;
273
+ grid-template-columns: repeat(8, 1fr);
274
+ border-radius: var(--sjs2-radius-x050, 4px);
275
+ border: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
276
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
277
+ padding: var(--sjs2-spacing-x250, 20px);
278
+ align-items: flex-start;
279
+ gap: var(--sjs2-spacing-x150, 12px);
280
+ align-self: stretch;
281
+ }
282
+ @media screen and (max-width: 1500px) {
283
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
284
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
285
+ grid-template-columns: repeat(6, 1fr);
286
+ }
287
+ }
288
+ @media screen and (max-width: 1200px) {
289
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
290
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
291
+ grid-template-columns: repeat(4, 1fr);
292
+ }
293
+ }
294
+ @media screen and (max-width: 900px) {
295
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
296
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
297
+ grid-template-columns: repeat(2, 1fr);
298
+ }
299
+ }
300
+ @media screen and (max-width: 600px) {
301
+ .sa-visualizer .apx-legend-position-top.apx-legend-position-top,
302
+ .sa-visualizer .apx-legend-position-bottom.apx-legend-position-bottom {
303
+ grid-template-columns: repeat(1, 1fr);
304
+ }
305
+ }
306
+ @media screen and (min-width: 900px) {
307
+ .sa-visualizer .sa-question-layouted .apx-legend-position-top.apx-legend-position-top,
308
+ .sa-visualizer .sa-question-layouted .apx-legend-position-bottom.apx-legend-position-bottom {
309
+ grid-template-columns: repeat(4, 1fr);
310
+ }
311
+ }
312
+ .sa-visualizer .apexcharts-legend.apexcharts-legend {
313
+ max-height: 100%;
314
+ border-radius: var(--sjs2-radius-x250, 20px);
315
+ border: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
316
+ background: var(--sjs2-color-bg-basic-primary, #fff);
317
+ padding: var(--sjs2-spacing-x250, 20px);
318
+ gap: var(--sjs2-spacing-x150, 12px);
319
+ }
320
+ .sa-visualizer .apexcharts-legend:not(.apx-legend-position-left):not(.apx-legend-position-top):not(.apx-legend-position-right):not(.apx-legend-position-bottom) {
321
+ padding: 0;
322
+ border: unset;
323
+ }
324
+ .sa-visualizer .apexcharts-legend.apx-legend-position-right,
325
+ .sa-visualizer .apexcharts-legend.apx-legend-position-left {
326
+ bottom: auto;
327
+ }
328
+ .sa-visualizer .apexcharts-legend-series.apexcharts-legend-series {
329
+ gap: var(--sjs2-spacing-x100, 8px);
330
+ }
331
+ .sa-visualizer .apexcharts-legend-series.apexcharts-legend-series .apexcharts-legend-text {
332
+ padding: 0;
333
+ margin: 0;
334
+ }
335
+ .sa-visualizer .sa-pie-charts {
336
+ display: flex;
337
+ flex-wrap: wrap;
338
+ }
339
+ .sa-visualizer .sa-pie-chart {
340
+ width: 50%;
341
+ }
342
+ /*!************************************************************************************************************************************************************************!*\
343
+ !*** 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/utils/toggle.scss ***!
344
+ \************************************************************************************************************************************************************************/
345
+ .sa-toggle-container {
346
+ display: flex;
347
+ gap: var(--sjs2-spacing-x100, 8px);
348
+ }
349
+ @media screen and (max-width: 600px) {
350
+ .sa-toggle-container {
351
+ width: 100%;
352
+ justify-content: end;
353
+ }
354
+ }
355
+
356
+ .sa-toggle-element {
357
+ display: flex;
358
+ padding: var(--sjs2-spacing-x075, 6px);
359
+ width: calc(2 * var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px));
360
+ align-items: center;
361
+ gap: var(--sjs2-spacing-x050, 4px);
362
+ transition: background-color 0.3s ease;
363
+ border-radius: var(--sjs2-radius-control-toggle, 9999px);
364
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-default-border, #D4D4D4);
365
+ background: var(--sjs2-color-control-toggle-false-default-bg, rgba(28, 27, 32, 0.05));
366
+ /* sjs2/shadow/inner */
367
+ box-shadow: var(--sjs2-shadow-size-inner-offset-x, 0) var(--sjs2-shadow-size-inner-offset-y, 0) var(--sjs2-shadow-size-inner-blur, 0) var(--sjs2-shadow-size-inner-spread, 1px) var(--sjs2-shadow-color-inner, #D4D4D4) inset;
368
+ }
369
+ .sa-toggle-element:hover {
370
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-hovered-border, #D4D4D4);
371
+ background: var(--sjs2-color-control-toggle-false-hovered-bg, rgba(28, 27, 32, 0.1));
372
+ }
373
+ .sa-toggle-element:hover .sa-toggle-handle {
374
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
375
+ background: var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
376
+ }
377
+ .sa-toggle-element:focus {
378
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-false-focused-border, #19B394);
379
+ background: var(--sjs2-color-control-toggle-false-focused-bg, #F5F5F5);
380
+ }
381
+ .sa-toggle-element:focus .sa-toggle-handle {
382
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
383
+ background: var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
384
+ }
385
+
386
+ .sa-toggle-element.active {
387
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-default-border, #19B394);
388
+ background: var(--sjs2-color-control-toggle-true-default-bg, #19B394);
389
+ }
390
+ .sa-toggle-element.active:hover {
391
+ outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-hovered-border, #19B394);
392
+ background: var(--sjs2-color-control-toggle-true-hovered-bg, #15987E);
393
+ }
394
+ .sa-toggle-element.active:hover .sa-toggle-handle {
395
+ background: var(--sjs2-color-control-toggle-true-hovered-icon, #FFF);
396
+ }
397
+ .sa-toggle-element.active:focus {
398
+ outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-true-focused-border, #19B394);
399
+ background: var(--sjs2-color-control-toggle-true-focused-bg, #FFF);
400
+ }
401
+ .sa-toggle-element.active:focus .sa-toggle-handle {
402
+ background: var(--sjs2-color-control-toggle-true-focused-icon, #19B394);
403
+ }
404
+
405
+ .sa-toggle-handle {
406
+ display: flex;
407
+ width: var(--sjs2-size-x150, 12px);
408
+ height: var(--sjs2-size-x150, 12px);
409
+ justify-content: center;
410
+ align-items: center;
411
+ transition: transform 0.3s ease, background-color 0.3s ease;
412
+ border-radius: var(--sjs2-radius-control-toggle-item, 9999px);
413
+ outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
414
+ background: var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
415
+ }
416
+
417
+ .sa-toggle-element.active .sa-toggle-handle {
418
+ background: var(--sjs2-color-control-toggle-true-default-icon, #FFF);
419
+ transform: translateX(calc(var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px)));
420
+ }
421
+
422
+ .sa-toggle-text {
423
+ flex: 1 0 0;
424
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
425
+ font-family: var(--sjs2-typography-font-family-text);
426
+ font-weight: var(--sjs2-typography-font-weight-basic);
427
+ font-size: var(--sjs2-typography-font-size-default);
428
+ line-height: var(--sjs2-typography-line-height-default);
429
+ }
430
+ @media screen and (max-width: 600px) {
431
+ .sa-toggle-text {
432
+ flex: unset;
433
+ }
434
+ }
435
+ /*!*********************************************************************************************************************************************************************************!*\
436
+ !*** 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/utils/dateRangeWidget.scss ***!
437
+ \*********************************************************************************************************************************************************************************/
438
+ .sa-date-range {
439
+ display: flex;
440
+ align-items: center;
441
+ align-self: stretch;
442
+ align-content: center;
443
+ gap: 16px var(--sjs2-spacing-x200, 16px);
444
+ flex-wrap: wrap;
445
+ }
446
+
447
+ .sa-date-range-container {
448
+ display: flex;
449
+ flex-direction: column;
450
+ align-items: flex-start;
451
+ align-self: stretch;
452
+ max-width: min-content;
453
+ }
454
+
455
+ .sa-date-range_editors {
456
+ display: flex;
457
+ align-items: center;
458
+ gap: var(--sjs2-spacing-x150, 12px);
459
+ }
460
+
461
+ .sa-date-range_editor {
462
+ display: flex;
463
+ }
464
+
465
+ .sa-date-range_editor-formbox {
466
+ display: flex;
467
+ padding: var(--sjs2-layout-control-formbox-small-vertical, 4px) var(--sjs2-layout-control-formbox-small-horizontal, 4px);
468
+ align-items: flex-start;
469
+ gap: var(--sjs2-layout-control-formbox-small-gap, 4px);
470
+ align-self: stretch;
471
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
472
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
473
+ outline: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-formbox-default-border, #D4D4D4) inset;
474
+ }
475
+ .sa-date-range_editor-formbox:focus-visible {
476
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
477
+ box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
478
+ }
479
+
480
+ .sa-date-range_include-today {
481
+ display: flex;
482
+ padding: var(--sjs2-spacing-x100, 8px) 0;
483
+ flex-direction: column;
484
+ align-items: flex-start;
485
+ }
486
+
487
+ .sa-date-range_include-today-checkbox {
488
+ display: flex;
489
+ align-items: flex-start;
490
+ gap: var(--sjs2-spacing-x100, 8px);
491
+ align-self: stretch;
492
+ }
493
+
494
+ .sa-date-range_include-today-button {
495
+ display: flex;
496
+ width: var(--sjs2-size-x300, 24px);
497
+ height: var(--sjs2-size-x300, 24px);
498
+ flex-direction: column;
499
+ justify-content: center;
500
+ align-items: center;
501
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
502
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
503
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
504
+ }
505
+ .sa-date-range_include-today-button .sa-date-range_include-today-check {
506
+ display: none;
507
+ width: 16px;
508
+ height: 16px;
509
+ flex-shrink: 0;
510
+ }
511
+
512
+ .sa-date-range_include-today-checkbox--checked {
513
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
514
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
515
+ }
516
+ .sa-date-range_include-today-checkbox--checked .sa-date-range_include-today-check {
517
+ display: block;
518
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
519
+ }
520
+
521
+ .sa-date-range_include-today-caption {
522
+ display: flex;
523
+ align-items: flex-start;
524
+ gap: var(--sjs2-spacing-x050, 4px);
525
+ align-self: stretch;
526
+ }
527
+
528
+ .sa-date-range_include-today-caption-text {
529
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
530
+ font-family: var(--sjs2-typography-font-family-text);
531
+ font-weight: var(--sjs2-typography-font-weight-basic);
532
+ font-size: var(--sjs2-typography-font-size-default);
533
+ line-height: var(--sjs2-typography-line-height-default);
534
+ }
535
+
536
+ .sa-date-range_dropdown {
537
+ align-self: self-start;
538
+ }
539
+ .sa-date-range_dropdown .sa-dropdown-header-content {
540
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
541
+ }
542
+ .sa-date-range_dropdown .sa-dropdown-action {
543
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
544
+ }
545
+
546
+ .sa-range-error {
547
+ display: none;
548
+ align-items: flex-start;
549
+ align-self: stretch;
550
+ }
551
+
552
+ .sa-range-error_panel {
553
+ display: flex;
554
+ padding: var(--sjs2-layout-control-message-small-vertical, 8px) var(--sjs2-layout-control-message-small-horizontal, 12px);
555
+ align-items: flex-start;
556
+ gap: var(--sjs2-layout-control-message-small-gap, 8px);
557
+ flex: 1 0 0;
558
+ align-self: stretch;
559
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
560
+ background: var(--sjs2-color-control-message-error-bg, rgba(229, 10, 62, 0.1));
561
+ }
562
+
563
+ .sa-range-error_text {
564
+ flex: 1 0 0;
565
+ color: var(--sjs2-color-control-message-error-text, #1C1B20);
566
+ font-family: var(--sjs2-typography-font-family-text);
567
+ font-weight: var(--sjs2-typography-font-weight-basic);
568
+ font-size: var(--sjs2-typography-font-size-default);
569
+ line-height: var(--sjs2-typography-line-height-default);
570
+ }
571
+
572
+ .sa-date-range--invalid .sa-range-error {
573
+ display: flex;
574
+ padding-top: var(--sjs2-layout-control-message-small-spacer, 8px);
575
+ flex-direction: column;
576
+ align-items: flex-start;
577
+ align-self: stretch;
578
+ }
579
+
580
+ .sa-date-range_editor--invalid .sa-date-range_editor-formbox {
581
+ background: var(--sjs2-color-control-formbox-invalid-bg, #F5F5F5);
582
+ box-shadow: var(--sjs2-border-offset-x-form-invalid, 0) var(--sjs2-border-offset-y-form-invalid, 0) var(--sjs2-border-blur-form-invalid, 0) var(--sjs2-border-spread-form-invalid, 2px) var(--sjs2-color-control-formbox-invalid-border, #E50A3E) inset;
583
+ }
584
+
585
+ .sa-date-range_editor-content {
586
+ display: flex;
587
+ padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
588
+ align-items: flex-start;
589
+ flex: 1 0 0;
590
+ }
591
+
592
+ .sa-date-range_editor-input {
593
+ display: -webkit-box;
594
+ -webkit-box-orient: vertical;
595
+ -webkit-line-clamp: 1;
596
+ flex: 1 0 0;
597
+ overflow: hidden;
598
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
599
+ text-overflow: ellipsis;
600
+ background: transparent;
601
+ border: none;
602
+ outline: none;
603
+ font-family: var(--sjs2-typography-font-family-text);
604
+ font-weight: var(--sjs2-typography-font-weight-basic);
605
+ font-size: var(--sjs2-typography-font-size-default);
606
+ line-height: var(--sjs2-typography-line-height-default);
607
+ }
608
+
609
+ .sa-vertical-divider {
610
+ display: flex;
611
+ width: 1px;
612
+ height: 40px;
613
+ flex-direction: column;
614
+ align-items: flex-start;
615
+ align-self: stretch;
616
+ }
617
+ .sa-vertical-divider .sa-line {
618
+ display: flex;
619
+ flex-direction: column;
620
+ align-items: flex-start;
621
+ flex: 1 0 0;
622
+ align-self: stretch;
623
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
624
+ }
625
+
626
+ @media screen and (max-width: 600px) {
627
+ .sa-vertical-divider {
628
+ display: none;
629
+ }
630
+ }
631
+ .sa-horizontal-divider {
632
+ display: flex;
633
+ flex-direction: column;
634
+ align-items: flex-start;
635
+ align-self: stretch;
636
+ }
637
+ .sa-horizontal-divider .sa-line {
638
+ display: flex;
639
+ flex-direction: column;
640
+ align-items: flex-start;
641
+ align-self: stretch;
642
+ height: var(--sjs2-border-width-static-x100, 1px);
643
+ background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
644
+ }
645
+
646
+ .sa-count {
647
+ display: flex;
648
+ padding: var(--sjs2-spacing-x100, 8px) 0;
649
+ justify-content: center;
650
+ align-items: center;
651
+ align-self: self-start;
652
+ gap: 10px;
653
+ }
654
+
655
+ .sa-count_text {
656
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
657
+ font-family: var(--sjs2-typography-font-family-text);
658
+ font-weight: var(--sjs2-typography-font-weight-strong);
659
+ font-size: var(--sjs2-typography-font-size-default);
660
+ line-height: var(--sjs2-typography-line-height-default);
661
+ }
62
662
  /*!******************************************************************************************************************************************************************************!*\
63
663
  !*** 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/visualizationPanel.scss ***!
64
664
  \******************************************************************************************************************************************************************************/
@@ -113,109 +713,696 @@
113
713
  }
114
714
  }
115
715
 
116
- .sa-panel__header {
117
- margin: 0 1em;
118
- }
119
-
120
- .sa-grid {
716
+ .sa-dropdown,
717
+ .sa-action-dropdown {
121
718
  position: relative;
719
+ cursor: pointer;
720
+ user-select: none;
721
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
722
+ font-family: var(--sjs2-typography-font-family-text);
723
+ font-weight: var(--sjs2-typography-font-weight-strong);
724
+ font-size: var(--sjs2-typography-font-size-default);
725
+ line-height: var(--sjs2-typography-line-height-default);
122
726
  }
123
727
 
124
- .sa-grid__grid-sizer {
125
- width: 100%;
126
- box-sizing: border-box;
127
- }
128
- @media screen and (min-width: 1400px) {
129
- .sa-grid__grid-sizer {
130
- width: 50%;
131
- }
728
+ .sa-dropdown {
729
+ display: flex;
730
+ flex-grow: 1;
731
+ flex-direction: row;
132
732
  }
133
733
 
134
- .sa-question {
135
- display: inline-block;
136
- width: 100%;
137
- vertical-align: top;
138
- box-sizing: border-box;
139
- overflow: hidden;
140
- padding: 1em;
734
+ .sa-action-dropdown:hover,
735
+ .sa-action-dropdown.sa-action-dropdown--opened {
736
+ border-radius: var(--sjs2-radius-control-action, 8px);
737
+ background: var(--sjs2-color-bg-positive-tertiary-dim, rgba(25, 179, 148, 0.1));
141
738
  }
142
739
 
143
- .sa-question-layouted {
144
- position: absolute;
145
- }
146
- @media screen and (min-width: 1400px) {
147
- .sa-question-layouted {
148
- width: calc(50% - 1px);
149
- }
740
+ .sa-dropdown-header {
741
+ display: flex;
742
+ padding: var(--sjs2-layout-control-formbox-medium-vertical, 4px) var(--sjs2-layout-control-formbox-medium-horizontal, 4px);
743
+ flex-grow: 1;
744
+ align-items: flex-start;
745
+ gap: var(--sjs2-layout-control-formbox-medium-gap, 4px);
746
+ align-self: stretch;
747
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
748
+ margin: var(--sjs2-border-width-x100, 1px);
749
+ outline: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-control-formbox-default-border, #D4D4D4);
750
+ background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
751
+ }
752
+ .sa-dropdown-header:focus {
753
+ border-radius: var(--sjs2-radius-semantic-form, 8px);
754
+ background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
755
+ box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
756
+ outline: none;
150
757
  }
151
758
 
152
- .sa-question__content {
153
- background-color: var(--background-color, #f7f7f7);
154
- padding: 20px;
759
+ .sa-dropdown-action {
760
+ display: flex;
761
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
762
+ justify-content: center;
763
+ align-items: center;
764
+ align-self: stretch;
765
+ border-radius: var(--sjs2-radius-semantic-form-item, 4px);
766
+ background: var(--sjs2-color-bg-neutral-tertiary, rgba(28, 27, 32, 0));
155
767
  }
156
768
 
157
- .sa-question__title {
158
- margin-left: 30px;
159
- font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
160
- font-size: 18px;
161
- font-weight: bold;
162
- color: var(--text-color, #404040);
163
- margin: 0;
164
- margin-bottom: 1em;
769
+ .sa-dropdown-action:hover {
770
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
165
771
  }
166
772
 
167
- .sa-question__title--draggable {
168
- cursor: move;
169
- }
170
- .sa-question__title--draggable:after {
171
- content: " ";
172
- display: block;
173
- float: right;
174
- width: 15px;
175
- height: 15px;
176
- 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");
773
+ .sa-dropdown--opened .sa-dropdown-arrow {
774
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
177
775
  }
178
776
 
179
- [dir=rtl] .sa-question__title--draggable:after, [style*="direction: rtl"] .sa-question__title--draggable:after, [style*="direction:rtl"] .sa-question__title--draggable:after {
180
- float: left;
777
+ .sa-dropdown-action svg {
778
+ display: flex;
779
+ width: var(--sjs2-size-icon-medium, 24px);
780
+ height: var(--sjs2-size-icon-medium, 24px);
781
+ justify-content: center;
782
+ align-items: center;
783
+ }
784
+ .sa-dropdown-action svg use {
785
+ fill: var(--sjs2-color-fg-basic-primary-alt, rgb(66, 65, 70));
181
786
  }
182
787
 
183
- .sa-toolbar {
184
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
185
- font-size: var(--root-font-size, 14px);
186
- color: var(--text-color, #404040);
187
- line-height: 34px;
188
- margin-bottom: 25px;
189
- display: flex;
190
- flex-direction: row;
191
- flex-wrap: wrap;
192
- gap: 10px;
788
+ .sa-dropdown-container {
789
+ display: inline-flex;
790
+ flex-grow: 1;
193
791
  }
194
792
 
195
- .sa-toolbar.sa-toolbar > * {
793
+ .sa-action-dropdown-container {
196
794
  display: inline-flex;
197
- line-height: 1em;
198
795
  }
199
796
 
200
- .sa-toolbar__button {
201
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
202
- font-size: var(--root-font-size, 14px);
203
- padding: 8px;
204
- vertical-align: middle;
797
+ .sa-dropdown__title {
798
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
799
+ display: flex;
800
+ flex-shrink: 0;
801
+ margin-inline-end: var(--sjs2-spacing-static-x100, 8px);
802
+ overflow: hidden;
803
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
804
+ text-overflow: ellipsis;
805
+ font-family: var(--sjs2-typography-font-family-text);
806
+ font-weight: var(--sjs2-typography-font-weight-basic);
807
+ font-size: var(--sjs2-typography-font-size-default);
808
+ line-height: var(--sjs2-typography-line-height-default);
809
+ }
810
+
811
+ .sa-dropdown-list,
812
+ .sa-action-dropdown-list {
813
+ position: absolute;
814
+ min-width: 150px;
815
+ max-height: 50vh;
816
+ max-width: 80vw;
817
+ overflow-x: hidden;
818
+ overflow-y: auto;
819
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
820
+ border-top: none;
821
+ border-radius: var(--sjs2-radius-container-drop, 16px);
822
+ background: var(--sjs2-color-utility-sheet, #FFF);
823
+ display: none;
824
+ z-index: 1000;
825
+ margin: 0;
826
+ list-style: none;
827
+ transition: all 0.3s;
828
+ margin-top: 8px;
829
+ padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
830
+ box-sizing: border-box;
831
+ /* sjs2/shadow/large */
832
+ box-shadow: var(--sjs2-shadow-size-large-offset-x, 0) var(--sjs2-shadow-size-large-offset-y, 6px) var(--sjs2-shadow-size-large-blur, 12px) var(--sjs2-shadow-size-large-spread, 4px) var(--sjs2-shadow-color-large, rgba(0, 76, 68, 0.1));
833
+ -webkit-font-smoothing: antialiased;
834
+ -webkit-tap-highlight-color: transparent;
835
+ }
836
+ @-moz-document url-prefix() {
837
+ .sa-dropdown-list,
838
+ .sa-action-dropdown-list {
839
+ scrollbar-width: thin;
840
+ scrollbar-color: rgba(0, 0, 0, 0.1490196078) transparent;
841
+ }
842
+ }
843
+ .sa-dropdown-list::-webkit-scrollbar,
844
+ .sa-action-dropdown-list::-webkit-scrollbar {
845
+ width: 12px;
846
+ height: 12px;
847
+ background-color: transparent;
848
+ }
849
+ .sa-dropdown-list::-webkit-scrollbar-thumb,
850
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb {
851
+ border: 4px solid rgba(0, 0, 0, 0);
852
+ background-clip: padding-box;
853
+ border-radius: 1024px;
854
+ background-color: rgba(0, 0, 0, 0.1490196078);
855
+ }
856
+ .sa-dropdown-list::-webkit-scrollbar-track,
857
+ .sa-action-dropdown-list::-webkit-scrollbar-track {
858
+ background: transparent;
859
+ }
860
+ .sa-dropdown-list::-webkit-scrollbar-thumb:hover,
861
+ .sa-action-dropdown-list::-webkit-scrollbar-thumb:hover {
862
+ border: 2px solid rgba(0, 0, 0, 0);
863
+ background-color: rgba(0, 0, 0, 0.1490196078);
864
+ }
865
+
866
+ .sa-dropdown-list.sa-dropdown--opened {
867
+ display: block;
868
+ top: 100%;
869
+ }
870
+
871
+ .sa-action-dropdown-list.sa-action-dropdown--opened {
872
+ display: block;
873
+ top: 100%;
874
+ border-radius: var(--sjs2-radius-container-drop, 16px);
875
+ border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
876
+ background: var(--sjs2-color-utility-sheet, #FFF);
877
+ /* sjs2/border-effect/floating/default */
878
+ box-shadow: var(--sjs2-border-offset-x-floating-default, 0) var(--sjs2-border-offset-y-floating-default, 6px) var(--sjs2-border-blur-floating-default, 12px) var(--sjs2-border-spread-floating-default, 4px) var(--sjs2-color-utility-shadow-floating-default, rgba(0, 76, 68, 0.2));
879
+ }
880
+
881
+ .sa-action-dropdown-list.sa-action-dropdown--up.sa-action-dropdown--opened {
882
+ top: auto;
883
+ bottom: 100%;
884
+ margin-top: 0;
885
+ margin-bottom: 8px;
886
+ border-top: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
887
+ border-bottom: none;
888
+ }
889
+
890
+ .sa-dropdown-item,
891
+ .sa-action-dropdown-item {
892
+ width: max-content;
893
+ min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
894
+ max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
895
+ padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
205
896
  cursor: pointer;
206
- border: 1px solid transparent;
897
+ transition: all 0.3s;
898
+ display: flex;
899
+ align-items: center;
900
+ gap: var(--sjs2-spacing-x150, 12px);
901
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
902
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
903
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
904
+ font-family: var(--sjs2-typography-font-family-text);
905
+ font-weight: var(--sjs2-typography-font-weight-basic);
906
+ font-size: var(--sjs2-typography-font-size-default);
907
+ line-height: var(--sjs2-typography-line-height-default);
908
+ }
909
+ .sa-dropdown-item:hover,
910
+ .sa-action-dropdown-item:hover {
911
+ background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
912
+ }
913
+ .sa-dropdown-item:hover .sa-action-dropdown-icon,
914
+ .sa-action-dropdown-item:hover .sa-action-dropdown-icon {
915
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
916
+ background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
917
+ box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-false-hovered-border, #D4D4D4) inset;
918
+ }
919
+ .sa-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon,
920
+ .sa-action-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
921
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
922
+ background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
923
+ box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-true-hovered-border, #15987E) inset;
924
+ }
925
+
926
+ .sa-action-dropdown-item:focus,
927
+ .sa-action-dropdown-item--focused,
928
+ .sa-dropdown-item:focus,
929
+ .sa-dropdown-item--focused {
930
+ border-radius: var(--sjs2-radius-control-drop-item, 8px);
931
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
932
+ }
933
+
934
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon {
935
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
936
+ background: var(--sjs2-color-control-check-true-default-bg, #19B394);
937
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
938
+ }
939
+ .sa-action-dropdown-item--selected .sa-action-dropdown-icon svg {
940
+ display: block;
941
+ }
942
+
943
+ .sa-action-dropdown-item--toggle-all {
944
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
945
+ font-family: var(--sjs2-typography-font-family-text);
946
+ font-weight: var(--sjs2-typography-font-weight-strong);
947
+ font-size: var(--sjs2-typography-font-size-default);
948
+ line-height: var(--sjs2-typography-line-height-default);
949
+ }
950
+ .sa-action-dropdown-item--toggle-all:hover {
951
+ color: var(--sjs2-color-fg-brand-primary-dim, #15987e);
952
+ }
953
+
954
+ .sa-action-dropdown-icon {
955
+ width: var(--sjs2-size-icon-medium, 24px);
956
+ height: var(--sjs2-size-icon-medium, 24px);
957
+ min-width: var(--sjs2-size-icon-medium, 24px);
958
+ border-radius: var(--sjs2-radius-control-checkbox, 4px);
959
+ background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
960
+ box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
961
+ }
962
+ .sa-action-dropdown-icon svg {
963
+ display: none;
964
+ width: var(--sjs2-size-icon-medium, 24px);
965
+ height: var(--sjs2-size-icon-medium, 24px);
966
+ }
967
+ .sa-action-dropdown-icon use {
968
+ fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
969
+ }
970
+
971
+ .sa-dropdown-item.sa-dropdown-item--selected {
972
+ background-color: var(--sjs2-color-bg-brand-primary, #19B394);
973
+ color: var(--sjs2-color-fg-static-main-primary, #FFF);
974
+ font-family: var(--sjs2-typography-font-family-text);
975
+ font-weight: var(--sjs2-typography-font-weight-strong);
976
+ font-size: var(--sjs2-typography-font-size-default);
977
+ line-height: var(--sjs2-typography-line-height-default);
978
+ }
979
+
980
+ .sa-dropdown-placeholder {
981
+ overflow: hidden;
982
+ color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
983
+ text-overflow: ellipsis;
984
+ font-family: var(--sjs2-typography-font-family-text);
985
+ font-weight: var(--sjs2-typography-font-weight-basic);
986
+ font-size: var(--sjs2-typography-font-size-default);
987
+ line-height: var(--sjs2-typography-line-height-default);
988
+ }
989
+
990
+ .sa-dropdown-icon {
991
+ width: var(--sa-icon-size);
992
+ height: var(--sa-icon-size);
993
+ flex-shrink: 0;
994
+ }
995
+
996
+ .sa-dropdown-header-icon {
997
+ width: var(--sa-icon-size);
998
+ height: var(--sa-icon-size);
999
+ margin-right: 8px;
1000
+ }
1001
+
1002
+ .sa-dropdown-header-content {
1003
+ display: flex;
1004
+ padding: var(--sjs2-layout-control-input-medium-content-vertical, 8px) var(--sjs2-layout-control-input-medium-content-horizontal, 12px);
1005
+ align-items: flex-start;
1006
+ flex: 1 0 0;
1007
+ }
1008
+
1009
+ .sa-dropdown-header-text {
207
1010
  white-space: nowrap;
208
- margin: 0 10px;
1011
+ overflow: hidden;
1012
+ text-overflow: ellipsis;
1013
+ color: var(--sjs2-color-control-input-default-value, #1C1B20);
1014
+ font-family: var(--sjs2-typography-font-family-text);
1015
+ font-weight: var(--sjs2-typography-font-weight-basic);
1016
+ font-size: var(--sjs2-typography-font-size-default);
1017
+ line-height: var(--sjs2-typography-line-height-default);
1018
+ }
1019
+
1020
+ .sa-action-dropdown-header {
1021
+ display: flex;
1022
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1023
+ justify-content: center;
1024
+ align-items: center;
1025
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1026
+ border-radius: var(--sjs2-radius-control-action, 8px);
1027
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1028
+ }
1029
+ .sa-action-dropdown-header:focus-visible {
1030
+ border-radius: var(--sjs2-radius-control-action, 8px);
1031
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1032
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1033
+ }
1034
+
1035
+ .sa-action-dropdown-title {
1036
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
1037
+ }
1038
+
1039
+ .sa-action-dropdown-arrow {
1040
+ display: flex;
1041
+ padding: var(--sjs2-layout-control-action-small-addon-vertical, 4px) var(--sjs2-layout-control-action-small-addon-horizontal, 4px);
1042
+ justify-content: center;
1043
+ align-items: center;
1044
+ }
1045
+
1046
+ .sa-action-dropdown-arrow svg {
1047
+ display: flex;
1048
+ width: 16px;
1049
+ height: 16px;
1050
+ justify-content: center;
1051
+ align-items: center;
1052
+ }
1053
+ .sa-action-dropdown-arrow svg use {
1054
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
1055
+ }
1056
+
1057
+ .sa-action-dropdown-header {
1058
+ display: flex;
1059
+ min-width: var(--sjs2-size-semantic-small, 40px);
1060
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1061
+ justify-content: center;
1062
+ align-items: center;
1063
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1064
+ }
1065
+
1066
+ .sa-button {
1067
+ outline: none;
1068
+ user-select: none;
1069
+ cursor: pointer;
1070
+ display: flex;
1071
+ flex-shrink: 0;
1072
+ min-width: var(--sjs2-size-semantic-small, 40px);
1073
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1074
+ justify-content: center;
1075
+ align-items: center;
1076
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1077
+ }
1078
+
1079
+ .sa-button-text {
1080
+ display: flex;
1081
+ flex: 1 0 auto;
1082
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
1083
+ justify-content: center;
1084
+ align-items: center;
1085
+ }
1086
+
1087
+ .sa-button-brand-secondary {
1088
+ border-radius: var(--sjs2-radius-control-button, 8px);
1089
+ background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
1090
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
1091
+ }
1092
+ .sa-button-brand-secondary:hover {
1093
+ background: var(--sjs2-color-bg-brand-secondary-dim, rgba(25, 179, 148, 0.15));
1094
+ }
1095
+
1096
+ .sa-button-brand-tertiary {
1097
+ border-radius: 8px;
1098
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1099
+ color: var(--sjs2-color-fg-brand-primary, #19B394);
1100
+ text-align: center;
1101
+ font-family: var(--sjs2-typography-font-family-text);
1102
+ font-weight: var(--sjs2-typography-font-weight-strong);
1103
+ font-size: var(--sjs2-typography-font-size-default);
1104
+ line-height: var(--sjs2-typography-line-height-default);
1105
+ }
1106
+ .sa-button-brand-tertiary:hover {
1107
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1108
+ }
1109
+
1110
+ @media screen and (max-width: 600px) {
1111
+ .sa-dropdown {
1112
+ width: 100%;
1113
+ flex-direction: column;
1114
+ flex-grow: 0;
1115
+ }
1116
+ .sa-dropdown-container {
1117
+ width: 100%;
1118
+ flex-grow: 0;
1119
+ }
1120
+ .sa-dropdown-list.sa-dropdown--opened {
1121
+ min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
1122
+ max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
1123
+ }
1124
+ }
1125
+ .sa-panel__header {
1126
+ display: flex;
1127
+ flex-direction: column;
1128
+ gap: var(--sjs2-spacing-x200, 16px);
1129
+ }
1130
+
1131
+ .sa-panel__header.sa-toolbar--has-content {
1132
+ padding: var(--sjs2-spacing-x200, 16px);
1133
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1134
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1135
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1136
+ }
1137
+
1138
+ .sa-pivot--standalone {
1139
+ background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
1140
+ display: flex;
1141
+ padding: var(--sjs2-spacing-x300, 24px);
1142
+ flex-direction: column;
1143
+ gap: var(--sjs2-spacing-x300, 24px);
1144
+ }
1145
+ .sa-pivot--standalone .sa-visualizer-wrapper {
1146
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1147
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1148
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1149
+ padding: var(--sjs2-spacing-x400, 32px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1150
+ }
1151
+
1152
+ .sa-pivot__header {
1153
+ display: flex;
1154
+ flex-direction: column;
1155
+ gap: var(--sjs2-spacing-x200, 16px);
1156
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1157
+ }
1158
+
1159
+ .sa-panel__header > .sa-toolbar {
1160
+ gap: var(--sjs2-spacing-x300, 24px);
1161
+ }
1162
+
1163
+ .sa-panel__header .sa-dropdown {
1164
+ flex-grow: 0;
1165
+ }
1166
+
1167
+ .sa-panel__content.muuri {
1168
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x300, 24px));
1169
+ }
1170
+ @media screen and (max-width: 600px) {
1171
+ .sa-panel__content.muuri {
1172
+ margin-inline-start: calc(-1 * var(--sjs2-spacing-x150, 12px));
1173
+ }
1174
+ }
1175
+
1176
+ .sa-panel__content:not(.muuri) {
1177
+ display: flex;
1178
+ flex-direction: column;
1179
+ gap: var(--sjs2-spacing-x300, 24px);
1180
+ margin-top: var(--sjs2-spacing-x300, 24px);
209
1181
  }
1182
+
1183
+ .sa-grid {
1184
+ position: relative;
1185
+ }
1186
+
1187
+ .sa-grid__grid-sizer {
1188
+ width: 100%;
1189
+ box-sizing: border-box;
1190
+ }
1191
+ @media screen and (min-width: 1400px) {
1192
+ .sa-grid__grid-sizer {
1193
+ width: 50%;
1194
+ }
1195
+ }
1196
+
1197
+ .sa-question {
1198
+ display: inline-block;
1199
+ width: 100%;
1200
+ vertical-align: top;
1201
+ box-sizing: border-box;
1202
+ overflow: hidden;
1203
+ border-radius: var(--sjs2-radius-container-panel, 16px);
1204
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1205
+ box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
1206
+ }
1207
+
1208
+ .sa-question .sa-question__content {
1209
+ position: relative;
1210
+ padding: 0 var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
1211
+ }
1212
+ @media screen and (max-width: 600px) {
1213
+ .sa-question .sa-question__content {
1214
+ padding: 0 var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px);
1215
+ }
1216
+ }
1217
+
1218
+ .sa-question-layouted {
1219
+ overflow: visible;
1220
+ position: absolute;
1221
+ width: 100%;
1222
+ margin-inline-start: var(--sjs2-spacing-x300, 24px);
1223
+ margin-top: var(--sjs2-spacing-x300, 24px);
1224
+ }
1225
+ @media screen and (min-width: 1400px) {
1226
+ .sa-question-layouted {
1227
+ width: calc(50% - var(--sjs2-spacing-x300, 24px) - 1px);
1228
+ }
1229
+ }
1230
+ @media screen and (max-width: 600px) {
1231
+ .sa-question-layouted {
1232
+ margin-inline-start: var(--sjs2-spacing-x150, 12px);
1233
+ margin-top: var(--sjs2-spacing-x150, 12px);
1234
+ width: 100%;
1235
+ }
1236
+ }
1237
+
1238
+ .sa-question-layouted:focus-within {
1239
+ z-index: 1;
1240
+ }
1241
+
1242
+ .sa-question__title {
1243
+ margin: 0;
1244
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1245
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1246
+ font-family: var(--sjs2-typography-font-family-text);
1247
+ font-weight: var(--sjs2-typography-font-weight-strong);
1248
+ font-size: var(--sjs2-typography-font-size-default);
1249
+ line-height: var(--sjs2-typography-line-height-default);
1250
+ }
1251
+ @media screen and (max-width: 600px) {
1252
+ .sa-question__title {
1253
+ padding-inline-end: 40px;
1254
+ }
1255
+ }
1256
+
1257
+ .sa-question__header--draggable {
1258
+ cursor: move;
1259
+ }
1260
+
1261
+ .sa-question__drag-area {
1262
+ display: flex;
1263
+ flex-direction: column;
1264
+ justify-content: center;
1265
+ align-items: center;
1266
+ min-height: var(--sjs2-spacing-x400, 32px);
1267
+ }
1268
+ @media screen and (max-width: 600px) {
1269
+ .sa-question__drag-area {
1270
+ min-height: 0;
1271
+ }
1272
+ }
1273
+
1274
+ .sa-question__drag-area-icon {
1275
+ cursor: move;
1276
+ display: flex;
1277
+ padding: var(--sjs2-spacing-x100, 8px);
1278
+ align-items: center;
1279
+ }
1280
+ .sa-question__drag-area-icon svg {
1281
+ display: flex;
1282
+ width: var(--sjs2-size-x300, 24px);
1283
+ height: var(--sjs2-size-x200, 16px);
1284
+ flex-direction: column;
1285
+ align-items: center;
1286
+ }
1287
+ .sa-question__drag-area-icon use {
1288
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1289
+ }
1290
+
1291
+ .sa-question__hide-action {
1292
+ position: absolute;
1293
+ right: 8px;
1294
+ top: 8px;
1295
+ display: flex;
1296
+ padding: var(--ctr-actionbar-button-padding-top-large-icon, 8px) var(--ctr-actionbar-button-padding-right-large-icon, 8px) var(--ctr-actionbar-button-padding-bottom-large-icon, 8px) var(--ctr-actionbar-button-padding-left-large-icon, 8px);
1297
+ justify-content: center;
1298
+ align-items: center;
1299
+ gap: var(--ctr-actionbar-button-gap, 8px);
1300
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1301
+ cursor: pointer;
1302
+ }
1303
+ .sa-question__hide-action svg {
1304
+ width: 24px;
1305
+ height: 24px;
1306
+ }
1307
+ .sa-question__hide-action use {
1308
+ fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
1309
+ }
1310
+ .sa-question__hide-action:hover {
1311
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1312
+ background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
1313
+ }
1314
+ .sa-question__hide-action:hover use {
1315
+ fill: var(--sjs2-color-fg-basic-primary-muted, rgb(66, 65, 70));
1316
+ }
1317
+ .sa-question__hide-action:focus-visible {
1318
+ border-radius: var(--sjs2-radius-control-action-icon, 8px);
1319
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1320
+ background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
1321
+ }
1322
+
1323
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1324
+ padding-top: var(--sjs2-spacing-x400, 32px);
1325
+ }
1326
+ @media screen and (max-width: 600px) {
1327
+ .sa-question__header:not(.sa-question__header--allow-drag) {
1328
+ padding-top: var(--sjs2-spacing-x300, 24px);
1329
+ }
1330
+ }
1331
+
1332
+ .sa-toolbar {
1333
+ display: flex;
1334
+ flex-wrap: wrap;
1335
+ column-gap: var(--sjs2-spacing-static-x100, 8px);
1336
+ row-gap: var(--sjs2-spacing-static-x150, 12px);
1337
+ align-items: center;
1338
+ align-self: stretch;
1339
+ user-select: none;
1340
+ }
1341
+
1342
+ @media screen and (max-width: 600px) {
1343
+ .sa-toolbar {
1344
+ align-items: flex-start;
1345
+ }
1346
+ }
1347
+ .sa-question__content .sa-toolbar--has-content {
1348
+ padding-bottom: var(--sjs2-spacing-x200, 16px);
1349
+ }
1350
+
1351
+ .sa-toolbar__button {
1352
+ display: flex;
1353
+ padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
1354
+ justify-content: center;
1355
+ align-items: center;
1356
+ gap: var(--sjs2-layout-control-action-small-box-gap, 0);
1357
+ border-radius: var(--sjs2-radius-control-action, 8px);
1358
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
1359
+ cursor: pointer;
1360
+ }
1361
+
210
1362
  .sa-toolbar__button:hover {
211
- border-color: var(--border-color, #e7e7e7);
212
- background-blend-mode: darken;
1363
+ background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
1364
+ }
1365
+
1366
+ .sa-toolbar__button:disabled {
1367
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1368
+ }
1369
+
1370
+ .sa-toolbar__button:focus-visible {
1371
+ border-radius: var(--sjs2-radius-control-action, 8px);
1372
+ outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
1373
+ background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
213
1374
  }
214
- .sa-toolbar__button:first-child {
215
- margin-left: 0;
1375
+
1376
+ .sa-toolbar__button--disabled,
1377
+ .sa-toolbar__button--disabled:hover {
1378
+ opacity: var(--sjs2-opacity-disabled, 0.25);
1379
+ background: transparent;
1380
+ cursor: default;
216
1381
  }
217
- .sa-toolbar__button:last-child {
218
- margin-right: 0;
1382
+ .sa-toolbar__button--disabled .sa-toolbar__button-text,
1383
+ .sa-toolbar__button--disabled:hover .sa-toolbar__button-text {
1384
+ color: var(--sjs2-color-fg-state-common-disabled, rgba(28, 27, 32, 0.4));
1385
+ }
1386
+
1387
+ .sa-toolbar__button-text {
1388
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
1389
+ text-align: center;
1390
+ padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 8px);
1391
+ font-family: var(--sjs2-typography-font-family-text);
1392
+ font-weight: var(--sjs2-typography-font-weight-strong);
1393
+ font-size: var(--sjs2-typography-font-size-default);
1394
+ line-height: var(--sjs2-typography-line-height-default);
1395
+ }
1396
+
1397
+ .sa-toolbar__button-icon {
1398
+ display: flex;
1399
+ width: var(--sjs2-size-x300, 24px);
1400
+ height: var(--sjs2-size-x300, 24px);
1401
+ justify-content: center;
1402
+ align-items: center;
1403
+ }
1404
+ .sa-toolbar__button-icon use {
1405
+ fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
219
1406
  }
220
1407
 
221
1408
  .sa-toolbar__svg-button {
@@ -295,14 +1482,38 @@
295
1482
  }
296
1483
 
297
1484
  .sa-question__filter {
298
- display: inline-block;
299
- padding: 0 1em;
1485
+ display: flex;
1486
+ width: 100%;
1487
+ align-items: center;
1488
+ gap: var(--sjs2-spacing-x050, 4px);
1489
+ }
1490
+ .sa-question__filter .sa-toolbar__button-with-icon {
1491
+ display: flex;
1492
+ padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
1493
+ justify-content: center;
1494
+ align-items: center;
1495
+ }
1496
+ .sa-question__filter .sa-toolbar__button-icon {
1497
+ width: var(--sjs2-size-icon-small, 16px);
1498
+ height: var(--sjs2-size-icon-small, 16px);
1499
+ padding: var(--sjs2-layout-control-action-x-small-icon-vertical, 4px) var(--sjs2-layout-control-action-x-small-icon-horizontal, 4px);
1500
+ gap: 0;
1501
+ }
1502
+ .sa-question__filter .sa-toolbar__button-icon svg {
1503
+ width: var(--sjs2-size-icon-small, 16px);
1504
+ height: var(--sjs2-size-icon-small, 16px);
1505
+ }
1506
+ .sa-question__filter .sa-toolbar__button-text {
1507
+ display: none;
300
1508
  }
301
1509
 
302
1510
  .sa-question__filter-text {
303
- vertical-align: middle;
304
- margin-top: 1px;
305
- line-height: 32px;
1511
+ color: var(--sjs2-color-fg-basic-primary, #1c1b20);
1512
+ text-align: center;
1513
+ font-family: var(--sjs2-typography-font-family-text);
1514
+ font-weight: var(--sjs2-typography-font-weight-basic);
1515
+ font-size: var(--sjs2-typography-font-size-default);
1516
+ line-height: var(--sjs2-typography-line-height-default);
306
1517
  }
307
1518
 
308
1519
  /* latin-ext */
@@ -348,22 +1559,28 @@
348
1559
  }
349
1560
 
350
1561
  .sa-text-table {
1562
+ font-family: var(--sjs2-typography-font-family-text);
1563
+ font-weight: var(--sjs2-typography-font-weight-basic);
1564
+ font-size: var(--sjs2-typography-font-size-default);
1565
+ line-height: var(--sjs2-typography-line-height-default);
351
1566
  width: 100%;
352
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
353
- font-size: var(--root-font-size, 14px);
354
1567
  color: var(--text-color, #404040);
355
1568
  border-width: 1px;
356
1569
  border-collapse: collapse;
357
- background-color: var(--background-color, #f7f7f7);
1570
+ }
1571
+
1572
+ .sa-text-table tr:first-child {
1573
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
358
1574
  }
359
1575
 
360
1576
  .sa-text-table__cell {
361
- border-width: 1px;
362
- padding: 8px;
363
- border-style: solid;
364
- border-color: var(--border-color, #e7e7e7);
365
- background-color: var(--background-color, #f7f7f7);
366
- min-height: 34px;
1577
+ font-family: var(--sjs2-typography-font-family-text);
1578
+ font-weight: var(--sjs2-typography-font-weight-basic);
1579
+ font-size: var(--sjs2-typography-font-size-default);
1580
+ line-height: var(--sjs2-typography-line-height-default);
1581
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1582
+ padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
1583
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
367
1584
  }
368
1585
 
369
1586
  .sa-text-table__cell--number {
@@ -371,7 +1588,11 @@
371
1588
  }
372
1589
 
373
1590
  th.sa-text-table__cell {
374
- font-weight: 600;
1591
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1592
+ font-family: var(--sjs2-typography-font-family-text);
1593
+ font-weight: var(--sjs2-typography-font-weight-strong);
1594
+ font-size: var(--sjs2-typography-font-size-default);
1595
+ line-height: var(--sjs2-typography-line-height-default);
375
1596
  }
376
1597
  /*!****************************************************************************************************************************************************************************!*\
377
1598
  !*** 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 ***!
@@ -385,76 +1606,626 @@ th.sa-text-table__cell {
385
1606
 
386
1607
  .sa-statistics-table {
387
1608
  width: 100%;
388
- font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
389
- font-size: var(--root-font-size, 14px);
390
- color: var(--text-color, #404040);
391
- background-color: var(--background-color, #f7f7f7);
392
1609
  }
393
1610
 
394
1611
  .sa-statistics-table__cell {
395
- border-width: 1px;
396
- padding: 8px;
397
- border-style: solid;
398
- border-color: var(--border-color, #e7e7e7);
399
- background-color: var(--background-color, #f7f7f7);
400
- min-height: 34px;
1612
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1613
+ }
1614
+
1615
+ .sa-statistics-table__cell-text {
1616
+ color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
1617
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1618
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1619
+ font-family: var(--sjs2-typography-font-family-text);
1620
+ font-weight: var(--sjs2-typography-font-weight-basic);
1621
+ font-size: var(--sjs2-typography-font-size-default);
1622
+ line-height: var(--sjs2-typography-line-height-default);
1623
+ }
1624
+
1625
+ .sa-statistics-table__cell:first-child .sa-statistics-table__cell-text {
1626
+ margin-inline-start: 0;
1627
+ }
1628
+
1629
+ .sa-statistics-table__cell:last-child .sa-statistics-table__cell-text {
1630
+ margin-inline-end: 0;
401
1631
  }
402
1632
 
403
- .sa-statistics-table__cell-value {
1633
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-text,
1634
+ .sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-header-text {
404
1635
  text-align: right;
405
- min-width: 30px;
406
1636
  }
407
1637
 
408
1638
  .sa-statistics-table__cell-header {
409
- font-weight: bold;
1639
+ border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1640
+ border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
1641
+ }
1642
+
1643
+ .sa-statistics-table__cell-header-text {
1644
+ color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
1645
+ padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
1646
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1647
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
1648
+ text-align: left;
1649
+ font-family: var(--sjs2-typography-font-family-text);
1650
+ font-weight: var(--sjs2-typography-font-weight-strong);
1651
+ font-size: var(--sjs2-typography-font-size-default);
1652
+ line-height: var(--sjs2-typography-line-height-default);
1653
+ }
1654
+
1655
+ .sa-statistics-table__cell-header:first-child .sa-statistics-table__cell-header-text {
1656
+ margin-inline-start: 0;
1657
+ }
1658
+
1659
+ .sa-statistics-table__cell-header:last-child .sa-statistics-table__cell-header-text {
1660
+ margin-inline-end: 0;
410
1661
  }
411
1662
 
412
1663
  .sa-choices-sparkline {
413
- min-width: 100px;
414
- height: 24px;
415
- border: 1px solid var(--main-color, #1ab394);
1664
+ display: flex;
1665
+ flex: 1 0 0;
1666
+ flex-direction: column;
1667
+ align-items: flex-start;
1668
+ padding: var(--dsb-table-cell-padding-top-progressbar, 16px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom-progressbar, 16px) var(--dsb-table-cell-padding-left-no-border, 0px);
1669
+ margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
1670
+ margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
416
1671
  }
417
1672
 
418
1673
  .sa-choices-sparkline-value {
419
- height: 100%;
420
- background-color: var(--main-color, #1ab394);
1674
+ display: flex;
1675
+ align-items: flex-start;
1676
+ height: var(--dsb-table-cell-progressbar-height, 8px);
1677
+ border-radius: var(--dsb-table-cell-progressbar-corner-radius, 2px);
1678
+ background: var(--dsb-table-cell-progressbar-color, #19B394);
421
1679
  }
422
1680
  /*!***************************************************************************************************************************************************************!*\
423
1681
  !*** 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/nps.scss ***!
424
1682
  \***************************************************************************************************************************************************************/
425
1683
  .sa-visualizer-nps {
426
1684
  display: flex;
427
- flex-direction: row;
428
- gap: 16px;
429
- overflow-x: auto;
1685
+ align-items: flex-start;
1686
+ align-content: flex-start;
1687
+ gap: 16px var(--dsb-nps-vizualizer-gap, 16px);
1688
+ align-self: stretch;
1689
+ flex-wrap: wrap;
430
1690
  }
431
1691
 
432
1692
  .sa-visualizer-nps__score-part {
433
1693
  display: flex;
1694
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1695
+ padding: var(--dsb-nps-vizualizer-item-padding-top, 16px) var(--dsb-nps-vizualizer-item-padding-right, 24px) var(--dsb-nps-vizualizer-item-padding-bottom, 16px) var(--dsb-nps-vizualizer-item-padding-left, 24px);
434
1696
  flex-direction: column;
435
- padding: 0 16px;
1697
+ align-items: flex-start;
1698
+ gap: var(--dsb-nps-vizualizer-item-gap, 24px);
1699
+ flex: 1 0 0;
1700
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1701
+ border: var(--dsb-nps-vizualizer-item-border-width, 1px) dashed var(--dsb-nps-vizualizer-item-border-color, #DCDCDC);
1702
+ background: var(--dsb-nps-vizualizer-item-background-color, #FFF);
436
1703
  }
437
1704
 
438
1705
  .sa-visualizer-nps__score-part-title {
439
- font-size: 32px;
440
- text-align: center;
441
- color: #909090;
1706
+ color: var(--dsb-nps-vizualizer-item-title-color, rgba(0, 0, 0, 0.9));
1707
+ font-family: var(--sjs2-typography-font-family-text);
1708
+ font-weight: var(--sjs2-typography-font-weight-strong);
1709
+ font-size: var(--sjs2-typography-font-size-default);
1710
+ line-height: var(--sjs2-typography-line-height-default);
442
1711
  }
443
1712
 
444
1713
  .sa-visualizer-nps__score-part-values {
445
1714
  display: flex;
446
- flex-direction: row;
447
- gap: 16px;
448
- align-items: baseline;
1715
+ align-items: flex-start;
1716
+ gap: var(--dsb-nps-vizualizer-item-text-gap, 24px);
1717
+ align-self: stretch;
449
1718
  }
450
1719
 
451
1720
  .sa-visualizer-nps__score-part-value {
452
- font-size: 48px;
1721
+ flex: 1 0 0;
1722
+ color: var(--dsb-nps-vizualizer-item-text-color-value, rgba(0, 0, 0, 0.9));
1723
+ font-family: var(--sjs2-typography-font-family-text);
1724
+ font-weight: var(--sjs2-typography-font-weight-strong);
1725
+ font-size: var(--sjs2-typography-font-size-large);
1726
+ line-height: var(--sjs2-typography-line-height-large);
453
1727
  }
454
1728
 
455
1729
  .sa-visualizer-nps__score-part-percent {
456
- font-size: 24px;
457
- color: #606060;
1730
+ color: var(--dsb-nps-vizualizer-item-text-color-percent, #19B394);
1731
+ text-align: right;
1732
+ font-family: var(--sjs2-typography-font-family-text);
1733
+ font-weight: var(--sjs2-typography-font-weight-strong);
1734
+ font-size: var(--sjs2-typography-font-size-large);
1735
+ line-height: var(--sjs2-typography-line-height-large);
1736
+ }
1737
+ /*!****************************************************************************************************************************************************************!*\
1738
+ !*** 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/card.scss ***!
1739
+ \****************************************************************************************************************************************************************/
1740
+ .sa-visualizer-card {
1741
+ display: flex;
1742
+ padding-top: var(--sjs2-spacing-x300, 24px);
1743
+ flex-direction: column;
1744
+ align-items: flex-start;
1745
+ align-self: stretch;
1746
+ }
1747
+
1748
+ .sa-visualizer-card-content {
1749
+ display: flex;
1750
+ min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
1751
+ padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
1752
+ flex-direction: column;
1753
+ align-items: flex-start;
1754
+ gap: var(--sjs2-spacing-x300, 24px);
1755
+ border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
1756
+ border: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
1757
+ background: var(--sjs2-color-bg-basic-primary, #FFF);
1758
+ }
1759
+
1760
+ .sa-visualizer-card-value {
1761
+ color: var(--sjs2-color-fg-basic-primary, #1C1B20);
1762
+ font-family: var(--sjs2-typography-font-family-text);
1763
+ font-weight: var(--sjs2-typography-font-weight-strong);
1764
+ font-size: var(--sjs2-typography-font-size-large);
1765
+ line-height: var(--sjs2-typography-line-height-large);
1766
+ }
1767
+ /*!******************************************************************************************************************************************************************************************!*\
1768
+ !*** 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/utils/editableSeriesListWidget.scss ***!
1769
+ \******************************************************************************************************************************************************************************************/
1770
+ .sa-series-list {
1771
+ display: flex;
1772
+ flex-direction: column;
1773
+ align-items: flex-start;
1774
+ align-self: stretch;
1775
+ }
1776
+
1777
+ .sa-series-list__title {
1778
+ display: flex;
1779
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
1780
+ align-items: center;
1781
+ align-self: stretch;
1782
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
1783
+ font-family: var(--sjs2-typography-font-family-text);
1784
+ font-weight: var(--sjs2-typography-font-weight-basic);
1785
+ font-size: var(--sjs2-typography-font-size-default);
1786
+ line-height: var(--sjs2-typography-line-height-default);
1787
+ }
1788
+
1789
+ .sa-series-list__items {
1790
+ display: flex;
1791
+ flex-direction: column;
1792
+ align-items: flex-start;
1793
+ gap: var(--sjs2-spacing-x200, 16px);
1794
+ align-self: stretch;
1795
+ }
1796
+
1797
+ .sa-series-settings {
1798
+ display: flex;
1799
+ padding: var(--sjs2-spacing-x150, 12px);
1800
+ flex-direction: column;
1801
+ align-items: flex-start;
1802
+ gap: var(--sjs2-spacing-x100, 8px);
1803
+ align-self: stretch;
1804
+ border-radius: var(--sjs2-radius-x200, 16px);
1805
+ border: 1px solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
1806
+ background: var(--sjs2-color-bg-basic-primary, #fff);
1807
+ }
1808
+
1809
+ .sa-series-settings__legend-container {
1810
+ display: flex;
1811
+ flex-direction: column;
1812
+ align-items: flex-start;
1813
+ gap: var(--sjs2-spacing-x000, 0);
1814
+ align-self: stretch;
1815
+ }
1816
+
1817
+ .sa-series-settings__legend,
1818
+ .sa-series-settings__values-label {
1819
+ display: flex;
1820
+ align-items: flex-start;
1821
+ gap: 8px;
1822
+ align-self: stretch;
1823
+ }
1824
+
1825
+ .sa-series-settings__legend-inner,
1826
+ .sa-series-settings__values-label-inner {
1827
+ display: flex;
1828
+ height: 40px;
1829
+ padding: var(--sjs2-spacing-x100, 8px) var(--sjs2-size-x000, 0.001px);
1830
+ align-items: center;
1831
+ flex: 1 0 0;
1832
+ }
1833
+
1834
+ .sa-series-settings__legend-text,
1835
+ .sa-series-settings__values-label-text {
1836
+ overflow: hidden;
1837
+ color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
1838
+ text-overflow: ellipsis;
1839
+ font-family: var(--sjs2-typography-font-family-text);
1840
+ font-weight: var(--sjs2-typography-font-weight-basic);
1841
+ font-size: var(--sjs2-typography-font-size-default);
1842
+ line-height: var(--sjs2-typography-line-height-default);
1843
+ }
1844
+
1845
+ .sa-series-settings__legend-controls {
1846
+ display: flex;
1847
+ align-items: flex-start;
1848
+ gap: 8px;
1849
+ align-self: stretch;
1850
+ }
1851
+
1852
+ .sa-series-settings__values-controls {
1853
+ display: flex;
1854
+ align-items: flex-start;
1855
+ gap: var(--sjs2-spacing-x150, 12px);
1856
+ align-self: stretch;
1857
+ }
1858
+
1859
+ .sa-series-settings__values-container {
1860
+ display: flex;
1861
+ flex-direction: column;
1862
+ align-items: flex-start;
1863
+ gap: var(--sjs2-spacing-x000, 0);
1864
+ align-self: stretch;
1865
+ }
1866
+
1867
+ .sa-series-settings__actions {
1868
+ display: flex;
1869
+ padding-top: var(--sjs2-spacing-x200, 16px);
1870
+ justify-content: flex-end;
1871
+ align-items: flex-start;
1872
+ gap: var(--sjs2-spacing-x150, 12px);
1873
+ align-self: stretch;
1874
+ }
1875
+
1876
+ .sa-series-settings__action-button {
1877
+ display: flex;
1878
+ padding: var(--sjs2-spacing-x150, 12px);
1879
+ justify-content: center;
1880
+ align-items: center;
1881
+ flex: 1 0 0;
1882
+ cursor: pointer;
1883
+ border-radius: var(--sjs2-radius-component-action, 8px);
1884
+ background: var(--sjs2-color-bg-neutral-secondary, #f5f5f5);
1885
+ }
1886
+ .sa-series-settings__action-button:hover {
1887
+ background: var(--sjs2-color-component-action-neutral-secondary-hovered-bg, #ededed);
1888
+ }
1889
+
1890
+ .sa-series-settings__action-button-text {
1891
+ display: flex;
1892
+ padding: 0 var(--sjs2-spacing-x100, 8px);
1893
+ justify-content: center;
1894
+ align-items: center;
1895
+ color: var(--sjs2-color-fg-neutral-primary, #1c1b20);
1896
+ text-align: center;
1897
+ font-family: var(--sjs2-typography-font-family-text);
1898
+ font-weight: var(--sjs2-typography-font-weight-strong);
1899
+ font-size: var(--sjs2-typography-font-size-default);
1900
+ line-height: var(--sjs2-typography-line-height-default);
1901
+ }
1902
+ .sa-series-settings__action-button-text:hover {
1903
+ color: var(--sjs2-color-component-action-neutral-secondary-hovered-label, #1c1b20);
1904
+ }
1905
+
1906
+ .sa-series-settings__remove-button {
1907
+ display: flex;
1908
+ flex: 1 0 0;
1909
+ padding: var(--sjs2-spacing-x150, 12px);
1910
+ justify-content: center;
1911
+ align-items: center;
1912
+ cursor: pointer;
1913
+ border-radius: var(--sjs2-radius-component-action, 8px);
1914
+ background: var(--sjs2-color-component-action-alert-secondary-default-bg, rgba(229, 10, 62, 0.1));
1915
+ }
1916
+ .sa-series-settings__remove-button:hover {
1917
+ background: var(--sjs2-color-component-action-alert-secondary-hovered-bg, rgba(229, 10, 62, 0.15));
1918
+ }
1919
+
1920
+ .sa-series-settings__remove-button-text {
1921
+ display: flex;
1922
+ padding: 0 var(--sjs2-spacing-x100, 8px);
1923
+ justify-content: center;
1924
+ align-items: center;
1925
+ color: var(--sjs2-color-component-action-alert-secondary-default-label, #c30935);
1926
+ text-align: center;
1927
+ font-family: var(--sjs2-typography-font-family-text);
1928
+ font-weight: var(--sjs2-typography-font-weight-strong);
1929
+ font-size: var(--sjs2-typography-font-size-default);
1930
+ line-height: var(--sjs2-typography-line-height-default);
1931
+ }
1932
+ .sa-series-settings__remove-button-text:hover {
1933
+ color: var(--sjs2-color-component-action-alert-secondary-hovered-label, #c30935);
1934
+ }
1935
+
1936
+ .sa-sidebar--opened .sa-series-settings__dropdown {
1937
+ flex: 1;
1938
+ min-width: 0;
1939
+ }
1940
+ .sa-sidebar--opened .sa-series-settings__dropdown--value {
1941
+ flex: 1;
1942
+ min-width: 0;
1943
+ }
1944
+ .sa-sidebar--opened .sa-series-settings__dropdown--aggregation {
1945
+ flex: 0 0 auto;
1946
+ min-width: 90px;
1947
+ width: fit-content;
1948
+ }
1949
+
1950
+ .sa-series-list__add-button {
1951
+ display: flex;
1952
+ align-items: center;
1953
+ align-self: stretch;
1954
+ }
1955
+
1956
+ .sa-series-list__add-button-box {
1957
+ margin-top: var(--sjs2-spacing-x100, 8px);
1958
+ cursor: pointer;
1959
+ display: flex;
1960
+ padding: var(--sjs2-spacing-x150, 12px);
1961
+ justify-content: center;
1962
+ align-items: center;
1963
+ flex: 1 0 0;
1964
+ border-radius: var(--sjs2-radius-component-action, 8px);
1965
+ background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
1966
+ }
1967
+ .sa-series-list__add-button-box:hover {
1968
+ background: var(--sjs2-color-component-action-brand-secondary-hovered-bg, rgba(25, 179, 148, 0.15));
1969
+ }
1970
+
1971
+ .sa-series-list__add-button-icon {
1972
+ display: flex;
1973
+ width: 24px;
1974
+ height: 24px;
1975
+ justify-content: center;
1976
+ align-items: center;
1977
+ aspect-ratio: 1/1;
1978
+ }
1979
+ .sa-series-list__add-button-icon use {
1980
+ fill: var(--sjs2-color-fg-brand-primary, #19b394);
1981
+ }
1982
+
1983
+ .sa-series-list__add-button-label {
1984
+ display: flex;
1985
+ padding: 0 var(--sjs2-spacing-x100, 8px);
1986
+ justify-content: center;
1987
+ align-items: center;
1988
+ }
1989
+
1990
+ .sa-series-list__add-button-caption {
1991
+ color: var(--sjs2-color-fg-brand-primary, #19b394);
1992
+ text-align: center;
1993
+ font-family: var(--sjs2-typography-font-family-text);
1994
+ font-weight: var(--sjs2-typography-font-weight-strong);
1995
+ font-size: var(--sjs2-typography-font-size-default);
1996
+ line-height: var(--sjs2-typography-line-height-default);
1997
+ }
1998
+ .sa-series-list__add-button-caption:hover {
1999
+ color: var(--sjs2-color-component-action-brand-secondary-hovered-label, #19b394);
2000
+ }
2001
+
2002
+ .sa-pivot__secondary-y-block {
2003
+ display: flex;
2004
+ flex-direction: column;
2005
+ align-self: stretch;
2006
+ gap: var(--sjs2-spacing-x300, 24px);
2007
+ }
2008
+ /*!*************************************************************************************************************************************************************************!*\
2009
+ !*** 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/entries/fonts.scss ***!
2010
+ \*************************************************************************************************************************************************************************/
2011
+ /* cyrillic-ext */
2012
+ @font-face {
2013
+ font-family: "Open Sans";
2014
+ font-style: normal;
2015
+ font-weight: 400;
2016
+ font-stretch: 100%;
2017
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
2018
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
2019
+ }
2020
+ /* cyrillic */
2021
+ @font-face {
2022
+ font-family: "Open Sans";
2023
+ font-style: normal;
2024
+ font-weight: 400;
2025
+ font-stretch: 100%;
2026
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
2027
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2028
+ }
2029
+ /* greek-ext */
2030
+ @font-face {
2031
+ font-family: "Open Sans";
2032
+ font-style: normal;
2033
+ font-weight: 400;
2034
+ font-stretch: 100%;
2035
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
2036
+ unicode-range: U+1F00-1FFF;
2037
+ }
2038
+ /* greek */
2039
+ @font-face {
2040
+ font-family: "Open Sans";
2041
+ font-style: normal;
2042
+ font-weight: 400;
2043
+ font-stretch: 100%;
2044
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
2045
+ unicode-range: U+0370-03FF;
2046
+ }
2047
+ /* hebrew */
2048
+ @font-face {
2049
+ font-family: "Open Sans";
2050
+ font-style: normal;
2051
+ font-weight: 400;
2052
+ font-stretch: 100%;
2053
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
2054
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
2055
+ }
2056
+ /* vietnamese */
2057
+ @font-face {
2058
+ font-family: "Open Sans";
2059
+ font-style: normal;
2060
+ font-weight: 400;
2061
+ font-stretch: 100%;
2062
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
2063
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
2064
+ }
2065
+ /* latin-ext */
2066
+ @font-face {
2067
+ font-family: "Open Sans";
2068
+ font-style: normal;
2069
+ font-weight: 400;
2070
+ font-stretch: 100%;
2071
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
2072
+ 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;
2073
+ }
2074
+ /* latin */
2075
+ @font-face {
2076
+ font-family: "Open Sans";
2077
+ font-style: normal;
2078
+ font-weight: 400;
2079
+ font-stretch: 100%;
2080
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
2081
+ 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;
2082
+ }
2083
+ /* cyrillic-ext */
2084
+ @font-face {
2085
+ font-family: "Open Sans";
2086
+ font-style: normal;
2087
+ font-weight: 600;
2088
+ font-stretch: 100%;
2089
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
2090
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
2091
+ }
2092
+ /* cyrillic */
2093
+ @font-face {
2094
+ font-family: "Open Sans";
2095
+ font-style: normal;
2096
+ font-weight: 600;
2097
+ font-stretch: 100%;
2098
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
2099
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2100
+ }
2101
+ /* greek-ext */
2102
+ @font-face {
2103
+ font-family: "Open Sans";
2104
+ font-style: normal;
2105
+ font-weight: 600;
2106
+ font-stretch: 100%;
2107
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
2108
+ unicode-range: U+1F00-1FFF;
2109
+ }
2110
+ /* greek */
2111
+ @font-face {
2112
+ font-family: "Open Sans";
2113
+ font-style: normal;
2114
+ font-weight: 600;
2115
+ font-stretch: 100%;
2116
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
2117
+ unicode-range: U+0370-03FF;
2118
+ }
2119
+ /* hebrew */
2120
+ @font-face {
2121
+ font-family: "Open Sans";
2122
+ font-style: normal;
2123
+ font-weight: 600;
2124
+ font-stretch: 100%;
2125
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
2126
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
2127
+ }
2128
+ /* vietnamese */
2129
+ @font-face {
2130
+ font-family: "Open Sans";
2131
+ font-style: normal;
2132
+ font-weight: 600;
2133
+ font-stretch: 100%;
2134
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
2135
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
2136
+ }
2137
+ /* latin-ext */
2138
+ @font-face {
2139
+ font-family: "Open Sans";
2140
+ font-style: normal;
2141
+ font-weight: 600;
2142
+ font-stretch: 100%;
2143
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
2144
+ 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;
2145
+ }
2146
+ /* latin */
2147
+ @font-face {
2148
+ font-family: "Open Sans";
2149
+ font-style: normal;
2150
+ font-weight: 600;
2151
+ font-stretch: 100%;
2152
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
2153
+ 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;
2154
+ }
2155
+ /* cyrillic-ext */
2156
+ @font-face {
2157
+ font-family: "Open Sans";
2158
+ font-style: normal;
2159
+ font-weight: 700;
2160
+ font-stretch: 100%;
2161
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
2162
+ unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
2163
+ }
2164
+ /* cyrillic */
2165
+ @font-face {
2166
+ font-family: "Open Sans";
2167
+ font-style: normal;
2168
+ font-weight: 700;
2169
+ font-stretch: 100%;
2170
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
2171
+ unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2172
+ }
2173
+ /* greek-ext */
2174
+ @font-face {
2175
+ font-family: "Open Sans";
2176
+ font-style: normal;
2177
+ font-weight: 700;
2178
+ font-stretch: 100%;
2179
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
2180
+ unicode-range: U+1F00-1FFF;
2181
+ }
2182
+ /* greek */
2183
+ @font-face {
2184
+ font-family: "Open Sans";
2185
+ font-style: normal;
2186
+ font-weight: 700;
2187
+ font-stretch: 100%;
2188
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
2189
+ unicode-range: U+0370-03FF;
2190
+ }
2191
+ /* hebrew */
2192
+ @font-face {
2193
+ font-family: "Open Sans";
2194
+ font-style: normal;
2195
+ font-weight: 700;
2196
+ font-stretch: 100%;
2197
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
2198
+ unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
2199
+ }
2200
+ /* vietnamese */
2201
+ @font-face {
2202
+ font-family: "Open Sans";
2203
+ font-style: normal;
2204
+ font-weight: 700;
2205
+ font-stretch: 100%;
2206
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
2207
+ unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
2208
+ }
2209
+ /* latin-ext */
2210
+ @font-face {
2211
+ font-family: "Open Sans";
2212
+ font-style: normal;
2213
+ font-weight: 700;
2214
+ font-stretch: 100%;
2215
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
2216
+ 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;
2217
+ }
2218
+ /* latin */
2219
+ @font-face {
2220
+ font-family: "Open Sans";
2221
+ font-style: normal;
2222
+ font-weight: 700;
2223
+ font-stretch: 100%;
2224
+ src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
2225
+ 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;
2226
+ }
2227
+ :root {
2228
+ --sjs-font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
458
2229
  }
459
2230
 
460
2231
  /*# sourceMappingURL=survey.analytics.css.map*/