Skip to content

Commit

Permalink
2.35.2
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Sep 10, 2024
1 parent 11540ed commit 22efc2f
Show file tree
Hide file tree
Showing 24 changed files with 92 additions and 92 deletions.
36 changes: 18 additions & 18 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:
| 10.3 MB | 4.3 MB | 1.3 MB | 10.6 MB |

#### CDN links
> https://cdn.plot.ly/plotly-2.35.1.js
> https://cdn.plot.ly/plotly-2.35.2.js
> https://cdn.plot.ly/plotly-2.35.1.min.js
> https://cdn.plot.ly/plotly-2.35.2.min.js

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

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

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

#### CDN links
> https://cdn.plot.ly/plotly-cartesian-2.35.1.js
> https://cdn.plot.ly/plotly-cartesian-2.35.2.js
> https://cdn.plot.ly/plotly-cartesian-2.35.1.min.js
> https://cdn.plot.ly/plotly-cartesian-2.35.2.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 | 391.2 kB |

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

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

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

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

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

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

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

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

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

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

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

#### npm packages
Expand Down
10 changes: 5 additions & 5 deletions dist/plotly-basic.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (basic) v2.35.1
* plotly.js (basic) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45228,7 +45228,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45240,9 +45240,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -62407,7 +62407,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/plotly-cartesian.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (cartesian) v2.35.1
* plotly.js (cartesian) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45386,7 +45386,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45398,9 +45398,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -72926,7 +72926,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/plotly-finance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (finance) v2.35.1
* plotly.js (finance) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45317,7 +45317,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45329,9 +45329,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -68759,7 +68759,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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.

10 changes: 5 additions & 5 deletions dist/plotly-geo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (geo) v2.35.1
* plotly.js (geo) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45686,7 +45686,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45698,9 +45698,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -62157,7 +62157,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/plotly-gl2d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (gl2d) v2.35.1
* plotly.js (gl2d) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45513,7 +45513,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45525,9 +45525,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -67634,7 +67634,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/plotly-gl3d.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (gl3d) v2.35.1
* plotly.js (gl3d) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45464,7 +45464,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45476,9 +45476,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -65624,7 +65624,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/plotly-mapbox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* plotly.js (mapbox) v2.35.1
* plotly.js (mapbox) v2.35.2
* Copyright 2012-2024, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
Expand Down Expand Up @@ -45673,7 +45673,7 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
if (cdModule.length) {
layerData.push({
i: traceLayerClasses.indexOf(classBaseName),
zorder: z,
zindex: z,
className: className,
plotMethod: plotMethod,
cdModule: cdModule
Expand All @@ -45685,9 +45685,9 @@ function plotOne(gd, plotinfo, cdSubplot, transitionOpts, makeOnCompleteCallback
}
}
}
// Sort the layers primarily by z, then by i
// Sort the layers primarily by zindex, then by i
layerData.sort(function (a, b) {
return (a.zorder || 0) - (b.zorder || 0) || a.i - b.i;
return (a.zindex || 0) - (b.zindex || 0) || a.i - b.i;
});
var layers = plotinfo.plot.selectAll('g.mlayer').data(layerData, function (d) {
return d.className;
Expand Down Expand Up @@ -63365,7 +63365,7 @@ function getSortFunc(opts, d2c) {


// package version injected by `npm run preprocess`
exports.version = '2.35.1';
exports.version = '2.35.2';

/***/ }),

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

Large diffs are not rendered by default.

Loading

0 comments on commit 22efc2f

Please sign in to comment.