@xq-labs/data-ui-v2 0.2.0 → 0.2.1

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.
@@ -119,9 +119,9 @@ import '@xq-labs/data-ui-v2/theme-chalk/index.css'
119
119
  | Prop | 类型 | 默认值 | 说明 |
120
120
  | --- | --- | --- | --- |
121
121
  | `option` | `Object` | `{}` | 已构建完成的 ECharts option |
122
- | `loading` | `Boolean` | `false` | 是否显示 loading |
122
+ | `loading` | `Boolean` | `false` | 是否显示统一遮罩式 loading(非 ECharts 原生 loading) |
123
123
  | `empty` | `Boolean` | `false` | 是否显示空态 |
124
- | `emptyText` | `String` | `'暂无数据'` | 空态文案 |
124
+ | `stateConfig` | `Object` | `{}` | 统一状态配置,收拢空态文案、空态图和 loading 文案 |
125
125
  | `height` | `String \| Number` | `320` | 容器高度,数字按 px 处理 |
126
126
 
127
127
  ### 6.3 Events
@@ -133,7 +133,7 @@ import '@xq-labs/data-ui-v2/theme-chalk/index.css'
133
133
 
134
134
  ### 6.4 常见场景
135
135
 
136
- 1. 你已经有现成的 ECharts option,只需要统一 loading、空态和实例生命周期。
136
+ 1. 你已经有现成的 ECharts option,只需要统一遮罩式 loading、空态和实例生命周期。
137
137
  2. 你在业务项目里做一个内部定制图表,但仍希望复用统一底层壳。
138
138
 
139
139
  示例:
@@ -143,11 +143,42 @@ import '@xq-labs/data-ui-v2/theme-chalk/index.css'
143
143
  :option="option"
144
144
  :loading="loading"
145
145
  :empty="!option.series || option.series.length === 0"
146
- empty-text="暂无可展示数据"
146
+ :state-config="{
147
+ empty: {
148
+ text: '暂无可展示数据',
149
+ image: 'https://example.com/chart-empty.png'
150
+ },
151
+ loading: {
152
+ text: '图表加载中...'
153
+ }
154
+ }"
147
155
  :height="360"
148
156
  />
