@antv/l7-component 2.9.32 → 2.9.33

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/lib/popup.js CHANGED
@@ -1,216 +1,317 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
-
19
- // src/popup.ts
20
- var popup_exports = {};
21
- __export(popup_exports, {
22
- default: () => Popup
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
23
7
  });
24
- module.exports = __toCommonJS(popup_exports);
25
- var import_l7_core = require("@antv/l7-core");
26
- var import_l7_utils = require("@antv/l7-utils");
27
- var import_eventemitter3 = require("eventemitter3");
28
- var Popup = class extends import_eventemitter3.EventEmitter {
29
- constructor(cfg) {
30
- super();
31
- this.popupOption = {
32
- ...this.getdefault(),
33
- ...cfg
34
- };
35
- (0, import_l7_utils.bindAll)(["update", "onClickClose", "remove"], this);
36
- }
37
- addTo(scene) {
38
- this.mapsService = scene.get(import_l7_core.TYPES.IMapService);
39
- this.sceneSerive = scene.get(import_l7_core.TYPES.ISceneService);
40
- this.mapsService.on("camerachange", this.update);
41
- this.mapsService.on("viewchange", this.update);
42
- this.scene = scene;
43
- this.update();
44
- if (this.popupOption.closeOnClick) {
45
- this.timeoutInstance = setTimeout(() => {
46
- this.mapsService.on("click", this.onClickClose);
47
- }, 30);
48
- }
49
- this.emit("open");
50
- return this;
51
- }
52
- close() {
53
- this.remove();
54
- }
55
- open() {
56
- this.addTo(this.scene);
57
- }
58
- setHTML(html) {
59
- const frag = window.document.createDocumentFragment();
60
- const temp = window.document.createElement("body");
61
- let child;
62
- temp.innerHTML = html;
63
- while (true) {
64
- child = temp.firstChild;
65
- if (!child) {
66
- break;
67
- }
68
- frag.appendChild(child);
69
- }
70
- return this.setDOMContent(frag);
8
+ exports.default = void 0;
9
+
10
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
11
+
12
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
13
+
14
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
15
+
16
+ var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
17
+
18
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
19
+
20
+ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
21
+
22
+ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
23
+
24
+ var _l7Core = require("@antv/l7-core");
25
+
26
+ var _l7Utils = require("@antv/l7-utils");
27
+
28
+ var _eventemitter = require("eventemitter3");
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
31
+
32
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
33
+
34
+ /** colse event */
35
+ var Popup = /*#__PURE__*/function (_EventEmitter) {
36
+ (0, _inherits2.default)(Popup, _EventEmitter);
37
+
38
+ var _super = _createSuper(Popup);
39
+
40
+ function Popup(cfg) {
41
+ var _this;
42
+
43
+ (0, _classCallCheck2.default)(this, Popup);
44
+ _this = _super.call(this);
45
+ _this.popupOption = (0, _objectSpread2.default)((0, _objectSpread2.default)({}, _this.getdefault()), cfg);
46
+ (0, _l7Utils.bindAll)(['update', 'onClickClose', 'remove'], (0, _assertThisInitialized2.default)(_this));
47
+ return _this;
71
48
  }
72
- setLnglat(lngLat) {
73
- this.lngLat = lngLat;
74
- if (Array.isArray(lngLat)) {
75
- this.lngLat = {
76
- lng: lngLat[0],
77
- lat: lngLat[1]
78
- };
49
+
50
+ (0, _createClass2.default)(Popup, [{
51
+ key: "addTo",
52
+ value: function addTo(scene) {
53
+ var _this2 = this;
54
+
55
+ this.mapsService = scene.get(_l7Core.TYPES.IMapService);
56
+ this.sceneSerive = scene.get(_l7Core.TYPES.ISceneService);
57
+ this.mapsService.on('camerachange', this.update);
58
+ this.mapsService.on('viewchange', this.update);
59
+ this.scene = scene;
60
+ this.update();
61
+
62
+ if (this.popupOption.closeOnClick) {
63
+ this.timeoutInstance = setTimeout(function () {
64
+ _this2.mapsService.on('click', _this2.onClickClose);
65
+ }, 30);
66
+ }
67
+
68
+ this.emit('open');
69
+ return this;
79
70
  }
80
- if (this.mapsService) {
81
- this.mapsService.on("camerachange", this.update);
82
- this.mapsService.on("viewchange", this.update);
71
+ }, {
72
+ key: "close",
73
+ value: function close() {
74
+ this.remove();
83
75
  }
84
- this.update();
85
- return this;
86
- }
87
- getLnglat() {
88
- return this.lngLat;
89
- }
90
- setText(text) {
91
- return this.setDOMContent(window.document.createTextNode(text));
92
- }
93
- setMaxWidth(maxWidth) {
94
- this.popupOption.maxWidth = maxWidth;
95
- this.update();
96
- return this;
97
- }
98
- setDOMContent(htmlNode) {
99
- this.createContent();
100
- this.content.appendChild(htmlNode);
101
- this.update();
102
- return this;
103
- }
104
- remove() {
105
- if (this.content) {
106
- this.removeDom(this.content);
107
- }
108
- if (this.container) {
109
- this.removeDom(this.container);
110
- delete this.container;
111
- }
112
- if (this.mapsService) {
113
- this.mapsService.off("camerachange", this.update);
114
- this.mapsService.off("viewchange", this.update);
115
- this.mapsService.off("click", this.onClickClose);
116
- delete this.mapsService;
117
- }
118
- clearTimeout(this.timeoutInstance);
119
- this.emit("close");
120
- return this;
121
- }
122
- isOpen() {
123
- return !!this.mapsService;
124
- }
125
- createContent() {
126
- if (this.content) {
127
- import_l7_utils.DOM.remove(this.content);
76
+ }, {
77
+ key: "open",
78
+ value: function open() {
79
+ this.addTo(this.scene);
128
80
  }
129
- this.content = import_l7_utils.DOM.create("div", "l7-popup-content", this.container);
130
- if (this.popupOption.closeButton) {
131
- this.closeButton = import_l7_utils.DOM.create("button", "l7-popup-close-button", this.content);
132
- if (this.popupOption.closeButtonOffsets) {
133
- this.closeButton.style.right = this.popupOption.closeButtonOffsets[0] + "px";
134
- this.closeButton.style.top = this.popupOption.closeButtonOffsets[1] + "px";
81
+ }, {
82
+ key: "setHTML",
83
+ value: function setHTML(html) {
84
+ var frag = window.document.createDocumentFragment();
85
+ var temp = window.document.createElement('body');
86
+ var child;
87
+ temp.innerHTML = html;
88
+
89
+ while (true) {
90
+ child = temp.firstChild;
91
+
92
+ if (!child) {
93
+ break;
94
+ }
95
+
96
+ frag.appendChild(child);
135
97
  }
136
- this.closeButton.setAttribute("aria-label", "Close popup");
137
- this.closeButton.innerHTML = "×";
138
- this.closeButton.addEventListener("click", this.onClickClose);
98
+
99
+ return this.setDOMContent(frag);
139
100
  }
140
- }
141
- creatDom(tagName, className, container) {
142
- const el = window.document.createElement(tagName);
143
- if (className !== void 0) {
144
- el.className = className;
101
+ }, {
102
+ key: "setLnglat",
103
+ value: function setLnglat(lngLat) {
104
+ this.lngLat = lngLat;
105
+
106
+ if (Array.isArray(lngLat)) {
107
+ this.lngLat = {
108
+ lng: lngLat[0],
109
+ lat: lngLat[1]
110
+ };
111
+ }
112
+
113
+ if (this.mapsService) {
114
+ this.mapsService.on('camerachange', this.update);
115
+ this.mapsService.on('viewchange', this.update);
116
+ }
117
+
118
+ this.update();
119
+ return this;
145
120
  }
146
- if (container) {
147
- container.appendChild(el);
121
+ }, {
122
+ key: "getLnglat",
123
+ value: function getLnglat() {
124
+ return this.lngLat;
148
125
  }
149
- return el;
150
- }
151
- removeDom(node) {
152
- if (node.parentNode) {
153
- node.parentNode.removeChild(node);
126
+ }, {
127
+ key: "setText",
128
+ value: function setText(text) {
129
+ return this.setDOMContent(window.document.createTextNode(text));
154
130
  }
155
- }
156
- getdefault() {
157
- return {
158
- closeButton: true,
159
- closeOnClick: true,
160
- maxWidth: "240px",
161
- offsets: [0, 0],
162
- anchor: import_l7_utils.anchorType.BOTTOM,
163
- className: "",
164
- stopPropagation: true
165
- };
166
- }
167
- onClickClose(e) {
168
- if (e.stopPropagation) {
169
- e.stopPropagation();
131
+ }, {
132
+ key: "setMaxWidth",
133
+ value: function setMaxWidth(maxWidth) {
134
+ this.popupOption.maxWidth = maxWidth;
135
+ this.update();
136
+ return this;
170
137
  }
171
- this.remove();
172
- }
173
- update() {
174
- const hasPosition = this.lngLat;
175
- const { className, maxWidth, anchor } = this.popupOption;
176
- if (!this.mapsService || !hasPosition || !this.content) {
177
- return;
178
- }
179
- const popupContainer = this.mapsService.getMarkerContainer();
180
- if (!this.container && popupContainer) {
181
- this.container = this.creatDom("div", "l7-popup", popupContainer);
182
- this.tip = this.creatDom("div", "l7-popup-tip", this.container);
183
- this.container.appendChild(this.content);
184
- if (className) {
185
- className.split(" ").forEach((name) => this.container.classList.add(name));
186
- }
187
- const { stopPropagation } = this.popupOption;
188
- if (stopPropagation) {
189
- ["mousemove", "mousedown", "mouseup", "click", "dblclick"].forEach((type) => {
190
- this.container.addEventListener(type, (e) => {
191
- e.stopPropagation();
138
+ }, {
139
+ key: "setDOMContent",
140
+ value: function setDOMContent(htmlNode) {
141
+ this.createContent();
142
+ this.content.appendChild(htmlNode);
143
+ this.update();
144
+ return this;
145
+ } // 移除popup
146
+
147
+ }, {
148
+ key: "remove",
149
+ value: function remove() {
150
+ if (this.content) {
151
+ this.removeDom(this.content);
152
+ }
153
+
154
+ if (this.container) {
155
+ this.removeDom(this.container); // @ts-ignore
156
+
157
+ delete this.container;
158
+ }
159
+
160
+ if (this.mapsService) {
161
+ // TODO: mapbox AMap 事件同步
162
+ this.mapsService.off('camerachange', this.update);
163
+ this.mapsService.off('viewchange', this.update);
164
+ this.mapsService.off('click', this.onClickClose); // @ts-ignore
165
+
166
+ delete this.mapsService;
167
+ }
168
+
169
+ clearTimeout(this.timeoutInstance);
170
+ this.emit('close');
171
+ return this;
172
+ }
173
+ }, {
174
+ key: "isOpen",
175
+ value: function isOpen() {
176
+ return !!this.mapsService;
177
+ }
178
+ }, {
179
+ key: "createContent",
180
+ value: function createContent() {
181
+ if (this.content) {
182
+ _l7Utils.DOM.remove(this.content);
183
+ }
184
+
185
+ this.content = _l7Utils.DOM.create('div', 'l7-popup-content', this.container);
186
+
187
+ if (this.popupOption.closeButton) {
188
+ this.closeButton = _l7Utils.DOM.create('button', 'l7-popup-close-button', this.content);
189
+
190
+ if (this.popupOption.closeButtonOffsets) {
191
+ // 关闭按钮的偏移
192
+ this.closeButton.style.right = this.popupOption.closeButtonOffsets[0] + 'px';
193
+ this.closeButton.style.top = this.popupOption.closeButtonOffsets[1] + 'px';
194
+ } // this.closeButton.type = 'button';
195
+
196
+
197
+ this.closeButton.setAttribute('aria-label', 'Close popup');
198
+ this.closeButton.innerHTML = '×';
199
+ this.closeButton.addEventListener('click', this.onClickClose);
200
+ }
201
+ }
202
+ }, {
203
+ key: "creatDom",
204
+ value: function creatDom(tagName, className, container) {
205
+ var el = window.document.createElement(tagName);
206
+
207
+ if (className !== undefined) {
208
+ el.className = className;
209
+ }
210
+
211
+ if (container) {
212
+ container.appendChild(el);
213
+ }
214
+
215
+ return el;
216
+ }
217
+ }, {
218
+ key: "removeDom",
219
+ value: function removeDom(node) {
220
+ if (node.parentNode) {
221
+ node.parentNode.removeChild(node);
222
+ }
223
+ }
224
+ }, {
225
+ key: "getdefault",
226
+ value: function getdefault() {
227
+ return {
228
+ closeButton: true,
229
+ closeOnClick: true,
230
+ maxWidth: '240px',
231
+ offsets: [0, 0],
232
+ anchor: _l7Utils.anchorType.BOTTOM,
233
+ className: '',
234
+ stopPropagation: true
235
+ };
236
+ }
237
+ }, {
238
+ key: "onClickClose",
239
+ value: function onClickClose(e) {
240
+ if (e.stopPropagation) {
241
+ e.stopPropagation();
242
+ }
243
+
244
+ this.remove();
245
+ }
246
+ }, {
247
+ key: "update",
248
+ value: function update() {
249
+ var _this3 = this;
250
+
251
+ var hasPosition = this.lngLat;
252
+ var _this$popupOption = this.popupOption,
253
+ className = _this$popupOption.className,
254
+ maxWidth = _this$popupOption.maxWidth,
255
+ anchor = _this$popupOption.anchor;
256
+
257
+ if (!this.mapsService || !hasPosition || !this.content) {
258
+ return;
259
+ }
260
+
261
+ var popupContainer = this.mapsService.getMarkerContainer();
262
+
263
+ if (!this.container && popupContainer) {
264
+ this.container = this.creatDom('div', 'l7-popup', popupContainer);
265
+ this.tip = this.creatDom('div', 'l7-popup-tip', this.container);
266
+ this.container.appendChild(this.content);
267
+
268
+ if (className) {
269
+ className.split(' ').forEach(function (name) {
270
+ return _this3.container.classList.add(name);
192
271
  });
193
- });
272
+ } // 高德地图需要阻止事件冒泡 // 测试mapbox 地图不需要添加
273
+
274
+
275
+ var stopPropagation = this.popupOption.stopPropagation;
276
+
277
+ if (stopPropagation) {
278
+ ['mousemove', 'mousedown', 'mouseup', 'click', 'dblclick'].forEach(function (type) {
279
+ _this3.container.addEventListener(type, function (e) {
280
+ e.stopPropagation();
281
+ });
282
+ });
283
+ }
284
+
285
+ this.container.style.whiteSpace = 'nowrap';
286
+ }
287
+
288
+ if (maxWidth && this.container.style.maxWidth !== maxWidth) {
289
+ this.container.style.maxWidth = maxWidth;
194
290
  }
195
- this.container.style.whiteSpace = "nowrap";
291
+
292
+ this.updatePosition();
293
+
294
+ _l7Utils.DOM.setTransform(this.container, "".concat(_l7Utils.anchorTranslate[anchor]));
295
+
296
+ (0, _l7Utils.applyAnchorClass)(this.container, anchor, 'popup');
196
297
  }
197
- if (maxWidth && this.container.style.maxWidth !== maxWidth) {
198
- this.container.style.maxWidth = maxWidth;
298
+ }, {
299
+ key: "updatePosition",
300
+ value: function updatePosition() {
301
+ if (!this.mapsService) {
302
+ return;
303
+ }
304
+
305
+ var _this$lngLat = this.lngLat,
306
+ lng = _this$lngLat.lng,
307
+ lat = _this$lngLat.lat;
308
+ var offsets = this.popupOption.offsets;
309
+ var pos = this.mapsService.lngLatToContainer([lng, lat]);
310
+ this.container.style.left = pos.x + offsets[0] + 'px';
311
+ this.container.style.top = pos.y - offsets[1] + 'px';
199
312
  }
200
- this.updatePosition();
201
- import_l7_utils.DOM.setTransform(this.container, `${import_l7_utils.anchorTranslate[anchor]}`);
202
- (0, import_l7_utils.applyAnchorClass)(this.container, anchor, "popup");
203
- }
204
- updatePosition() {
205
- if (!this.mapsService) {
206
- return;
207
- }
208
- const { lng, lat } = this.lngLat;
209
- const { offsets } = this.popupOption;
210
- const pos = this.mapsService.lngLatToContainer([lng, lat]);
211
- this.container.style.left = pos.x + offsets[0] + "px";
212
- this.container.style.top = pos.y - offsets[1] + "px";
213
- }
214
- };
215
- // Annotate the CommonJS export names for ESM import in node:
216
- 0 && (module.exports = {});
313
+ }]);
314
+ return Popup;
315
+ }(_eventemitter.EventEmitter);
316
+
317
+ exports.default = Popup;
@@ -1,63 +1,45 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
18
2
 
19
- // src/utils/anchor.ts
20
- var anchor_exports = {};
21
- __export(anchor_exports, {
22
- anchorTranslate: () => anchorTranslate,
23
- anchorType: () => anchorType,
24
- applyAnchorClass: () => applyAnchorClass
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
25
5
  });
26
- module.exports = __toCommonJS(anchor_exports);
27
- var anchorType = /* @__PURE__ */ ((anchorType2) => {
28
- anchorType2["CENTER"] = "center";
29
- anchorType2["TOP"] = "top";
30
- anchorType2["TOP-LEFT"] = "top-left";
31
- anchorType2["TOP-RIGHT"] = "top-right";
32
- anchorType2["BOTTOM"] = "bottom";
33
- anchorType2["BOTTOM-LEFT"] = "bottom-left";
34
- anchorType2["LEFT"] = "left";
35
- anchorType2["RIGHT"] = "right";
36
- return anchorType2;
37
- })(anchorType || {});
6
+ exports.anchorType = exports.anchorTranslate = void 0;
7
+ exports.applyAnchorClass = applyAnchorClass;
8
+ var anchorType;
9
+ exports.anchorType = anchorType;
10
+
11
+ (function (anchorType) {
12
+ anchorType["CENTER"] = "center";
13
+ anchorType["TOP"] = "top";
14
+ anchorType["TOP-LEFT"] = "top-left";
15
+ anchorType["TOP-RIGHT"] = "top-right";
16
+ anchorType["BOTTOM"] = "bottom";
17
+ anchorType["BOTTOM-LEFT"] = "bottom-left";
18
+ anchorType["LEFT"] = "left";
19
+ anchorType["RIGHT"] = "right";
20
+ })(anchorType || (exports.anchorType = anchorType = {}));
21
+
38
22
  var anchorTranslate = {
39
- center: "translate(-50%,-50%)",
40
- top: "translate(-50%,0)",
41
- "top-left": "translate(0,0)",
42
- "top-right": "translate(-100%,0)",
43
- bottom: "translate(-50%,-100%)",
44
- "bottom-left": "translate(0,-100%)",
45
- "bottom-right": "translate(-100%,-100%)",
46
- left: "translate(0,-50%)",
47
- right: "translate(-100%,-50%)"
23
+ center: 'translate(-50%,-50%)',
24
+ top: 'translate(-50%,0)',
25
+ 'top-left': 'translate(0,0)',
26
+ 'top-right': 'translate(-100%,0)',
27
+ bottom: 'translate(-50%,-100%)',
28
+ 'bottom-left': 'translate(0,-100%)',
29
+ 'bottom-right': 'translate(-100%,-100%)',
30
+ left: 'translate(0,-50%)',
31
+ right: 'translate(-100%,-50%)'
48
32
  };
33
+ exports.anchorTranslate = anchorTranslate;
34
+
49
35
  function applyAnchorClass(element, anchor, prefix) {
50
- const classList = element.classList;
51
- for (const key in anchorTranslate) {
36
+ var classList = element.classList;
37
+
38
+ for (var key in anchorTranslate) {
52
39
  if (anchorTranslate.hasOwnProperty(key)) {
53
- classList.remove(`l7-${prefix}-anchor-${key}`);
40
+ classList.remove("l7-".concat(prefix, "-anchor-").concat(key));
54
41
  }
55
42
  }
56
- classList.add(`l7-${prefix}-anchor-${anchor}`);
57
- }
58
- // Annotate the CommonJS export names for ESM import in node:
59
- 0 && (module.exports = {
60
- anchorTranslate,
61
- anchorType,
62
- applyAnchorClass
63
- });
43
+
44
+ classList.add("l7-".concat(prefix, "-anchor-").concat(anchor));
45
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-component",
3
- "version": "2.9.32",
3
+ "version": "2.9.33",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -25,8 +25,8 @@
25
25
  "author": "lzxue",
26
26
  "license": "ISC",
27
27
  "dependencies": {
28
- "@antv/l7-core": "2.9.32",
29
- "@antv/l7-utils": "2.9.32",
28
+ "@antv/l7-core": "2.9.33",
29
+ "@antv/l7-utils": "2.9.33",
30
30
  "@babel/runtime": "^7.7.7",
31
31
  "eventemitter3": "^4.0.0",
32
32
  "inversify": "^5.0.1",
@@ -35,9 +35,9 @@
35
35
  "supercluster": "^7.0.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@antv/l7-test-utils": "2.9.32"
38
+ "@antv/l7-test-utils": "2.9.33"
39
39
  },
40
- "gitHead": "d76c824205f3dc3dc719c13cce97ffb23ad4e533",
40
+ "gitHead": "87c41d6197d0cb14993201968be0378af6429164",
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  }