dtable-statistic 4.0.2-test-2

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 (210) hide show
  1. package/README.md +3 -0
  2. package/es/api/dtable-db-api.js +43 -0
  3. package/es/assets/css/color-picker.css +53 -0
  4. package/es/assets/css/color-rules-popover.css +144 -0
  5. package/es/assets/css/color-theme-dialog.css +40 -0
  6. package/es/assets/css/dashboard.css +562 -0
  7. package/es/assets/css/dialog.css +415 -0
  8. package/es/assets/css/mobile-dashboard.module.css +91 -0
  9. package/es/assets/css/slider.css +77 -0
  10. package/es/assets/css/statistic-chart.module.css +11 -0
  11. package/es/assets/css/statistic-custom-title.module.css +3 -0
  12. package/es/assets/css/statistic-custom.module.css +4 -0
  13. package/es/assets/css/statistic-numeric-column-item.module.css +43 -0
  14. package/es/assets/css/statistic-time-picker.module.css +21 -0
  15. package/es/assets/css/theme.css +61 -0
  16. package/es/assets/images/icon.png +0 -0
  17. package/es/calculator/base-calculator.js +111 -0
  18. package/es/calculator/basic-chart-calculator.js +571 -0
  19. package/es/calculator/combination-calculator.js +296 -0
  20. package/es/calculator/compare-bar-calculator.js +291 -0
  21. package/es/calculator/completeness-calculator.js +307 -0
  22. package/es/calculator/copy-value.js +47 -0
  23. package/es/calculator/dashboard-calculator.js +146 -0
  24. package/es/calculator/heat-map-calculator.js +225 -0
  25. package/es/calculator/horizontal-bar-calculator.js +100 -0
  26. package/es/calculator/index.js +88 -0
  27. package/es/calculator/map-calculator.js +169 -0
  28. package/es/calculator/mirror-calculator.js +217 -0
  29. package/es/calculator/number-card-calculator.js +135 -0
  30. package/es/calculator/pivot-table-calculator.js +810 -0
  31. package/es/calculator/scatter-calculator.js +150 -0
  32. package/es/calculator/thread-manager.js +70 -0
  33. package/es/calculator/trend-calculator.js +204 -0
  34. package/es/calculator/workers/basic-chart-calculator-worker.js +410 -0
  35. package/es/calculator/workers/calculator.worker.js +22 -0
  36. package/es/calculator/workers/card-calculator-worker.js +28 -0
  37. package/es/calculator/workers/combination-calculator-worker.js +257 -0
  38. package/es/calculator/workers/compare-bar-chart-calculator-worker.js +149 -0
  39. package/es/calculator/workers/completeness-calculator-worker.js +153 -0
  40. package/es/calculator/workers/dashboard-calculator-worker.js +56 -0
  41. package/es/calculator/workers/mirror-calculator-worker.js +132 -0
  42. package/es/calculator/workers/pivot-table-calculator-worker.js +615 -0
  43. package/es/calculator/workers/scatter-calculator-worker.js +67 -0
  44. package/es/calculator/workers/trend-calculator-worker.js +93 -0
  45. package/es/calculator/world-map-calculator.js +193 -0
  46. package/es/components/common-add-tool.js +19 -0
  47. package/es/components/dialog/chart-addition-edit-dialog.js +89 -0
  48. package/es/components/dialog/chart-addition-widgets/chart-selector.js +261 -0
  49. package/es/components/dialog/chart-addition-widgets/statistic-chart-selector.module.css +74 -0
  50. package/es/components/dialog/color-theme-dialog.js +71 -0
  51. package/es/components/dialog/enlarged-chart-dialog.js +73 -0
  52. package/es/components/dialog/new-table-dialog.js +113 -0
  53. package/es/components/dialog/new-view-dialog.js +87 -0
  54. package/es/components/dialog/rename-view-dialog.js +87 -0
  55. package/es/components/dialog/statistic-record-dialog/index.css +114 -0
  56. package/es/components/dialog/statistic-record-dialog/index.js +174 -0
  57. package/es/components/dialog/table-select-dialog.js +93 -0
  58. package/es/components/dropdown-menu/statistic-dropdown-menu.js +94 -0
  59. package/es/components/dtable-popover.js +109 -0
  60. package/es/components/dtable-search-input.js +137 -0
  61. package/es/components/dtable-select.js +104 -0
  62. package/es/components/index.js +11 -0
  63. package/es/components/loading.js +8 -0
  64. package/es/components/modal-portal.js +36 -0
  65. package/es/components/popover/color-rules/color-rule.js +179 -0
  66. package/es/components/popover/color-rules/index.js +87 -0
  67. package/es/components/popover/color-rules/rule-filters/filter.js +214 -0
  68. package/es/components/popover/color-rules/rule-filters/index.css +214 -0
  69. package/es/components/popover/color-rules/rule-filters/index.js +97 -0
  70. package/es/components/popover/color-rules/rule-filters/number-input.js +85 -0
  71. package/es/components/popover/color-rules-popover.js +213 -0
  72. package/es/components/popover/color-selector-popover.js +85 -0
  73. package/es/components/seatable-radio/index.css +51 -0
  74. package/es/components/seatable-radio/index.js +28 -0
  75. package/es/components/select/index.js +2 -0
  76. package/es/components/select/option-group.css +104 -0
  77. package/es/components/select/option-group.js +225 -0
  78. package/es/components/select/option.js +51 -0
  79. package/es/components/select/select.css +211 -0
  80. package/es/components/select/select.js +157 -0
  81. package/es/components/toast/alert.js +130 -0
  82. package/es/components/toast/index.js +3 -0
  83. package/es/components/toast/toast.js +164 -0
  84. package/es/components/toast/toastManager.js +150 -0
  85. package/es/components/toast/toaster.js +64 -0
  86. package/es/constants/color-rules.js +8 -0
  87. package/es/constants/dtable-select-style.js +61 -0
  88. package/es/constants/event-types.js +1 -0
  89. package/es/constants/index.js +501 -0
  90. package/es/constants/key-codes.js +102 -0
  91. package/es/constants/zIndexes.js +1 -0
  92. package/es/custom-g2.js +614 -0
  93. package/es/dashboard.js +408 -0
  94. package/es/desktop-dashboard.js +299 -0
  95. package/es/index.js +33 -0
  96. package/es/locale/index.js +17 -0
  97. package/es/locale/lang/de.js +237 -0
  98. package/es/locale/lang/en.js +237 -0
  99. package/es/locale/lang/fr.js +237 -0
  100. package/es/locale/lang/zh_CN.js +237 -0
  101. package/es/mobile-dashboard.js +103 -0
  102. package/es/model/collaborators.js +11 -0
  103. package/es/model/stat-item.js +340 -0
  104. package/es/model/statistic-dashboard.js +8 -0
  105. package/es/service/chart-service.js +192 -0
  106. package/es/service/dashboard-service.js +415 -0
  107. package/es/stat-editor/chart-name-editor.js +75 -0
  108. package/es/stat-editor/index.js +74 -0
  109. package/es/stat-editor/stat-settings/advance-chart-settings/basic-number-card-settings.js +149 -0
  110. package/es/stat-editor/stat-settings/advance-chart-settings/combination-settings.js +415 -0
  111. package/es/stat-editor/stat-settings/advance-chart-settings/dashboard-chart-settings.js +193 -0
  112. package/es/stat-editor/stat-settings/advance-chart-settings/geo-granularity-settings.js +13 -0
  113. package/es/stat-editor/stat-settings/advance-chart-settings/heat-map-settings.js +107 -0
  114. package/es/stat-editor/stat-settings/advance-chart-settings/index.js +332 -0
  115. package/es/stat-editor/stat-settings/advance-chart-settings/map-settings.js +170 -0
  116. package/es/stat-editor/stat-settings/advance-chart-settings/mirror-settings.js +141 -0
  117. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/combination-style-setting.js +219 -0
  118. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/heat-map-settings.js +89 -0
  119. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/map-setting.js +132 -0
  120. package/es/stat-editor/stat-settings/advance-chart-settings/summary-settings.js +319 -0
  121. package/es/stat-editor/stat-settings/advance-chart-settings/trend-chart-settings.js +138 -0
  122. package/es/stat-editor/stat-settings/advance-chart-settings/world-map-settings.js +135 -0
  123. package/es/stat-editor/stat-settings/basic-chart-settings/advance-bar-chart-settings.js +156 -0
  124. package/es/stat-editor/stat-settings/basic-chart-settings/bar-settings.js +147 -0
  125. package/es/stat-editor/stat-settings/basic-chart-settings/completeness-chart-settings.js +195 -0
  126. package/es/stat-editor/stat-settings/basic-chart-settings/custom-bar-settings.js +126 -0
  127. package/es/stat-editor/stat-settings/basic-chart-settings/groupby-settings.js +169 -0
  128. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-axis-group-settings.js +352 -0
  129. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-bar-settings.js +145 -0
  130. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-group-chart-settings.js +153 -0
  131. package/es/stat-editor/stat-settings/basic-chart-settings/index.js +466 -0
  132. package/es/stat-editor/stat-settings/basic-chart-settings/pie-settings.js +183 -0
  133. package/es/stat-editor/stat-settings/basic-chart-settings/pivot-table-settings.js +542 -0
  134. package/es/stat-editor/stat-settings/basic-chart-settings/scatter-settings.js +111 -0
  135. package/es/stat-editor/stat-settings/basic-chart-settings/stack-item-settings.js +86 -0
  136. package/es/stat-editor/stat-settings/basic-chart-settings/stacks-settings.js +169 -0
  137. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/bar-chart-style-setting.js +273 -0
  138. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/completeness-style.js +105 -0
  139. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/horizontal-bar-chart-style.js +243 -0
  140. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/label-font-size-editor.js +65 -0
  141. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/pie-chart-style-settings.js +318 -0
  142. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/time-compare-style.js +49 -0
  143. package/es/stat-editor/stat-settings/basic-chart-settings/summary-method-setting.js +124 -0
  144. package/es/stat-editor/stat-settings/basic-chart-settings/summary-settings.js +150 -0
  145. package/es/stat-editor/stat-settings/basic-chart-settings/time-comparison-settings.js +267 -0
  146. package/es/stat-editor/stat-settings/basic-chart-settings/timer-picker.js +109 -0
  147. package/es/stat-editor/stat-settings/basic-chart-settings/y-axis-group-settings.js +351 -0
  148. package/es/stat-editor/stat-settings/color-setting/color-group-selector.js +60 -0
  149. package/es/stat-editor/stat-settings/color-setting/color-picker.js +129 -0
  150. package/es/stat-editor/stat-settings/color-setting/color-use-type-selector.js +348 -0
  151. package/es/stat-editor/stat-settings/public-setting/axis-label-position-setting.js +102 -0
  152. package/es/stat-editor/stat-settings/public-setting/base-settings.js +124 -0
  153. package/es/stat-editor/stat-settings/public-setting/calender.js +124 -0
  154. package/es/stat-editor/stat-settings/public-setting/column-settings.js +15 -0
  155. package/es/stat-editor/stat-settings/public-setting/custom-title-setting.js +60 -0
  156. package/es/stat-editor/stat-settings/public-setting/data-sort-setting.js +57 -0
  157. package/es/stat-editor/stat-settings/public-setting/ind-toggle-setting.js +41 -0
  158. package/es/stat-editor/stat-settings/public-setting/min-max-setting.js +64 -0
  159. package/es/stat-editor/stat-settings/public-setting/numeric-summary-item.js +118 -0
  160. package/es/stat-editor/stat-settings/public-setting/toggle-setting.js +39 -0
  161. package/es/stat-list/chart-preview.js +139 -0
  162. package/es/stat-list/index.js +275 -0
  163. package/es/stat-view/area-chart.js +521 -0
  164. package/es/stat-view/bar-chart.js +568 -0
  165. package/es/stat-view/base-chart.js +44 -0
  166. package/es/stat-view/basic-number-card.js +255 -0
  167. package/es/stat-view/combination-chart.js +558 -0
  168. package/es/stat-view/compare-chart.js +485 -0
  169. package/es/stat-view/completeness-chart.js +389 -0
  170. package/es/stat-view/custom-bar.js +433 -0
  171. package/es/stat-view/dashboard-chart.js +317 -0
  172. package/es/stat-view/heat-map.js +501 -0
  173. package/es/stat-view/horizontal-bar-chart.js +569 -0
  174. package/es/stat-view/index.js +183 -0
  175. package/es/stat-view/line-chart.js +505 -0
  176. package/es/stat-view/map.js +428 -0
  177. package/es/stat-view/mirror.js +285 -0
  178. package/es/stat-view/pie-chart.js +326 -0
  179. package/es/stat-view/pivot-table/index.js +206 -0
  180. package/es/stat-view/pivot-table/one-dimension-table-no-numeric-columns.js +133 -0
  181. package/es/stat-view/pivot-table/one-dimension-table-with-numeric-columns.js +164 -0
  182. package/es/stat-view/pivot-table/statistic-pivot-table.module.css +132 -0
  183. package/es/stat-view/pivot-table/two-dimension-table.js +344 -0
  184. package/es/stat-view/ring-chart.js +416 -0
  185. package/es/stat-view/scatter-chart.js +367 -0
  186. package/es/stat-view/treemap-chart.js +318 -0
  187. package/es/stat-view/trend-chart.js +299 -0
  188. package/es/stat-view/world-map.js +443 -0
  189. package/es/tabs/index.js +252 -0
  190. package/es/tabs/statistic-tabs.module.css +154 -0
  191. package/es/tabs/tab.js +167 -0
  192. package/es/utils/basic-chart-utils.js +24 -0
  193. package/es/utils/cell-format.js +110 -0
  194. package/es/utils/cell-value.js +27 -0
  195. package/es/utils/collaborator.js +31 -0
  196. package/es/utils/color-utils.js +112 -0
  197. package/es/utils/column-utils.js +18 -0
  198. package/es/utils/column.js +13 -0
  199. package/es/utils/common-utils.js +303 -0
  200. package/es/utils/date-format.js +65 -0
  201. package/es/utils/export-table-utils.js +632 -0
  202. package/es/utils/index.js +26 -0
  203. package/es/utils/object.js +26 -0
  204. package/es/utils/row-utils.js +115 -0
  205. package/es/utils/search.js +67 -0
  206. package/es/utils/sql-utils.js +293 -0
  207. package/es/utils/stat-utils.js +353 -0
  208. package/es/utils/trend-utils.js +136 -0
  209. package/index.js +1 -0
  210. package/package.json +188 -0