149
157
  ```
150
158
 
159
+ ### 6.5 `stateConfig` 结构
160
+
161
+ 推荐结构:
162
+
163
+ ```js
164
+ const stateConfig = {
165
+ empty: {
166
+ text: '暂无数据',
167
+ image: 'https://example.com/empty.png'
168
+ },
169
+ loading: {
170
+ text: '加载中...'
171
+ }
172
+ }
173
+ ```
174
+
175
+ 默认与优先级:
176
+
177
+ 1. `BaseChart` 优先读取 `stateConfig.empty.text`。
178
+ 2. 未传空态文案时回退到默认值 `暂无数据`。
179
+ 3. 空态图未传时,`BaseEmpty` 会展示组件库内置默认图。
180
+ 4. `loading` 布尔值仍只负责“是否显示加载态”,不放进 `stateConfig`。
181
+
151
182
  ---
152
183
 
153
184
  ## 7. `BarLineChart` API
@@ -169,7 +200,8 @@ import '@xq-labs/data-ui-v2/theme-chalk/index.css'
169
200
  | `barWidth` | `Number` | `18` | 柱体宽度 |
170
201
  | `barGap` | `Number \| String` | `8` | 柱间距 |
171
202
  | `customOption` | `Object` | `{}` | 对 ECharts option 的补充覆盖 |
172
- | `loading` | `Boolean` | `false` | 是否显示 loading |
203
+ | `loading` | `Boolean` | `false` | 是否显示统一遮罩式 loading(非 ECharts 原生 loading) |
204
+ | `stateConfig` | `Object` | `{}` | 统一状态配置,原样透传给 `BaseChart` |
173
205
  | `height` | `String \| Number` | `320` | 容器高度 |
174
206
 
175
207
  ### 7.3 BarLineChart 数据格式
@@ -336,7 +368,8 @@ colors: ['#A8BEFA', '#6B98F8', '#3EE8FE']
336
368
  | `labelOptions` | `Object` | `{}` | 标签与引导线配置 |
337
369
  | `hideZeroValueSlices` | `Boolean` | `true` | 3D 下是否过滤 0 值扇区 |
338
370
  | `customOption` | `Object` | `{}` | 对 ECharts option 的补充覆盖 |
339
- | `loading` | `Boolean` | `false` | 是否显示 loading |
371
+ | `loading` | `Boolean` | `false` | 是否显示统一遮罩式 loading(非 ECharts 原生 loading) |
372
+ | `stateConfig` | `Object` | `{}` | 统一状态配置;3D 运行时失败时内部错误文案优先级更高 |
340
373
  | `height` | `String \| Number` | `320` | 容器高度 |
341
374
 
342
375
  ### 8.3 PieChart 数据格式
@@ -496,6 +529,7 @@ const labelOptions = {
496
529
  - `dimension="2d"` 时,不需要安装 `echarts-gl`。
497
530
  - `dimension="3d"` 时,需要安装 `echarts-gl`。
498
531
  - 3D 模式会在运行时按需加载 `echarts-gl`。
532
+ - 若 3D 运行时加载失败,组件会优先显示内部错误文案,但仍保留 `stateConfig.empty.image` 与 `stateConfig.loading.text`。
499
533
 
500
534
  ### 8.8 常见场景
501
535
 
@@ -532,6 +566,7 @@ const labelOptions = {
532
566
  series,
533
567
  variant: 'cylinder',
534
568
  preset: 'compare',
569
+ stateConfig,
535
570
  customOption
536
571
  }"
537
572
  />
@@ -550,6 +585,7 @@ const labelOptions = {
550
585
  maxHeight: 80,
551
586
  showLabelLine: true,
552
587
  labelOptions,
588
+ stateConfig,
553
589
  customOption
554
590
  }"
555
591
  />
@@ -27,7 +27,8 @@ Playground 中 `BarLineChart` 按分组路由组织:
27
27
  preset,
28
28
  barWidth,
29
29
  barGap,
30
- customOption
30
+ customOption,
31
+ stateConfig
31
32
  }"
32
33
  />
33
34
  ```
@@ -41,17 +42,33 @@ Playground 中 `BarLineChart` 按分组路由组织:
41
42
  - `preset`:展示预设。
42
43
  - `barWidth`、`barGap`:柱体宽度与间距。
43
44
  - `customOption`:ECharts 展示细节覆盖。
45
+ - `stateConfig`:统一收拢空态文案、空态图和 loading 文案。
46
+
47
+ 推荐结构:
48
+
49
+ ```js
50
+ const stateConfig = {
51
+ empty: {
52
+ text: '暂无柱线图数据',
53
+ image: 'https://example.com/bar-empty.png'
54
+ },
55
+ loading: {
56
+ text: '柱线图加载中...'
57
+ }
58
+ }
59
+ ```
44
60
 
45
61
  ## 3. 如何自定义(推荐顺序)
46
62
 
47
63
  1. **优先 `series` 表达业务语义**:先确定字段、柱线类型、双轴和堆叠关系。
48
64
  2. **用 `series.colors` 控制系列配色**:把业务色板放在系列层。
49
- 3. **`customOption` 补充细节**:用于 tooltip、legend、grid、坐标轴样式等展示项。
65
+ 3. **`stateConfig` 收拢状态文案**:空态图、空态文案、loading 文案统一从这里传。
66
+ 4. **`customOption` 补充细节**:用于 tooltip、legend、grid、坐标轴样式等展示项。
50
67
 
51
68
  不建议用 `customOption` 直接整体替换关键业务结构。
52
69
 
53
70
  ## 4. 可执行验收要点
54
71
 
55
72
  - 页面分组名称与路由一致:基础用法、圆柱样式、方柱样式、进阶配置、customOption 与自定义、实验室。
56
- - 文档示例包含 `series.colors` 与 `customOption`。
57
- - 文档明确实验室边界与推荐自定义顺序。
73
+ - 文档示例包含 `series.colors`、`stateConfig` 与 `customOption`。
74
+ - 文档明确实验室边界与推荐自定义顺序。
@@ -29,7 +29,8 @@ Playground 中 `PieChart` 采用分组路由组织,按能力查阅:
29
29
  maxHeight,
