@teselagen/ove 0.3.63 → 0.3.64
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/index.cjs.js +255 -299
- package/index.es.js +255 -299
- package/index.umd.js +207 -164
- package/package.json +3 -3
- package/src/LinearView/index.js +3 -1
- package/src/LinearView/style.css +5 -2
- package/src/RowItem/Axis.js +5 -2
- package/src/index.js +1 -0
- package/src/style.css +6 -3
- package/style.css +70 -6
package/index.umd.js
CHANGED
|
@@ -80,6 +80,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
80
80
|
return Object.freeze(Object.defineProperty(n2, Symbol.toStringTag, { value: "Module" }));
|
|
81
81
|
}
|
|
82
82
|
__name(_mergeNamespaces, "_mergeNamespaces");
|
|
83
|
+
const _400 = "";
|
|
83
84
|
var Alignment = {
|
|
84
85
|
CENTER: "center",
|
|
85
86
|
LEFT: "left",
|
|
@@ -349,19 +350,19 @@ var __async = (__this, __arguments, generator) => {
|
|
|
349
350
|
}
|
|
350
351
|
};
|
|
351
352
|
/*! *****************************************************************************
|
|
352
|
-
|
|
353
|
+
Copyright (c) Microsoft Corporation.
|
|
353
354
|
|
|
354
|
-
|
|
355
|
-
|
|
355
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
356
|
+
purpose with or without fee is hereby granted.
|
|
356
357
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
358
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
359
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
360
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
361
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
362
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
363
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
364
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
365
|
+
***************************************************************************** */
|
|
365
366
|
var extendStatics$4 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
366
367
|
extendStatics$4 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
367
368
|
d3.__proto__ = b5;
|
|
@@ -957,27 +958,27 @@ var __async = (__this, __arguments, generator) => {
|
|
|
957
958
|
__name(commonjsRequire, "commonjsRequire");
|
|
958
959
|
var dom4_max = {};
|
|
959
960
|
/*!
|
|
960
|
-
|
|
961
|
+
Copyright (C) 2013-2015 by Andrea Giammarchi - @WebReflection
|
|
961
962
|
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
963
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
964
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
965
|
+
in the Software without restriction, including without limitation the rights
|
|
966
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
967
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
968
|
+
furnished to do so, subject to the following conditions:
|
|
968
969
|
|
|
969
|
-
|
|
970
|
-
|
|
970
|
+
The above copyright notice and this permission notice shall be included in
|
|
971
|
+
all copies or substantial portions of the Software.
|
|
971
972
|
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
973
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
974
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
975
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
976
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
977
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
978
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
979
|
+
THE SOFTWARE.
|
|
979
980
|
|
|
980
|
-
|
|
981
|
+
*/
|
|
981
982
|
var hasRequiredDom4_max;
|
|
982
983
|
function requireDom4_max() {
|
|
983
984
|
if (hasRequiredDom4_max)
|
|
@@ -10335,11 +10336,11 @@ var __async = (__this, __arguments, generator) => {
|
|
|
10335
10336
|
}
|
|
10336
10337
|
bound = Function("binder", "return function (" + boundArgs.join(",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
10337
10338
|
if (target.prototype) {
|
|
10338
|
-
var
|
|
10339
|
+
var Empty = /* @__PURE__ */ __name(function Empty2() {
|
|
10339
10340
|
}, "Empty");
|
|
10340
|
-
|
|
10341
|
-
bound.prototype = new
|
|
10342
|
-
|
|
10341
|
+
Empty.prototype = target.prototype;
|
|
10342
|
+
bound.prototype = new Empty();
|
|
10343
|
+
Empty.prototype = null;
|
|
10343
10344
|
}
|
|
10344
10345
|
return bound;
|
|
10345
10346
|
}, "bind");
|
|
@@ -43664,10 +43665,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43664
43665
|
value
|
|
43665
43666
|
};
|
|
43666
43667
|
}, "_propertyDesc");
|
|
43667
|
-
var dP$
|
|
43668
|
+
var dP$1 = require_objectDp();
|
|
43668
43669
|
var createDesc$3 = _propertyDesc;
|
|
43669
43670
|
var _hide = require_descriptors() ? function(object2, key2, value) {
|
|
43670
|
-
return dP$
|
|
43671
|
+
return dP$1.f(object2, key2, createDesc$3(1, value));
|
|
43671
43672
|
} : function(object2, key2, value) {
|
|
43672
43673
|
object2[key2] = value;
|
|
43673
43674
|
return object2;
|
|
@@ -43681,7 +43682,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43681
43682
|
var ctx$1 = _ctx;
|
|
43682
43683
|
var hide$2 = _hide;
|
|
43683
43684
|
var has$d = _has;
|
|
43684
|
-
var PROTOTYPE$
|
|
43685
|
+
var PROTOTYPE$1 = "prototype";
|
|
43685
43686
|
var $export$8 = /* @__PURE__ */ __name(function(type, name2, source) {
|
|
43686
43687
|
var IS_FORCED = type & $export$8.F;
|
|
43687
43688
|
var IS_GLOBAL = type & $export$8.G;
|
|
@@ -43690,8 +43691,8 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43690
43691
|
var IS_BIND = type & $export$8.B;
|
|
43691
43692
|
var IS_WRAP = type & $export$8.W;
|
|
43692
43693
|
var exports3 = IS_GLOBAL ? core$3 : core$3[name2] || (core$3[name2] = {});
|
|
43693
|
-
var expProto = exports3[PROTOTYPE$
|
|
43694
|
-
var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name2] : (global$4[name2] || {})[PROTOTYPE$
|
|
43694
|
+
var expProto = exports3[PROTOTYPE$1];
|
|
43695
|
+
var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name2] : (global$4[name2] || {})[PROTOTYPE$1];
|
|
43695
43696
|
var key2, own2, out;
|
|
43696
43697
|
if (IS_GLOBAL)
|
|
43697
43698
|
source = name2;
|
|
@@ -43715,7 +43716,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43715
43716
|
}
|
|
43716
43717
|
return C2.apply(this, arguments);
|
|
43717
43718
|
}, "F");
|
|
43718
|
-
F2[PROTOTYPE$
|
|
43719
|
+
F2[PROTOTYPE$1] = C2[PROTOTYPE$1];
|
|
43719
43720
|
return F2;
|
|
43720
43721
|
}(out) : IS_PROTO && typeof out == "function" ? ctx$1(Function.call, out) : out;
|
|
43721
43722
|
if (IS_PROTO) {
|
|
@@ -43829,14 +43830,14 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43829
43830
|
var has$c = _has;
|
|
43830
43831
|
var toIObject$4 = _toIobject;
|
|
43831
43832
|
var arrayIndexOf = _arrayIncludes$1(false);
|
|
43832
|
-
var IE_PROTO$
|
|
43833
|
+
var IE_PROTO$1 = _sharedKey("IE_PROTO");
|
|
43833
43834
|
var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
|
|
43834
43835
|
var O2 = toIObject$4(object2);
|
|
43835
43836
|
var i2 = 0;
|
|
43836
43837
|
var result = [];
|
|
43837
43838
|
var key2;
|
|
43838
43839
|
for (key2 in O2)
|
|
43839
|
-
if (key2 != IE_PROTO$
|
|
43840
|
+
if (key2 != IE_PROTO$1)
|
|
43840
43841
|
has$c(O2, key2) && result.push(key2);
|
|
43841
43842
|
while (names2.length > i2)
|
|
43842
43843
|
if (has$c(O2, key2 = names2[i2++])) {
|
|
@@ -43845,10 +43846,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43845
43846
|
return result;
|
|
43846
43847
|
}, "_objectKeysInternal");
|
|
43847
43848
|
var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
|
|
43848
|
-
var $keys$
|
|
43849
|
-
var enumBugKeys
|
|
43849
|
+
var $keys$2 = _objectKeysInternal;
|
|
43850
|
+
var enumBugKeys = _enumBugKeys;
|
|
43850
43851
|
var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys2(O2) {
|
|
43851
|
-
return $keys$
|
|
43852
|
+
return $keys$2(O2, enumBugKeys);
|
|
43852
43853
|
}, "keys");
|
|
43853
43854
|
var _objectGops = {};
|
|
43854
43855
|
_objectGops.f = Object.getOwnPropertySymbols;
|
|
@@ -43938,19 +43939,28 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43938
43939
|
}, "_iterStep");
|
|
43939
43940
|
var _iterators = {};
|
|
43940
43941
|
var _redefine = _hide;
|
|
43941
|
-
var
|
|
43942
|
-
var
|
|
43943
|
-
|
|
43944
|
-
|
|
43945
|
-
|
|
43946
|
-
|
|
43947
|
-
var
|
|
43948
|
-
var
|
|
43949
|
-
var
|
|
43950
|
-
|
|
43951
|
-
|
|
43952
|
-
|
|
43953
|
-
|
|
43942
|
+
var _objectDps;
|
|
43943
|
+
var hasRequired_objectDps;
|
|
43944
|
+
function require_objectDps() {
|
|
43945
|
+
if (hasRequired_objectDps)
|
|
43946
|
+
return _objectDps;
|
|
43947
|
+
hasRequired_objectDps = 1;
|
|
43948
|
+
var dP2 = require_objectDp();
|
|
43949
|
+
var anObject2 = _anObject;
|
|
43950
|
+
var getKeys2 = _objectKeys;
|
|
43951
|
+
_objectDps = require_descriptors() ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties2(O2, Properties2) {
|
|
43952
|
+
anObject2(O2);
|
|
43953
|
+
var keys2 = getKeys2(Properties2);
|
|
43954
|
+
var length = keys2.length;
|
|
43955
|
+
var i2 = 0;
|
|
43956
|
+
var P2;
|
|
43957
|
+
while (length > i2)
|
|
43958
|
+
dP2.f(O2, P2 = keys2[i2++], Properties2[P2]);
|
|
43959
|
+
return O2;
|
|
43960
|
+
}, "defineProperties");
|
|
43961
|
+
return _objectDps;
|
|
43962
|
+
}
|
|
43963
|
+
__name(require_objectDps, "require_objectDps");
|
|
43954
43964
|
var _html;
|
|
43955
43965
|
var hasRequired_html;
|
|
43956
43966
|
function require_html() {
|
|
@@ -43962,42 +43972,51 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43962
43972
|
return _html;
|
|
43963
43973
|
}
|
|
43964
43974
|
__name(require_html, "require_html");
|
|
43965
|
-
var
|
|
43966
|
-
var
|
|
43967
|
-
|
|
43968
|
-
|
|
43969
|
-
|
|
43970
|
-
|
|
43971
|
-
|
|
43972
|
-
|
|
43973
|
-
var
|
|
43974
|
-
var
|
|
43975
|
-
var
|
|
43976
|
-
|
|
43977
|
-
var
|
|
43978
|
-
|
|
43979
|
-
|
|
43980
|
-
|
|
43981
|
-
|
|
43982
|
-
|
|
43983
|
-
|
|
43984
|
-
|
|
43985
|
-
|
|
43986
|
-
|
|
43987
|
-
|
|
43988
|
-
|
|
43989
|
-
|
|
43990
|
-
|
|
43991
|
-
|
|
43992
|
-
|
|
43993
|
-
|
|
43994
|
-
|
|
43995
|
-
|
|
43996
|
-
|
|
43997
|
-
|
|
43998
|
-
|
|
43999
|
-
|
|
44000
|
-
|
|
43975
|
+
var _objectCreate;
|
|
43976
|
+
var hasRequired_objectCreate;
|
|
43977
|
+
function require_objectCreate() {
|
|
43978
|
+
if (hasRequired_objectCreate)
|
|
43979
|
+
return _objectCreate;
|
|
43980
|
+
hasRequired_objectCreate = 1;
|
|
43981
|
+
var anObject2 = _anObject;
|
|
43982
|
+
var dPs = require_objectDps();
|
|
43983
|
+
var enumBugKeys2 = _enumBugKeys;
|
|
43984
|
+
var IE_PROTO2 = _sharedKey("IE_PROTO");
|
|
43985
|
+
var Empty = /* @__PURE__ */ __name(function() {
|
|
43986
|
+
}, "Empty");
|
|
43987
|
+
var PROTOTYPE2 = "prototype";
|
|
43988
|
+
var createDict = /* @__PURE__ */ __name(function() {
|
|
43989
|
+
var iframe = require_domCreate()("iframe");
|
|
43990
|
+
var i2 = enumBugKeys2.length;
|
|
43991
|
+
var lt = "<";
|
|
43992
|
+
var gt = ">";
|
|
43993
|
+
var iframeDocument;
|
|
43994
|
+
iframe.style.display = "none";
|
|
43995
|
+
require_html().appendChild(iframe);
|
|
43996
|
+
iframe.src = "javascript:";
|
|
43997
|
+
iframeDocument = iframe.contentWindow.document;
|
|
43998
|
+
iframeDocument.open();
|
|
43999
|
+
iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
|
|
44000
|
+
iframeDocument.close();
|
|
44001
|
+
createDict = iframeDocument.F;
|
|
44002
|
+
while (i2--)
|
|
44003
|
+
delete createDict[PROTOTYPE2][enumBugKeys2[i2]];
|
|
44004
|
+
return createDict();
|
|
44005
|
+
}, "createDict");
|
|
44006
|
+
_objectCreate = Object.create || /* @__PURE__ */ __name(function create2(O2, Properties2) {
|
|
44007
|
+
var result;
|
|
44008
|
+
if (O2 !== null) {
|
|
44009
|
+
Empty[PROTOTYPE2] = anObject2(O2);
|
|
44010
|
+
result = new Empty();
|
|
44011
|
+
Empty[PROTOTYPE2] = null;
|
|
44012
|
+
result[IE_PROTO2] = O2;
|
|
44013
|
+
} else
|
|
44014
|
+
result = createDict();
|
|
44015
|
+
return Properties2 === void 0 ? result : dPs(result, Properties2);
|
|
44016
|
+
}, "create");
|
|
44017
|
+
return _objectCreate;
|
|
44018
|
+
}
|
|
44019
|
+
__name(require_objectCreate, "require_objectCreate");
|
|
44001
44020
|
var _wks = { exports: {} };
|
|
44002
44021
|
var store$2 = _sharedExports("wks");
|
|
44003
44022
|
var uid$1 = _uid;
|
|
@@ -44015,7 +44034,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44015
44034
|
if (it && !has$b(it = stat ? it : it.prototype, TAG$1))
|
|
44016
44035
|
def(it, TAG$1, { configurable: true, value: tag });
|
|
44017
44036
|
}, "_setToStringTag");
|
|
44018
|
-
var create$4 =
|
|
44037
|
+
var create$4 = require_objectCreate();
|
|
44019
44038
|
var descriptor = _propertyDesc;
|
|
44020
44039
|
var setToStringTag$2 = _setToStringTag;
|
|
44021
44040
|
var IteratorPrototype = {};
|
|
@@ -44533,13 +44552,21 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44533
44552
|
}, "isArray");
|
|
44534
44553
|
var _objectGopnExt = {};
|
|
44535
44554
|
var _objectGopn = {};
|
|
44536
|
-
var
|
|
44537
|
-
|
|
44538
|
-
|
|
44539
|
-
|
|
44540
|
-
|
|
44555
|
+
var hasRequired_objectGopn;
|
|
44556
|
+
function require_objectGopn() {
|
|
44557
|
+
if (hasRequired_objectGopn)
|
|
44558
|
+
return _objectGopn;
|
|
44559
|
+
hasRequired_objectGopn = 1;
|
|
44560
|
+
var $keys2 = _objectKeysInternal;
|
|
44561
|
+
var hiddenKeys = _enumBugKeys.concat("length", "prototype");
|
|
44562
|
+
_objectGopn.f = Object.getOwnPropertyNames || /* @__PURE__ */ __name(function getOwnPropertyNames2(O2) {
|
|
44563
|
+
return $keys2(O2, hiddenKeys);
|
|
44564
|
+
}, "getOwnPropertyNames");
|
|
44565
|
+
return _objectGopn;
|
|
44566
|
+
}
|
|
44567
|
+
__name(require_objectGopn, "require_objectGopn");
|
|
44541
44568
|
var toIObject$2 = _toIobject;
|
|
44542
|
-
var gOPN$1 =
|
|
44569
|
+
var gOPN$1 = require_objectGopn().f;
|
|
44543
44570
|
var toString$3 = {}.toString;
|
|
44544
44571
|
var windowNames = typeof window == "object" && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : [];
|
|
44545
44572
|
var getWindowNames = /* @__PURE__ */ __name(function(it) {
|
|
@@ -44592,7 +44619,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44592
44619
|
var toIObject = _toIobject;
|
|
44593
44620
|
var toPrimitive = _toPrimitive$1;
|
|
44594
44621
|
var createDesc = _propertyDesc;
|
|
44595
|
-
var _create$1 =
|
|
44622
|
+
var _create$1 = require_objectCreate();
|
|
44596
44623
|
var gOPNExt = _objectGopnExt;
|
|
44597
44624
|
var $GOPD = _objectGopd;
|
|
44598
44625
|
var $GOPS = _objectGops;
|
|
@@ -44732,7 +44759,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44732
44759
|
}, "toString"));
|
|
44733
44760
|
$GOPD.f = $getOwnPropertyDescriptor;
|
|
44734
44761
|
$DP.f = $defineProperty;
|
|
44735
|
-
|
|
44762
|
+
require_objectGopn().f = gOPNExt.f = $getOwnPropertyNames;
|
|
44736
44763
|
require_objectPie().f = $propertyIsEnumerable;
|
|
44737
44764
|
$GOPS.f = $getOwnPropertySymbols;
|
|
44738
44765
|
if (DESCRIPTORS && !_library) {
|
|
@@ -44899,7 +44926,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44899
44926
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
|
|
44900
44927
|
var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
|
|
44901
44928
|
var $export = _export;
|
|
44902
|
-
$export($export.S, "Object", { create:
|
|
44929
|
+
$export($export.S, "Object", { create: require_objectCreate() });
|
|
44903
44930
|
var $Object = _coreExports.Object;
|
|
44904
44931
|
var create$3 = /* @__PURE__ */ __name(function create2(P2, D2) {
|
|
44905
44932
|
return $Object.create(P2, D2);
|
|
@@ -62093,19 +62120,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
62093
62120
|
}
|
|
62094
62121
|
__name(getActiveItem, "getActiveItem");
|
|
62095
62122
|
/*! *****************************************************************************
|
|
62096
|
-
|
|
62123
|
+
Copyright (c) Microsoft Corporation.
|
|
62097
62124
|
|
|
62098
|
-
|
|
62099
|
-
|
|
62125
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
62126
|
+
purpose with or without fee is hereby granted.
|
|
62100
62127
|
|
|
62101
|
-
|
|
62102
|
-
|
|
62103
|
-
|
|
62104
|
-
|
|
62105
|
-
|
|
62106
|
-
|
|
62107
|
-
|
|
62108
|
-
|
|
62128
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
62129
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
62130
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
62131
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
62132
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
62133
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
62134
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
62135
|
+
***************************************************************************** */
|
|
62109
62136
|
var extendStatics$3 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
62110
62137
|
extendStatics$3 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
62111
62138
|
d3.__proto__ = b5;
|
|
@@ -68125,19 +68152,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
68125
68152
|
min: DEFAULT_MIN_MILLISECOND
|
|
68126
68153
|
}, _a$1);
|
|
68127
68154
|
/*! *****************************************************************************
|
|
68128
|
-
|
|
68155
|
+
Copyright (c) Microsoft Corporation.
|
|
68129
68156
|
|
|
68130
|
-
|
|
68131
|
-
|
|
68157
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
68158
|
+
purpose with or without fee is hereby granted.
|
|
68132
68159
|
|
|
68133
|
-
|
|
68134
|
-
|
|
68135
|
-
|
|
68136
|
-
|
|
68137
|
-
|
|
68138
|
-
|
|
68139
|
-
|
|
68140
|
-
|
|
68160
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
68161
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
68162
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
68163
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
68164
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
68165
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
68166
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
68167
|
+
***************************************************************************** */
|
|
68141
68168
|
var extendStatics$2 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
68142
68169
|
extendStatics$2 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
68143
68170
|
d3.__proto__ = b5;
|
|
@@ -72482,7 +72509,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
72482
72509
|
timeout: options.timeout || updatedTimeout || intent === Intent.DANGER ? 6e4 : void 0,
|
|
72483
72510
|
action: options.action,
|
|
72484
72511
|
icon: options.icon,
|
|
72485
|
-
className: options.className
|
|
72512
|
+
className: classNames$1("preserve-newline", options.className)
|
|
72486
72513
|
},
|
|
72487
72514
|
options.key
|
|
72488
72515
|
);
|
|
@@ -85504,7 +85531,9 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
85504
85531
|
// keep this so that pasting into spreadsheets works.
|
|
85505
85532
|
format: "text/plain"
|
|
85506
85533
|
});
|
|
85507
|
-
|
|
85534
|
+
if (message) {
|
|
85535
|
+
window.toastr.success(message);
|
|
85536
|
+
}
|
|
85508
85537
|
}, "handleCopyHelper"));
|
|
85509
85538
|
__publicField(this, "handleCopyTable", /* @__PURE__ */ __name((e2) => {
|
|
85510
85539
|
try {
|
|
@@ -90772,15 +90801,15 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
90772
90801
|
var jszip_min = { exports: {} };
|
|
90773
90802
|
/*!
|
|
90774
90803
|
|
|
90775
|
-
|
|
90776
|
-
|
|
90804
|
+
JSZip v3.10.1 - A JavaScript class for generating and reading zip files
|
|
90805
|
+
<http://stuartk.com/jszip>
|
|
90777
90806
|
|
|
90778
|
-
|
|
90779
|
-
|
|
90807
|
+
(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
|
|
90808
|
+
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown.
|
|
90780
90809
|
|
|
90781
|
-
|
|
90782
|
-
|
|
90783
|
-
|
|
90810
|
+
JSZip uses the library pako released under the MIT license :
|
|
90811
|
+
https://github.com/nodeca/pako/blob/main/LICENSE
|
|
90812
|
+
*/
|
|
90784
90813
|
(function(module2, exports3) {
|
|
90785
90814
|
!function(e2) {
|
|
90786
90815
|
module2.exports = e2();
|
|
@@ -100413,6 +100442,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100413
100442
|
)
|
|
100414
100443
|
) || "Example";
|
|
100415
100444
|
const handleDownloadXlsxFile = /* @__PURE__ */ __name(() => __async(this, null, function* () {
|
|
100445
|
+
var _a3;
|
|
100416
100446
|
const dataDictionarySchema = [
|
|
100417
100447
|
{ value: (f2) => f2.displayName || f2.path, column: `Column Name` },
|
|
100418
100448
|
// {
|
|
@@ -100439,7 +100469,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100439
100469
|
const mainExampleData = {};
|
|
100440
100470
|
const fieldsToUse = [
|
|
100441
100471
|
...validateAgainstSchema.fields,
|
|
100442
|
-
...
|
|
100472
|
+
...(_a3 = validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
100443
100473
|
];
|
|
100444
100474
|
const mainSchema = fieldsToUse.map((f2) => {
|
|
100445
100475
|
mainExampleData[f2.displayName || f2.path] = f2.example || f2.defaultValue;
|
|
@@ -104030,19 +104060,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
104030
104060
|
}(reactExports.PureComponent)
|
|
104031
104061
|
);
|
|
104032
104062
|
/*! *****************************************************************************
|
|
104033
|
-
|
|
104034
|
-
|
|
104035
|
-
|
|
104036
|
-
|
|
104063
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
104064
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
104065
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
104066
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
104037
104067
|
|
|
104038
|
-
|
|
104039
|
-
|
|
104040
|
-
|
|
104041
|
-
|
|
104068
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
104069
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
104070
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
104071
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
104042
104072
|
|
|
104043
|
-
|
|
104044
|
-
|
|
104045
|
-
|
|
104073
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
104074
|
+
and limitations under the License.
|
|
104075
|
+
***************************************************************************** */
|
|
104046
104076
|
var extendStatics$1 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
104047
104077
|
extendStatics$1 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
104048
104078
|
d3.__proto__ = b5;
|
|
@@ -112803,6 +112833,20 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
112803
112833
|
"primers",
|
|
112804
112834
|
"guides"
|
|
112805
112835
|
];
|
|
112836
|
+
let allWarnings = [];
|
|
112837
|
+
let makeToast = /* @__PURE__ */ __name(() => {
|
|
112838
|
+
if (typeof window !== "undefined" && window.toastr && allWarnings.length) {
|
|
112839
|
+
window.toastr.warning(allWarnings.join("\n"));
|
|
112840
|
+
}
|
|
112841
|
+
allWarnings = [];
|
|
112842
|
+
}, "makeToast");
|
|
112843
|
+
makeToast = lodashExports.debounce(makeToast, 200);
|
|
112844
|
+
function showWarnings(warnings) {
|
|
112845
|
+
allWarnings = allWarnings.concat(warnings);
|
|
112846
|
+
makeToast.cancel();
|
|
112847
|
+
makeToast();
|
|
112848
|
+
}
|
|
112849
|
+
__name(showWarnings, "showWarnings");
|
|
112806
112850
|
function filterSequenceString(sequenceString = "", {
|
|
112807
112851
|
additionalValidChars = "",
|
|
112808
112852
|
isOligo: isOligo2,
|
|
@@ -112850,14 +112894,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
112850
112894
|
});
|
|
112851
112895
|
if (sequenceString.length !== sanitizedVal.length) {
|
|
112852
112896
|
warnings.push(
|
|
112853
|
-
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${invalidChars.slice(0, 100).join(", ")} `
|
|
112897
|
+
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${lodashExports.uniq(invalidChars).slice(0, 100).join(", ")} `
|
|
112854
112898
|
);
|
|
112855
112899
|
}
|
|
112856
|
-
|
|
112857
|
-
warnings.forEach((warning2) => {
|
|
112858
|
-
window.toastr.warning(warning2);
|
|
112859
|
-
});
|
|
112860
|
-
}
|
|
112900
|
+
showWarnings(warnings);
|
|
112861
112901
|
return [sanitizedVal, warnings];
|
|
112862
112902
|
}
|
|
112863
112903
|
__name(filterSequenceString, "filterSequenceString");
|
|
@@ -149914,6 +149954,9 @@ ${seq.sequence}
|
|
|
149914
149954
|
if (!isLinearView) {
|
|
149915
149955
|
x2 = i2 === 0 ? Math.max(positionLength, xCenter) : i2 === tickMarkPositions.length - 1 ? Math.min(bpsPerRow * charWidth2 - positionLength, xCenter) : xCenter;
|
|
149916
149956
|
}
|
|
149957
|
+
if (i2 === tickMarkPositions.length - 1) {
|
|
149958
|
+
x2 = Math.min(x2, xEnd - positionLength / 2);
|
|
149959
|
+
}
|
|
149917
149960
|
tickMarkSVG.push(
|
|
149918
149961
|
/* @__PURE__ */ React$2.createElement(
|
|
149919
149962
|
"text",
|
|
@@ -154056,7 +154099,7 @@ Part of ${annotation.translationType} Translation from BPs ${annotation.start +
|
|
|
154056
154099
|
}
|
|
154057
154100
|
__name(showFileDialog, "showFileDialog");
|
|
154058
154101
|
const name = "@teselagen/ove";
|
|
154059
|
-
const version = "0.3.
|
|
154102
|
+
const version = "0.3.63";
|
|
154060
154103
|
const main = "./src/index.js";
|
|
154061
154104
|
const exports$1 = {
|
|
154062
154105
|
".": {
|
|
@@ -160046,7 +160089,7 @@ Part of ${annotation.translationType} Translation from BPs ${annotation.start +
|
|
|
160046
160089
|
updateLabelsForInViewFeatures();
|
|
160047
160090
|
},
|
|
160048
160091
|
rowContainerStyle: __spreadValues({
|
|
160049
|
-
height: isNaN(height2 - 36) ? "auto" : height2 - 36,
|
|
160092
|
+
height: isNaN(height2 - 36) ? "auto" : height2 - 36 - (hideName ? 0 : 20),
|
|
160050
160093
|
width: innerWidth2 + 26,
|
|
160051
160094
|
paddingRight: marginWidth / 2
|
|
160052
160095
|
}, isLinViewZoomed && !isInAlignment && { paddingBottom: 15 }),
|
|
@@ -178342,19 +178385,19 @@ ${seqDataToCopy}\r
|
|
|
178342
178385
|
* Released under MIT License
|
|
178343
178386
|
*/
|
|
178344
178387
|
/*! *****************************************************************************
|
|
178345
|
-
|
|
178388
|
+
Copyright (c) Microsoft Corporation.
|
|
178346
178389
|
|
|
178347
|
-
|
|
178348
|
-
|
|
178390
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
178391
|
+
purpose with or without fee is hereby granted.
|
|
178349
178392
|
|
|
178350
|
-
|
|
178351
|
-
|
|
178352
|
-
|
|
178353
|
-
|
|
178354
|
-
|
|
178355
|
-
|
|
178356
|
-
|
|
178357
|
-
|
|
178393
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
178394
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
178395
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
178396
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
178397
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
178398
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
178399
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
178400
|
+
***************************************************************************** */
|
|
178358
178401
|
var extendStatics = /* @__PURE__ */ __name(function(d2, b3) {
|
|
178359
178402
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
178360
178403
|
d3.__proto__ = b5;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teselagen/ove",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.64",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"node": "16.20.2"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@teselagen/sequence-utils": "0.3.
|
|
16
|
+
"@teselagen/sequence-utils": "0.3.17",
|
|
17
17
|
"@teselagen/range-utils": "0.3.7",
|
|
18
|
-
"@teselagen/ui": "0.3.
|
|
18
|
+
"@teselagen/ui": "0.3.58",
|
|
19
19
|
"@teselagen/file-utils": "0.3.11",
|
|
20
20
|
"@teselagen/bounce-loader": "0.3.11",
|
|
21
21
|
"@teselagen/bio-parsers": "0.4.10",
|
package/src/LinearView/index.js
CHANGED
|
@@ -307,7 +307,9 @@ class _LinearView extends React.Component {
|
|
|
307
307
|
updateLabelsForInViewFeatures();
|
|
308
308
|
},
|
|
309
309
|
rowContainerStyle: {
|
|
310
|
-
height: isNaN(height - 36)
|
|
310
|
+
height: isNaN(height - 36)
|
|
311
|
+
? "auto"
|
|
312
|
+
: height - 36 - (hideName ? 0 : 20),
|
|
311
313
|
width: innerWidth + 26,
|
|
312
314
|
paddingRight: marginWidth / 2,
|
|
313
315
|
...(isLinViewZoomed &&
|