@flourish/chart-layout
Advanced tools
Comparing version 10.3.1 to 10.4.0
{ | ||
"name": "@flourish/chart-layout", | ||
"version": "10.3.1", | ||
"version": "10.4.0", | ||
"private": false, | ||
@@ -8,9 +8,2 @@ "description": "Create axes", | ||
"module": "src/index.js", | ||
"scripts": { | ||
"lint": "eslint src", | ||
"build": "rollup -c", | ||
"prepare": "npm run build && npm run minify", | ||
"minify": "terser -m -o chart-layout.min.js chart-layout.js", | ||
"precommit": "lint-staged" | ||
}, | ||
"author": "Kiln Enterprises Ltd", | ||
@@ -44,3 +37,9 @@ "license": "LicenseRef-LICENSE", | ||
} | ||
}, | ||
"scripts": { | ||
"lint": "eslint src", | ||
"build": "rollup -c", | ||
"minify": "terser -m -o chart-layout.min.js chart-layout.js", | ||
"precommit": "lint-staged" | ||
} | ||
} | ||
} |
@@ -0,1 +1,4 @@ | ||
# 10.4.0 | ||
* Hide axes for screenreader | ||
# 10.3.1 | ||
@@ -2,0 +5,0 @@ * Fix custom tick {{FIRST}} and {{LAST}} |
function addAxes(chart) { | ||
var axes_container = chart.append("g").attr("class", "fl-axes"); | ||
var axes_container = chart.append("g").attr("class", "fl-axes").attr("aria-hidden", true); | ||
var x_axes = axes_container.append("g").attr("class", "fl-x-axes"); | ||
@@ -4,0 +4,0 @@ var y_axes = axes_container.append("g").attr("class", "fl-y-axes"); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
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
471236
0
54