@flux-ui/statistics 3.0.0-next.35 → 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/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flux-ui/statistics",
|
|
3
3
|
"description": "Statistics components for the Flux UI library.",
|
|
4
|
-
"version": "3.0.0-next.
|
|
4
|
+
"version": "3.0.0-next.38",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/basmilius",
|
|
8
|
-
"homepage": "https://flux.
|
|
8
|
+
"homepage": "https://flux-ui.dev",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/basmilius/flux.git",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "vue-tsc && vite build",
|
|
27
|
-
"dev": "vite build --watch"
|
|
27
|
+
"dev": "vite build --watch --mode development"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=23"
|
|
@@ -42,36 +42,34 @@
|
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist",
|
|
45
|
-
"src"
|
|
46
|
-
"tsconfig.json"
|
|
45
|
+
"src"
|
|
47
46
|
],
|
|
48
47
|
"main": "./dist/index.js",
|
|
49
48
|
"module": "./dist/index.js",
|
|
50
49
|
"types": "./dist/index.d.ts",
|
|
51
|
-
"typings": "./dist/index.d.ts",
|
|
52
50
|
"sideEffects": false,
|
|
53
51
|
"dependencies": {
|
|
54
|
-
"@basmilius/common": "^3.
|
|
55
|
-
"@basmilius/utils": "^3.
|
|
56
|
-
"@flux-ui/components": "3.0.0-next.
|
|
57
|
-
"@flux-ui/internals": "3.0.0-next.
|
|
58
|
-
"
|
|
52
|
+
"@basmilius/common": "^3.19.0",
|
|
53
|
+
"@basmilius/utils": "^3.19.0",
|
|
54
|
+
"@flux-ui/components": "3.0.0-next.38",
|
|
55
|
+
"@flux-ui/internals": "3.0.0-next.38",
|
|
56
|
+
"@flux-ui/types": "3.0.0-next.38",
|
|
57
|
+
"apexcharts": "^5.10.6",
|
|
59
58
|
"clsx": "^2.1.1",
|
|
60
|
-
"lodash-es": "^4.
|
|
61
|
-
"vue": "^3.6.0-beta.
|
|
62
|
-
"vue-i18n": "^11.
|
|
59
|
+
"lodash-es": "^4.18.1",
|
|
60
|
+
"vue": "^3.6.0-beta.10",
|
|
61
|
+
"vue-i18n": "^11.4.0",
|
|
63
62
|
"vue3-apexcharts": "^1.11.1"
|
|
64
63
|
},
|
|
65
64
|
"devDependencies": {
|
|
66
|
-
"@basmilius/vite-preset": "^3.
|
|
67
|
-
"@flux-ui/types": "3.0.0-next.35",
|
|
65
|
+
"@basmilius/vite-preset": "^3.19.0",
|
|
68
66
|
"@types/lodash-es": "^4.17.12",
|
|
69
|
-
"@types/node": "^25.
|
|
70
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
71
|
-
"@vue/tsconfig": "^0.9.
|
|
72
|
-
"sass-embedded": "^1.
|
|
73
|
-
"typescript": "^
|
|
74
|
-
"vite": "^8.0.
|
|
75
|
-
"vue-tsc": "^3.2.
|
|
67
|
+
"@types/node": "^25.6.0",
|
|
68
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
69
|
+
"@vue/tsconfig": "^0.9.1",
|
|
70
|
+
"sass-embedded": "^1.99.0",
|
|
71
|
+
"typescript": "^6.0.3",
|
|
72
|
+
"vite": "^8.0.10",
|
|
73
|
+
"vue-tsc": "^3.2.7"
|
|
76
74
|
}
|
|
77
75
|
}
|
package/src/css/Base.module.scss
CHANGED
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
.statisticsBaseContent {
|
|
12
12
|
position: relative;
|
|
13
13
|
display: flex;
|
|
14
|
-
padding:
|
|
14
|
+
padding: 18px;
|
|
15
15
|
flex-flow: column;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.statisticsBaseHeader {
|
|
19
19
|
display: flex;
|
|
20
|
-
padding:
|
|
20
|
+
padding: 18px 18px 0;
|
|
21
21
|
align-items: flex-start;
|
|
22
22
|
}
|
|
23
23
|
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
:global(.apexcharts-tooltip) {
|
|
43
|
-
background: rgb(from var(--
|
|
43
|
+
background: rgb(from var(--surface) r g b / .975);
|
|
44
44
|
background-clip: padding-box;
|
|
45
|
-
backdrop-filter: blur(
|
|
45
|
+
backdrop-filter: blur(3px) saturate(180%);
|
|
46
46
|
border: 1px solid var(--surface-stroke-out-hover);
|
|
47
47
|
border-radius: var(--radius-double);
|
|
48
48
|
box-shadow: var(--shadow-lg);
|
package/src/css/Core.module.scss
CHANGED
package/src/css/Kpi.module.scss
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.statisticsMetricLabel {
|
|
50
|
-
padding-top:
|
|
50
|
+
padding-top: 18px;
|
|
51
51
|
color: var(--foreground-secondary);
|
|
52
52
|
font-size: 15px;
|
|
53
53
|
font-weight: 500;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
.statisticsMetricValue {
|
|
57
57
|
color: var(--foreground-prominent);
|
|
58
|
-
font-size:
|
|
58
|
+
font-size: 18px;
|
|
59
59
|
font-weight: 800;
|
|
60
60
|
line-height: 36px;
|
|
61
61
|
text-transform: capitalize;
|