@teselagen/ove 0.3.62 → 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 +272 -290
- package/index.es.js +272 -290
- package/index.umd.js +315 -220
- package/package.json +4 -4
- 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");
|
|
@@ -25818,10 +25819,10 @@ var __async = (__this, __arguments, generator) => {
|
|
|
25818
25819
|
/* istanbul ignore next */
|
|
25819
25820
|
Object.getOwnPropertyNames
|
|
25820
25821
|
);
|
|
25821
|
-
function toPrimitive$
|
|
25822
|
+
function toPrimitive$2(value) {
|
|
25822
25823
|
return value === null ? null : typeof value === "object" ? "" + value : value;
|
|
25823
25824
|
}
|
|
25824
|
-
__name(toPrimitive$
|
|
25825
|
+
__name(toPrimitive$2, "toPrimitive$2");
|
|
25825
25826
|
function hasProp(target, prop2) {
|
|
25826
25827
|
return objectPrototype$2.hasOwnProperty.call(target, prop2);
|
|
25827
25828
|
}
|
|
@@ -26718,7 +26719,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
26718
26719
|
return this.name_ + "[" + this.value_ + "]";
|
|
26719
26720
|
}, "toString");
|
|
26720
26721
|
_proto.valueOf = /* @__PURE__ */ __name(function valueOf() {
|
|
26721
|
-
return toPrimitive$
|
|
26722
|
+
return toPrimitive$2(this.get());
|
|
26722
26723
|
}, "valueOf");
|
|
26723
26724
|
_proto[_Symbol$toPrimitive] = function() {
|
|
26724
26725
|
return this.valueOf();
|
|
@@ -26903,7 +26904,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
26903
26904
|
return this.name_ + "[" + this.derivation.toString() + "]";
|
|
26904
26905
|
}, "toString");
|
|
26905
26906
|
_proto.valueOf = /* @__PURE__ */ __name(function valueOf() {
|
|
26906
|
-
return toPrimitive$
|
|
26907
|
+
return toPrimitive$2(this.get());
|
|
26907
26908
|
}, "valueOf");
|
|
26908
26909
|
_proto[_Symbol$toPrimitive$1] = function() {
|
|
26909
26910
|
return this.valueOf();
|
|
@@ -43573,11 +43574,20 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43573
43574
|
return true;
|
|
43574
43575
|
}
|
|
43575
43576
|
}, "_fails");
|
|
43576
|
-
var _descriptors
|
|
43577
|
-
|
|
43578
|
-
|
|
43579
|
-
|
|
43580
|
-
|
|
43577
|
+
var _descriptors;
|
|
43578
|
+
var hasRequired_descriptors;
|
|
43579
|
+
function require_descriptors() {
|
|
43580
|
+
if (hasRequired_descriptors)
|
|
43581
|
+
return _descriptors;
|
|
43582
|
+
hasRequired_descriptors = 1;
|
|
43583
|
+
_descriptors = !_fails(function() {
|
|
43584
|
+
return Object.defineProperty({}, "a", { get: function() {
|
|
43585
|
+
return 7;
|
|
43586
|
+
} }).a != 7;
|
|
43587
|
+
});
|
|
43588
|
+
return _descriptors;
|
|
43589
|
+
}
|
|
43590
|
+
__name(require_descriptors, "require_descriptors");
|
|
43581
43591
|
var _domCreate;
|
|
43582
43592
|
var hasRequired_domCreate;
|
|
43583
43593
|
function require_domCreate() {
|
|
@@ -43593,11 +43603,20 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43593
43603
|
return _domCreate;
|
|
43594
43604
|
}
|
|
43595
43605
|
__name(require_domCreate, "require_domCreate");
|
|
43596
|
-
var _ie8DomDefine
|
|
43597
|
-
|
|
43598
|
-
|
|
43599
|
-
|
|
43600
|
-
|
|
43606
|
+
var _ie8DomDefine;
|
|
43607
|
+
var hasRequired_ie8DomDefine;
|
|
43608
|
+
function require_ie8DomDefine() {
|
|
43609
|
+
if (hasRequired_ie8DomDefine)
|
|
43610
|
+
return _ie8DomDefine;
|
|
43611
|
+
hasRequired_ie8DomDefine = 1;
|
|
43612
|
+
_ie8DomDefine = !require_descriptors() && !_fails(function() {
|
|
43613
|
+
return Object.defineProperty(require_domCreate()("div"), "a", { get: function() {
|
|
43614
|
+
return 7;
|
|
43615
|
+
} }).a != 7;
|
|
43616
|
+
});
|
|
43617
|
+
return _ie8DomDefine;
|
|
43618
|
+
}
|
|
43619
|
+
__name(require_ie8DomDefine, "require_ie8DomDefine");
|
|
43601
43620
|
var isObject$6 = _isObject;
|
|
43602
43621
|
var _toPrimitive$1 = /* @__PURE__ */ __name(function(it, S2) {
|
|
43603
43622
|
if (!isObject$6(it))
|
|
@@ -43611,25 +43630,33 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43611
43630
|
return val2;
|
|
43612
43631
|
throw TypeError("Can't convert object to primitive value");
|
|
43613
43632
|
}, "_toPrimitive$1");
|
|
43614
|
-
var
|
|
43615
|
-
|
|
43616
|
-
|
|
43617
|
-
|
|
43618
|
-
|
|
43619
|
-
|
|
43620
|
-
|
|
43621
|
-
|
|
43622
|
-
|
|
43623
|
-
|
|
43624
|
-
|
|
43625
|
-
|
|
43626
|
-
|
|
43627
|
-
|
|
43628
|
-
|
|
43629
|
-
|
|
43630
|
-
|
|
43631
|
-
|
|
43632
|
-
|
|
43633
|
+
var hasRequired_objectDp;
|
|
43634
|
+
function require_objectDp() {
|
|
43635
|
+
if (hasRequired_objectDp)
|
|
43636
|
+
return _objectDp;
|
|
43637
|
+
hasRequired_objectDp = 1;
|
|
43638
|
+
var anObject2 = _anObject;
|
|
43639
|
+
var IE8_DOM_DEFINE2 = require_ie8DomDefine();
|
|
43640
|
+
var toPrimitive2 = _toPrimitive$1;
|
|
43641
|
+
var dP2 = Object.defineProperty;
|
|
43642
|
+
_objectDp.f = require_descriptors() ? Object.defineProperty : /* @__PURE__ */ __name(function defineProperty2(O2, P2, Attributes) {
|
|
43643
|
+
anObject2(O2);
|
|
43644
|
+
P2 = toPrimitive2(P2, true);
|
|
43645
|
+
anObject2(Attributes);
|
|
43646
|
+
if (IE8_DOM_DEFINE2)
|
|
43647
|
+
try {
|
|
43648
|
+
return dP2(O2, P2, Attributes);
|
|
43649
|
+
} catch (e2) {
|
|
43650
|
+
}
|
|
43651
|
+
if ("get" in Attributes || "set" in Attributes)
|
|
43652
|
+
throw TypeError("Accessors not supported!");
|
|
43653
|
+
if ("value" in Attributes)
|
|
43654
|
+
O2[P2] = Attributes.value;
|
|
43655
|
+
return O2;
|
|
43656
|
+
}, "defineProperty");
|
|
43657
|
+
return _objectDp;
|
|
43658
|
+
}
|
|
43659
|
+
__name(require_objectDp, "require_objectDp");
|
|
43633
43660
|
var _propertyDesc = /* @__PURE__ */ __name(function(bitmap, value) {
|
|
43634
43661
|
return {
|
|
43635
43662
|
enumerable: !(bitmap & 1),
|
|
@@ -43638,10 +43665,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43638
43665
|
value
|
|
43639
43666
|
};
|
|
43640
43667
|
}, "_propertyDesc");
|
|
43641
|
-
var dP$
|
|
43668
|
+
var dP$1 = require_objectDp();
|
|
43642
43669
|
var createDesc$3 = _propertyDesc;
|
|
43643
|
-
var _hide =
|
|
43644
|
-
return dP$
|
|
43670
|
+
var _hide = require_descriptors() ? function(object2, key2, value) {
|
|
43671
|
+
return dP$1.f(object2, key2, createDesc$3(1, value));
|
|
43645
43672
|
} : function(object2, key2, value) {
|
|
43646
43673
|
object2[key2] = value;
|
|
43647
43674
|
return object2;
|
|
@@ -43655,7 +43682,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43655
43682
|
var ctx$1 = _ctx;
|
|
43656
43683
|
var hide$2 = _hide;
|
|
43657
43684
|
var has$d = _has;
|
|
43658
|
-
var PROTOTYPE$
|
|
43685
|
+
var PROTOTYPE$1 = "prototype";
|
|
43659
43686
|
var $export$8 = /* @__PURE__ */ __name(function(type, name2, source) {
|
|
43660
43687
|
var IS_FORCED = type & $export$8.F;
|
|
43661
43688
|
var IS_GLOBAL = type & $export$8.G;
|
|
@@ -43664,8 +43691,8 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43664
43691
|
var IS_BIND = type & $export$8.B;
|
|
43665
43692
|
var IS_WRAP = type & $export$8.W;
|
|
43666
43693
|
var exports3 = IS_GLOBAL ? core$3 : core$3[name2] || (core$3[name2] = {});
|
|
43667
|
-
var expProto = exports3[PROTOTYPE$
|
|
43668
|
-
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];
|
|
43669
43696
|
var key2, own2, out;
|
|
43670
43697
|
if (IS_GLOBAL)
|
|
43671
43698
|
source = name2;
|
|
@@ -43689,7 +43716,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43689
43716
|
}
|
|
43690
43717
|
return C2.apply(this, arguments);
|
|
43691
43718
|
}, "F");
|
|
43692
|
-
F2[PROTOTYPE$
|
|
43719
|
+
F2[PROTOTYPE$1] = C2[PROTOTYPE$1];
|
|
43693
43720
|
return F2;
|
|
43694
43721
|
}(out) : IS_PROTO && typeof out == "function" ? ctx$1(Function.call, out) : out;
|
|
43695
43722
|
if (IS_PROTO) {
|
|
@@ -43712,16 +43739,25 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43712
43739
|
var _cof = /* @__PURE__ */ __name(function(it) {
|
|
43713
43740
|
return toString$4.call(it).slice(8, -1);
|
|
43714
43741
|
}, "_cof");
|
|
43715
|
-
var
|
|
43716
|
-
var
|
|
43717
|
-
|
|
43718
|
-
|
|
43742
|
+
var _iobject;
|
|
43743
|
+
var hasRequired_iobject;
|
|
43744
|
+
function require_iobject() {
|
|
43745
|
+
if (hasRequired_iobject)
|
|
43746
|
+
return _iobject;
|
|
43747
|
+
hasRequired_iobject = 1;
|
|
43748
|
+
var cof2 = _cof;
|
|
43749
|
+
_iobject = Object("z").propertyIsEnumerable(0) ? Object : function(it) {
|
|
43750
|
+
return cof2(it) == "String" ? it.split("") : Object(it);
|
|
43751
|
+
};
|
|
43752
|
+
return _iobject;
|
|
43753
|
+
}
|
|
43754
|
+
__name(require_iobject, "require_iobject");
|
|
43719
43755
|
var _defined = /* @__PURE__ */ __name(function(it) {
|
|
43720
43756
|
if (it == void 0)
|
|
43721
43757
|
throw TypeError("Can't call method on " + it);
|
|
43722
43758
|
return it;
|
|
43723
43759
|
}, "_defined");
|
|
43724
|
-
var IObject =
|
|
43760
|
+
var IObject = require_iobject();
|
|
43725
43761
|
var defined$2 = _defined;
|
|
43726
43762
|
var _toIobject = /* @__PURE__ */ __name(function(it) {
|
|
43727
43763
|
return IObject(defined$2(it));
|
|
@@ -43794,14 +43830,14 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43794
43830
|
var has$c = _has;
|
|
43795
43831
|
var toIObject$4 = _toIobject;
|
|
43796
43832
|
var arrayIndexOf = _arrayIncludes$1(false);
|
|
43797
|
-
var IE_PROTO$
|
|
43833
|
+
var IE_PROTO$1 = _sharedKey("IE_PROTO");
|
|
43798
43834
|
var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
|
|
43799
43835
|
var O2 = toIObject$4(object2);
|
|
43800
43836
|
var i2 = 0;
|
|
43801
43837
|
var result = [];
|
|
43802
43838
|
var key2;
|
|
43803
43839
|
for (key2 in O2)
|
|
43804
|
-
if (key2 != IE_PROTO$
|
|
43840
|
+
if (key2 != IE_PROTO$1)
|
|
43805
43841
|
has$c(O2, key2) && result.push(key2);
|
|
43806
43842
|
while (names2.length > i2)
|
|
43807
43843
|
if (has$c(O2, key2 = names2[i2++])) {
|
|
@@ -43810,10 +43846,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43810
43846
|
return result;
|
|
43811
43847
|
}, "_objectKeysInternal");
|
|
43812
43848
|
var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
|
|
43813
|
-
var $keys$
|
|
43814
|
-
var enumBugKeys
|
|
43849
|
+
var $keys$2 = _objectKeysInternal;
|
|
43850
|
+
var enumBugKeys = _enumBugKeys;
|
|
43815
43851
|
var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys2(O2) {
|
|
43816
|
-
return $keys$
|
|
43852
|
+
return $keys$2(O2, enumBugKeys);
|
|
43817
43853
|
}, "keys");
|
|
43818
43854
|
var _objectGops = {};
|
|
43819
43855
|
_objectGops.f = Object.getOwnPropertySymbols;
|
|
@@ -43837,12 +43873,12 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43837
43873
|
if (hasRequired_objectAssign)
|
|
43838
43874
|
return _objectAssign;
|
|
43839
43875
|
hasRequired_objectAssign = 1;
|
|
43840
|
-
var DESCRIPTORS2 =
|
|
43876
|
+
var DESCRIPTORS2 = require_descriptors();
|
|
43841
43877
|
var getKeys2 = _objectKeys;
|
|
43842
43878
|
var gOPS2 = _objectGops;
|
|
43843
43879
|
var pIE2 = require_objectPie();
|
|
43844
43880
|
var toObject2 = _toObject;
|
|
43845
|
-
var IObject2 =
|
|
43881
|
+
var IObject2 = require_iobject();
|
|
43846
43882
|
var $assign = Object.assign;
|
|
43847
43883
|
_objectAssign = !$assign || _fails(function() {
|
|
43848
43884
|
var A2 = {};
|
|
@@ -43903,19 +43939,28 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43903
43939
|
}, "_iterStep");
|
|
43904
43940
|
var _iterators = {};
|
|
43905
43941
|
var _redefine = _hide;
|
|
43906
|
-
var
|
|
43907
|
-
var
|
|
43908
|
-
|
|
43909
|
-
|
|
43910
|
-
|
|
43911
|
-
|
|
43912
|
-
var
|
|
43913
|
-
var
|
|
43914
|
-
var
|
|
43915
|
-
|
|
43916
|
-
|
|
43917
|
-
|
|
43918
|
-
|
|
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");
|
|
43919
43964
|
var _html;
|
|
43920
43965
|
var hasRequired_html;
|
|
43921
43966
|
function require_html() {
|
|
@@ -43927,42 +43972,51 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43927
43972
|
return _html;
|
|
43928
43973
|
}
|
|
43929
43974
|
__name(require_html, "require_html");
|
|
43930
|
-
var
|
|
43931
|
-
var
|
|
43932
|
-
|
|
43933
|
-
|
|
43934
|
-
|
|
43935
|
-
|
|
43936
|
-
|
|
43937
|
-
|
|
43938
|
-
var
|
|
43939
|
-
var
|
|
43940
|
-
var
|
|
43941
|
-
|
|
43942
|
-
var
|
|
43943
|
-
|
|
43944
|
-
|
|
43945
|
-
|
|
43946
|
-
|
|
43947
|
-
|
|
43948
|
-
|
|
43949
|
-
|
|
43950
|
-
|
|
43951
|
-
|
|
43952
|
-
|
|
43953
|
-
|
|
43954
|
-
|
|
43955
|
-
|
|
43956
|
-
|
|
43957
|
-
|
|
43958
|
-
|
|
43959
|
-
|
|
43960
|
-
|
|
43961
|
-
|
|
43962
|
-
|
|
43963
|
-
|
|
43964
|
-
|
|
43965
|
-
|
|
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");
|
|
43966
44020
|
var _wks = { exports: {} };
|
|
43967
44021
|
var store$2 = _sharedExports("wks");
|
|
43968
44022
|
var uid$1 = _uid;
|
|
@@ -43973,14 +44027,14 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
43973
44027
|
};
|
|
43974
44028
|
$exports.store = store$2;
|
|
43975
44029
|
var _wksExports = _wks.exports;
|
|
43976
|
-
var def =
|
|
44030
|
+
var def = require_objectDp().f;
|
|
43977
44031
|
var has$b = _has;
|
|
43978
44032
|
var TAG$1 = _wksExports("toStringTag");
|
|
43979
44033
|
var _setToStringTag = /* @__PURE__ */ __name(function(it, tag, stat) {
|
|
43980
44034
|
if (it && !has$b(it = stat ? it : it.prototype, TAG$1))
|
|
43981
44035
|
def(it, TAG$1, { configurable: true, value: tag });
|
|
43982
44036
|
}, "_setToStringTag");
|
|
43983
|
-
var create$4 =
|
|
44037
|
+
var create$4 = require_objectCreate();
|
|
43984
44038
|
var descriptor = _propertyDesc;
|
|
43985
44039
|
var setToStringTag$2 = _setToStringTag;
|
|
43986
44040
|
var IteratorPrototype = {};
|
|
@@ -44246,7 +44300,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44246
44300
|
var _isArrayIter = /* @__PURE__ */ __name(function(it) {
|
|
44247
44301
|
return it !== void 0 && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
|
|
44248
44302
|
}, "_isArrayIter");
|
|
44249
|
-
var $defineProperty$1 =
|
|
44303
|
+
var $defineProperty$1 = require_objectDp();
|
|
44250
44304
|
var createDesc$2 = _propertyDesc;
|
|
44251
44305
|
var _createProperty = /* @__PURE__ */ __name(function(object2, index2, value) {
|
|
44252
44306
|
if (index2 in object2)
|
|
@@ -44375,7 +44429,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44375
44429
|
}
|
|
44376
44430
|
}, "_default$8");
|
|
44377
44431
|
var $export$3 = _export;
|
|
44378
|
-
$export$3($export$3.S + $export$3.F * !
|
|
44432
|
+
$export$3($export$3.S + $export$3.F * !require_descriptors(), "Object", { defineProperty: require_objectDp().f });
|
|
44379
44433
|
var $Object$1 = _coreExports.Object;
|
|
44380
44434
|
var defineProperty$6 = /* @__PURE__ */ __name(function defineProperty2(it, key2, desc) {
|
|
44381
44435
|
return $Object$1.defineProperty(it, key2, desc);
|
|
@@ -44416,7 +44470,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44416
44470
|
var META$1 = _uid("meta");
|
|
44417
44471
|
var isObject$5 = _isObject;
|
|
44418
44472
|
var has$9 = _has;
|
|
44419
|
-
var setDesc =
|
|
44473
|
+
var setDesc = require_objectDp().f;
|
|
44420
44474
|
var id$1 = 0;
|
|
44421
44475
|
var isExtensible = Object.isExtensible || function() {
|
|
44422
44476
|
return true;
|
|
@@ -44469,7 +44523,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44469
44523
|
var _metaExports = _meta.exports;
|
|
44470
44524
|
var core = _coreExports;
|
|
44471
44525
|
var wksExt$1 = _wksExt;
|
|
44472
|
-
var defineProperty$4 =
|
|
44526
|
+
var defineProperty$4 = require_objectDp().f;
|
|
44473
44527
|
var _wksDefine = /* @__PURE__ */ __name(function(name2) {
|
|
44474
44528
|
var $Symbol2 = core.Symbol || (core.Symbol = {});
|
|
44475
44529
|
if (name2.charAt(0) != "_" && !(name2 in $Symbol2))
|
|
@@ -44498,13 +44552,21 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44498
44552
|
}, "isArray");
|
|
44499
44553
|
var _objectGopnExt = {};
|
|
44500
44554
|
var _objectGopn = {};
|
|
44501
|
-
var
|
|
44502
|
-
|
|
44503
|
-
|
|
44504
|
-
|
|
44505
|
-
|
|
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");
|
|
44506
44568
|
var toIObject$2 = _toIobject;
|
|
44507
|
-
var gOPN$1 =
|
|
44569
|
+
var gOPN$1 = require_objectGopn().f;
|
|
44508
44570
|
var toString$3 = {}.toString;
|
|
44509
44571
|
var windowNames = typeof window == "object" && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : [];
|
|
44510
44572
|
var getWindowNames = /* @__PURE__ */ __name(function(it) {
|
|
@@ -44523,9 +44585,9 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44523
44585
|
var toIObject$1 = _toIobject;
|
|
44524
44586
|
var toPrimitive$1 = _toPrimitive$1;
|
|
44525
44587
|
var has$8 = _has;
|
|
44526
|
-
var IE8_DOM_DEFINE =
|
|
44588
|
+
var IE8_DOM_DEFINE = require_ie8DomDefine();
|
|
44527
44589
|
var gOPD$2 = Object.getOwnPropertyDescriptor;
|
|
44528
|
-
_objectGopd.f =
|
|
44590
|
+
_objectGopd.f = require_descriptors() ? gOPD$2 : /* @__PURE__ */ __name(function getOwnPropertyDescriptor2(O2, P2) {
|
|
44529
44591
|
O2 = toIObject$1(O2);
|
|
44530
44592
|
P2 = toPrimitive$1(P2, true);
|
|
44531
44593
|
if (IE8_DOM_DEFINE)
|
|
@@ -44538,7 +44600,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44538
44600
|
}, "getOwnPropertyDescriptor");
|
|
44539
44601
|
var global$1 = _globalExports;
|
|
44540
44602
|
var has$7 = _has;
|
|
44541
|
-
var DESCRIPTORS =
|
|
44603
|
+
var DESCRIPTORS = require_descriptors();
|
|
44542
44604
|
var $export$2 = _export;
|
|
44543
44605
|
var redefine = _redefine;
|
|
44544
44606
|
var META = _metaExports.KEY;
|
|
@@ -44557,11 +44619,11 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44557
44619
|
var toIObject = _toIobject;
|
|
44558
44620
|
var toPrimitive = _toPrimitive$1;
|
|
44559
44621
|
var createDesc = _propertyDesc;
|
|
44560
|
-
var _create$1 =
|
|
44622
|
+
var _create$1 = require_objectCreate();
|
|
44561
44623
|
var gOPNExt = _objectGopnExt;
|
|
44562
44624
|
var $GOPD = _objectGopd;
|
|
44563
44625
|
var $GOPS = _objectGops;
|
|
44564
|
-
var $DP =
|
|
44626
|
+
var $DP = require_objectDp();
|
|
44565
44627
|
var $keys$1 = _objectKeys;
|
|
44566
44628
|
var gOPD$1 = $GOPD.f;
|
|
44567
44629
|
var dP = $DP.f;
|
|
@@ -44697,7 +44759,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44697
44759
|
}, "toString"));
|
|
44698
44760
|
$GOPD.f = $getOwnPropertyDescriptor;
|
|
44699
44761
|
$DP.f = $defineProperty;
|
|
44700
|
-
|
|
44762
|
+
require_objectGopn().f = gOPNExt.f = $getOwnPropertyNames;
|
|
44701
44763
|
require_objectPie().f = $propertyIsEnumerable;
|
|
44702
44764
|
$GOPS.f = $getOwnPropertySymbols;
|
|
44703
44765
|
if (DESCRIPTORS && !_library) {
|
|
@@ -44864,7 +44926,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
44864
44926
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
|
|
44865
44927
|
var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
|
|
44866
44928
|
var $export = _export;
|
|
44867
|
-
$export($export.S, "Object", { create:
|
|
44929
|
+
$export($export.S, "Object", { create: require_objectCreate() });
|
|
44868
44930
|
var $Object = _coreExports.Object;
|
|
44869
44931
|
var create$3 = /* @__PURE__ */ __name(function create2(P2, D2) {
|
|
44870
44932
|
return $Object.create(P2, D2);
|
|
@@ -62058,19 +62120,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
62058
62120
|
}
|
|
62059
62121
|
__name(getActiveItem, "getActiveItem");
|
|
62060
62122
|
/*! *****************************************************************************
|
|
62061
|
-
|
|
62123
|
+
Copyright (c) Microsoft Corporation.
|
|
62062
62124
|
|
|
62063
|
-
|
|
62064
|
-
|
|
62125
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
62126
|
+
purpose with or without fee is hereby granted.
|
|
62065
62127
|
|
|
62066
|
-
|
|
62067
|
-
|
|
62068
|
-
|
|
62069
|
-
|
|
62070
|
-
|
|
62071
|
-
|
|
62072
|
-
|
|
62073
|
-
|
|
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
|
+
***************************************************************************** */
|
|
62074
62136
|
var extendStatics$3 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
62075
62137
|
extendStatics$3 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
62076
62138
|
d3.__proto__ = b5;
|
|
@@ -68090,19 +68152,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
68090
68152
|
min: DEFAULT_MIN_MILLISECOND
|
|
68091
68153
|
}, _a$1);
|
|
68092
68154
|
/*! *****************************************************************************
|
|
68093
|
-
|
|
68155
|
+
Copyright (c) Microsoft Corporation.
|
|
68094
68156
|
|
|
68095
|
-
|
|
68096
|
-
|
|
68157
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
68158
|
+
purpose with or without fee is hereby granted.
|
|
68097
68159
|
|
|
68098
|
-
|
|
68099
|
-
|
|
68100
|
-
|
|
68101
|
-
|
|
68102
|
-
|
|
68103
|
-
|
|
68104
|
-
|
|
68105
|
-
|
|
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
|
+
***************************************************************************** */
|
|
68106
68168
|
var extendStatics$2 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
68107
68169
|
extendStatics$2 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
68108
68170
|
d3.__proto__ = b5;
|
|
@@ -72447,7 +72509,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
72447
72509
|
timeout: options.timeout || updatedTimeout || intent === Intent.DANGER ? 6e4 : void 0,
|
|
72448
72510
|
action: options.action,
|
|
72449
72511
|
icon: options.icon,
|
|
72450
|
-
className: options.className
|
|
72512
|
+
className: classNames$1("preserve-newline", options.className)
|
|
72451
72513
|
},
|
|
72452
72514
|
options.key
|
|
72453
72515
|
);
|
|
@@ -85469,7 +85531,9 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
85469
85531
|
// keep this so that pasting into spreadsheets works.
|
|
85470
85532
|
format: "text/plain"
|
|
85471
85533
|
});
|
|
85472
|
-
|
|
85534
|
+
if (message) {
|
|
85535
|
+
window.toastr.success(message);
|
|
85536
|
+
}
|
|
85473
85537
|
}, "handleCopyHelper"));
|
|
85474
85538
|
__publicField(this, "handleCopyTable", /* @__PURE__ */ __name((e2) => {
|
|
85475
85539
|
try {
|
|
@@ -90737,15 +90801,15 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
90737
90801
|
var jszip_min = { exports: {} };
|
|
90738
90802
|
/*!
|
|
90739
90803
|
|
|
90740
|
-
|
|
90741
|
-
|
|
90804
|
+
JSZip v3.10.1 - A JavaScript class for generating and reading zip files
|
|
90805
|
+
<http://stuartk.com/jszip>
|
|
90742
90806
|
|
|
90743
|
-
|
|
90744
|
-
|
|
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.
|
|
90745
90809
|
|
|
90746
|
-
|
|
90747
|
-
|
|
90748
|
-
|
|
90810
|
+
JSZip uses the library pako released under the MIT license :
|
|
90811
|
+
https://github.com/nodeca/pako/blob/main/LICENSE
|
|
90812
|
+
*/
|
|
90749
90813
|
(function(module2, exports3) {
|
|
90750
90814
|
!function(e2) {
|
|
90751
90815
|
module2.exports = e2();
|
|
@@ -100378,6 +100442,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100378
100442
|
)
|
|
100379
100443
|
) || "Example";
|
|
100380
100444
|
const handleDownloadXlsxFile = /* @__PURE__ */ __name(() => __async(this, null, function* () {
|
|
100445
|
+
var _a3;
|
|
100381
100446
|
const dataDictionarySchema = [
|
|
100382
100447
|
{ value: (f2) => f2.displayName || f2.path, column: `Column Name` },
|
|
100383
100448
|
// {
|
|
@@ -100404,7 +100469,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100404
100469
|
const mainExampleData = {};
|
|
100405
100470
|
const fieldsToUse = [
|
|
100406
100471
|
...validateAgainstSchema.fields,
|
|
100407
|
-
...
|
|
100472
|
+
...(_a3 = validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
100408
100473
|
];
|
|
100409
100474
|
const mainSchema = fieldsToUse.map((f2) => {
|
|
100410
100475
|
mainExampleData[f2.displayName || f2.path] = f2.example || f2.defaultValue;
|
|
@@ -100433,11 +100498,11 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100433
100498
|
{
|
|
100434
100499
|
description: "Download Example CSV File",
|
|
100435
100500
|
exampleFile: () => {
|
|
100436
|
-
var _a3;
|
|
100501
|
+
var _a3, _b3;
|
|
100437
100502
|
const rows = [];
|
|
100438
100503
|
const schemaToUse = [
|
|
100439
100504
|
...a2.validateAgainstSchema.fields,
|
|
100440
|
-
...a2.validateAgainstSchema.exampleDownloadFields
|
|
100505
|
+
...(_a3 = a2.validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
100441
100506
|
];
|
|
100442
100507
|
rows.push(
|
|
100443
100508
|
schemaToUse.map((f2) => {
|
|
@@ -100450,7 +100515,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
100450
100515
|
})
|
|
100451
100516
|
);
|
|
100452
100517
|
const csv = papaparse_minExports.unparse(rows);
|
|
100453
|
-
const downloadFn = ((
|
|
100518
|
+
const downloadFn = ((_b3 = window.Cypress) == null ? void 0 : _b3.downloadTest) || downloadjs;
|
|
100454
100519
|
downloadFn(csv, `${nameToUse}.csv`, "csv");
|
|
100455
100520
|
}
|
|
100456
100521
|
},
|
|
@@ -103995,19 +104060,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
103995
104060
|
}(reactExports.PureComponent)
|
|
103996
104061
|
);
|
|
103997
104062
|
/*! *****************************************************************************
|
|
103998
|
-
|
|
103999
|
-
|
|
104000
|
-
|
|
104001
|
-
|
|
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
|
|
104002
104067
|
|
|
104003
|
-
|
|
104004
|
-
|
|
104005
|
-
|
|
104006
|
-
|
|
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.
|
|
104007
104072
|
|
|
104008
|
-
|
|
104009
|
-
|
|
104010
|
-
|
|
104073
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
104074
|
+
and limitations under the License.
|
|
104075
|
+
***************************************************************************** */
|
|
104011
104076
|
var extendStatics$1 = /* @__PURE__ */ __name(function(d2, b3) {
|
|
104012
104077
|
extendStatics$1 = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
104013
104078
|
d3.__proto__ = b5;
|
|
@@ -112768,6 +112833,20 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
112768
112833
|
"primers",
|
|
112769
112834
|
"guides"
|
|
112770
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");
|
|
112771
112850
|
function filterSequenceString(sequenceString = "", {
|
|
112772
112851
|
additionalValidChars = "",
|
|
112773
112852
|
isOligo: isOligo2,
|
|
@@ -112815,14 +112894,10 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
112815
112894
|
});
|
|
112816
112895
|
if (sequenceString.length !== sanitizedVal.length) {
|
|
112817
112896
|
warnings.push(
|
|
112818
|
-
`${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(", ")} `
|
|
112819
112898
|
);
|
|
112820
112899
|
}
|
|
112821
|
-
|
|
112822
|
-
warnings.forEach((warning2) => {
|
|
112823
|
-
window.toastr.warning(warning2);
|
|
112824
|
-
});
|
|
112825
|
-
}
|
|
112900
|
+
showWarnings(warnings);
|
|
112826
112901
|
return [sanitizedVal, warnings];
|
|
112827
112902
|
}
|
|
112828
112903
|
__name(filterSequenceString, "filterSequenceString");
|
|
@@ -122799,7 +122874,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
122799
122874
|
return parsingResultArray;
|
|
122800
122875
|
}
|
|
122801
122876
|
__name(flattenSequenceArray, "flattenSequenceArray");
|
|
122802
|
-
function parseFeatureLocation(locStr, isProtein2, inclusive1BasedStart, inclusive1BasedEnd) {
|
|
122877
|
+
function parseFeatureLocation(locStr, isProtein2, inclusive1BasedStart, inclusive1BasedEnd, isCircular, sequenceLength) {
|
|
122803
122878
|
locStr = locStr.trim();
|
|
122804
122879
|
const locArr = [];
|
|
122805
122880
|
locStr.replace(/(\d+)/g, function(string2, match2) {
|
|
@@ -122820,6 +122895,19 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
122820
122895
|
isProtein2 ? convertAACaretPositionOrRangeToDna(location2) : location2
|
|
122821
122896
|
);
|
|
122822
122897
|
}
|
|
122898
|
+
if (isCircular) {
|
|
122899
|
+
for (let i2 = 0; i2 < locArray.length; i2 += 2) {
|
|
122900
|
+
const firstFeature = locArray[i2];
|
|
122901
|
+
const secondFeature = locArray[i2 + 1];
|
|
122902
|
+
if (firstFeature.end === sequenceLength - (inclusive1BasedEnd ? 0 : 1) && secondFeature.start === 1 - (inclusive1BasedStart ? 0 : 1)) {
|
|
122903
|
+
locArray[i2] = {
|
|
122904
|
+
start: firstFeature.start,
|
|
122905
|
+
end: secondFeature.end
|
|
122906
|
+
};
|
|
122907
|
+
locArray.splice(i2 + 1, 1);
|
|
122908
|
+
}
|
|
122909
|
+
}
|
|
122910
|
+
}
|
|
122823
122911
|
return locArray;
|
|
122824
122912
|
}
|
|
122825
122913
|
__name(parseFeatureLocation, "parseFeatureLocation");
|
|
@@ -123153,7 +123241,9 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
123153
123241
|
line.trim(),
|
|
123154
123242
|
options.isProtein,
|
|
123155
123243
|
inclusive1BasedStart,
|
|
123156
|
-
inclusive1BasedEnd
|
|
123244
|
+
inclusive1BasedEnd,
|
|
123245
|
+
result.parsedSequence.circular,
|
|
123246
|
+
result.parsedSequence.sequence.length
|
|
123157
123247
|
)
|
|
123158
123248
|
);
|
|
123159
123249
|
lastLineWasLocation = true;
|
|
@@ -123186,7 +123276,9 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
123186
123276
|
val2,
|
|
123187
123277
|
options.isProtein,
|
|
123188
123278
|
inclusive1BasedStart,
|
|
123189
|
-
inclusive1BasedEnd
|
|
123279
|
+
inclusive1BasedEnd,
|
|
123280
|
+
result.parsedSequence.circular,
|
|
123281
|
+
result.parsedSequence.sequence.length
|
|
123190
123282
|
)
|
|
123191
123283
|
);
|
|
123192
123284
|
lastLineWasLocation = true;
|
|
@@ -149862,6 +149954,9 @@ ${seq.sequence}
|
|
|
149862
149954
|
if (!isLinearView) {
|
|
149863
149955
|
x2 = i2 === 0 ? Math.max(positionLength, xCenter) : i2 === tickMarkPositions.length - 1 ? Math.min(bpsPerRow * charWidth2 - positionLength, xCenter) : xCenter;
|
|
149864
149956
|
}
|
|
149957
|
+
if (i2 === tickMarkPositions.length - 1) {
|
|
149958
|
+
x2 = Math.min(x2, xEnd - positionLength / 2);
|
|
149959
|
+
}
|
|
149865
149960
|
tickMarkSVG.push(
|
|
149866
149961
|
/* @__PURE__ */ React$2.createElement(
|
|
149867
149962
|
"text",
|
|
@@ -154004,7 +154099,7 @@ Part of ${annotation.translationType} Translation from BPs ${annotation.start +
|
|
|
154004
154099
|
}
|
|
154005
154100
|
__name(showFileDialog, "showFileDialog");
|
|
154006
154101
|
const name = "@teselagen/ove";
|
|
154007
|
-
const version = "0.3.
|
|
154102
|
+
const version = "0.3.63";
|
|
154008
154103
|
const main = "./src/index.js";
|
|
154009
154104
|
const exports$1 = {
|
|
154010
154105
|
".": {
|
|
@@ -159994,7 +160089,7 @@ Part of ${annotation.translationType} Translation from BPs ${annotation.start +
|
|
|
159994
160089
|
updateLabelsForInViewFeatures();
|
|
159995
160090
|
},
|
|
159996
160091
|
rowContainerStyle: __spreadValues({
|
|
159997
|
-
height: isNaN(height2 - 36) ? "auto" : height2 - 36,
|
|
160092
|
+
height: isNaN(height2 - 36) ? "auto" : height2 - 36 - (hideName ? 0 : 20),
|
|
159998
160093
|
width: innerWidth2 + 26,
|
|
159999
160094
|
paddingRight: marginWidth / 2
|
|
160000
160095
|
}, isLinViewZoomed && !isInAlignment && { paddingBottom: 15 }),
|
|
@@ -178290,19 +178385,19 @@ ${seqDataToCopy}\r
|
|
|
178290
178385
|
* Released under MIT License
|
|
178291
178386
|
*/
|
|
178292
178387
|
/*! *****************************************************************************
|
|
178293
|
-
|
|
178388
|
+
Copyright (c) Microsoft Corporation.
|
|
178294
178389
|
|
|
178295
|
-
|
|
178296
|
-
|
|
178390
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
178391
|
+
purpose with or without fee is hereby granted.
|
|
178297
178392
|
|
|
178298
|
-
|
|
178299
|
-
|
|
178300
|
-
|
|
178301
|
-
|
|
178302
|
-
|
|
178303
|
-
|
|
178304
|
-
|
|
178305
|
-
|
|
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
|
+
***************************************************************************** */
|
|
178306
178401
|
var extendStatics = /* @__PURE__ */ __name(function(d2, b3) {
|
|
178307
178402
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b5) {
|
|
178308
178403
|
d3.__proto__ = b5;
|