@easyv/config 1.1.0 → 1.1.3

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/lib/animation.js CHANGED
@@ -69,7 +69,7 @@ var dataAnimation = function dataAnimation() {
69
69
 
70
70
  return {
71
71
  name: 'dataAnimation',
72
- displayName: '数据动画',
72
+ displayName: '数据时长',
73
73
  value: [{
74
74
  name: 'show',
75
75
  displayName: '打开',
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyv/config",
3
- "version": "1.1.0",
3
+ "version": "1.1.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/animation.js CHANGED
@@ -52,7 +52,7 @@ export const dataAnimation = ({
52
52
  duration = defaultDataAnimation.duration,
53
53
  } = defaultDataAnimation) => ({
54
54
  name: 'dataAnimation',
55
- displayName: '数据动画',
55
+ displayName: '数据时长',
56
56
  value: [
57
57
  {
58
58
  name: 'show',
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
  };