@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 +1 -1
- package/lib/index.js +6 -0
- package/package.json +1 -1
- package/src/animation.js +1 -1
- package/src/index.js +31 -7
package/lib/animation.js
CHANGED
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
package/src/animation.js
CHANGED
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, {
|
|
11
|
+
import animation, {
|
|
12
|
+
dataAnimation,
|
|
13
|
+
animationOfPie,
|
|
14
|
+
animationOfCarousel,
|
|
15
|
+
} from './animation';
|
|
12
16
|
import dimension from './dimension';
|
|
13
|
-
import 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 {
|
|
19
|
-
|
|
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
|
};
|