@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.cjs.js
CHANGED
|
@@ -84,6 +84,7 @@ function _interopNamespaceDefault(e2) {
|
|
|
84
84
|
}
|
|
85
85
|
__name(_interopNamespaceDefault, "_interopNamespaceDefault");
|
|
86
86
|
const React__namespace = /* @__PURE__ */ _interopNamespaceDefault(React$2);
|
|
87
|
+
const _400 = "";
|
|
87
88
|
const blueprint = "";
|
|
88
89
|
const blueprintDatetime = "";
|
|
89
90
|
const blueprintIcons = "";
|
|
@@ -2839,7 +2840,7 @@ var followCursor = {
|
|
|
2839
2840
|
}
|
|
2840
2841
|
}
|
|
2841
2842
|
__name(onMouseMove, "onMouseMove");
|
|
2842
|
-
function
|
|
2843
|
+
function create6() {
|
|
2843
2844
|
if (instance.props.followCursor) {
|
|
2844
2845
|
activeInstances.push({
|
|
2845
2846
|
instance,
|
|
@@ -2848,7 +2849,7 @@ var followCursor = {
|
|
|
2848
2849
|
addMouseCoordsListener(doc);
|
|
2849
2850
|
}
|
|
2850
2851
|
}
|
|
2851
|
-
__name(
|
|
2852
|
+
__name(create6, "create");
|
|
2852
2853
|
function destroy2() {
|
|
2853
2854
|
activeInstances = activeInstances.filter(function(data) {
|
|
2854
2855
|
return data.instance !== instance;
|
|
@@ -2861,7 +2862,7 @@ var followCursor = {
|
|
|
2861
2862
|
}
|
|
2862
2863
|
__name(destroy2, "destroy");
|
|
2863
2864
|
return {
|
|
2864
|
-
onCreate:
|
|
2865
|
+
onCreate: create6,
|
|
2865
2866
|
onDestroy: destroy2,
|
|
2866
2867
|
onBeforeUpdate: /* @__PURE__ */ __name(function onBeforeUpdate2() {
|
|
2867
2868
|
prevProps = instance.props;
|
|
@@ -2874,7 +2875,7 @@ var followCursor = {
|
|
|
2874
2875
|
if (followCursor2 !== void 0 && prevProps.followCursor !== followCursor2) {
|
|
2875
2876
|
destroy2();
|
|
2876
2877
|
if (followCursor2) {
|
|
2877
|
-
|
|
2878
|
+
create6();
|
|
2878
2879
|
if (instance.state.isMounted && !wasFocusEvent && !getIsInitialBehavior()) {
|
|
2879
2880
|
addListener();
|
|
2880
2881
|
}
|
|
@@ -5515,10 +5516,10 @@ var ownKeys$7 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownK
|
|
|
5515
5516
|
/* istanbul ignore next */
|
|
5516
5517
|
Object.getOwnPropertyNames
|
|
5517
5518
|
);
|
|
5518
|
-
function toPrimitive$
|
|
5519
|
+
function toPrimitive$3(value) {
|
|
5519
5520
|
return value === null ? null : typeof value === "object" ? "" + value : value;
|
|
5520
5521
|
}
|
|
5521
|
-
__name(toPrimitive$
|
|
5522
|
+
__name(toPrimitive$3, "toPrimitive$3");
|
|
5522
5523
|
function hasProp(target, prop2) {
|
|
5523
5524
|
return objectPrototype$1.hasOwnProperty.call(target, prop2);
|
|
5524
5525
|
}
|
|
@@ -6415,7 +6416,7 @@ var ObservableValue = /* @__PURE__ */ function(_Atom) {
|
|
|
6415
6416
|
return this.name_ + "[" + this.value_ + "]";
|
|
6416
6417
|
}, "toString");
|
|
6417
6418
|
_proto.valueOf = /* @__PURE__ */ __name(function valueOf() {
|
|
6418
|
-
return toPrimitive$
|
|
6419
|
+
return toPrimitive$3(this.get());
|
|
6419
6420
|
}, "valueOf");
|
|
6420
6421
|
_proto[_Symbol$toPrimitive] = function() {
|
|
6421
6422
|
return this.valueOf();
|
|
@@ -6600,7 +6601,7 @@ var ComputedValue = /* @__PURE__ */ function() {
|
|
|
6600
6601
|
return this.name_ + "[" + this.derivation.toString() + "]";
|
|
6601
6602
|
}, "toString");
|
|
6602
6603
|
_proto.valueOf = /* @__PURE__ */ __name(function valueOf() {
|
|
6603
|
-
return toPrimitive$
|
|
6604
|
+
return toPrimitive$3(this.get());
|
|
6604
6605
|
}, "valueOf");
|
|
6605
6606
|
_proto[_Symbol$toPrimitive$1] = function() {
|
|
6606
6607
|
return this.valueOf();
|
|
@@ -11234,7 +11235,7 @@ lodash.exports;
|
|
|
11234
11235
|
"^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar2, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
|
11235
11236
|
);
|
|
11236
11237
|
var Buffer2 = moduleExports2 ? context.Buffer : undefined$12, Symbol2 = context.Symbol, Uint8Array2 = context.Uint8Array, allocUnsafe2 = Buffer2 ? Buffer2.allocUnsafe : undefined$12, getPrototype2 = overArg2(Object2.getPrototypeOf, Object2), objectCreate2 = Object2.create, propertyIsEnumerable3 = objectProto2.propertyIsEnumerable, splice3 = arrayProto2.splice, spreadableSymbol2 = Symbol2 ? Symbol2.isConcatSpreadable : undefined$12, symIterator = Symbol2 ? Symbol2.iterator : undefined$12, symToStringTag2 = Symbol2 ? Symbol2.toStringTag : undefined$12;
|
|
11237
|
-
var
|
|
11238
|
+
var defineProperty6 = function() {
|
|
11238
11239
|
try {
|
|
11239
11240
|
var func = getNative2(Object2, "defineProperty");
|
|
11240
11241
|
func({}, "", {});
|
|
@@ -11674,8 +11675,8 @@ lodash.exports;
|
|
|
11674
11675
|
}
|
|
11675
11676
|
__name(baseAssignIn2, "baseAssignIn");
|
|
11676
11677
|
function baseAssignValue2(object3, key, value) {
|
|
11677
|
-
if (key == "__proto__" &&
|
|
11678
|
-
|
|
11678
|
+
if (key == "__proto__" && defineProperty6) {
|
|
11679
|
+
defineProperty6(object3, key, {
|
|
11679
11680
|
"configurable": true,
|
|
11680
11681
|
"enumerable": true,
|
|
11681
11682
|
"value": value,
|
|
@@ -12408,8 +12409,8 @@ lodash.exports;
|
|
|
12408
12409
|
metaMap.set(func, data);
|
|
12409
12410
|
return func;
|
|
12410
12411
|
};
|
|
12411
|
-
var baseSetToString2 = !
|
|
12412
|
-
return
|
|
12412
|
+
var baseSetToString2 = !defineProperty6 ? identity4 : function(func, string2) {
|
|
12413
|
+
return defineProperty6(func, "toString", {
|
|
12413
12414
|
"configurable": true,
|
|
12414
12415
|
"enumerable": false,
|
|
12415
12416
|
"value": constant2(string2),
|
|
@@ -15143,11 +15144,11 @@ lodash.exports;
|
|
|
15143
15144
|
copyObject2(source, keys5(source), object3, customizer);
|
|
15144
15145
|
});
|
|
15145
15146
|
var at = flatRest2(baseAt);
|
|
15146
|
-
function
|
|
15147
|
+
function create6(prototype, properties) {
|
|
15147
15148
|
var result2 = baseCreate2(prototype);
|
|
15148
15149
|
return properties == null ? result2 : baseAssign2(result2, properties);
|
|
15149
15150
|
}
|
|
15150
|
-
__name(
|
|
15151
|
+
__name(create6, "create");
|
|
15151
15152
|
var defaults2 = baseRest2(function(object3, sources) {
|
|
15152
15153
|
object3 = Object2(object3);
|
|
15153
15154
|
var index2 = -1;
|
|
@@ -15972,7 +15973,7 @@ lodash.exports;
|
|
|
15972
15973
|
lodash2.conforms = conforms;
|
|
15973
15974
|
lodash2.constant = constant2;
|
|
15974
15975
|
lodash2.countBy = countBy;
|
|
15975
|
-
lodash2.create =
|
|
15976
|
+
lodash2.create = create6;
|
|
15976
15977
|
lodash2.curry = curry;
|
|
15977
15978
|
lodash2.curryRight = curryRight;
|
|
15978
15979
|
lodash2.debounce = debounce2;
|
|
@@ -16933,20 +16934,11 @@ var _fails = /* @__PURE__ */ __name(function(exec) {
|
|
|
16933
16934
|
return true;
|
|
16934
16935
|
}
|
|
16935
16936
|
}, "_fails");
|
|
16936
|
-
var _descriptors
|
|
16937
|
-
|
|
16938
|
-
|
|
16939
|
-
|
|
16940
|
-
|
|
16941
|
-
hasRequired_descriptors = 1;
|
|
16942
|
-
_descriptors = !_fails(function() {
|
|
16943
|
-
return Object.defineProperty({}, "a", { get: function() {
|
|
16944
|
-
return 7;
|
|
16945
|
-
} }).a != 7;
|
|
16946
|
-
});
|
|
16947
|
-
return _descriptors;
|
|
16948
|
-
}
|
|
16949
|
-
__name(require_descriptors, "require_descriptors");
|
|
16937
|
+
var _descriptors = !_fails(function() {
|
|
16938
|
+
return Object.defineProperty({}, "a", { get: function() {
|
|
16939
|
+
return 7;
|
|
16940
|
+
} }).a != 7;
|
|
16941
|
+
});
|
|
16950
16942
|
var _domCreate;
|
|
16951
16943
|
var hasRequired_domCreate;
|
|
16952
16944
|
function require_domCreate() {
|
|
@@ -16962,20 +16954,11 @@ function require_domCreate() {
|
|
|
16962
16954
|
return _domCreate;
|
|
16963
16955
|
}
|
|
16964
16956
|
__name(require_domCreate, "require_domCreate");
|
|
16965
|
-
var _ie8DomDefine
|
|
16966
|
-
|
|
16967
|
-
|
|
16968
|
-
|
|
16969
|
-
|
|
16970
|
-
hasRequired_ie8DomDefine = 1;
|
|
16971
|
-
_ie8DomDefine = !require_descriptors() && !_fails(function() {
|
|
16972
|
-
return Object.defineProperty(require_domCreate()("div"), "a", { get: function() {
|
|
16973
|
-
return 7;
|
|
16974
|
-
} }).a != 7;
|
|
16975
|
-
});
|
|
16976
|
-
return _ie8DomDefine;
|
|
16977
|
-
}
|
|
16978
|
-
__name(require_ie8DomDefine, "require_ie8DomDefine");
|
|
16957
|
+
var _ie8DomDefine = !_descriptors && !_fails(function() {
|
|
16958
|
+
return Object.defineProperty(require_domCreate()("div"), "a", { get: function() {
|
|
16959
|
+
return 7;
|
|
16960
|
+
} }).a != 7;
|
|
16961
|
+
});
|
|
16979
16962
|
var isObject$d = _isObject;
|
|
16980
16963
|
var _toPrimitive$1 = /* @__PURE__ */ __name(function(it, S2) {
|
|
16981
16964
|
if (!isObject$d(it))
|
|
@@ -16989,33 +16972,25 @@ var _toPrimitive$1 = /* @__PURE__ */ __name(function(it, S2) {
|
|
|
16989
16972
|
return val2;
|
|
16990
16973
|
throw TypeError("Can't convert object to primitive value");
|
|
16991
16974
|
}, "_toPrimitive$1");
|
|
16992
|
-
var
|
|
16993
|
-
|
|
16994
|
-
|
|
16995
|
-
|
|
16996
|
-
|
|
16997
|
-
|
|
16998
|
-
|
|
16999
|
-
|
|
17000
|
-
|
|
17001
|
-
|
|
17002
|
-
|
|
17003
|
-
|
|
17004
|
-
|
|
17005
|
-
|
|
17006
|
-
|
|
17007
|
-
|
|
17008
|
-
|
|
17009
|
-
|
|
17010
|
-
|
|
17011
|
-
throw TypeError("Accessors not supported!");
|
|
17012
|
-
if ("value" in Attributes)
|
|
17013
|
-
O2[P2] = Attributes.value;
|
|
17014
|
-
return O2;
|
|
17015
|
-
}, "defineProperty");
|
|
17016
|
-
return _objectDp;
|
|
17017
|
-
}
|
|
17018
|
-
__name(require_objectDp, "require_objectDp");
|
|
16975
|
+
var anObject$5 = _anObject;
|
|
16976
|
+
var IE8_DOM_DEFINE$1 = _ie8DomDefine;
|
|
16977
|
+
var toPrimitive$2 = _toPrimitive$1;
|
|
16978
|
+
var dP$3 = Object.defineProperty;
|
|
16979
|
+
_objectDp.f = _descriptors ? Object.defineProperty : /* @__PURE__ */ __name(function defineProperty2(O2, P2, Attributes) {
|
|
16980
|
+
anObject$5(O2);
|
|
16981
|
+
P2 = toPrimitive$2(P2, true);
|
|
16982
|
+
anObject$5(Attributes);
|
|
16983
|
+
if (IE8_DOM_DEFINE$1)
|
|
16984
|
+
try {
|
|
16985
|
+
return dP$3(O2, P2, Attributes);
|
|
16986
|
+
} catch (e2) {
|
|
16987
|
+
}
|
|
16988
|
+
if ("get" in Attributes || "set" in Attributes)
|
|
16989
|
+
throw TypeError("Accessors not supported!");
|
|
16990
|
+
if ("value" in Attributes)
|
|
16991
|
+
O2[P2] = Attributes.value;
|
|
16992
|
+
return O2;
|
|
16993
|
+
}, "defineProperty");
|
|
17019
16994
|
var _propertyDesc = /* @__PURE__ */ __name(function(bitmap, value) {
|
|
17020
16995
|
return {
|
|
17021
16996
|
enumerable: !(bitmap & 1),
|
|
@@ -17024,10 +16999,10 @@ var _propertyDesc = /* @__PURE__ */ __name(function(bitmap, value) {
|
|
|
17024
16999
|
value
|
|
17025
17000
|
};
|
|
17026
17001
|
}, "_propertyDesc");
|
|
17027
|
-
var dP$
|
|
17002
|
+
var dP$2 = _objectDp;
|
|
17028
17003
|
var createDesc$3 = _propertyDesc;
|
|
17029
|
-
var _hide =
|
|
17030
|
-
return dP$
|
|
17004
|
+
var _hide = _descriptors ? function(object3, key, value) {
|
|
17005
|
+
return dP$2.f(object3, key, createDesc$3(1, value));
|
|
17031
17006
|
} : function(object3, key, value) {
|
|
17032
17007
|
object3[key] = value;
|
|
17033
17008
|
return object3;
|
|
@@ -17041,7 +17016,7 @@ var core$3 = _coreExports;
|
|
|
17041
17016
|
var ctx$1 = _ctx;
|
|
17042
17017
|
var hide$3 = _hide;
|
|
17043
17018
|
var has$e = _has;
|
|
17044
|
-
var PROTOTYPE$
|
|
17019
|
+
var PROTOTYPE$2 = "prototype";
|
|
17045
17020
|
var $export$8 = /* @__PURE__ */ __name(function(type, name2, source) {
|
|
17046
17021
|
var IS_FORCED = type & $export$8.F;
|
|
17047
17022
|
var IS_GLOBAL = type & $export$8.G;
|
|
@@ -17050,8 +17025,8 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name2, source) {
|
|
|
17050
17025
|
var IS_BIND = type & $export$8.B;
|
|
17051
17026
|
var IS_WRAP = type & $export$8.W;
|
|
17052
17027
|
var exports2 = IS_GLOBAL ? core$3 : core$3[name2] || (core$3[name2] = {});
|
|
17053
|
-
var expProto = exports2[PROTOTYPE$
|
|
17054
|
-
var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name2] : (global$5[name2] || {})[PROTOTYPE$
|
|
17028
|
+
var expProto = exports2[PROTOTYPE$2];
|
|
17029
|
+
var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name2] : (global$5[name2] || {})[PROTOTYPE$2];
|
|
17055
17030
|
var key, own2, out;
|
|
17056
17031
|
if (IS_GLOBAL)
|
|
17057
17032
|
source = name2;
|
|
@@ -17075,7 +17050,7 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name2, source) {
|
|
|
17075
17050
|
}
|
|
17076
17051
|
return C.apply(this, arguments);
|
|
17077
17052
|
}, "F");
|
|
17078
|
-
F[PROTOTYPE$
|
|
17053
|
+
F[PROTOTYPE$2] = C[PROTOTYPE$2];
|
|
17079
17054
|
return F;
|
|
17080
17055
|
}(out) : IS_PROTO && typeof out == "function" ? ctx$1(Function.call, out) : out;
|
|
17081
17056
|
if (IS_PROTO) {
|
|
@@ -17180,14 +17155,14 @@ var _sharedKey = /* @__PURE__ */ __name(function(key) {
|
|
|
17180
17155
|
var has$d = _has;
|
|
17181
17156
|
var toIObject$4 = _toIobject;
|
|
17182
17157
|
var arrayIndexOf = _arrayIncludes$1(false);
|
|
17183
|
-
var IE_PROTO$
|
|
17158
|
+
var IE_PROTO$2 = _sharedKey("IE_PROTO");
|
|
17184
17159
|
var _objectKeysInternal = /* @__PURE__ */ __name(function(object3, names2) {
|
|
17185
17160
|
var O2 = toIObject$4(object3);
|
|
17186
17161
|
var i = 0;
|
|
17187
17162
|
var result = [];
|
|
17188
17163
|
var key;
|
|
17189
17164
|
for (key in O2)
|
|
17190
|
-
if (key != IE_PROTO$
|
|
17165
|
+
if (key != IE_PROTO$2)
|
|
17191
17166
|
has$d(O2, key) && result.push(key);
|
|
17192
17167
|
while (names2.length > i)
|
|
17193
17168
|
if (has$d(O2, key = names2[i++])) {
|
|
@@ -17197,22 +17172,14 @@ var _objectKeysInternal = /* @__PURE__ */ __name(function(object3, names2) {
|
|
|
17197
17172
|
}, "_objectKeysInternal");
|
|
17198
17173
|
var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
|
|
17199
17174
|
var $keys$3 = _objectKeysInternal;
|
|
17200
|
-
var enumBugKeys = _enumBugKeys;
|
|
17175
|
+
var enumBugKeys$1 = _enumBugKeys;
|
|
17201
17176
|
var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys(O2) {
|
|
17202
|
-
return $keys$3(O2, enumBugKeys);
|
|
17177
|
+
return $keys$3(O2, enumBugKeys$1);
|
|
17203
17178
|
}, "keys");
|
|
17204
17179
|
var _objectGops = {};
|
|
17205
17180
|
_objectGops.f = Object.getOwnPropertySymbols;
|
|
17206
17181
|
var _objectPie = {};
|
|
17207
|
-
|
|
17208
|
-
function require_objectPie() {
|
|
17209
|
-
if (hasRequired_objectPie)
|
|
17210
|
-
return _objectPie;
|
|
17211
|
-
hasRequired_objectPie = 1;
|
|
17212
|
-
_objectPie.f = {}.propertyIsEnumerable;
|
|
17213
|
-
return _objectPie;
|
|
17214
|
-
}
|
|
17215
|
-
__name(require_objectPie, "require_objectPie");
|
|
17182
|
+
_objectPie.f = {}.propertyIsEnumerable;
|
|
17216
17183
|
var defined$1 = _defined;
|
|
17217
17184
|
var _toObject = /* @__PURE__ */ __name(function(it) {
|
|
17218
17185
|
return Object(defined$1(it));
|
|
@@ -17223,10 +17190,10 @@ function require_objectAssign() {
|
|
|
17223
17190
|
if (hasRequired_objectAssign)
|
|
17224
17191
|
return _objectAssign;
|
|
17225
17192
|
hasRequired_objectAssign = 1;
|
|
17226
|
-
var DESCRIPTORS2 =
|
|
17193
|
+
var DESCRIPTORS2 = _descriptors;
|
|
17227
17194
|
var getKeys2 = _objectKeys;
|
|
17228
17195
|
var gOPS2 = _objectGops;
|
|
17229
|
-
var pIE2 =
|
|
17196
|
+
var pIE2 = _objectPie;
|
|
17230
17197
|
var toObject2 = _toObject;
|
|
17231
17198
|
var IObject2 = _iobject;
|
|
17232
17199
|
var $assign = Object.assign;
|
|
@@ -17289,28 +17256,19 @@ var _iterStep = /* @__PURE__ */ __name(function(done, value) {
|
|
|
17289
17256
|
}, "_iterStep");
|
|
17290
17257
|
var _iterators = {};
|
|
17291
17258
|
var _redefine = _hide;
|
|
17292
|
-
var
|
|
17293
|
-
var
|
|
17294
|
-
|
|
17295
|
-
|
|
17296
|
-
|
|
17297
|
-
|
|
17298
|
-
var
|
|
17299
|
-
var
|
|
17300
|
-
var
|
|
17301
|
-
|
|
17302
|
-
|
|
17303
|
-
|
|
17304
|
-
|
|
17305
|
-
var i = 0;
|
|
17306
|
-
var P2;
|
|
17307
|
-
while (length > i)
|
|
17308
|
-
dP2.f(O2, P2 = keys5[i++], Properties2[P2]);
|
|
17309
|
-
return O2;
|
|
17310
|
-
}, "defineProperties");
|
|
17311
|
-
return _objectDps;
|
|
17312
|
-
}
|
|
17313
|
-
__name(require_objectDps, "require_objectDps");
|
|
17259
|
+
var dP$1 = _objectDp;
|
|
17260
|
+
var anObject$4 = _anObject;
|
|
17261
|
+
var getKeys$1 = _objectKeys;
|
|
17262
|
+
var _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties(O2, Properties2) {
|
|
17263
|
+
anObject$4(O2);
|
|
17264
|
+
var keys5 = getKeys$1(Properties2);
|
|
17265
|
+
var length = keys5.length;
|
|
17266
|
+
var i = 0;
|
|
17267
|
+
var P2;
|
|
17268
|
+
while (length > i)
|
|
17269
|
+
dP$1.f(O2, P2 = keys5[i++], Properties2[P2]);
|
|
17270
|
+
return O2;
|
|
17271
|
+
}, "defineProperties");
|
|
17314
17272
|
var _html;
|
|
17315
17273
|
var hasRequired_html;
|
|
17316
17274
|
function require_html() {
|
|
@@ -17322,51 +17280,42 @@ function require_html() {
|
|
|
17322
17280
|
return _html;
|
|
17323
17281
|
}
|
|
17324
17282
|
__name(require_html, "require_html");
|
|
17325
|
-
var
|
|
17326
|
-
var
|
|
17327
|
-
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
17332
|
-
|
|
17333
|
-
var
|
|
17334
|
-
var
|
|
17335
|
-
var
|
|
17336
|
-
|
|
17337
|
-
var
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
|
|
17343
|
-
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
|
|
17353
|
-
|
|
17354
|
-
|
|
17355
|
-
|
|
17356
|
-
|
|
17357
|
-
|
|
17358
|
-
|
|
17359
|
-
|
|
17360
|
-
|
|
17361
|
-
Empty[PROTOTYPE2] = null;
|
|
17362
|
-
result[IE_PROTO2] = O2;
|
|
17363
|
-
} else
|
|
17364
|
-
result = createDict();
|
|
17365
|
-
return Properties2 === void 0 ? result : dPs(result, Properties2);
|
|
17366
|
-
}, "create");
|
|
17367
|
-
return _objectCreate;
|
|
17368
|
-
}
|
|
17369
|
-
__name(require_objectCreate, "require_objectCreate");
|
|
17283
|
+
var anObject$3 = _anObject;
|
|
17284
|
+
var dPs = _objectDps;
|
|
17285
|
+
var enumBugKeys = _enumBugKeys;
|
|
17286
|
+
var IE_PROTO$1 = _sharedKey("IE_PROTO");
|
|
17287
|
+
var Empty = /* @__PURE__ */ __name(function() {
|
|
17288
|
+
}, "Empty");
|
|
17289
|
+
var PROTOTYPE$1 = "prototype";
|
|
17290
|
+
var createDict = /* @__PURE__ */ __name(function() {
|
|
17291
|
+
var iframe = require_domCreate()("iframe");
|
|
17292
|
+
var i = enumBugKeys.length;
|
|
17293
|
+
var lt = "<";
|
|
17294
|
+
var gt = ">";
|
|
17295
|
+
var iframeDocument;
|
|
17296
|
+
iframe.style.display = "none";
|
|
17297
|
+
require_html().appendChild(iframe);
|
|
17298
|
+
iframe.src = "javascript:";
|
|
17299
|
+
iframeDocument = iframe.contentWindow.document;
|
|
17300
|
+
iframeDocument.open();
|
|
17301
|
+
iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
|
|
17302
|
+
iframeDocument.close();
|
|
17303
|
+
createDict = iframeDocument.F;
|
|
17304
|
+
while (i--)
|
|
17305
|
+
delete createDict[PROTOTYPE$1][enumBugKeys[i]];
|
|
17306
|
+
return createDict();
|
|
17307
|
+
}, "createDict");
|
|
17308
|
+
var _objectCreate = Object.create || /* @__PURE__ */ __name(function create(O2, Properties2) {
|
|
17309
|
+
var result;
|
|
17310
|
+
if (O2 !== null) {
|
|
17311
|
+
Empty[PROTOTYPE$1] = anObject$3(O2);
|
|
17312
|
+
result = new Empty();
|
|
17313
|
+
Empty[PROTOTYPE$1] = null;
|
|
17314
|
+
result[IE_PROTO$1] = O2;
|
|
17315
|
+
} else
|
|
17316
|
+
result = createDict();
|
|
17317
|
+
return Properties2 === void 0 ? result : dPs(result, Properties2);
|
|
17318
|
+
}, "create");
|
|
17370
17319
|
var _wks = { exports: {} };
|
|
17371
17320
|
var store$2 = _sharedExports("wks");
|
|
17372
17321
|
var uid$1 = _uid;
|
|
@@ -17377,14 +17326,14 @@ var $exports = _wks.exports = function(name2) {
|
|
|
17377
17326
|
};
|
|
17378
17327
|
$exports.store = store$2;
|
|
17379
17328
|
var _wksExports = _wks.exports;
|
|
17380
|
-
var def =
|
|
17329
|
+
var def = _objectDp.f;
|
|
17381
17330
|
var has$c = _has;
|
|
17382
17331
|
var TAG$1 = _wksExports("toStringTag");
|
|
17383
17332
|
var _setToStringTag = /* @__PURE__ */ __name(function(it, tag, stat) {
|
|
17384
17333
|
if (it && !has$c(it = stat ? it : it.prototype, TAG$1))
|
|
17385
17334
|
def(it, TAG$1, { configurable: true, value: tag });
|
|
17386
17335
|
}, "_setToStringTag");
|
|
17387
|
-
var create$4 =
|
|
17336
|
+
var create$4 = _objectCreate;
|
|
17388
17337
|
var descriptor = _propertyDesc;
|
|
17389
17338
|
var setToStringTag$2 = _setToStringTag;
|
|
17390
17339
|
var IteratorPrototype = {};
|
|
@@ -17650,7 +17599,7 @@ var ArrayProto = Array.prototype;
|
|
|
17650
17599
|
var _isArrayIter = /* @__PURE__ */ __name(function(it) {
|
|
17651
17600
|
return it !== void 0 && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
|
|
17652
17601
|
}, "_isArrayIter");
|
|
17653
|
-
var $defineProperty$2 =
|
|
17602
|
+
var $defineProperty$2 = _objectDp;
|
|
17654
17603
|
var createDesc$2 = _propertyDesc;
|
|
17655
17604
|
var _createProperty = /* @__PURE__ */ __name(function(object3, index2, value) {
|
|
17656
17605
|
if (index2 in object3)
|
|
@@ -17779,9 +17728,9 @@ var _default$8 = /* @__PURE__ */ __name(function(instance, Constructor) {
|
|
|
17779
17728
|
}
|
|
17780
17729
|
}, "_default$8");
|
|
17781
17730
|
var $export$3 = _export;
|
|
17782
|
-
$export$3($export$3.S + $export$3.F * !
|
|
17731
|
+
$export$3($export$3.S + $export$3.F * !_descriptors, "Object", { defineProperty: _objectDp.f });
|
|
17783
17732
|
var $Object$2 = _coreExports.Object;
|
|
17784
|
-
var defineProperty$c = /* @__PURE__ */ __name(function
|
|
17733
|
+
var defineProperty$c = /* @__PURE__ */ __name(function defineProperty3(it, key, desc) {
|
|
17785
17734
|
return $Object$2.defineProperty(it, key, desc);
|
|
17786
17735
|
}, "defineProperty");
|
|
17787
17736
|
var defineProperty$b = { "default": defineProperty$c, __esModule: true };
|
|
@@ -17792,7 +17741,7 @@ function _interopRequireDefault$c(obj) {
|
|
|
17792
17741
|
}
|
|
17793
17742
|
__name(_interopRequireDefault$c, "_interopRequireDefault$c");
|
|
17794
17743
|
var _default$7 = function() {
|
|
17795
|
-
function
|
|
17744
|
+
function defineProperties4(target, props) {
|
|
17796
17745
|
for (var i = 0; i < props.length; i++) {
|
|
17797
17746
|
var descriptor2 = props[i];
|
|
17798
17747
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -17802,12 +17751,12 @@ var _default$7 = function() {
|
|
|
17802
17751
|
(0, _defineProperty2.default)(target, descriptor2.key, descriptor2);
|
|
17803
17752
|
}
|
|
17804
17753
|
}
|
|
17805
|
-
__name(
|
|
17754
|
+
__name(defineProperties4, "defineProperties");
|
|
17806
17755
|
return function(Constructor, protoProps, staticProps) {
|
|
17807
17756
|
if (protoProps)
|
|
17808
|
-
|
|
17757
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
17809
17758
|
if (staticProps)
|
|
17810
|
-
|
|
17759
|
+
defineProperties4(Constructor, staticProps);
|
|
17811
17760
|
return Constructor;
|
|
17812
17761
|
};
|
|
17813
17762
|
}();
|
|
@@ -17820,7 +17769,7 @@ var _meta = { exports: {} };
|
|
|
17820
17769
|
var META$1 = _uid("meta");
|
|
17821
17770
|
var isObject$c = _isObject;
|
|
17822
17771
|
var has$a = _has;
|
|
17823
|
-
var setDesc =
|
|
17772
|
+
var setDesc = _objectDp.f;
|
|
17824
17773
|
var id$1 = 0;
|
|
17825
17774
|
var isExtensible = Object.isExtensible || function() {
|
|
17826
17775
|
return true;
|
|
@@ -17836,23 +17785,23 @@ var setMeta = /* @__PURE__ */ __name(function(it) {
|
|
|
17836
17785
|
// weak collections IDs
|
|
17837
17786
|
} });
|
|
17838
17787
|
}, "setMeta");
|
|
17839
|
-
var fastKey = /* @__PURE__ */ __name(function(it,
|
|
17788
|
+
var fastKey = /* @__PURE__ */ __name(function(it, create6) {
|
|
17840
17789
|
if (!isObject$c(it))
|
|
17841
17790
|
return typeof it == "symbol" ? it : (typeof it == "string" ? "S" : "P") + it;
|
|
17842
17791
|
if (!has$a(it, META$1)) {
|
|
17843
17792
|
if (!isExtensible(it))
|
|
17844
17793
|
return "F";
|
|
17845
|
-
if (!
|
|
17794
|
+
if (!create6)
|
|
17846
17795
|
return "E";
|
|
17847
17796
|
setMeta(it);
|
|
17848
17797
|
}
|
|
17849
17798
|
return it[META$1].i;
|
|
17850
17799
|
}, "fastKey");
|
|
17851
|
-
var getWeak = /* @__PURE__ */ __name(function(it,
|
|
17800
|
+
var getWeak = /* @__PURE__ */ __name(function(it, create6) {
|
|
17852
17801
|
if (!has$a(it, META$1)) {
|
|
17853
17802
|
if (!isExtensible(it))
|
|
17854
17803
|
return true;
|
|
17855
|
-
if (!
|
|
17804
|
+
if (!create6)
|
|
17856
17805
|
return false;
|
|
17857
17806
|
setMeta(it);
|
|
17858
17807
|
}
|
|
@@ -17873,7 +17822,7 @@ var meta = _meta.exports = {
|
|
|
17873
17822
|
var _metaExports = _meta.exports;
|
|
17874
17823
|
var core = _coreExports;
|
|
17875
17824
|
var wksExt$1 = _wksExt;
|
|
17876
|
-
var defineProperty$a =
|
|
17825
|
+
var defineProperty$a = _objectDp.f;
|
|
17877
17826
|
var _wksDefine = /* @__PURE__ */ __name(function(name2) {
|
|
17878
17827
|
var $Symbol2 = core.Symbol || (core.Symbol = {});
|
|
17879
17828
|
if (name2.charAt(0) != "_" && !(name2 in $Symbol2))
|
|
@@ -17881,7 +17830,7 @@ var _wksDefine = /* @__PURE__ */ __name(function(name2) {
|
|
|
17881
17830
|
}, "_wksDefine");
|
|
17882
17831
|
var getKeys = _objectKeys;
|
|
17883
17832
|
var gOPS$1 = _objectGops;
|
|
17884
|
-
var pIE$1 =
|
|
17833
|
+
var pIE$1 = _objectPie;
|
|
17885
17834
|
var _enumKeys = /* @__PURE__ */ __name(function(it) {
|
|
17886
17835
|
var result = getKeys(it);
|
|
17887
17836
|
var getSymbols2 = gOPS$1.f;
|
|
@@ -17922,14 +17871,14 @@ _objectGopnExt.f = /* @__PURE__ */ __name(function getOwnPropertyNames2(it) {
|
|
|
17922
17871
|
return windowNames && toString$5.call(it) == "[object Window]" ? getWindowNames(it) : gOPN$1(toIObject$2(it));
|
|
17923
17872
|
}, "getOwnPropertyNames");
|
|
17924
17873
|
var _objectGopd = {};
|
|
17925
|
-
var pIE =
|
|
17874
|
+
var pIE = _objectPie;
|
|
17926
17875
|
var createDesc$1 = _propertyDesc;
|
|
17927
17876
|
var toIObject$1 = _toIobject;
|
|
17928
17877
|
var toPrimitive$1 = _toPrimitive$1;
|
|
17929
17878
|
var has$9 = _has;
|
|
17930
|
-
var IE8_DOM_DEFINE =
|
|
17879
|
+
var IE8_DOM_DEFINE = _ie8DomDefine;
|
|
17931
17880
|
var gOPD$5 = Object.getOwnPropertyDescriptor;
|
|
17932
|
-
_objectGopd.f =
|
|
17881
|
+
_objectGopd.f = _descriptors ? gOPD$5 : /* @__PURE__ */ __name(function getOwnPropertyDescriptor(O2, P2) {
|
|
17933
17882
|
O2 = toIObject$1(O2);
|
|
17934
17883
|
P2 = toPrimitive$1(P2, true);
|
|
17935
17884
|
if (IE8_DOM_DEFINE)
|
|
@@ -17942,7 +17891,7 @@ _objectGopd.f = require_descriptors() ? gOPD$5 : /* @__PURE__ */ __name(function
|
|
|
17942
17891
|
}, "getOwnPropertyDescriptor");
|
|
17943
17892
|
var global$2 = _globalExports;
|
|
17944
17893
|
var has$8 = _has;
|
|
17945
|
-
var DESCRIPTORS =
|
|
17894
|
+
var DESCRIPTORS = _descriptors;
|
|
17946
17895
|
var $export$2 = _export;
|
|
17947
17896
|
var redefine = _redefine;
|
|
17948
17897
|
var META = _metaExports.KEY;
|
|
@@ -17961,11 +17910,11 @@ var toObject$1 = _toObject;
|
|
|
17961
17910
|
var toIObject = _toIobject;
|
|
17962
17911
|
var toPrimitive = _toPrimitive$1;
|
|
17963
17912
|
var createDesc = _propertyDesc;
|
|
17964
|
-
var _create$1 =
|
|
17913
|
+
var _create$1 = _objectCreate;
|
|
17965
17914
|
var gOPNExt = _objectGopnExt;
|
|
17966
17915
|
var $GOPD = _objectGopd;
|
|
17967
17916
|
var $GOPS = _objectGops;
|
|
17968
|
-
var $DP =
|
|
17917
|
+
var $DP = _objectDp;
|
|
17969
17918
|
var $keys$1 = _objectKeys;
|
|
17970
17919
|
var gOPD$4 = $GOPD.f;
|
|
17971
17920
|
var dP = $DP.f;
|
|
@@ -18008,7 +17957,7 @@ var isSymbol$8 = USE_NATIVE && typeof $Symbol.iterator == "symbol" ? function(it
|
|
|
18008
17957
|
} : function(it) {
|
|
18009
17958
|
return it instanceof $Symbol;
|
|
18010
17959
|
};
|
|
18011
|
-
var $defineProperty$1 = /* @__PURE__ */ __name(function
|
|
17960
|
+
var $defineProperty$1 = /* @__PURE__ */ __name(function defineProperty4(it, key, D2) {
|
|
18012
17961
|
if (it === ObjectProto)
|
|
18013
17962
|
$defineProperty$1(OPSymbols, key, D2);
|
|
18014
17963
|
anObject(it);
|
|
@@ -18028,7 +17977,7 @@ var $defineProperty$1 = /* @__PURE__ */ __name(function defineProperty3(it, key,
|
|
|
18028
17977
|
}
|
|
18029
17978
|
return dP(it, key, D2);
|
|
18030
17979
|
}, "defineProperty");
|
|
18031
|
-
var $defineProperties = /* @__PURE__ */ __name(function
|
|
17980
|
+
var $defineProperties = /* @__PURE__ */ __name(function defineProperties2(it, P2) {
|
|
18032
17981
|
anObject(it);
|
|
18033
17982
|
var keys5 = enumKeys(P2 = toIObject(P2));
|
|
18034
17983
|
var i = 0;
|
|
@@ -18038,7 +17987,7 @@ var $defineProperties = /* @__PURE__ */ __name(function defineProperties(it, P2)
|
|
|
18038
17987
|
$defineProperty$1(it, key = keys5[i++], P2[key]);
|
|
18039
17988
|
return it;
|
|
18040
17989
|
}, "defineProperties");
|
|
18041
|
-
var $create = /* @__PURE__ */ __name(function
|
|
17990
|
+
var $create = /* @__PURE__ */ __name(function create2(it, P2) {
|
|
18042
17991
|
return P2 === void 0 ? _create$1(it) : $defineProperties(_create$1(it), P2);
|
|
18043
17992
|
}, "create");
|
|
18044
17993
|
var $propertyIsEnumerable = /* @__PURE__ */ __name(function propertyIsEnumerable(key) {
|
|
@@ -18102,7 +18051,7 @@ if (!USE_NATIVE) {
|
|
|
18102
18051
|
$GOPD.f = $getOwnPropertyDescriptor;
|
|
18103
18052
|
$DP.f = $defineProperty$1;
|
|
18104
18053
|
_objectGopn.f = gOPNExt.f = $getOwnPropertyNames;
|
|
18105
|
-
|
|
18054
|
+
_objectPie.f = $propertyIsEnumerable;
|
|
18106
18055
|
$GOPS.f = $getOwnPropertySymbols;
|
|
18107
18056
|
if (DESCRIPTORS && !_library) {
|
|
18108
18057
|
redefine(ObjectProto, "propertyIsEnumerable", $propertyIsEnumerable);
|
|
@@ -18268,9 +18217,9 @@ $export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
|
|
|
18268
18217
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
|
|
18269
18218
|
var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
|
|
18270
18219
|
var $export = _export;
|
|
18271
|
-
$export($export.S, "Object", { create:
|
|
18220
|
+
$export($export.S, "Object", { create: _objectCreate });
|
|
18272
18221
|
var $Object$1 = _coreExports.Object;
|
|
18273
|
-
var create$3 = /* @__PURE__ */ __name(function
|
|
18222
|
+
var create$3 = /* @__PURE__ */ __name(function create3(P2, D2) {
|
|
18274
18223
|
return $Object$1.create(P2, D2);
|
|
18275
18224
|
}, "create");
|
|
18276
18225
|
var create$2 = { "default": create$3, __esModule: true };
|
|
@@ -22357,7 +22306,7 @@ function normalizeComponent(Comp) {
|
|
|
22357
22306
|
}
|
|
22358
22307
|
__name(normalizeComponent, "normalizeComponent");
|
|
22359
22308
|
var _createClass$d = function() {
|
|
22360
|
-
function
|
|
22309
|
+
function defineProperties4(target, props) {
|
|
22361
22310
|
for (var i = 0; i < props.length; i++) {
|
|
22362
22311
|
var descriptor2 = props[i];
|
|
22363
22312
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -22367,12 +22316,12 @@ var _createClass$d = function() {
|
|
|
22367
22316
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
22368
22317
|
}
|
|
22369
22318
|
}
|
|
22370
|
-
__name(
|
|
22319
|
+
__name(defineProperties4, "defineProperties");
|
|
22371
22320
|
return function(Constructor, protoProps, staticProps) {
|
|
22372
22321
|
if (protoProps)
|
|
22373
|
-
|
|
22322
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
22374
22323
|
if (staticProps)
|
|
22375
|
-
|
|
22324
|
+
defineProperties4(Constructor, staticProps);
|
|
22376
22325
|
return Constructor;
|
|
22377
22326
|
};
|
|
22378
22327
|
}();
|
|
@@ -22533,7 +22482,7 @@ var _extends$o = Object.assign || function(target) {
|
|
|
22533
22482
|
return target;
|
|
22534
22483
|
};
|
|
22535
22484
|
var _createClass$c = function() {
|
|
22536
|
-
function
|
|
22485
|
+
function defineProperties4(target, props) {
|
|
22537
22486
|
for (var i = 0; i < props.length; i++) {
|
|
22538
22487
|
var descriptor2 = props[i];
|
|
22539
22488
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -22543,12 +22492,12 @@ var _createClass$c = function() {
|
|
|
22543
22492
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
22544
22493
|
}
|
|
22545
22494
|
}
|
|
22546
|
-
__name(
|
|
22495
|
+
__name(defineProperties4, "defineProperties");
|
|
22547
22496
|
return function(Constructor, protoProps, staticProps) {
|
|
22548
22497
|
if (protoProps)
|
|
22549
|
-
|
|
22498
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
22550
22499
|
if (staticProps)
|
|
22551
|
-
|
|
22500
|
+
defineProperties4(Constructor, staticProps);
|
|
22552
22501
|
return Constructor;
|
|
22553
22502
|
};
|
|
22554
22503
|
}();
|
|
@@ -23139,7 +23088,7 @@ const Methods = /* @__PURE__ */ __name(function(Base) {
|
|
|
23139
23088
|
}(Base);
|
|
23140
23089
|
}, "Methods");
|
|
23141
23090
|
var _createClass$b = function() {
|
|
23142
|
-
function
|
|
23091
|
+
function defineProperties4(target, props) {
|
|
23143
23092
|
for (var i = 0; i < props.length; i++) {
|
|
23144
23093
|
var descriptor2 = props[i];
|
|
23145
23094
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -23149,12 +23098,12 @@ var _createClass$b = function() {
|
|
|
23149
23098
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
23150
23099
|
}
|
|
23151
23100
|
}
|
|
23152
|
-
__name(
|
|
23101
|
+
__name(defineProperties4, "defineProperties");
|
|
23153
23102
|
return function(Constructor, protoProps, staticProps) {
|
|
23154
23103
|
if (protoProps)
|
|
23155
|
-
|
|
23104
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
23156
23105
|
if (staticProps)
|
|
23157
|
-
|
|
23106
|
+
defineProperties4(Constructor, staticProps);
|
|
23158
23107
|
return Constructor;
|
|
23159
23108
|
};
|
|
23160
23109
|
}();
|
|
@@ -23926,7 +23875,7 @@ var _extends$l = Object.assign || function(target) {
|
|
|
23926
23875
|
return target;
|
|
23927
23876
|
};
|
|
23928
23877
|
var _createClass$a = function() {
|
|
23929
|
-
function
|
|
23878
|
+
function defineProperties4(target, props) {
|
|
23930
23879
|
for (var i = 0; i < props.length; i++) {
|
|
23931
23880
|
var descriptor2 = props[i];
|
|
23932
23881
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -23936,12 +23885,12 @@ var _createClass$a = function() {
|
|
|
23936
23885
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
23937
23886
|
}
|
|
23938
23887
|
}
|
|
23939
|
-
__name(
|
|
23888
|
+
__name(defineProperties4, "defineProperties");
|
|
23940
23889
|
return function(Constructor, protoProps, staticProps) {
|
|
23941
23890
|
if (protoProps)
|
|
23942
|
-
|
|
23891
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
23943
23892
|
if (staticProps)
|
|
23944
|
-
|
|
23893
|
+
defineProperties4(Constructor, staticProps);
|
|
23945
23894
|
return Constructor;
|
|
23946
23895
|
};
|
|
23947
23896
|
}();
|
|
@@ -30265,21 +30214,21 @@ function parse$7(options) {
|
|
|
30265
30214
|
defined: [],
|
|
30266
30215
|
lazy: {},
|
|
30267
30216
|
constructs: constructs2,
|
|
30268
|
-
content:
|
|
30269
|
-
document:
|
|
30270
|
-
flow:
|
|
30271
|
-
string:
|
|
30272
|
-
text:
|
|
30217
|
+
content: create6(content$1),
|
|
30218
|
+
document: create6(document$2),
|
|
30219
|
+
flow: create6(flow$1),
|
|
30220
|
+
string: create6(string$1),
|
|
30221
|
+
text: create6(text$3)
|
|
30273
30222
|
};
|
|
30274
30223
|
return parser;
|
|
30275
|
-
function
|
|
30224
|
+
function create6(initial) {
|
|
30276
30225
|
return creator;
|
|
30277
30226
|
function creator(from3) {
|
|
30278
30227
|
return createTokenizer(parser, initial, from3);
|
|
30279
30228
|
}
|
|
30280
30229
|
__name(creator, "creator");
|
|
30281
30230
|
}
|
|
30282
|
-
__name(
|
|
30231
|
+
__name(create6, "create");
|
|
30283
30232
|
}
|
|
30284
30233
|
__name(parse$7, "parse$7");
|
|
30285
30234
|
const search$1 = /[\0\t\n\r]/g;
|
|
@@ -30690,10 +30639,10 @@ function compiler(options) {
|
|
|
30690
30639
|
return data[key];
|
|
30691
30640
|
}
|
|
30692
30641
|
__name(getData, "getData");
|
|
30693
|
-
function opener(
|
|
30642
|
+
function opener(create6, and) {
|
|
30694
30643
|
return open2;
|
|
30695
30644
|
function open2(token) {
|
|
30696
|
-
enter2.call(this,
|
|
30645
|
+
enter2.call(this, create6(token), token);
|
|
30697
30646
|
if (and)
|
|
30698
30647
|
and.call(this, token);
|
|
30699
30648
|
}
|
|
@@ -39602,11 +39551,11 @@ var implementation$8 = /* @__PURE__ */ __name(function bind(that) {
|
|
|
39602
39551
|
}
|
|
39603
39552
|
bound = Function("binder", "return function (" + boundArgs.join(",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
39604
39553
|
if (target.prototype) {
|
|
39605
|
-
var
|
|
39554
|
+
var Empty2 = /* @__PURE__ */ __name(function Empty3() {
|
|
39606
39555
|
}, "Empty");
|
|
39607
|
-
|
|
39608
|
-
bound.prototype = new
|
|
39609
|
-
|
|
39556
|
+
Empty2.prototype = target.prototype;
|
|
39557
|
+
bound.prototype = new Empty2();
|
|
39558
|
+
Empty2.prototype = null;
|
|
39610
39559
|
}
|
|
39611
39560
|
return bound;
|
|
39612
39561
|
}, "bind");
|
|
@@ -42421,7 +42370,7 @@ const generateToast = /* @__PURE__ */ __name((intent) => (message, options) => {
|
|
|
42421
42370
|
timeout: options.timeout || updatedTimeout || intent === core$5.Intent.DANGER ? 6e4 : void 0,
|
|
42422
42371
|
action: options.action,
|
|
42423
42372
|
icon: options.icon,
|
|
42424
|
-
className: options.className
|
|
42373
|
+
className: classNames("preserve-newline", options.className)
|
|
42425
42374
|
},
|
|
42426
42375
|
options.key
|
|
42427
42376
|
);
|
|
@@ -43741,7 +43690,7 @@ var _extends$f = Object.assign || function(target) {
|
|
|
43741
43690
|
return target;
|
|
43742
43691
|
};
|
|
43743
43692
|
var _createClass$9 = function() {
|
|
43744
|
-
function
|
|
43693
|
+
function defineProperties4(target, props) {
|
|
43745
43694
|
for (var i = 0; i < props.length; i++) {
|
|
43746
43695
|
var descriptor2 = props[i];
|
|
43747
43696
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -43751,12 +43700,12 @@ var _createClass$9 = function() {
|
|
|
43751
43700
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
43752
43701
|
}
|
|
43753
43702
|
}
|
|
43754
|
-
__name(
|
|
43703
|
+
__name(defineProperties4, "defineProperties");
|
|
43755
43704
|
return function(Constructor, protoProps, staticProps) {
|
|
43756
43705
|
if (protoProps)
|
|
43757
|
-
|
|
43706
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
43758
43707
|
if (staticProps)
|
|
43759
|
-
|
|
43708
|
+
defineProperties4(Constructor, staticProps);
|
|
43760
43709
|
return Constructor;
|
|
43761
43710
|
};
|
|
43762
43711
|
}();
|
|
@@ -43898,7 +43847,7 @@ var Alpha = function(_ref) {
|
|
|
43898
43847
|
return Alpha2;
|
|
43899
43848
|
}(React$2.PureComponent || React$2.Component);
|
|
43900
43849
|
var _createClass$8 = function() {
|
|
43901
|
-
function
|
|
43850
|
+
function defineProperties4(target, props) {
|
|
43902
43851
|
for (var i = 0; i < props.length; i++) {
|
|
43903
43852
|
var descriptor2 = props[i];
|
|
43904
43853
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -43908,12 +43857,12 @@ var _createClass$8 = function() {
|
|
|
43908
43857
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
43909
43858
|
}
|
|
43910
43859
|
}
|
|
43911
|
-
__name(
|
|
43860
|
+
__name(defineProperties4, "defineProperties");
|
|
43912
43861
|
return function(Constructor, protoProps, staticProps) {
|
|
43913
43862
|
if (protoProps)
|
|
43914
|
-
|
|
43863
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
43915
43864
|
if (staticProps)
|
|
43916
|
-
|
|
43865
|
+
defineProperties4(Constructor, staticProps);
|
|
43917
43866
|
return Constructor;
|
|
43918
43867
|
};
|
|
43919
43868
|
}();
|
|
@@ -44146,7 +44095,7 @@ var calculateChange$1 = /* @__PURE__ */ __name(function calculateChange2(e2, dir
|
|
|
44146
44095
|
return null;
|
|
44147
44096
|
}, "calculateChange");
|
|
44148
44097
|
var _createClass$7 = function() {
|
|
44149
|
-
function
|
|
44098
|
+
function defineProperties4(target, props) {
|
|
44150
44099
|
for (var i = 0; i < props.length; i++) {
|
|
44151
44100
|
var descriptor2 = props[i];
|
|
44152
44101
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -44156,12 +44105,12 @@ var _createClass$7 = function() {
|
|
|
44156
44105
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
44157
44106
|
}
|
|
44158
44107
|
}
|
|
44159
|
-
__name(
|
|
44108
|
+
__name(defineProperties4, "defineProperties");
|
|
44160
44109
|
return function(Constructor, protoProps, staticProps) {
|
|
44161
44110
|
if (protoProps)
|
|
44162
|
-
|
|
44111
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
44163
44112
|
if (staticProps)
|
|
44164
|
-
|
|
44113
|
+
defineProperties4(Constructor, staticProps);
|
|
44165
44114
|
return Constructor;
|
|
44166
44115
|
};
|
|
44167
44116
|
}();
|
|
@@ -45372,7 +45321,7 @@ var calculateChange3 = /* @__PURE__ */ __name(function calculateChange4(e2, hsl,
|
|
|
45372
45321
|
};
|
|
45373
45322
|
}, "calculateChange");
|
|
45374
45323
|
var _createClass$6 = function() {
|
|
45375
|
-
function
|
|
45324
|
+
function defineProperties4(target, props) {
|
|
45376
45325
|
for (var i = 0; i < props.length; i++) {
|
|
45377
45326
|
var descriptor2 = props[i];
|
|
45378
45327
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -45382,12 +45331,12 @@ var _createClass$6 = function() {
|
|
|
45382
45331
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
45383
45332
|
}
|
|
45384
45333
|
}
|
|
45385
|
-
__name(
|
|
45334
|
+
__name(defineProperties4, "defineProperties");
|
|
45386
45335
|
return function(Constructor, protoProps, staticProps) {
|
|
45387
45336
|
if (protoProps)
|
|
45388
|
-
|
|
45337
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
45389
45338
|
if (staticProps)
|
|
45390
|
-
|
|
45339
|
+
defineProperties4(Constructor, staticProps);
|
|
45391
45340
|
return Constructor;
|
|
45392
45341
|
};
|
|
45393
45342
|
}();
|
|
@@ -46689,7 +46638,7 @@ var _extends$e = Object.assign || function(target) {
|
|
|
46689
46638
|
return target;
|
|
46690
46639
|
};
|
|
46691
46640
|
var _createClass$5 = function() {
|
|
46692
|
-
function
|
|
46641
|
+
function defineProperties4(target, props) {
|
|
46693
46642
|
for (var i = 0; i < props.length; i++) {
|
|
46694
46643
|
var descriptor2 = props[i];
|
|
46695
46644
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -46699,12 +46648,12 @@ var _createClass$5 = function() {
|
|
|
46699
46648
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
46700
46649
|
}
|
|
46701
46650
|
}
|
|
46702
|
-
__name(
|
|
46651
|
+
__name(defineProperties4, "defineProperties");
|
|
46703
46652
|
return function(Constructor, protoProps, staticProps) {
|
|
46704
46653
|
if (protoProps)
|
|
46705
|
-
|
|
46654
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
46706
46655
|
if (staticProps)
|
|
46707
|
-
|
|
46656
|
+
defineProperties4(Constructor, staticProps);
|
|
46708
46657
|
return Constructor;
|
|
46709
46658
|
};
|
|
46710
46659
|
}();
|
|
@@ -46801,7 +46750,7 @@ var _extends$d = Object.assign || function(target) {
|
|
|
46801
46750
|
return target;
|
|
46802
46751
|
};
|
|
46803
46752
|
var _createClass$4 = function() {
|
|
46804
|
-
function
|
|
46753
|
+
function defineProperties4(target, props) {
|
|
46805
46754
|
for (var i = 0; i < props.length; i++) {
|
|
46806
46755
|
var descriptor2 = props[i];
|
|
46807
46756
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -46811,12 +46760,12 @@ var _createClass$4 = function() {
|
|
|
46811
46760
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
46812
46761
|
}
|
|
46813
46762
|
}
|
|
46814
|
-
__name(
|
|
46763
|
+
__name(defineProperties4, "defineProperties");
|
|
46815
46764
|
return function(Constructor, protoProps, staticProps) {
|
|
46816
46765
|
if (protoProps)
|
|
46817
|
-
|
|
46766
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
46818
46767
|
if (staticProps)
|
|
46819
|
-
|
|
46768
|
+
defineProperties4(Constructor, staticProps);
|
|
46820
46769
|
return Constructor;
|
|
46821
46770
|
};
|
|
46822
46771
|
}();
|
|
@@ -47874,7 +47823,7 @@ var _default$3 = UnfoldMoreHorizontalIcon.default = function(_ref) {
|
|
|
47874
47823
|
);
|
|
47875
47824
|
};
|
|
47876
47825
|
var _createClass$3 = function() {
|
|
47877
|
-
function
|
|
47826
|
+
function defineProperties4(target, props) {
|
|
47878
47827
|
for (var i = 0; i < props.length; i++) {
|
|
47879
47828
|
var descriptor2 = props[i];
|
|
47880
47829
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -47884,12 +47833,12 @@ var _createClass$3 = function() {
|
|
|
47884
47833
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
47885
47834
|
}
|
|
47886
47835
|
}
|
|
47887
|
-
__name(
|
|
47836
|
+
__name(defineProperties4, "defineProperties");
|
|
47888
47837
|
return function(Constructor, protoProps, staticProps) {
|
|
47889
47838
|
if (protoProps)
|
|
47890
|
-
|
|
47839
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
47891
47840
|
if (staticProps)
|
|
47892
|
-
|
|
47841
|
+
defineProperties4(Constructor, staticProps);
|
|
47893
47842
|
return Constructor;
|
|
47894
47843
|
};
|
|
47895
47844
|
}();
|
|
@@ -49299,7 +49248,7 @@ var PhotoshopPreviews = /* @__PURE__ */ __name(function PhotoshopPreviews2(_ref)
|
|
|
49299
49248
|
);
|
|
49300
49249
|
}, "PhotoshopPreviews");
|
|
49301
49250
|
var _createClass$2 = function() {
|
|
49302
|
-
function
|
|
49251
|
+
function defineProperties4(target, props) {
|
|
49303
49252
|
for (var i = 0; i < props.length; i++) {
|
|
49304
49253
|
var descriptor2 = props[i];
|
|
49305
49254
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -49309,12 +49258,12 @@ var _createClass$2 = function() {
|
|
|
49309
49258
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
49310
49259
|
}
|
|
49311
49260
|
}
|
|
49312
|
-
__name(
|
|
49261
|
+
__name(defineProperties4, "defineProperties");
|
|
49313
49262
|
return function(Constructor, protoProps, staticProps) {
|
|
49314
49263
|
if (protoProps)
|
|
49315
|
-
|
|
49264
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
49316
49265
|
if (staticProps)
|
|
49317
|
-
|
|
49266
|
+
defineProperties4(Constructor, staticProps);
|
|
49318
49267
|
return Constructor;
|
|
49319
49268
|
};
|
|
49320
49269
|
}();
|
|
@@ -55621,7 +55570,9 @@ const _DataTable = class _DataTable extends React$2.Component {
|
|
|
55621
55570
|
// keep this so that pasting into spreadsheets works.
|
|
55622
55571
|
format: "text/plain"
|
|
55623
55572
|
});
|
|
55624
|
-
|
|
55573
|
+
if (message) {
|
|
55574
|
+
window.toastr.success(message);
|
|
55575
|
+
}
|
|
55625
55576
|
}, "handleCopyHelper"));
|
|
55626
55577
|
__publicField(this, "handleCopyTable", /* @__PURE__ */ __name((e2) => {
|
|
55627
55578
|
try {
|
|
@@ -70534,6 +70485,7 @@ function UploaderInner({
|
|
|
70534
70485
|
)
|
|
70535
70486
|
) || "Example";
|
|
70536
70487
|
const handleDownloadXlsxFile = /* @__PURE__ */ __name(() => __async(this, null, function* () {
|
|
70488
|
+
var _a3;
|
|
70537
70489
|
const dataDictionarySchema = [
|
|
70538
70490
|
{ value: (f2) => f2.displayName || f2.path, column: `Column Name` },
|
|
70539
70491
|
// {
|
|
@@ -70560,7 +70512,7 @@ function UploaderInner({
|
|
|
70560
70512
|
const mainExampleData = {};
|
|
70561
70513
|
const fieldsToUse = [
|
|
70562
70514
|
...validateAgainstSchema.fields,
|
|
70563
|
-
...
|
|
70515
|
+
...(_a3 = validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
70564
70516
|
];
|
|
70565
70517
|
const mainSchema = fieldsToUse.map((f2) => {
|
|
70566
70518
|
mainExampleData[f2.displayName || f2.path] = f2.example || f2.defaultValue;
|
|
@@ -70589,11 +70541,11 @@ function UploaderInner({
|
|
|
70589
70541
|
{
|
|
70590
70542
|
description: "Download Example CSV File",
|
|
70591
70543
|
exampleFile: () => {
|
|
70592
|
-
var _a3;
|
|
70544
|
+
var _a3, _b3;
|
|
70593
70545
|
const rows = [];
|
|
70594
70546
|
const schemaToUse = [
|
|
70595
70547
|
...a2.validateAgainstSchema.fields,
|
|
70596
|
-
...a2.validateAgainstSchema.exampleDownloadFields
|
|
70548
|
+
...(_a3 = a2.validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
70597
70549
|
];
|
|
70598
70550
|
rows.push(
|
|
70599
70551
|
schemaToUse.map((f2) => {
|
|
@@ -70606,7 +70558,7 @@ function UploaderInner({
|
|
|
70606
70558
|
})
|
|
70607
70559
|
);
|
|
70608
70560
|
const csv = papaparse_minExports.unparse(rows);
|
|
70609
|
-
const downloadFn = ((
|
|
70561
|
+
const downloadFn = ((_b3 = window.Cypress) == null ? void 0 : _b3.downloadTest) || downloadjs;
|
|
70610
70562
|
downloadFn(csv, `${nameToUse}.csv`, "csv");
|
|
70611
70563
|
}
|
|
70612
70564
|
},
|
|
@@ -73423,7 +73375,7 @@ ObjectWithoutPrototypeCache.prototype.set = function(key, value) {
|
|
|
73423
73375
|
this.cache[key] = value;
|
|
73424
73376
|
};
|
|
73425
73377
|
var cacheDefault = {
|
|
73426
|
-
create: /* @__PURE__ */ __name(function
|
|
73378
|
+
create: /* @__PURE__ */ __name(function create4() {
|
|
73427
73379
|
return new ObjectWithoutPrototypeCache();
|
|
73428
73380
|
}, "create")
|
|
73429
73381
|
};
|
|
@@ -78531,7 +78483,7 @@ __name(requireEmpty, "requireEmpty");
|
|
|
78531
78483
|
}
|
|
78532
78484
|
}, "classCallCheck");
|
|
78533
78485
|
var createClass2 = function() {
|
|
78534
|
-
function
|
|
78486
|
+
function defineProperties4(target, props) {
|
|
78535
78487
|
for (var i = 0; i < props.length; i++) {
|
|
78536
78488
|
var descriptor2 = props[i];
|
|
78537
78489
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -78541,12 +78493,12 @@ __name(requireEmpty, "requireEmpty");
|
|
|
78541
78493
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
78542
78494
|
}
|
|
78543
78495
|
}
|
|
78544
|
-
__name(
|
|
78496
|
+
__name(defineProperties4, "defineProperties");
|
|
78545
78497
|
return function(Constructor, protoProps, staticProps) {
|
|
78546
78498
|
if (protoProps)
|
|
78547
|
-
|
|
78499
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
78548
78500
|
if (staticProps)
|
|
78549
|
-
|
|
78501
|
+
defineProperties4(Constructor, staticProps);
|
|
78550
78502
|
return Constructor;
|
|
78551
78503
|
};
|
|
78552
78504
|
}();
|
|
@@ -82361,10 +82313,10 @@ __name(requireEmpty, "requireEmpty");
|
|
|
82361
82313
|
return value;
|
|
82362
82314
|
}
|
|
82363
82315
|
__name(dateReviver, "dateReviver");
|
|
82364
|
-
function
|
|
82316
|
+
function create6(options) {
|
|
82365
82317
|
return new DiffPatcher(options);
|
|
82366
82318
|
}
|
|
82367
|
-
__name(
|
|
82319
|
+
__name(create6, "create");
|
|
82368
82320
|
var defaultInstance$4 = void 0;
|
|
82369
82321
|
function diff() {
|
|
82370
82322
|
if (!defaultInstance$4) {
|
|
@@ -82404,7 +82356,7 @@ __name(requireEmpty, "requireEmpty");
|
|
|
82404
82356
|
exports3.DiffPatcher = DiffPatcher;
|
|
82405
82357
|
exports3.formatters = index2;
|
|
82406
82358
|
exports3.console = console$1;
|
|
82407
|
-
exports3.create =
|
|
82359
|
+
exports3.create = create6;
|
|
82408
82360
|
exports3.dateReviver = dateReviver;
|
|
82409
82361
|
exports3.diff = diff;
|
|
82410
82362
|
exports3.patch = patch2;
|
|
@@ -82930,6 +82882,20 @@ const modifiableTypes = [
|
|
|
82930
82882
|
"primers",
|
|
82931
82883
|
"guides"
|
|
82932
82884
|
];
|
|
82885
|
+
let allWarnings = [];
|
|
82886
|
+
let makeToast = /* @__PURE__ */ __name(() => {
|
|
82887
|
+
if (typeof window !== "undefined" && window.toastr && allWarnings.length) {
|
|
82888
|
+
window.toastr.warning(allWarnings.join("\n"));
|
|
82889
|
+
}
|
|
82890
|
+
allWarnings = [];
|
|
82891
|
+
}, "makeToast");
|
|
82892
|
+
makeToast = lodashExports.debounce(makeToast, 200);
|
|
82893
|
+
function showWarnings(warnings) {
|
|
82894
|
+
allWarnings = allWarnings.concat(warnings);
|
|
82895
|
+
makeToast.cancel();
|
|
82896
|
+
makeToast();
|
|
82897
|
+
}
|
|
82898
|
+
__name(showWarnings, "showWarnings");
|
|
82933
82899
|
function filterSequenceString(sequenceString = "", {
|
|
82934
82900
|
additionalValidChars = "",
|
|
82935
82901
|
isOligo: isOligo2,
|
|
@@ -82977,14 +82943,10 @@ function filterSequenceString(sequenceString = "", {
|
|
|
82977
82943
|
});
|
|
82978
82944
|
if (sequenceString.length !== sanitizedVal.length) {
|
|
82979
82945
|
warnings.push(
|
|
82980
|
-
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${invalidChars.slice(0, 100).join(", ")} `
|
|
82946
|
+
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${lodashExports.uniq(invalidChars).slice(0, 100).join(", ")} `
|
|
82981
82947
|
);
|
|
82982
82948
|
}
|
|
82983
|
-
|
|
82984
|
-
warnings.forEach((warning2) => {
|
|
82985
|
-
window.toastr.warning(warning2);
|
|
82986
|
-
});
|
|
82987
|
-
}
|
|
82949
|
+
showWarnings(warnings);
|
|
82988
82950
|
return [sanitizedVal, warnings];
|
|
82989
82951
|
}
|
|
82990
82952
|
__name(filterSequenceString, "filterSequenceString");
|
|
@@ -92961,7 +92923,7 @@ function flattenSequenceArray(parsingResultArray, opts2) {
|
|
|
92961
92923
|
return parsingResultArray;
|
|
92962
92924
|
}
|
|
92963
92925
|
__name(flattenSequenceArray, "flattenSequenceArray");
|
|
92964
|
-
function parseFeatureLocation(locStr, isProtein2, inclusive1BasedStart, inclusive1BasedEnd) {
|
|
92926
|
+
function parseFeatureLocation(locStr, isProtein2, inclusive1BasedStart, inclusive1BasedEnd, isCircular, sequenceLength) {
|
|
92965
92927
|
locStr = locStr.trim();
|
|
92966
92928
|
const locArr = [];
|
|
92967
92929
|
locStr.replace(/(\d+)/g, function(string2, match2) {
|
|
@@ -92982,6 +92944,19 @@ function parseFeatureLocation(locStr, isProtein2, inclusive1BasedStart, inclusiv
|
|
|
92982
92944
|
isProtein2 ? convertAACaretPositionOrRangeToDna(location2) : location2
|
|
92983
92945
|
);
|
|
92984
92946
|
}
|
|
92947
|
+
if (isCircular) {
|
|
92948
|
+
for (let i = 0; i < locArray.length; i += 2) {
|
|
92949
|
+
const firstFeature = locArray[i];
|
|
92950
|
+
const secondFeature = locArray[i + 1];
|
|
92951
|
+
if (firstFeature.end === sequenceLength - (inclusive1BasedEnd ? 0 : 1) && secondFeature.start === 1 - (inclusive1BasedStart ? 0 : 1)) {
|
|
92952
|
+
locArray[i] = {
|
|
92953
|
+
start: firstFeature.start,
|
|
92954
|
+
end: secondFeature.end
|
|
92955
|
+
};
|
|
92956
|
+
locArray.splice(i + 1, 1);
|
|
92957
|
+
}
|
|
92958
|
+
}
|
|
92959
|
+
}
|
|
92985
92960
|
return locArray;
|
|
92986
92961
|
}
|
|
92987
92962
|
__name(parseFeatureLocation, "parseFeatureLocation");
|
|
@@ -93315,7 +93290,9 @@ function genbankToJson(string2, options = {}) {
|
|
|
93315
93290
|
line.trim(),
|
|
93316
93291
|
options.isProtein,
|
|
93317
93292
|
inclusive1BasedStart,
|
|
93318
|
-
inclusive1BasedEnd
|
|
93293
|
+
inclusive1BasedEnd,
|
|
93294
|
+
result.parsedSequence.circular,
|
|
93295
|
+
result.parsedSequence.sequence.length
|
|
93319
93296
|
)
|
|
93320
93297
|
);
|
|
93321
93298
|
lastLineWasLocation = true;
|
|
@@ -93348,7 +93325,9 @@ function genbankToJson(string2, options = {}) {
|
|
|
93348
93325
|
val2,
|
|
93349
93326
|
options.isProtein,
|
|
93350
93327
|
inclusive1BasedStart,
|
|
93351
|
-
inclusive1BasedEnd
|
|
93328
|
+
inclusive1BasedEnd,
|
|
93329
|
+
result.parsedSequence.circular,
|
|
93330
|
+
result.parsedSequence.sequence.length
|
|
93352
93331
|
)
|
|
93353
93332
|
);
|
|
93354
93333
|
lastLineWasLocation = true;
|
|
@@ -106793,7 +106772,7 @@ var defineProperty$2 = /* @__PURE__ */ __name(function(object3, name2, value, pr
|
|
|
106793
106772
|
object3[name2] = value;
|
|
106794
106773
|
}
|
|
106795
106774
|
}, "defineProperty$2");
|
|
106796
|
-
var
|
|
106775
|
+
var defineProperties3 = /* @__PURE__ */ __name(function(object3, map3) {
|
|
106797
106776
|
var predicates = arguments.length > 2 ? arguments[2] : {};
|
|
106798
106777
|
var props = keys$1(map3);
|
|
106799
106778
|
if (hasSymbols2) {
|
|
@@ -106803,8 +106782,8 @@ var defineProperties2 = /* @__PURE__ */ __name(function(object3, map3) {
|
|
|
106803
106782
|
defineProperty$2(object3, props[i], map3[props[i]], predicates[props[i]]);
|
|
106804
106783
|
}
|
|
106805
106784
|
}, "defineProperties");
|
|
106806
|
-
|
|
106807
|
-
var defineProperties_1 =
|
|
106785
|
+
defineProperties3.supportsDescriptors = !!supportsDescriptors$2;
|
|
106786
|
+
var defineProperties_1 = defineProperties3;
|
|
106808
106787
|
var numberIsNaN = /* @__PURE__ */ __name(function(value) {
|
|
106809
106788
|
return value !== value;
|
|
106810
106789
|
}, "numberIsNaN");
|
|
@@ -115531,7 +115510,7 @@ function usePrevious(current) {
|
|
|
115531
115510
|
return ref;
|
|
115532
115511
|
}
|
|
115533
115512
|
__name(usePrevious, "usePrevious");
|
|
115534
|
-
function
|
|
115513
|
+
function create5() {
|
|
115535
115514
|
let lock = null;
|
|
115536
115515
|
function isClaimed() {
|
|
115537
115516
|
return Boolean(lock);
|
|
@@ -115570,7 +115549,7 @@ function create4() {
|
|
|
115570
115549
|
tryAbandon
|
|
115571
115550
|
};
|
|
115572
115551
|
}
|
|
115573
|
-
__name(
|
|
115552
|
+
__name(create5, "create");
|
|
115574
115553
|
function isDragging(state2) {
|
|
115575
115554
|
if (state2.phase === "IDLE" || state2.phase === "DROP_ANIMATING") {
|
|
115576
115555
|
return false;
|
|
@@ -116613,7 +116592,7 @@ function useSensorMarshal(_ref4) {
|
|
|
116613
116592
|
enableDefaultSensors
|
|
116614
116593
|
} = _ref4;
|
|
116615
116594
|
const useSensors = [...enableDefaultSensors ? defaultSensors : [], ...customSensors || []];
|
|
116616
|
-
const lockAPI = React$2.useState(() =>
|
|
116595
|
+
const lockAPI = React$2.useState(() => create5())[0];
|
|
116617
116596
|
const tryAbandonLock = useCallback(/* @__PURE__ */ __name(function tryAbandonLock2(previous2, current) {
|
|
116618
116597
|
if (isDragging(previous2) && !isDragging(current)) {
|
|
116619
116598
|
lockAPI.tryAbandon();
|
|
@@ -120620,6 +120599,9 @@ const Axis$1 = /* @__PURE__ */ __name(function(props) {
|
|
|
120620
120599
|
if (!isLinearView) {
|
|
120621
120600
|
x = i === 0 ? Math.max(positionLength, xCenter) : i === tickMarkPositions.length - 1 ? Math.min(bpsPerRow * charWidth2 - positionLength, xCenter) : xCenter;
|
|
120622
120601
|
}
|
|
120602
|
+
if (i === tickMarkPositions.length - 1) {
|
|
120603
|
+
x = Math.min(x, xEnd - positionLength / 2);
|
|
120604
|
+
}
|
|
120623
120605
|
tickMarkSVG.push(
|
|
120624
120606
|
/* @__PURE__ */ React$2.createElement(
|
|
120625
120607
|
"text",
|
|
@@ -124783,7 +124765,7 @@ function showFileDialog({ multiple = false, onSelect }) {
|
|
|
124783
124765
|
}
|
|
124784
124766
|
__name(showFileDialog, "showFileDialog");
|
|
124785
124767
|
const name = "@teselagen/ove";
|
|
124786
|
-
const version = "0.3.
|
|
124768
|
+
const version = "0.3.63";
|
|
124787
124769
|
const main = "./src/index.js";
|
|
124788
124770
|
const exports$1 = {
|
|
124789
124771
|
".": {
|
|
@@ -127091,7 +127073,7 @@ var classCallCheck = /* @__PURE__ */ __name(function(instance, Constructor) {
|
|
|
127091
127073
|
}
|
|
127092
127074
|
}, "classCallCheck");
|
|
127093
127075
|
var createClass = function() {
|
|
127094
|
-
function
|
|
127076
|
+
function defineProperties4(target, props) {
|
|
127095
127077
|
for (var i = 0; i < props.length; i++) {
|
|
127096
127078
|
var descriptor2 = props[i];
|
|
127097
127079
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -127101,16 +127083,16 @@ var createClass = function() {
|
|
|
127101
127083
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
127102
127084
|
}
|
|
127103
127085
|
}
|
|
127104
|
-
__name(
|
|
127086
|
+
__name(defineProperties4, "defineProperties");
|
|
127105
127087
|
return function(Constructor, protoProps, staticProps) {
|
|
127106
127088
|
if (protoProps)
|
|
127107
|
-
|
|
127089
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
127108
127090
|
if (staticProps)
|
|
127109
|
-
|
|
127091
|
+
defineProperties4(Constructor, staticProps);
|
|
127110
127092
|
return Constructor;
|
|
127111
127093
|
};
|
|
127112
127094
|
}();
|
|
127113
|
-
var
|
|
127095
|
+
var defineProperty5 = /* @__PURE__ */ __name(function(obj, key, value) {
|
|
127114
127096
|
if (key in obj) {
|
|
127115
127097
|
Object.defineProperty(obj, key, {
|
|
127116
127098
|
value,
|
|
@@ -127721,7 +127703,7 @@ function arrow(data, options) {
|
|
|
127721
127703
|
var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;
|
|
127722
127704
|
sideValue = Math.max(Math.min(popper2[len] - arrowElementSize, sideValue), 0);
|
|
127723
127705
|
data.arrowElement = arrowElement;
|
|
127724
|
-
data.offsets.arrow = (_data$offsets$arrow = {},
|
|
127706
|
+
data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty5(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty5(_data$offsets$arrow, altSide, ""), _data$offsets$arrow);
|
|
127725
127707
|
return data;
|
|
127726
127708
|
}
|
|
127727
127709
|
__name(arrow, "arrow");
|
|
@@ -127952,7 +127934,7 @@ function preventOverflow(data, options) {
|
|
|
127952
127934
|
if (popper2[placement] < boundaries[placement] && !options.escapeWithReference) {
|
|
127953
127935
|
value = Math.max(popper2[placement], boundaries[placement]);
|
|
127954
127936
|
}
|
|
127955
|
-
return
|
|
127937
|
+
return defineProperty5({}, placement, value);
|
|
127956
127938
|
}, "primary"),
|
|
127957
127939
|
secondary: /* @__PURE__ */ __name(function secondary(placement) {
|
|
127958
127940
|
var mainSide = placement === "right" ? "left" : "top";
|
|
@@ -127960,7 +127942,7 @@ function preventOverflow(data, options) {
|
|
|
127960
127942
|
if (popper2[placement] > boundaries[placement] && !options.escapeWithReference) {
|
|
127961
127943
|
value = Math.min(popper2[mainSide], boundaries[placement] - (placement === "right" ? popper2.width : popper2.height));
|
|
127962
127944
|
}
|
|
127963
|
-
return
|
|
127945
|
+
return defineProperty5({}, mainSide, value);
|
|
127964
127946
|
}, "secondary")
|
|
127965
127947
|
};
|
|
127966
127948
|
order2.forEach(function(placement) {
|
|
@@ -127981,8 +127963,8 @@ function shift3(data) {
|
|
|
127981
127963
|
var side = isVertical ? "left" : "top";
|
|
127982
127964
|
var measurement = isVertical ? "width" : "height";
|
|
127983
127965
|
var shiftOffsets = {
|
|
127984
|
-
start:
|
|
127985
|
-
end:
|
|
127966
|
+
start: defineProperty5({}, side, reference2[side]),
|
|
127967
|
+
end: defineProperty5({}, side, reference2[side] + reference2[measurement] - popper2[measurement])
|
|
127986
127968
|
};
|
|
127987
127969
|
data.offsets.popper = _extends$1({}, popper2, shiftOffsets[shiftvariation]);
|
|
127988
127970
|
}
|
|
@@ -132379,7 +132361,7 @@ const __LinearView = class __LinearView extends React$2.Component {
|
|
|
132379
132361
|
updateLabelsForInViewFeatures();
|
|
132380
132362
|
},
|
|
132381
132363
|
rowContainerStyle: __spreadValues({
|
|
132382
|
-
height: isNaN(height2 - 36) ? "auto" : height2 - 36,
|
|
132364
|
+
height: isNaN(height2 - 36) ? "auto" : height2 - 36 - (hideName ? 0 : 20),
|
|
132383
132365
|
width: innerWidth2 + 26,
|
|
132384
132366
|
paddingRight: marginWidth / 2
|
|
132385
132367
|
}, isLinViewZoomed && !isInAlignment && { paddingBottom: 15 }),
|