@teselagen/ove 0.0.20 → 0.0.21

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.
Files changed (2) hide show
  1. package/index.umd.js +118 -149
  2. package/package.json +7 -7
package/index.umd.js CHANGED
@@ -23996,7 +23996,7 @@
23996
23996
  var ownKeys$9 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
23997
23997
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
23998
23998
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
23999
- function toPrimitive$2(value) {
23999
+ function toPrimitive$3(value) {
24000
24000
  return value === null ? null : typeof value === "object" ? "" + value : value;
24001
24001
  }
24002
24002
  function hasProp(target, prop) {
@@ -24925,7 +24925,7 @@
24925
24925
  return this.name_ + "[" + this.value_ + "]";
24926
24926
  };
24927
24927
  _proto.valueOf = function valueOf() {
24928
- return toPrimitive$2(this.get());
24928
+ return toPrimitive$3(this.get());
24929
24929
  };
24930
24930
  _proto[_Symbol$toPrimitive] = function () {
24931
24931
  return this.valueOf();
@@ -25153,7 +25153,7 @@
25153
25153
  return this.name_ + "[" + this.derivation.toString() + "]";
25154
25154
  };
25155
25155
  _proto.valueOf = function valueOf() {
25156
- return toPrimitive$2(this.get());
25156
+ return toPrimitive$3(this.get());
25157
25157
  };
25158
25158
  _proto[_Symbol$toPrimitive$1] = function () {
25159
25159
  return this.valueOf();
@@ -57050,18 +57050,10 @@
57050
57050
  }
57051
57051
  };
57052
57052
 
57053
- var _descriptors;
57054
- var hasRequired_descriptors;
57055
-
57056
- function require_descriptors () {
57057
- if (hasRequired_descriptors) return _descriptors;
57058
- hasRequired_descriptors = 1;
57059
- // Thank's IE8 for his funny defineProperty
57060
- _descriptors = !_fails(function () {
57061
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
57062
- });
57063
- return _descriptors;
57064
- }
57053
+ // Thank's IE8 for his funny defineProperty
57054
+ var _descriptors = !_fails(function () {
57055
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
57056
+ });
57065
57057
 
57066
57058
  var _domCreate;
57067
57059
  var hasRequired_domCreate;
@@ -57079,17 +57071,9 @@
57079
57071
  return _domCreate;
57080
57072
  }
57081
57073
 
57082
- var _ie8DomDefine;
57083
- var hasRequired_ie8DomDefine;
57084
-
57085
- function require_ie8DomDefine () {
57086
- if (hasRequired_ie8DomDefine) return _ie8DomDefine;
57087
- hasRequired_ie8DomDefine = 1;
57088
- _ie8DomDefine = !require_descriptors() && !_fails(function () {
57089
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
57090
- });
57091
- return _ie8DomDefine;
57092
- }
57074
+ var _ie8DomDefine = !_descriptors && !_fails(function () {
57075
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
57076
+ });
57093
57077
 
57094
57078
  // 7.1.1 ToPrimitive(input [, PreferredType])
57095
57079
  var isObject$6 = _isObject;
@@ -57104,29 +57088,22 @@
57104
57088
  throw TypeError("Can't convert object to primitive value");
57105
57089
  };
57106
57090
 
57107
- var hasRequired_objectDp;
57108
-
57109
- function require_objectDp () {
57110
- if (hasRequired_objectDp) return _objectDp;
57111
- hasRequired_objectDp = 1;
57112
- var anObject = _anObject;
57113
- var IE8_DOM_DEFINE = require_ie8DomDefine();
57114
- var toPrimitive = _toPrimitive$1;
57115
- var dP = Object.defineProperty;
57091
+ var anObject$5 = _anObject;
57092
+ var IE8_DOM_DEFINE$1 = _ie8DomDefine;
57093
+ var toPrimitive$2 = _toPrimitive$1;
57094
+ var dP$3 = Object.defineProperty;
57116
57095
 
57117
- _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
57118
- anObject(O);
57119
- P = toPrimitive(P, true);
57120
- anObject(Attributes);
57121
- if (IE8_DOM_DEFINE) try {
57122
- return dP(O, P, Attributes);
57123
- } catch (e) { /* empty */ }
57124
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
57125
- if ('value' in Attributes) O[P] = Attributes.value;
57126
- return O;
57127
- };
57128
- return _objectDp;
57129
- }
57096
+ _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
57097
+ anObject$5(O);
57098
+ P = toPrimitive$2(P, true);
57099
+ anObject$5(Attributes);
57100
+ if (IE8_DOM_DEFINE$1) try {
57101
+ return dP$3(O, P, Attributes);
57102
+ } catch (e) { /* empty */ }
57103
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
57104
+ if ('value' in Attributes) O[P] = Attributes.value;
57105
+ return O;
57106
+ };
57130
57107
 
