@flux-ui/statistics 3.0.0-next.58 → 3.0.0-next.59
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
- package/src/component/FluxStatisticsBase.vue +1 -1
- package/src/component/FluxStatisticsChange.vue +1 -1
- package/src/component/FluxStatisticsChart.vue +1 -1
- package/src/component/FluxStatisticsChartPane.vue +1 -1
- package/src/component/FluxStatisticsDetailsTable.vue +1 -1
- package/src/component/FluxStatisticsDetailsTableRow.vue +1 -1
- package/src/component/FluxStatisticsGrid.vue +1 -1
- package/src/component/FluxStatisticsKpi.vue +1 -1
- package/src/component/FluxStatisticsLegend.vue +1 -1
- package/src/component/FluxStatisticsLegendItem.vue +1 -1
- package/src/component/FluxStatisticsMeter.vue +1 -1
- package/src/component/FluxStatisticsMetric.vue +1 -1
- package/src/css/ChartPane.module.scss +1 -1
- package/src/css/DetailsTable.module.scss +1 -1
- package/src/css/Grid.module.scss +1 -1
- package/src/css/Legend.module.scss +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.59",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/basmilius",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"types": "./dist/index.d.ts",
|
|
50
50
|
"sideEffects": false,
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@basmilius/common": "^3.
|
|
53
|
-
"@basmilius/utils": "^3.
|
|
54
|
-
"@flux-ui/components": "3.0.0-next.
|
|
55
|
-
"@flux-ui/internals": "3.0.0-next.
|
|
56
|
-
"@flux-ui/types": "3.0.0-next.
|
|
52
|
+
"@basmilius/common": "^3.24.0",
|
|
53
|
+
"@basmilius/utils": "^3.24.0",
|
|
54
|
+
"@flux-ui/components": "3.0.0-next.59",
|
|
55
|
+
"@flux-ui/internals": "3.0.0-next.59",
|
|
56
|
+
"@flux-ui/types": "3.0.0-next.59",
|
|
57
57
|
"clsx": "^2.1.1"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"vue3-apexcharts": "^1.11.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@basmilius/vite-preset": "^3.
|
|
67
|
+
"@basmilius/vite-preset": "^3.24.0",
|
|
68
68
|
"@types/lodash-es": "^4.17.12",
|
|
69
69
|
"@types/node": "^25.6.0",
|
|
70
70
|
"@vitejs/plugin-vue": "^6.0.6",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
setup>
|
|
29
29
|
import { FluxIcon, FluxPane } from '@flux-ui/components';
|
|
30
30
|
import type { FluxIconName } from '@flux-ui/types';
|
|
31
|
-
import $style from '
|
|
31
|
+
import $style from '~flux/statistics/css/Base.module.scss';
|
|
32
32
|
|
|
33
33
|
defineProps<{
|
|
34
34
|
readonly icon?: FluxIconName;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
import { FluxIcon } from '@flux-ui/components';
|
|
28
28
|
import type { FluxColor, FluxIconName } from '@flux-ui/types';
|
|
29
29
|
import { clsx } from 'clsx';
|
|
30
|
-
import $style from '
|
|
30
|
+
import $style from '~flux/statistics/css/Change.module.scss';
|
|
31
31
|
|
|
32
32
|
defineProps<{
|
|
33
33
|
readonly color?: FluxColor;
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
import { toRaw, unref, useTemplateRef } from 'vue';
|
|
121
121
|
import { useI18n } from 'vue-i18n';
|
|
122
122
|
import ApexCharts from 'vue3-apexcharts';
|
|
123
|
-
import $style from '
|
|
123
|
+
import $style from '~flux/statistics/css/Chart.module.scss';
|
|
124
124
|
|
|
125
125
|
const {
|
|
126
126
|
options = {}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
import { FluxToolbar } from '@flux-ui/components';
|
|
30
30
|
import type { FluxIconName } from '@flux-ui/types';
|
|
31
31
|
import Base from './FluxStatisticsBase.vue';
|
|
32
|
-
import $style from '
|
|
32
|
+
import $style from '~flux/statistics/css/ChartPane.module.scss';
|
|
33
33
|
|
|
34
34
|
defineProps<{
|
|
35
35
|
readonly aspectRatio?: number;
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
import type { FluxIconName, FluxStatisticsChange } from '@flux-ui/types';
|
|
32
32
|
import Base from './FluxStatisticsBase.vue';
|
|
33
33
|
import Change from './FluxStatisticsChange.vue';
|
|
34
|
-
import $style from '
|
|
34
|
+
import $style from '~flux/statistics/css/Kpi.module.scss';
|
|
35
35
|
|
|
36
36
|
defineProps<{
|
|
37
37
|
readonly footer?: string;
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
import { FluxIcon } from '@flux-ui/components';
|
|
35
35
|
import type { FluxColor, FluxIconName } from '@flux-ui/types';
|
|
36
36
|
import { computed } from 'vue';
|
|
37
|
-
import $style from '
|
|
37
|
+
import $style from '~flux/statistics/css/Legend.module.scss';
|
|
38
38
|
|
|
39
39
|
const {
|
|
40
40
|
color
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
import { FluxIcon } from '@flux-ui/components';
|
|
55
55
|
import type { FluxColor, FluxIconName } from '@flux-ui/types';
|
|
56
56
|
import { computed } from 'vue';
|
|
57
|
-
import $style from '
|
|
57
|
+
import $style from '~flux/statistics/css/Meter.module.scss';
|
|
58
58
|
|
|
59
59
|
const {
|
|
60
60
|
color
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
import type { FluxIconName, FluxStatisticsChange } from '@flux-ui/types';
|
|
43
43
|
import Base from './FluxStatisticsBase.vue';
|
|
44
44
|
import Change from './FluxStatisticsChange.vue';
|
|
45
|
-
import $style from '
|
|
45
|
+
import $style from '~flux/statistics/css/Metric.module.scss';
|
|
46
46
|
|
|
47
47
|
defineProps<{
|
|
48
48
|
readonly footer?: string;
|
package/src/css/Grid.module.scss
CHANGED