@flux-ui/statistics 3.2.0 → 3.2.2
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 +29 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -5
package/dist/index.js
CHANGED
|
@@ -2,7 +2,11 @@ import { Fragment, computed, createBlock, createCommentVNode, createElementBlock
|
|
|
2
2
|
import { merge } from "lodash-es";
|
|
3
3
|
import { useI18n } from "vue-i18n";
|
|
4
4
|
import { FluxIcon, FluxPane, FluxToolbar, FluxTooltip, iconRegistry } from "@flux-ui/components";
|
|
5
|
-
import { init } from "echarts/core";
|
|
5
|
+
import { init, use } from "echarts/core";
|
|
6
|
+
import { BarChart, BoxplotChart, CandlestickChart, GaugeChart, HeatmapChart, LineChart, PieChart, RadarChart, ScatterChart, TreemapChart } from "echarts/charts";
|
|
7
|
+
import { AxisPointerComponent, GridComponent, LegendComponent, RadarComponent, TitleComponent, TooltipComponent, VisualMapComponent } from "echarts/components";
|
|
8
|
+
import { LabelLayout, LegacyGridContainLabel } from "echarts/features";
|
|
9
|
+
import { CanvasRenderer } from "echarts/renderers";
|
|
6
10
|
//#region ../../node_modules/.bun/luxon@3.7.2/node_modules/luxon/build/es6/luxon.mjs
|
|
7
11
|
/**
|
|
8
12
|
* @private
|
|
@@ -11570,6 +11574,30 @@ function useChartSlicesSetup(slicesGetter) {
|
|
|
11570
11574
|
};
|
|
11571
11575
|
}
|
|
11572
11576
|
//#endregion
|
|
11577
|
+
//#region src/echarts.ts
|
|
11578
|
+
use([
|
|
11579
|
+
BarChart,
|
|
11580
|
+
BoxplotChart,
|
|
11581
|
+
CandlestickChart,
|
|
11582
|
+
GaugeChart,
|
|
11583
|
+
HeatmapChart,
|
|
11584
|
+
LineChart,
|
|
11585
|
+
PieChart,
|
|
11586
|
+
RadarChart,
|
|
11587
|
+
ScatterChart,
|
|
11588
|
+
TreemapChart,
|
|
11589
|
+
AxisPointerComponent,
|
|
11590
|
+
GridComponent,
|
|
11591
|
+
LegendComponent,
|
|
11592
|
+
RadarComponent,
|
|
11593
|
+
TitleComponent,
|
|
11594
|
+
TooltipComponent,
|
|
11595
|
+
VisualMapComponent,
|
|
11596
|
+
LabelLayout,
|
|
11597
|
+
LegacyGridContainLabel,
|
|
11598
|
+
CanvasRenderer
|
|
11599
|
+
]);
|
|
11600
|
+
//#endregion
|
|
11573
11601
|
//#region src/composable/useECharts.ts
|
|
11574
11602
|
function useECharts(target, options) {
|
|
11575
11603
|
const chartInstance = ref(null);
|