@teselagen/ove 0.3.14 → 0.3.16

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 (7) hide show
  1. package/README.md +718 -0
  2. package/index.cjs.js +197028 -0
  3. package/index.es.js +196974 -0
  4. package/index.js +127 -130
  5. package/index.mjs +127 -130
  6. package/index.umd.js +84 -108
  7. package/package.json +4 -4
package/index.mjs CHANGED
@@ -7404,7 +7404,7 @@ function getPlainObjectKeys(object) {
7404
7404
  var ownKeys$8 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
7405
7405
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
7406
7406
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
7407
- function toPrimitive$3(value) {
7407
+ function toPrimitive$2(value) {
7408
7408
  return value === null ? null : typeof value === "object" ? "" + value : value;
7409
7409
  }
7410
7410
  function hasProp(target, prop) {
@@ -8333,7 +8333,7 @@ var ObservableValue = /*#__PURE__*/function (_Atom) {
8333
8333
  return this.name_ + "[" + this.value_ + "]";
8334
8334
  };
8335
8335
  _proto.valueOf = function valueOf() {
8336
- return toPrimitive$3(this.get());
8336
+ return toPrimitive$2(this.get());
8337
8337
  };
8338
8338
  _proto[_Symbol$toPrimitive] = function () {
8339
8339
  return this.valueOf();
@@ -8561,7 +8561,7 @@ var ComputedValue = /*#__PURE__*/function () {
8561
8561
  return this.name_ + "[" + this.derivation.toString() + "]";
8562
8562
  };
8563
8563
  _proto.valueOf = function valueOf() {
8564
- return toPrimitive$3(this.get());
8564
+ return toPrimitive$2(this.get());
8565
8565
  };
8566
8566
  _proto[_Symbol$toPrimitive$1] = function () {
8567
8567
  return this.valueOf();
@@ -30287,9 +30287,17 @@ function require_domCreate () {
30287
30287
  return _domCreate;
30288
30288
  }
30289
30289
 
30290
- var _ie8DomDefine = !require_descriptors() && !_fails(function () {
30291
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30292
- });
30290
+ var _ie8DomDefine;
30291
+ var hasRequired_ie8DomDefine;
30292
+
30293
+ function require_ie8DomDefine () {
30294
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
30295
+ hasRequired_ie8DomDefine = 1;
30296
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
30297
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30298
+ });
30299
+ return _ie8DomDefine;
30300
+ }
30293
30301
 
30294
30302
  // 7.1.1 ToPrimitive(input [, PreferredType])
30295
30303
  var isObject$d = _isObject;
@@ -30304,22 +30312,29 @@ var _toPrimitive$1 = function (it, S) {
30304
30312
  throw TypeError("Can't convert object to primitive value");
30305
30313
  };
30306
30314
 
30307
- var anObject$3 = _anObject;
30308
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30309
- var toPrimitive$2 = _toPrimitive$1;
30310
- var dP$2 = Object.defineProperty;
30311
-
30312
- _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30313
- anObject$3(O);
30314
- P = toPrimitive$2(P, true);
30315
- anObject$3(Attributes);
30316
- if (IE8_DOM_DEFINE$1) try {
30317
- return dP$2(O, P, Attributes);
30318
- } catch (e) { /* empty */ }
30319
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30320
- if ('value' in Attributes) O[P] = Attributes.value;
30321
- return O;
30322
- };
30315
+ var hasRequired_objectDp;
30316
+
30317
+ function require_objectDp () {
30318
+ if (hasRequired_objectDp) return _objectDp;
30319
+ hasRequired_objectDp = 1;
30320
+ var anObject = _anObject;
30321
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
30322
+ var toPrimitive = _toPrimitive$1;
30323
+ var dP = Object.defineProperty;
30324
+
30325
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30326
+ anObject(O);
30327
+ P = toPrimitive(P, true);
30328
+ anObject(Attributes);
30329
+ if (IE8_DOM_DEFINE) try {
30330
+ return dP(O, P, Attributes);
30331
+ } catch (e) { /* empty */ }
30332
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30333
+ if ('value' in Attributes) O[P] = Attributes.value;
30334
+ return O;
30335
+ };
30336
+ return _objectDp;
30337
+ }
30323
30338
 
30324
30339
  var _propertyDesc = function (bitmap, value) {
30325
30340
  return {
@@ -30330,10 +30345,10 @@ var _propertyDesc = function (bitmap, value) {
30330
30345
  };
30331
30346
  };
30332
30347
 
30333
- var dP$1 = _objectDp;
30348
+ var dP$2 = require_objectDp();
30334
30349
  var createDesc$3 = _propertyDesc;
30335
30350
  var _hide = require_descriptors() ? function (object, key, value) {
30336
- return dP$1.f(object, key, createDesc$3(1, value));
30351
+ return dP$2.f(object, key, createDesc$3(1, value));
30337
30352
  } : function (object, key, value) {
30338
30353
  object[key] = value;
30339
30354
  return object;
@@ -30349,7 +30364,7 @@ var core$3 = _coreExports;
30349
30364
  var ctx$1 = _ctx;
30350
30365
  var hide$3 = _hide;
30351
30366
  var has$e = _has;
30352
- var PROTOTYPE$1 = 'prototype';
30367
+ var PROTOTYPE$2 = 'prototype';
30353
30368
 
30354
30369
  var $export$8 = function (type, name, source) {
30355
30370
  var IS_FORCED = type & $export$8.F;
@@ -30359,8 +30374,8 @@ var $export$8 = function (type, name, source) {
30359
30374
  var IS_BIND = type & $export$8.B;
30360
30375
  var IS_WRAP = type & $export$8.W;
30361
30376
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
30362
- var expProto = exports[PROTOTYPE$1];
30363
- var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$1];
30377
+ var expProto = exports[PROTOTYPE$2];
30378
+ var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$2];
30364
30379
  var key, own, out;
30365
30380
  if (IS_GLOBAL) source = name;
30366
30381
  for (key in source) {
@@ -30384,7 +30399,7 @@ var $export$8 = function (type, name, source) {
30384
30399
  } return new C(a, b, c);
30385
30400
  } return C.apply(this, arguments);
30386
30401
  };
30387
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30402
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30388
30403
  return F;
30389
30404
  // make static versions for prototype methods
30390
30405
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30413,20 +30428,12 @@ var _cof = function (it) {
30413
30428
  return toString$6.call(it).slice(8, -1);
30414
30429
  };
30415
30430
 
30416
- var _iobject;
30417
- var hasRequired_iobject;
30418
-
30419
- function require_iobject () {
30420
- if (hasRequired_iobject) return _iobject;
30421
- hasRequired_iobject = 1;
30422
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30423
- var cof = _cof;
30424
- // eslint-disable-next-line no-prototype-builtins
30425
- _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30426
- return cof(it) == 'String' ? it.split('') : Object(it);
30427
- };
30428
- return _iobject;
30429
- }
30431
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30432
+ var cof$2 = _cof;
30433
+ // eslint-disable-next-line no-prototype-builtins
30434
+ var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30435
+ return cof$2(it) == 'String' ? it.split('') : Object(it);
30436
+ };
30430
30437
 
