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.
- package/README.md +3 -0
- package/es/api/dtable-db-api.js +43 -0
- package/es/assets/css/color-picker.css +53 -0
- package/es/assets/css/color-rules-popover.css +144 -0
- package/es/assets/css/color-theme-dialog.css +40 -0
- package/es/assets/css/dashboard.css +562 -0
- package/es/assets/css/dialog.css +415 -0
- package/es/assets/css/mobile-dashboard.module.css +91 -0
- package/es/assets/css/slider.css +77 -0
- package/es/assets/css/statistic-chart.module.css +11 -0
- package/es/assets/css/statistic-custom-title.module.css +3 -0
- package/es/assets/css/statistic-custom.module.css +4 -0
- package/es/assets/css/statistic-numeric-column-item.module.css +43 -0
- package/es/assets/css/statistic-time-picker.module.css +21 -0
- package/es/assets/css/theme.css +61 -0
- package/es/assets/images/icon.png +0 -0
- package/es/calculator/base-calculator.js +111 -0
- package/es/calculator/basic-chart-calculator.js +571 -0
- package/es/calculator/combination-calculator.js +296 -0
- package/es/calculator/compare-bar-calculator.js +291 -0
- package/es/calculator/completeness-calculator.js +307 -0
- package/es/calculator/copy-value.js +47 -0
- package/es/calculator/dashboard-calculator.js +146 -0
- package/es/calculator/heat-map-calculator.js +225 -0
- package/es/calculator/horizontal-bar-calculator.js +100 -0
- package/es/calculator/index.js +88 -0
- package/es/calculator/map-calculator.js +169 -0
- package/es/calculator/mirror-calculator.js +217 -0
- package/es/calculator/number-card-calculator.js +135 -0
- package/es/calculator/pivot-table-calculator.js +810 -0
- package/es/calculator/scatter-calculator.js +150 -0
- package/es/calculator/thread-manager.js +70 -0
- package/es/calculator/trend-calculator.js +204 -0
- package/es/calculator/workers/basic-chart-calculator-worker.js +410 -0
- package/es/calculator/workers/calculator.worker.js +22 -0
- package/es/calculator/workers/card-calculator-worker.js +28 -0
- package/es/calculator/workers/combination-calculator-worker.js +257 -0
- package/es/calculator/workers/compare-bar-chart-calculator-worker.js +149 -0
- package/es/calculator/workers/completeness-calculator-worker.js +153 -0
- package/es/calculator/workers/dashboard-calculator-worker.js +56 -0
- package/es/calculator/workers/mirror-calculator-worker.js +132 -0
- package/es/calculator/workers/pivot-table-calculator-worker.js +615 -0
- package/es/calculator/workers/scatter-calculator-worker.js +67 -0
- package/es/calculator/workers/trend-calculator-worker.js +93 -0
- package/es/calculator/world-map-calculator.js +193 -0
- package/es/components/common-add-tool.js +19 -0
- package/es/components/dialog/chart-addition-edit-dialog.js +89 -0
- package/es/components/dialog/chart-addition-widgets/chart-selector.js +261 -0
- package/es/components/dialog/chart-addition-widgets/statistic-chart-selector.module.css +74 -0
- package/es/components/dialog/color-theme-dialog.js +71 -0
- package/es/components/dialog/enlarged-chart-dialog.js +73 -0
- package/es/components/dialog/new-table-dialog.js +113 -0
- package/es/components/dialog/new-view-dialog.js +87 -0
- package/es/components/dialog/rename-view-dialog.js +87 -0
- package/es/components/dialog/statistic-record-dialog/index.css +114 -0
- package/es/components/dialog/statistic-record-dialog/index.js +174 -0
- package/es/components/dialog/table-select-dialog.js +93 -0
- package/es/components/dropdown-menu/statistic-dropdown-menu.js +94 -0
- package/es/components/dtable-popover.js +109 -0
- package/es/components/dtable-search-input.js +137 -0
- package/es/components/dtable-select.js +104 -0
- package/es/components/index.js +11 -0
- package/es/components/loading.js +8 -0
- package/es/components/modal-portal.js +36 -0
- package/es/components/popover/color-rules/color-rule.js +179 -0
- package/es/components/popover/color-rules/index.js +87 -0
- package/es/components/popover/color-rules/rule-filters/filter.js +214 -0
- package/es/components/popover/color-rules/rule-filters/index.css +214 -0
- package/es/components/popover/color-rules/rule-filters/index.js +97 -0
- package/es/components/popover/color-rules/rule-filters/number-input.js +85 -0
- package/es/components/popover/color-rules-popover.js +213 -0
- package/es/components/popover/color-selector-popover.js +85 -0
- package/es/components/seatable-radio/index.css +51 -0
- package/es/components/seatable-radio/index.js +28 -0
- package/es/components/select/index.js +2 -0
- package/es/components/select/option-group.css +104 -0
- package/es/components/select/option-group.js +225 -0
- package/es/components/select/option.js +51 -0
- package/es/components/select/select.css +211 -0
- package/es/components/select/select.js +157 -0
- package/es/components/toast/alert.js +130 -0
- package/es/components/toast/index.js +3 -0
- package/es/components/toast/toast.js +164 -0
- package/es/components/toast/toastManager.js +150 -0
- package/es/components/toast/toaster.js +64 -0
- package/es/constants/color-rules.js +8 -0
- package/es/constants/dtable-select-style.js +61 -0
- package/es/constants/event-types.js +1 -0
- package/es/constants/index.js +501 -0
- package/es/constants/key-codes.js +102 -0
- package/es/constants/zIndexes.js +1 -0
- package/es/custom-g2.js +614 -0
- package/es/dashboard.js +408 -0
- package/es/desktop-dashboard.js +299 -0
- package/es/index.js +33 -0
- package/es/locale/index.js +17 -0
- package/es/locale/lang/de.js +237 -0
- package/es/locale/lang/en.js +237 -0
- package/es/locale/lang/fr.js +237 -0
- package/es/locale/lang/zh_CN.js +237 -0
- package/es/mobile-dashboard.js +103 -0
- package/es/model/collaborators.js +11 -0
- package/es/model/stat-item.js +340 -0
- package/es/model/statistic-dashboard.js +8 -0
- package/es/service/chart-service.js +192 -0
- package/es/service/dashboard-service.js +415 -0
- package/es/stat-editor/chart-name-editor.js +75 -0
- package/es/stat-editor/index.js +74 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/basic-number-card-settings.js +149 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/combination-settings.js +415 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/dashboard-chart-settings.js +193 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/geo-granularity-settings.js +13 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/heat-map-settings.js +107 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/index.js +332 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/map-settings.js +170 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/mirror-settings.js +141 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/combination-style-setting.js +219 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/heat-map-settings.js +89 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/map-setting.js +132 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/summary-settings.js +319 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/trend-chart-settings.js +138 -0
- package/es/stat-editor/stat-settings/advance-chart-settings/world-map-settings.js +135 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/advance-bar-chart-settings.js +156 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/bar-settings.js +147 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/completeness-chart-settings.js +195 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/custom-bar-settings.js +126 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/groupby-settings.js +169 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-axis-group-settings.js +352 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-bar-settings.js +145 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-group-chart-settings.js +153 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/index.js +466 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/pie-settings.js +183 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/pivot-table-settings.js +542 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/scatter-settings.js +111 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/stack-item-settings.js +86 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/stacks-settings.js +169 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/bar-chart-style-setting.js +273 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/completeness-style.js +105 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/horizontal-bar-chart-style.js +243 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/label-font-size-editor.js +65 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/pie-chart-style-settings.js +318 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/time-compare-style.js +49 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/summary-method-setting.js +124 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/summary-settings.js +150 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/time-comparison-settings.js +267 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/timer-picker.js +109 -0
- package/es/stat-editor/stat-settings/basic-chart-settings/y-axis-group-settings.js +351 -0
- package/es/stat-editor/stat-settings/color-setting/color-group-selector.js +60 -0
- package/es/stat-editor/stat-settings/color-setting/color-picker.js +129 -0
- package/es/stat-editor/stat-settings/color-setting/color-use-type-selector.js +348 -0
- package/es/stat-editor/stat-settings/public-setting/axis-label-position-setting.js +102 -0
- package/es/stat-editor/stat-settings/public-setting/base-settings.js +124 -0
- package/es/stat-editor/stat-settings/public-setting/calender.js +124 -0
- package/es/stat-editor/stat-settings/public-setting/column-settings.js +15 -0
- package/es/stat-editor/stat-settings/public-setting/custom-title-setting.js +60 -0
- package/es/stat-editor/stat-settings/public-setting/data-sort-setting.js +57 -0
- package/es/stat-editor/stat-settings/public-setting/ind-toggle-setting.js +41 -0
- package/es/stat-editor/stat-settings/public-setting/min-max-setting.js +64 -0
- package/es/stat-editor/stat-settings/public-setting/numeric-summary-item.js +118 -0
- package/es/stat-editor/stat-settings/public-setting/toggle-setting.js +39 -0
- package/es/stat-list/chart-preview.js +139 -0
- package/es/stat-list/index.js +275 -0
- package/es/stat-view/area-chart.js +521 -0
- package/es/stat-view/bar-chart.js +568 -0
- package/es/stat-view/base-chart.js +44 -0
- package/es/stat-view/basic-number-card.js +255 -0
- package/es/stat-view/combination-chart.js +558 -0
- package/es/stat-view/compare-chart.js +485 -0
- package/es/stat-view/completeness-chart.js +389 -0
- package/es/stat-view/custom-bar.js +433 -0
- package/es/stat-view/dashboard-chart.js +317 -0
- package/es/stat-view/heat-map.js +501 -0
- package/es/stat-view/horizontal-bar-chart.js +569 -0
- package/es/stat-view/index.js +183 -0
- package/es/stat-view/line-chart.js +505 -0
- package/es/stat-view/map.js +428 -0
- package/es/stat-view/mirror.js +285 -0
- package/es/stat-view/pie-chart.js +326 -0
- package/es/stat-view/pivot-table/index.js +206 -0
- package/es/stat-view/pivot-table/one-dimension-table-no-numeric-columns.js +133 -0
- package/es/stat-view/pivot-table/one-dimension-table-with-numeric-columns.js +164 -0
- package/es/stat-view/pivot-table/statistic-pivot-table.module.css +132 -0
- package/es/stat-view/pivot-table/two-dimension-table.js +344 -0
- package/es/stat-view/ring-chart.js +416 -0
- package/es/stat-view/scatter-chart.js +367 -0
- package/es/stat-view/treemap-chart.js +318 -0
- package/es/stat-view/trend-chart.js +299 -0
- package/es/stat-view/world-map.js +443 -0
- package/es/tabs/index.js +252 -0
- package/es/tabs/statistic-tabs.module.css +154 -0
- package/es/tabs/tab.js +167 -0
- package/es/utils/basic-chart-utils.js +24 -0
- package/es/utils/cell-format.js +110 -0
- package/es/utils/cell-value.js +27 -0
- package/es/utils/collaborator.js +31 -0
- package/es/utils/color-utils.js +112 -0
- package/es/utils/column-utils.js +18 -0
- package/es/utils/column.js +13 -0
- package/es/utils/common-utils.js +303 -0
- package/es/utils/date-format.js +65 -0
- package/es/utils/export-table-utils.js +632 -0
- package/es/utils/index.js +26 -0
- package/es/utils/object.js +26 -0
- package/es/utils/row-utils.js +115 -0
- package/es/utils/search.js +67 -0
- package/es/utils/sql-utils.js +293 -0
- package/es/utils/stat-utils.js +353 -0
- package/es/utils/trend-utils.js +136 -0
- package/index.js +1 -0
- 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,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
|
+
}
|