Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flourish/chart-layout

Package Overview
Dependencies
Maintainers
18
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flourish/chart-layout - npm Package Compare versions

Comparing version 10.3.1 to 10.4.0

17

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc