x-runtime-lib 0.6.6 → 0.6.8
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/echarts/index.d.ts +2 -2
- package/dist/{echarts-d1cinmqx.js → echarts-out7dvyk.js} +6733 -5902
- package/dist/index.js +408 -391
- package/package.json +1 -1
package/dist/echarts/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as echarts from 'echarts/core';
|
|
2
2
|
import type { ComposeOption } from 'echarts/core';
|
|
3
|
-
import type { TitleComponentOption, LegendComponentOption, TooltipComponentOption } from 'echarts/components';
|
|
3
|
+
import type { GridComponentOption, TitleComponentOption, LegendComponentOption, TooltipComponentOption } from 'echarts/components';
|
|
4
4
|
import type { GraphSeriesOption } from 'echarts/charts';
|
|
5
|
-
export type EChartsOption = ComposeOption<TitleComponentOption | LegendComponentOption | TooltipComponentOption | GraphSeriesOption>;
|
|
5
|
+
export type EChartsOption = ComposeOption<GridComponentOption | TitleComponentOption | LegendComponentOption | TooltipComponentOption | GraphSeriesOption>;
|
|
6
6
|
export default echarts;
|