@easyv/config 1.0.55 → 1.1.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.1.0](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-config/compare/v1.0.53...v1.1.0) (2022-04-27)
6
+
7
+
8
+ ### Features
9
+
10
+ * **animation.js:** 增加数据动画配置项 ([aae17b3](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-config/commit/aae17b34bf57b6cd4055ee622c6830dd8d2d1dab))
11
+ * **animation.js:** interval配置项可选 ([8d49a7a](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-config/commit/8d49a7a7cefde401eb2ccf23ef68e97105baf729))
12
+
5
13
  ### [1.0.53](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-config/compare/v1.0.52...v1.0.53) (2022-04-08)
6
14
 
7
15
  ### [1.0.52](https://gitlab.prod.dtstack.cn:10022/visdev/visApplication/easyv-config/compare/v1.0.51...v1.0.52) (2022-04-02)
package/lib/index.js CHANGED
@@ -79,6 +79,12 @@ Object.defineProperty(exports, "animation", {
79
79
  return _animation["default"];
80
80
  }
81
81
  });
82
+ Object.defineProperty(exports, "dataAnimation", {
83
+ enumerable: true,
84
+ get: function get() {
85
+ return _animation.dataAnimation;
86
+ }
87
+ });
82
88
  Object.defineProperty(exports, "animationOfPie", {
83
89
  enumerable: true,
84
90
  get: function get() {
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@easyv/config",
3
- "version": "1.0.55",
3
+ "version": "1.1.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "make": "babel src -d lib",
8
- "release": "standard-version",
9
- "publish": "npm run make && npm run release"
8
+ "release": "standard-version"
10
9
  },
11
10
  "keywords": [],
12
11
  "author": "",
@@ -29,4 +28,4 @@
29
28
  "commit": true
30
29
  }
31
30
  }
32
- }
31
+ }
package/src/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import show, {showRule} from './show';
1
+ import show, { showRule } from './show';
2
2
  import font from './font';
3
3
  import translate from './translate';
4
4
  import gridLine from './gridLine';
@@ -8,19 +8,42 @@ import extent from './extent';
8
8
  import unit from './unit';
9
9
  import margin from './margin';
10
10
  import multiColor from './multiColor';
11
- import animation, { animationOfPie, animationOfCarousel } from './animation';
11
+ import animation, {
12
+ dataAnimation,
13
+ animationOfPie,
14
+ animationOfCarousel,
15
+ } from './animation';
12
16
  import dimension from './dimension';
13
- import label, { labelOfPie, labelOfRose, axisLabel, valueAsixLabel } from './label';
17
+ import label, {
18
+ labelOfPie,
19
+ labelOfRose,
20
+ axisLabel,
21
+ valueAsixLabel,
22
+ } from './label';
14
23
  import legend, { legendOfPie, legendOfRose, legendOfDoublePie } from './legend';
15
24
  import tooltip from './tooltip';
16
25
  import axes, { valueAxis, categoryAxis } from './axes';
17
26
  import mapping from './mapping';
18
- import { bandSeries, lineSeries, areaSeries, pieSeries, purePieSeries } from './series';
19
- import pie, { rosePie, rosePieDecorate, donut, carouselDonut, nestRosePie, carouselDonut2, current as pieCurrent } from './pie';
27
+ import {
28
+ bandSeries,
29
+ lineSeries,
30
+ areaSeries,
31
+ pieSeries,
32
+ purePieSeries,
33
+ } from './series';
34
+ import pie, {
35
+ rosePie,
36
+ rosePieDecorate,
37
+ donut,
38
+ carouselDonut,
39
+ nestRosePie,
40
+ carouselDonut2,
41
+ current as pieCurrent,
42
+ } from './pie';
20
43
  import brush from './brush';
21
44
  import interaction from './interaction';
22
45
  import sc from './sc';
23
- import shadow from './shadow'
46
+ import shadow from './shadow';
24
47
 
25
48
  export {
26
49
  show,
@@ -33,6 +56,7 @@ export {
33
56
  margin,
34
57
  multiColor,
35
58
  animation,
59
+ dataAnimation,
36
60
  animationOfPie,
37
61
  animationOfCarousel,
38
62
  dimension,
@@ -68,5 +92,5 @@ export {
68
92
  carouselDonut2,
69
93
  pieCurrent,
70
94
  sc,
71
- shadow
95
+ shadow,
72
96
  };