New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

victory-chart

Package Overview
Dependencies
Maintainers
7
Versions
290
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

victory-chart - npm Package Compare versions

Comparing version 21.6.0 to 21.6.1

4

CHANGELOG.md
# VictoryChart Changelog
## 21.6.1 (2017-08-09)
- [510](https://github.com/FormidableLabs/victory-chart/pull/510) Render axis line under other axis elements
## 21.6.0 (2017-08-08)

@@ -4,0 +8,0 @@

2

es/components/victory-axis/victory-axis.js

@@ -148,3 +148,3 @@ import _partialRight from "lodash/partialRight";

var modifiedGridAndTicks = props.fixLabelOverlap ? this.fixLabelOverlap(gridAndTicks, props) : gridAndTicks;
var children = [].concat(_toConsumableArray(modifiedGridAndTicks), [this.renderLine(props), this.renderLabel(props)]);
var children = [this.renderLine(props), this.renderLabel(props)].concat(_toConsumableArray(modifiedGridAndTicks));
return props.standalone ? this.renderContainer(props.containerComponent, children) : React.cloneElement(props.groupComponent, {}, children);

@@ -151,0 +151,0 @@ }

@@ -171,3 +171,3 @@ Object.defineProperty(exports, "__esModule", {

var modifiedGridAndTicks = props.fixLabelOverlap ? this.fixLabelOverlap(gridAndTicks, props) : gridAndTicks;
var children = [].concat(_toConsumableArray(modifiedGridAndTicks), [this.renderLine(props), this.renderLabel(props)]);
var children = [this.renderLine(props), this.renderLabel(props)].concat(_toConsumableArray(modifiedGridAndTicks));
return props.standalone ? this.renderContainer(props.containerComponent, children) : _react2.default.cloneElement(props.groupComponent, {}, children);

@@ -174,0 +174,0 @@ }

{
"name": "victory-chart",
"version": "21.6.0",
"version": "21.6.1",
"description": "Chart Component for Victory",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -194,5 +194,5 @@ import PropTypes from "prop-types";

const children = [
...modifiedGridAndTicks,
this.renderLine(props),
this.renderLabel(props)
this.renderLabel(props),
...modifiedGridAndTicks
];

@@ -199,0 +199,0 @@ return props.standalone ?

Sorry, the diff of this file is too big to display

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