Skip to content

Commit 0d48893

Browse files
committed
1.6.3
1 parent 0829d62 commit 0d48893

File tree

7 files changed

+28
-28
lines changed

7 files changed

+28
-28
lines changed

dist/plotly-geo-assets.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plotly-with-meta.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* plotly.js v1.6.2
2+
* plotly.js v1.6.3
33
* Copyright 2012-2016, Plotly, Inc.
44
* All rights reserved.
55
* Licensed under the MIT license
@@ -57537,7 +57537,7 @@ exports.svgAttrs = {
5753757537
var Plotly = require('./plotly');
5753857538

5753957539
// package version injected by `npm run preprocess`
57540-
exports.version = '1.6.2';
57540+
exports.version = '1.6.3';
5754157541

5754257542
// plot api
5754357543
exports.plot = Plotly.plot;
@@ -85077,13 +85077,13 @@ proto.update = function(data) {
8507785077
config.vertexIntensity = data.intensity;
8507885078
config.colormap = parseColorScale(data.colorscale);
8507985079
}
85080-
else if(data.vertexColor) {
85081-
this.color = data.vertexColor[0];
85082-
config.vertexColors = parseColorArray(data.vertexColor);
85080+
else if(data.vertexcolor) {
85081+
this.color = data.vertexcolors[0];
85082+
config.vertexColors = parseColorArray(data.vertexcolor);
8508385083
}
85084-
else if(data.faceColor) {
85085-
this.color = data.faceColor[0];
85086-
config.cellColors = parseColorArray(data.faceColor);
85084+
else if(data.facecolor) {
85085+
this.color = data.facecolor[0];
85086+
config.cellColors = parseColorArray(data.facecolor);
8508785087
}
8508885088
else {
8508985089
this.color = data.color;
@@ -85185,8 +85185,8 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
8518585185
else {
8518685186
traceOut.showscale = false;
8518785187

85188-
if('vertexColor' in traceIn) coerce('vertexColor');
85189-
else if('faceColor' in traceIn) coerce('faceColor');
85188+
if('vertexcolor' in traceIn) coerce('vertexcolor');
85189+
else if('facecolor' in traceIn) coerce('facecolor');
8519085190
else coerce('color', defaultColor);
8519185191
}
8519285192

dist/plotly.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* plotly.js v1.6.2
2+
* plotly.js v1.6.3
33
* Copyright 2012-2016, Plotly, Inc.
44
* All rights reserved.
55
* Licensed under the MIT license
@@ -57269,7 +57269,7 @@ exports.svgAttrs = {
5726957269
var Plotly = require('./plotly');
5727057270

5727157271
// package version injected by `npm run preprocess`
57272-
exports.version = '1.6.2';
57272+
exports.version = '1.6.3';
5727357273

5727457274
// plot api
5727557275
exports.plot = Plotly.plot;
@@ -84124,13 +84124,13 @@ proto.update = function(data) {
8412484124
config.vertexIntensity = data.intensity;
8412584125
config.colormap = parseColorScale(data.colorscale);
8412684126
}
84127-
else if(data.vertexColor) {
84128-
this.color = data.vertexColor[0];
84129-
config.vertexColors = parseColorArray(data.vertexColor);
84127+
else if(data.vertexcolor) {
84128+
this.color = data.vertexcolors[0];
84129+
config.vertexColors = parseColorArray(data.vertexcolor);
8413084130
}
84131-
else if(data.faceColor) {
84132-
this.color = data.faceColor[0];
84133-
config.cellColors = parseColorArray(data.faceColor);
84131+
else if(data.facecolor) {
84132+
this.color = data.facecolor[0];
84133+
config.cellColors = parseColorArray(data.facecolor);
8413484134
}
8413584135
else {
8413684136
this.color = data.color;
@@ -84232,8 +84232,8 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout
8423284232
else {
8423384233
traceOut.showscale = false;
8423484234

84235-
if('vertexColor' in traceIn) coerce('vertexColor');
84236-
else if('faceColor' in traceIn) coerce('faceColor');
84235+
if('vertexcolor' in traceIn) coerce('vertexcolor');
84236+
else if('facecolor' in traceIn) coerce('facecolor');
8423784237
else coerce('color', defaultColor);
8423884238
}
8423984239

dist/plotly.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/assets/geo_assets.js

Lines changed: 1 addition & 1 deletion
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.6.2';
15+
exports.version = '1.6.3';
1616

1717
exports.topojson = saneTopojson;

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
var Plotly = require('./plotly');
1616

1717
// package version injected by `npm run preprocess`
18-
exports.version = '1.6.2';
18+
exports.version = '1.6.3';
1919

2020
// plot api
2121
exports.plot = Plotly.plot;

0 commit comments

Comments
 (0)