@antv/l7-renderer 2.10.0 → 2.10.2

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.
@@ -163,7 +163,9 @@ var ReglModel = /*#__PURE__*/function () {
163
163
  if (!pick) {
164
164
  this.drawCommand(reglDrawProps);
165
165
  } else {
166
- this.drawPickCommand && this.drawPickCommand(reglDrawProps);
166
+ if (this.drawPickCommand) {
167
+ this.drawPickCommand(reglDrawProps);
168
+ }
167
169
  } // this.drawCommand(reglDrawProps);
168
170
  // this.drawPickCommand(reglDrawProps);
169
171
 
@@ -147,7 +147,9 @@ var ReglModel = class {
147
147
  if (!pick) {
148
148
  this.drawCommand(reglDrawProps);
149
149
  } else {
150
- this.drawPickCommand && this.drawPickCommand(reglDrawProps);
150
+ if (this.drawPickCommand) {
151
+ this.drawPickCommand(reglDrawProps);
152
+ }
151
153
  }
152
154
  }
153
155
  destroy() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-renderer",
3
- "version": "2.10.0",
3
+ "version": "2.10.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -25,19 +25,19 @@
25
25
  "author": "xiaoiver",
26
26
  "license": "ISC",
27
27
  "devDependencies": {
28
- "@antv/l7-test-utils": "2.10.0",
28
+ "@antv/l7-test-utils": "2.10.2",
29
29
  "gl": "^5.0.3"
30
30
  },
31
31
  "dependencies": {
32
- "@antv/l7-core": "2.10.0",
33
- "@antv/l7-utils": "2.10.0",
32
+ "@antv/l7-core": "2.10.2",
33
+ "@antv/l7-utils": "2.10.2",
34
34
  "@babel/runtime": "^7.7.7",
35
35
  "inversify": "^5.0.1",
36
36
  "l7regl": "^0.0.20",
37
37
  "lodash": "^4.17.15",
38
38
  "reflect-metadata": "^0.1.13"
39
39
  },
40
- "gitHead": "3a18f28d0c92b49230f1fe3c1acd8c5db820bd63",
40
+ "gitHead": "2182dc4ba3ea9e59e964ea853eff2733e5861357",
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  }