Skip to content

Commit e0b5dfa

Browse files
committed
0.15.18
1 parent 68bcad5 commit e0b5dfa

12 files changed

Lines changed: 25 additions & 24 deletions

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "d3.compose",
33
"homepage": "https://github.com/CSNW/d3.compose",
4-
"version": "0.15.17",
4+
"version": "0.15.18",
55
"main": [
66
"./dist/d3.compose-all.js",
77
"./dist/d3.compose.css"

dist/d3.compose-all.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* d3.compose - Compose complex, data-driven visualizations from reusable charts and components with d3
3-
* v0.15.17 - https://github.com/CSNW/d3.compose - license: MIT
3+
* v0.15.18 - https://github.com/CSNW/d3.compose - license: MIT
44
*/
55
(function (global, factory) {
66
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('d3'), require('d3.chart')) :
@@ -3274,9 +3274,10 @@
32743274
prepareLegend
32753275
),
32763276

3277-
render: function() {
3277+
render: function(data) {
32783278
// TODO Move to lifecycle
32793279
this.update(this.base, this.options());
3280+
this.props.data = data;
32803281

32813282
var layer = getLayer(this.base, 'legend')
32823283
.classed('chart-legend', true);
@@ -3330,8 +3331,8 @@
33303331
Mixed$6.prototype.initialize.apply(this, arguments);
33313332
this.attached = {};
33323333
},
3333-
draw: function() {
3334-
this.render();
3334+
draw: function(data) {
3335+
this.render(data);
33353336
},
33363337
swatchDimensions: function() {
33373338
return this.props.swatchDimensions;
@@ -3624,8 +3625,8 @@
36243625
@extends Legend
36253626
*/
36263627
var InsetLegend = Legend.extend({
3627-
render: function() {
3628-
Legend.prototype.render.call(this);
3628+
render: function(data) {
3629+
Legend.prototype.render.call(this, data);
36293630

36303631
var layer = getLayer(this.base, 'legend');
36313632
var transform = getTransform(layer, this.props);
@@ -6740,7 +6741,7 @@
67406741
});
67416742

67426743
var d3c = d3.compose = {
6743-
VERSION: '0.15.17',
6744+
VERSION: '0.15.18',
67446745
utils: utils,
67456746
helpers: helpers,
67466747
Base: Base,

dist/d3.compose-all.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/d3.compose-all.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/d3.compose-mixins.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* d3.compose - Compose complex, data-driven visualizations from reusable charts and components with d3
3-
* v0.15.17 - https://github.com/CSNW/d3.compose - license: MIT
3+
* v0.15.18 - https://github.com/CSNW/d3.compose - license: MIT
44
*/
55
(function (global, factory) {
66
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('d3'), require('d3.chart')) :
@@ -4172,7 +4172,7 @@
41724172
});
41734173

41744174
var d3c = d3.compose = {
4175-
VERSION: '0.15.17',
4175+
VERSION: '0.15.18',
41764176
utils: utils,
41774177
helpers: helpers,
41784178
Base: Base,

dist/d3.compose-mixins.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/d3.compose-mixins.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/d3.compose.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* d3.compose - Compose complex, data-driven visualizations from reusable charts and components with d3
3-
* v0.15.17 - https://github.com/CSNW/d3.compose - license: MIT
3+
* v0.15.18 - https://github.com/CSNW/d3.compose - license: MIT
44
*/
55
.chart-compose {
66
font-size: 14px;

dist/d3.compose.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* d3.compose - Compose complex, data-driven visualizations from reusable charts and components with d3
3-
* v0.15.17 - https://github.com/CSNW/d3.compose - license: MIT
3+
* v0.15.18 - https://github.com/CSNW/d3.compose - license: MIT
44
*/
55
(function (global, factory) {
66
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('d3'), require('d3.chart')) :
@@ -2953,7 +2953,7 @@
29532953
});
29542954

29552955
var d3c = d3.compose = {
2956-
VERSION: '0.15.17',
2956+
VERSION: '0.15.18',
29572957
utils: utils,
29582958
helpers: helpers,
29592959
Base: Base,

dist/d3.compose.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)