Skip to content

Commit

Permalink
2.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Mar 15, 2024
1 parent d946e7f commit 08f21f0
Show file tree
Hide file tree
Showing 24 changed files with 417 additions and 421 deletions.
40 changes: 20 additions & 20 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ The main plotly.js bundles weight in at:
| 8.2 MB | 3.5 MB | 1 MB | 8.5 MB |

#### CDN links
> https://cdn.plot.ly/plotly-2.30.0.js
> https://cdn.plot.ly/plotly-2.30.1.js
> https://cdn.plot.ly/plotly-2.30.0.min.js
> https://cdn.plot.ly/plotly-2.30.1.min.js

#### npm packages
Expand Down Expand Up @@ -94,9 +94,9 @@ The `basic` partial bundle contains trace modules `bar`, `pie` and `scatter`.
| 2.6 MB | 986.7 kB | 330.3 kB |

#### CDN links
> https://cdn.plot.ly/plotly-basic-2.30.0.js
> https://cdn.plot.ly/plotly-basic-2.30.1.js
> https://cdn.plot.ly/plotly-basic-2.30.0.min.js
> https://cdn.plot.ly/plotly-basic-2.30.1.min.js

#### npm packages
Expand All @@ -117,9 +117,9 @@ The `cartesian` partial bundle contains trace modules `bar`, `box`, `contour`, `
| 3.3 MB | 1.2 MB | 417.7 kB |

#### CDN links
> https://cdn.plot.ly/plotly-cartesian-2.30.0.js
> https://cdn.plot.ly/plotly-cartesian-2.30.1.js
> https://cdn.plot.ly/plotly-cartesian-2.30.0.min.js
> https://cdn.plot.ly/plotly-cartesian-2.30.1.min.js

#### npm packages
Expand All @@ -137,12 +137,12 @@ The `geo` partial bundle contains trace modules `choropleth`, `scatter` and `sca

| Raw size | Minified size | Minified + gzip size |
|------|-----------------|------------------------|
| 3.1 MB | 1.1 MB | 372.9 kB |
| 3.1 MB | 1.1 MB | 373 kB |

#### CDN links
> https://cdn.plot.ly/plotly-geo-2.30.0.js
> https://cdn.plot.ly/plotly-geo-2.30.1.js
> https://cdn.plot.ly/plotly-geo-2.30.0.min.js
> https://cdn.plot.ly/plotly-geo-2.30.1.min.js

#### npm packages
Expand All @@ -160,12 +160,12 @@ The `gl3d` partial bundle contains trace modules `cone`, `isosurface`, `mesh3d`,

| Raw size | Minified size | Minified + gzip size |
|------|-----------------|------------------------|
| 3.6 MB | 1.5 MB | 493.7 kB |
| 3.6 MB | 1.5 MB | 493.6 kB |

#### CDN links
> https://cdn.plot.ly/plotly-gl3d-2.30.0.js
> https://cdn.plot.ly/plotly-gl3d-2.30.1.js
> https://cdn.plot.ly/plotly-gl3d-2.30.0.min.js
> https://cdn.plot.ly/plotly-gl3d-2.30.1.min.js

#### npm packages
Expand All @@ -186,9 +186,9 @@ The `gl2d` partial bundle contains trace modules `heatmapgl`, `parcoords`, `poin
| 4.4 MB | 1.9 MB | 600.3 kB |

#### CDN links
> https://cdn.plot.ly/plotly-gl2d-2.30.0.js
> https://cdn.plot.ly/plotly-gl2d-2.30.1.js
> https://cdn.plot.ly/plotly-gl2d-2.30.0.min.js
> https://cdn.plot.ly/plotly-gl2d-2.30.1.min.js

#### npm packages
Expand All @@ -209,9 +209,9 @@ The `mapbox` partial bundle contains trace modules `choroplethmapbox`, `densitym
| 4.4 MB | 1.8 MB | 531.9 kB |

#### CDN links
> https://cdn.plot.ly/plotly-mapbox-2.30.0.js
> https://cdn.plot.ly/plotly-mapbox-2.30.1.js
> https://cdn.plot.ly/plotly-mapbox-2.30.0.min.js
> https://cdn.plot.ly/plotly-mapbox-2.30.1.min.js