@@ -0,0 +1,415 @@
1
+ .statistic-chart-addition-dialog {
2
+ max-width: 1102px;
3
+ width: 1102px;
4
+ height: calc(100% - 56px);
5
+ }
6
+
7
+ .statistic-chart-addition-dialog .modal-content {
8
+ height: 100%;
9
+ }
10
+
11
+ .statistic-chart-addition-dialog .statistic-modal-body {
12
+ padding: 0;
13
+ overflow: hidden;
14
+ }
15
+
16
+ .statistic-chart-addition-dialog .statistic-chart-settings {
17
+ height: 100%;
18
+ width: 300px;
19
+ display: flex;
20
+ flex-direction: column;
21
+ background-color: #f8f8f8;
22
+ position: relative;
23
+ overflow: hidden;
24
+ }
25
+
26
+ .statistic-chart-addition-dialog .statistic-type-item {
27
+ flex: 1 1;
28
+ text-align: center;
29
+ line-height: 36px;
30
+ height: 36px;
31
+ font-weight: 400;
32
+ }
33
+
34
+ .statistic-chart-addition-dialog .selected-statistic-type-item {
35
+ background-color: #FF8000;
36
+ color: #fff;
37
+ }
38
+
39
+ .statistic-chart-addition-dialog .statistic-chart-settings-type {
40
+ display: flex;
41
+ flex-direction: row;
42
+ border-bottom: 1px solid #e4e4e4;
43
+ cursor: pointer;
44
+ }
45
+
46
+ .statistic-chart-addition-dialog .statistic-chart-settings-container {
47
+ padding: 0 20px 50px;
48
+ overflow: auto;
49
+ height: 100%;
50
+ position: relative;
51
+ bottom: 0;
52
+ }
53
+
54
+ .statistic-chart-addition-dialog .statistic-chart-settings-header {
55
+ padding-top: 20px;
56
+ }
57
+
58
+ .statistic-chart-addition-dialog .statistic-chart-settings-header-title {
59
+ padding-bottom: 5px;
60
+ border-bottom: 1px solid #e4e4e4;
61
+ }
62
+
63
+ .statistic-chart-addition-dialog .statistic-chart-parameter-divider {
64
+ border-bottom: 1px solid #e4e4e4;
65
+ margin-bottom: 14px;
66
+ }
67
+
68
+ .statistic-chart-addition-dialog .statistic-chart-parameter-item {
69
+ padding-bottom: 14px;
70
+ }
71
+
72
+ .statistic-chart-addition-dialog .statistic-chart-parameter-item.collapsible {
73
+ padding-bottom: 0;
74
+ }
75
+
76
+ .statistic-chart-addition-dialog .statistic-chart-parameter-item .form-group {
77
+ margin-bottom: 0;
78
+ }
79
+
80
+ .statistic-chart-addition-dialog .label-font-size-editor .font-size-editor-wrapper {
81
+ display: flex;
82
+ }
83
+
84
+ .statistic-chart-addition-dialog .label-font-size-editor .form-control {
85
+ position: relative;
86
+ flex: 1;
87
+ border-top-right-radius: 0;
88
+ border-bottom-right-radius: 0;
89
+ z-index: 1;
90
+ }
91
+
92
+ .statistic-chart-addition-dialog .label-font-size-editor .font-size-unit {
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: center;
96
+ height: 2.375rem;
97
+ width: 2.375rem;
98
+ border: 1px solid rgba(0, 40, 100, 0.12);
99
+ border-left: none;
100
+ border-top-right-radius: 3px;
101
+ border-bottom-right-radius: 3px;
102
+ background-color: #fff;
103
+ }
104
+
105
+ .statistic-chart-addition-dialog .label-font-size-editor .font-size-unit span {
106
+ margin-top: -2px;
107
+ }
108
+
109
+ .statistic-chart-addition-dialog .statistic-chart-settings-parameter {
110
+ font-size: 14px;
111
+ margin-top: 14px;
112
+ border-bottom: 1px solid #e4e4e4;
113
+ height: calc(100% - 51px);
114
+ overflow: auto;
115
+ padding-bottom: 30px;
116
+ }
117
+
118
+ .statistic-chart-addition-dialog .statistic-chart-settings-parameter:last-child {
119
+ border-bottom: none;
120
+ }
121
+
122
+ .statistic-chart-addition-dialog .statistic-chart-settings-title {
123
+ line-height: 24px;
124
+ font-weight: 500;
125
+ margin-bottom: 5px;
126
+ font-size: 14px;
127
+ }
128
+
129
+ .statistic-chart-addition-dialog .statistic-chart-settings-item {
130
+ margin-bottom: 8px;
131
+ padding: 0 35px;
132
+ display: flex;
133
+ height: 24px;
134
+ flex-direction: row;
135
+ justify-content: space-between;
136
+ box-sizing: border-box;
137
+ overflow: hidden;
138
+ }
139
+
140
+ .statistic-chart-addition-dialog .statistic-chart-settings-item-summary {
141
+ margin-bottom: 14px;
142
+ margin-top: 8px;
143
+ flex-direction: column;
144
+ height: auto;
145
+ }
146
+
147
+ .statistic-chart-addition-dialog .summary-type-selector {
148
+ display: flex;
149
+ height: 36px;
150
+ flex-direction: row;
151
+ background-color: #ffffff;
152
+ border: 1px solid hsl(0,0%,80%);
153
+ border-radius: 4px;
154
+ -moz-user-select: none;
155
+ -webkit-user-select: none;
156
+ -ms-user-select: none;
157
+ user-select: none;
158
+ }
159
+
160
+ .statistic-chart-addition-dialog .summary-type-selector-item {
161
+ flex: 1 1;
162
+ line-height: 34px;
163
+ text-align: center;
164
+ color: #000000;
165
+ cursor: pointer;
166
+ box-sizing: border-box;
167
+ }
168
+
169
+ .statistic-chart-addition-dialog .summary-type-selector-item:first-child {
170
+ border-radius: 4px 0 0 4px;
171
+ }
172
+
173
+ .statistic-chart-addition-dialog .summary-type-selector-item:last-child {
174
+ border-radius: 0 4px 4px 0;
175
+ }
176
+
177
+ .statistic-chart-addition-dialog .selected-summary-type-selector-item {
178
+ box-shadow: 0 0 0 1px rgb(229, 161, 82);
179
+ color: rgb(229, 161, 82);
180
+ background-color: rgba(229, 161, 82, .1);
181
+ }
182
+
183
+ .statistic-chart-addition-dialog .statistic-chart-edit-container {
184
+ display: flex;
185
+ width: 100%;
186
+ height: 100%;
187
+ overflow: hidden;
188
+ }
189
+
190
+ .statistic-chart-addition-dialog .statistic-stat-wrapper {
191
+ width: 800px;
192
+ height: 100%;
193
+ display: flex;
194
+ flex-direction: column;
195
+ }
196
+
197
+
198
+ .statistic-chart-addition-dialog .statistic-chart-editing-name {
199
+ height: 50px;
200
+ display: flex;
201
+ padding: 16px;
202
+ align-items: center;
203
+ }
204
+
205
+ .statistic-chart-addition-dialog .statistic-chart-editing-name .dtable-font {
206
+ height: 24px;
207
+ width: 24px;
208
+ margin-left: 10px;
209
+ color: #999;
210
+ cursor: pointer;
211
+ display: flex;
212
+ justify-content: center;
213
+ }
214
+
215
+ .statistic-chart-addition-dialog .statistic-chart-editing-name .statistic-rename {
216
+ width: 50%;
217
+ }
218
+
219
+ .statistic-chart-addition-dialog .statistic-chart-view-container {
220
+ flex: 1 1 auto;
221
+ overflow-y: auto;
222
+ display: flex;
223
+ justify-content: center;
224
+ align-items: center;
225
+ position: relative;
226
+ }
227
+
228
+ .statistic-chart-addition-dialog .statistic-chart-view-container .statistic-chart-container {
229
+ margin: auto;
230
+ }
231
+
232
+ .statistic-chart-addition-dialog .dtable-icon-drop-down {
233
+ font-size: 12px;
234
+ }
235
+
236
+ /* toggle settings style */
237
+ .statistic-chart-addition-dialog .statistic-toggle-parameter {
238
+ height: 36px;
239
+ padding-left: 8px;
240
+ box-sizing: border-box;
241
+ font-size: 14px;
242
+ background-color: #fff;
243
+ display: flex;
244
+ border-radius: 4px;
245
+ border: 1px solid hsl(0,0%,80%);
246
+ }
247
+
248
+ .statistic-chart-addition-dialog .individual-toggle-parameter {
249
+ height: auto;
250
+ padding: 0;
251
+ border: none;
252
+ background: transparent;
253
+ }
254
+
255
+ .statistic-chart-addition-dialog .individual-toggle-parameter .custom-switch-indicator {
256
+ margin-top: 5px;
257
+ }
258
+
259
+ .statistic-chart-addition-dialog .statistic-toggle-parameter .custom-switch {
260
+ font-weight: normal;
261
+ }
262
+
263
+ .statistic-chart-addition-dialog .statistic-toggle-parameter .custom-switch-indicator {
264
+ width: 22px;
265
+ height: 12px;
266
+ }
267
+
268
+ .statistic-chart-addition-dialog .statistic-toggle-parameter .custom-switch-indicator::before {
269
+ height: 8px;
270
+ width: 8px;
271
+ }
272
+
273
+ .statistic-chart-addition-dialog .statistic-toggle-parameter .custom-switch-input:checked ~ .custom-switch-indicator:before {
274
+ left: 12px;
275
+ }
276
+
277
+ /* toggle settings style */
278
+ .statistic-enlarge-dialog .statistic-enlarge-modal .modal-content {
279
+ height: 100%;
280
+ }
281
+
282
+ .statistic-enlarge-dialog .statistic-enlarge-modal {
283
+ max-width: 1100px;
284
+ width: 1100px;
285
+ height: calc(100% - 56px);
286
+ }
287
+
288
+ .statistic-enlarge-dialog .statistic-enlarge-modal .statistic-chart-container {
289
+ width: 100%;
290
+ height: 100%;
291
+ }
292
+
293
+ .statistic-enlarge-dialog .statistic-microscope-content {
294
+ width: 100%;
295
+ height: 100%;
296
+ padding: 20px 0;
297
+ overflow: auto;
298
+ }
299
+
300
+ .statistic-enlarge-dialog .view-wrapper {
301
+ height: 100%;
302
+ width: calc(100% - 20px);
303
+ padding: 0 30px;
304
+ position: relative;
305
+ }
306
+
307
+ .statistic-enlarge-dialog .statistic-chart-container {
308
+ height: 100%;
309
+ width: 100%;
310
+ }
311
+
312
+ .statistic-enlarge-dialog .statistic-chart-container > div {
313
+ margin: auto;
314
+ }
315
+
316
+ .statistic-chart-addition-dialog .statistic-colorinput {
317
+ width: 18px;
318
+ height: 18px;
319
+ overflow: hidden;
320
+ box-sizing: border-box;
321
+ }
322
+
323
+ .statistic-chart-addition-dialog .colorinput-color::before {
324
+ display: none;
325
+ }
326
+
327
+ .statistic-chart-addition-dialog .row {
328
+ line-height: 1.15;
329
+ }
330
+
331
+ .statistic-chart-addition-dialog .statistic-check-mark {
332
+ height: 16px;
333
+ display: block;
334
+ justify-content: center;
335
+ align-items: center;
336
+ -webkit-transform: scale(.8);
337
+ transform: scale(.8);
338
+ line-height: 16px;
339
+ }
340
+
341
+ .statistic-chart-addition-dialog .statistic-bar-chart-group {
342
+ padding-bottom: 0;
343
+ }
344
+
345
+ .statistic-chart-addition-dialog .chart-group-item {
346
+ margin-bottom: 6px;
347
+ line-height: 1;
348
+ }
349
+
350
+ .statistic-chart-addition-dialog .seatable-radio-description {
351
+ font-weight: 400;
352
+ }
353
+
354
+ .statistic-chart-addition-dialog .statistics-add-number-column,
355
+ .statistic-chart-addition-dialog .statistics-add-stack {
356
+ color: #bbbbbb;
357
+ cursor: pointer;
358
+ display: flex;
359
+ align-items: center;
360
+ line-height: 1;
361
+ margin-bottom: 10px;
362
+ }
363
+
364
+ .statistic-custom-bar-setting-y-axises .statistics-add-number-column,
365
+ .statistic-chart-addition-dialog .statistics-add-stack {
366
+ margin-bottom: 0;
367
+ }
368
+
369
+ .statistic-chart-addition-dialog .statistics-add-number-column:hover,
370
+ .statistic-chart-addition-dialog .statistics-add-stack:hover {
371
+ color: #212529;
372
+ }
373
+
374
+ .statistic-chart-addition-dialog .statistics-add-number-column .dtable-font,
375
+ .statistic-chart-addition-dialog .statistics-add-stack .dtable-font {
376
+ margin-right: 5px;
377
+ display: inline-block;
378
+ transform: scale(0.8);
379
+ }
380
+
381
+ .statistic-chart-addition-dialog .statistics-add-number-column .add-number-column-description
382
+ .statistic-chart-addition-dialog .statistics-add-stack .add-stack-description {
383
+ font-size: 14px;
384
+ line-height: 14px;
385
+ }
386
+
387
+ .statistic-chart-addition-dialog .number-column-selector {
388
+ margin-top: 5px;
389
+ }
390
+
391
+ .statistic-chart-addition-dialog .statistic-y-axis-title {
392
+ display: flex;
393
+ justify-content: space-between;
394
+ }
395
+
396
+ .statistic-y-axis-title-expand-icon {
397
+ margin-right: 7px;
398
+ color: #999;
399
+ cursor: pointer;
400
+ font-size: 12px;
401
+ }
402
+
403
+ .statistic-y-axis-title-expand-icon:hover {
404
+ color: #212529;
405
+ }
406
+
407
+ .statistic-chart-addition-dialog .statistic-y-axis-title .dtable-icon-fork-number {
408
+ color: #999999;
409
+ cursor: pointer;
410
+ font-size: 14px;
411
+ }
412
+
413
+ .statistic-chart-addition-dialog .statistic-y-axis-title .dtable-icon-fork-number:hover {
414
+ color: #212529;
415
+ }
@@ -0,0 +1,91 @@
1
+ .mobile-statistic-container {
2
+ display: flex;
3
+ position: fixed;
4
+ height: 100%;
5
+ width: 100%;
6
+ z-index: 100;
7
+ left: 0;
8
+ top: 0;
9
+ flex-direction: column;
10
+ border-radius: 0 !important;
11
+ }
12
+
13
+ .mobile-statistic-header {
14
+ display: flex;
15
+ justify-content: space-between;
16
+ height: 50px;
17
+ width: 100%;
18
+ background-color: #ffffff;
19
+ border-bottom: 1px solid #e9ecef;
20
+ }
21
+
22
+ .mobile-statistic-title {
23
+ line-height: 24px;
24
+ display: flex;
25
+ height: 24px;
26
+ box-sizing: content-box;
27
+ padding: 13px 16px;
28
+ }
29
+
30
+ .mobile-statistic-logo {
31
+ width: 24px;
32
+ height: 24px;
33
+ display: inline-block;
34
+ }
35
+
36
+ .mobile-statistic-name {
37
+ min-width: 40px;
38
+ line-height: 24px;
39
+ margin-left: 8px;
40
+ font-weight: normal;
41
+ font-size: 14px;
42
+ }
43
+
44
+ .mobile-statistic-tool-container {
45
+ padding: 0 16px;
46
+ }
47
+
48
+ .mobile-statistic-header-button {
49
+ padding: 13px 0;
50
+ margin-left: 15px;
51
+ line-height: 24px;
52
+ display: inline-block;
53
+ font-size: 14px;
54
+ }
55
+
56
+ .mobile-statistic-dashboard-wrapper {
57
+ background-color: var(--container-bg-color);
58
+ height: calc(100% - 50px);
59
+ width: 100%;
60
+ padding: 15px 10px;
61
+ overflow: auto;
62
+ }
63
+
64
+ .mobile-statistic-chart-wrapper {
65
+ height: 300px;
66
+ border: 1px solid #e9e9e9;
67
+ margin-bottom: 10px;
68
+ box-shadow: 0 0 5px rgb(0 0 0 / 6%);
69
+ border-radius: 8px;
70
+ display: flex;
71
+ flex-direction: column;
72
+ background-color: var(--item-wrapper-bg-color);
73
+ }
74
+
75
+ .mobile-statistic-chart-header {
76
+ height: 50px;
77
+ padding: 15px 20px;
78
+ font-weight: 500;
79
+ display: flex;
80
+ justify-content: space-between;
81
+ }
82
+
83
+ .mobile-statistic-chart-container {
84
+ width: 100%;
85
+ display: flex;
86
+ height: calc(100% - 50px);
87
+ justify-content: center;
88
+ align-items: center;
89
+ overflow: hidden;
90
+ position: relative;
91
+ }
@@ -0,0 +1,77 @@
1
+ .statistic-chart-settings .rc-slider {
2
+ position: relative;
3
+ height: 14px;
4
+ padding: 5px 0;
5
+ width: 100%;
6
+ border-radius: 6px;
7
+ touch-action: none;
8
+ box-sizing: border-box;
9
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
10
+ }
11
+
12
+ .statistic-chart-settings .rc-slider * {
13
+ box-sizing: border-box;
14
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
15
+ }
16
+
17
+ .statistic-chart-settings .rc-slider-rail {
18
+ position: absolute;
19
+ width: 100%;
20
+ background-color: #e9e9e9;
21
+ height: 4px;
22
+ border-radius: 6px;
23
+ }
24
+
25
+ .statistic-chart-settings .rc-slider-track {
26
+ position: absolute;
27
+ left: 0;
28
+ height: 4px;
29
+ border-radius: 6px;
30
+ background-color: rgb(255, 128, 0);;
31
+ }
32
+
33
+ .statistic-chart-settings .rc-slider-handle {
34
+ position: absolute;
35
+ width: 14px;
36
+ height: 14px;
37
+ cursor: pointer;
38
+ cursor: -webkit-grab;
39
+ margin-top: -5px;
40
+ cursor: grab;
41
+ border-radius: 50%;
42
+ border: solid 2px rgb(255, 128, 0);
43
+ background-color: #fff;
44
+ touch-action: pan-x;
45
+ }
46
+
47
+ .statistic-chart-settings .rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
48
+ border-color: rgb(255, 128, 0);
49
+ box-shadow: 0 0 0 5px rgb(255, 128, 0);
50
+ }
51
+
52
+ .statistic-chart-settings .rc-slider-handle:focus {
53
+ outline: none;
54
+ }
55
+
56
+ .statistic-chart-settings .rc-slider-handle-click-focused:focus {
57
+ border-color: rgb(255, 128, 0);
58
+ box-shadow: unset;
59
+ }
60
+
61
+ .statistic-chart-settings .rc-slider-handle:hover {
62
+ border-color: rgb(255, 128, 0);
63
+ }
64
+
65
+ .statistic-chart-settings .rc-slider-handle:active {
66
+ border-color: rgb(255, 128, 0);
67
+ box-shadow: 0 0 5px rgb(255, 128, 0);
68
+ cursor: -webkit-grabbing;
69
+ cursor: grabbing;
70
+ }
71
+
72
+ .statistic-chart-settings .rc-slider-step {
73
+ position: absolute;
74
+ width: 100%;
75
+ height: 4px;
76
+ background: transparent;
77
+ }
@@ -0,0 +1,11 @@
1
+ .statistic-pie-chart-container {
2
+ padding: 0px 12px 20px 0px;
3
+ }
4
+
5
+ .statistic-scatter-chart-container {
6
+ padding: 20px;
7
+ }
8
+
9
+ .statistic-treemap-chart-container {
10
+ padding: 20px;
11
+ }
@@ -0,0 +1,3 @@
1
+ .custom-title {
2
+ margin-top: 12px;
3
+ }
@@ -0,0 +1,4 @@
1
+ .statistic-heatmap-container > div {
2
+ text-align: center;
3
+ margin: auto;
4
+ }
@@ -0,0 +1,43 @@
1
+ .container {
2
+ padding-bottom: 0;
3
+ }
4
+
5
+ .item-title {
6
+ display: flex;
7
+ justify-content: space-between;
8
+ user-select: none;
9
+ }
10
+
11
+ .icon {
12
+ margin-right: 7px;
13
+ color: #999999;
14
+ cursor: pointer;
15
+ font-size: 12px;
16
+ }
17
+
18
+ .icon:hover {
19
+ color: #212529;
20
+ }
21
+
22
+ .close-icon {
23
+ color: #999999;
24
+ cursor: pointer;
25
+ font-size: 14px;
26
+ }
27
+
28
+ .close-icon:hover {
29
+ color: #212529;
30
+ }
31
+
32
+ .summary-method {
33
+ margin-top: 14px;
34
+ }
35
+
36
+ .expanded-numeric-summary-content {
37
+ padding-left: 19px;
38
+ }
39
+
40
+ .collapsed-numeric-summary-content {
41
+ height: 0;
42
+ overflow: hidden;
43
+ }
@@ -0,0 +1,21 @@
1
+ .time-input-container {
2
+ display: flex;
3
+ }
4
+
5
+ .concat {
6
+ line-height: 38px;
7
+ width: 20px;
8
+ text-align: center;
9
+ }
10
+
11
+ .date-editor {
12
+ width: 120px;
13
+ }
14
+
15
+ .date-editor-container {
16
+ width: 100%;
17
+ }
18
+
19
+ :global(.rc-calendar-cell .rc-calendar-date) {
20
+ border-radius: 50%;
21
+ }