@teselagen/ove 0.3.14 → 0.3.15

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 (4) hide show
  1. package/index.js +182 -189
  2. package/index.mjs +182 -189
  3. package/index.umd.js +55 -40
  4. package/package.json +2 -2
package/index.js CHANGED
@@ -5422,9 +5422,18 @@ var propTypes$1 = {exports: {}};
5422
5422
  * LICENSE file in the root directory of this source tree.
5423
5423
  */
5424
5424
 
5425
- var ReactPropTypesSecret$1 = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
5425
+ var ReactPropTypesSecret_1;
5426
+ var hasRequiredReactPropTypesSecret;
5426
5427
 
5427
- var ReactPropTypesSecret_1 = ReactPropTypesSecret$1;
5428
+ function requireReactPropTypesSecret () {
5429
+ if (hasRequiredReactPropTypesSecret) return ReactPropTypesSecret_1;
5430
+ hasRequiredReactPropTypesSecret = 1;
5431
+
5432
+ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
5433
+
5434
+ ReactPropTypesSecret_1 = ReactPropTypesSecret;
5435
+ return ReactPropTypesSecret_1;
5436
+ }
5428
5437
 
5429
5438
  /**
5430
5439
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -5433,60 +5442,69 @@ var ReactPropTypesSecret_1 = ReactPropTypesSecret$1;
5433
5442
  * LICENSE file in the root directory of this source tree.
5434
5443
  */
5435
5444
 
5436
- var ReactPropTypesSecret = ReactPropTypesSecret_1;
5445
+ var factoryWithThrowingShims;
5446
+ var hasRequiredFactoryWithThrowingShims;
5437
5447
 
5438
- function emptyFunction() {}
5439
- function emptyFunctionWithReset() {}
5440
- emptyFunctionWithReset.resetWarningCache = emptyFunction;
5448
+ function requireFactoryWithThrowingShims () {
5449
+ if (hasRequiredFactoryWithThrowingShims) return factoryWithThrowingShims;
5450
+ hasRequiredFactoryWithThrowingShims = 1;
5441
5451
 
5442
- var factoryWithThrowingShims = function() {
5443
- function shim(props, propName, componentName, location, propFullName, secret) {
5444
- if (secret === ReactPropTypesSecret) {
5445
- // It is still safe when called from React.
5446
- return;
5447
- }
5448
- var err = new Error(
5449
- 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
5450
- 'Use PropTypes.checkPropTypes() to call them. ' +
5451
- 'Read more at http://fb.me/use-check-prop-types'
5452
- );
5453
- err.name = 'Invariant Violation';
5454
- throw err;
5455
- } shim.isRequired = shim;
5456
- function getShim() {
5457
- return shim;
5458
- } // Important!
5459
- // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
5460
- var ReactPropTypes = {
5461
- array: shim,
5462
- bigint: shim,
5463
- bool: shim,
5464
- func: shim,
5465
- number: shim,
5466
- object: shim,
5467
- string: shim,
5468
- symbol: shim,
5469
-
5470
- any: shim,
5471
- arrayOf: getShim,
5472
- element: shim,
5473
- elementType: shim,
5474
- instanceOf: getShim,
5475
- node: shim,
5476
- objectOf: getShim,
5477
- oneOf: getShim,
5478
- oneOfType: getShim,
5479
- shape: getShim,
5480
- exact: getShim,
5481
-
5482
- checkPropTypes: emptyFunctionWithReset,
5483
- resetWarningCache: emptyFunction
5484
- };
5485
-
5486
- ReactPropTypes.PropTypes = ReactPropTypes;
5487
-
5488
- return ReactPropTypes;
5489
- };
5452
+ var ReactPropTypesSecret = requireReactPropTypesSecret();
5453
+
5454
+ function emptyFunction() {}
5455
+ function emptyFunctionWithReset() {}
5456
+ emptyFunctionWithReset.resetWarningCache = emptyFunction;
5457
+
5458
+ factoryWithThrowingShims = function() {
5459
+ function shim(props, propName, componentName, location, propFullName, secret) {
5460
+ if (secret === ReactPropTypesSecret) {
5461
+ // It is still safe when called from React.
5462
+ return;
5463
+ }
5464
+ var err = new Error(
5465
+ 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
5466
+ 'Use PropTypes.checkPropTypes() to call them. ' +
5467
+ 'Read more at http://fb.me/use-check-prop-types'
5468
+ );
5469
+ err.name = 'Invariant Violation';
5470
+ throw err;
5471
+ } shim.isRequired = shim;
5472
+ function getShim() {
5473
+ return shim;
5474
+ } // Important!
5475
+ // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
5476
+ var ReactPropTypes = {
5477
+ array: shim,
5478
+ bigint: shim,
5479
+ bool: shim,
5480
+ func: shim,
5481
+ number: shim,
5482
+ object: shim,
5483
+ string: shim,
5484
+ symbol: shim,
5485
+
5486
+ any: shim,
5487
+ arrayOf: getShim,
5488
+ element: shim,
5489
+ elementType: shim,
5490
+ instanceOf: getShim,
5491
+ node: shim,
5492
+ objectOf: getShim,
5493
+ oneOf: getShim,
5494
+ oneOfType: getShim,
5495
+ shape: getShim,
5496
+ exact: getShim,
5497
+
5498
+ checkPropTypes: emptyFunctionWithReset,
5499
+ resetWarningCache: emptyFunction
5500
+ };
5501
+
5502
+ ReactPropTypes.PropTypes = ReactPropTypes;
5503
+
5504
+ return ReactPropTypes;
5505
+ };
5506
+ return factoryWithThrowingShims;
5507
+ }
5490
5508
 
