@flux-ui/statistics 3.0.0-next.34 → 3.0.0-next.38
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/dist/index.css +10 -11
- package/dist/index.js +9012 -9051
- package/dist/index.js.map +1 -1
- package/package.json +21 -23
- package/src/component/FluxStatisticsBarChart.vue +1 -1
- package/src/component/FluxStatisticsChart.vue +1 -1
- package/src/css/Base.module.scss +2 -2
- package/src/css/Chart.module.scss +2 -2
- package/src/css/ChartPane.module.scss +1 -1
- package/src/css/Core.module.scss +1 -1
- package/src/css/Kpi.module.scss +1 -1
- package/src/css/Legend.module.scss +1 -2
- package/src/css/Metric.module.scss +2 -2
- package/tsconfig.json +0 -7
package/dist/index.css
CHANGED
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
display: none;
|
|
37
37
|
}
|
|
38
38
|
.statistics-chart .apexcharts-canvas .apexcharts-tooltip {
|
|
39
|
-
background: rgb(from var(--
|
|
39
|
+
background: rgb(from var(--surface) r g b/0.975);
|
|
40
40
|
background-clip: padding-box;
|
|
41
|
-
backdrop-filter: blur(
|
|
41
|
+
backdrop-filter: blur(3px) saturate(180%);
|
|
42
42
|
border: 1px solid var(--surface-stroke-out-hover);
|
|
43
43
|
border-radius: var(--radius-double);
|
|
44
44
|
box-shadow: var(--shadow-lg);
|
|
@@ -96,13 +96,13 @@
|
|
|
96
96
|
.statistics-base-content {
|
|
97
97
|
position: relative;
|
|
98
98
|
display: flex;
|
|
99
|
-
padding:
|
|
99
|
+
padding: 18px;
|
|
100
100
|
flex-flow: column;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.statistics-base-header {
|
|
104
104
|
display: flex;
|
|
105
|
-
padding:
|
|
105
|
+
padding: 18px 18px 0;
|
|
106
106
|
align-items: flex-start;
|
|
107
107
|
}
|
|
108
108
|
|
|
@@ -193,9 +193,9 @@
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
.pane-header + .statistics-chart-pane-container {
|
|
196
|
-
margin-top:
|
|
196
|
+
margin-top: 18px;
|
|
197
197
|
}.statistics-base-content .statistics-stackable + .statistics-stackable {
|
|
198
|
-
margin-top:
|
|
198
|
+
margin-top: 18px;
|
|
199
199
|
}.details-table {
|
|
200
200
|
display: flex;
|
|
201
201
|
flex-flow: column;
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
}
|
|
286
286
|
|
|
287
287
|
.statistics-kpi-value {
|
|
288
|
-
padding-top:
|
|
288
|
+
padding-top: 18px;
|
|
289
289
|
color: var(--foreground-prominent);
|
|
290
290
|
font-size: 21px;
|
|
291
291
|
font-weight: 800;
|
|
@@ -293,11 +293,10 @@
|
|
|
293
293
|
}.statistics-legend {
|
|
294
294
|
display: flex;
|
|
295
295
|
min-width: 0;
|
|
296
|
-
padding: 15px
|
|
296
|
+
padding: 15px 18px 15px;
|
|
297
297
|
align-self: center;
|
|
298
298
|
flex-flow: column;
|
|
299
299
|
flex-grow: 1;
|
|
300
|
-
gap: 3px;
|
|
301
300
|
}
|
|
302
301
|
|
|
303
302
|
.statistics-legend-item {
|
|
@@ -473,7 +472,7 @@
|
|
|
473
472
|
}
|
|
474
473
|
|
|
475
474
|
.statistics-metric-label {
|
|
476
|
-
padding-top:
|
|
475
|
+
padding-top: 18px;
|
|
477
476
|
color: var(--foreground-secondary);
|
|
478
477
|
font-size: 15px;
|
|
479
478
|
font-weight: 500;
|
|
@@ -481,7 +480,7 @@
|
|
|
481
480
|
|
|
482
481
|
.statistics-metric-value {
|
|
483
482
|
color: var(--foreground-prominent);
|
|
484
|
-
font-size:
|
|
483
|
+
font-size: 18px;
|
|
485
484
|
font-weight: 800;
|
|
486
485
|
line-height: 36px;
|
|
487
486
|
text-transform: capitalize;
|