@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.js CHANGED
@@ -7425,7 +7425,7 @@ function getPlainObjectKeys(object) {
7425
7425
  var ownKeys$8 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
7426
7426
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
7427
7427
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
7428
- function toPrimitive$3(value) {
7428
+ function toPrimitive$2(value) {
7429
7429
  return value === null ? null : typeof value === "object" ? "" + value : value;
7430
7430
  }
7431
7431
  function hasProp(target, prop) {
@@ -8354,7 +8354,7 @@ var ObservableValue = /*#__PURE__*/function (_Atom) {
8354
8354
  return this.name_ + "[" + this.value_ + "]";
8355
8355
  };
8356
8356
  _proto.valueOf = function valueOf() {
8357
- return toPrimitive$3(this.get());
8357
+ return toPrimitive$2(this.get());
8358
8358
  };
8359
8359
  _proto[_Symbol$toPrimitive] = function () {
8360
8360
  return this.valueOf();
@@ -8582,7 +8582,7 @@ var ComputedValue = /*#__PURE__*/function () {
8582
8582
  return this.name_ + "[" + this.derivation.toString() + "]";
8583
8583
  };
8584
8584
  _proto.valueOf = function valueOf() {
8585
- return toPrimitive$3(this.get());
8585
+ return toPrimitive$2(this.get());
8586
8586
  };
8587
8587
  _proto[_Symbol$toPrimitive$1] = function () {
8588
8588
  return this.valueOf();
@@ -30308,9 +30308,17 @@ function require_domCreate () {
30308
30308
  return _domCreate;
30309
30309
  }
30310
30310
 
30311
- var _ie8DomDefine = !require_descriptors() && !_fails(function () {
30312
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30313
- });
30311
+ var _ie8DomDefine;
30312
+ var hasRequired_ie8DomDefine;
30313
+
30314
+ function require_ie8DomDefine () {
30315
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
30316
+ hasRequired_ie8DomDefine = 1;
30317
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
30318
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30319
+ });
30320
+ return _ie8DomDefine;
30321
+ }
30314
30322
 
30315
30323
  // 7.1.1 ToPrimitive(input [, PreferredType])
30316
30324
  var isObject$d = _isObject;
@@ -30325,22 +30333,29 @@ var _toPrimitive$1 = function (it, S) {
30325
30333
  throw TypeError("Can't convert object to primitive value");
30326
30334
  };
30327
30335
 
30328
- var anObject$3 = _anObject;
30329
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30330
- var toPrimitive$2 = _toPrimitive$1;
30331
- var dP$2 = Object.defineProperty;
30332
-
30333
- _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30334
- anObject$3(O);
30335
- P = toPrimitive$2(P, true);
30336
- anObject$3(Attributes);
30337
- if (IE8_DOM_DEFINE$1) try {
30338
- return dP$2(O, P, Attributes);
30339
- } catch (e) { /* empty */ }
30340
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30341
- if ('value' in Attributes) O[P] = Attributes.value;
30342
- return O;
30343
- };
30336
+ var hasRequired_objectDp;
30337
+
30338
+ function require_objectDp () {
30339
+ if (hasRequired_objectDp) return _objectDp;
30340
+ hasRequired_objectDp = 1;
30341
+ var anObject = _anObject;
30342
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
30343
+ var toPrimitive = _toPrimitive$1;
30344
+ var dP = Object.defineProperty;
30345
+
30346
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30347
+ anObject(O);
30348
+ P = toPrimitive(P, true);
30349
+ anObject(Attributes);
30350
+ if (IE8_DOM_DEFINE) try {
30351
+ return dP(O, P, Attributes);
30352
+ } catch (e) { /* empty */ }
30353
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30354
+ if ('value' in Attributes) O[P] = Attributes.value;
30355
+ return O;
30356
+ };
30357
+ return _objectDp;
30358
+ }
30344
30359
 
30345
30360
  var _propertyDesc = function (bitmap, value) {
30346
30361
  return {
@@ -30351,10 +30366,10 @@ var _propertyDesc = function (bitmap, value) {
30351
30366
  };
30352
30367
  };
30353
30368
 
30354
- var dP$1 = _objectDp;
30369
+ var dP$2 = require_objectDp();
30355
30370
  var createDesc$3 = _propertyDesc;
30356
30371
  var _hide = require_descriptors() ? function (object, key, value) {
30357
- return dP$1.f(object, key, createDesc$3(1, value));
30372
+ return dP$2.f(object, key, createDesc$3(1, value));
30358
30373
  } : function (object, key, value) {
30359
30374
  object[key] = value;
30360
30375
  return object;
@@ -30370,7 +30385,7 @@ var core$3 = _coreExports;
30370
30385
  var ctx$1 = _ctx;
30371
30386
  var hide$3 = _hide;
30372
30387
  var has$e = _has;
30373
- var PROTOTYPE$1 = 'prototype';
30388
+ var PROTOTYPE$2 = 'prototype';
30374
30389
 
30375
30390
  var $export$8 = function (type, name, source) {
30376
30391
  var IS_FORCED = type & $export$8.F;
@@ -30380,8 +30395,8 @@ var $export$8 = function (type, name, source) {
30380
30395
  var IS_BIND = type & $export$8.B;
30381
30396
  var IS_WRAP = type & $export$8.W;
30382
30397
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
30383
- var expProto = exports[PROTOTYPE$1];
30384
- var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$1];
30398
+ var expProto = exports[PROTOTYPE$2];
30399
+ var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$2];
30385
30400
  var key, own, out;
30386
30401
  if (IS_GLOBAL) source = name;
30387
30402
  for (key in source) {
@@ -30405,7 +30420,7 @@ var $export$8 = function (type, name, source) {
30405
30420
  } return new C(a, b, c);
30406
30421
  } return C.apply(this, arguments);
30407
30422
  };
30408
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30423
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30409
30424
  return F;
30410
30425
  // make static versions for prototype methods
30411
30426
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30434,20 +30449,12 @@ var _cof = function (it) {
30434
30449
  return toString$6.call(it).slice(8, -1);
30435
30450
  };
30436
30451
 
30437
- var _iobject;
30438
- var hasRequired_iobject;
30439
-
30440
- function require_iobject () {
30441
- if (hasRequired_iobject) return _iobject;
30442
- hasRequired_iobject = 1;
30443
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30444
- var cof = _cof;
30445
- // eslint-disable-next-line no-prototype-builtins
30446
- _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30447
- return cof(it) == 'String' ? it.split('') : Object(it);
30448
- };
30449
- return _iobject;
30450
- }
30452
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30453
+ var cof$2 = _cof;
30454
+ // eslint-disable-next-line no-prototype-builtins
30455
+ var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30456
+ return cof$2(it) == 'String' ? it.split('') : Object(it);
30457
+ };
30451
30458
 
