plotly.js 2.16.2 → 2.16.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +3 -3
- package/dist/README.md +23 -23
- package/dist/plotly-basic.js +15 -5
- package/dist/plotly-basic.min.js +2 -2
- package/dist/plotly-cartesian.js +15 -5
- package/dist/plotly-cartesian.min.js +2 -2
- package/dist/plotly-finance.js +15 -5
- package/dist/plotly-finance.min.js +2 -2
- package/dist/plotly-geo-assets.js +2 -2
- package/dist/plotly-geo.js +15 -5
- package/dist/plotly-geo.min.js +2 -2
- package/dist/plotly-gl2d.js +15 -5
- package/dist/plotly-gl2d.min.js +2 -2
- package/dist/plotly-gl3d.js +15 -5
- package/dist/plotly-gl3d.min.js +2 -2
- package/dist/plotly-mapbox.js +101 -42
- package/dist/plotly-mapbox.min.js +2 -2
- package/dist/plotly-strict.js +101 -42
- package/dist/plotly-strict.min.js +2 -2
- package/dist/plotly-with-meta.js +101 -42
- package/dist/plotly.js +101 -42
- package/dist/plotly.min.js +2 -2
- package/package.json +1 -1
- package/src/components/colorscale/index.js +1 -1
- package/src/components/fx/hover.js +12 -2
- package/src/traces/scattermapbox/plot.js +87 -38
- package/src/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,19 @@ To see all merged commits on the master branch that will be part of the next plo
|
|
|
9
9
|
|
|
10
10
|
where X.Y.Z is the semver of most recent plotly.js release.
|
|
11
11
|
|
|
12
|
+
## [2.16.4] -- 2022-12-07
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fix `scattermapbox` redraw (regression introduced in 2.16.0) [[#6387](https://github.com/plotly/plotly.js/pull/6387)]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [2.16.3] -- 2022-11-16
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Fix hover on multicategory axes [[#6360](https://github.com/plotly/plotly.js/pull/6360)],
|
|
22
|
+
with thanks to @filipesantiagoAM for the contribution!
|
|
23
|
+
|
|
24
|
+
|
|
12
25
|
## [2.16.2] -- 2022-11-11
|
|
13
26
|
|
|
14
27
|
### Fixed
|
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
|
|
|
55
55
|
|
|
56
56
|
```html
|
|
57
57
|
<head>
|
|
58
|
-
<script src="https://cdn.plot.ly/plotly-2.16.
|
|
58
|
+
<script src="https://cdn.plot.ly/plotly-2.16.4.min.js"></script>
|
|
59
59
|
</head>
|
|
60
60
|
<body>
|
|
61
61
|
<div id="gd"></div>
|
|
@@ -72,7 +72,7 @@ You may also consider using [`plotly.js-dist`](https://www.npmjs.com/package/plo
|
|
|
72
72
|
Alternatively you may consider using [native ES6 import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) in the script tag.
|
|
73
73
|
```html
|
|
74
74
|
<script type="module">
|
|
75
|
-
import "https://cdn.plot.ly/plotly-2.16.
|
|
75
|
+
import "https://cdn.plot.ly/plotly-2.16.4.min.js"
|
|
76
76
|
Plotly.newPlot("gd", [{ y: [1, 2, 3] }])
|
|
77
77
|
</script>
|
|
78
78
|
```
|
|
@@ -82,7 +82,7 @@ Fastly supports Plotly.js with free CDN service. Read more at <https://www.fastl
|
|
|
82
82
|
### Un-minified versions are also available on CDN
|
|
83
83
|
While non-minified source files may contain characters outside UTF-8, it is recommended that you specify the `charset` when loading those bundles.
|
|
84
84
|
```html
|
|
85
|
-
<script src="https://cdn.plot.ly/plotly-2.16.
|
|
85
|
+
<script src="https://cdn.plot.ly/plotly-2.16.4.js" charset="utf-8"></script>
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
> Please note that as of v2 the "plotly-latest" outputs (e.g. https://cdn.plot.ly/plotly-latest.min.js) will no longer be updated on the CDN, and will stay at the last v1 patch v1.58.5. Therefore, to use the CDN with plotly.js v2 and higher, you must specify an exact plotly.js version.
|
package/dist/README.md
CHANGED
|
@@ -46,9 +46,9 @@ The main plotly.js bundles weight in at:
|
|
|
46
46
|
| 8.4 MB | 3.5 MB | 1 MB | 8.7 MB |
|
|
47
47
|
|
|
48
48
|
#### CDN links
|
|
49
|
-
> https://cdn.plot.ly/plotly-2.16.
|
|
49
|
+
> https://cdn.plot.ly/plotly-2.16.4.js
|
|
50
50
|
|
|
51
|
-
> https://cdn.plot.ly/plotly-2.16.
|
|
51
|
+
> https://cdn.plot.ly/plotly-2.16.4.min.js
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
#### npm packages
|
|
@@ -91,12 +91,12 @@ The `basic` partial bundle contains trace modules `bar`, `pie` and `scatter`.
|
|
|
91
91
|
|
|
92
92
|
| Raw size | Minified size | Minified + gzip size |
|
|
93
93
|
|------|-----------------|------------------------|
|
|
94
|
-
| 2.8 MB | 1004.
|
|
94
|
+
| 2.8 MB | 1004.6 kB | 326.8 kB |
|
|
95
95
|
|
|
96
96
|
#### CDN links
|
|
97
|
-
> https://cdn.plot.ly/plotly-basic-2.16.
|
|
97
|
+
> https://cdn.plot.ly/plotly-basic-2.16.4.js
|
|
98
98
|
|
|
99
|
-
> https://cdn.plot.ly/plotly-basic-2.16.
|
|
99
|
+
> https://cdn.plot.ly/plotly-basic-2.16.4.min.js
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
#### npm packages
|
|
@@ -117,9 +117,9 @@ The `cartesian` partial bundle contains trace modules `bar`, `box`, `contour`, `
|
|
|
117
117
|
| 3.4 MB | 1.2 MB | 400.1 kB |
|
|
118
118
|
|
|
119
119
|
#### CDN links
|
|
120
|
-
> https://cdn.plot.ly/plotly-cartesian-2.16.
|
|
120
|
+
> https://cdn.plot.ly/plotly-cartesian-2.16.4.js
|
|
121
121
|
|
|
122
|
-
> https://cdn.plot.ly/plotly-cartesian-2.16.
|
|
122
|
+
> https://cdn.plot.ly/plotly-cartesian-2.16.4.min.js
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
#### npm packages
|
|
@@ -137,12 +137,12 @@ The `geo` partial bundle contains trace modules `choropleth`, `scatter` and `sca
|
|
|
137
137
|
|
|
138
138
|
| Raw size | Minified size | Minified + gzip size |
|
|
139
139
|
|------|-----------------|------------------------|
|
|
140
|
-
| 3.1 MB | 1.1 MB | 369.
|
|
140
|
+
| 3.1 MB | 1.1 MB | 369.7 kB |
|
|
141
141
|
|
|
142
142
|
#### CDN links
|
|
143
|
-
> https://cdn.plot.ly/plotly-geo-2.16.
|
|
143
|
+
> https://cdn.plot.ly/plotly-geo-2.16.4.js
|
|
144
144
|
|
|
145
|
-
> https://cdn.plot.ly/plotly-geo-2.16.
|
|
145
|
+
> https://cdn.plot.ly/plotly-geo-2.16.4.min.js
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
#### npm packages
|
|
@@ -160,12 +160,12 @@ The `gl3d` partial bundle contains trace modules `cone`, `isosurface`, `mesh3d`,
|
|
|
160
160
|
|
|
161
161
|
| Raw size | Minified size | Minified + gzip size |
|
|
162
162
|
|------|-----------------|------------------------|
|
|
163
|
-
| 3.9 MB | 1.6 MB | 490.
|
|
163
|
+
| 3.9 MB | 1.6 MB | 490.6 kB |
|
|
164
164
|
|
|
165
165
|
#### CDN links
|
|
166
|
-
> https://cdn.plot.ly/plotly-gl3d-2.16.
|
|
166
|
+
> https://cdn.plot.ly/plotly-gl3d-2.16.4.js
|
|
167
167
|
|
|
168
|
-
> https://cdn.plot.ly/plotly-gl3d-2.16.
|
|
168
|
+
> https://cdn.plot.ly/plotly-gl3d-2.16.4.min.js
|
|
169
169
|
|
|
170
170
|
|
|
171
171
|
#### npm packages
|
|
@@ -186,9 +186,9 @@ The `gl2d` partial bundle contains trace modules `heatmapgl`, `parcoords`, `poin
|
|
|
186
186
|
| 4.5 MB | 1.8 MB | 583 kB |
|
|
187
187
|
|
|
188
188
|
#### CDN links
|
|
189
|
-
> https://cdn.plot.ly/plotly-gl2d-2.16.
|
|
189
|
+
> https://cdn.plot.ly/plotly-gl2d-2.16.4.js
|
|
190
190
|
|
|
191
|
-
> https://cdn.plot.ly/plotly-gl2d-2.16.
|
|
191
|
+
> https://cdn.plot.ly/plotly-gl2d-2.16.4.min.js
|
|
192
192
|
|
|
193
193
|
|
|
194
194
|
#### npm packages
|
|
@@ -206,12 +206,12 @@ The `mapbox` partial bundle contains trace modules `choroplethmapbox`, `densitym
|
|
|
206
206
|
|
|
207
207
|
| Raw size | Minified size | Minified + gzip size |
|
|
208
208
|
|------|-----------------|------------------------|
|
|
209
|
-
| 4.4 MB | 1.8 MB | 524.
|
|
209
|
+
| 4.4 MB | 1.8 MB | 524.8 kB |
|
|
210
210
|
|
|
211
211
|
#### CDN links
|
|
212
|
-
> https://cdn.plot.ly/plotly-mapbox-2.16.
|
|
212
|
+
> https://cdn.plot.ly/plotly-mapbox-2.16.4.js
|
|
213
213
|
|
|
214
|
-
> https://cdn.plot.ly/plotly-mapbox-2.16.
|
|
214
|
+
> https://cdn.plot.ly/plotly-mapbox-2.16.4.min.js
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
#### npm packages
|
|
@@ -229,12 +229,12 @@ The `finance` partial bundle contains trace modules `bar`, `candlestick`, `funne
|
|
|
229
229
|
|
|
230
230
|
| Raw size | Minified size | Minified + gzip size |
|
|
231
231
|
|------|-----------------|------------------------|
|
|
232
|
-
| 3 MB | 1.1 MB | 359.
|
|
232
|
+
| 3 MB | 1.1 MB | 359.6 kB |
|
|
233
233
|
|
|
234
234
|
#### CDN links
|
|
235
|
-
> https://cdn.plot.ly/plotly-finance-2.16.
|
|
235
|
+
> https://cdn.plot.ly/plotly-finance-2.16.4.js
|
|
236
236
|
|
|
237
|
-
> https://cdn.plot.ly/plotly-finance-2.16.
|
|
237
|
+
> https://cdn.plot.ly/plotly-finance-2.16.4.min.js
|
|
238
238
|
|
|
239
239
|
|
|
240
240
|
#### npm packages
|
|
@@ -255,9 +255,9 @@ The `strict` partial bundle contains trace modules `bar`, `barpolar`, `box`, `ca
|
|
|
255
255
|
| 8.8 MB | 3.9 MB | 1.1 MB |
|
|
256
256
|
|
|
257
257
|
#### CDN links
|
|
258
|
-
> https://cdn.plot.ly/plotly-strict-2.16.
|
|
258
|
+
> https://cdn.plot.ly/plotly-strict-2.16.4.js
|
|
259
259
|
|
|
260
|
-
> https://cdn.plot.ly/plotly-strict-2.16.
|
|
260
|
+
> https://cdn.plot.ly/plotly-strict-2.16.4.min.js
|
|
261
261
|
|
|
262
262
|
|
|
263
263
|
#### npm packages
|
package/dist/plotly-basic.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* plotly.js (basic) v2.16.
|
|
2
|
+
* plotly.js (basic) v2.16.4
|
|
3
3
|
* Copyright 2012-2022, Plotly, Inc.
|
|
4
4
|
* All rights reserved.
|
|
5
5
|
* Licensed under the MIT license
|
|
@@ -23531,7 +23531,7 @@ module.exports = {
|
|
|
23531
23531
|
calc: _dereq_('./calc'),
|
|
23532
23532
|
|
|
23533
23533
|
// ./scales.js is required in lib/coerce.js ;
|
|
23534
|
-
// it needs to be a separate module to avoid circular
|
|
23534
|
+
// it needs to be a separate module to avoid a circular dependency
|
|
23535
23535
|
scales: scales.scales,
|
|
23536
23536
|
defaultScale: scales.defaultScale,
|
|
23537
23537
|
getScale: scales.get,
|
|
@@ -28719,7 +28719,17 @@ function createHoverText(hoverData, opts) {
|
|
|
28719
28719
|
var xa = c0.xa;
|
|
28720
28720
|
var ya = c0.ya;
|
|
28721
28721
|
var axLetter = hovermode.charAt(0);
|
|
28722
|
-
var
|
|
28722
|
+
var axLabel = axLetter + 'Label';
|
|
28723
|
+
var t0 = c0[axLabel];
|
|
28724
|
+
|
|
28725
|
+
// search in array for the label
|
|
28726
|
+
if(t0 === undefined && xa.type === 'multicategory') {
|
|
28727
|
+
for(var q = 0; q < hoverData.length; q++) {
|
|
28728
|
+
t0 = hoverData[q][axLabel];
|
|
28729
|
+
if(t0 !== undefined) break;
|
|
28730
|
+
}
|
|
28731
|
+
}
|
|
28732
|
+
|
|
28723
28733
|
var outerContainerBB = getBoundingClientRect(gd, outerContainer);
|
|
28724
28734
|
var outerTop = outerContainerBB.top;
|
|
28725
28735
|
var outerWidth = outerContainerBB.width;
|
|
@@ -29898,7 +29908,7 @@ function getCoord(axLetter, winningPoint, fullLayout) {
|
|
|
29898
29908
|
|
|
29899
29909
|
var cd0 = winningPoint.cd[0];
|
|
29900
29910
|
|
|
29901
|
-
if(ax.type === 'category') val = ax._categoriesMap[val];
|
|
29911
|
+
if(ax.type === 'category' || ax.type === 'multicategory') val = ax._categoriesMap[val];
|
|
29902
29912
|
else if(ax.type === 'date') {
|
|
29903
29913
|
var periodalignment = winningPoint.trace[axLetter + 'periodalignment'];
|
|
29904
29914
|
if(periodalignment) {
|
|
@@ -85405,7 +85415,7 @@ function getSortFunc(opts, d2c) {
|
|
|
85405
85415
|
'use strict';
|
|
85406
85416
|
|
|
85407
85417
|
// package version injected by `npm run preprocess`
|
|
85408
|
-
exports.version = '2.16.
|
|
85418
|
+
exports.version = '2.16.4';
|
|
85409
85419
|
|
|
85410
85420
|
},{}]},{},[8])(8)
|
|
85411
85421
|
});
|