@flux-ui/statistics 3.0.0-next.66 → 3.0.0-next.67
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/component/FluxStatisticsAreaChart.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsBarChart.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsBase.vue.d.ts +7 -15
- package/dist/component/FluxStatisticsChange.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsChart.vue.d.ts +3 -16
- package/dist/component/FluxStatisticsChartPane.vue.d.ts +8 -17
- package/dist/component/FluxStatisticsDetailsTable.vue.d.ts +6 -13
- package/dist/component/FluxStatisticsDetailsTableRow.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsDonutChart.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsGrid.vue.d.ts +7 -11
- package/dist/component/FluxStatisticsKpi.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsLegend.vue.d.ts +7 -11
- package/dist/component/FluxStatisticsLegendItem.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsLineChart.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsMeter.vue.d.ts +2 -1
- package/dist/component/FluxStatisticsMetric.vue.d.ts +6 -13
- package/dist/component/FluxStatisticsPieChart.vue.d.ts +2 -1
- package/dist/index.js +31 -32
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly options?: ApexOptions;
|
|
6
6
|
readonly series: ApexOptions['series'];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly options?: ApexOptions;
|
|
6
6
|
readonly series: ApexOptions['series'];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -5,23 +5,15 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly isSmall?: boolean;
|
|
6
6
|
readonly title?: string;
|
|
7
7
|
};
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
content?(): any;
|
|
12
|
-
default?(): any;
|
|
13
|
-
}> & {
|
|
14
|
-
content?(): any;
|
|
15
|
-
default?(): any;
|
|
16
|
-
};
|
|
17
|
-
refs: {};
|
|
18
|
-
rootEl: HTMLDivElement;
|
|
8
|
+
type __VLS_Slots = {
|
|
9
|
+
content?(): any;
|
|
10
|
+
default?(): any;
|
|
19
11
|
};
|
|
20
|
-
|
|
21
|
-
declare const
|
|
22
|
-
declare const _default:
|
|
12
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
23
15
|
export default _default;
|
|
24
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
17
|
new (): {
|
|
26
18
|
$slots: S;
|
|
27
19
|
};
|
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly icon?: FluxIconName;
|
|
6
6
|
readonly value: string | number;
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -1,22 +1,9 @@
|
|
|
1
1
|
import { ApexOptions } from 'apexcharts';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions
|
|
3
|
-
import { VueApexChartsComponentProps, VueApexChartsComponentMethods } from 'vue3-apexcharts';
|
|
2
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
3
|
type __VLS_Props = {
|
|
5
4
|
readonly options?: ApexOptions;
|
|
6
5
|
readonly series: ApexOptions['series'];
|
|
7
6
|
};
|
|
8
|
-
declare const
|
|
9
|
-
|
|
10
|
-
series: any;
|
|
11
|
-
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
12
|
-
P: {};
|
|
13
|
-
B: {};
|
|
14
|
-
D: {};
|
|
15
|
-
C: {};
|
|
16
|
-
M: {};
|
|
17
|
-
Defaults: {};
|
|
18
|
-
}, Readonly< VueApexChartsComponentProps>, VueApexChartsComponentMethods, {}, ComputedOptions, MethodOptions, {
|
|
19
|
-
series: any;
|
|
20
|
-
}>;
|
|
21
|
-
}, HTMLDivElement>;
|
|
7
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
22
9
|
export default _default;
|
|
@@ -7,25 +7,16 @@ type __VLS_Props = {
|
|
|
7
7
|
readonly icon?: FluxIconName;
|
|
8
8
|
readonly title?: string;
|
|
9
9
|
};
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
legend?(): any;
|
|
15
|
-
toolbar?(): any;
|
|
16
|
-
}> & {
|
|
17
|
-
default(): any;
|
|
18
|
-
legend?(): any;
|
|
19
|
-
toolbar?(): any;
|
|
20
|
-
};
|
|
21
|
-
refs: {};
|
|
22
|
-
rootEl: HTMLDivElement;
|
|
10
|
+
type __VLS_Slots = {
|
|
11
|
+
default(): any;
|
|
12
|
+
legend?(): any;
|
|
13
|
+
toolbar?(): any;
|
|
23
14
|
};
|
|
24
|
-
|
|
25
|
-
declare const
|
|
26
|
-
declare const _default:
|
|
15
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
27
18
|
export default _default;
|
|
28
|
-
type
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
20
|
new (): {
|
|
30
21
|
$slots: S;
|
|
31
22
|
};
|
|
@@ -2,21 +2,14 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
readonly title: string;
|
|
4
4
|
};
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
slots: Readonly<{
|
|
8
|
-
default(): any;
|
|
9
|
-
}> & {
|
|
10
|
-
default(): any;
|
|
11
|
-
};
|
|
12
|
-
refs: {};
|
|
13
|
-
rootEl: HTMLDivElement;
|
|
5
|
+
type __VLS_Slots = {
|
|
6
|
+
default(): any;
|
|
14
7
|
};
|
|
15
|
-
|
|
16
|
-
declare const
|
|
17
|
-
declare const _default:
|
|
8
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
18
11
|
export default _default;
|
|
19
|
-
type
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
13
|
new (): {
|
|
21
14
|
$slots: S;
|
|
22
15
|
};
|
|
@@ -3,5 +3,6 @@ type __VLS_Props = {
|
|
|
3
3
|
readonly label: string;
|
|
4
4
|
readonly value: string;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly options?: ApexOptions;
|
|
6
6
|
readonly series: ApexOptions['series'];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -7,19 +7,15 @@ type __VLS_Props = {
|
|
|
7
7
|
readonly lg?: number;
|
|
8
8
|
readonly xl?: number;
|
|
9
9
|
};
|
|
10
|
-
declare
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
default?(_: {}): any;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: HTMLDivElement;
|
|
10
|
+
declare var __VLS_1: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
default?: (props: typeof __VLS_1) => any;
|
|
17
13
|
};
|
|
18
|
-
|
|
19
|
-
declare const
|
|
20
|
-
declare const _default:
|
|
14
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
21
17
|
export default _default;
|
|
22
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
19
|
new (): {
|
|
24
20
|
$slots: S;
|
|
25
21
|
};
|
|
@@ -7,5 +7,6 @@ type __VLS_Props = {
|
|
|
7
7
|
readonly title: string;
|
|
8
8
|
readonly value: string | number;
|
|
9
9
|
};
|
|
10
|
-
declare const
|
|
10
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
11
12
|
export default _default;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
declare const
|
|
12
|
-
declare const _default:
|
|
6
|
+
declare const __VLS_base: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
13
9
|
export default _default;
|
|
14
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
11
|
new (): {
|
|
16
12
|
$slots: S;
|
|
17
13
|
};
|
|
@@ -6,5 +6,6 @@ type __VLS_Props = {
|
|
|
6
6
|
readonly label: string;
|
|
7
7
|
readonly value?: string | number;
|
|
8
8
|
};
|
|
9
|
-
declare const
|
|
9
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
10
11
|
export default _default;
|
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly options?: ApexOptions;
|
|
6
6
|
readonly series: ApexOptions['series'];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -10,5 +10,6 @@ type __VLS_Props = {
|
|
|
10
10
|
readonly title?: string;
|
|
11
11
|
readonly value: number;
|
|
12
12
|
};
|
|
13
|
-
declare const
|
|
13
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
14
15
|
export default _default;
|
|
@@ -8,21 +8,14 @@ type __VLS_Props = {
|
|
|
8
8
|
readonly title: string;
|
|
9
9
|
readonly value?: string | number;
|
|
10
10
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
slots: Readonly<{
|
|
14
|
-
default?(): any;
|
|
15
|
-
}> & {
|
|
16
|
-
default?(): any;
|
|
17
|
-
};
|
|
18
|
-
refs: {};
|
|
19
|
-
rootEl: HTMLDivElement;
|
|
11
|
+
type __VLS_Slots = {
|
|
12
|
+
default?(): any;
|
|
20
13
|
};
|
|
21
|
-
|
|
22
|
-
declare const
|
|
23
|
-
declare const _default:
|
|
14
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
24
17
|
export default _default;
|
|
25
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
19
|
new (): {
|
|
27
20
|
$slots: S;
|
|
28
21
|
};
|
|
@@ -5,5 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
readonly options?: ApexOptions;
|
|
6
6
|
readonly series: ApexOptions['series'];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { useI18n } from "vue-i18n";
|
|
|
4
4
|
import ApexCharts from "vue3-apexcharts";
|
|
5
5
|
import { FluxIcon, FluxPane, FluxToolbar } from "@flux-ui/components";
|
|
6
6
|
//#region ../internals/dist/data/index.js
|
|
7
|
-
var oe = `#ef4444`, _e$
|
|
7
|
+
var oe = `#ef4444`, _e$2 = `#f97316`, Oe = `#f59e0b`, ze = `#eab308`, Xe = `#84cc16`, st = `#22c55e`, vt = `#10b981`, kt = `#14b8a6`, Bt = `#06b6d4`, Zt = `#0ea5e9`, ln = `#3b82f6`, bn = `#6366f1`, jn = `#8b5cf6`, Hn = `#a855f7`, $n = `#d946ef`, ur = `#ec4899`, gr = `#fff1f2`;
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region ../../node_modules/.bun/culori@4.0.2/node_modules/culori/src/rgb/parseNumber.js
|
|
10
10
|
var parseNumber = (color, len) => {
|
|
@@ -9267,7 +9267,7 @@ function friendlyDateTime(dateTimeish) {
|
|
|
9267
9267
|
else throw new InvalidArgumentError(`Unknown datetime argument: ${dateTimeish}, of type ${typeof dateTimeish}`);
|
|
9268
9268
|
}
|
|
9269
9269
|
//#endregion
|
|
9270
|
-
//#region ../../node_modules/.bun/@basmilius+utils@3.
|
|
9270
|
+
//#region ../../node_modules/.bun/@basmilius+utils@3.30.0/node_modules/@basmilius/utils/dist/index.mjs
|
|
9271
9271
|
function p$1(e, t = 0) {
|
|
9272
9272
|
let n = typeof navigator < `u` ? navigator.language : `nl-NL`;
|
|
9273
9273
|
return new Intl.NumberFormat(n, {
|
|
@@ -9304,7 +9304,7 @@ function K$1(e, t, n) {
|
|
|
9304
9304
|
Object.defineProperty(e, t, { value: n });
|
|
9305
9305
|
}
|
|
9306
9306
|
//#endregion
|
|
9307
|
-
//#region ../../node_modules/.bun/@basmilius+http-client@3.
|
|
9307
|
+
//#region ../../node_modules/.bun/@basmilius+http-client@3.30.0+638c9d1214a588db/node_modules/@basmilius/http-client/dist/index.mjs
|
|
9308
9308
|
function c(e) {
|
|
9309
9309
|
return class extends e {
|
|
9310
9310
|
constructor(...e) {
|
|
@@ -9315,17 +9315,17 @@ function c(e) {
|
|
|
9315
9315
|
function ne(e, t) {
|
|
9316
9316
|
return e === t ? !0 : e === t;
|
|
9317
9317
|
}
|
|
9318
|
-
var l = Symbol(), u = Symbol(), d = Symbol(), f = Symbol(), p = Symbol(), m = Symbol(), h = Symbol(), g = Symbol(), _ = Symbol(), re = Symbol(), ie = Symbol();
|
|
9318
|
+
var l = Symbol(), u = Symbol(), d = Symbol(), f = Symbol(), p = Symbol(), m = Symbol(), h = Symbol(), g = Symbol(), _ = Symbol(), re = Symbol(), ie$1 = Symbol();
|
|
9319
9319
|
function v(e) {
|
|
9320
9320
|
return e && typeof e == `object` && !!e[p];
|
|
9321
9321
|
}
|
|
9322
9322
|
function y(e) {
|
|
9323
9323
|
if (!v(e)) throw Error(`@dto assert given object is not a class decorated with @Dto.`);
|
|
9324
9324
|
}
|
|
9325
|
-
var ae = Symbol();
|
|
9325
|
+
var ae$1 = Symbol();
|
|
9326
9326
|
function b(e, t = 0, n) {
|
|
9327
9327
|
return function(...r) {
|
|
9328
|
-
let i = e[ae] ??= /* @__PURE__ */ new WeakMap(), a = r[t], o = n === void 0 ? `self` : r[n];
|
|
9328
|
+
let i = e[ae$1] ??= /* @__PURE__ */ new WeakMap(), a = r[t], o = n === void 0 ? `self` : r[n];
|
|
9329
9329
|
if (typeof a != `object` || !a) return e.call(this, ...r);
|
|
9330
9330
|
i.has(a) || i.set(a, []);
|
|
9331
9331
|
let s = i.get(a);
|
|
@@ -9344,7 +9344,7 @@ function x(e) {
|
|
|
9344
9344
|
return y(e), e[f];
|
|
9345
9345
|
}
|
|
9346
9346
|
var S = b(function(e, t, n, r) {
|
|
9347
|
-
let i = e[ie];
|
|
9347
|
+
let i = e[ie$1];
|
|
9348
9348
|
i(e, t, n, r), e[m] && S(e[m], e[h], e[m][e[h]]);
|
|
9349
9349
|
}, 0, 1), C = b(function(e) {
|
|
9350
9350
|
y(e), e[f] && (e[f] = !1, S(e, f, !1, !0)), !(!e[u] || e[u].length === 0) && e[u].filter(x).forEach(C);
|
|
@@ -9380,26 +9380,26 @@ function ue(e, t) {
|
|
|
9380
9380
|
t[m] = void 0, t[h] = void 0;
|
|
9381
9381
|
}
|
|
9382
9382
|
}
|
|
9383
|
-
var O
|
|
9383
|
+
var O = {};
|
|
9384
9384
|
var k$1 = {
|
|
9385
9385
|
deleteProperty(e, t) {
|
|
9386
|
-
if (Reflect.deleteProperty(e, t), A
|
|
9386
|
+
if (Reflect.deleteProperty(e, t), A(e, t)) return !0;
|
|
9387
9387
|
let n = e[m];
|
|
9388
9388
|
return n && S(n, e[h], n[e[h]]), n && w(n, e[h]), !0;
|
|
9389
9389
|
},
|
|
9390
9390
|
get(e, t, n) {
|
|
9391
9391
|
if (t === _) return !0;
|
|
9392
|
-
if (A
|
|
9392
|
+
if (A(e, t)) return Reflect.get(e, t, n);
|
|
9393
9393
|
let r = e[m];
|
|
9394
9394
|
return r && le(r, e[h]), Reflect.get(e, t);
|
|
9395
9395
|
},
|
|
9396
9396
|
set(e, t, n, r) {
|
|
9397
|
-
if (A
|
|
9397
|
+
if (A(e, t)) return Reflect.set(e, t, n, r);
|
|
9398
9398
|
let i = e[m];
|
|
9399
9399
|
return i && S(i, e[h], i[e[h]]), i && w(i, e[h]), Reflect.set(e, t, n);
|
|
9400
9400
|
}
|
|
9401
9401
|
};
|
|
9402
|
-
function A
|
|
9402
|
+
function A(e, t) {
|
|
9403
9403
|
return typeof t == `symbol` || typeof e[t] == `function` || t === `length`;
|
|
9404
9404
|
}
|
|
9405
9405
|
var de = {
|
|
@@ -9424,7 +9424,7 @@ var de = {
|
|
|
9424
9424
|
let a = i.get?.call(e) ?? void 0;
|
|
9425
9425
|
return ne(n, a) ? !0 : (ue(e, a), Array.isArray(n) && !n[_] && (n = new Proxy(n, k$1)), i.set.call(e, n), E(e, t, n), w(e, t), S(e, t, n, a), !0);
|
|
9426
9426
|
}
|
|
9427
|
-
}, fe
|
|
9427
|
+
}, fe = {
|
|
9428
9428
|
get(e, t, n) {
|
|
9429
9429
|
return t === `__v_isRef` ? !1 : t === _ ? !0 : t in e ? Reflect.get(e, t, n) : Reflect.get(e.value, t);
|
|
9430
9430
|
},
|
|
@@ -9437,33 +9437,33 @@ var de = {
|
|
|
9437
9437
|
set(e, t, n, r) {
|
|
9438
9438
|
return t in e ? Reflect.set(e, t, n, r) : Reflect.set(e.value, t, n);
|
|
9439
9439
|
}
|
|
9440
|
-
}, pe
|
|
9440
|
+
}, pe = { construct(e, t, n) {
|
|
9441
9441
|
t = t.map((e) => Array.isArray(e) ? new Proxy(e, k$1) : e);
|
|
9442
9442
|
let r = customRef((r, i) => {
|
|
9443
9443
|
let a = markRaw(Reflect.construct(e, t, n));
|
|
9444
|
-
a[l] = t, a[f] = !1, a[re] = r, a[ie] = i;
|
|
9444
|
+
a[l] = t, a[f] = !1, a[re] = r, a[ie$1] = i;
|
|
9445
9445
|
let s = new Proxy(a, de);
|
|
9446
9446
|
return {
|
|
9447
9447
|
get: () => (r(), s),
|
|
9448
9448
|
set: () => void 0
|
|
9449
9449
|
};
|
|
9450
9450
|
});
|
|
9451
|
-
return new Proxy(r, fe
|
|
9451
|
+
return new Proxy(r, fe);
|
|
9452
9452
|
} };
|
|
9453
9453
|
function me() {
|
|
9454
9454
|
let e = this;
|
|
9455
9455
|
y(e);
|
|
9456
|
-
let t = O
|
|
9456
|
+
let t = O[e[p]], n = new t(...e[l]);
|
|
9457
9457
|
for (let [e, t] of Object.entries(this[d])) t.set && (n[e] = v(this[e]) ? this[e].clone() : this[e]);
|
|
9458
9458
|
return n;
|
|
9459
9459
|
}
|
|
9460
|
-
function he
|
|
9460
|
+
function he(e) {
|
|
9461
9461
|
for (let t in e) {
|
|
9462
9462
|
let n = this[d][t];
|
|
9463
9463
|
v(this[t]) && typeof e[t] == `object` ? this[t].fill(e[t]) : n && n.set && (this[t] = e[t]);
|
|
9464
9464
|
}
|
|
9465
9465
|
}
|
|
9466
|
-
function ge() {
|
|
9466
|
+
function ge$1() {
|
|
9467
9467
|
let e = {};
|
|
9468
9468
|
for (let t of this[g]) {
|
|
9469
9469
|
let n = this[t];
|
|
@@ -9474,11 +9474,11 @@ function ge() {
|
|
|
9474
9474
|
function j(e) {
|
|
9475
9475
|
ve(e);
|
|
9476
9476
|
let t = Object.freeze(x$1(e)), a = Object.keys(t);
|
|
9477
|
-
return K$1(e.prototype, d, t), K$1(e.prototype, p, e.name), K$1(e.prototype, g, a), K$1(e, Symbol.hasInstance, (t) => typeof t == `object` && t?.[p] === e.name), G$2(e, `clone`, me), G$2(e, `fill`, he
|
|
9477
|
+
return K$1(e.prototype, d, t), K$1(e.prototype, p, e.name), K$1(e.prototype, g, a), K$1(e, Symbol.hasInstance, (t) => typeof t == `object` && t?.[p] === e.name), G$2(e, `clone`, me), G$2(e, `fill`, he), G$2(e, `toJSON`, ge$1), _e$1(e);
|
|
9478
9478
|
}
|
|
9479
|
-
function _e(e) {
|
|
9480
|
-
let t = new Proxy(e, pe
|
|
9481
|
-
return O
|
|
9479
|
+
function _e$1(e) {
|
|
9480
|
+
let t = new Proxy(e, pe);
|
|
9481
|
+
return O[e.name] = t, t;
|
|
9482
9482
|
}
|
|
9483
9483
|
function ve(e) {
|
|
9484
9484
|
let t = Object.getPrototypeOf(e.prototype);
|
|
@@ -9602,26 +9602,25 @@ var X = Y = class {
|
|
|
9602
9602
|
}
|
|
9603
9603
|
};
|
|
9604
9604
|
X = Y = B([c], X);
|
|
9605
|
-
converter(`oklch`);
|
|
9606
9605
|
function G(e) {
|
|
9607
9606
|
let t = unref(e);
|
|
9608
9607
|
return t ? R(t) ? t : t.$el ?? null : null;
|
|
9609
9608
|
}
|
|
9610
9609
|
RegExp(`[a-z]`), RegExp(`[A-Z]`), RegExp(`[0-9]`), RegExp(`[!"#$%&'()*+,-./:;<=>?@[\\\\\\]^_\`{|}~]`);
|
|
9611
|
-
function
|
|
9610
|
+
function ye(e, t, n) {
|
|
9612
9611
|
n ??= {};
|
|
9613
9612
|
let r, i = watch(e, (e) => {
|
|
9614
|
-
|
|
9613
|
+
a();
|
|
9615
9614
|
let i = G(e);
|
|
9616
9615
|
i && (r = new ResizeObserver(t), r.observe(i, n));
|
|
9617
9616
|
}, { immediate: !0 });
|
|
9618
|
-
function
|
|
9617
|
+
function a() {
|
|
9619
9618
|
r &&= (r.disconnect(), void 0);
|
|
9620
9619
|
}
|
|
9621
|
-
function
|
|
9622
|
-
|
|
9620
|
+
function o() {
|
|
9621
|
+
a(), i();
|
|
9623
9622
|
}
|
|
9624
|
-
onScopeDispose(
|
|
9623
|
+
onScopeDispose(o);
|
|
9625
9624
|
}
|
|
9626
9625
|
var Chart_module_default = {
|
|
9627
9626
|
pane: `pane`,
|
|
@@ -9644,7 +9643,7 @@ var FluxStatisticsChart_default = /* @__PURE__ */ defineComponent({
|
|
|
9644
9643
|
setup(__props) {
|
|
9645
9644
|
const chart = useTemplateRef("chart");
|
|
9646
9645
|
const { t } = useI18n({ useScope: "parent" });
|
|
9647
|
-
|
|
9646
|
+
ye(chart, () => {
|
|
9648
9647
|
const _chart = unref(chart);
|
|
9649
9648
|
if (!_chart) return;
|
|
9650
9649
|
_chart.chart?.update();
|
|
@@ -10444,7 +10443,7 @@ var CHART_COLORS = [
|
|
|
10444
10443
|
];
|
|
10445
10444
|
var CHART_COLORFUL_COLORS = [
|
|
10446
10445
|
oe,
|
|
10447
|
-
_e$
|
|
10446
|
+
_e$2,
|
|
10448
10447
|
Oe,
|
|
10449
10448
|
ze,
|
|
10450
10449
|
Xe,
|