Comparing version 1.5.5 to 1.5.6
@@ -219,3 +219,3 @@ "use strict"; | ||
group.exit().transition().duration(this.DURATION) | ||
.attr('transform', function (d, i) { return "translate(20," + -_this.itemHeight * 2 + ")"; }) | ||
.attr('transform', 'translate(20,-100)') | ||
.remove(); | ||
@@ -222,0 +222,0 @@ }; |
@@ -170,3 +170,3 @@ "use strict"; | ||
group.exit().transition().duration(this.DURATION) | ||
.attr('transform', function (d, i) { return "translate(20," + -_this.itemHeight * 2 + ")"; }) | ||
.attr('transform', 'translate(20,-100)') | ||
.remove(); | ||
@@ -173,0 +173,0 @@ }; |
@@ -34,2 +34,2 @@ /** | ||
export { default as D3Chart } from './D3Chart'; | ||
export { default as EChart } from './EChart'; | ||
export { default as EChart } from './OptChart'; |
@@ -40,3 +40,3 @@ "use strict"; | ||
exports.D3Chart = D3Chart_1.default; | ||
var EChart_1 = require("./EChart"); | ||
exports.EChart = EChart_1.default; | ||
var OptChart_1 = require("./OptChart"); | ||
exports.EChart = OptChart_1.default; |
@@ -196,3 +196,3 @@ "use strict"; | ||
default_1.prototype.update = function () { | ||
console.log('update'); | ||
// console.log('update') | ||
}; | ||
@@ -199,0 +199,0 @@ default_1.prototype.render = function () { |
{ | ||
"name": "vap", | ||
"version": "1.5.5", | ||
"version": "1.5.6", | ||
"description": "vap", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -118,3 +118,3 @@ "use strict"; | ||
} | ||
return React.createElement("span", null, txt); | ||
return React.createElement("span", { title: val }, txt); | ||
}; | ||
@@ -135,3 +135,3 @@ fn.update = function () { | ||
var fn = function (val) { | ||
return React.createElement("span", null, moment(new Date(val)).format(format)); | ||
return React.createElement("span", { title: val }, moment(new Date(val)).format(format)); | ||
}; | ||
@@ -138,0 +138,0 @@ return fn; |
299149
139
7744