57131
57108
  var _propertyDesc = function (bitmap, value) {
57132
57109
  return {
@@ -57137,10 +57114,10 @@
57137
57114
  };
57138
57115
  };
57139
57116
 
57140
- var dP$1 = require_objectDp();
57117
+ var dP$2 = _objectDp;
57141
57118
  var createDesc$3 = _propertyDesc;
57142
- var _hide = require_descriptors() ? function (object, key, value) {
57143
- return dP$1.f(object, key, createDesc$3(1, value));
57119
+ var _hide = _descriptors ? function (object, key, value) {
57120
+ return dP$2.f(object, key, createDesc$3(1, value));
57144
57121
  } : function (object, key, value) {
57145
57122
  object[key] = value;
57146
57123
  return object;
@@ -57156,7 +57133,7 @@
57156
57133
  var ctx$1 = _ctx;
57157
57134
  var hide$2 = _hide;
57158
57135
  var has$d = _has;
57159
- var PROTOTYPE$1 = 'prototype';
57136
+ var PROTOTYPE$2 = 'prototype';
57160
57137
 
57161
57138
  var $export$8 = function (type, name, source) {
57162
57139
  var IS_FORCED = type & $export$8.F;
@@ -57166,8 +57143,8 @@
57166
57143
  var IS_BIND = type & $export$8.B;
57167
57144
  var IS_WRAP = type & $export$8.W;
57168
57145
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
57169
- var expProto = exports[PROTOTYPE$1];
57170
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
57146
+ var expProto = exports[PROTOTYPE$2];
57147
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
57171
57148
  var key, own, out;
57172
57149
  if (IS_GLOBAL) source = name;
57173
57150
  for (key in source) {
@@ -57191,7 +57168,7 @@
57191
57168
  } return new C(a, b, c);
57192
57169
  } return C.apply(this, arguments);
57193
57170
  };
57194
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
57171
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
57195
57172
  return F;
57196
57173
  // make static versions for prototype methods
57197
57174
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -57220,12 +57197,20 @@
57220
57197
  return toString$4.call(it).slice(8, -1);
57221
57198
  };
57222
57199
 
57223
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
57224
- var cof$2 = _cof;
57225
- // eslint-disable-next-line no-prototype-builtins
57226
- var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
57227
- return cof$2(it) == 'String' ? it.split('') : Object(it);
57228
- };
57200
+ var _iobject;
57201
+ var hasRequired_iobject;
57202
+
57203
+ function require_iobject () {
57204
+ if (hasRequired_iobject) return _iobject;
57205
+ hasRequired_iobject = 1;
57206
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
57207
+ var cof = _cof;
57208
+ // eslint-disable-next-line no-prototype-builtins
57209
+ _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
57210
+ return cof(it) == 'String' ? it.split('') : Object(it);
57211
+ };
57212
+ return _iobject;
57213
+ }
57229
57214
 
57230
57215
  // 7.2.1 RequireObjectCoercible(argument)
57231
57216
  var _defined = function (it) {
@@ -57234,7 +57219,7 @@
57234
57219
  };
57235
57220
 
57236
57221
  // to indexed object, toObject with fallback for non-array-like ES3 strings
57237
- var IObject = _iobject;
57222
+ var IObject = require_iobject();
57238
57223
  var defined$2 = _defined;
