File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 7.0.3
2
+
3
+ * Fixed type for ` autoresize ` (again).
4
+
1
5
## 7.0.2
2
6
3
- * Fixed style injection regression.
7
+ * Fixed style injection regression ( # 805 ) .
4
8
5
9
## 7.0.1
6
10
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
214
214
``` html
215
215
<script src =" https://cdn.jsdelivr.net/npm/vue@3.4.33" ></script >
216
216
<script src =" https://cdn.jsdelivr.net/npm/echarts@5.5.1" ></script >
217
- <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.2 " ></script >
217
+ <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.3 " ></script >
218
218
```
219
219
<!-- vue3Scripts:end -->
220
220
@@ -234,7 +234,7 @@ app.component('v-chart', VueECharts)
234
234
``` html
235
235
<script src =" https://cdn.jsdelivr.net/npm/vue@2.7.16" ></script >
236
236
<script src =" https://cdn.jsdelivr.net/npm/echarts@5.5.1" ></script >
237
- <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.2 " ></script >
237
+ <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.3 " ></script >
238
238
```
239
239
<!-- vue2Scripts:end -->
240
240
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ import "echarts";
214
214
``` html
215
215
<script src =" https://cdn.jsdelivr.net/npm/vue@3.4.33" ></script >
216
216
<script src =" https://cdn.jsdelivr.net/npm/echarts@5.5.1" ></script >
217
- <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.2 " ></script >
217
+ <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.3 " ></script >
218
218
```
219
219
<!-- vue3Scripts:end -->
220
220
@@ -234,7 +234,7 @@ app.component('v-chart', VueECharts)
234
234
``` html
235
235
<script src =" https://cdn.jsdelivr.net/npm/vue@2.7.16" ></script >
236
236
<script src =" https://cdn.jsdelivr.net/npm/echarts@5.5.1" ></script >
237
- <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.2 " ></script >
237
+ <script src =" https://cdn.jsdelivr.net/npm/vue-echarts@7.0.3 " ></script >
238
238
```
239
239
<!-- vue2Scripts:end -->
240
240
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-echarts" ,
3
- "version" : " 7.0.2 " ,
3
+ "version" : " 7.0.3 " ,
4
4
"description" : " Vue.js component for Apache ECharts™." ,
5
5
"license" : " MIT" ,
6
6
"repository" : " https://github.com/ecomfe/vue-echarts.git" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import type {
6
6
InitOptions ,
7
7
UpdateOptions ,
8
8
LoadingOptions ,
9
+ AutoResize ,
9
10
EChartsType ,
10
11
Emits ,
11
12
ThemeInjection ,
@@ -25,7 +26,7 @@ declare type ChartProps = {
25
26
updateOptions ?: UpdateOptions ;
26
27
loadingOptions ?: LoadingOptions ;
27
28
option ?: Option ;
28
- autoresize ?: boolean ;
29
+ autoresize ?: AutoResize ;
29
30
loading ?: boolean ;
30
31
group ?: string ;
31
32
manualUpdate ?: boolean ;
You can’t perform that action at this time.
0 commit comments