- decoration12: New decoration(Radar scan).
- decoration add
dur
configuration. - activeRingChart add
digitalFlopUnit
configuration.
- borderBox: Canonical class name.
- autoResize(mixin): Add exception prompt.
- scrollRankingBoard: Add value formatter.
- scrollBoard: Optimize the update effect of updateRows.
- scrollBoard: Carousel is abnormal when carousel is page.
- scrollRankingBoard: Carousel is abnormal when carousel is page.
- scrollBoard: Reduce redundant node rendering.
- scrollRankingBoard: Reduce redundant node rendering.
- scrollBoard: Add api to update row data.
- scrollBoard: Optimize key value (#8).
- uuid: Optimization of
-
in uuid will cause abnormal svg animation (#108).
- scrollBoard: reset animationIndex when config upate.
- scrollRankingBoard: Calculation optimization of negative values (#101).
- digitalFlop: add number formatter.
- uuid: Use uuid to produce unique id.
- activeRingChart: add
showOriginValue
configuration. - capsuleChart: add
showValue
configuration.
- borderBox8: add
reverse
configuration.
- digitalFlop: Use
\n
to start a newline. - digitalFlop:
rowGap
configuration.
- capsuleChart: Calculate exception when min value is less 5 (#59).
- activeRingChart:
parseInt
precision lost.
- ativeRingChart: Add digitalFlopToFixed configuration.
- flylineChartEnhanced: Exception when relative is false.
- flylineChartEnhanced: Enhanced flylineChart (#12).
- scrollRankingBoard: Configurable auto-sequencing (#35).
- scrollRankingBoard: Render name using
v-html
(#36).
- borderBox & decoration: Configurable colors.
<!-- Example --> <dv-border-box-1 :color="['red', 'green']" /> <dv-decoration-1 :color="['red', 'green']" />
- scrollBoard: Configurable index header (#33).
- borderBox11
- borderBox12
- borderBox13
- decoration11
- scrollBoard: After updating props, the carousel speed is abnormal (#25),(#20).
- scrollRankingBorad: After updating props, the carousel speed is abnormal(#25),(#20).
- charts: Optimize memory leaks.
- digitalFlop: Optimize memory leaks.
- activeRingChart: Calculation exception due to data value being 0 (#17).
- scrollBoard: Header column width is abnormal when row data is empty.
- scrollRankingBoard: Add a unit configuration item.
- capsuleChart: Class name compatibility optimization.
- capsuleChart: Adaptive display unit.
- borderBox10
- capsuleChart
- percentPond: Compatibility enhancement.
- percentPond: Style compatibility and gradient exceptions.
- borderBox1: Parent container setting
text-align: center
to cause display exception (#6).
- svg: Svg animation compatibility enhancement.
- activeRingChart: Color configuration does not take effect (#3).
- package.json: Import exception caused by incorrect entry path configuration.
- waterPondLevel: Potential namespace conflict.
- digitalFlop: Potential namespace conflict.
-
decoration: Explicitly set the SVG width and height to enhance stability.
-
Introduced on demand
import { borderBox1 } from '@jiaminghi/data-view' Vue.use(borderBox1)
- charts: Enhanced style compatibility.
- scrollBoard: Enhanced style compatibility.
- fullScreenContainer: Fix potential rendering exceptions.
- mixin: Strengthen
autoResize
stability.
-
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.
-
Introduced on demand
import borderBox1 from '@jiaminghi/data-view/lib/components/borderBox1' Vue.use(borderBox1)
- borderBox
- decoration
- autoResize: Exception caused by
autoResize
mixin. - charts:
Legend
is blocked by slot and can't click.
- conicalColumnChart
- scrollRankingBoard
- SVG: Refactoring borderbox and decoration components with SVG (Volume dropped to 6%).
- charts: New charting component that supports animation.
- compatibility: Better data compatibility.
- digitalFlop
- flylineChart
- borderBox
- decoration
- prefix: Components add dv prefix to prevent conflicts.
<!-- v 1.x.x -->
<decoration-1 />
<!-- v 2.x.x -->
<dv-decoration-1 />