57239
57224
  var _toIobject = function (it) {
57240
57225
  return IObject(defined$2(it));
@@ -57320,14 +57305,14 @@
57320
57305
  var has$c = _has;
57321
57306
  var toIObject$4 = _toIobject;
57322
57307
  var arrayIndexOf$1 = _arrayIncludes$1(false);
57323
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
57308
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
57324
57309
 
57325
57310
  var _objectKeysInternal = function (object, names) {
57326
57311
  var O = toIObject$4(object);
57327
57312
  var i = 0;
57328
57313
  var result = [];
57329
57314
  var key;
57330
- for (key in O) if (key != IE_PROTO$1) has$c(O, key) && result.push(key);
57315
+ for (key in O) if (key != IE_PROTO$2) has$c(O, key) && result.push(key);
57331
57316
  // Don't enum bug & hidden keys
57332
57317
  while (names.length > i) if (has$c(O, key = names[i++])) {
57333
57318
  ~arrayIndexOf$1(result, key) || result.push(key);
@@ -57342,10 +57327,10 @@
57342
57327
 
57343
57328
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
57344
57329
  var $keys$3 = _objectKeysInternal;
57345
- var enumBugKeys = _enumBugKeys;
57330
+ var enumBugKeys$1 = _enumBugKeys;
57346
57331
 
57347
57332
  var _objectKeys = Object.keys || function keys(O) {
57348
- return $keys$3(O, enumBugKeys);
57333
+ return $keys$3(O, enumBugKeys$1);
57349
57334
  };
57350
57335
 
57351
57336
  var _objectGops = {};
@@ -57376,12 +57361,12 @@
57376
57361
  if (hasRequired_objectAssign) return _objectAssign;
57377
57362
  hasRequired_objectAssign = 1;
57378
57363
  // 19.1.2.1 Object.assign(target, source, ...)
57379
- var DESCRIPTORS = require_descriptors();
57364
+ var DESCRIPTORS = _descriptors;
57380
57365
  var getKeys = _objectKeys;
57381
57366
  var gOPS = _objectGops;
57382
57367
  var pIE = require_objectPie();
57383
57368
  var toObject = _toObject;
57384
- var IObject = _iobject;
57369
+ var IObject = require_iobject();
57385
57370
  var $assign = Object.assign;
57386
57371
 
57387
57372
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -57452,27 +57437,19 @@
57452
57437
 
57453
57438
  var _redefine = _hide;
57454
57439
 
57455
- var _objectDps;
57456
- var hasRequired_objectDps;
57457
-
57458
- function require_objectDps () {
57459
- if (hasRequired_objectDps) return _objectDps;
57460
- hasRequired_objectDps = 1;
57461
- var dP = require_objectDp();
57462
- var anObject = _anObject;
57463
- var getKeys = _objectKeys;
57440
+ var dP$1 = _objectDp;
57441
+ var anObject$4 = _anObject;
57442
+ var getKeys$1 = _objectKeys;
57464
57443
 
57465
- _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
57466
- anObject(O);
57467
- var keys = getKeys(Properties);
57468
- var length = keys.length;
57469
- var i = 0;
57470
- var P;
57471
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
57472
- return O;
57473
- };
57474
- return _objectDps;
57475
- }
57444
+ var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
57445
+ anObject$4(O);
57446
+ var keys = getKeys$1(Properties);
57447
+ var length = keys.length;
57448
+ var i = 0;
57449
+ var P;
57450
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
57451
+ return O;
57452
+ };
57476
57453
 
57477
57454
  var _html;
57478
57455
  var hasRequired_html;
@@ -57485,55 +57462,47 @@
57485
57462
  return _html;
57486
57463
  }
57487
57464
 
57488
- var _objectCreate;
57489
- var hasRequired_objectCreate;
57465
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
57466
+ var anObject$3 = _anObject;
57467
+ var dPs = _objectDps;
57468
+ var enumBugKeys = _enumBugKeys;
57469
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
57470
+ var Empty = function () { /* empty */ };
57471
+ var PROTOTYPE$1 = 'prototype';
57490
57472
 
