Skip to content

Commit 0470d69

Browse files
committed
fix: revert overflow hidden
1 parent 05111f5 commit 0470d69

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.3.1
2+
3+
* Revert the style change to prevent tooltips from being clipped.
4+
15
## 6.3.0
26

37
* Injected values can now be wrapped in an object so that they can be reactive in Vue 2.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
310310
```html
311311
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
312312
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
313-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0"></script>
313+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1"></script>
314314
```
315315
<!-- vue3Scripts:end -->
316316

@@ -330,7 +330,7 @@ app.component('v-chart', VueECharts)
330330
```html
331331
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
332332
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
333-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0"></script>
333+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1"></script>
334334
```
335335
<!-- vue2Scripts:end -->
336336

README.zh-Hans.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ export default {
309309
```html
310310
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
311311
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
312-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0"></script>
312+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1"></script>
313313
```
314314
<!-- vue3Scripts:end -->
315315

@@ -329,7 +329,7 @@ app.component('v-chart', VueECharts)
329329
```html
330330
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
331331
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
332-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0"></script>
332+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1"></script>
333333
```
334334
<!-- vue2Scripts:end -->
335335

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-echarts",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"description": "Vue.js component for Apache ECharts.",
55
"author": "GU Yiling <[email protected]>",
66
"scripts": {

src/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
x-vue-echarts{display:block;width:100%;height:100%;overflow:hidden}
1+
x-vue-echarts{display:block;width:100%;height:100%}

0 commit comments

Comments
 (0)