@vitessce/scatterplot 3.5.7 → 3.5.9
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/dist/{deflate-2118efad.js → deflate-485af92e.js} +1 -1
- package/dist/{index-b39b4661.js → index-6f1ecd35.js} +275 -431
- package/dist/index.js +1 -1
- package/dist/{jpeg-ce0e20fd.js → jpeg-6a951bc6.js} +1 -1
- package/dist/{lerc-faeaf33e.js → lerc-36211a81.js} +1 -1
- package/dist/{lzw-b39b8a2d.js → lzw-cdee9c4e.js} +1 -1
- package/dist/{packbits-63613d30.js → packbits-7bc2030b.js} +1 -1
- package/dist/{raw-f54f3630.js → raw-8e26cce5.js} +1 -1
- package/dist/{webimage-37fd74e0.js → webimage-d457d41a.js} +1 -1
- package/package.json +7 -7
|
@@ -1629,7 +1629,7 @@ var reTrimStart = /^\s+/;
|
|
|
1629
1629
|
function baseTrim(string) {
|
|
1630
1630
|
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
|
1631
1631
|
}
|
|
1632
|
-
function isObject$
|
|
1632
|
+
function isObject$5(value) {
|
|
1633
1633
|
var type2 = typeof value;
|
|
1634
1634
|
return value != null && (type2 == "object" || type2 == "function");
|
|
1635
1635
|
}
|
|
@@ -1645,9 +1645,9 @@ function toNumber$1(value) {
|
|
|
1645
1645
|
if (isSymbol$1(value)) {
|
|
1646
1646
|
return NAN$1;
|
|
1647
1647
|
}
|
|
1648
|
-
if (isObject$
|
|
1648
|
+
if (isObject$5(value)) {
|
|
1649
1649
|
var other = typeof value.valueOf == "function" ? value.valueOf() : value;
|
|
1650
|
-
value = isObject$
|
|
1650
|
+
value = isObject$5(other) ? other + "" : other;
|
|
1651
1651
|
}
|
|
1652
1652
|
if (typeof value != "string") {
|
|
1653
1653
|
return value === 0 ? value : +value;
|
|
@@ -1669,8 +1669,8 @@ function toFinite$1(value) {
|
|
|
1669
1669
|
return value === value ? value : 0;
|
|
1670
1670
|
}
|
|
1671
1671
|
var asyncTag = "[object AsyncFunction]", funcTag$1 = "[object Function]", genTag = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
|
|
1672
|
-
function isFunction$
|
|
1673
|
-
if (!isObject$
|
|
1672
|
+
function isFunction$4(value) {
|
|
1673
|
+
if (!isObject$5(value)) {
|
|
1674
1674
|
return false;
|
|
1675
1675
|
}
|
|
1676
1676
|
var tag = baseGetTag(value);
|
|
@@ -1709,10 +1709,10 @@ var reIsNative = RegExp(
|
|
|
1709
1709
|
"^" + funcToString.call(hasOwnProperty$9).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
|
1710
1710
|
);
|
|
1711
1711
|
function baseIsNative(value) {
|
|
1712
|
-
if (!isObject$
|
|
1712
|
+
if (!isObject$5(value) || isMasked(value)) {
|
|
1713
1713
|
return false;
|
|
1714
1714
|
}
|
|
1715
|
-
var pattern = isFunction$
|
|
1715
|
+
var pattern = isFunction$4(value) ? reIsNative : reIsHostCtor;
|
|
1716
1716
|
return pattern.test(toSource(value));
|
|
1717
1717
|
}
|
|
1718
1718
|
function getValue$1(object2, key) {
|
|
@@ -1739,10 +1739,10 @@ function isLength(value) {
|
|
|
1739
1739
|
return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
|
|
1740
1740
|
}
|
|
1741
1741
|
function isArrayLike(value) {
|
|
1742
|
-
return value != null && isLength(value.length) && !isFunction$
|
|
1742
|
+
return value != null && isLength(value.length) && !isFunction$4(value);
|
|
1743
1743
|
}
|
|
1744
1744
|
function isIterateeCall(value, index2, object2) {
|
|
1745
|
-
if (!isObject$
|
|
1745
|
+
if (!isObject$5(object2)) {
|
|
1746
1746
|
return false;
|
|
1747
1747
|
}
|
|
1748
1748
|
var type2 = typeof index2;
|
|
@@ -2388,7 +2388,7 @@ function debounce$2(func, wait, options) {
|
|
|
2388
2388
|
throw new TypeError(FUNC_ERROR_TEXT$1);
|
|
2389
2389
|
}
|
|
2390
2390
|
wait = toNumber$1(wait) || 0;
|
|
2391
|
-
if (isObject$
|
|
2391
|
+
if (isObject$5(options)) {
|
|
2392
2392
|
leading = !!options.leading;
|
|
2393
2393
|
maxing = "maxWait" in options;
|
|
2394
2394
|
maxWait = maxing ? nativeMax$2(toNumber$1(options.maxWait) || 0, wait) : maxWait;
|
|
@@ -3565,16 +3565,16 @@ function dirname(url) {
|
|
|
3565
3565
|
return slashIndex >= 0 ? url.substr(0, slashIndex) : "";
|
|
3566
3566
|
}
|
|
3567
3567
|
const isBoolean = (x2) => typeof x2 === "boolean";
|
|
3568
|
-
const isFunction$
|
|
3569
|
-
const isObject$
|
|
3570
|
-
const isPureObject = (x2) => isObject$
|
|
3568
|
+
const isFunction$3 = (x2) => typeof x2 === "function";
|
|
3569
|
+
const isObject$4 = (x2) => x2 !== null && typeof x2 === "object";
|
|
3570
|
+
const isPureObject = (x2) => isObject$4(x2) && x2.constructor === {}.constructor;
|
|
3571
3571
|
const isIterable = (x2) => x2 && typeof x2[Symbol.iterator] === "function";
|
|
3572
3572
|
const isAsyncIterable$1 = (x2) => x2 && typeof x2[Symbol.asyncIterator] === "function";
|
|
3573
3573
|
const isResponse = (x2) => typeof Response !== "undefined" && x2 instanceof Response || x2 && x2.arrayBuffer && x2.text && x2.json;
|
|
3574
3574
|
const isBlob = (x2) => typeof Blob !== "undefined" && x2 instanceof Blob;
|
|
3575
3575
|
const isBuffer$1 = (x2) => x2 && typeof x2 === "object" && x2.isBuffer;
|
|
3576
|
-
const isReadableDOMStream = (x2) => typeof ReadableStream !== "undefined" && x2 instanceof ReadableStream || isObject$
|
|
3577
|
-
const isReadableNodeStream = (x2) => isObject$
|
|
3576
|
+
const isReadableDOMStream = (x2) => typeof ReadableStream !== "undefined" && x2 instanceof ReadableStream || isObject$4(x2) && isFunction$3(x2.tee) && isFunction$3(x2.cancel) && isFunction$3(x2.getReader);
|
|
3577
|
+
const isReadableNodeStream = (x2) => isObject$4(x2) && isFunction$3(x2.read) && isFunction$3(x2.pipe) && isBoolean(x2.readable);
|
|
3578
3578
|
const isReadableStream = (x2) => isReadableDOMStream(x2) || isReadableNodeStream(x2);
|
|
3579
3579
|
const DATA_URL_PATTERN = /^data:([-\w.]+\/[-\w.+]+)(;|,)/;
|
|
3580
3580
|
const MIME_TYPE_PATTERN = /^([-\w.]+\/[-\w.+]+)/;
|
|
@@ -4374,7 +4374,7 @@ function getFetchFunction(options, context) {
|
|
|
4374
4374
|
if (typeof fetchOptions.fetch === "function") {
|
|
4375
4375
|
return fetchOptions.fetch;
|
|
4376
4376
|
}
|
|
4377
|
-
if (isObject$
|
|
4377
|
+
if (isObject$4(fetchOptions.fetch)) {
|
|
4378
4378
|
return (url) => fetchFile(url, fetchOptions);
|
|
4379
4379
|
}
|
|
4380
4380
|
if (context !== null && context !== void 0 && context.fetch) {
|
|
@@ -4395,7 +4395,7 @@ function validateOptionsObject(options, id, defaultOptions2, deprecatedOptions,
|
|
|
4395
4395
|
const loaderName = id || "Top level";
|
|
4396
4396
|
const prefix2 = id ? "".concat(id, ".") : "";
|
|
4397
4397
|
for (const key in options) {
|
|
4398
|
-
const isSubOptions = !id && isObject$
|
|
4398
|
+
const isSubOptions = !id && isObject$4(options[key]);
|
|
4399
4399
|
const isBaseUriOption = key === "baseUri" && !id;
|
|
4400
4400
|
const isWorkerUrlOption = key === "workerUrl" && id;
|
|
4401
4401
|
if (!(key in defaultOptions2) && !isBaseUriOption && !isWorkerUrlOption) {
|
|
@@ -23363,9 +23363,9 @@ class Controller {
|
|
|
23363
23363
|
updateTransition() {
|
|
23364
23364
|
this.transitionManager.updateTransition();
|
|
23365
23365
|
}
|
|
23366
|
-
toggleEvents(
|
|
23366
|
+
toggleEvents(eventNames, enabled) {
|
|
23367
23367
|
if (this.eventManager) {
|
|
23368
|
-
|
|
23368
|
+
eventNames.forEach((eventName) => {
|
|
23369
23369
|
if (this._events[eventName] !== enabled) {
|
|
23370
23370
|
this._events[eventName] = enabled;
|
|
23371
23371
|
if (enabled) {
|
|
@@ -26816,18 +26816,18 @@ var hammer$1 = { exports: {} };
|
|
|
26816
26816
|
emit: function(input) {
|
|
26817
26817
|
var self2 = this;
|
|
26818
26818
|
var state = this.state;
|
|
26819
|
-
function
|
|
26819
|
+
function emit(event) {
|
|
26820
26820
|
self2.manager.emit(event, input);
|
|
26821
26821
|
}
|
|
26822
26822
|
if (state < STATE_ENDED) {
|
|
26823
|
-
|
|
26823
|
+
emit(self2.options.event + stateStr(state));
|
|
26824
26824
|
}
|
|
26825
|
-
|
|
26825
|
+
emit(self2.options.event);
|
|
26826
26826
|
if (input.additionalEvent) {
|
|
26827
|
-
|
|
26827
|
+
emit(input.additionalEvent);
|
|
26828
26828
|
}
|
|
26829
26829
|
if (state >= STATE_ENDED) {
|
|
26830
|
-
|
|
26830
|
+
emit(self2.options.event + stateStr(state));
|
|
26831
26831
|
}
|
|
26832
26832
|
},
|
|
26833
26833
|
/**
|
|
@@ -28187,7 +28187,7 @@ class EventRegistrar {
|
|
|
28187
28187
|
isEmpty() {
|
|
28188
28188
|
return !this._active;
|
|
28189
28189
|
}
|
|
28190
|
-
add(type2, handler, options,
|
|
28190
|
+
add(type2, handler, options, once = false, passive = false) {
|
|
28191
28191
|
const { handlers, handlersByElement } = this;
|
|
28192
28192
|
let opts = DEFAULT_OPTIONS$2;
|
|
28193
28193
|
if (typeof options === "string" || options && options.addEventListener) {
|
|
@@ -28206,7 +28206,7 @@ class EventRegistrar {
|
|
|
28206
28206
|
srcElement: opts.srcElement,
|
|
28207
28207
|
priority: opts.priority
|
|
28208
28208
|
};
|
|
28209
|
-
if (
|
|
28209
|
+
if (once) {
|
|
28210
28210
|
entry.once = true;
|
|
28211
28211
|
}
|
|
28212
28212
|
if (passive) {
|
|
@@ -28254,7 +28254,7 @@ class EventRegistrar {
|
|
|
28254
28254
|
};
|
|
28255
28255
|
const entriesToRemove = [];
|
|
28256
28256
|
for (let i2 = 0; i2 < entries.length; i2++) {
|
|
28257
|
-
const { type: type2, handler, once
|
|
28257
|
+
const { type: type2, handler, once } = entries[i2];
|
|
28258
28258
|
handler({
|
|
28259
28259
|
...event,
|
|
28260
28260
|
// @ts-ignore
|
|
@@ -28262,7 +28262,7 @@ class EventRegistrar {
|
|
|
28262
28262
|
stopPropagation,
|
|
28263
28263
|
stopImmediatePropagation
|
|
28264
28264
|
});
|
|
28265
|
-
if (
|
|
28265
|
+
if (once) {
|
|
28266
28266
|
entriesToRemove.push(entries[i2]);
|
|
28267
28267
|
}
|
|
28268
28268
|
if (immediatePropagationStopped) {
|
|
@@ -28443,11 +28443,11 @@ class EventManager {
|
|
|
28443
28443
|
/**
|
|
28444
28444
|
* Process the event registration for a single event + handler.
|
|
28445
28445
|
*/
|
|
28446
|
-
_addEventHandler(event, handler, opts,
|
|
28446
|
+
_addEventHandler(event, handler, opts, once, passive) {
|
|
28447
28447
|
if (typeof event !== "string") {
|
|
28448
28448
|
opts = handler;
|
|
28449
28449
|
for (const eventName in event) {
|
|
28450
|
-
this._addEventHandler(eventName, event[eventName], opts,
|
|
28450
|
+
this._addEventHandler(eventName, event[eventName], opts, once, passive);
|
|
28451
28451
|
}
|
|
28452
28452
|
return;
|
|
28453
28453
|
}
|
|
@@ -28462,7 +28462,7 @@ class EventManager {
|
|
|
28462
28462
|
manager.on(eventAlias, eventRegistrar.handleEvent);
|
|
28463
28463
|
}
|
|
28464
28464
|
}
|
|
28465
|
-
eventRegistrar.add(event, handler, opts,
|
|
28465
|
+
eventRegistrar.add(event, handler, opts, once, passive);
|
|
28466
28466
|
if (!eventRegistrar.isEmpty()) {
|
|
28467
28467
|
this._toggleRecognizer(eventRegistrar.recognizerName, true);
|
|
28468
28468
|
}
|
|
@@ -31183,7 +31183,7 @@ function getPropTypes(props) {
|
|
|
31183
31183
|
const ERR_NOT_OBJECT = "count(): argument not an object";
|
|
31184
31184
|
const ERR_NOT_CONTAINER = "count(): argument not a container";
|
|
31185
31185
|
function count(container) {
|
|
31186
|
-
if (!isObject$
|
|
31186
|
+
if (!isObject$3(container)) {
|
|
31187
31187
|
throw new Error(ERR_NOT_OBJECT);
|
|
31188
31188
|
}
|
|
31189
31189
|
if (typeof container.count === "function") {
|
|
@@ -31203,7 +31203,7 @@ function count(container) {
|
|
|
31203
31203
|
function isPlainObject$1(value) {
|
|
31204
31204
|
return value !== null && typeof value === "object" && value.constructor === Object;
|
|
31205
31205
|
}
|
|
31206
|
-
function isObject$
|
|
31206
|
+
function isObject$3(value) {
|
|
31207
31207
|
return value !== null && typeof value === "object";
|
|
31208
31208
|
}
|
|
31209
31209
|
function mergeShaders(target, source) {
|
|
@@ -70440,7 +70440,7 @@ function point(coordinates2, properties, options) {
|
|
|
70440
70440
|
if (coordinates2.length < 2) {
|
|
70441
70441
|
throw new Error("coordinates must be at least 2 numbers long");
|
|
70442
70442
|
}
|
|
70443
|
-
if (!isNumber(coordinates2[0]) || !isNumber(coordinates2[1])) {
|
|
70443
|
+
if (!isNumber$1(coordinates2[0]) || !isNumber$1(coordinates2[1])) {
|
|
70444
70444
|
throw new Error("coordinates must contain numbers");
|
|
70445
70445
|
}
|
|
70446
70446
|
var geom = {
|
|
@@ -70641,10 +70641,10 @@ function convertArea(area2, originalUnit, finalUnit) {
|
|
|
70641
70641
|
}
|
|
70642
70642
|
return area2 / startFactor * finalFactor;
|
|
70643
70643
|
}
|
|
70644
|
-
function isNumber(num) {
|
|
70644
|
+
function isNumber$1(num) {
|
|
70645
70645
|
return !isNaN(num) && num !== null && !Array.isArray(num);
|
|
70646
70646
|
}
|
|
70647
|
-
function isObject$
|
|
70647
|
+
function isObject$2(input) {
|
|
70648
70648
|
return !!input && input.constructor === Object;
|
|
70649
70649
|
}
|
|
70650
70650
|
function validateBBox(bbox2) {
|
|
@@ -70658,7 +70658,7 @@ function validateBBox(bbox2) {
|
|
|
70658
70658
|
throw new Error("bbox must be an Array of 4 or 6 numbers");
|
|
70659
70659
|
}
|
|
70660
70660
|
bbox2.forEach(function(num) {
|
|
70661
|
-
if (!isNumber(num)) {
|
|
70661
|
+
if (!isNumber$1(num)) {
|
|
70662
70662
|
throw new Error("bbox must only contain numbers");
|
|
70663
70663
|
}
|
|
70664
70664
|
});
|
|
@@ -70684,8 +70684,8 @@ const es$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
|
|
|
70684
70684
|
featureCollection: featureCollection$1,
|
|
70685
70685
|
geometry,
|
|
70686
70686
|
geometryCollection,
|
|
70687
|
-
isNumber,
|
|
70688
|
-
isObject: isObject$
|
|
70687
|
+
isNumber: isNumber$1,
|
|
70688
|
+
isObject: isObject$2,
|
|
70689
70689
|
lengthToDegrees,
|
|
70690
70690
|
lengthToRadians,
|
|
70691
70691
|
lineString,
|
|
@@ -71127,7 +71127,7 @@ function lineReduce$1(geojson, callback, initialValue) {
|
|
|
71127
71127
|
}
|
|
71128
71128
|
function findSegment$1(geojson, options) {
|
|
71129
71129
|
options = options || {};
|
|
71130
|
-
if (!isObject$
|
|
71130
|
+
if (!isObject$2(options))
|
|
71131
71131
|
throw new Error("options is invalid");
|
|
71132
71132
|
var featureIndex = options.featureIndex || 0;
|
|
71133
71133
|
var multiFeatureIndex = options.multiFeatureIndex || 0;
|
|
@@ -71219,7 +71219,7 @@ function findSegment$1(geojson, options) {
|
|
|
71219
71219
|
}
|
|
71220
71220
|
function findPoint$1(geojson, options) {
|
|
71221
71221
|
options = options || {};
|
|
71222
|
-
if (!isObject$
|
|
71222
|
+
if (!isObject$2(options))
|
|
71223
71223
|
throw new Error("options is invalid");
|
|
71224
71224
|
var featureIndex = options.featureIndex || 0;
|
|
71225
71225
|
var multiFeatureIndex = options.multiFeatureIndex || 0;
|
|
@@ -71363,7 +71363,7 @@ function getCoords$1(coords) {
|
|
|
71363
71363
|
throw new Error("coords must be GeoJSON Feature, Geometry Object or an Array");
|
|
71364
71364
|
}
|
|
71365
71365
|
function containsNumber$1(coordinates2) {
|
|
71366
|
-
if (coordinates2.length > 1 && isNumber(coordinates2[0]) && isNumber(coordinates2[1])) {
|
|
71366
|
+
if (coordinates2.length > 1 && isNumber$1(coordinates2[0]) && isNumber$1(coordinates2[1])) {
|
|
71367
71367
|
return true;
|
|
71368
71368
|
}
|
|
71369
71369
|
if (Array.isArray(coordinates2[0]) && coordinates2[0].length) {
|
|
@@ -74419,7 +74419,7 @@ var hasSymbols2 = typeof Symbol === "function" && typeof Symbol("foo") === "symb
|
|
|
74419
74419
|
var toStr$1 = Object.prototype.toString;
|
|
74420
74420
|
var concat = Array.prototype.concat;
|
|
74421
74421
|
var defineDataProperty2 = defineDataProperty$1;
|
|
74422
|
-
var isFunction$
|
|
74422
|
+
var isFunction$2 = function(fn) {
|
|
74423
74423
|
return typeof fn === "function" && toStr$1.call(fn) === "[object Function]";
|
|
74424
74424
|
};
|
|
74425
74425
|
var supportsDescriptors$2 = hasPropertyDescriptors_1();
|
|
@@ -74429,7 +74429,7 @@ var defineProperty$3 = function(object2, name2, value, predicate) {
|
|
|
74429
74429
|
if (object2[name2] === value) {
|
|
74430
74430
|
return;
|
|
74431
74431
|
}
|
|
74432
|
-
} else if (!isFunction$
|
|
74432
|
+
} else if (!isFunction$2(predicate) || !predicate()) {
|
|
74433
74433
|
return;
|
|
74434
74434
|
}
|
|
74435
74435
|
}
|
|
@@ -74813,7 +74813,7 @@ function lineOverlap(line1, line2, options) {
|
|
|
74813
74813
|
options = {};
|
|
74814
74814
|
}
|
|
74815
74815
|
options = options || {};
|
|
74816
|
-
if (!isObject$
|
|
74816
|
+
if (!isObject$2(options))
|
|
74817
74817
|
throw new Error("options is invalid");
|
|
74818
74818
|
var tolerance = options.tolerance || 0;
|
|
74819
74819
|
var features = [];
|
|
@@ -75373,19 +75373,19 @@ var jsts_min = { exports: {} };
|
|
|
75373
75373
|
}, Object.defineProperties(w2, O);
|
|
75374
75374
|
var T = function(t2, e3) {
|
|
75375
75375
|
return t2.interfaces_ && t2.interfaces_().indexOf(e3) > -1;
|
|
75376
|
-
},
|
|
75376
|
+
}, R = function() {
|
|
75377
75377
|
}, P = { LOG_10: { configurable: true } };
|
|
75378
|
-
|
|
75378
|
+
R.prototype.interfaces_ = function() {
|
|
75379
75379
|
return [];
|
|
75380
|
-
},
|
|
75381
|
-
return
|
|
75382
|
-
},
|
|
75380
|
+
}, R.prototype.getClass = function() {
|
|
75381
|
+
return R;
|
|
75382
|
+
}, R.log10 = function(t2) {
|
|
75383
75383
|
var e3 = Math.log(t2);
|
|
75384
|
-
return v.isInfinite(e3) ? e3 : v.isNaN(e3) ? e3 : e3 /
|
|
75385
|
-
},
|
|
75384
|
+
return v.isInfinite(e3) ? e3 : v.isNaN(e3) ? e3 : e3 / R.LOG_10;
|
|
75385
|
+
}, R.min = function(t2, e3, n3, i3) {
|
|
75386
75386
|
var r3 = t2;
|
|
75387
75387
|
return e3 < r3 && (r3 = e3), n3 < r3 && (r3 = n3), i3 < r3 && (r3 = i3), r3;
|
|
75388
|
-
},
|
|
75388
|
+
}, R.clamp = function() {
|
|
75389
75389
|
if ("number" == typeof arguments[2] && "number" == typeof arguments[0] && "number" == typeof arguments[1]) {
|
|
75390
75390
|
var t2 = arguments[0], e3 = arguments[1], n3 = arguments[2];
|
|
75391
75391
|
return t2 < e3 ? e3 : t2 > n3 ? n3 : t2;
|
|
@@ -75394,9 +75394,9 @@ var jsts_min = { exports: {} };
|
|
|
75394
75394
|
var i3 = arguments[0], r3 = arguments[1], o3 = arguments[2];
|
|
75395
75395
|
return i3 < r3 ? r3 : i3 > o3 ? o3 : i3;
|
|
75396
75396
|
}
|
|
75397
|
-
},
|
|
75397
|
+
}, R.wrap = function(t2, e3) {
|
|
75398
75398
|
return t2 < 0 ? e3 - -t2 % e3 : t2 % e3;
|
|
75399
|
-
},
|
|
75399
|
+
}, R.max = function() {
|
|
75400
75400
|
if (3 === arguments.length) {
|
|
75401
75401
|
var t2 = arguments[0], e3 = arguments[1], n3 = arguments[2], i3 = t2;
|
|
75402
75402
|
return e3 > i3 && (i3 = e3), n3 > i3 && (i3 = n3), i3;
|
|
@@ -75405,11 +75405,11 @@ var jsts_min = { exports: {} };
|
|
|
75405
75405
|
var r3 = arguments[0], o3 = arguments[1], s3 = arguments[2], a3 = arguments[3], u2 = r3;
|
|
75406
75406
|
return o3 > u2 && (u2 = o3), s3 > u2 && (u2 = s3), a3 > u2 && (u2 = a3), u2;
|
|
75407
75407
|
}
|
|
75408
|
-
},
|
|
75408
|
+
}, R.average = function(t2, e3) {
|
|
75409
75409
|
return (t2 + e3) / 2;
|
|
75410
75410
|
}, P.LOG_10.get = function() {
|
|
75411
75411
|
return Math.log(10);
|
|
75412
|
-
}, Object.defineProperties(
|
|
75412
|
+
}, Object.defineProperties(R, P);
|
|
75413
75413
|
var D2 = function(t2) {
|
|
75414
75414
|
this.str = t2;
|
|
75415
75415
|
};
|
|
@@ -76564,7 +76564,7 @@ var jsts_min = { exports: {} };
|
|
|
76564
76564
|
}
|
|
76565
76565
|
} else
|
|
76566
76566
|
r3 = true;
|
|
76567
|
-
return r3 ?
|
|
76567
|
+
return r3 ? R.min(at2.distancePointLine(t2, n3, i3), at2.distancePointLine(e3, n3, i3), at2.distancePointLine(n3, t2, e3), at2.distancePointLine(i3, t2, e3)) : 0;
|
|
76568
76568
|
}, at2.isPointInRing = function(t2, e3) {
|
|
76569
76569
|
return at2.locatePointInRing(t2, e3) !== w2.EXTERIOR;
|
|
76570
76570
|
}, at2.computeLength = function(t2) {
|
|
@@ -77154,8 +77154,8 @@ var jsts_min = { exports: {} };
|
|
|
77154
77154
|
(null === e3 || e3.compareTo(t2[n3]) > 0) && (e3 = t2[n3]);
|
|
77155
77155
|
return e3;
|
|
77156
77156
|
}, Lt.extract = function(t2, e3, n3) {
|
|
77157
|
-
e3 =
|
|
77158
|
-
var i3 = (n3 =
|
|
77157
|
+
e3 = R.clamp(e3, 0, t2.length);
|
|
77158
|
+
var i3 = (n3 = R.clamp(n3, -1, t2.length)) - e3 + 1;
|
|
77159
77159
|
n3 < 0 && (i3 = 0), e3 >= t2.length && (i3 = 0), n3 < e3 && (i3 = 0);
|
|
77160
77160
|
var r3 = new Array(i3).fill(null);
|
|
77161
77161
|
if (0 === i3)
|
|
@@ -82900,7 +82900,7 @@ var jsts_min = { exports: {} };
|
|
|
82900
82900
|
return f3.getResultGeometry(c3);
|
|
82901
82901
|
}
|
|
82902
82902
|
}, di.precisionScaleFactor = function(t2, e3, n3) {
|
|
82903
|
-
var i3 = t2.getEnvelopeInternal(), r3 =
|
|
82903
|
+
var i3 = t2.getEnvelopeInternal(), r3 = R.max(Math.abs(i3.getMaxX()), Math.abs(i3.getMaxY()), Math.abs(i3.getMinX()), Math.abs(i3.getMinY())) + 2 * (e3 > 0 ? e3 : 0), o3 = n3 - Math.trunc(Math.log(r3) / Math.log(10) + 1);
|
|
82904
82904
|
return Math.pow(10, o3);
|
|
82905
82905
|
}, yi.CAP_ROUND.get = function() {
|
|
82906
82906
|
return Cn.CAP_ROUND;
|
|
@@ -90291,372 +90291,216 @@ var layerMouseEvent = {};
|
|
|
90291
90291
|
exports2["default"] = LayerMouseEvent;
|
|
90292
90292
|
})(layerMouseEvent);
|
|
90293
90293
|
var nebulaLayer = {};
|
|
90294
|
-
var events = { exports: {} };
|
|
90295
|
-
var R = typeof Reflect === "object" ? Reflect : null;
|
|
90296
|
-
var ReflectApply = R && typeof R.apply === "function" ? R.apply : function ReflectApply2(target, receiver, args) {
|
|
90297
|
-
return Function.prototype.apply.call(target, receiver, args);
|
|
90298
|
-
};
|
|
90299
|
-
var ReflectOwnKeys;
|
|
90300
|
-
if (R && typeof R.ownKeys === "function") {
|
|
90301
|
-
ReflectOwnKeys = R.ownKeys;
|
|
90302
|
-
} else if (Object.getOwnPropertySymbols) {
|
|
90303
|
-
ReflectOwnKeys = function ReflectOwnKeys2(target) {
|
|
90304
|
-
return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target));
|
|
90305
|
-
};
|
|
90306
|
-
} else {
|
|
90307
|
-
ReflectOwnKeys = function ReflectOwnKeys2(target) {
|
|
90308
|
-
return Object.getOwnPropertyNames(target);
|
|
90309
|
-
};
|
|
90310
|
-
}
|
|
90311
|
-
function ProcessEmitWarning(warning2) {
|
|
90312
|
-
if (console && console.warn)
|
|
90313
|
-
console.warn(warning2);
|
|
90314
|
-
}
|
|
90315
|
-
var NumberIsNaN = Number.isNaN || function NumberIsNaN2(value) {
|
|
90316
|
-
return value !== value;
|
|
90317
|
-
};
|
|
90318
90294
|
function EventEmitter() {
|
|
90319
|
-
|
|
90295
|
+
this._events = this._events || {};
|
|
90296
|
+
this._maxListeners = this._maxListeners || void 0;
|
|
90320
90297
|
}
|
|
90321
|
-
events
|
|
90322
|
-
events.exports.once = once2;
|
|
90298
|
+
var events = EventEmitter;
|
|
90323
90299
|
EventEmitter.EventEmitter = EventEmitter;
|
|
90324
90300
|
EventEmitter.prototype._events = void 0;
|
|
90325
|
-
EventEmitter.prototype._eventsCount = 0;
|
|
90326
90301
|
EventEmitter.prototype._maxListeners = void 0;
|
|
90327
|
-
|
|
90328
|
-
function
|
|
90329
|
-
if (
|
|
90330
|
-
throw
|
|
90331
|
-
}
|
|
90332
|
-
}
|
|
90333
|
-
Object.defineProperty(EventEmitter, "defaultMaxListeners", {
|
|
90334
|
-
enumerable: true,
|
|
90335
|
-
get: function() {
|
|
90336
|
-
return defaultMaxListeners;
|
|
90337
|
-
},
|
|
90338
|
-
set: function(arg) {
|
|
90339
|
-
if (typeof arg !== "number" || arg < 0 || NumberIsNaN(arg)) {
|
|
90340
|
-
throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received ' + arg + ".");
|
|
90341
|
-
}
|
|
90342
|
-
defaultMaxListeners = arg;
|
|
90343
|
-
}
|
|
90344
|
-
});
|
|
90345
|
-
EventEmitter.init = function() {
|
|
90346
|
-
if (this._events === void 0 || this._events === Object.getPrototypeOf(this)._events) {
|
|
90347
|
-
this._events = /* @__PURE__ */ Object.create(null);
|
|
90348
|
-
this._eventsCount = 0;
|
|
90349
|
-
}
|
|
90350
|
-
this._maxListeners = this._maxListeners || void 0;
|
|
90351
|
-
};
|
|
90352
|
-
EventEmitter.prototype.setMaxListeners = function setMaxListeners(n2) {
|
|
90353
|
-
if (typeof n2 !== "number" || n2 < 0 || NumberIsNaN(n2)) {
|
|
90354
|
-
throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received ' + n2 + ".");
|
|
90355
|
-
}
|
|
90302
|
+
EventEmitter.defaultMaxListeners = 10;
|
|
90303
|
+
EventEmitter.prototype.setMaxListeners = function(n2) {
|
|
90304
|
+
if (!isNumber(n2) || n2 < 0 || isNaN(n2))
|
|
90305
|
+
throw TypeError("n must be a positive number");
|
|
90356
90306
|
this._maxListeners = n2;
|
|
90357
90307
|
return this;
|
|
90358
90308
|
};
|
|
90359
|
-
function
|
|
90360
|
-
|
|
90361
|
-
|
|
90362
|
-
|
|
90363
|
-
|
|
90364
|
-
|
|
90365
|
-
|
|
90366
|
-
|
|
90367
|
-
|
|
90368
|
-
|
|
90369
|
-
|
|
90370
|
-
|
|
90371
|
-
|
|
90372
|
-
|
|
90373
|
-
|
|
90374
|
-
|
|
90375
|
-
|
|
90376
|
-
|
|
90377
|
-
if (doError) {
|
|
90378
|
-
var er;
|
|
90379
|
-
if (args.length > 0)
|
|
90380
|
-
er = args[0];
|
|
90381
|
-
if (er instanceof Error) {
|
|
90382
|
-
throw er;
|
|
90383
|
-
}
|
|
90384
|
-
var err2 = new Error("Unhandled error." + (er ? " (" + er.message + ")" : ""));
|
|
90385
|
-
err2.context = er;
|
|
90386
|
-
throw err2;
|
|
90387
|
-
}
|
|
90388
|
-
var handler = events2[type2];
|
|
90389
|
-
if (handler === void 0)
|
|
90309
|
+
EventEmitter.prototype.emit = function(type2) {
|
|
90310
|
+
var er, handler, len2, args, i2, listeners;
|
|
90311
|
+
if (!this._events)
|
|
90312
|
+
this._events = {};
|
|
90313
|
+
if (type2 === "error") {
|
|
90314
|
+
if (!this._events.error || isObject$1(this._events.error) && !this._events.error.length) {
|
|
90315
|
+
er = arguments[1];
|
|
90316
|
+
if (er instanceof Error) {
|
|
90317
|
+
throw er;
|
|
90318
|
+
} else {
|
|
90319
|
+
var err2 = new Error('Uncaught, unspecified "error" event. (' + er + ")");
|
|
90320
|
+
err2.context = er;
|
|
90321
|
+
throw err2;
|
|
90322
|
+
}
|
|
90323
|
+
}
|
|
90324
|
+
}
|
|
90325
|
+
handler = this._events[type2];
|
|
90326
|
+
if (isUndefined(handler))
|
|
90390
90327
|
return false;
|
|
90391
|
-
if (
|
|
90392
|
-
|
|
90393
|
-
|
|
90394
|
-
|
|
90395
|
-
|
|
90396
|
-
|
|
90397
|
-
|
|
90328
|
+
if (isFunction$1(handler)) {
|
|
90329
|
+
switch (arguments.length) {
|
|
90330
|
+
case 1:
|
|
90331
|
+
handler.call(this);
|
|
90332
|
+
break;
|
|
90333
|
+
case 2:
|
|
90334
|
+
handler.call(this, arguments[1]);
|
|
90335
|
+
break;
|
|
90336
|
+
case 3:
|
|
90337
|
+
handler.call(this, arguments[1], arguments[2]);
|
|
90338
|
+
break;
|
|
90339
|
+
default:
|
|
90340
|
+
args = Array.prototype.slice.call(arguments, 1);
|
|
90341
|
+
handler.apply(this, args);
|
|
90342
|
+
}
|
|
90343
|
+
} else if (isObject$1(handler)) {
|
|
90344
|
+
args = Array.prototype.slice.call(arguments, 1);
|
|
90345
|
+
listeners = handler.slice();
|
|
90346
|
+
len2 = listeners.length;
|
|
90347
|
+
for (i2 = 0; i2 < len2; i2++)
|
|
90348
|
+
listeners[i2].apply(this, args);
|
|
90398
90349
|
}
|
|
90399
90350
|
return true;
|
|
90400
90351
|
};
|
|
90401
|
-
function
|
|
90352
|
+
EventEmitter.prototype.addListener = function(type2, listener) {
|
|
90402
90353
|
var m2;
|
|
90403
|
-
|
|
90404
|
-
|
|
90405
|
-
|
|
90406
|
-
|
|
90407
|
-
if (
|
|
90408
|
-
|
|
90409
|
-
|
|
90410
|
-
|
|
90411
|
-
|
|
90412
|
-
|
|
90413
|
-
|
|
90414
|
-
|
|
90415
|
-
|
|
90416
|
-
|
|
90417
|
-
|
|
90418
|
-
|
|
90419
|
-
|
|
90420
|
-
|
|
90421
|
-
|
|
90422
|
-
existing = events2[type2] = listener;
|
|
90423
|
-
++target._eventsCount;
|
|
90424
|
-
} else {
|
|
90425
|
-
if (typeof existing === "function") {
|
|
90426
|
-
existing = events2[type2] = prepend ? [listener, existing] : [existing, listener];
|
|
90427
|
-
} else if (prepend) {
|
|
90428
|
-
existing.unshift(listener);
|
|
90354
|
+
if (!isFunction$1(listener))
|
|
90355
|
+
throw TypeError("listener must be a function");
|
|
90356
|
+
if (!this._events)
|
|
90357
|
+
this._events = {};
|
|
90358
|
+
if (this._events.newListener)
|
|
90359
|
+
this.emit(
|
|
90360
|
+
"newListener",
|
|
90361
|
+
type2,
|
|
90362
|
+
isFunction$1(listener.listener) ? listener.listener : listener
|
|
90363
|
+
);
|
|
90364
|
+
if (!this._events[type2])
|
|
90365
|
+
this._events[type2] = listener;
|
|
90366
|
+
else if (isObject$1(this._events[type2]))
|
|
90367
|
+
this._events[type2].push(listener);
|
|
90368
|
+
else
|
|
90369
|
+
this._events[type2] = [this._events[type2], listener];
|
|
90370
|
+
if (isObject$1(this._events[type2]) && !this._events[type2].warned) {
|
|
90371
|
+
if (!isUndefined(this._maxListeners)) {
|
|
90372
|
+
m2 = this._maxListeners;
|
|
90429
90373
|
} else {
|
|
90430
|
-
|
|
90374
|
+
m2 = EventEmitter.defaultMaxListeners;
|
|
90431
90375
|
}
|
|
90432
|
-
m2
|
|
90433
|
-
|
|
90434
|
-
|
|
90435
|
-
|
|
90436
|
-
|
|
90437
|
-
|
|
90438
|
-
|
|
90439
|
-
|
|
90440
|
-
|
|
90376
|
+
if (m2 && m2 > 0 && this._events[type2].length > m2) {
|
|
90377
|
+
this._events[type2].warned = true;
|
|
90378
|
+
console.error(
|
|
90379
|
+
"(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",
|
|
90380
|
+
this._events[type2].length
|
|
90381
|
+
);
|
|
90382
|
+
if (typeof console.trace === "function") {
|
|
90383
|
+
console.trace();
|
|
90384
|
+
}
|
|
90441
90385
|
}
|
|
90442
90386
|
}
|
|
90443
|
-
return target;
|
|
90444
|
-
}
|
|
90445
|
-
EventEmitter.prototype.addListener = function addListener(type2, listener) {
|
|
90446
|
-
return _addListener(this, type2, listener, false);
|
|
90447
|
-
};
|
|
90448
|
-
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
|
|
90449
|
-
EventEmitter.prototype.prependListener = function prependListener(type2, listener) {
|
|
90450
|
-
return _addListener(this, type2, listener, true);
|
|
90451
|
-
};
|
|
90452
|
-
function onceWrapper() {
|
|
90453
|
-
if (!this.fired) {
|
|
90454
|
-
this.target.removeListener(this.type, this.wrapFn);
|
|
90455
|
-
this.fired = true;
|
|
90456
|
-
if (arguments.length === 0)
|
|
90457
|
-
return this.listener.call(this.target);
|
|
90458
|
-
return this.listener.apply(this.target, arguments);
|
|
90459
|
-
}
|
|
90460
|
-
}
|
|
90461
|
-
function _onceWrap(target, type2, listener) {
|
|
90462
|
-
var state = { fired: false, wrapFn: void 0, target, type: type2, listener };
|
|
90463
|
-
var wrapped = onceWrapper.bind(state);
|
|
90464
|
-
wrapped.listener = listener;
|
|
90465
|
-
state.wrapFn = wrapped;
|
|
90466
|
-
return wrapped;
|
|
90467
|
-
}
|
|
90468
|
-
EventEmitter.prototype.once = function once(type2, listener) {
|
|
90469
|
-
checkListener(listener);
|
|
90470
|
-
this.on(type2, _onceWrap(this, type2, listener));
|
|
90471
90387
|
return this;
|
|
90472
90388
|
};
|
|
90473
|
-
EventEmitter.prototype.
|
|
90474
|
-
|
|
90475
|
-
|
|
90389
|
+
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
|
|
90390
|
+
EventEmitter.prototype.once = function(type2, listener) {
|
|
90391
|
+
if (!isFunction$1(listener))
|
|
90392
|
+
throw TypeError("listener must be a function");
|
|
90393
|
+
var fired = false;
|
|
90394
|
+
function g2() {
|
|
90395
|
+
this.removeListener(type2, g2);
|
|
90396
|
+
if (!fired) {
|
|
90397
|
+
fired = true;
|
|
90398
|
+
listener.apply(this, arguments);
|
|
90399
|
+
}
|
|
90400
|
+
}
|
|
90401
|
+
g2.listener = listener;
|
|
90402
|
+
this.on(type2, g2);
|
|
90476
90403
|
return this;
|
|
90477
90404
|
};
|
|
90478
|
-
EventEmitter.prototype.removeListener = function
|
|
90479
|
-
var list,
|
|
90480
|
-
|
|
90481
|
-
|
|
90482
|
-
if (
|
|
90483
|
-
return this;
|
|
90484
|
-
list = events2[type2];
|
|
90485
|
-
if (list === void 0)
|
|
90405
|
+
EventEmitter.prototype.removeListener = function(type2, listener) {
|
|
90406
|
+
var list, position, length2, i2;
|
|
90407
|
+
if (!isFunction$1(listener))
|
|
90408
|
+
throw TypeError("listener must be a function");
|
|
90409
|
+
if (!this._events || !this._events[type2])
|
|
90486
90410
|
return this;
|
|
90487
|
-
|
|
90488
|
-
|
|
90489
|
-
|
|
90490
|
-
|
|
90491
|
-
|
|
90492
|
-
|
|
90493
|
-
|
|
90494
|
-
|
|
90495
|
-
|
|
90496
|
-
|
|
90497
|
-
for (i2 = list.length - 1; i2 >= 0; i2--) {
|
|
90498
|
-
if (list[i2] === listener || list[i2].listener === listener) {
|
|
90499
|
-
originalListener = list[i2].listener;
|
|
90411
|
+
list = this._events[type2];
|
|
90412
|
+
length2 = list.length;
|
|
90413
|
+
position = -1;
|
|
90414
|
+
if (list === listener || isFunction$1(list.listener) && list.listener === listener) {
|
|
90415
|
+
delete this._events[type2];
|
|
90416
|
+
if (this._events.removeListener)
|
|
90417
|
+
this.emit("removeListener", type2, listener);
|
|
90418
|
+
} else if (isObject$1(list)) {
|
|
90419
|
+
for (i2 = length2; i2-- > 0; ) {
|
|
90420
|
+
if (list[i2] === listener || list[i2].listener && list[i2].listener === listener) {
|
|
90500
90421
|
position = i2;
|
|
90501
90422
|
break;
|
|
90502
90423
|
}
|
|
90503
90424
|
}
|
|
90504
90425
|
if (position < 0)
|
|
90505
90426
|
return this;
|
|
90506
|
-
if (
|
|
90507
|
-
list.
|
|
90508
|
-
|
|
90509
|
-
|
|
90427
|
+
if (list.length === 1) {
|
|
90428
|
+
list.length = 0;
|
|
90429
|
+
delete this._events[type2];
|
|
90430
|
+
} else {
|
|
90431
|
+
list.splice(position, 1);
|
|
90510
90432
|
}
|
|
90511
|
-
if (
|
|
90512
|
-
|
|
90513
|
-
if (events2.removeListener !== void 0)
|
|
90514
|
-
this.emit("removeListener", type2, originalListener || listener);
|
|
90433
|
+
if (this._events.removeListener)
|
|
90434
|
+
this.emit("removeListener", type2, listener);
|
|
90515
90435
|
}
|
|
90516
90436
|
return this;
|
|
90517
90437
|
};
|
|
90518
|
-
EventEmitter.prototype.
|
|
90519
|
-
|
|
90520
|
-
|
|
90521
|
-
events2 = this._events;
|
|
90522
|
-
if (events2 === void 0)
|
|
90438
|
+
EventEmitter.prototype.removeAllListeners = function(type2) {
|
|
90439
|
+
var key, listeners;
|
|
90440
|
+
if (!this._events)
|
|
90523
90441
|
return this;
|
|
90524
|
-
if (
|
|
90525
|
-
if (arguments.length === 0)
|
|
90526
|
-
this._events =
|
|
90527
|
-
|
|
90528
|
-
|
|
90529
|
-
if (--this._eventsCount === 0)
|
|
90530
|
-
this._events = /* @__PURE__ */ Object.create(null);
|
|
90531
|
-
else
|
|
90532
|
-
delete events2[type2];
|
|
90533
|
-
}
|
|
90442
|
+
if (!this._events.removeListener) {
|
|
90443
|
+
if (arguments.length === 0)
|
|
90444
|
+
this._events = {};
|
|
90445
|
+
else if (this._events[type2])
|
|
90446
|
+
delete this._events[type2];
|
|
90534
90447
|
return this;
|
|
90535
90448
|
}
|
|
90536
90449
|
if (arguments.length === 0) {
|
|
90537
|
-
|
|
90538
|
-
var key;
|
|
90539
|
-
for (i2 = 0; i2 < keys3.length; ++i2) {
|
|
90540
|
-
key = keys3[i2];
|
|
90450
|
+
for (key in this._events) {
|
|
90541
90451
|
if (key === "removeListener")
|
|
90542
90452
|
continue;
|
|
90543
90453
|
this.removeAllListeners(key);
|
|
90544
90454
|
}
|
|
90545
90455
|
this.removeAllListeners("removeListener");
|
|
90546
|
-
this._events =
|
|
90547
|
-
this._eventsCount = 0;
|
|
90456
|
+
this._events = {};
|
|
90548
90457
|
return this;
|
|
90549
90458
|
}
|
|
90550
|
-
|
|
90551
|
-
if (
|
|
90552
|
-
this.removeListener(type2,
|
|
90553
|
-
} else if (
|
|
90554
|
-
|
|
90555
|
-
this.removeListener(type2,
|
|
90556
|
-
}
|
|
90459
|
+
listeners = this._events[type2];
|
|
90460
|
+
if (isFunction$1(listeners)) {
|
|
90461
|
+
this.removeListener(type2, listeners);
|
|
90462
|
+
} else if (listeners) {
|
|
90463
|
+
while (listeners.length)
|
|
90464
|
+
this.removeListener(type2, listeners[listeners.length - 1]);
|
|
90557
90465
|
}
|
|
90466
|
+
delete this._events[type2];
|
|
90558
90467
|
return this;
|
|
90559
90468
|
};
|
|
90560
|
-
function
|
|
90561
|
-
var
|
|
90562
|
-
if (
|
|
90563
|
-
|
|
90564
|
-
|
|
90565
|
-
|
|
90566
|
-
|
|
90567
|
-
|
|
90568
|
-
|
|
90569
|
-
return unwrap ? unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);
|
|
90570
|
-
}
|
|
90571
|
-
EventEmitter.prototype.listeners = function listeners(type2) {
|
|
90572
|
-
return _listeners(this, type2, true);
|
|
90573
|
-
};
|
|
90574
|
-
EventEmitter.prototype.rawListeners = function rawListeners(type2) {
|
|
90575
|
-
return _listeners(this, type2, false);
|
|
90576
|
-
};
|
|
90577
|
-
EventEmitter.listenerCount = function(emitter, type2) {
|
|
90578
|
-
if (typeof emitter.listenerCount === "function") {
|
|
90579
|
-
return emitter.listenerCount(type2);
|
|
90580
|
-
} else {
|
|
90581
|
-
return listenerCount.call(emitter, type2);
|
|
90582
|
-
}
|
|
90469
|
+
EventEmitter.prototype.listeners = function(type2) {
|
|
90470
|
+
var ret;
|
|
90471
|
+
if (!this._events || !this._events[type2])
|
|
90472
|
+
ret = [];
|
|
90473
|
+
else if (isFunction$1(this._events[type2]))
|
|
90474
|
+
ret = [this._events[type2]];
|
|
90475
|
+
else
|
|
90476
|
+
ret = this._events[type2].slice();
|
|
90477
|
+
return ret;
|
|
90583
90478
|
};
|
|
90584
|
-
EventEmitter.prototype.listenerCount =
|
|
90585
|
-
|
|
90586
|
-
|
|
90587
|
-
|
|
90588
|
-
var evlistener = events2[type2];
|
|
90589
|
-
if (typeof evlistener === "function") {
|
|
90479
|
+
EventEmitter.prototype.listenerCount = function(type2) {
|
|
90480
|
+
if (this._events) {
|
|
90481
|
+
var evlistener = this._events[type2];
|
|
90482
|
+
if (isFunction$1(evlistener))
|
|
90590
90483
|
return 1;
|
|
90591
|
-
|
|
90484
|
+
else if (evlistener)
|
|
90592
90485
|
return evlistener.length;
|
|
90593
|
-
}
|
|
90594
90486
|
}
|
|
90595
90487
|
return 0;
|
|
90596
|
-
}
|
|
90597
|
-
EventEmitter.prototype.eventNames = function eventNames() {
|
|
90598
|
-
return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : [];
|
|
90599
90488
|
};
|
|
90600
|
-
function
|
|
90601
|
-
|
|
90602
|
-
|
|
90603
|
-
|
|
90604
|
-
return
|
|
90489
|
+
EventEmitter.listenerCount = function(emitter, type2) {
|
|
90490
|
+
return emitter.listenerCount(type2);
|
|
90491
|
+
};
|
|
90492
|
+
function isFunction$1(arg) {
|
|
90493
|
+
return typeof arg === "function";
|
|
90605
90494
|
}
|
|
90606
|
-
function
|
|
90607
|
-
|
|
90608
|
-
list[index2] = list[index2 + 1];
|
|
90609
|
-
list.pop();
|
|
90495
|
+
function isNumber(arg) {
|
|
90496
|
+
return typeof arg === "number";
|
|
90610
90497
|
}
|
|
90611
|
-
function
|
|
90612
|
-
|
|
90613
|
-
for (var i2 = 0; i2 < ret.length; ++i2) {
|
|
90614
|
-
ret[i2] = arr[i2].listener || arr[i2];
|
|
90615
|
-
}
|
|
90616
|
-
return ret;
|
|
90498
|
+
function isObject$1(arg) {
|
|
90499
|
+
return typeof arg === "object" && arg !== null;
|
|
90617
90500
|
}
|
|
90618
|
-
function
|
|
90619
|
-
return
|
|
90620
|
-
function errorListener(err2) {
|
|
90621
|
-
emitter.removeListener(name2, resolver);
|
|
90622
|
-
reject(err2);
|
|
90623
|
-
}
|
|
90624
|
-
function resolver() {
|
|
90625
|
-
if (typeof emitter.removeListener === "function") {
|
|
90626
|
-
emitter.removeListener("error", errorListener);
|
|
90627
|
-
}
|
|
90628
|
-
resolve([].slice.call(arguments));
|
|
90629
|
-
}
|
|
90630
|
-
eventTargetAgnosticAddListener(emitter, name2, resolver, { once: true });
|
|
90631
|
-
if (name2 !== "error") {
|
|
90632
|
-
addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true });
|
|
90633
|
-
}
|
|
90634
|
-
});
|
|
90635
|
-
}
|
|
90636
|
-
function addErrorHandlerIfEventEmitter(emitter, handler, flags3) {
|
|
90637
|
-
if (typeof emitter.on === "function") {
|
|
90638
|
-
eventTargetAgnosticAddListener(emitter, "error", handler, flags3);
|
|
90639
|
-
}
|
|
90640
|
-
}
|
|
90641
|
-
function eventTargetAgnosticAddListener(emitter, name2, listener, flags3) {
|
|
90642
|
-
if (typeof emitter.on === "function") {
|
|
90643
|
-
if (flags3.once) {
|
|
90644
|
-
emitter.once(name2, listener);
|
|
90645
|
-
} else {
|
|
90646
|
-
emitter.on(name2, listener);
|
|
90647
|
-
}
|
|
90648
|
-
} else if (typeof emitter.addEventListener === "function") {
|
|
90649
|
-
emitter.addEventListener(name2, function wrapListener(arg) {
|
|
90650
|
-
if (flags3.once) {
|
|
90651
|
-
emitter.removeEventListener(name2, wrapListener);
|
|
90652
|
-
}
|
|
90653
|
-
listener(arg);
|
|
90654
|
-
});
|
|
90655
|
-
} else {
|
|
90656
|
-
throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type ' + typeof emitter);
|
|
90657
|
-
}
|
|
90501
|
+
function isUndefined(arg) {
|
|
90502
|
+
return arg === void 0;
|
|
90658
90503
|
}
|
|
90659
|
-
var eventsExports = events.exports;
|
|
90660
90504
|
var getRandomValues = typeof crypto != "undefined" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto != "undefined" && typeof msCrypto.getRandomValues == "function" && msCrypto.getRandomValues.bind(msCrypto);
|
|
90661
90505
|
var rnds8 = new Uint8Array(16);
|
|
90662
90506
|
function rng() {
|
|
@@ -91022,7 +90866,7 @@ const require$$1$3 = /* @__PURE__ */ getAugmentedNamespace(esmBrowser);
|
|
|
91022
90866
|
value: true
|
|
91023
90867
|
});
|
|
91024
90868
|
exports2["default"] = void 0;
|
|
91025
|
-
var _events = _interopRequireDefault2(
|
|
90869
|
+
var _events = _interopRequireDefault2(events);
|
|
91026
90870
|
var _uuid = _interopRequireDefault2(require$$1$3);
|
|
91027
90871
|
function _interopRequireDefault2(obj) {
|
|
91028
90872
|
return obj && obj.__esModule ? obj : { "default": obj };
|
|
@@ -91506,7 +91350,7 @@ function rhumbDistance$2(from, to, options) {
|
|
|
91506
91350
|
}
|
|
91507
91351
|
function calculateRhumbDistance(origin, destination2, radius) {
|
|
91508
91352
|
radius = radius === void 0 ? helpers_1$9.earthRadius : Number(radius);
|
|
91509
|
-
var
|
|
91353
|
+
var R = radius;
|
|
91510
91354
|
var phi12 = origin[1] * Math.PI / 180;
|
|
91511
91355
|
var phi2 = destination2[1] * Math.PI / 180;
|
|
91512
91356
|
var DeltaPhi = phi2 - phi12;
|
|
@@ -91517,7 +91361,7 @@ function calculateRhumbDistance(origin, destination2, radius) {
|
|
|
91517
91361
|
var DeltaPsi = Math.log(Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi12 / 2 + Math.PI / 4));
|
|
91518
91362
|
var q = Math.abs(DeltaPsi) > 1e-11 ? DeltaPhi / DeltaPsi : Math.cos(phi12);
|
|
91519
91363
|
var delta = Math.sqrt(DeltaPhi * DeltaPhi + q * q * DeltaLambda * DeltaLambda);
|
|
91520
|
-
var dist = delta *
|
|
91364
|
+
var dist = delta * R;
|
|
91521
91365
|
return dist;
|
|
91522
91366
|
}
|
|
91523
91367
|
js$f.default = rhumbDistance$2;
|
|
@@ -106064,7 +105908,7 @@ var document_1 = doccy;
|
|
|
106064
105908
|
value: true
|
|
106065
105909
|
});
|
|
106066
105910
|
exports2["default"] = void 0;
|
|
106067
|
-
var _events =
|
|
105911
|
+
var _events = events;
|
|
106068
105912
|
var _document = _interopRequireDefault2(document_1);
|
|
106069
105913
|
var _core = require$$2$2;
|
|
106070
105914
|
var _deckDrawer = _interopRequireDefault2(deckDrawer);
|
|
@@ -108019,16 +107863,16 @@ function addDecoder(cases, importFn) {
|
|
|
108019
107863
|
}
|
|
108020
107864
|
cases.forEach((c2) => registry$1.set(c2, importFn));
|
|
108021
107865
|
}
|
|
108022
|
-
addDecoder([void 0, 1], () => import("./raw-
|
|
108023
|
-
addDecoder(5, () => import("./lzw-
|
|
107866
|
+
addDecoder([void 0, 1], () => import("./raw-8e26cce5.js").then((m2) => m2.default));
|
|
107867
|
+
addDecoder(5, () => import("./lzw-cdee9c4e.js").then((m2) => m2.default));
|
|
108024
107868
|
addDecoder(6, () => {
|
|
108025
107869
|
throw new Error("old style JPEG compression is not supported.");
|
|
108026
107870
|
});
|
|
108027
|
-
addDecoder(7, () => import("./jpeg-
|
|
108028
|
-
addDecoder([8, 32946], () => import("./deflate-
|
|
108029
|
-
addDecoder(32773, () => import("./packbits-
|
|
108030
|
-
addDecoder(34887, () => import("./lerc-
|
|
108031
|
-
addDecoder(50001, () => import("./webimage-
|
|
107871
|
+
addDecoder(7, () => import("./jpeg-6a951bc6.js").then((m2) => m2.default));
|
|
107872
|
+
addDecoder([8, 32946], () => import("./deflate-485af92e.js").then((m2) => m2.default));
|
|
107873
|
+
addDecoder(32773, () => import("./packbits-7bc2030b.js").then((m2) => m2.default));
|
|
107874
|
+
addDecoder(34887, () => import("./lerc-36211a81.js").then((m2) => m2.default));
|
|
107875
|
+
addDecoder(50001, () => import("./webimage-d457d41a.js").then((m2) => m2.default));
|
|
108032
107876
|
function decodeRowAcc(row, stride) {
|
|
108033
107877
|
let length2 = row.length - stride;
|
|
108034
107878
|
let offset5 = 0;
|
|
@@ -111805,16 +111649,16 @@ createCommonjsModule(function(module2) {
|
|
|
111805
111649
|
if (!new Events().__proto__)
|
|
111806
111650
|
prefix2 = false;
|
|
111807
111651
|
}
|
|
111808
|
-
function EE(fn, context,
|
|
111652
|
+
function EE(fn, context, once) {
|
|
111809
111653
|
this.fn = fn;
|
|
111810
111654
|
this.context = context;
|
|
111811
|
-
this.once =
|
|
111655
|
+
this.once = once || false;
|
|
111812
111656
|
}
|
|
111813
|
-
function
|
|
111657
|
+
function addListener(emitter, event, fn, context, once) {
|
|
111814
111658
|
if (typeof fn !== "function") {
|
|
111815
111659
|
throw new TypeError("The listener must be a function");
|
|
111816
111660
|
}
|
|
111817
|
-
var listener = new EE(fn, context || emitter,
|
|
111661
|
+
var listener = new EE(fn, context || emitter, once), evt = prefix2 ? prefix2 + event : event;
|
|
111818
111662
|
if (!emitter._events[evt])
|
|
111819
111663
|
emitter._events[evt] = listener, emitter._eventsCount++;
|
|
111820
111664
|
else if (!emitter._events[evt].fn)
|
|
@@ -111833,7 +111677,7 @@ createCommonjsModule(function(module2) {
|
|
|
111833
111677
|
this._events = new Events();
|
|
111834
111678
|
this._eventsCount = 0;
|
|
111835
111679
|
}
|
|
111836
|
-
EventEmitter2.prototype.eventNames = function
|
|
111680
|
+
EventEmitter2.prototype.eventNames = function eventNames() {
|
|
111837
111681
|
var names = [], events2, name2;
|
|
111838
111682
|
if (this._eventsCount === 0)
|
|
111839
111683
|
return names;
|
|
@@ -111846,7 +111690,7 @@ createCommonjsModule(function(module2) {
|
|
|
111846
111690
|
}
|
|
111847
111691
|
return names;
|
|
111848
111692
|
};
|
|
111849
|
-
EventEmitter2.prototype.listeners = function
|
|
111693
|
+
EventEmitter2.prototype.listeners = function listeners(event) {
|
|
111850
111694
|
var evt = prefix2 ? prefix2 + event : event, handlers = this._events[evt];
|
|
111851
111695
|
if (!handlers)
|
|
111852
111696
|
return [];
|
|
@@ -111857,76 +111701,76 @@ createCommonjsModule(function(module2) {
|
|
|
111857
111701
|
}
|
|
111858
111702
|
return ee;
|
|
111859
111703
|
};
|
|
111860
|
-
EventEmitter2.prototype.listenerCount = function
|
|
111861
|
-
var evt = prefix2 ? prefix2 + event : event,
|
|
111862
|
-
if (!
|
|
111704
|
+
EventEmitter2.prototype.listenerCount = function listenerCount(event) {
|
|
111705
|
+
var evt = prefix2 ? prefix2 + event : event, listeners = this._events[evt];
|
|
111706
|
+
if (!listeners)
|
|
111863
111707
|
return 0;
|
|
111864
|
-
if (
|
|
111708
|
+
if (listeners.fn)
|
|
111865
111709
|
return 1;
|
|
111866
|
-
return
|
|
111710
|
+
return listeners.length;
|
|
111867
111711
|
};
|
|
111868
|
-
EventEmitter2.prototype.emit = function
|
|
111712
|
+
EventEmitter2.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {
|
|
111869
111713
|
var evt = prefix2 ? prefix2 + event : event;
|
|
111870
111714
|
if (!this._events[evt])
|
|
111871
111715
|
return false;
|
|
111872
|
-
var
|
|
111873
|
-
if (
|
|
111874
|
-
if (
|
|
111875
|
-
this.removeListener(event,
|
|
111716
|
+
var listeners = this._events[evt], len2 = arguments.length, args, i2;
|
|
111717
|
+
if (listeners.fn) {
|
|
111718
|
+
if (listeners.once)
|
|
111719
|
+
this.removeListener(event, listeners.fn, void 0, true);
|
|
111876
111720
|
switch (len2) {
|
|
111877
111721
|
case 1:
|
|
111878
|
-
return
|
|
111722
|
+
return listeners.fn.call(listeners.context), true;
|
|
111879
111723
|
case 2:
|
|
111880
|
-
return
|
|
111724
|
+
return listeners.fn.call(listeners.context, a1), true;
|
|
111881
111725
|
case 3:
|
|
111882
|
-
return
|
|
111726
|
+
return listeners.fn.call(listeners.context, a1, a2), true;
|
|
111883
111727
|
case 4:
|
|
111884
|
-
return
|
|
111728
|
+
return listeners.fn.call(listeners.context, a1, a2, a3), true;
|
|
111885
111729
|
case 5:
|
|
111886
|
-
return
|
|
111730
|
+
return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;
|
|
111887
111731
|
case 6:
|
|
111888
|
-
return
|
|
111732
|
+
return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;
|
|
111889
111733
|
}
|
|
111890
111734
|
for (i2 = 1, args = new Array(len2 - 1); i2 < len2; i2++) {
|
|
111891
111735
|
args[i2 - 1] = arguments[i2];
|
|
111892
111736
|
}
|
|
111893
|
-
|
|
111737
|
+
listeners.fn.apply(listeners.context, args);
|
|
111894
111738
|
} else {
|
|
111895
|
-
var length2 =
|
|
111739
|
+
var length2 = listeners.length, j;
|
|
111896
111740
|
for (i2 = 0; i2 < length2; i2++) {
|
|
111897
|
-
if (
|
|
111898
|
-
this.removeListener(event,
|
|
111741
|
+
if (listeners[i2].once)
|
|
111742
|
+
this.removeListener(event, listeners[i2].fn, void 0, true);
|
|
111899
111743
|
switch (len2) {
|
|
111900
111744
|
case 1:
|
|
111901
|
-
|
|
111745
|
+
listeners[i2].fn.call(listeners[i2].context);
|
|
111902
111746
|
break;
|
|
111903
111747
|
case 2:
|
|
111904
|
-
|
|
111748
|
+
listeners[i2].fn.call(listeners[i2].context, a1);
|
|
111905
111749
|
break;
|
|
111906
111750
|
case 3:
|
|
111907
|
-
|
|
111751
|
+
listeners[i2].fn.call(listeners[i2].context, a1, a2);
|
|
111908
111752
|
break;
|
|
111909
111753
|
case 4:
|
|
111910
|
-
|
|
111754
|
+
listeners[i2].fn.call(listeners[i2].context, a1, a2, a3);
|
|
111911
111755
|
break;
|
|
111912
111756
|
default:
|
|
111913
111757
|
if (!args)
|
|
111914
111758
|
for (j = 1, args = new Array(len2 - 1); j < len2; j++) {
|
|
111915
111759
|
args[j - 1] = arguments[j];
|
|
111916
111760
|
}
|
|
111917
|
-
|
|
111761
|
+
listeners[i2].fn.apply(listeners[i2].context, args);
|
|
111918
111762
|
}
|
|
111919
111763
|
}
|
|
111920
111764
|
}
|
|
111921
111765
|
return true;
|
|
111922
111766
|
};
|
|
111923
111767
|
EventEmitter2.prototype.on = function on(event, fn, context) {
|
|
111924
|
-
return
|
|
111768
|
+
return addListener(this, event, fn, context, false);
|
|
111925
111769
|
};
|
|
111926
|
-
EventEmitter2.prototype.once = function
|
|
111927
|
-
return
|
|
111770
|
+
EventEmitter2.prototype.once = function once(event, fn, context) {
|
|
111771
|
+
return addListener(this, event, fn, context, true);
|
|
111928
111772
|
};
|
|
111929
|
-
EventEmitter2.prototype.removeListener = function
|
|
111773
|
+
EventEmitter2.prototype.removeListener = function removeListener(event, fn, context, once) {
|
|
111930
111774
|
var evt = prefix2 ? prefix2 + event : event;
|
|
111931
111775
|
if (!this._events[evt])
|
|
111932
111776
|
return this;
|
|
@@ -111934,15 +111778,15 @@ createCommonjsModule(function(module2) {
|
|
|
111934
111778
|
clearEvent(this, evt);
|
|
111935
111779
|
return this;
|
|
111936
111780
|
}
|
|
111937
|
-
var
|
|
111938
|
-
if (
|
|
111939
|
-
if (
|
|
111781
|
+
var listeners = this._events[evt];
|
|
111782
|
+
if (listeners.fn) {
|
|
111783
|
+
if (listeners.fn === fn && (!once || listeners.once) && (!context || listeners.context === context)) {
|
|
111940
111784
|
clearEvent(this, evt);
|
|
111941
111785
|
}
|
|
111942
111786
|
} else {
|
|
111943
|
-
for (var i2 = 0, events2 = [], length2 =
|
|
111944
|
-
if (
|
|
111945
|
-
events2.push(
|
|
111787
|
+
for (var i2 = 0, events2 = [], length2 = listeners.length; i2 < length2; i2++) {
|
|
111788
|
+
if (listeners[i2].fn !== fn || once && !listeners[i2].once || context && listeners[i2].context !== context) {
|
|
111789
|
+
events2.push(listeners[i2]);
|
|
111946
111790
|
}
|
|
111947
111791
|
}
|
|
111948
111792
|
if (events2.length)
|
|
@@ -111952,7 +111796,7 @@ createCommonjsModule(function(module2) {
|
|
|
111952
111796
|
}
|
|
111953
111797
|
return this;
|
|
111954
111798
|
};
|
|
111955
|
-
EventEmitter2.prototype.removeAllListeners = function
|
|
111799
|
+
EventEmitter2.prototype.removeAllListeners = function removeAllListeners(event) {
|
|
111956
111800
|
var evt;
|
|
111957
111801
|
if (event) {
|
|
111958
111802
|
evt = prefix2 ? prefix2 + event : event;
|
|
@@ -116435,7 +116279,7 @@ var blosc_codec = function() {
|
|
|
116435
116279
|
b += Ga[z[a2++]];
|
|
116436
116280
|
return b;
|
|
116437
116281
|
}
|
|
116438
|
-
var Q2 = {},
|
|
116282
|
+
var Q2 = {}, R = {}, S = {};
|
|
116439
116283
|
function Ha(a2) {
|
|
116440
116284
|
if (void 0 === a2)
|
|
116441
116285
|
return "_unknown";
|
|
@@ -116480,8 +116324,8 @@ var blosc_codec = function() {
|
|
|
116480
116324
|
});
|
|
116481
116325
|
var e2 = Array(a2.length), g2 = [], k = 0;
|
|
116482
116326
|
a2.forEach(function(h, l2) {
|
|
116483
|
-
|
|
116484
|
-
e2[l2] =
|
|
116327
|
+
R.hasOwnProperty(h) ? e2[l2] = R[h] : (g2.push(h), Q2.hasOwnProperty(h) || (Q2[h] = []), Q2[h].push(function() {
|
|
116328
|
+
e2[l2] = R[h];
|
|
116485
116329
|
++k;
|
|
116486
116330
|
k === g2.length && c2(e2);
|
|
116487
116331
|
}));
|
|
@@ -116494,12 +116338,12 @@ var blosc_codec = function() {
|
|
|
116494
116338
|
throw new TypeError("registerType registeredInstance requires argPackAdvance");
|
|
116495
116339
|
var d = b.name;
|
|
116496
116340
|
a2 || T('type "' + d + '" must have a positive integer typeid pointer');
|
|
116497
|
-
if (
|
|
116341
|
+
if (R.hasOwnProperty(a2)) {
|
|
116498
116342
|
if (c2.U)
|
|
116499
116343
|
return;
|
|
116500
116344
|
T("Cannot register type '" + d + "' twice");
|
|
116501
116345
|
}
|
|
116502
|
-
|
|
116346
|
+
R[a2] = b;
|
|
116503
116347
|
delete S[a2];
|
|
116504
116348
|
Q2.hasOwnProperty(a2) && (b = Q2[a2], delete Q2[a2], b.forEach(function(e2) {
|
|
116505
116349
|
e2();
|
|
@@ -116612,7 +116456,7 @@ var blosc_codec = function() {
|
|
|
116612
116456
|
}
|
|
116613
116457
|
function eb(a2, b) {
|
|
116614
116458
|
function c2(g2) {
|
|
116615
|
-
e2[g2] ||
|
|
116459
|
+
e2[g2] || R[g2] || (S[g2] ? S[g2].forEach(c2) : (d.push(g2), e2[g2] = true));
|
|
116616
116460
|
}
|
|
116617
116461
|
var d = [], e2 = {};
|
|
116618
116462
|
b.forEach(c2);
|
|
@@ -116900,7 +116744,7 @@ var blosc_codec = function() {
|
|
|
116900
116744
|
}, n: Qa, x: function(a2) {
|
|
116901
116745
|
4 < a2 && (V[a2].P += 1);
|
|
116902
116746
|
}, C: function(a2, b) {
|
|
116903
|
-
var c2 =
|
|
116747
|
+
var c2 = R[a2];
|
|
116904
116748
|
void 0 === c2 && T("_emval_take_value has unknown type " + cb(a2));
|
|
116905
116749
|
a2 = c2.readValueFromPointer(b);
|
|
116906
116750
|
return Ra(a2);
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as inflate_1 } from "./pako.esm-68f84e2a.js";
|
|
2
|
-
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-
|
|
2
|
+
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-6f1ecd35.js";
|
|
3
3
|
import "react";
|
|
4
4
|
import "@vitessce/vit-s";
|
|
5
5
|
import "react-dom";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/scatterplot",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.9",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"d3-quadtree": "^1.0.7",
|
|
24
24
|
"lodash-es": "^4.17.21",
|
|
25
25
|
"react-aria": "^3.28.0",
|
|
26
|
-
"@vitessce/constants-internal": "3.5.
|
|
27
|
-
"@vitessce/gl": "3.5.
|
|
28
|
-
"@vitessce/icons": "3.5.
|
|
29
|
-
"@vitessce/tooltip": "3.5.
|
|
30
|
-
"@vitessce/utils": "3.5.
|
|
31
|
-
"@vitessce/vit-s": "3.5.
|
|
26
|
+
"@vitessce/constants-internal": "3.5.9",
|
|
27
|
+
"@vitessce/gl": "3.5.9",
|
|
28
|
+
"@vitessce/icons": "3.5.9",
|
|
29
|
+
"@vitessce/tooltip": "3.5.9",
|
|
30
|
+
"@vitessce/utils": "3.5.9",
|
|
31
|
+
"@vitessce/vit-s": "3.5.9"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@testing-library/jest-dom": "^5.16.4",
|