plotly.js 2.16.0 → 2.16.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plotly.js",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "description": "The open source javascript graphing library that powers plotly",
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",
@@ -128,13 +128,13 @@
128
128
  "browserify": "^17.0.0",
129
129
  "browserify-transform-tools": "^1.7.0",
130
130
  "bubleify": "^2.0.0",
131
- "canvas": "^2.9.3",
131
+ "canvas": "^2.10.1",
132
132
  "check-node-version": "^4.2.1",
133
133
  "chttps": "^1.0.6",
134
134
  "deep-equal": "^2.0.5",
135
135
  "derequire": "^2.1.1",
136
136
  "ecstatic": "^4.1.4",
137
- "eslint": "^8.19.0",
137
+ "eslint": "^8.25.0",
138
138
  "extra-iterable": "^2.5.22",
139
139
  "falafel": "^2.2.5",
140
140
  "fs-extra": "^10.1.0",
@@ -167,7 +167,7 @@
167
167
  "read-last-lines": "^1.8.0",
168
168
  "run-series": "^1.1.9",
169
169
  "sane-topojson": "^4.0.0",
170
- "sass": "^1.53.0",
170
+ "sass": "^1.55.0",
171
171
  "through2": "^4.0.2",
172
172
  "true-case-path": "^2.2.1",
173
173
  "watchify": "^4.0.0"
@@ -26,6 +26,9 @@ var proto = ChoroplethMapbox.prototype;
26
26
 
27
27
  proto.update = function(calcTrace) {
28
28
  this._update(convert(calcTrace));
29
+
30
+ // link ref for quick update during selections
31
+ calcTrace[0].trace._glTrace = this;
29
32
  };
30
33
 
31
34
  proto.updateOnSelect = function(calcTrace) {
@@ -130,7 +130,7 @@ proto.update = function update(calcTrace) {
130
130
  this.clusterEnabled = hasCluster;
131
131
  }
132
132
 
133
- // link ref for quick update during selections
133
+ // link ref for quick update during selections
134
134
  calcTrace[0].trace._glTrace = this;
135
135
  };
136
136
 
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use strict';
2
2
 
3
3
  // package version injected by `npm run preprocess`
4
- exports.version = '2.16.0';
4
+ exports.version = '2.16.1';