#### npm packages
Expand All @@ -232,9 +232,9 @@ The `finance` partial bundle contains trace modules `bar`, `candlestick`, `funne
| 2.8 MB | 1.1 MB | 359.4 kB |

#### CDN links
> https://cdn.plot.ly/plotly-finance-2.30.0.js
> https://cdn.plot.ly/plotly-finance-2.30.1.js
> https://cdn.plot.ly/plotly-finance-2.30.0.min.js
> https://cdn.plot.ly/plotly-finance-2.30.1.min.js

#### npm packages
Expand All @@ -255,9 +255,9 @@ The `strict` partial bundle contains trace modules `bar`, `barpolar`, `box`, `ca
| 8.7 MB | 3.8 MB | 1.1 MB |

#### CDN links
> https://cdn.plot.ly/plotly-strict-2.30.0.js
> https://cdn.plot.ly/plotly-strict-2.30.1.js
> https://cdn.plot.ly/plotly-strict-2.30.0.min.js
> https://cdn.plot.ly/plotly-strict-2.30.1.min.js

#### npm packages
Expand Down
9 changes: 6 additions & 3 deletions dist/plotly-basic.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (basic) v2.30.0
* plotly.js (basic) v2.30.1
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -26416,7 +26416,10 @@ function templateFormatString(string, labels, d3locale) {
var fmt;
if (format[0] === ':') {
fmt = d3locale ? d3locale.numberFormat : lib.numberFormat;
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
if (value !== '') {
// e.g. skip missing data on heatmap
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
}
}
if (format[0] === '|') {
fmt = d3locale ? d3locale.timeFormat : utcFormat;
Expand Down Expand Up @@ -61544,7 +61547,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.30.0';
exports.version = '2.30.1';

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions dist/plotly-basic.min.js

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions dist/plotly-cartesian.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (cartesian) v2.30.0
* plotly.js (cartesian) v2.30.1
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -26525,7 +26525,10 @@ function templateFormatString(string, labels, d3locale) {
var fmt;
if (format[0] === ':') {
fmt = d3locale ? d3locale.numberFormat : lib.numberFormat;
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
if (value !== '') {
// e.g. skip missing data on heatmap
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
}
}
if (format[0] === '|') {
fmt = d3locale ? d3locale.timeFormat : utcFormat;
Expand Down Expand Up @@ -62204,7 +62207,7 @@ module.exports = function (gd, plotinfo, cdheatmaps, heatmapLayer) {
var thisLabel = d3.select(this);
var fontColor = font.color;
if (!fontColor || fontColor === 'auto') {
fontColor = Color.contrast('rgba(' + sclFunc(d.z).join() + ')');
fontColor = Color.contrast(d.z === undefined ? gd._fullLayout.plot_bgcolor : 'rgba(' + sclFunc(d.z).join() + ')');
}
thisLabel.attr('data-notex', 1).call(svgTextUtils.positionText, xFn(d), yFn(d)).call(Drawing.font, fontFamily, fontSize, fontColor).text(d.t).call(svgTextUtils.convertToTspans, gd);
});
Expand Down Expand Up @@ -72026,7 +72029,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.30.0';
exports.version = '2.30.1';

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions dist/plotly-cartesian.min.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions dist/plotly-finance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (finance) v2.30.0
* plotly.js (finance) v2.30.1
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -26505,7 +26505,10 @@ function templateFormatString(string, labels, d3locale) {
var fmt;
if (format[0] === ':') {
fmt = d3locale ? d3locale.numberFormat : lib.numberFormat;
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
if (value !== '') {
// e.g. skip missing data on heatmap
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
}
}
if (format[0] === '|') {
fmt = d3locale ? d3locale.timeFormat : utcFormat;
Expand Down Expand Up @@ -67883,7 +67886,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.30.0';
exports.version = '2.30.1';

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions dist/plotly-finance.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/plotly-geo-assets.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions dist/plotly-geo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (geo) v2.30.0
* plotly.js (geo) v2.30.1
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -26841,7 +26841,10 @@ function templateFormatString(string, labels, d3locale) {
var fmt;
if (format[0] === ':') {
fmt = d3locale ? d3locale.numberFormat : lib.numberFormat;
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
if (value !== '') {
// e.g. skip missing data on heatmap
value = fmt(format.replace(TEMPLATE_STRING_FORMAT_SEPARATOR, ''))(value);
}
}
if (format[0] === '|') {
fmt = d3locale ? d3locale.timeFormat : utcFormat;
Expand Down Expand Up @@ -61325,7 +61328,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.30.0';
exports.version = '2.30.1';

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions dist/plotly-geo.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 08f21f0

Please sign in to comment.