5491
5509
  /**
5492
5510
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -5495,13 +5513,20 @@ var factoryWithThrowingShims = function() {
5495
5513
  * LICENSE file in the root directory of this source tree.
5496
5514
  */
5497
5515
 
5498
- {
5499
- // By explicitly using `prop-types` you are opting into new production behavior.
5500
- // http://fb.me/prop-types-in-prod
5501
- propTypes$1.exports = factoryWithThrowingShims();
5516
+ var hasRequiredPropTypes;
5517
+
5518
+ function requirePropTypes () {
5519
+ if (hasRequiredPropTypes) return propTypes$1.exports;
5520
+ hasRequiredPropTypes = 1;
5521
+ {
5522
+ // By explicitly using `prop-types` you are opting into new production behavior.
5523
+ // http://fb.me/prop-types-in-prod
5524
+ propTypes$1.exports = requireFactoryWithThrowingShims()();
5525
+ }
5526
+ return propTypes$1.exports;
5502
5527
  }
5503
5528
 
5504
- var propTypesExports = propTypes$1.exports;
5529
+ var propTypesExports = requirePropTypes();
5505
5530
  const PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
5506
5531
 
5507
5532
  /******************************************************************************
@@ -30279,18 +30304,10 @@ var _fails = function (exec) {
30279
30304
  }
30280
30305
  };
30281
30306
 
30282
- var _descriptors;
30283
- var hasRequired_descriptors;
30284
-
30285
- function require_descriptors () {
30286
- if (hasRequired_descriptors) return _descriptors;
30287
- hasRequired_descriptors = 1;
30288
- // Thank's IE8 for his funny defineProperty
30289
- _descriptors = !_fails(function () {
30290
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30291
- });
30292
- return _descriptors;
30293
- }
30307
+ // Thank's IE8 for his funny defineProperty
30308
+ var _descriptors = !_fails(function () {
30309
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30310
+ });
30294
30311
 
30295
30312
  var _domCreate;
30296
30313
  var hasRequired_domCreate;
@@ -30308,7 +30325,7 @@ function require_domCreate () {
30308
30325
  return _domCreate;
30309
30326
  }
30310
30327
 
30311
- var _ie8DomDefine = !require_descriptors() && !_fails(function () {
30328
+ var _ie8DomDefine = !_descriptors && !_fails(function () {
30312
30329
  return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30313
30330
  });
30314
30331
 
@@ -30325,17 +30342,17 @@ var _toPrimitive$1 = function (it, S) {
30325
30342
  throw TypeError("Can't convert object to primitive value");
30326
30343
  };
30327
30344
 
30328
- var anObject$3 = _anObject;
30345
+ var anObject$5 = _anObject;
30329
30346
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30330
30347
  var toPrimitive$2 = _toPrimitive$1;
30331
- var dP$2 = Object.defineProperty;
30348
+ var dP$3 = Object.defineProperty;
30332
30349
 
30333
- _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30334
- anObject$3(O);
30350
+ _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30351
+ anObject$5(O);
30335
30352
  P = toPrimitive$2(P, true);
30336
- anObject$3(Attributes);
30353
+ anObject$5(Attributes);
30337
30354
  if (IE8_DOM_DEFINE$1) try {
30338
- return dP$2(O, P, Attributes);
30355
+ return dP$3(O, P, Attributes);
30339
30356
  } catch (e) { /* empty */ }
30340
30357
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30341
30358
  if ('value' in Attributes) O[P] = Attributes.value;
