Skip to content

Commit b713c41

Browse files
committed
1.39.0
1 parent 7f8b49d commit b713c41

25 files changed

+55793
-105438
lines changed

dist/README.md

+259-61
Large diffs are not rendered by default.

dist/plot-schema.json

+2,795-862
Large diffs are not rendered by default.

dist/plotly-basic.js

+2,542-1,480
Large diffs are not rendered by default.

dist/plotly-basic.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-cartesian.js

+2,685-1,651
Large diffs are not rendered by default.

dist/plotly-cartesian.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-finance.js

+2,577-1,515
Large diffs are not rendered by default.

dist/plotly-finance.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-geo-assets.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-geo.js

+2,561-1,526
Large diffs are not rendered by default.

dist/plotly-geo.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-gl2d.js

+5,557-2,330
Large diffs are not rendered by default.

dist/plotly-gl2d.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-gl3d.js

+6,537-3,422
Large diffs are not rendered by default.

dist/plotly-gl3d.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-mapbox.js

+2,629-26,480
Large diffs are not rendered by default.

dist/plotly-mapbox.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-with-meta.js

+13,884-33,091
Large diffs are not rendered by default.

dist/plotly.js

+13,736-32,989
Large diffs are not rendered by default.

dist/plotly.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/translation-keys.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
Autoscale // components/modebar/buttons.js:150
22
Box Select // components/modebar/buttons.js:114
3-
Click to enter Colorscale title // plots/plots.js:326
3+
Click to enter Colorscale title // plots/plots.js:327
44
Click to enter Component A title // plots/ternary/ternary.js:390
55
Click to enter Component B title // plots/ternary/ternary.js:405
66
Click to enter Component C title // plots/ternary/ternary.js:416
7-
Click to enter Plot title // plot_api/plot_api.js:514
8-
Click to enter X axis title // plots/plots.js:324
9-
Click to enter Y axis title // plots/plots.js:325
10-
Click to enter radial axis title // plots/polar/polar.js:377
7+
Click to enter Plot title // plot_api/plot_api.js:535
8+
Click to enter X axis title // plots/plots.js:325
9+
Click to enter Y axis title // plots/plots.js:326
10+
Click to enter radial axis title // plots/polar/polar.js:408
1111
Compare data on hover // components/modebar/buttons.js:178
1212
Double-click on legend to isolate one trace // components/legend/handle_click.js:89
13-
Double-click to zoom back out // plots/cartesian/dragbox.js:1012
13+
Double-click to zoom back out // plots/cartesian/dragbox.js:1011
1414
Download plot // components/modebar/buttons.js:55
1515
Download plot as a png // components/modebar/buttons.js:54
1616
Edit in Chart Studio // components/modebar/buttons.js:87
1717
IE only supports svg. Changing format to svg. // components/modebar/buttons.js:65
1818
Lasso Select // components/modebar/buttons.js:123
1919
Orbital rotation // components/modebar/buttons.js:287
2020
Pan // components/modebar/buttons.js:105
21-
Produced with Plotly // components/modebar/modebar.js:259
21+
Produced with Plotly // components/modebar/modebar.js:272
2222
Reset // components/modebar/buttons.js:443
2323
Reset axes // components/modebar/buttons.js:159
2424
Reset camera to default // components/modebar/buttons.js:325
@@ -48,12 +48,12 @@ mean ± σ: // traces/box/calc.js:1
4848
mean: // traces/box/calc.js:139
4949
median: // traces/box/calc.js:134
5050
min: // traces/box/calc.js:135
51-
new text // plots/plots.js:327
51+
new text // plots/plots.js:328
5252
open: // traces/ohlc/calc.js:101
5353
outgoing flow count: // traces/sankey/plot.js:143
5454
q1: // traces/box/calc.js:136
5555
q3: // traces/box/calc.js:137
5656
source: // traces/sankey/plot.js:140
5757
target: // traces/sankey/plot.js:141
58-
trace // plots/plots.js:329
58+
trace // plots/plots.js:330
5959
upper fence: // traces/box/calc.js:141

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotly.js",
3-
"version": "1.38.3",
3+
"version": "1.39.0",
44
"description": "The open source javascript graphing library that powers plotly",
55
"license": "MIT",
66
"main": "./lib/index.js",

src/assets/geo_assets.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ var saneTopojson = require('sane-topojson');
1212

1313

1414
// package version injected by `npm run preprocess`
15-
exports.version = '1.38.3';
15+
exports.version = '1.39.0';
1616

1717
exports.topojson = saneTopojson;

src/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'use strict';
1010

1111
// package version injected by `npm run preprocess`
12-
exports.version = '1.38.3';
12+
exports.version = '1.39.0';
1313

1414
// inject promise polyfill
1515
require('es6-promise').polyfill();

0 commit comments

Comments
 (0)