57491
- function require_objectCreate () {
57492
- if (hasRequired_objectCreate) return _objectCreate;
57493
- hasRequired_objectCreate = 1;
57494
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
57495
- var anObject = _anObject;
57496
- var dPs = require_objectDps();
57497
- var enumBugKeys = _enumBugKeys;
57498
- var IE_PROTO = _sharedKey('IE_PROTO');
57499
- var Empty = function () { /* empty */ };
57500
- var PROTOTYPE = 'prototype';
57501
-
57502
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
57503
- var createDict = function () {
57504
- // Thrash, waste and sodomy: IE GC bug
57505
- var iframe = require_domCreate()('iframe');
57506
- var i = enumBugKeys.length;
57507
- var lt = '<';
57508
- var gt = '>';
57509
- var iframeDocument;
57510
- iframe.style.display = 'none';
57511
- require_html().appendChild(iframe);
57512
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
57513
- // createDict = iframe.contentWindow.Object;
57514
- // html.removeChild(iframe);
57515
- iframeDocument = iframe.contentWindow.document;
57516
- iframeDocument.open();
57517
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
57518
- iframeDocument.close();
57519
- createDict = iframeDocument.F;
57520
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
57521
- return createDict();
57522
- };
57523
-
57524
- _objectCreate = Object.create || function create(O, Properties) {
57525
- var result;
57526
- if (O !== null) {
57527
- Empty[PROTOTYPE] = anObject(O);
57528
- result = new Empty();
57529
- Empty[PROTOTYPE] = null;
57530
- // add "__proto__" for Object.getPrototypeOf polyfill
57531
- result[IE_PROTO] = O;
57532
- } else result = createDict();
57533
- return Properties === undefined ? result : dPs(result, Properties);
57534
- };
57535
- return _objectCreate;
57536
- }
57473
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
57474
+ var createDict = function () {
57475
+ // Thrash, waste and sodomy: IE GC bug
57476
+ var iframe = require_domCreate()('iframe');
57477
+ var i = enumBugKeys.length;
57478
+ var lt = '<';
57479
+ var gt = '>';
57480
+ var iframeDocument;
57481
+ iframe.style.display = 'none';
57482
+ require_html().appendChild(iframe);
57483
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
57484
+ // createDict = iframe.contentWindow.Object;
57485
+ // html.removeChild(iframe);
57486
+ iframeDocument = iframe.contentWindow.document;
57487
+ iframeDocument.open();
57488
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
57489
+ iframeDocument.close();
57490
+ createDict = iframeDocument.F;
57491
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
57492
+ return createDict();
57493
+ };
57494
+
57495
+ var _objectCreate = Object.create || function create(O, Properties) {
57496
+ var result;
57497
+ if (O !== null) {
57498
+ Empty[PROTOTYPE$1] = anObject$3(O);
57499
+ result = new Empty();
57500
+ Empty[PROTOTYPE$1] = null;
57501
+ // add "__proto__" for Object.getPrototypeOf polyfill
57502
+ result[IE_PROTO$1] = O;
57503
+ } else result = createDict();
57504
+ return Properties === undefined ? result : dPs(result, Properties);
57505
+ };
57537
57506
 
57538
57507
  var _wks = {exports: {}};
57539
57508
 
@@ -57551,7 +57520,7 @@
57551
57520
 
57552
57521
  var _wksExports = _wks.exports;
57553
57522
 
57554
- var def = require_objectDp().f;
57523
+ var def = _objectDp.f;
57555
57524
  var has$b = _has;
57556
57525
  var TAG$1 = _wksExports('toStringTag');
57557
57526
 
@@ -57559,7 +57528,7 @@
57559
57528
  if (it && !has$b(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
57560
57529
  };
57561
57530
 
57562
- var create$4 = require_objectCreate();
57531
+ var create$4 = _objectCreate;
57563
57532
  var descriptor = _propertyDesc;
57564
57533
  var setToStringTag$2 = _setToStringTag;
57565
57534
  var IteratorPrototype = {};
@@ -57865,7 +57834,7 @@
57865
57834
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
57866
57835
  };
57867
57836
 
57868
- var $defineProperty$1 = require_objectDp();
57837
+ var $defineProperty$1 = _objectDp;
57869
57838
  var createDesc$2 = _propertyDesc;
57870
57839
 
