chore: bump to 1.5.4

This commit is contained in:
Shivam Mishra 2020-11-30 12:34:47 +05:30
parent e04b8f7013
commit 6fce4d6665
13 changed files with 17 additions and 12 deletions

View File

@ -1827,7 +1827,6 @@ class AggregationChart extends BaseChart {
configure(args) {
super.configure(args);
// Catch undefined tooltipOptions
this.config.formatTooltipY = (args.tooltipOptions || {}).formatTooltipY;
this.config.maxSlices = args.maxSlices || 20;
this.config.maxLegendPoints = args.maxLegendPoints || 20;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -87,6 +87,12 @@ function getRandomBias(min, max, bias, influence) {
* @param {Boolean} nonNegative flag to treat negative number as invalid
*/
/**
* Round a number to the closes precision, max max precision 4
* @param {Number} d Any Number
*/
// Playing around with dates

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "frappe-charts",
"version": "1.5.3",
"version": "1.5.4",
"description": "https://frappe.github.io/charts",
"main": "dist/frappe-charts.min.cjs.js",
"module": "dist/frappe-charts.min.esm.js",

View File

@ -3,7 +3,7 @@ import * as Charts from './chart';
let frappe = { };
frappe.NAME = 'Frappe Charts';
frappe.VERSION = '1.5.3';
frappe.VERSION = '1.5.4';
frappe = Object.assign({ }, frappe, Charts);