2019-07-22 18:50:30 +08:00
|
|
|
# 2.3.3-alpha (2019-07-22)
|
|
|
|
|
|
|
|
### Bug Fixes
|
|
|
|
|
2019-07-22 18:58:05 +08:00
|
|
|
- **waterPondLevel:** Potential namespace conflict.
|
|
|
|
- **digitalFlop:** Potential namespace conflict.
|
2019-07-22 18:50:30 +08:00
|
|
|
|
2019-07-05 13:51:38 +08:00
|
|
|
# 2.3.2-alpha (2019-07-05)
|
|
|
|
|
|
|
|
### Perfect
|
|
|
|
|
|
|
|
- **decoration:** Explicitly set the SVG width and height to enhance stability.
|
2019-07-05 16:17:33 +08:00
|
|
|
- **Introduced on demand**
|
|
|
|
|
|
|
|
```js
|
2019-07-05 16:23:58 +08:00
|
|
|
import { borderBox1 } from '@jiaminghi/data-view'
|
2019-07-05 16:17:33 +08:00
|
|
|
|
|
|
|
Vue.use(borderBox1)
|
|
|
|
```
|
2019-07-05 13:51:38 +08:00
|
|
|
|
2019-07-04 17:12:10 +08:00
|
|
|
# 2.3.1-alpha (2019-07-04)
|
|
|
|
|
|
|
|
### Perfect
|
|
|
|
|
|
|
|
- **charts:** Enhanced style compatibility.
|
|
|
|
- **scrollBoard:** Enhanced style compatibility.
|
|
|
|
- **fullScreenContainer:** Fix potential rendering exceptions.
|
|
|
|
- **mixin:** Strengthen `autoResize` stability.
|
|
|
|
|
2019-07-04 10:35:52 +08:00
|
|
|
# 2.3.0-alpha (2019-07-04)
|
|
|
|
|
|
|
|
### Directory Structure Change
|
|
|
|
|
|
|
|
* **before**
|
|
|
|
|
|
|
|
```
|
|
|
|
.
|
|
|
|
├── components
|
|
|
|
│ ├── borderBox1
|
|
|
|
│ │ └── index.vue
|
|
|
|
│ ├── borderBox2
|
|
|
|
│ │ └── index.vue
|
|
|
|
│ ├── etc.
|
|
|
|
│ └── index.js
|
|
|
|
├── mixins
|
|
|
|
│ └── autoResize.js
|
|
|
|
├── util
|
|
|
|
│ └── index.js
|
|
|
|
│
|
|
|
|
├── index.js
|
|
|
|
│
|
|
|
|
├── package.json // main: 'index.js'
|
|
|
|
└── etc.
|
|
|
|
```
|
|
|
|
|
|
|
|
* **after**
|
|
|
|
|
|
|
|
```
|
|
|
|
.
|
|
|
|
├── lib // After compilation
|
|
|
|
│ ├── components
|
|
|
|
│ │ ├── borderBox1
|
|
|
|
│ │ | ├── src
|
|
|
|
│ │ | | ├── main.vue
|
|
|
|
│ │ | | └── main.css
|
|
|
|
│ │ | └── index.js
|
|
|
|
│ │ ├── etc.
|
|
|
|
│ │ └── index.js
|
|
|
|
│ ├── mixin
|
|
|
|
│ │ └── autoResize.js
|
|
|
|
│ ├── util
|
|
|
|
│ │ └── index.js
|
|
|
|
│ └── index.js
|
|
|
|
│
|
|
|
|
├── publish // For pre-publish process
|
|
|
|
│
|
|
|
|
├── src // For development environments
|
|
|
|
│ ├── components
|
|
|
|
│ │ ├── borderBox1
|
|
|
|
│ │ | ├── src
|
|
|
|
│ │ | | └── main.vue
|
|
|
|
│ │ | └── index.js
|
|
|
|
│ │ ├── etc.
|
|
|
|
│ │ └── index.js
|
|
|
|
│ ├── mixin
|
|
|
|
│ │ └── autoResize.js
|
|
|
|
│ ├── util
|
|
|
|
│ │ └── index.js
|
|
|
|
│ └── index.js
|
|
|
|
│
|
|
|
|
├── package.json // main: '/lib/index.js'
|
|
|
|
├── publish.js
|
|
|
|
└── etc.
|
|
|
|
```
|
|
|
|
|
2019-07-05 16:17:33 +08:00
|
|
|
- **Introduced on demand**
|
2019-07-04 10:35:52 +08:00
|
|
|
|
|
|
|
```js
|
|
|
|
import borderBox1 from '@jiaminghi/data-view/lib/components/borderBox1'
|
|
|
|
|
|
|
|
Vue.use(borderBox1)
|
|
|
|
```
|
|
|
|
|
2019-06-29 19:52:57 +08:00
|
|
|
# 2.2.0-alpha (2019-06-29)
|
|
|
|
|
|
|
|
### New
|
|
|
|
|
|
|
|
- **borderBox**
|
|
|
|
- **decoration**
|
|
|
|
|
2019-06-28 20:15:09 +08:00
|
|
|
# 2.1.1-alpha (2019-06-28)
|
|
|
|
|
|
|
|
### Bug Fixes
|
|
|
|
|
|
|
|
- **autoResize:** Exception caused by `autoResize` mixin.
|
|
|
|
- **charts:** `Legend` is blocked by slot and can't click.
|
|
|
|
|
2019-06-27 19:29:24 +08:00
|
|
|
# 2.1.0-alpha (2019-06-27)
|
|
|
|
|
|
|
|
### New
|
|
|
|
|
|
|
|
- **conicalColumnChart**
|
|
|
|
- **scrollRankingBoard**
|
|
|
|
|
2019-06-26 15:26:42 +08:00
|
|
|
# 2.0.0-alpha (2019-06-26)
|
2019-06-25 19:57:04 +08:00
|
|
|
|
|
|
|
### Perfect
|
|
|
|
|
|
|
|
- **SVG:** Refactoring **borderbox** and **decoration** components with SVG (Volume dropped to 6%).
|
|
|
|
- **charts:** New charting component that supports **animation**.
|
|
|
|
- **compatibility:** Better data compatibility.
|
|
|
|
|
|
|
|
### New
|
|
|
|
|
|
|
|
- **digitalFlop**
|
|
|
|
- **flylineChart**
|
|
|
|
- **borderBox**
|
|
|
|
- **decoration**
|
|
|
|
|
|
|
|
### Components
|
|
|
|
|
|
|
|
- **prefix:** Components add **dv** prefix to prevent conflicts.
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!-- v 1.x.x -->
|
|
|
|
<decoration-1 />
|
|
|
|
|
|
|
|
<!-- v 2.x.x -->
|
|
|
|
<dv-decoration-1 />
|
|
|
|
```
|