30
30
  hideZeroValueSlices,
31
31
  labelOptions,
32
- customOption
32
+ customOption,
33
+ stateConfig
33
34
  }"
34
35
  />
35
36
  ```
@@ -44,6 +45,21 @@ Playground 中 `PieChart` 采用分组路由组织,按能力查阅:
44
45
  - `hideZeroValueSlices`:3D 下是否隐藏 0 值扇区。
45
46
  - `labelOptions`:标签与引导线细节(格式、线长、颜色等)。
46
47
  - `customOption`:ECharts 细节覆盖(标题、提示、图例等)。
48
+ - `stateConfig`:统一收拢空态文案、空态图和 loading 文案。
49
+
50
+ 推荐结构:
51
+
52
+ ```js
53
+ const stateConfig = {
54
+ empty: {
55
+ text: '暂无占比数据',
56
+ image: 'https://example.com/pie-empty.png'
57
+ },
58
+ loading: {
59
+ text: '饼图加载中...'
60
+ }
61
+ }
62
+ ```
47
63
 
48
64
  ## 2.1 3D 依赖说明
49
65
 
@@ -61,12 +77,23 @@ npm install echarts-gl
61
77
 
62
78
  1. **优先公开 props**:先用 `variant`、`dimension`、`preset`、高度参数表达业务语义。
63
79
  2. **其次 `labelOptions`**:标签文案、引导线样式优先在这里完成。
64
- 3. **最后 `customOption`**:仅用于补充 ECharts 展示细节。
80
+ 3. **状态文案统一交给 `stateConfig`**:空态图、空态文案、loading 文案不要分散到多个字段。
81
+ 4. **最后 `customOption`**:仅用于补充 ECharts 展示细节。
65
82
 
66
83
  不建议业务侧直接拼接或重写内部 `series`,避免覆盖组件内置能力与升级兼容性。
67
84
 
85
+ ## 3.1 3D 运行时失败的空态优先级
86
+
87
+ 当 `dimension="3d"` 且业务未安装 `echarts-gl` 时:
88
+
89
+ 1. `PieChart` 会优先显示组件内部错误文案。
90
+ 2. `stateConfig.empty.image` 仍然生效。
91
+ 3. `stateConfig.loading.text` 仍然生效。
92
+
93
+ 也就是说,业务可以继续自定义空态图,但不能覆盖这类运行时错误提示。
94
+
68
95
  ## 4. 可执行验收要点
69
96
 
70
97
  - 页面分组名称与路由一致:基础用法、2D 形态、3D 能力、标签与引导线、customOption 与自定义、实验室。
71
- - 文档示例包含 `hideZeroValueSlices` 与 `customOption`。
72
- - 文档明确实验室边界与推荐自定义顺序。
98
+ - 文档示例包含 `hideZeroValueSlices`、`stateConfig` 与 `customOption`。
99
+ - 文档明确实验室边界与推荐自定义顺序。
@@ -1,6 +1,6 @@
1
1
  import '../../theme-chalk/index.css';
2
- import { B as BarLineChart } from '../index-6128787e.js';
3
- import { w as withInstall } from '../with-install-befebea5.js';
2
+ import { B as BarLineChart } from '../index-017ccf86.js';
3
+ import { w as withInstall } from '../with-install-e405b463.js';
4
4
  import 'echarts/core';
5
5
  import 'echarts/charts';
6
6
  import 'echarts/components';
@@ -1,5 +1,5 @@
1
1
  import '../../theme-chalk/index.css';
2
- import { w as withInstall, B as BaseChart } from '../with-install-befebea5.js';
2
+ import { w as withInstall, B as BaseChart } from '../with-install-e405b463.js';
3
3
  import 'echarts/core';
4
4
 
5
5
  var BaseChartComponent = withInstall(BaseChart);
@@ -3,7 +3,7 @@ import { graphic } from 'echarts/core';
3
3
  import { BarChart, LineChart, CustomChart } from 'echarts/charts';
4
4
  import { TooltipComponent, LegendComponent, GridComponent, TitleComponent } from 'echarts/components';
5
5
  import { CanvasRenderer } from 'echarts/renderers';
6
- import { B as BaseChart, s as styleInject, n as normalizeComponent } from './with-install-befebea5.js';
6
+ import { B as BaseChart, s as styleInject, n as normalizeComponent } from './with-install-e405b463.js';
7
7
  import { _ as _objectSpread2, D as DEFAULT_COLORS, a as _toConsumableArray, m as mergeChartOption, i as isEmptyData } from './colors-ca059479.js';
8
8
 
9
9
  var DEFAULT_SERIES = {
@@ -1153,6 +1153,7 @@ function buildBarLineOption() {
1153
1153
  //
1154
1154
  //
1155
1155
  //
1156
+ //
1156
1157
 
1157
1158
 
1158
1159
  /**
@@ -1249,12 +1250,22 @@ var script = {
1249
1250
  },
1250
1251
  /**
1251
1252
  * 图表 loading 状态。
1252
- * 由 BaseChart 统一接管具体的 loading UI。
1253
+ * 由 BaseChart 统一接管组件层遮罩式 loading UI。
1253
1254
  */
1254
1255
  loading: {
1255
1256
  type: Boolean,
1256
1257
  "default": false
1257
1258
  },
1259
+ /**
1260
+ * 统一状态展示配置。
1261
+ * 组件层只负责原样透传给 BaseChart,不参与文案计算。
1262
+ */
1263
+ stateConfig: {
1264
+ type: Object,
1265
+ "default": function _default() {
1266
+ return {};
1267
+ }
1268
+ },
1258
1269
  /**
1259
1270
  * 图表容器高度。
1260
1271
  * 支持数字像素值或原样透传的 CSS 高度字符串。
@@ -1291,7 +1302,7 @@ var script = {
1291
1302
  }
1292
1303
  };
1293
1304
 
1294
- var css_248z = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
1305
+ var css_248z = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
1295
1306
  styleInject(css_248z);
1296
1307
 
1297
1308
  /* script */
@@ -1306,6 +1317,7 @@ var __vue_render__ = function __vue_render__() {
1306
1317
  option: _vm.chartOption,
1307
1318
  loading: _vm.loading,
1308
1319
  empty: _vm.isEmpty,
1320
+ "state-config": _vm.stateConfig,
1309
1321
  height: _vm.height
1310
1322
  },
1311
1323
  on: {
@@ -1324,7 +1336,7 @@ __vue_render__._withStripped = true;
1324
1336
  /* style */
1325
1337
  var __vue_inject_styles__ = undefined;
1326
1338
  /* scoped */
1327
- var __vue_scope_id__ = "data-v-e33b855e";
1339
+ var __vue_scope_id__ = "data-v-1ad2414e";
1328
1340
  /* module identifier */
1329
1341
  var __vue_module_identifier__ = undefined;
1330
1342
  /* functional template */
@@ -3,7 +3,7 @@ import * as echarts from 'echarts/core';
3
3
  import { PieChart as PieChart$1 } from 'echarts/charts';
4
4
  import { TooltipComponent, LegendComponent, GridComponent, TitleComponent, GraphicComponent } from 'echarts/components';
5
5
  import { CanvasRenderer } from 'echarts/renderers';
6
- import { B as BaseChart, s as styleInject, n as normalizeComponent } from './with-install-befebea5.js';
6
+ import { B as BaseChart, s as styleInject, n as normalizeComponent } from './with-install-e405b463.js';
7
7
 
8
8
  /**
9
9
  * 将输入值转换为安全数值。
@@ -1096,12 +1096,22 @@ var script = {
1096
1096
  },
1097
1097
  /**
1098
1098
  * 图表 loading 状态。
1099
- * 由底层 BaseChart 统一负责 showLoading / hideLoading
1099
+ * 由底层 BaseChart 统一负责组件层遮罩式 loading UI
1100
1100
  */
1101
1101
  loading: {
1102
1102
  type: Boolean,
1103
1103
  "default": false
1104
1104
  },
1105
+ /**
1106
+ * 统一状态展示配置。
1107
+ * 负责收拢空态文案、空态图片与 loading 文案。
1108
+ */
1109
+ stateConfig: {
1110
+ type: Object,
1111
+ "default": function _default() {
1112
+ return {};
1113
+ }
1114
+ },
1105
1115
  /**
1106
1116
  * 图表容器高度。
1107
1117
  * 支持数字(按 px 处理)或原样透传的字符串高度值。
@@ -1156,14 +1166,25 @@ var script = {
1156
1166
  return this.isEmpty || this.is3D && this.echartsGlStatus === 'failed';
1157
1167
  },
1158
1168
  /**
1159
- * 统一传给 BaseChart 的空态文案。
1160
- * 3D 缺少运行时时给出可执行的安装提示,普通空态仍保留默认文案。
1169
+ * 统一归一化传给 BaseChart 的状态配置。
1170
+ * 3D 运行时失败时,内部错误文案优先级最高,但仍保留业务自定义图片和 loading 文案。
1161
1171
  */
1162
- chartEmptyText: function chartEmptyText() {
1172
+ resolvedStateConfig: function resolvedStateConfig() {
1173
+ var stateConfig = this.stateConfig || {};
1174
+ var emptyConfig = stateConfig.empty || {};
1175
+ var loadingConfig = stateConfig.loading || {};
1163
1176
  if (this.is3D && this.echartsGlStatus === 'failed') {
1164
- return this.echartsGlErrorMessage || '使用 3D 饼图需要安装 echarts-gl';
1177
+ return {
1178
+ empty: _objectSpread2(_objectSpread2({}, emptyConfig), {}, {
1179
+ text: this.echartsGlErrorMessage || '使用 3D 饼图需要安装 echarts-gl'
1180
+ }),
1181
+ loading: _objectSpread2({}, loadingConfig)
1182
+ };
1165
1183
  }
1166
- return '暂无数据';
1184
+ return {
1185
+ empty: _objectSpread2({}, emptyConfig),
1186
+ loading: _objectSpread2({}, loadingConfig)
1187
+ };
1167
1188
  },
1168
1189
  /**
1169
1190
  * 将组件公开 props 统一汇总后交给 builder。
@@ -1281,7 +1302,7 @@ var script = {
1281
1302
  }
1282
1303
  };
1283
1304
 
1284
- var css_248z = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
1305
+ var css_248z = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
1285
1306
  styleInject(css_248z);
1286
1307
 
1287
1308
  /* script */
@@ -1296,7 +1317,7 @@ var __vue_render__ = function __vue_render__() {
1296
1317
  option: _vm.chartOption,
1297
1318
  loading: _vm.chartLoading,
1298
1319
  empty: _vm.chartEmpty,
1299
- "empty-text": _vm.chartEmptyText,
1320
+ "state-config": _vm.resolvedStateConfig,
1300
1321
  height: _vm.height
1301
1322
  },
1302
1323
  on: {
@@ -1313,7 +1334,7 @@ __vue_render__._withStripped = true;
1313
1334
  /* style */
1314
1335
  var __vue_inject_styles__ = undefined;
1315
1336
  /* scoped */
1316
- var __vue_scope_id__ = "data-v-815905b6";
1337
+ var __vue_scope_id__ = "data-v-19bfc774";
1317
1338
  /* module identifier */
1318
1339
  var __vue_module_identifier__ = undefined;
1319
1340
  /* functional template */
package/es/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import '../theme-chalk/index.css';
2
- import { w as withInstall, B as BaseChart } from './with-install-befebea5.js';
3
- import { B as BarLineChart } from './index-6128787e.js';
4
- import { P as PieChart } from './index-6af2ada7.js';
2
+ import { w as withInstall, B as BaseChart } from './with-install-e405b463.js';
3
+ import { B as BarLineChart } from './index-017ccf86.js';
4
+ import { P as PieChart } from './index-d151eeca.js';
5
5
  import 'echarts/core';
6
6
  import 'echarts/charts';
7
7
  import 'echarts/components';
@@ -1,6 +1,6 @@
1
1
  import '../../theme-chalk/index.css';
2
- import { P as PieChart } from '../index-6af2ada7.js';
3
- import { w as withInstall } from '../with-install-befebea5.js';
2
+ import { P as PieChart } from '../index-d151eeca.js';
3
+ import { w as withInstall } from '../with-install-e405b463.js';
4
4
  import '../colors-ca059479.js';
5
5
  import 'echarts/core';
6
6
  import 'echarts/charts';