@flourish/chart-layout
Advanced tools
Comparing version 9.5.1 to 9.5.2
{ | ||
"name": "@flourish/chart-layout", | ||
"version": "9.5.1", | ||
"version": "9.5.2", | ||
"description": "Create axes", | ||
@@ -5,0 +5,0 @@ "main": "chart-layout.js", |
@@ -0,1 +1,4 @@ | ||
# 9.5.2 | ||
* Fix issue where NaN values were appearing in ticks | ||
# 9.5.1 | ||
@@ -152,2 +155,2 @@ * Give margin variables an initial value | ||
# 0.1.0 | ||
* Restructure yml so it can actually be imported by modules | ||
* Restructure yml so it can actually be imported by modules |
@@ -241,3 +241,3 @@ import { select } from "d3-selection"; | ||
.attr("dy", function(d, i) { return i ? x.tick_label_line_height + "em" : 0; }) | ||
.text(function(d) { return d; }); | ||
.text(function(d) { return isNaN(d) ? "" : d; }); | ||
tspans.exit().remove(); | ||
@@ -479,3 +479,3 @@ }) | ||
.attr("dy", function(d, i) { return i ? x.tick_label_line_height + "em" : 0; }) | ||
.text(function(d) { return d; }); | ||
.text(function(d) { return isNaN(d) ? "" : d; }); | ||
tspans.exit().remove(); | ||
@@ -482,0 +482,0 @@ }) |
@@ -210,3 +210,3 @@ import { select } from "d3-selection"; | ||
.attr("dy", function(d, i) { return i ? y.tick_label_line_height + "em" : 0; }) | ||
.text(function(d) { return d; }); | ||
.text(function(d) { return isNaN(d) ? "" : d; }); | ||
tspans.exit().remove(); | ||
@@ -213,0 +213,0 @@ }) |
@@ -208,3 +208,3 @@ import { select } from "d3-selection"; | ||
.attr("dy", function(d, i) { return i ? y.tick_label_line_height + "em" : 0; }) | ||
.text(function(d) { return d; }); | ||
.text(function(d) { return isNaN(d) ? "" : d; }); | ||
tspans.exit().remove(); | ||
@@ -211,0 +211,0 @@ }) |
Sorry, the diff of this file is too big to display
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
436703
1