30452
30459
  // 7.2.1 RequireObjectCoercible(argument)
30453
30460
  var _defined = function (it) {
@@ -30456,7 +30463,7 @@ var _defined = function (it) {
30456
30463
  };
30457
30464
 
30458
30465
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30459
- var IObject = require_iobject();
30466
+ var IObject = _iobject;
30460
30467
  var defined$2 = _defined;
30461
30468
  var _toIobject = function (it) {
30462
30469
  return IObject(defined$2(it));
@@ -30542,14 +30549,14 @@ var _sharedKey = function (key) {
30542
30549
  var has$d = _has;
30543
30550
  var toIObject$4 = _toIobject;
30544
30551
  var arrayIndexOf = _arrayIncludes$1(false);
30545
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30552
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30546
30553
 
30547
30554
  var _objectKeysInternal = function (object, names) {
30548
30555
  var O = toIObject$4(object);
30549
30556
  var i = 0;
30550
30557
  var result = [];
30551
30558
  var key;
30552
- for (key in O) if (key != IE_PROTO$1) has$d(O, key) && result.push(key);
30559
+ for (key in O) if (key != IE_PROTO$2) has$d(O, key) && result.push(key);
30553
30560
  // Don't enum bug & hidden keys
30554
30561
  while (names.length > i) if (has$d(O, key = names[i++])) {
30555
30562
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30564,10 +30571,10 @@ var _enumBugKeys = (
30564
30571
 
30565
30572
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30566
30573
  var $keys$3 = _objectKeysInternal;
30567
- var enumBugKeys = _enumBugKeys;
30574
+ var enumBugKeys$1 = _enumBugKeys;
30568
30575
 
30569
30576
  var _objectKeys = Object.keys || function keys(O) {
30570
- return $keys$3(O, enumBugKeys);
30577
+ return $keys$3(O, enumBugKeys$1);
30571
30578
  };
30572
30579
 
30573
30580
  var _objectGops = {};
@@ -30596,7 +30603,7 @@ function require_objectAssign () {
30596
30603
  var gOPS = _objectGops;
30597
30604
  var pIE = _objectPie;
30598
30605
  var toObject = _toObject;
30599
- var IObject = require_iobject();
30606
+ var IObject = _iobject;
30600
30607
  var $assign = Object.assign;
30601
30608
 
30602
30609
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30667,27 +30674,19 @@ var _iterators = {};
30667
30674
 
30668
30675
  var _redefine = _hide;
30669
30676
 
30670
- var _objectDps;
30671
- var hasRequired_objectDps;
30672
-
30673
- function require_objectDps () {
30674
- if (hasRequired_objectDps) return _objectDps;
30675
- hasRequired_objectDps = 1;
30676
- var dP = _objectDp;
30677
- var anObject = _anObject;
30678
- var getKeys = _objectKeys;
30677
+ var dP$1 = require_objectDp();
30678
+ var anObject$4 = _anObject;
30679
+ var getKeys$1 = _objectKeys;
30679
30680
 
30680
- _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30681
- anObject(O);
30682
- var keys = getKeys(Properties);
30683
- var length = keys.length;
30684
- var i = 0;
30685
- var P;
30686
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30687
- return O;
30688
- };
30689
- return _objectDps;
30690
- }
30681
+ var _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30682
+ anObject$4(O);
30683
+ var keys = getKeys$1(Properties);
30684
+ var length = keys.length;
30685
+ var i = 0;
30686
+ var P;
30687
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30688
+ return O;
30689
+ };
30691
30690
 
30692
30691
  var _html;
30693
30692
  var hasRequired_html;
@@ -30700,55 +30699,47 @@ function require_html () {
30700
30699
  return _html;
30701
30700
  }
30702
30701
 
30703
- var _objectCreate;
30704
- var hasRequired_objectCreate;
30702
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30703
+ var anObject$3 = _anObject;
30704
+ var dPs = _objectDps;
30705
+ var enumBugKeys = _enumBugKeys;
30706
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30707
+ var Empty = function () { /* empty */ };
30708
+ var PROTOTYPE$1 = 'prototype';
30705
30709
 
30706
- function require_objectCreate () {
30707
- if (hasRequired_objectCreate) return _objectCreate;
30708
- hasRequired_objectCreate = 1;
30709
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30710
- var anObject = _anObject;
30711
- var dPs = require_objectDps();
30712
- var enumBugKeys = _enumBugKeys;
30713
- var IE_PROTO = _sharedKey('IE_PROTO');
30714
- var Empty = function () { /* empty */ };
30715
- var PROTOTYPE = 'prototype';
30716
-
30717
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30718
- var createDict = function () {
30719
- // Thrash, waste and sodomy: IE GC bug
30720
- var iframe = require_domCreate()('iframe');
30721
- var i = enumBugKeys.length;
30722
- var lt = '<';
30723
- var gt = '>';
30724
- var iframeDocument;
30725
- iframe.style.display = 'none';
30726
- require_html().appendChild(iframe);
30727
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30728
- // createDict = iframe.contentWindow.Object;
30729
- // html.removeChild(iframe);
30730
- iframeDocument = iframe.contentWindow.document;
30731
- iframeDocument.open();
30732
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30733
- iframeDocument.close();
30734
- createDict = iframeDocument.F;
30735
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30736
- return createDict();
30737
- };
30738
-
30739
- _objectCreate = Object.create || function create(O, Properties) {
30740
- var result;
30741
- if (O !== null) {
30742
- Empty[PROTOTYPE] = anObject(O);
30743
- result = new Empty();
30744
- Empty[PROTOTYPE] = null;
30745
- // add "__proto__" for Object.getPrototypeOf polyfill
30746
- result[IE_PROTO] = O;
30747
- } else result = createDict();
30748
- return Properties === undefined ? result : dPs(result, Properties);
30749
- };
30750
- return _objectCreate;
30751
- }
30710
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30711
+ var createDict = function () {
30712
+ // Thrash, waste and sodomy: IE GC bug
30713
+ var iframe = require_domCreate()('iframe');
30714
+ var i = enumBugKeys.length;
30715
+ var lt = '<';
30716
+ var gt = '>';
30717
+ var iframeDocument;
30718
+ iframe.style.display = 'none';
30719
+ require_html().appendChild(iframe);
30720
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30721
+ // createDict = iframe.contentWindow.Object;
30722
+ // html.removeChild(iframe);
30723
+ iframeDocument = iframe.contentWindow.document;
30724
+ iframeDocument.open();
30725
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30726
+ iframeDocument.close();
30727
+ createDict = iframeDocument.F;
30728
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30729
+ return createDict();
30730
+ };
30731
+
30732
+ var _objectCreate = Object.create || function create(O, Properties) {
30733
+ var result;
30734
+ if (O !== null) {
30735
+ Empty[PROTOTYPE$1] = anObject$3(O);
30736
+ result = new Empty();
30737
+ Empty[PROTOTYPE$1] = null;
30738
+ // add "__proto__" for Object.getPrototypeOf polyfill
30739
+ result[IE_PROTO$1] = O;
30740
+ } else result = createDict();
30741
+ return Properties === undefined ? result : dPs(result, Properties);
30742
+ };
30752
30743
 
30753
30744
  var _wks = {exports: {}};
30754
30745
 
@@ -30766,7 +30757,7 @@ $exports.store = store$2;
30766
30757
 
30767
30758
  var _wksExports = _wks.exports;
30768
30759
 
30769
- var def = _objectDp.f;
30760
+ var def = require_objectDp().f;
30770
30761
  var has$c = _has;
30771
30762
  var TAG$1 = _wksExports('toStringTag');
30772
30763
 
@@ -30774,7 +30765,7 @@ var _setToStringTag = function (it, tag, stat) {
30774
30765
  if (it && !has$c(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30775
30766
  };
30776
30767
 
30777
- var create$4 = require_objectCreate();
30768
+ var create$4 = _objectCreate;
30778
30769
  var descriptor = _propertyDesc;
30779
30770
  var setToStringTag$2 = _setToStringTag;
30780
30771
  var IteratorPrototype = {};
@@ -31080,7 +31071,7 @@ var _isArrayIter = function (it) {
31080
31071
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31081
31072
  };
31082
31073
 
31083
- var $defineProperty$2 = _objectDp;
31074
+ var $defineProperty$2 = require_objectDp();
31084
31075
  var createDesc$2 = _propertyDesc;
31085
31076
 
31086
31077
  var _createProperty = function (object, index, value) {
@@ -31213,7 +31204,7 @@ var _default$9 = function (instance, Constructor) {
31213
31204
 
31214
31205
  var $export$3 = _export;
31215
31206
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31216
- $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: _objectDp.f });
31207
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
31217
31208
 
31218
31209
  var $Object$2 = _coreExports.Object;
31219
31210
  var defineProperty$c = function defineProperty(it, key, desc) {
@@ -31261,7 +31252,7 @@ var _meta = {exports: {}};
31261
31252
  var META$1 = _uid('meta');
31262
31253
  var isObject$c = _isObject;
31263
31254
  var has$a = _has;
31264
- var setDesc = _objectDp.f;
31255
+ var setDesc = require_objectDp().f;
31265
31256
  var id$1 = 0;
31266
31257
  var isExtensible = Object.isExtensible || function () {
31267
31258
  return true;
@@ -31316,7 +31307,7 @@ var _metaExports = _meta.exports;
31316
31307
 
31317
31308
  var core = _coreExports;
31318
31309
  var wksExt$1 = _wksExt;
31319
- var defineProperty$a = _objectDp.f;
31310
+ var defineProperty$a = require_objectDp().f;
31320
31311
  var _wksDefine = function (name) {
31321
31312
  var $Symbol = core.Symbol || (core.Symbol = {} );
31322
31313
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$a($Symbol, name, { value: wksExt$1.f(name) });
@@ -31383,7 +31374,7 @@ var createDesc$1 = _propertyDesc;
31383
31374
  var toIObject$1 = _toIobject;
31384
31375
  var toPrimitive$1 = _toPrimitive$1;
31385
31376
  var has$9 = _has;
31386
- var IE8_DOM_DEFINE = _ie8DomDefine;
31377
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31387
31378
  var gOPD$5 = Object.getOwnPropertyDescriptor;
31388
31379
 
31389
31380
  _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
@@ -31417,11 +31408,11 @@ var toObject$1 = _toObject;
31417
31408
  var toIObject = _toIobject;
31418
31409
  var toPrimitive = _toPrimitive$1;
31419
31410
  var createDesc = _propertyDesc;
31420
- var _create$1 = require_objectCreate();
31411
+ var _create$1 = _objectCreate;
31421
31412
  var gOPNExt = _objectGopnExt;
31422
31413
  var $GOPD = _objectGopd;
31423
31414
  var $GOPS = _objectGops;
31424
- var $DP = _objectDp;
31415
+ var $DP = require_objectDp();
31425
31416
  var $keys$1 = _objectKeys;
31426
31417
  var gOPD$4 = $GOPD.f;
31427
31418
  var dP = $DP.f;
@@ -31727,7 +31718,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31727
31718
 
31728
31719
  var $export = _export;
31729
31720
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31730
- $export($export.S, 'Object', { create: require_objectCreate() });
31721
+ $export($export.S, 'Object', { create: _objectCreate });
31731
31722
 
31732
31723
  var $Object$1 = _coreExports.Object;
31733
31724
  var create$3 = function create(P, D) {
@@ -66471,11 +66462,11 @@ function tagOptionRender(vals) {
66471
66462
  function getSort(text, queryString) {
66472
66463
  let ret;
66473
66464
  if (text === queryString)
66474
- ret = 0;
66465
+ ret = -1;
66475
66466
  else if (text.includes(queryString))
66476
- ret = 0.9;
66467
+ ret = text.indexOf(queryString);
66477
66468
  else
66478
- ret = 1;
66469
+ ret = text.length;
66479
66470
  return ret;
66480
66471
  }
66481
66472
 
@@ -161180,7 +161171,7 @@ function showFileDialog({ multiple = false, onSelect }) {
161180
161171
  }
161181
161172
 
161182
161173
  const name = "@teselagen/ove";
161183
- const version = "0.3.13";
161174
+ const version = "0.3.15";
161184
161175
  const main = "./src/index.js";
161185
161176
  const exports$1 = {
161186
161177
  ".": {
@@ -161929,6 +161920,10 @@ const fileCommandDefs = {
161929
161920
  isHidden: (props) => !props.onNew,
161930
161921
  handler: (props, ...rest) => props.onNew(props, ...rest)
161931
161922
  },
161923
+ openSequence: {
161924
+ isHidden: (props) => !props.onOpen,
161925
+ handler: (props, ...rest) => props.onOpen(props, ...rest)
161926
+ },
161932
161927
  renameSequence: {
161933
161928
  isHidden: (props) => props.readOnly,
161934
161929
  isDisabled: (props) => props.readOnly && readOnlyDisabledTooltip,
@@ -166683,6 +166678,7 @@ const menuDef = [
166683
166678
  cmd: "newSequence",
166684
166679
  "data-test": "newSequence"
166685
166680
  },
166681
+ "openSequence",
166686
166682
  "renameSequence",
166687
166683
  "saveSequence",
166688
166684
  "saveSequenceAs",
@@ -183203,6 +183199,7 @@ const userDefinedHandlersAndOpts = [
183203
183199
  "fullscreenMode",
183204
183200
  "maxAnnotationsToDisplay",
183205
183201
  "onNew",
183202
+ "onOpen",
183206
183203
  "onImport",
183207
183204
  "onSave",
183208
183205
  "onSaveAs",