@flux-ui/statistics 3.0.0-next.58 → 3.0.0-next.60

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/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.58",
4
+ "version": "3.0.0-next.60",
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.21.0",
53
- "@basmilius/utils": "^3.21.0",
54
- "@flux-ui/components": "3.0.0-next.58",
55
- "@flux-ui/internals": "3.0.0-next.58",
56
- "@flux-ui/types": "3.0.0-next.58",
52
+ "@basmilius/common": "^3.24.0",
53
+ "@basmilius/utils": "^3.24.0",
54
+ "@flux-ui/components": "3.0.0-next.60",
55
+ "@flux-ui/internals": "3.0.0-next.60",
56
+ "@flux-ui/types": "3.0.0-next.60",
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.21.0",
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 '$fluxStatistics/css/Base.module.scss';
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 '$fluxStatistics/css/Change.module.scss';
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 '$fluxStatistics/css/Chart.module.scss';
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 '$fluxStatistics/css/ChartPane.module.scss';
32
+ import $style from '~flux/statistics/css/ChartPane.module.scss';
33
33
 
34
34
  defineProps<{
35
35
  readonly aspectRatio?: number;
@@ -13,7 +13,7 @@
13
13
  <script
14
14
  lang="ts"
15
15
  setup>
16
- import $style from '$fluxStatistics/css/DetailsTable.module.scss';
16
+ import $style from '~flux/statistics/css/DetailsTable.module.scss';
17
17
 
18
18
  defineProps<{
19
19
  readonly title: string;
@@ -13,7 +13,7 @@
13
13
  <script
14
14
  lang="ts"
15
15
  setup>
16
- import $style from '$fluxStatistics/css/DetailsTable.module.scss';
16
+ import $style from '~flux/statistics/css/DetailsTable.module.scss';
17
17
 
18
18
  defineProps<{
19
19
  readonly label: string;
@@ -18,7 +18,7 @@
18
18
  <script
19
19
  lang="ts"
20
20
  setup>
21
- import $style from '$fluxStatistics/css/Grid.module.scss';
21
+ import $style from '~flux/statistics/css/Grid.module.scss';
22
22
 
23
23
  defineProps<{
24
24
  readonly gap?: 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 '$fluxStatistics/css/Kpi.module.scss';
34
+ import $style from '~flux/statistics/css/Kpi.module.scss';
35
35
 
36
36
  defineProps<{
37
37
  readonly footer?: string;
@@ -7,5 +7,5 @@
7
7
  <script
8
8
  lang="ts"
9
9
  setup>
10
- import $style from '$fluxStatistics/css/Legend.module.scss';
10
+ import $style from '~flux/statistics/css/Legend.module.scss';
11
11
  </script>
@@ -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 '$fluxStatistics/css/Legend.module.scss';
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 '$fluxStatistics/css/Meter.module.scss';
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 '$fluxStatistics/css/Metric.module.scss';
45
+ import $style from '~flux/statistics/css/Metric.module.scss';
46
46
 
47
47
  defineProps<{
48
48
  readonly footer?: string;
@@ -1,4 +1,4 @@
1
- @use '$flux/css/mixin';
1
+ @use '~flux/components/css/mixin';
2
2
 
3
3
  .statisticsChartPane {
4
4
  --aspect-ratio: unset;
@@ -1,4 +1,4 @@
1
- @use '$flux/css/mixin';
1
+ @use '~flux/components/css/mixin';
2
2
 
3
3
  .detailsTable {
4
4
  composes: statisticsStackable from './Core.module.scss';
@@ -1,4 +1,4 @@
1
- @use '$flux/css/mixin';
1
+ @use '~flux/components/css/mixin';
2
2
 
3
3
  .statisticsGrid {
4
4
  --columns: 1;
@@ -1,4 +1,4 @@
1
- @use '$flux/css/mixin';
1
+ @use '~flux/components/css/mixin';
2
2
 
3
3
  .statisticsLegend {
4
4
  display: flex;