30431
30438
  // 7.2.1 RequireObjectCoercible(argument)
30432
30439
  var _defined = function (it) {
@@ -30435,7 +30442,7 @@ var _defined = function (it) {
30435
30442
  };
30436
30443
 
30437
30444
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30438
- var IObject = require_iobject();
30445
+ var IObject = _iobject;
30439
30446
  var defined$2 = _defined;
30440
30447
  var _toIobject = function (it) {
30441
30448
  return IObject(defined$2(it));
@@ -30521,14 +30528,14 @@ var _sharedKey = function (key) {
30521
30528
  var has$d = _has;
30522
30529
  var toIObject$4 = _toIobject;
30523
30530
  var arrayIndexOf = _arrayIncludes$1(false);
30524
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30531
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30525
30532
 
30526
30533
  var _objectKeysInternal = function (object, names) {
30527
30534
  var O = toIObject$4(object);
30528
30535
  var i = 0;
30529
30536
  var result = [];
30530
30537
  var key;
30531
- for (key in O) if (key != IE_PROTO$1) has$d(O, key) && result.push(key);
30538
+ for (key in O) if (key != IE_PROTO$2) has$d(O, key) && result.push(key);
30532
30539
  // Don't enum bug & hidden keys
30533
30540
  while (names.length > i) if (has$d(O, key = names[i++])) {
30534
30541
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30543,10 +30550,10 @@ var _enumBugKeys = (
30543
30550
 
30544
30551
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30545
30552
  var $keys$3 = _objectKeysInternal;
30546
- var enumBugKeys = _enumBugKeys;
30553
+ var enumBugKeys$1 = _enumBugKeys;
30547
30554
 
30548
30555
  var _objectKeys = Object.keys || function keys(O) {
30549
- return $keys$3(O, enumBugKeys);
30556
+ return $keys$3(O, enumBugKeys$1);
30550
30557
  };
30551
30558
 
30552
30559
  var _objectGops = {};
@@ -30575,7 +30582,7 @@ function require_objectAssign () {
30575
30582
  var gOPS = _objectGops;
30576
30583
  var pIE = _objectPie;
30577
30584
  var toObject = _toObject;
30578
- var IObject = require_iobject();
30585
+ var IObject = _iobject;
30579
30586
  var $assign = Object.assign;
30580
30587
 
30581
30588
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30646,27 +30653,19 @@ var _iterators = {};
30646
30653
 
30647
30654
  var _redefine = _hide;
30648
30655
 
30649
- var _objectDps;
30650
- var hasRequired_objectDps;
30651
-
30652
- function require_objectDps () {
30653
- if (hasRequired_objectDps) return _objectDps;
30654
- hasRequired_objectDps = 1;
30655
- var dP = _objectDp;
30656
- var anObject = _anObject;
30657
- var getKeys = _objectKeys;
30656
+ var dP$1 = require_objectDp();
30657
+ var anObject$4 = _anObject;
30658
+ var getKeys$1 = _objectKeys;
30658
30659
 
30659
- _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30660
- anObject(O);
30661
- var keys = getKeys(Properties);
30662
- var length = keys.length;
30663
- var i = 0;
30664
- var P;
30665
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30666
- return O;
30667
- };
30668
- return _objectDps;
30669
- }
30660
+ var _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30661
+ anObject$4(O);
30662
+ var keys = getKeys$1(Properties);
30663
+ var length = keys.length;
30664
+ var i = 0;
30665
+ var P;
30666
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30667
+ return O;
30668
+ };
30670
30669
 
30671
30670
  var _html;
30672
30671
  var hasRequired_html;
@@ -30679,55 +30678,47 @@ function require_html () {
30679
30678
  return _html;
30680
30679
  }
30681
30680
 
30682
- var _objectCreate;
30683
- var hasRequired_objectCreate;
30681
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30682
+ var anObject$3 = _anObject;
30683
+ var dPs = _objectDps;
30684
+ var enumBugKeys = _enumBugKeys;
30685
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30686
+ var Empty = function () { /* empty */ };
30687
+ var PROTOTYPE$1 = 'prototype';
30684
30688
 
30685
- function require_objectCreate () {
30686
- if (hasRequired_objectCreate) return _objectCreate;
30687
- hasRequired_objectCreate = 1;
30688
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30689
- var anObject = _anObject;
30690
- var dPs = require_objectDps();
30691
- var enumBugKeys = _enumBugKeys;
30692
- var IE_PROTO = _sharedKey('IE_PROTO');
30693
- var Empty = function () { /* empty */ };
30694
- var PROTOTYPE = 'prototype';
30695
-
30696
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30697
- var createDict = function () {
30698
- // Thrash, waste and sodomy: IE GC bug
30699
- var iframe = require_domCreate()('iframe');
30700
- var i = enumBugKeys.length;
30701
- var lt = '<';
30702
- var gt = '>';
30703
- var iframeDocument;
30704
- iframe.style.display = 'none';
30705
- require_html().appendChild(iframe);
30706
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30707
- // createDict = iframe.contentWindow.Object;
30708
- // html.removeChild(iframe);
30709
- iframeDocument = iframe.contentWindow.document;
30710
- iframeDocument.open();
30711
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30712
- iframeDocument.close();
30713
- createDict = iframeDocument.F;
30714
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30715
- return createDict();
30716
- };
30717
-
30718
- _objectCreate = Object.create || function create(O, Properties) {
30719
- var result;
30720
- if (O !== null) {
30721
- Empty[PROTOTYPE] = anObject(O);
30722
- result = new Empty();
30723
- Empty[PROTOTYPE] = null;
30724
- // add "__proto__" for Object.getPrototypeOf polyfill
30725
- result[IE_PROTO] = O;
30726
- } else result = createDict();
30727
- return Properties === undefined ? result : dPs(result, Properties);
30728
- };
30729
- return _objectCreate;
30730
- }
30689
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30690
+ var createDict = function () {
30691
+ // Thrash, waste and sodomy: IE GC bug
30692
+ var iframe = require_domCreate()('iframe');
30693
+ var i = enumBugKeys.length;
30694
+ var lt = '<';
30695
+ var gt = '>';
30696
+ var iframeDocument;
30697
+ iframe.style.display = 'none';
30698
+ require_html().appendChild(iframe);
30699
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30700
+ // createDict = iframe.contentWindow.Object;
30701
+ // html.removeChild(iframe);
30702
+ iframeDocument = iframe.contentWindow.document;
30703
+ iframeDocument.open();
30704
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30705
+ iframeDocument.close();
30706
+ createDict = iframeDocument.F;
30707
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30708
+ return createDict();
30709
+ };
30710
+
30711
+ var _objectCreate = Object.create || function create(O, Properties) {
30712
+ var result;
30713
+ if (O !== null) {
30714
+ Empty[PROTOTYPE$1] = anObject$3(O);
30715
+ result = new Empty();
30716
+ Empty[PROTOTYPE$1] = null;
30717
+ // add "__proto__" for Object.getPrototypeOf polyfill
30718
+ result[IE_PROTO$1] = O;
30719
+ } else result = createDict();
30720
+ return Properties === undefined ? result : dPs(result, Properties);
30721
+ };
30731
30722
 
30732
30723
  var _wks = {exports: {}};
30733
30724
 
@@ -30745,7 +30736,7 @@ $exports.store = store$2;
30745
30736
 
30746
30737
  var _wksExports = _wks.exports;
30747
30738
 
30748
- var def = _objectDp.f;
30739
+ var def = require_objectDp().f;
30749
30740
  var has$c = _has;
30750
30741
  var TAG$1 = _wksExports('toStringTag');
30751
30742
 
@@ -30753,7 +30744,7 @@ var _setToStringTag = function (it, tag, stat) {
30753
30744
  if (it && !has$c(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30754
30745
  };
30755
30746
 
30756
- var create$4 = require_objectCreate();
30747
+ var create$4 = _objectCreate;
30757
30748
  var descriptor = _propertyDesc;
30758
30749
  var setToStringTag$2 = _setToStringTag;
30759
30750
  var IteratorPrototype = {};
@@ -31059,7 +31050,7 @@ var _isArrayIter = function (it) {
31059
31050
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31060
31051
  };
31061
31052
 
31062
- var $defineProperty$2 = _objectDp;
31053
+ var $defineProperty$2 = require_objectDp();
31063
31054
  var createDesc$2 = _propertyDesc;
31064
31055
 
31065
31056
  var _createProperty = function (object, index, value) {
@@ -31192,7 +31183,7 @@ var _default$9 = function (instance, Constructor) {
31192
31183
 
31193
31184
  var $export$3 = _export;
31194
31185
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31195
- $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: _objectDp.f });
31186
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
31196
31187
 
31197
31188
  var $Object$2 = _coreExports.Object;
31198
31189
  var defineProperty$c = function defineProperty(it, key, desc) {
@@ -31240,7 +31231,7 @@ var _meta = {exports: {}};
31240
31231
  var META$1 = _uid('meta');
31241
31232
  var isObject$c = _isObject;
31242
31233
  var has$a = _has;
31243
- var setDesc = _objectDp.f;
31234
+ var setDesc = require_objectDp().f;
31244
31235
  var id$1 = 0;
31245
31236
  var isExtensible = Object.isExtensible || function () {
31246
31237
  return true;
@@ -31295,7 +31286,7 @@ var _metaExports = _meta.exports;
31295
31286
 
31296
31287
  var core = _coreExports;
31297
31288
  var wksExt$1 = _wksExt;
31298
- var defineProperty$a = _objectDp.f;
31289
+ var defineProperty$a = require_objectDp().f;
31299
31290
  var _wksDefine = function (name) {
31300
31291
  var $Symbol = core.Symbol || (core.Symbol = {} );
31301
31292
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$a($Symbol, name, { value: wksExt$1.f(name) });
@@ -31362,7 +31353,7 @@ var createDesc$1 = _propertyDesc;
31362
31353
  var toIObject$1 = _toIobject;
31363
31354
  var toPrimitive$1 = _toPrimitive$1;
31364
31355
  var has$9 = _has;
31365
- var IE8_DOM_DEFINE = _ie8DomDefine;
31356
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31366
31357
  var gOPD$5 = Object.getOwnPropertyDescriptor;
31367
31358
 
31368
31359
  _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
@@ -31396,11 +31387,11 @@ var toObject$1 = _toObject;
31396
31387
  var toIObject = _toIobject;
31397
31388
  var toPrimitive = _toPrimitive$1;
31398
31389
  var createDesc = _propertyDesc;
31399
- var _create$1 = require_objectCreate();
31390
+ var _create$1 = _objectCreate;
31400
31391
  var gOPNExt = _objectGopnExt;
31401
31392
  var $GOPD = _objectGopd;
31402
31393
  var $GOPS = _objectGops;
31403
- var $DP = _objectDp;
31394
+ var $DP = require_objectDp();
31404
31395
  var $keys$1 = _objectKeys;
31405
31396
  var gOPD$4 = $GOPD.f;
31406
31397
  var dP = $DP.f;
@@ -31706,7 +31697,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31706
31697
 
31707
31698
  var $export = _export;
31708
31699
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31709
- $export($export.S, 'Object', { create: require_objectCreate() });
31700
+ $export($export.S, 'Object', { create: _objectCreate });
31710
31701
 
31711
31702
  var $Object$1 = _coreExports.Object;
31712
31703
  var create$3 = function create(P, D) {
@@ -66450,11 +66441,11 @@ function tagOptionRender(vals) {
66450
66441
  function getSort(text, queryString) {
66451
66442
  let ret;
66452
66443
  if (text === queryString)
66453
- ret = 0;
66444
+ ret = -1;
66454
66445
  else if (text.includes(queryString))
66455
- ret = 0.9;
66446
+ ret = text.indexOf(queryString);
66456
66447
  else
66457
- ret = 1;
66448
+ ret = text.length;
66458
66449
  return ret;
66459
66450
  }
66460
66451
 
@@ -161159,7 +161150,7 @@ function showFileDialog({ multiple = false, onSelect }) {
161159
161150
  }
161160
161151
 
161161
161152
  const name = "@teselagen/ove";
161162
- const version = "0.3.13";
161153
+ const version = "0.3.15";
161163
161154
  const main = "./src/index.js";
161164
161155
  const exports$1 = {
161165
161156
  ".": {
@@ -161908,6 +161899,10 @@ const fileCommandDefs = {
161908
161899
  isHidden: (props) => !props.onNew,
161909
161900
  handler: (props, ...rest) => props.onNew(props, ...rest)
161910
161901
  },
161902
+ openSequence: {
161903
+ isHidden: (props) => !props.onOpen,
161904
+ handler: (props, ...rest) => props.onOpen(props, ...rest)
161905
+ },
161911
161906
  renameSequence: {
161912
161907
  isHidden: (props) => props.readOnly,
161913
161908
  isDisabled: (props) => props.readOnly && readOnlyDisabledTooltip,
@@ -166662,6 +166657,7 @@ const menuDef = [
166662
166657
  cmd: "newSequence",
166663
166658
  "data-test": "newSequence"
166664
166659
  },
166660
+ "openSequence",
166665
166661
  "renameSequence",
166666
166662
  "saveSequence",
166667
166663
  "saveSequenceAs",
@@ -183182,6 +183178,7 @@ const userDefinedHandlersAndOpts = [
183182
183178
  "fullscreenMode",
183183
183179
  "maxAnnotationsToDisplay",
183184
183180
  "onNew",
183181
+ "onOpen",
183185
183182
  "onImport",
183186
183183
  "onSave",
183187
183184
  "onSaveAs",