@teselagen/ove 0.3.63 → 0.3.65
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 +250 -286
- package/index.es.js +250 -286
- package/index.umd.js +154 -163
- package/package.json +3 -3
- package/src/LinearView/index.js +3 -1
- package/src/LinearView/style.css +5 -2
- package/src/RowItem/Axis.js +5 -2
- package/src/index.js +1 -0
- package/src/style.css +6 -3
- package/style.css +70 -6
package/index.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 index$3 = "";
|
|
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) {
|
|
@@ -17098,25 +17073,16 @@ var toString$6 = {}.toString;
|
|
|
17098
17073
|
var _cof = /* @__PURE__ */ __name(function(it) {
|
|
17099
17074
|
return toString$6.call(it).slice(8, -1);
|
|
17100
17075
|
}, "_cof");
|
|
17101
|
-
var
|
|
17102
|
-
var
|
|
17103
|
-
|
|
17104
|
-
|
|
17105
|
-
return _iobject;
|
|
17106
|
-
hasRequired_iobject = 1;
|
|
17107
|
-
var cof2 = _cof;
|
|
17108
|
-
_iobject = Object("z").propertyIsEnumerable(0) ? Object : function(it) {
|
|
17109
|
-
return cof2(it) == "String" ? it.split("") : Object(it);
|
|
17110
|
-
};
|
|
17111
|
-
return _iobject;
|
|
17112
|
-
}
|
|
17113
|
-
__name(require_iobject, "require_iobject");
|
|
17076
|
+
var cof$2 = _cof;
|
|
17077
|
+
var _iobject = Object("z").propertyIsEnumerable(0) ? Object : function(it) {
|
|
17078
|
+
return cof$2(it) == "String" ? it.split("") : Object(it);
|
|
17079
|
+
};
|
|
17114
17080
|
var _defined = /* @__PURE__ */ __name(function(it) {
|
|
17115
17081
|
if (it == void 0)
|
|
17116
17082
|
throw TypeError("Can't call method on " + it);
|
|
17117
17083
|
return it;
|
|
17118
17084
|
}, "_defined");
|
|
17119
|
-
var IObject =
|
|
17085
|
+
var IObject = _iobject;
|
|
17120
17086
|
var defined$2 = _defined;
|
|
17121
17087
|
var _toIobject = /* @__PURE__ */ __name(function(it) {
|
|
17122
17088
|
return IObject(defined$2(it));
|
|
@@ -17189,14 +17155,14 @@ var _sharedKey = /* @__PURE__ */ __name(function(key) {
|
|
|
17189
17155
|
var has$d = _has;
|
|
17190
17156
|
var toIObject$4 = _toIobject;
|
|
17191
17157
|
var arrayIndexOf = _arrayIncludes$1(false);
|
|
17192
|
-
var IE_PROTO$
|
|
17158
|
+
var IE_PROTO$2 = _sharedKey("IE_PROTO");
|
|
17193
17159
|
var _objectKeysInternal = /* @__PURE__ */ __name(function(object3, names2) {
|
|
17194
17160
|
var O2 = toIObject$4(object3);
|
|
17195
17161
|
var i = 0;
|
|
17196
17162
|
var result = [];
|
|
17197
17163
|
var key;
|
|
17198
17164
|
for (key in O2)
|
|
17199
|
-
if (key != IE_PROTO$
|
|
17165
|
+
if (key != IE_PROTO$2)
|
|
17200
17166
|
has$d(O2, key) && result.push(key);
|
|
17201
17167
|
while (names2.length > i)
|
|
17202
17168
|
if (has$d(O2, key = names2[i++])) {
|
|
@@ -17206,9 +17172,9 @@ var _objectKeysInternal = /* @__PURE__ */ __name(function(object3, names2) {
|
|
|
17206
17172
|
}, "_objectKeysInternal");
|
|
17207
17173
|
var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
|
|
17208
17174
|
var $keys$3 = _objectKeysInternal;
|
|
17209
|
-
var enumBugKeys = _enumBugKeys;
|
|
17175
|
+
var enumBugKeys$1 = _enumBugKeys;
|
|
17210
17176
|
var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys(O2) {
|
|
17211
|
-
return $keys$3(O2, enumBugKeys);
|
|
17177
|
+
return $keys$3(O2, enumBugKeys$1);
|
|
17212
17178
|
}, "keys");
|
|
17213
17179
|
var _objectGops = {};
|
|
17214
17180
|
_objectGops.f = Object.getOwnPropertySymbols;
|
|
@@ -17232,12 +17198,12 @@ function require_objectAssign() {
|
|
|
17232
17198
|
if (hasRequired_objectAssign)
|
|
17233
17199
|
return _objectAssign;
|
|
17234
17200
|
hasRequired_objectAssign = 1;
|
|
17235
|
-
var DESCRIPTORS2 =
|
|
17201
|
+
var DESCRIPTORS2 = _descriptors;
|
|
17236
17202
|
var getKeys2 = _objectKeys;
|
|
17237
17203
|
var gOPS2 = _objectGops;
|
|
17238
17204
|
var pIE2 = require_objectPie();
|
|
17239
17205
|
var toObject2 = _toObject;
|
|
17240
|
-
var IObject2 =
|
|
17206
|
+
var IObject2 = _iobject;
|
|
17241
17207
|
var $assign = Object.assign;
|
|
17242
17208
|
_objectAssign = !$assign || _fails(function() {
|
|
17243
17209
|
var A2 = {};
|
|
@@ -17298,28 +17264,19 @@ var _iterStep = /* @__PURE__ */ __name(function(done, value) {
|
|
|
17298
17264
|
}, "_iterStep");
|
|
17299
17265
|
var _iterators = {};
|
|
17300
17266
|
var _redefine = _hide;
|
|
17301
|
-
var
|
|
17302
|
-
var
|
|
17303
|
-
|
|
17304
|
-
|
|
17305
|
-
|
|
17306
|
-
|
|
17307
|
-
var
|
|
17308
|
-
var
|
|
17309
|
-
var
|
|
17310
|
-
|
|
17311
|
-
|
|
17312
|
-
|
|
17313
|
-
|
|
17314
|
-
var i = 0;
|
|
17315
|
-
var P2;
|
|
17316
|
-
while (length > i)
|
|
17317
|
-
dP2.f(O2, P2 = keys5[i++], Properties2[P2]);
|
|
17318
|
-
return O2;
|
|
17319
|
-
}, "defineProperties");
|
|
17320
|
-
return _objectDps;
|
|
17321
|
-
}
|
|
17322
|
-
__name(require_objectDps, "require_objectDps");
|
|
17267
|
+
var dP$1 = _objectDp;
|
|
17268
|
+
var anObject$4 = _anObject;
|
|
17269
|
+
var getKeys$1 = _objectKeys;
|
|
17270
|
+
var _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties(O2, Properties2) {
|
|
17271
|
+
anObject$4(O2);
|
|
17272
|
+
var keys5 = getKeys$1(Properties2);
|
|
17273
|
+
var length = keys5.length;
|
|
17274
|
+
var i = 0;
|
|
17275
|
+
var P2;
|
|
17276
|
+
while (length > i)
|
|
17277
|
+
dP$1.f(O2, P2 = keys5[i++], Properties2[P2]);
|
|
17278
|
+
return O2;
|
|
17279
|
+
}, "defineProperties");
|
|
17323
17280
|
var _html;
|
|
17324
17281
|
var hasRequired_html;
|
|
17325
17282
|
function require_html() {
|
|
@@ -17331,51 +17288,42 @@ function require_html() {
|
|
|
17331
17288
|
return _html;
|
|
17332
17289
|
}
|
|
17333
17290
|
__name(require_html, "require_html");
|
|
17334
|
-
var
|
|
17335
|
-
var
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
var
|
|
17343
|
-
var
|
|
17344
|
-
var
|
|
17345
|
-
|
|
17346
|
-
var
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
|
|
17353
|
-
|
|
17354
|
-
|
|
17355
|
-
|
|
17356
|
-
|
|
17357
|
-
|
|
17358
|
-
|
|
17359
|
-
|
|
17360
|
-
|
|
17361
|
-
|
|
17362
|
-
|
|
17363
|
-
|
|
17364
|
-
|
|
17365
|
-
|
|
17366
|
-
|
|
17367
|
-
|
|
17368
|
-
|
|
17369
|
-
|
|
17370
|
-
Empty[PROTOTYPE2] = null;
|
|
17371
|
-
result[IE_PROTO2] = O2;
|
|
17372
|
-
} else
|
|
17373
|
-
result = createDict();
|
|
17374
|
-
return Properties2 === void 0 ? result : dPs(result, Properties2);
|
|
17375
|
-
}, "create");
|
|
17376
|
-
return _objectCreate;
|
|
17377
|
-
}
|
|
17378
|
-
__name(require_objectCreate, "require_objectCreate");
|
|
17291
|
+
var anObject$3 = _anObject;
|
|
17292
|
+
var dPs = _objectDps;
|
|
17293
|
+
var enumBugKeys = _enumBugKeys;
|
|
17294
|
+
var IE_PROTO$1 = _sharedKey("IE_PROTO");
|
|
17295
|
+
var Empty = /* @__PURE__ */ __name(function() {
|
|
17296
|
+
}, "Empty");
|
|
17297
|
+
var PROTOTYPE$1 = "prototype";
|
|
17298
|
+
var createDict = /* @__PURE__ */ __name(function() {
|
|
17299
|
+
var iframe = require_domCreate()("iframe");
|
|
17300
|
+
var i = enumBugKeys.length;
|
|
17301
|
+
var lt = "<";
|
|
17302
|
+
var gt = ">";
|
|
17303
|
+
var iframeDocument;
|
|
17304
|
+
iframe.style.display = "none";
|
|
17305
|
+
require_html().appendChild(iframe);
|
|
17306
|
+
iframe.src = "javascript:";
|
|
17307
|
+
iframeDocument = iframe.contentWindow.document;
|
|
17308
|
+
iframeDocument.open();
|
|
17309
|
+
iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
|
|
17310
|
+
iframeDocument.close();
|
|
17311
|
+
createDict = iframeDocument.F;
|
|
17312
|
+
while (i--)
|
|
17313
|
+
delete createDict[PROTOTYPE$1][enumBugKeys[i]];
|
|
17314
|
+
return createDict();
|
|
17315
|
+
}, "createDict");
|
|
17316
|
+
var _objectCreate = Object.create || /* @__PURE__ */ __name(function create(O2, Properties2) {
|
|
17317
|
+
var result;
|
|
17318
|
+
if (O2 !== null) {
|
|
17319
|
+
Empty[PROTOTYPE$1] = anObject$3(O2);
|
|
17320
|
+
result = new Empty();
|
|
17321
|
+
Empty[PROTOTYPE$1] = null;
|
|
17322
|
+
result[IE_PROTO$1] = O2;
|
|
17323
|
+
} else
|
|
17324
|
+
result = createDict();
|
|
17325
|
+
return Properties2 === void 0 ? result : dPs(result, Properties2);
|
|
17326
|
+
}, "create");
|
|
17379
17327
|
var _wks = { exports: {} };
|
|
17380
17328
|
var store$2 = _sharedExports("wks");
|
|
17381
17329
|
var uid$1 = _uid;
|
|
@@ -17386,14 +17334,14 @@ var $exports = _wks.exports = function(name2) {
|
|
|
17386
17334
|
};
|
|
17387
17335
|
$exports.store = store$2;
|
|
17388
17336
|
var _wksExports = _wks.exports;
|
|
17389
|
-
var def =
|
|
17337
|
+
var def = _objectDp.f;
|
|
17390
17338
|
var has$c = _has;
|
|
17391
17339
|
var TAG$1 = _wksExports("toStringTag");
|
|
17392
17340
|
var _setToStringTag = /* @__PURE__ */ __name(function(it, tag, stat) {
|
|
17393
17341
|
if (it && !has$c(it = stat ? it : it.prototype, TAG$1))
|
|
17394
17342
|
def(it, TAG$1, { configurable: true, value: tag });
|
|
17395
17343
|
}, "_setToStringTag");
|
|
17396
|
-
var create$4 =
|
|
17344
|
+
var create$4 = _objectCreate;
|
|
17397
17345
|
var descriptor = _propertyDesc;
|
|
17398
17346
|
var setToStringTag$2 = _setToStringTag;
|
|
17399
17347
|
var IteratorPrototype = {};
|
|
@@ -17659,7 +17607,7 @@ var ArrayProto = Array.prototype;
|
|
|
17659
17607
|
var _isArrayIter = /* @__PURE__ */ __name(function(it) {
|
|
17660
17608
|
return it !== void 0 && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
|
|
17661
17609
|
}, "_isArrayIter");
|
|
17662
|
-
var $defineProperty$2 =
|
|
17610
|
+
var $defineProperty$2 = _objectDp;
|
|
17663
17611
|
var createDesc$2 = _propertyDesc;
|
|
17664
17612
|
var _createProperty = /* @__PURE__ */ __name(function(object3, index2, value) {
|
|
17665
17613
|
if (index2 in object3)
|
|
@@ -17788,9 +17736,9 @@ var _default$8 = /* @__PURE__ */ __name(function(instance, Constructor) {
|
|
|
17788
17736
|
}
|
|
17789
17737
|
}, "_default$8");
|
|
17790
17738
|
var $export$3 = _export;
|
|
17791
|
-
$export$3($export$3.S + $export$3.F * !
|
|
17739
|
+
$export$3($export$3.S + $export$3.F * !_descriptors, "Object", { defineProperty: _objectDp.f });
|
|
17792
17740
|
var $Object$2 = _coreExports.Object;
|
|
17793
|
-
var defineProperty$c = /* @__PURE__ */ __name(function
|
|
17741
|
+
var defineProperty$c = /* @__PURE__ */ __name(function defineProperty3(it, key, desc) {
|
|
17794
17742
|
return $Object$2.defineProperty(it, key, desc);
|
|
17795
17743
|
}, "defineProperty");
|
|
17796
17744
|
var defineProperty$b = { "default": defineProperty$c, __esModule: true };
|
|
@@ -17801,7 +17749,7 @@ function _interopRequireDefault$c(obj) {
|
|
|
17801
17749
|
}
|
|
17802
17750
|
__name(_interopRequireDefault$c, "_interopRequireDefault$c");
|
|
17803
17751
|
var _default$7 = function() {
|
|
17804
|
-
function
|
|
17752
|
+
function defineProperties4(target, props) {
|
|
17805
17753
|
for (var i = 0; i < props.length; i++) {
|
|
17806
17754
|
var descriptor2 = props[i];
|
|
17807
17755
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -17811,12 +17759,12 @@ var _default$7 = function() {
|
|
|
17811
17759
|
(0, _defineProperty2.default)(target, descriptor2.key, descriptor2);
|
|
17812
17760
|
}
|
|
17813
17761
|
}
|
|
17814
|
-
__name(
|
|
17762
|
+
__name(defineProperties4, "defineProperties");
|
|
17815
17763
|
return function(Constructor, protoProps, staticProps) {
|
|
17816
17764
|
if (protoProps)
|
|
17817
|
-
|
|
17765
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
17818
17766
|
if (staticProps)
|
|
17819
|
-
|
|
17767
|
+
defineProperties4(Constructor, staticProps);
|
|
17820
17768
|
return Constructor;
|
|
17821
17769
|
};
|
|
17822
17770
|
}();
|
|
@@ -17829,7 +17777,7 @@ var _meta = { exports: {} };
|
|
|
17829
17777
|
var META$1 = _uid("meta");
|
|
17830
17778
|
var isObject$c = _isObject;
|
|
17831
17779
|
var has$a = _has;
|
|
17832
|
-
var setDesc =
|
|
17780
|
+
var setDesc = _objectDp.f;
|
|
17833
17781
|
var id$1 = 0;
|
|
17834
17782
|
var isExtensible = Object.isExtensible || function() {
|
|
17835
17783
|
return true;
|
|
@@ -17845,23 +17793,23 @@ var setMeta = /* @__PURE__ */ __name(function(it) {
|
|
|
17845
17793
|
// weak collections IDs
|
|
17846
17794
|
} });
|
|
17847
17795
|
}, "setMeta");
|
|
17848
|
-
var fastKey = /* @__PURE__ */ __name(function(it,
|
|
17796
|
+
var fastKey = /* @__PURE__ */ __name(function(it, create6) {
|
|
17849
17797
|
if (!isObject$c(it))
|
|
17850
17798
|
return typeof it == "symbol" ? it : (typeof it == "string" ? "S" : "P") + it;
|
|
17851
17799
|
if (!has$a(it, META$1)) {
|
|
17852
17800
|
if (!isExtensible(it))
|
|
17853
17801
|
return "F";
|
|
17854
|
-
if (!
|
|
17802
|
+
if (!create6)
|
|
17855
17803
|
return "E";
|
|
17856
17804
|
setMeta(it);
|
|
17857
17805
|
}
|
|
17858
17806
|
return it[META$1].i;
|
|
17859
17807
|
}, "fastKey");
|
|
17860
|
-
var getWeak = /* @__PURE__ */ __name(function(it,
|
|
17808
|
+
var getWeak = /* @__PURE__ */ __name(function(it, create6) {
|
|
17861
17809
|
if (!has$a(it, META$1)) {
|
|
17862
17810
|
if (!isExtensible(it))
|
|
17863
17811
|
return true;
|
|
17864
|
-
if (!
|
|
17812
|
+
if (!create6)
|
|
17865
17813
|
return false;
|
|
17866
17814
|
setMeta(it);
|
|
17867
17815
|
}
|
|
@@ -17882,7 +17830,7 @@ var meta = _meta.exports = {
|
|
|
17882
17830
|
var _metaExports = _meta.exports;
|
|
17883
17831
|
var core = _coreExports;
|
|
17884
17832
|
var wksExt$1 = _wksExt;
|
|
17885
|
-
var defineProperty$a =
|
|
17833
|
+
var defineProperty$a = _objectDp.f;
|
|
17886
17834
|
var _wksDefine = /* @__PURE__ */ __name(function(name2) {
|
|
17887
17835
|
var $Symbol2 = core.Symbol || (core.Symbol = {});
|
|
17888
17836
|
if (name2.charAt(0) != "_" && !(name2 in $Symbol2))
|
|
@@ -17936,9 +17884,9 @@ var createDesc$1 = _propertyDesc;
|
|
|
17936
17884
|
var toIObject$1 = _toIobject;
|
|
17937
17885
|
var toPrimitive$1 = _toPrimitive$1;
|
|
17938
17886
|
var has$9 = _has;
|
|
17939
|
-
var IE8_DOM_DEFINE =
|
|
17887
|
+
var IE8_DOM_DEFINE = _ie8DomDefine;
|
|
17940
17888
|
var gOPD$5 = Object.getOwnPropertyDescriptor;
|
|
17941
|
-
_objectGopd.f =
|
|
17889
|
+
_objectGopd.f = _descriptors ? gOPD$5 : /* @__PURE__ */ __name(function getOwnPropertyDescriptor(O2, P2) {
|
|
17942
17890
|
O2 = toIObject$1(O2);
|
|
17943
17891
|
P2 = toPrimitive$1(P2, true);
|
|
17944
17892
|
if (IE8_DOM_DEFINE)
|
|
@@ -17951,7 +17899,7 @@ _objectGopd.f = require_descriptors() ? gOPD$5 : /* @__PURE__ */ __name(function
|
|
|
17951
17899
|
}, "getOwnPropertyDescriptor");
|
|
17952
17900
|
var global$2 = _globalExports;
|
|
17953
17901
|
var has$8 = _has;
|
|
17954
|
-
var DESCRIPTORS =
|
|
17902
|
+
var DESCRIPTORS = _descriptors;
|
|
17955
17903
|
var $export$2 = _export;
|
|
17956
17904
|
var redefine = _redefine;
|
|
17957
17905
|
var META = _metaExports.KEY;
|
|
@@ -17970,11 +17918,11 @@ var toObject$1 = _toObject;
|
|
|
17970
17918
|
var toIObject = _toIobject;
|
|
17971
17919
|
var toPrimitive = _toPrimitive$1;
|
|
17972
17920
|
var createDesc = _propertyDesc;
|
|
17973
|
-
var _create$1 =
|
|
17921
|
+
var _create$1 = _objectCreate;
|
|
17974
17922
|
var gOPNExt = _objectGopnExt;
|
|
17975
17923
|
var $GOPD = _objectGopd;
|
|
17976
17924
|
var $GOPS = _objectGops;
|
|
17977
|
-
var $DP =
|
|
17925
|
+
var $DP = _objectDp;
|
|
17978
17926
|
var $keys$1 = _objectKeys;
|
|
17979
17927
|
var gOPD$4 = $GOPD.f;
|
|
17980
17928
|
var dP = $DP.f;
|
|
@@ -18017,7 +17965,7 @@ var isSymbol$8 = USE_NATIVE && typeof $Symbol.iterator == "symbol" ? function(it
|
|
|
18017
17965
|
} : function(it) {
|
|
18018
17966
|
return it instanceof $Symbol;
|
|
18019
17967
|
};
|
|
18020
|
-
var $defineProperty$1 = /* @__PURE__ */ __name(function
|
|
17968
|
+
var $defineProperty$1 = /* @__PURE__ */ __name(function defineProperty4(it, key, D2) {
|
|
18021
17969
|
if (it === ObjectProto)
|
|
18022
17970
|
$defineProperty$1(OPSymbols, key, D2);
|
|
18023
17971
|
anObject(it);
|
|
@@ -18037,7 +17985,7 @@ var $defineProperty$1 = /* @__PURE__ */ __name(function defineProperty3(it, key,
|
|
|
18037
17985
|
}
|
|
18038
17986
|
return dP(it, key, D2);
|
|
18039
17987
|
}, "defineProperty");
|
|
18040
|
-
var $defineProperties = /* @__PURE__ */ __name(function
|
|
17988
|
+
var $defineProperties = /* @__PURE__ */ __name(function defineProperties2(it, P2) {
|
|
18041
17989
|
anObject(it);
|
|
18042
17990
|
var keys5 = enumKeys(P2 = toIObject(P2));
|
|
18043
17991
|
var i = 0;
|
|
@@ -18047,7 +17995,7 @@ var $defineProperties = /* @__PURE__ */ __name(function defineProperties(it, P2)
|
|
|
18047
17995
|
$defineProperty$1(it, key = keys5[i++], P2[key]);
|
|
18048
17996
|
return it;
|
|
18049
17997
|
}, "defineProperties");
|
|
18050
|
-
var $create = /* @__PURE__ */ __name(function
|
|
17998
|
+
var $create = /* @__PURE__ */ __name(function create2(it, P2) {
|
|
18051
17999
|
return P2 === void 0 ? _create$1(it) : $defineProperties(_create$1(it), P2);
|
|
18052
18000
|
}, "create");
|
|
18053
18001
|
var $propertyIsEnumerable = /* @__PURE__ */ __name(function propertyIsEnumerable(key) {
|
|
@@ -18277,9 +18225,9 @@ $export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
|
|
|
18277
18225
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
|
|
18278
18226
|
var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
|
|
18279
18227
|
var $export = _export;
|
|
18280
|
-
$export($export.S, "Object", { create:
|
|
18228
|
+
$export($export.S, "Object", { create: _objectCreate });
|
|
18281
18229
|
var $Object$1 = _coreExports.Object;
|
|
18282
|
-
var create$3 = /* @__PURE__ */ __name(function
|
|
18230
|
+
var create$3 = /* @__PURE__ */ __name(function create3(P2, D2) {
|
|
18283
18231
|
return $Object$1.create(P2, D2);
|
|
18284
18232
|
}, "create");
|
|
18285
18233
|
var create$2 = { "default": create$3, __esModule: true };
|
|
@@ -22366,7 +22314,7 @@ function normalizeComponent(Comp) {
|
|
|
22366
22314
|
}
|
|
22367
22315
|
__name(normalizeComponent, "normalizeComponent");
|
|
22368
22316
|
var _createClass$d = function() {
|
|
22369
|
-
function
|
|
22317
|
+
function defineProperties4(target, props) {
|
|
22370
22318
|
for (var i = 0; i < props.length; i++) {
|
|
22371
22319
|
var descriptor2 = props[i];
|
|
22372
22320
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -22376,12 +22324,12 @@ var _createClass$d = function() {
|
|
|
22376
22324
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
22377
22325
|
}
|
|
22378
22326
|
}
|
|
22379
|
-
__name(
|
|
22327
|
+
__name(defineProperties4, "defineProperties");
|
|
22380
22328
|
return function(Constructor, protoProps, staticProps) {
|
|
22381
22329
|
if (protoProps)
|
|
22382
|
-
|
|
22330
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
22383
22331
|
if (staticProps)
|
|
22384
|
-
|
|
22332
|
+
defineProperties4(Constructor, staticProps);
|
|
22385
22333
|
return Constructor;
|
|
22386
22334
|
};
|
|
22387
22335
|
}();
|
|
@@ -22542,7 +22490,7 @@ var _extends$o = Object.assign || function(target) {
|
|
|
22542
22490
|
return target;
|
|
22543
22491
|
};
|
|
22544
22492
|
var _createClass$c = function() {
|
|
22545
|
-
function
|
|
22493
|
+
function defineProperties4(target, props) {
|
|
22546
22494
|
for (var i = 0; i < props.length; i++) {
|
|
22547
22495
|
var descriptor2 = props[i];
|
|
22548
22496
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -22552,12 +22500,12 @@ var _createClass$c = function() {
|
|
|
22552
22500
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
22553
22501
|
}
|
|
22554
22502
|
}
|
|
22555
|
-
__name(
|
|
22503
|
+
__name(defineProperties4, "defineProperties");
|
|
22556
22504
|
return function(Constructor, protoProps, staticProps) {
|
|
22557
22505
|
if (protoProps)
|
|
22558
|
-
|
|
22506
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
22559
22507
|
if (staticProps)
|
|
22560
|
-
|
|
22508
|
+
defineProperties4(Constructor, staticProps);
|
|
22561
22509
|
return Constructor;
|
|
22562
22510
|
};
|
|
22563
22511
|
}();
|
|
@@ -23148,7 +23096,7 @@ const Methods = /* @__PURE__ */ __name(function(Base) {
|
|
|
23148
23096
|
}(Base);
|
|
23149
23097
|
}, "Methods");
|
|
23150
23098
|
var _createClass$b = function() {
|
|
23151
|
-
function
|
|
23099
|
+
function defineProperties4(target, props) {
|
|
23152
23100
|
for (var i = 0; i < props.length; i++) {
|
|
23153
23101
|
var descriptor2 = props[i];
|
|
23154
23102
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -23158,12 +23106,12 @@ var _createClass$b = function() {
|
|
|
23158
23106
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
23159
23107
|
}
|
|
23160
23108
|
}
|
|
23161
|
-
__name(
|
|
23109
|
+
__name(defineProperties4, "defineProperties");
|
|
23162
23110
|
return function(Constructor, protoProps, staticProps) {
|
|
23163
23111
|
if (protoProps)
|
|
23164
|
-
|
|
23112
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
23165
23113
|
if (staticProps)
|
|
23166
|
-
|
|
23114
|
+
defineProperties4(Constructor, staticProps);
|
|
23167
23115
|
return Constructor;
|
|
23168
23116
|
};
|
|
23169
23117
|
}();
|
|
@@ -23935,7 +23883,7 @@ var _extends$l = Object.assign || function(target) {
|
|
|
23935
23883
|
return target;
|
|
23936
23884
|
};
|
|
23937
23885
|
var _createClass$a = function() {
|
|
23938
|
-
function
|
|
23886
|
+
function defineProperties4(target, props) {
|
|
23939
23887
|
for (var i = 0; i < props.length; i++) {
|
|
23940
23888
|
var descriptor2 = props[i];
|
|
23941
23889
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -23945,12 +23893,12 @@ var _createClass$a = function() {
|
|
|
23945
23893
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
23946
23894
|
}
|
|
23947
23895
|
}
|
|
23948
|
-
__name(
|
|
23896
|
+
__name(defineProperties4, "defineProperties");
|
|
23949
23897
|
return function(Constructor, protoProps, staticProps) {
|
|
23950
23898
|
if (protoProps)
|
|
23951
|
-
|
|
23899
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
23952
23900
|
if (staticProps)
|
|
23953
|
-
|
|
23901
|
+
defineProperties4(Constructor, staticProps);
|
|
23954
23902
|
return Constructor;
|
|
23955
23903
|
};
|
|
23956
23904
|
}();
|
|
@@ -30274,21 +30222,21 @@ function parse$7(options) {
|
|
|
30274
30222
|
defined: [],
|
|
30275
30223
|
lazy: {},
|
|
30276
30224
|
constructs: constructs2,
|
|
30277
|
-
content:
|
|
30278
|
-
document:
|
|
30279
|
-
flow:
|
|
30280
|
-
string:
|
|
30281
|
-
text:
|
|
30225
|
+
content: create6(content$1),
|
|
30226
|
+
document: create6(document$2),
|
|
30227
|
+
flow: create6(flow$1),
|
|
30228
|
+
string: create6(string$1),
|
|
30229
|
+
text: create6(text$3)
|
|
30282
30230
|
};
|
|
30283
30231
|
return parser;
|
|
30284
|
-
function
|
|
30232
|
+
function create6(initial) {
|
|
30285
30233
|
return creator;
|
|
30286
30234
|
function creator(from3) {
|
|
30287
30235
|
return createTokenizer(parser, initial, from3);
|
|
30288
30236
|
}
|
|
30289
30237
|
__name(creator, "creator");
|
|
30290
30238
|
}
|
|
30291
|
-
__name(
|
|
30239
|
+
__name(create6, "create");
|
|
30292
30240
|
}
|
|
30293
30241
|
__name(parse$7, "parse$7");
|
|
30294
30242
|
const search$1 = /[\0\t\n\r]/g;
|
|
@@ -30699,10 +30647,10 @@ function compiler(options) {
|
|
|
30699
30647
|
return data[key];
|
|
30700
30648
|
}
|
|
30701
30649
|
__name(getData, "getData");
|
|
30702
|
-
function opener(
|
|
30650
|
+
function opener(create6, and) {
|
|
30703
30651
|
return open2;
|
|
30704
30652
|
function open2(token) {
|
|
30705
|
-
enter2.call(this,
|
|
30653
|
+
enter2.call(this, create6(token), token);
|
|
30706
30654
|
if (and)
|
|
30707
30655
|
and.call(this, token);
|
|
30708
30656
|
}
|
|
@@ -39611,11 +39559,11 @@ var implementation$8 = /* @__PURE__ */ __name(function bind(that) {
|
|
|
39611
39559
|
}
|
|
39612
39560
|
bound = Function("binder", "return function (" + boundArgs.join(",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
39613
39561
|
if (target.prototype) {
|
|
39614
|
-
var
|
|
39562
|
+
var Empty2 = /* @__PURE__ */ __name(function Empty3() {
|
|
39615
39563
|
}, "Empty");
|
|
39616
|
-
|
|
39617
|
-
bound.prototype = new
|
|
39618
|
-
|
|
39564
|
+
Empty2.prototype = target.prototype;
|
|
39565
|
+
bound.prototype = new Empty2();
|
|
39566
|
+
Empty2.prototype = null;
|
|
39619
39567
|
}
|
|
39620
39568
|
return bound;
|
|
39621
39569
|
}, "bind");
|
|
@@ -42430,7 +42378,7 @@ const generateToast = /* @__PURE__ */ __name((intent) => (message, options) => {
|
|
|
42430
42378
|
timeout: options.timeout || updatedTimeout || intent === core$5.Intent.DANGER ? 6e4 : void 0,
|
|
42431
42379
|
action: options.action,
|
|
42432
42380
|
icon: options.icon,
|
|
42433
|
-
className: options.className
|
|
42381
|
+
className: classNames("preserve-newline", options.className)
|
|
42434
42382
|
},
|
|
42435
42383
|
options.key
|
|
42436
42384
|
);
|
|
@@ -43750,7 +43698,7 @@ var _extends$f = Object.assign || function(target) {
|
|
|
43750
43698
|
return target;
|
|
43751
43699
|
};
|
|
43752
43700
|
var _createClass$9 = function() {
|
|
43753
|
-
function
|
|
43701
|
+
function defineProperties4(target, props) {
|
|
43754
43702
|
for (var i = 0; i < props.length; i++) {
|
|
43755
43703
|
var descriptor2 = props[i];
|
|
43756
43704
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -43760,12 +43708,12 @@ var _createClass$9 = function() {
|
|
|
43760
43708
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
43761
43709
|
}
|
|
43762
43710
|
}
|
|
43763
|
-
__name(
|
|
43711
|
+
__name(defineProperties4, "defineProperties");
|
|
43764
43712
|
return function(Constructor, protoProps, staticProps) {
|
|
43765
43713
|
if (protoProps)
|
|
43766
|
-
|
|
43714
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
43767
43715
|
if (staticProps)
|
|
43768
|
-
|
|
43716
|
+
defineProperties4(Constructor, staticProps);
|
|
43769
43717
|
return Constructor;
|
|
43770
43718
|
};
|
|
43771
43719
|
}();
|
|
@@ -43907,7 +43855,7 @@ var Alpha = function(_ref) {
|
|
|
43907
43855
|
return Alpha2;
|
|
43908
43856
|
}(React$2.PureComponent || React$2.Component);
|
|
43909
43857
|
var _createClass$8 = function() {
|
|
43910
|
-
function
|
|
43858
|
+
function defineProperties4(target, props) {
|
|
43911
43859
|
for (var i = 0; i < props.length; i++) {
|
|
43912
43860
|
var descriptor2 = props[i];
|
|
43913
43861
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -43917,12 +43865,12 @@ var _createClass$8 = function() {
|
|
|
43917
43865
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
43918
43866
|
}
|
|
43919
43867
|
}
|
|
43920
|
-
__name(
|
|
43868
|
+
__name(defineProperties4, "defineProperties");
|
|
43921
43869
|
return function(Constructor, protoProps, staticProps) {
|
|
43922
43870
|
if (protoProps)
|
|
43923
|
-
|
|
43871
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
43924
43872
|
if (staticProps)
|
|
43925
|
-
|
|
43873
|
+
defineProperties4(Constructor, staticProps);
|
|
43926
43874
|
return Constructor;
|
|
43927
43875
|
};
|
|
43928
43876
|
}();
|
|
@@ -44155,7 +44103,7 @@ var calculateChange$1 = /* @__PURE__ */ __name(function calculateChange2(e2, dir
|
|
|
44155
44103
|
return null;
|
|
44156
44104
|
}, "calculateChange");
|
|
44157
44105
|
var _createClass$7 = function() {
|
|
44158
|
-
function
|
|
44106
|
+
function defineProperties4(target, props) {
|
|
44159
44107
|
for (var i = 0; i < props.length; i++) {
|
|
44160
44108
|
var descriptor2 = props[i];
|
|
44161
44109
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -44165,12 +44113,12 @@ var _createClass$7 = function() {
|
|
|
44165
44113
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
44166
44114
|
}
|
|
44167
44115
|
}
|
|
44168
|
-
__name(
|
|
44116
|
+
__name(defineProperties4, "defineProperties");
|
|
44169
44117
|
return function(Constructor, protoProps, staticProps) {
|
|
44170
44118
|
if (protoProps)
|
|
44171
|
-
|
|
44119
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
44172
44120
|
if (staticProps)
|
|
44173
|
-
|
|
44121
|
+
defineProperties4(Constructor, staticProps);
|
|
44174
44122
|
return Constructor;
|
|
44175
44123
|
};
|
|
44176
44124
|
}();
|
|
@@ -45381,7 +45329,7 @@ var calculateChange3 = /* @__PURE__ */ __name(function calculateChange4(e2, hsl,
|
|
|
45381
45329
|
};
|
|
45382
45330
|
}, "calculateChange");
|
|
45383
45331
|
var _createClass$6 = function() {
|
|
45384
|
-
function
|
|
45332
|
+
function defineProperties4(target, props) {
|
|
45385
45333
|
for (var i = 0; i < props.length; i++) {
|
|
45386
45334
|
var descriptor2 = props[i];
|
|
45387
45335
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -45391,12 +45339,12 @@ var _createClass$6 = function() {
|
|
|
45391
45339
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
45392
45340
|
}
|
|
45393
45341
|
}
|
|
45394
|
-
__name(
|
|
45342
|
+
__name(defineProperties4, "defineProperties");
|
|
45395
45343
|
return function(Constructor, protoProps, staticProps) {
|
|
45396
45344
|
if (protoProps)
|
|
45397
|
-
|
|
45345
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
45398
45346
|
if (staticProps)
|
|
45399
|
-
|
|
45347
|
+
defineProperties4(Constructor, staticProps);
|
|
45400
45348
|
return Constructor;
|
|
45401
45349
|
};
|
|
45402
45350
|
}();
|
|
@@ -46698,7 +46646,7 @@ var _extends$e = Object.assign || function(target) {
|
|
|
46698
46646
|
return target;
|
|
46699
46647
|
};
|
|
46700
46648
|
var _createClass$5 = function() {
|
|
46701
|
-
function
|
|
46649
|
+
function defineProperties4(target, props) {
|
|
46702
46650
|
for (var i = 0; i < props.length; i++) {
|
|
46703
46651
|
var descriptor2 = props[i];
|
|
46704
46652
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -46708,12 +46656,12 @@ var _createClass$5 = function() {
|
|
|
46708
46656
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
46709
46657
|
}
|
|
46710
46658
|
}
|
|
46711
|
-
__name(
|
|
46659
|
+
__name(defineProperties4, "defineProperties");
|
|
46712
46660
|
return function(Constructor, protoProps, staticProps) {
|
|
46713
46661
|
if (protoProps)
|
|
46714
|
-
|
|
46662
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
46715
46663
|
if (staticProps)
|
|
46716
|
-
|
|
46664
|
+
defineProperties4(Constructor, staticProps);
|
|
46717
46665
|
return Constructor;
|
|
46718
46666
|
};
|
|
46719
46667
|
}();
|
|
@@ -46810,7 +46758,7 @@ var _extends$d = Object.assign || function(target) {
|
|
|
46810
46758
|
return target;
|
|
46811
46759
|
};
|
|
46812
46760
|
var _createClass$4 = function() {
|
|
46813
|
-
function
|
|
46761
|
+
function defineProperties4(target, props) {
|
|
46814
46762
|
for (var i = 0; i < props.length; i++) {
|
|
46815
46763
|
var descriptor2 = props[i];
|
|
46816
46764
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -46820,12 +46768,12 @@ var _createClass$4 = function() {
|
|
|
46820
46768
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
46821
46769
|
}
|
|
46822
46770
|
}
|
|
46823
|
-
__name(
|
|
46771
|
+
__name(defineProperties4, "defineProperties");
|
|
46824
46772
|
return function(Constructor, protoProps, staticProps) {
|
|
46825
46773
|
if (protoProps)
|
|
46826
|
-
|
|
46774
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
46827
46775
|
if (staticProps)
|
|
46828
|
-
|
|
46776
|
+
defineProperties4(Constructor, staticProps);
|
|
46829
46777
|
return Constructor;
|
|
46830
46778
|
};
|
|
46831
46779
|
}();
|
|
@@ -47883,7 +47831,7 @@ var _default$3 = UnfoldMoreHorizontalIcon.default = function(_ref) {
|
|
|
47883
47831
|
);
|
|
47884
47832
|
};
|
|
47885
47833
|
var _createClass$3 = function() {
|
|
47886
|
-
function
|
|
47834
|
+
function defineProperties4(target, props) {
|
|
47887
47835
|
for (var i = 0; i < props.length; i++) {
|
|
47888
47836
|
var descriptor2 = props[i];
|
|
47889
47837
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -47893,12 +47841,12 @@ var _createClass$3 = function() {
|
|
|
47893
47841
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
47894
47842
|
}
|
|
47895
47843
|
}
|
|
47896
|
-
__name(
|
|
47844
|
+
__name(defineProperties4, "defineProperties");
|
|
47897
47845
|
return function(Constructor, protoProps, staticProps) {
|
|
47898
47846
|
if (protoProps)
|
|
47899
|
-
|
|
47847
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
47900
47848
|
if (staticProps)
|
|
47901
|
-
|
|
47849
|
+
defineProperties4(Constructor, staticProps);
|
|
47902
47850
|
return Constructor;
|
|
47903
47851
|
};
|
|
47904
47852
|
}();
|
|
@@ -49308,7 +49256,7 @@ var PhotoshopPreviews = /* @__PURE__ */ __name(function PhotoshopPreviews2(_ref)
|
|
|
49308
49256
|
);
|
|
49309
49257
|
}, "PhotoshopPreviews");
|
|
49310
49258
|
var _createClass$2 = function() {
|
|
49311
|
-
function
|
|
49259
|
+
function defineProperties4(target, props) {
|
|
49312
49260
|
for (var i = 0; i < props.length; i++) {
|
|
49313
49261
|
var descriptor2 = props[i];
|
|
49314
49262
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -49318,12 +49266,12 @@ var _createClass$2 = function() {
|
|
|
49318
49266
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
49319
49267
|
}
|
|
49320
49268
|
}
|
|
49321
|
-
__name(
|
|
49269
|
+
__name(defineProperties4, "defineProperties");
|
|
49322
49270
|
return function(Constructor, protoProps, staticProps) {
|
|
49323
49271
|
if (protoProps)
|
|
49324
|
-
|
|
49272
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
49325
49273
|
if (staticProps)
|
|
49326
|
-
|
|
49274
|
+
defineProperties4(Constructor, staticProps);
|
|
49327
49275
|
return Constructor;
|
|
49328
49276
|
};
|
|
49329
49277
|
}();
|
|
@@ -55630,7 +55578,9 @@ const _DataTable = class _DataTable extends React$2.Component {
|
|
|
55630
55578
|
// keep this so that pasting into spreadsheets works.
|
|
55631
55579
|
format: "text/plain"
|
|
55632
55580
|
});
|
|
55633
|
-
|
|
55581
|
+
if (message) {
|
|
55582
|
+
window.toastr.success(message);
|
|
55583
|
+
}
|
|
55634
55584
|
}, "handleCopyHelper"));
|
|
55635
55585
|
__publicField(this, "handleCopyTable", /* @__PURE__ */ __name((e2) => {
|
|
55636
55586
|
try {
|
|
@@ -70543,6 +70493,7 @@ function UploaderInner({
|
|
|
70543
70493
|
)
|
|
70544
70494
|
) || "Example";
|
|
70545
70495
|
const handleDownloadXlsxFile = /* @__PURE__ */ __name(() => __async(this, null, function* () {
|
|
70496
|
+
var _a3;
|
|
70546
70497
|
const dataDictionarySchema = [
|
|
70547
70498
|
{ value: (f2) => f2.displayName || f2.path, column: `Column Name` },
|
|
70548
70499
|
// {
|
|
@@ -70569,7 +70520,7 @@ function UploaderInner({
|
|
|
70569
70520
|
const mainExampleData = {};
|
|
70570
70521
|
const fieldsToUse = [
|
|
70571
70522
|
...validateAgainstSchema.fields,
|
|
70572
|
-
...
|
|
70523
|
+
...(_a3 = validateAgainstSchema.exampleDownloadFields) != null ? _a3 : []
|
|
70573
70524
|
];
|
|
70574
70525
|
const mainSchema = fieldsToUse.map((f2) => {
|
|
70575
70526
|
mainExampleData[f2.displayName || f2.path] = f2.example || f2.defaultValue;
|
|
@@ -73432,7 +73383,7 @@ ObjectWithoutPrototypeCache.prototype.set = function(key, value) {
|
|
|
73432
73383
|
this.cache[key] = value;
|
|
73433
73384
|
};
|
|
73434
73385
|
var cacheDefault = {
|
|
73435
|
-
create: /* @__PURE__ */ __name(function
|
|
73386
|
+
create: /* @__PURE__ */ __name(function create4() {
|
|
73436
73387
|
return new ObjectWithoutPrototypeCache();
|
|
73437
73388
|
}, "create")
|
|
73438
73389
|
};
|
|
@@ -78540,7 +78491,7 @@ __name(requireEmpty, "requireEmpty");
|
|
|
78540
78491
|
}
|
|
78541
78492
|
}, "classCallCheck");
|
|
78542
78493
|
var createClass2 = function() {
|
|
78543
|
-
function
|
|
78494
|
+
function defineProperties4(target, props) {
|
|
78544
78495
|
for (var i = 0; i < props.length; i++) {
|
|
78545
78496
|
var descriptor2 = props[i];
|
|
78546
78497
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -78550,12 +78501,12 @@ __name(requireEmpty, "requireEmpty");
|
|
|
78550
78501
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
78551
78502
|
}
|
|
78552
78503
|
}
|
|
78553
|
-
__name(
|
|
78504
|
+
__name(defineProperties4, "defineProperties");
|
|
78554
78505
|
return function(Constructor, protoProps, staticProps) {
|
|
78555
78506
|
if (protoProps)
|
|
78556
|
-
|
|
78507
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
78557
78508
|
if (staticProps)
|
|
78558
|
-
|
|
78509
|
+
defineProperties4(Constructor, staticProps);
|
|
78559
78510
|
return Constructor;
|
|
78560
78511
|
};
|
|
78561
78512
|
}();
|
|
@@ -82370,10 +82321,10 @@ __name(requireEmpty, "requireEmpty");
|
|
|
82370
82321
|
return value;
|
|
82371
82322
|
}
|
|
82372
82323
|
__name(dateReviver, "dateReviver");
|
|
82373
|
-
function
|
|
82324
|
+
function create6(options) {
|
|
82374
82325
|
return new DiffPatcher(options);
|
|
82375
82326
|
}
|
|
82376
|
-
__name(
|
|
82327
|
+
__name(create6, "create");
|
|
82377
82328
|
var defaultInstance$4 = void 0;
|
|
82378
82329
|
function diff() {
|
|
82379
82330
|
if (!defaultInstance$4) {
|
|
@@ -82413,7 +82364,7 @@ __name(requireEmpty, "requireEmpty");
|
|
|
82413
82364
|
exports3.DiffPatcher = DiffPatcher;
|
|
82414
82365
|
exports3.formatters = index2;
|
|
82415
82366
|
exports3.console = console$1;
|
|
82416
|
-
exports3.create =
|
|
82367
|
+
exports3.create = create6;
|
|
82417
82368
|
exports3.dateReviver = dateReviver;
|
|
82418
82369
|
exports3.diff = diff;
|
|
82419
82370
|
exports3.patch = patch2;
|
|
@@ -82939,6 +82890,20 @@ const modifiableTypes = [
|
|
|
82939
82890
|
"primers",
|
|
82940
82891
|
"guides"
|
|
82941
82892
|
];
|
|
82893
|
+
let allWarnings = [];
|
|
82894
|
+
let makeToast = /* @__PURE__ */ __name(() => {
|
|
82895
|
+
if (typeof window !== "undefined" && window.toastr && allWarnings.length) {
|
|
82896
|
+
window.toastr.warning(allWarnings.join("\n"));
|
|
82897
|
+
}
|
|
82898
|
+
allWarnings = [];
|
|
82899
|
+
}, "makeToast");
|
|
82900
|
+
makeToast = lodashExports.debounce(makeToast, 200);
|
|
82901
|
+
function showWarnings(warnings) {
|
|
82902
|
+
allWarnings = allWarnings.concat(warnings);
|
|
82903
|
+
makeToast.cancel();
|
|
82904
|
+
makeToast();
|
|
82905
|
+
}
|
|
82906
|
+
__name(showWarnings, "showWarnings");
|
|
82942
82907
|
function filterSequenceString(sequenceString = "", {
|
|
82943
82908
|
additionalValidChars = "",
|
|
82944
82909
|
isOligo: isOligo2,
|
|
@@ -82986,14 +82951,10 @@ function filterSequenceString(sequenceString = "", {
|
|
|
82986
82951
|
});
|
|
82987
82952
|
if (sequenceString.length !== sanitizedVal.length) {
|
|
82988
82953
|
warnings.push(
|
|
82989
|
-
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${invalidChars.slice(0, 100).join(", ")} `
|
|
82954
|
+
`${name2 ? `Sequence ${name2}: ` : ""}Invalid character(s) detected and removed: ${lodashExports.uniq(invalidChars).slice(0, 100).join(", ")} `
|
|
82990
82955
|
);
|
|
82991
82956
|
}
|
|
82992
|
-
|
|
82993
|
-
warnings.forEach((warning2) => {
|
|
82994
|
-
window.toastr.warning(warning2);
|
|
82995
|
-
});
|
|
82996
|
-
}
|
|
82957
|
+
showWarnings(warnings);
|
|
82997
82958
|
return [sanitizedVal, warnings];
|
|
82998
82959
|
}
|
|
82999
82960
|
__name(filterSequenceString, "filterSequenceString");
|
|
@@ -106819,7 +106780,7 @@ var defineProperty$2 = /* @__PURE__ */ __name(function(object3, name2, value, pr
|
|
|
106819
106780
|
object3[name2] = value;
|
|
106820
106781
|
}
|
|
106821
106782
|
}, "defineProperty$2");
|
|
106822
|
-
var
|
|
106783
|
+
var defineProperties3 = /* @__PURE__ */ __name(function(object3, map3) {
|
|
106823
106784
|
var predicates = arguments.length > 2 ? arguments[2] : {};
|
|
106824
106785
|
var props = keys$1(map3);
|
|
106825
106786
|
if (hasSymbols2) {
|
|
@@ -106829,8 +106790,8 @@ var defineProperties2 = /* @__PURE__ */ __name(function(object3, map3) {
|
|
|
106829
106790
|
defineProperty$2(object3, props[i], map3[props[i]], predicates[props[i]]);
|
|
106830
106791
|
}
|
|
106831
106792
|
}, "defineProperties");
|
|
106832
|
-
|
|
106833
|
-
var defineProperties_1 =
|
|
106793
|
+
defineProperties3.supportsDescriptors = !!supportsDescriptors$2;
|
|
106794
|
+
var defineProperties_1 = defineProperties3;
|
|
106834
106795
|
var numberIsNaN = /* @__PURE__ */ __name(function(value) {
|
|
106835
106796
|
return value !== value;
|
|
106836
106797
|
}, "numberIsNaN");
|
|
@@ -115557,7 +115518,7 @@ function usePrevious(current) {
|
|
|
115557
115518
|
return ref;
|
|
115558
115519
|
}
|
|
115559
115520
|
__name(usePrevious, "usePrevious");
|
|
115560
|
-
function
|
|
115521
|
+
function create5() {
|
|
115561
115522
|
let lock = null;
|
|
115562
115523
|
function isClaimed() {
|
|
115563
115524
|
return Boolean(lock);
|
|
@@ -115596,7 +115557,7 @@ function create4() {
|
|
|
115596
115557
|
tryAbandon
|
|
115597
115558
|
};
|
|
115598
115559
|
}
|
|
115599
|
-
__name(
|
|
115560
|
+
__name(create5, "create");
|
|
115600
115561
|
function isDragging(state2) {
|
|
115601
115562
|
if (state2.phase === "IDLE" || state2.phase === "DROP_ANIMATING") {
|
|
115602
115563
|
return false;
|
|
@@ -116639,7 +116600,7 @@ function useSensorMarshal(_ref4) {
|
|
|
116639
116600
|
enableDefaultSensors
|
|
116640
116601
|
} = _ref4;
|
|
116641
116602
|
const useSensors = [...enableDefaultSensors ? defaultSensors : [], ...customSensors || []];
|
|
116642
|
-
const lockAPI = React$2.useState(() =>
|
|
116603
|
+
const lockAPI = React$2.useState(() => create5())[0];
|
|
116643
116604
|
const tryAbandonLock = useCallback(/* @__PURE__ */ __name(function tryAbandonLock2(previous2, current) {
|
|
116644
116605
|
if (isDragging(previous2) && !isDragging(current)) {
|
|
116645
116606
|
lockAPI.tryAbandon();
|
|
@@ -120646,6 +120607,9 @@ const Axis$1 = /* @__PURE__ */ __name(function(props) {
|
|
|
120646
120607
|
if (!isLinearView) {
|
|
120647
120608
|
x = i === 0 ? Math.max(positionLength, xCenter) : i === tickMarkPositions.length - 1 ? Math.min(bpsPerRow * charWidth2 - positionLength, xCenter) : xCenter;
|
|
120648
120609
|
}
|
|
120610
|
+
if (i === tickMarkPositions.length - 1) {
|
|
120611
|
+
x = Math.min(x, xEnd - positionLength / 2);
|
|
120612
|
+
}
|
|
120649
120613
|
tickMarkSVG.push(
|
|
120650
120614
|
/* @__PURE__ */ React$2.createElement(
|
|
120651
120615
|
"text",
|
|
@@ -124809,7 +124773,7 @@ function showFileDialog({ multiple = false, onSelect }) {
|
|
|
124809
124773
|
}
|
|
124810
124774
|
__name(showFileDialog, "showFileDialog");
|
|
124811
124775
|
const name = "@teselagen/ove";
|
|
124812
|
-
const version = "0.3.
|
|
124776
|
+
const version = "0.3.64";
|
|
124813
124777
|
const main = "./src/index.js";
|
|
124814
124778
|
const exports$1 = {
|
|
124815
124779
|
".": {
|
|
@@ -127117,7 +127081,7 @@ var classCallCheck = /* @__PURE__ */ __name(function(instance, Constructor) {
|
|
|
127117
127081
|
}
|
|
127118
127082
|
}, "classCallCheck");
|
|
127119
127083
|
var createClass = function() {
|
|
127120
|
-
function
|
|
127084
|
+
function defineProperties4(target, props) {
|
|
127121
127085
|
for (var i = 0; i < props.length; i++) {
|
|
127122
127086
|
var descriptor2 = props[i];
|
|
127123
127087
|
descriptor2.enumerable = descriptor2.enumerable || false;
|
|
@@ -127127,16 +127091,16 @@ var createClass = function() {
|
|
|
127127
127091
|
Object.defineProperty(target, descriptor2.key, descriptor2);
|
|
127128
127092
|
}
|
|
127129
127093
|
}
|
|
127130
|
-
__name(
|
|
127094
|
+
__name(defineProperties4, "defineProperties");
|
|
127131
127095
|
return function(Constructor, protoProps, staticProps) {
|
|
127132
127096
|
if (protoProps)
|
|
127133
|
-
|
|
127097
|
+
defineProperties4(Constructor.prototype, protoProps);
|
|
127134
127098
|
if (staticProps)
|
|
127135
|
-
|
|
127099
|
+
defineProperties4(Constructor, staticProps);
|
|
127136
127100
|
return Constructor;
|
|
127137
127101
|
};
|
|
127138
127102
|
}();
|
|
127139
|
-
var
|
|
127103
|
+
var defineProperty5 = /* @__PURE__ */ __name(function(obj, key, value) {
|
|
127140
127104
|
if (key in obj) {
|
|
127141
127105
|
Object.defineProperty(obj, key, {
|
|
127142
127106
|
value,
|
|
@@ -127747,7 +127711,7 @@ function arrow(data, options) {
|
|
|
127747
127711
|
var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;
|
|
127748
127712
|
sideValue = Math.max(Math.min(popper2[len] - arrowElementSize, sideValue), 0);
|
|
127749
127713
|
data.arrowElement = arrowElement;
|
|
127750
|
-
data.offsets.arrow = (_data$offsets$arrow = {},
|
|
127714
|
+
data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty5(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty5(_data$offsets$arrow, altSide, ""), _data$offsets$arrow);
|
|
127751
127715
|
return data;
|
|
127752
127716
|
}
|
|
127753
127717
|
__name(arrow, "arrow");
|
|
@@ -127978,7 +127942,7 @@ function preventOverflow(data, options) {
|
|
|
127978
127942
|
if (popper2[placement] < boundaries[placement] && !options.escapeWithReference) {
|
|
127979
127943
|
value = Math.max(popper2[placement], boundaries[placement]);
|
|
127980
127944
|
}
|
|
127981
|
-
return
|
|
127945
|
+
return defineProperty5({}, placement, value);
|
|
127982
127946
|
}, "primary"),
|
|
127983
127947
|
secondary: /* @__PURE__ */ __name(function secondary(placement) {
|
|
127984
127948
|
var mainSide = placement === "right" ? "left" : "top";
|
|
@@ -127986,7 +127950,7 @@ function preventOverflow(data, options) {
|
|
|
127986
127950
|
if (popper2[placement] > boundaries[placement] && !options.escapeWithReference) {
|
|
127987
127951
|
value = Math.min(popper2[mainSide], boundaries[placement] - (placement === "right" ? popper2.width : popper2.height));
|
|
127988
127952
|
}
|
|
127989
|
-
return
|
|
127953
|
+
return defineProperty5({}, mainSide, value);
|
|
127990
127954
|
}, "secondary")
|
|
127991
127955
|
};
|
|
127992
127956
|
order2.forEach(function(placement) {
|
|
@@ -128007,8 +127971,8 @@ function shift3(data) {
|
|
|
128007
127971
|
var side = isVertical ? "left" : "top";
|
|
128008
127972
|
var measurement = isVertical ? "width" : "height";
|
|
128009
127973
|
var shiftOffsets = {
|
|
128010
|
-
start:
|
|
128011
|
-
end:
|
|
127974
|
+
start: defineProperty5({}, side, reference2[side]),
|
|
127975
|
+
end: defineProperty5({}, side, reference2[side] + reference2[measurement] - popper2[measurement])
|
|
128012
127976
|
};
|
|
128013
127977
|
data.offsets.popper = _extends$1({}, popper2, shiftOffsets[shiftvariation]);
|
|
128014
127978
|
}
|
|
@@ -132405,7 +132369,7 @@ const __LinearView = class __LinearView extends React$2.Component {
|
|
|
132405
132369
|
updateLabelsForInViewFeatures();
|
|
132406
132370
|
},
|
|
132407
132371
|
rowContainerStyle: __spreadValues({
|
|
132408
|
-
height: isNaN(height2 - 36) ? "auto" : height2 - 36,
|
|
132372
|
+
height: isNaN(height2 - 36) ? "auto" : height2 - 36 - (hideName ? 0 : 20),
|
|
132409
132373
|
width: innerWidth2 + 26,
|
|
132410
132374
|
paddingRight: marginWidth / 2
|
|
132411
132375
|
}, isLinViewZoomed && !isInAlignment && { paddingBottom: 15 }),
|