@flux-ui/statistics 3.0.0-next.74 → 3.0.0
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/README.md +0 -1
- package/dist/component/FluxStatisticsLegend.vue.d.ts +7 -1
- package/dist/composable/index.d.ts +2 -0
- package/dist/composable/useChartLegend.d.ts +1 -0
- package/dist/composable/useLegendVariant.d.ts +3 -0
- package/dist/index.css +38 -0
- package/dist/index.js +96 -15
- package/dist/index.js.map +1 -1
- package/dist/util/options/cartesian/buildCandlestickChartOptions.d.ts +1 -1
- package/dist/util/tooltips/buildCandlestickTooltip.d.ts +22 -0
- package/dist/util/tooltips/buildTreemapTooltip.d.ts +3 -1
- package/dist/util/tooltips/index.d.ts +2 -0
- package/package.json +4 -4
- package/src/component/FluxStatisticsChart.vue +5 -1
- package/src/component/FluxStatisticsComparison.vue +14 -1
- package/src/component/FluxStatisticsLegend.vue +24 -4
- package/src/component/FluxStatisticsLegendItem.vue +9 -2
- package/src/composable/index.ts +2 -0
- package/src/composable/useChartHoverSync.ts +11 -2
- package/src/composable/useChartLegend.ts +1 -0
- package/src/composable/useECharts.ts +5 -1
- package/src/composable/useLegendVariant.ts +5 -0
- package/src/css/Legend.module.scss +45 -0
- package/src/util/options/cartesian/buildCandlestickChartOptions.ts +7 -5
- package/src/util/tooltips/buildCandlestickTooltip.ts +65 -0
- package/src/util/tooltips/buildTreemapTooltip.ts +4 -2
- package/src/util/tooltips/index.ts +2 -0
package/README.md
CHANGED
|
@@ -28,5 +28,4 @@ Built on top of [Apache ECharts](https://echarts.apache.org/), themed to match t
|
|
|
28
28
|
- [`@flux-ui/components`](../components)
|
|
29
29
|
- [`@flux-ui/types`](../types)
|
|
30
30
|
- [`@flux-ui/internals`](../internals)
|
|
31
|
-
- [`@flux-ui/dashboard`](../dashboard)
|
|
32
31
|
- [`@flux-ui/application`](../application)
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
import { FluxDirection } from '@flux-ui/types';
|
|
2
|
+
import { FluxStatisticsLegendVariant } from '../composable';
|
|
1
3
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
readonly direction?: FluxDirection;
|
|
6
|
+
readonly variant?: FluxStatisticsLegendVariant;
|
|
7
|
+
};
|
|
2
8
|
declare var __VLS_1: {};
|
|
3
9
|
type __VLS_Slots = {} & {
|
|
4
10
|
default?: (props: typeof __VLS_1) => any;
|
|
5
11
|
};
|
|
6
|
-
declare const __VLS_base: DefineComponent<
|
|
12
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7
13
|
declare const _default: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
8
14
|
export default _default;
|
|
9
15
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -10,3 +10,5 @@ export type { UseChartSlicesSetupReturn } from './useChartSlicesSetup';
|
|
|
10
10
|
export { useChartSlicesSetup } from './useChartSlicesSetup';
|
|
11
11
|
export type { EChartsInstance, EChartsOption, UseEChartsReturn } from './useECharts';
|
|
12
12
|
export { useECharts } from './useECharts';
|
|
13
|
+
export type { FluxStatisticsLegendVariant } from './useLegendVariant';
|
|
14
|
+
export { FluxStatisticsLegendVariantInjectionKey } from './useLegendVariant';
|
package/dist/index.css
CHANGED
|
@@ -513,6 +513,44 @@
|
|
|
513
513
|
right: 0;
|
|
514
514
|
content: "";
|
|
515
515
|
border-top: 1px dashed var(--surface-stroke);
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.statistics-legend-compact {
|
|
519
|
+
display: flex;
|
|
520
|
+
user-select: none;
|
|
521
|
+
}
|
|
522
|
+
.statistics-legend-compact.is-horizontal {
|
|
523
|
+
flex-flow: row wrap;
|
|
524
|
+
gap: 12px 18px;
|
|
525
|
+
}
|
|
526
|
+
.statistics-legend-compact.is-vertical {
|
|
527
|
+
flex-flow: column;
|
|
528
|
+
gap: 12px;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.statistics-legend-item-compact {
|
|
532
|
+
--color: var(--primary-600);
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
flex-flow: row nowrap;
|
|
536
|
+
gap: 6px;
|
|
537
|
+
font-size: 14px;
|
|
538
|
+
line-height: 1;
|
|
539
|
+
white-space: nowrap;
|
|
540
|
+
}
|
|
541
|
+
.statistics-legend-item-compact .statistics-legend-item-color {
|
|
542
|
+
margin: 0;
|
|
543
|
+
border-radius: var(--radius-full);
|
|
544
|
+
}
|
|
545
|
+
.statistics-legend-item-compact .statistics-legend-item-icon {
|
|
546
|
+
margin: 0;
|
|
547
|
+
}
|
|
548
|
+
.statistics-legend-item-compact .statistics-legend-item-label {
|
|
549
|
+
flex-grow: 0;
|
|
550
|
+
font-weight: 400;
|
|
551
|
+
}
|
|
552
|
+
.statistics-legend-item-compact .statistics-legend-item-value {
|
|
553
|
+
margin-left: 0;
|
|
516
554
|
}.statistics-meter {
|
|
517
555
|
--color: var(--primary-600);
|
|
518
556
|
--percentage: 0%;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createSlots, createVNode, customRef, defineComponent, inject, markRaw, normalizeClass, normalizeStyle, onBeforeUnmount, onMounted, onScopeDispose, openBlock, provide, ref, renderList, renderSlot, toDisplayString, toValue, unref, useSlots, useTemplateRef, watch, watchEffect, withCtx } from "vue";
|
|
1
|
+
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createSlots, createVNode, customRef, defineComponent, inject, markRaw, normalizeClass, normalizeStyle, onBeforeUnmount, onMounted, onScopeDispose, openBlock, provide, ref, renderList, renderSlot, toDisplayString, toRef, toValue, unref, useSlots, useTemplateRef, watch, watchEffect, withCtx } from "vue";
|
|
2
2
|
import { useI18n } from "vue-i18n";
|
|
3
3
|
import { FluxIcon, FluxPane, FluxToolbar, FluxTooltip, iconRegistry } from "@flux-ui/components";
|
|
4
4
|
import { merge } from "lodash-es";
|
|
@@ -31,9 +31,16 @@ function useChartHoverSync(chartInstance, legendContext, options) {
|
|
|
31
31
|
const { mode, seriesIndex: forcedSeriesIndex = 0 } = options;
|
|
32
32
|
let attached = null;
|
|
33
33
|
let syncing = false;
|
|
34
|
+
const toSeriesIndex = (itemIndex) => {
|
|
35
|
+
return legendContext.items.value[itemIndex]?.seriesIndex ?? itemIndex;
|
|
36
|
+
};
|
|
37
|
+
const toItemIndex = (seriesIndex) => {
|
|
38
|
+
const mapped = legendContext.items.value.findIndex((item) => item.seriesIndex === seriesIndex);
|
|
39
|
+
return mapped !== -1 ? mapped : seriesIndex;
|
|
40
|
+
};
|
|
34
41
|
const onMouseOver = (params) => {
|
|
35
42
|
if (syncing) return;
|
|
36
|
-
const index = mode === "series" ? params.seriesIndex
|
|
43
|
+
const index = mode === "series" ? params.seriesIndex !== void 0 ? toItemIndex(params.seriesIndex) : null : params.dataIndex ?? null;
|
|
37
44
|
legendContext.hoveredIndex.value = index;
|
|
38
45
|
};
|
|
39
46
|
const onMouseOut = () => {
|
|
@@ -46,7 +53,7 @@ function useChartHoverSync(chartInstance, legendContext, options) {
|
|
|
46
53
|
instance.dispatchAction({ type: "downplay" });
|
|
47
54
|
if (index !== null) if (mode === "series") instance.dispatchAction({
|
|
48
55
|
type: "highlight",
|
|
49
|
-
seriesIndex: index
|
|
56
|
+
seriesIndex: toSeriesIndex(index)
|
|
50
57
|
});
|
|
51
58
|
else instance.dispatchAction({
|
|
52
59
|
type: "highlight",
|
|
@@ -6929,6 +6936,51 @@ function buildBoxPlotTooltip(input) {
|
|
|
6929
6936
|
} };
|
|
6930
6937
|
}
|
|
6931
6938
|
//#endregion
|
|
6939
|
+
//#region src/util/tooltips/buildCandlestickTooltip.ts
|
|
6940
|
+
function buildCandlestickTooltip(input) {
|
|
6941
|
+
const { t, styles, getSeries } = input;
|
|
6942
|
+
const formatter = (params) => {
|
|
6943
|
+
const param = Array.isArray(params) ? params[0] : params;
|
|
6944
|
+
if (!param) return "";
|
|
6945
|
+
const series = getSeries();
|
|
6946
|
+
const seriesIndex = param.seriesIndex ?? 0;
|
|
6947
|
+
const dataIndex = param.dataIndex ?? 0;
|
|
6948
|
+
const s = series[seriesIndex];
|
|
6949
|
+
const point = s?.data[dataIndex];
|
|
6950
|
+
if (!s || !point) return "";
|
|
6951
|
+
const positive = resolveChartColor(s.positiveColor) ?? "var(--success-500)";
|
|
6952
|
+
const negative = resolveChartColor(s.negativeColor) ?? "var(--danger-500)";
|
|
6953
|
+
const color = point.close >= point.open ? positive : negative;
|
|
6954
|
+
return renderTooltip(t, styles, [s.name ? t(String(s.name)) : "", point.label ? t(String(point.label)) : ""].filter(Boolean).join(" — "), [
|
|
6955
|
+
{
|
|
6956
|
+
name: "Open",
|
|
6957
|
+
value: point.open,
|
|
6958
|
+
color
|
|
6959
|
+
},
|
|
6960
|
+
{
|
|
6961
|
+
name: "Close",
|
|
6962
|
+
value: point.close,
|
|
6963
|
+
color
|
|
6964
|
+
},
|
|
6965
|
+
{
|
|
6966
|
+
name: "Lowest",
|
|
6967
|
+
value: point.low,
|
|
6968
|
+
color
|
|
6969
|
+
},
|
|
6970
|
+
{
|
|
6971
|
+
name: "Highest",
|
|
6972
|
+
value: point.high,
|
|
6973
|
+
color
|
|
6974
|
+
}
|
|
6975
|
+
]);
|
|
6976
|
+
};
|
|
6977
|
+
return { tooltip: {
|
|
6978
|
+
show: true,
|
|
6979
|
+
trigger: "item",
|
|
6980
|
+
formatter
|
|
6981
|
+
} };
|
|
6982
|
+
}
|
|
6983
|
+
//#endregion
|
|
6932
6984
|
//#region src/util/tooltips/buildCartesianTooltip.ts
|
|
6933
6985
|
function buildCartesianTooltip(input) {
|
|
6934
6986
|
const { t, styles, getSeriesIcons, valueFormatter } = input;
|
|
@@ -7057,7 +7109,7 @@ function buildTreemapTooltip(input) {
|
|
|
7057
7109
|
if (!param) return "";
|
|
7058
7110
|
const data = param.data;
|
|
7059
7111
|
if (!data) return "";
|
|
7060
|
-
const color = data.color ?? "var(--primary-600)";
|
|
7112
|
+
const color = data.itemStyle?.color ?? param.color ?? "var(--primary-600)";
|
|
7061
7113
|
return renderTooltip(t, styles, data.name ? t(String(data.name)) : "", [{
|
|
7062
7114
|
name: "",
|
|
7063
7115
|
value: data.value ?? "",
|
|
@@ -7250,14 +7302,16 @@ function resolveCandlestickLabels(series, labels) {
|
|
|
7250
7302
|
if (labels) return labels;
|
|
7251
7303
|
for (const s of series) if (s.data.map((p) => p.label ?? "").filter(Boolean).length > 0) return s.data.map((p) => p.label ?? "");
|
|
7252
7304
|
}
|
|
7253
|
-
function candlestickLegendItemBuilder(s) {
|
|
7305
|
+
function candlestickLegendItemBuilder(s, _color, index) {
|
|
7254
7306
|
return [{
|
|
7255
7307
|
color: resolveChartColor(s.positiveColor) ?? "var(--success-500)",
|
|
7256
7308
|
icon: s.icon,
|
|
7257
|
-
label: "Up"
|
|
7309
|
+
label: "Up",
|
|
7310
|
+
seriesIndex: index
|
|
7258
7311
|
}, {
|
|
7259
7312
|
color: resolveChartColor(s.negativeColor) ?? "var(--danger-500)",
|
|
7260
|
-
label: "Down"
|
|
7313
|
+
label: "Down",
|
|
7314
|
+
seriesIndex: index
|
|
7261
7315
|
}];
|
|
7262
7316
|
}
|
|
7263
7317
|
function buildCandlestickChartOptions(input) {
|
|
@@ -7274,10 +7328,10 @@ function buildCandlestickChartOptions(input) {
|
|
|
7274
7328
|
type: "category",
|
|
7275
7329
|
data: xLabels
|
|
7276
7330
|
} } : void 0;
|
|
7277
|
-
const tooltipOptions = tooltip ?
|
|
7331
|
+
const tooltipOptions = tooltip ? buildCandlestickTooltip({
|
|
7278
7332
|
t,
|
|
7279
7333
|
styles,
|
|
7280
|
-
|
|
7334
|
+
getSeries: () => series
|
|
7281
7335
|
}) : { tooltip: { show: false } };
|
|
7282
7336
|
const echartsSeries = series.map((s) => toCandlestickSeries({
|
|
7283
7337
|
...s,
|
|
@@ -11305,6 +11359,9 @@ function useECharts(target, options) {
|
|
|
11305
11359
|
chartInstance.value = markRaw(init(target.value));
|
|
11306
11360
|
chartInstance.value.setOption(toValue(options));
|
|
11307
11361
|
});
|
|
11362
|
+
watch(() => toValue(options), (value) => {
|
|
11363
|
+
chartInstance.value?.setOption(value, { notMerge: true });
|
|
11364
|
+
});
|
|
11308
11365
|
onBeforeUnmount(() => {
|
|
11309
11366
|
if (pendingResize !== null) {
|
|
11310
11367
|
cancelAnimationFrame(pendingResize);
|
|
@@ -11325,6 +11382,9 @@ function useECharts(target, options) {
|
|
|
11325
11382
|
resize: () => chartInstance.value?.resize()
|
|
11326
11383
|
};
|
|
11327
11384
|
}
|
|
11385
|
+
//#endregion
|
|
11386
|
+
//#region src/composable/useLegendVariant.ts
|
|
11387
|
+
var FluxStatisticsLegendVariantInjectionKey = Symbol("flux-statistics-legend-variant");
|
|
11328
11388
|
var Chart_module_default = {
|
|
11329
11389
|
pane: `pane`,
|
|
11330
11390
|
statisticsChart: `statistics-chart`,
|
|
@@ -11349,7 +11409,9 @@ var FluxStatisticsChart_default = /* @__PURE__ */ defineComponent({
|
|
|
11349
11409
|
setup(__props, { expose: __expose }) {
|
|
11350
11410
|
const chart = useTemplateRef("chart");
|
|
11351
11411
|
const defaults = buildBaseOptions();
|
|
11412
|
+
const themeVersion = useCssVarVersion();
|
|
11352
11413
|
const { chartInstance } = useECharts(chart, computed(() => {
|
|
11414
|
+
themeVersion.value;
|
|
11353
11415
|
const merged = merge({}, defaults, __props.options);
|
|
11354
11416
|
if (__props.options && __props.options.color !== void 0) merged.color = __props.options.color;
|
|
11355
11417
|
if (__props.options && __props.options.series !== void 0) merged.series = __props.options.series;
|
|
@@ -11799,9 +11861,12 @@ var FluxStatisticsComparison_default = /* @__PURE__ */ defineComponent({
|
|
|
11799
11861
|
setup(__props) {
|
|
11800
11862
|
const formattedCurrent = computed(() => __props.format ? __props.format(__props.current) : __props.current);
|
|
11801
11863
|
const formattedPrevious = computed(() => __props.format ? __props.format(__props.previous) : __props.previous);
|
|
11864
|
+
const isDeltaIndeterminate = computed(() => __props.previous === 0 && __props.current !== 0);
|
|
11802
11865
|
const deltaValue = computed(() => {
|
|
11803
11866
|
if (__props.previous === 0) return 0;
|
|
11804
|
-
|
|
11867
|
+
const delta = (__props.current - __props.previous) / Math.abs(__props.previous) * 100;
|
|
11868
|
+
if (Math.round(delta * 10) / 10 === 0) return 0;
|
|
11869
|
+
return delta;
|
|
11805
11870
|
});
|
|
11806
11871
|
const deltaColor = computed(() => {
|
|
11807
11872
|
if (deltaValue.value > 0) return "success";
|
|
@@ -11813,6 +11878,7 @@ var FluxStatisticsComparison_default = /* @__PURE__ */ defineComponent({
|
|
|
11813
11878
|
if (deltaValue.value < 0) return "arrow-trend-down";
|
|
11814
11879
|
});
|
|
11815
11880
|
const formattedDelta = computed(() => {
|
|
11881
|
+
if (isDeltaIndeterminate.value) return "—";
|
|
11816
11882
|
return `${deltaValue.value > 0 ? "+" : ""}${deltaValue.value.toFixed(1)}%`;
|
|
11817
11883
|
});
|
|
11818
11884
|
return (_ctx, _cache) => {
|
|
@@ -12135,7 +12201,11 @@ var Legend_module_default = {
|
|
|
12135
12201
|
statisticsLegendItemColor: `statistics-legend-item-color`,
|
|
12136
12202
|
statisticsLegendItemIcon: `statistics-legend-item-icon`,
|
|
12137
12203
|
statisticsLegendItemLabel: `statistics-legend-item-label`,
|
|
12138
|
-
statisticsLegendItemValue: `statistics-legend-item-value
|
|
12204
|
+
statisticsLegendItemValue: `statistics-legend-item-value`,
|
|
12205
|
+
statisticsLegendCompact: `statistics-legend-compact`,
|
|
12206
|
+
isHorizontal: `is-horizontal`,
|
|
12207
|
+
isVertical: `is-vertical`,
|
|
12208
|
+
statisticsLegendItemCompact: `statistics-legend-item-compact`
|
|
12139
12209
|
};
|
|
12140
12210
|
//#endregion
|
|
12141
12211
|
//#region src/component/FluxStatisticsLegendItem.vue
|
|
@@ -12149,6 +12219,8 @@ var FluxStatisticsLegendItem_default = /* @__PURE__ */ defineComponent({
|
|
|
12149
12219
|
value: {}
|
|
12150
12220
|
},
|
|
12151
12221
|
setup(__props) {
|
|
12222
|
+
const variantRef = inject(FluxStatisticsLegendVariantInjectionKey, null);
|
|
12223
|
+
const variant = computed(() => variantRef?.value ?? "detailed");
|
|
12152
12224
|
const colorValue = computed(() => {
|
|
12153
12225
|
if (!__props.color) return;
|
|
12154
12226
|
if ([
|
|
@@ -12163,7 +12235,7 @@ var FluxStatisticsLegendItem_default = /* @__PURE__ */ defineComponent({
|
|
|
12163
12235
|
});
|
|
12164
12236
|
return (_ctx, _cache) => {
|
|
12165
12237
|
return openBlock(), createElementBlock("div", {
|
|
12166
|
-
class: normalizeClass(unref(clsx)(unref(Legend_module_default).statisticsLegendItem, __props.isHovered && unref(Legend_module_default).isHovered)),
|
|
12238
|
+
class: normalizeClass(unref(clsx)(variant.value === "compact" ? unref(Legend_module_default).statisticsLegendItemCompact : unref(Legend_module_default).statisticsLegendItem, variant.value !== "compact" && __props.isHovered && unref(Legend_module_default).isHovered)),
|
|
12167
12239
|
style: normalizeStyle({ "--color": colorValue.value })
|
|
12168
12240
|
}, [
|
|
12169
12241
|
__props.icon ? (openBlock(), createBlock(unref(FluxIcon), {
|
|
@@ -12191,11 +12263,20 @@ var FluxStatisticsLegendItem_default = /* @__PURE__ */ defineComponent({
|
|
|
12191
12263
|
//#region src/component/FluxStatisticsLegend.vue
|
|
12192
12264
|
var FluxStatisticsLegend_default = /* @__PURE__ */ defineComponent({
|
|
12193
12265
|
__name: "FluxStatisticsLegend",
|
|
12266
|
+
props: {
|
|
12267
|
+
direction: { default: "horizontal" },
|
|
12268
|
+
variant: { default: "detailed" }
|
|
12269
|
+
},
|
|
12194
12270
|
setup(__props) {
|
|
12195
12271
|
const slots = useSlots();
|
|
12196
12272
|
const legendContext = inject(FluxStatisticsChartLegendInjectionKey, null);
|
|
12197
12273
|
const hasSlot = computed(() => !!slots.default);
|
|
12198
12274
|
const autoItems = computed(() => legendContext?.items.value ?? []);
|
|
12275
|
+
const containerClass = computed(() => {
|
|
12276
|
+
if (__props.variant === "compact") return clsx(Legend_module_default.statisticsLegendCompact, __props.direction === "vertical" ? Legend_module_default.isVertical : Legend_module_default.isHorizontal);
|
|
12277
|
+
return Legend_module_default.statisticsLegend;
|
|
12278
|
+
});
|
|
12279
|
+
provide(FluxStatisticsLegendVariantInjectionKey, toRef(() => __props.variant));
|
|
12199
12280
|
function onItemMouseEnter(index) {
|
|
12200
12281
|
if (legendContext) legendContext.hoveredIndex.value = index;
|
|
12201
12282
|
}
|
|
@@ -12203,9 +12284,9 @@ var FluxStatisticsLegend_default = /* @__PURE__ */ defineComponent({
|
|
|
12203
12284
|
if (legendContext) legendContext.hoveredIndex.value = null;
|
|
12204
12285
|
}
|
|
12205
12286
|
return (_ctx, _cache) => {
|
|
12206
|
-
return openBlock(), createElementBlock("div", { class: normalizeClass(
|
|
12287
|
+
return openBlock(), createElementBlock("div", { class: normalizeClass(containerClass.value) }, [hasSlot.value ? renderSlot(_ctx.$slots, "default", { key: 0 }) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(autoItems.value, (item, index) => {
|
|
12207
12288
|
return openBlock(), createBlock(FluxStatisticsLegendItem_default, {
|
|
12208
|
-
key: item.label
|
|
12289
|
+
key: `${index}-${item.label}`,
|
|
12209
12290
|
color: item.color,
|
|
12210
12291
|
icon: item.icon,
|
|
12211
12292
|
"is-hovered": unref(legendContext)?.hoveredIndex.value === index,
|
|
@@ -12766,6 +12847,6 @@ var CHART_COLORFUL_COLORS = [
|
|
|
12766
12847
|
xr
|
|
12767
12848
|
];
|
|
12768
12849
|
//#endregion
|
|
12769
|
-
export { CHART_COLORFUL_COLORS, CHART_COLORS, FluxStatisticsAreaChart_default as FluxStatisticsAreaChart, FluxStatisticsBarChart_default as FluxStatisticsBarChart, FluxStatisticsBase_default as FluxStatisticsBase, FluxStatisticsBoxPlotChart_default as FluxStatisticsBoxPlotChart, FluxStatisticsBubbleChart_default as FluxStatisticsBubbleChart, FluxStatisticsCandlestickChart_default as FluxStatisticsCandlestickChart, FluxStatisticsChange_default as FluxStatisticsChange, FluxStatisticsChart_default as FluxStatisticsChart, FluxStatisticsChartLegendInjectionKey, FluxStatisticsChartPane_default as FluxStatisticsChartPane, FluxStatisticsComparison_default as FluxStatisticsComparison, FluxStatisticsDetailsTable_default as FluxStatisticsDetailsTable, FluxStatisticsDetailsTableRow_default as FluxStatisticsDetailsTableRow, FluxStatisticsDonutChart_default as FluxStatisticsDonutChart, FluxStatisticsEmpty_default as FluxStatisticsEmpty, FluxStatisticsGrid_default as FluxStatisticsGrid, FluxStatisticsHeatmapChart_default as FluxStatisticsHeatmapChart, FluxStatisticsKpi_default as FluxStatisticsKpi, FluxStatisticsLegend_default as FluxStatisticsLegend, FluxStatisticsLegendItem_default as FluxStatisticsLegendItem, FluxStatisticsLegendScope_default as FluxStatisticsLegendScope, FluxStatisticsLineChart_default as FluxStatisticsLineChart, FluxStatisticsMeter_default as FluxStatisticsMeter, FluxStatisticsMetric_default as FluxStatisticsMetric, FluxStatisticsMixedChart_default as FluxStatisticsMixedChart, FluxStatisticsPercentageBar_default as FluxStatisticsPercentageBar, FluxStatisticsPieChart_default as FluxStatisticsPieChart, FluxStatisticsPolarAreaChart_default as FluxStatisticsPolarAreaChart, FluxStatisticsRadarChart_default as FluxStatisticsRadarChart, FluxStatisticsRadialBar_default as FluxStatisticsRadialBar, FluxStatisticsScatterChart_default as FluxStatisticsScatterChart, FluxStatisticsSparkline_default as FluxStatisticsSparkline, FluxStatisticsTreemapChart_default as FluxStatisticsTreemapChart, createChartLegendContext, useChartBaseSetup, useChartHoverSync, useChartSeriesSetup, useChartSlicesSetup, useECharts };
|
|
12850
|
+
export { CHART_COLORFUL_COLORS, CHART_COLORS, FluxStatisticsAreaChart_default as FluxStatisticsAreaChart, FluxStatisticsBarChart_default as FluxStatisticsBarChart, FluxStatisticsBase_default as FluxStatisticsBase, FluxStatisticsBoxPlotChart_default as FluxStatisticsBoxPlotChart, FluxStatisticsBubbleChart_default as FluxStatisticsBubbleChart, FluxStatisticsCandlestickChart_default as FluxStatisticsCandlestickChart, FluxStatisticsChange_default as FluxStatisticsChange, FluxStatisticsChart_default as FluxStatisticsChart, FluxStatisticsChartLegendInjectionKey, FluxStatisticsChartPane_default as FluxStatisticsChartPane, FluxStatisticsComparison_default as FluxStatisticsComparison, FluxStatisticsDetailsTable_default as FluxStatisticsDetailsTable, FluxStatisticsDetailsTableRow_default as FluxStatisticsDetailsTableRow, FluxStatisticsDonutChart_default as FluxStatisticsDonutChart, FluxStatisticsEmpty_default as FluxStatisticsEmpty, FluxStatisticsGrid_default as FluxStatisticsGrid, FluxStatisticsHeatmapChart_default as FluxStatisticsHeatmapChart, FluxStatisticsKpi_default as FluxStatisticsKpi, FluxStatisticsLegend_default as FluxStatisticsLegend, FluxStatisticsLegendItem_default as FluxStatisticsLegendItem, FluxStatisticsLegendScope_default as FluxStatisticsLegendScope, FluxStatisticsLegendVariantInjectionKey, FluxStatisticsLineChart_default as FluxStatisticsLineChart, FluxStatisticsMeter_default as FluxStatisticsMeter, FluxStatisticsMetric_default as FluxStatisticsMetric, FluxStatisticsMixedChart_default as FluxStatisticsMixedChart, FluxStatisticsPercentageBar_default as FluxStatisticsPercentageBar, FluxStatisticsPieChart_default as FluxStatisticsPieChart, FluxStatisticsPolarAreaChart_default as FluxStatisticsPolarAreaChart, FluxStatisticsRadarChart_default as FluxStatisticsRadarChart, FluxStatisticsRadialBar_default as FluxStatisticsRadialBar, FluxStatisticsScatterChart_default as FluxStatisticsScatterChart, FluxStatisticsSparkline_default as FluxStatisticsSparkline, FluxStatisticsTreemapChart_default as FluxStatisticsTreemapChart, createChartLegendContext, useChartBaseSetup, useChartHoverSync, useChartSeriesSetup, useChartSlicesSetup, useECharts };
|
|
12770
12851
|
|
|
12771
12852
|
//# sourceMappingURL=index.js.map
|