Skip to content

Commit

Permalink
2.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Mar 14, 2023
1 parent 995c29b commit 967bbaa
Show file tree
Hide file tree
Showing 24 changed files with 154 additions and 64 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.1 MB | 3.4 MB | 1 MB | 8.4 MB |

#### CDN links
> https://cdn.plot.ly/plotly-2.19.0.js
> https://cdn.plot.ly/plotly-2.19.1.js
> https://cdn.plot.ly/plotly-2.19.0.min.js
> https://cdn.plot.ly/plotly-2.19.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 | 959.5 kB | 320.6 kB |

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

#### npm packages
Expand All @@ -114,12 +114,12 @@ The `cartesian` partial bundle contains trace modules `bar`, `box`, `contour`, `

| Raw size | Minified size | Minified + gzip size |
|------|-----------------|------------------------|
| 3.2 MB | 1.2 MB | 406.4 kB |
| 3.2 MB | 1.2 MB | 406.5 kB |

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

#### npm packages
Expand All @@ -140,9 +140,9 @@ The `geo` partial bundle contains trace modules `choropleth`, `scatter` and `sca
| 3.1 MB | 1.1 MB | 364.5 kB |

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

#### npm packages
Expand All @@ -163,9 +163,9 @@ The `gl3d` partial bundle contains trace modules `cone`, `isosurface`, `mesh3d`,
| 3.5 MB | 1.5 MB | 485.1 kB |

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

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

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

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

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

#### npm packages
Expand All @@ -229,12 +229,12 @@ The `finance` partial bundle contains trace modules `bar`, `candlestick`, `funne

| Raw size | Minified size | Minified + gzip size |
|------|-----------------|------------------------|
| 2.8 MB | 1 MB | 349.2 kB |
| 2.8 MB | 1 MB | 349.3 kB |

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

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

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

#### npm packages
Expand Down
13 changes: 11 additions & 2 deletions dist/plotly-basic.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (basic) v2.19.0
* plotly.js (basic) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14878,16 +14878,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -59453,7 +59462,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.1';

/***/ }),

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

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions dist/plotly-cartesian.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (cartesian) v2.19.0
* plotly.js (cartesian) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14968,16 +14968,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -69767,7 +69776,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.1';

/***/ }),

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

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions dist/plotly-finance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (finance) v2.19.0
* plotly.js (finance) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14948,16 +14948,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -65762,7 +65771,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.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.

13 changes: 11 additions & 2 deletions dist/plotly-geo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (geo) v2.19.0
* plotly.js (geo) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14878,16 +14878,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -59480,7 +59489,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.1';

/***/ }),

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

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions dist/plotly-gl2d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (gl2d) v2.19.0
* plotly.js (gl2d) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14908,16 +14908,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -64881,7 +64890,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.1';

/***/ }),

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

Large diffs are not rendered by default.

13 changes: 11 additions & 2 deletions dist/plotly-gl3d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (gl3d) v2.19.0
* plotly.js (gl3d) v2.19.1
* Copyright 2012-2023, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -14928,16 +14928,25 @@ function setupDragElement(rangeSlider, gd, axisOpts, opts) {
switch (target) {
case slideBox:
cursor = 'ew-resize';
if (minVal + delta > axisOpts._length || maxVal + delta < 0) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal + delta;
break;
case grabAreaMin:
cursor = 'col-resize';
if (minVal + delta > axisOpts._length) {
return;
}
pixelMin = minVal + delta;
pixelMax = maxVal;
break;
case grabAreaMax:
cursor = 'col-resize';
if (maxVal + delta < 0) {
return;
}
pixelMin = minVal;
pixelMax = maxVal + delta;
break;
Expand Down Expand Up @@ -62901,7 +62910,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.19.0';
exports.version = '2.19.1';

/***/ }),

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

Large diffs are not rendered by default.

Loading

0 comments on commit 967bbaa

Please sign in to comment.