@@ -30351,10 +30368,10 @@ var _propertyDesc = function (bitmap, value) {
30351
30368
  };
30352
30369
  };
30353
30370
 
30354
- var dP$1 = _objectDp;
30371
+ var dP$2 = _objectDp;
30355
30372
  var createDesc$3 = _propertyDesc;
30356
- var _hide = require_descriptors() ? function (object, key, value) {
30357
- return dP$1.f(object, key, createDesc$3(1, value));
30373
+ var _hide = _descriptors ? function (object, key, value) {
30374
+ return dP$2.f(object, key, createDesc$3(1, value));
30358
30375
  } : function (object, key, value) {
30359
30376
  object[key] = value;
30360
30377
  return object;
@@ -30370,7 +30387,7 @@ var core$3 = _coreExports;
30370
30387
  var ctx$1 = _ctx;
30371
30388
  var hide$3 = _hide;
30372
30389
  var has$e = _has;
30373
- var PROTOTYPE$1 = 'prototype';
30390
+ var PROTOTYPE$2 = 'prototype';
30374
30391
 
30375
30392
  var $export$8 = function (type, name, source) {
30376
30393
  var IS_FORCED = type & $export$8.F;
@@ -30380,8 +30397,8 @@ var $export$8 = function (type, name, source) {
30380
30397
  var IS_BIND = type & $export$8.B;
30381
30398
  var IS_WRAP = type & $export$8.W;
30382
30399
  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];
30400
+ var expProto = exports[PROTOTYPE$2];
30401
+ var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$2];
30385
30402
  var key, own, out;
30386
30403
  if (IS_GLOBAL) source = name;
30387
30404
  for (key in source) {
@@ -30405,7 +30422,7 @@ var $export$8 = function (type, name, source) {
30405
30422
  } return new C(a, b, c);
30406
30423
  } return C.apply(this, arguments);
30407
30424
  };
30408
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30425
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30409
30426
  return F;
30410
30427
  // make static versions for prototype methods
30411
30428
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30434,20 +30451,12 @@ var _cof = function (it) {
30434
30451
  return toString$6.call(it).slice(8, -1);
30435
30452
  };
30436
30453
 
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
- }
30454
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30455
+ var cof$2 = _cof;
30456
+ // eslint-disable-next-line no-prototype-builtins
30457
+ var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30458
+ return cof$2(it) == 'String' ? it.split('') : Object(it);
30459
+ };
30451
30460
 
30452
30461
  // 7.2.1 RequireObjectCoercible(argument)
