@feedzai/brushable-histogram
Advanced tools
Comparing version 1.1.1 to 1.1.2
# Brushable Histogram | ||
# 1.1.1 (2018/12/17) | ||
## 1.1.2 (2018/12/19) | ||
- Reduces the minimum height to 100 pixels to allow for some internal Feedzai use cases | ||
## 1.1.1 (2018/12/17) | ||
- Publishes the `lib` folder | ||
# 1.1.0 (2018/12/17) | ||
## 1.1.0 (2018/12/17) | ||
- Document the props and have better defaults | ||
@@ -27,15 +30,15 @@ - Add more unit tests (still missing for Histogram.js) | ||
# 1.0.5 (2018/12/05) | ||
## 1.0.5 (2018/12/05) | ||
- Removes usage of `.toString()` to avoid requiring core-js. | ||
# 1.0.4 (2018/12/05) | ||
## 1.0.4 (2018/12/05) | ||
- Reduces dependencies of the transpiled code to reduce the bundle size of the package consumers. | ||
# 1.0.3 (2018/12/04) | ||
## 1.0.3 (2018/12/04) | ||
- Adds missing antd dependency | ||
# 1.0.2 (2018/11/30) | ||
## 1.0.2 (2018/11/30) | ||
- Adds a build step to compile the src files | ||
# 1.0.1 (2018/11/30) | ||
## 1.0.1 (2018/11/30) | ||
- Fixes index.js link and changes the dependencies version to match the ones in genome | ||
@@ -42,0 +45,0 @@ |
@@ -38,3 +38,3 @@ "use strict"; | ||
exports.DENSITY_CHART_HEIGHT_PX = DENSITY_CHART_HEIGHT_PX; | ||
const MIN_TOTAL_HEIGHT = 150; // An internal magic value used to align things horizontally | ||
const MIN_TOTAL_HEIGHT = 100; // An internal magic value used to align things horizontally | ||
@@ -41,0 +41,0 @@ exports.MIN_TOTAL_HEIGHT = MIN_TOTAL_HEIGHT; |
{ | ||
"name": "@feedzai/brushable-histogram", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "A time histogram with a time brush that renders a summary of the events", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -29,5 +29,5 @@ /** | ||
// The minimum total height of the chart | ||
export const MIN_TOTAL_HEIGHT = 150; | ||
export const MIN_TOTAL_HEIGHT = 100; | ||
// An internal magic value used to align things horizontally | ||
export const PADDING = 10; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
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
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
3498612