57871
57840
  var _createProperty = function (object, index, value) {
@@ -57998,7 +57967,7 @@
57998
57967
 
57999
57968
  var $export$3 = _export;
58000
57969
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
58001
- $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
57970
+ $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
58002
57971
 
58003
57972
  var $Object$1 = _coreExports.Object;
58004
57973
  var defineProperty$6 = function defineProperty(it, key, desc) {
@@ -58046,7 +58015,7 @@
58046
58015
  var META$1 = _uid('meta');
58047
58016
  var isObject$5 = _isObject;
58048
58017
  var has$9 = _has;
58049
- var setDesc = require_objectDp().f;
58018
+ var setDesc = _objectDp.f;
58050
58019
  var id$1 = 0;
58051
58020
  var isExtensible = Object.isExtensible || function () {
58052
58021
  return true;
@@ -58101,7 +58070,7 @@
58101
58070
 
58102
58071
  var core = _coreExports;
58103
58072
  var wksExt$1 = _wksExt;
58104
- var defineProperty$4 = require_objectDp().f;
58073
+ var defineProperty$4 = _objectDp.f;
58105
58074
  var _wksDefine = function (name) {
58106
58075
  var $Symbol = core.Symbol || (core.Symbol = {} );
58107
58076
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$4($Symbol, name, { value: wksExt$1.f(name) });
@@ -58168,10 +58137,10 @@
58168
58137
  var toIObject$1 = _toIobject;
58169
58138
  var toPrimitive$1 = _toPrimitive$1;
58170
58139
  var has$8 = _has;
58171
- var IE8_DOM_DEFINE = require_ie8DomDefine();
58140
+ var IE8_DOM_DEFINE = _ie8DomDefine;
58172
58141
  var gOPD$2 = Object.getOwnPropertyDescriptor;
58173
58142
 
58174
- _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
58143
+ _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
58175
58144
  O = toIObject$1(O);
58176
58145
  P = toPrimitive$1(P, true);
58177
58146
  if (IE8_DOM_DEFINE) try {
@@ -58183,7 +58152,7 @@
58183
58152
  // ECMAScript 6 symbols shim
58184
58153
  var global$1 = _globalExports;
58185
58154
  var has$7 = _has;
58186
- var DESCRIPTORS = require_descriptors();
58155
+ var DESCRIPTORS = _descriptors;
58187
58156
  var $export$2 = _export;
58188
58157
  var redefine = _redefine;
58189
58158
  var META = _metaExports.KEY;
@@ -58202,11 +58171,11 @@
58202
58171
  var toIObject = _toIobject;
58203
58172
  var toPrimitive = _toPrimitive$1;
58204
58173
  var createDesc = _propertyDesc;
58205
- var _create$1 = require_objectCreate();
58174
+ var _create$1 = _objectCreate;
58206
58175
  var gOPNExt = _objectGopnExt;
58207
58176
  var $GOPD = _objectGopd;
58208
58177
  var $GOPS = _objectGops;
58209
- var $DP = require_objectDp();
58178
+ var $DP = _objectDp;
58210
58179
  var $keys$1 = _objectKeys;
58211
58180
  var gOPD$1 = $GOPD.f;
58212
58181
  var dP = $DP.f;
@@ -58512,7 +58481,7 @@
58512
58481
 
58513
58482
  var $export = _export;
58514
58483
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
58515
- $export($export.S, 'Object', { create: require_objectCreate() });
58484
+ $export($export.S, 'Object', { create: _objectCreate });
58516
58485
 
58517
58486
  var $Object = _coreExports.Object;
58518
58487
  var create$3 = function create(P, D) {
@@ -189968,7 +189937,7 @@ double click --> edit`}`;
189968
189937
  }
189969
189938
 
189970
189939
  const name = "@teselagen/ove";
189971
- const version = "0.0.19";
189940
+ const version = "0.0.20";
189972
189941
  const main = "./src/index.js";
189973
189942
  const packageJson = {
189974
189943
  name: name,
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@teselagen/ove",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "main": "./src/index.js",
5
5
  "dependencies": {
6
- "@teselagen/sequence-utils": "0.1.22",
7
- "@teselagen/range-utils": "0.1.21",
8
- "@teselagen/ui": "0.0.26",
9
- "@teselagen/file-utils": "0.2.28",
10
- "@teselagen/bounce-loader": "0.0.15",
11
- "@teselagen/bio-parsers": "0.1.27",
6
+ "@teselagen/sequence-utils": "0.1.23",
7
+ "@teselagen/range-utils": "0.1.22",
8
+ "@teselagen/ui": "0.0.27",
9
+ "@teselagen/file-utils": "0.2.29",
10
+ "@teselagen/bounce-loader": "0.0.16",
11
+ "@teselagen/bio-parsers": "0.1.28",
12
12
  "@blueprintjs/core": "3.52.0",
13
13
  "@blueprintjs/datetime": "3.23.19",
14
14
  "@blueprintjs/icons": "3.33.0",