30453
30462
  var _defined = function (it) {
@@ -30456,7 +30465,7 @@ var _defined = function (it) {
30456
30465
  };
30457
30466
 
30458
30467
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30459
- var IObject = require_iobject();
30468
+ var IObject = _iobject;
30460
30469
  var defined$2 = _defined;
30461
30470
  var _toIobject = function (it) {
30462
30471
  return IObject(defined$2(it));
@@ -30542,14 +30551,14 @@ var _sharedKey = function (key) {
30542
30551
  var has$d = _has;
30543
30552
  var toIObject$4 = _toIobject;
30544
30553
  var arrayIndexOf = _arrayIncludes$1(false);
30545
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30554
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30546
30555
 
30547
30556
  var _objectKeysInternal = function (object, names) {
30548
30557
  var O = toIObject$4(object);
30549
30558
  var i = 0;
30550
30559
  var result = [];
30551
30560
  var key;
30552
- for (key in O) if (key != IE_PROTO$1) has$d(O, key) && result.push(key);
30561
+ for (key in O) if (key != IE_PROTO$2) has$d(O, key) && result.push(key);
30553
30562
  // Don't enum bug & hidden keys
30554
30563
  while (names.length > i) if (has$d(O, key = names[i++])) {
30555
30564
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30564,10 +30573,10 @@ var _enumBugKeys = (
30564
30573
 
30565
30574
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30566
30575
  var $keys$3 = _objectKeysInternal;
30567
- var enumBugKeys = _enumBugKeys;
30576
+ var enumBugKeys$1 = _enumBugKeys;
30568
30577
 
30569
30578
  var _objectKeys = Object.keys || function keys(O) {
30570
- return $keys$3(O, enumBugKeys);
30579
+ return $keys$3(O, enumBugKeys$1);
30571
30580
  };
30572
30581
 
30573
30582
  var _objectGops = {};
@@ -30591,12 +30600,12 @@ function require_objectAssign () {
30591
30600
  if (hasRequired_objectAssign) return _objectAssign;
30592
30601
  hasRequired_objectAssign = 1;
30593
30602
  // 19.1.2.1 Object.assign(target, source, ...)
30594
- var DESCRIPTORS = require_descriptors();
30603
+ var DESCRIPTORS = _descriptors;
30595
30604
  var getKeys = _objectKeys;
30596
30605
  var gOPS = _objectGops;
30597
30606
  var pIE = _objectPie;
30598
30607
  var toObject = _toObject;
30599
- var IObject = require_iobject();
30608
+ var IObject = _iobject;
30600
30609
  var $assign = Object.assign;
30601
30610
 
30602
30611
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30667,27 +30676,19 @@ var _iterators = {};
30667
30676
 
30668
30677
  var _redefine = _hide;
30669
30678
 
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;
30679
+ var dP$1 = _objectDp;
30680
+ var anObject$4 = _anObject;
30681
+ var getKeys$1 = _objectKeys;
30679
30682
 
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
- }
30683
+ var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30684
+ anObject$4(O);
30685
+ var keys = getKeys$1(Properties);
30686
+ var length = keys.length;
30687
+ var i = 0;
30688
+ var P;
30689
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30690
+ return O;
30691
+ };
30691
30692
 
30692
30693
  var _html;
30693
30694
  var hasRequired_html;
@@ -30700,55 +30701,47 @@ function require_html () {
30700
30701
  return _html;
30701
30702
  }
30702
30703
 
30703
- var _objectCreate;
30704
- var hasRequired_objectCreate;
30704
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30705
+ var anObject$3 = _anObject;
30706
+ var dPs = _objectDps;
30707
+ var enumBugKeys = _enumBugKeys;
30708
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30709
+ var Empty = function () { /* empty */ };
30710
+ var PROTOTYPE$1 = 'prototype';
30705
30711
 
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
- }
30712
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30713
+ var createDict = function () {
30714
+ // Thrash, waste and sodomy: IE GC bug
30715
+ var iframe = require_domCreate()('iframe');
30716
+ var i = enumBugKeys.length;
30717
+ var lt = '<';
30718
+ var gt = '>';
30719
+ var iframeDocument;
30720
+ iframe.style.display = 'none';
30721
+ require_html().appendChild(iframe);
30722
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30723
+ // createDict = iframe.contentWindow.Object;
30724
+ // html.removeChild(iframe);
30725
+ iframeDocument = iframe.contentWindow.document;
30726
+ iframeDocument.open();
30727
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30728
+ iframeDocument.close();
30729
+ createDict = iframeDocument.F;
30730
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30731
+ return createDict();
30732
+ };
30733
+
30734
+ var _objectCreate = Object.create || function create(O, Properties) {
30735
+ var result;
30736
+ if (O !== null) {
30737
+ Empty[PROTOTYPE$1] = anObject$3(O);
30738
+ result = new Empty();
30739
+ Empty[PROTOTYPE$1] = null;
30740
+ // add "__proto__" for Object.getPrototypeOf polyfill
30741
+ result[IE_PROTO$1] = O;
30742
+ } else result = createDict();
30743
+ return Properties === undefined ? result : dPs(result, Properties);
30744
+ };
30752
30745
 
30753
30746
  var _wks = {exports: {}};
30754
30747
 
@@ -30774,7 +30767,7 @@ var _setToStringTag = function (it, tag, stat) {
30774
30767
  if (it && !has$c(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30775
30768
  };
30776
30769
 
30777
- var create$4 = require_objectCreate();
30770
+ var create$4 = _objectCreate;
30778
30771
  var descriptor = _propertyDesc;
30779
30772
  var setToStringTag$2 = _setToStringTag;
30780
30773
  var IteratorPrototype = {};
@@ -31213,7 +31206,7 @@ var _default$9 = function (instance, Constructor) {
31213
31206
 
31214
31207
  var $export$3 = _export;
31215
31208
  // 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 });
31209
+ $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
31217
31210
 
31218
31211
  var $Object$2 = _coreExports.Object;
31219
31212
  var defineProperty$c = function defineProperty(it, key, desc) {
@@ -31386,7 +31379,7 @@ var has$9 = _has;
31386
31379
  var IE8_DOM_DEFINE = _ie8DomDefine;
31387
31380
  var gOPD$5 = Object.getOwnPropertyDescriptor;
31388
31381
 
31389
- _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
31382
+ _objectGopd.f = _descriptors ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
31390
31383
  O = toIObject$1(O);
31391
31384
  P = toPrimitive$1(P, true);
31392
31385
  if (IE8_DOM_DEFINE) try {
@@ -31398,7 +31391,7 @@ _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescript
31398
31391
  // ECMAScript 6 symbols shim
31399
31392
  var global$2 = _globalExports;
31400
31393
  var has$8 = _has;
31401
- var DESCRIPTORS = require_descriptors();
31394
+ var DESCRIPTORS = _descriptors;
31402
31395
  var $export$2 = _export;
31403
31396
  var redefine = _redefine;
31404
31397
  var META = _metaExports.KEY;
@@ -31417,7 +31410,7 @@ var toObject$1 = _toObject;
31417
31410
  var toIObject = _toIobject;
31418
31411
  var toPrimitive = _toPrimitive$1;
31419
31412
  var createDesc = _propertyDesc;
31420
- var _create$1 = require_objectCreate();
31413
+ var _create$1 = _objectCreate;
31421
31414
  var gOPNExt = _objectGopnExt;
31422
31415
  var $GOPD = _objectGopd;
31423
31416
  var $GOPS = _objectGops;
@@ -31727,7 +31720,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31727
31720
 
31728
31721
  var $export = _export;
31729
31722
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31730
- $export($export.S, 'Object', { create: require_objectCreate() });
31723
+ $export($export.S, 'Object', { create: _objectCreate });
31731
31724
 
31732
31725
  var $Object$1 = _coreExports.Object;
31733
31726
  var create$3 = function create(P, D) {
@@ -37847,7 +37840,7 @@ var reactList = {};
37847
37840
  (function (exports) {
37848
37841
  (function (global, factory) {
37849
37842
  {
37850
- factory(exports, propTypesExports, React$3);
37843
+ factory(exports, requirePropTypes(), React$3);
37851
37844
  }
37852
37845
  })(commonjsGlobal, function (_exports, _propTypes, _react) {
37853
37846
 
@@ -66471,11 +66464,11 @@ function tagOptionRender(vals) {
66471
66464
  function getSort(text, queryString) {
66472
66465
  let ret;
66473
66466
  if (text === queryString)
66474
- ret = 0;
66467
+ ret = -1;
66475
66468
  else if (text.includes(queryString))
66476
- ret = 0.9;
66469
+ ret = text.indexOf(queryString);
66477
66470
  else
66478
- ret = 1;
66471
+ ret = text.length;
66479
66472
  return ret;
66480
66473
  }
66481
66474
 
@@ -101312,7 +101305,7 @@ DraggableCore$5.default = void 0;
101312
101305
 
101313
101306
  var React$2 = _interopRequireWildcard$2(React$3);
101314
101307
 
101315
- var _propTypes$1 = _interopRequireDefault$1(propTypesExports);
101308
+ var _propTypes$1 = _interopRequireDefault$1(requirePropTypes());
101316
101309
 
101317
101310
  var _reactDom$1 = _interopRequireDefault$1(ReactDOM$1);
101318
101311
 
@@ -101888,7 +101881,7 @@ _defineProperty$5(DraggableCore$4, "defaultProps", {
101888
101881
 
101889
101882
  var React = _interopRequireWildcard(React$3);
101890
101883
 
101891
- var _propTypes = _interopRequireDefault(propTypesExports);
101884
+ var _propTypes = _interopRequireDefault(requirePropTypes());
101892
101885
 
101893
101886
  var _reactDom = _interopRequireDefault(ReactDOM$1);
101894
101887
 
@@ -153979,7 +153972,7 @@ DraggableCore$2.default = void 0;
153979
153972
 
153980
153973
  var React$1 = _interopRequireWildcard(React$3);
153981
153974
 
153982
- var _propTypes = _interopRequireDefault(propTypesExports);
153975
+ var _propTypes = _interopRequireDefault(requirePropTypes());
153983
153976
 
153984
153977
  var _reactDom = _interopRequireDefault(ReactDOM$1);
153985
153978
 
@@ -154541,7 +154534,7 @@ _defineProperty$2(DraggableCore$1, "defaultProps", {
154541
154534
 
154542
154535
  var React = _interopRequireWildcard(React$3);
154543
154536
 
154544
- var _propTypes = _interopRequireDefault(propTypesExports);
154537
+ var _propTypes = _interopRequireDefault(requirePropTypes());
154545
154538
 
154546
154539
  var _reactDom = _interopRequireDefault(ReactDOM$1);
154547
154540
 
@@ -161180,7 +161173,7 @@ function showFileDialog({ multiple = false, onSelect }) {
161180
161173
  }
161181
161174
 
161182
161175
  const name = "@teselagen/ove";
161183
- const version = "0.3.13";
161176
+ const version = "0.3.14";
161184
161177
  const main = "./src/index.js";
161185
161178
  const exports$1 = {
161186
161179
  ".": {