@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.mjs CHANGED
@@ -5401,9 +5401,18 @@ var propTypes$1 = {exports: {}};
5401
5401
  * LICENSE file in the root directory of this source tree.
5402
5402
  */
5403
5403
 
5404
- var ReactPropTypesSecret$1 = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
5404
+ var ReactPropTypesSecret_1;
5405
+ var hasRequiredReactPropTypesSecret;
5405
5406
 
5406
- var ReactPropTypesSecret_1 = ReactPropTypesSecret$1;
5407
+ function requireReactPropTypesSecret () {
5408
+ if (hasRequiredReactPropTypesSecret) return ReactPropTypesSecret_1;
5409
+ hasRequiredReactPropTypesSecret = 1;
5410
+
5411
+ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
5412
+
5413
+ ReactPropTypesSecret_1 = ReactPropTypesSecret;
5414
+ return ReactPropTypesSecret_1;
5415
+ }
5407
5416
 
5408
5417
  /**
5409
5418
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -5412,60 +5421,69 @@ var ReactPropTypesSecret_1 = ReactPropTypesSecret$1;
5412
5421
  * LICENSE file in the root directory of this source tree.
5413
5422
  */
5414
5423
 
5415
- var ReactPropTypesSecret = ReactPropTypesSecret_1;
5424
+ var factoryWithThrowingShims;
5425
+ var hasRequiredFactoryWithThrowingShims;
5416
5426
 
5417
- function emptyFunction() {}
5418
- function emptyFunctionWithReset() {}
5419
- emptyFunctionWithReset.resetWarningCache = emptyFunction;
5427
+ function requireFactoryWithThrowingShims () {
5428
+ if (hasRequiredFactoryWithThrowingShims) return factoryWithThrowingShims;
5429
+ hasRequiredFactoryWithThrowingShims = 1;
5420
5430
 
5421
- var factoryWithThrowingShims = function() {
5422
- function shim(props, propName, componentName, location, propFullName, secret) {
5423
- if (secret === ReactPropTypesSecret) {
5424
- // It is still safe when called from React.
5425
- return;
5426
- }
5427
- var err = new Error(
5428
- 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
5429
- 'Use PropTypes.checkPropTypes() to call them. ' +
5430
- 'Read more at http://fb.me/use-check-prop-types'
5431
- );
5432
- err.name = 'Invariant Violation';
5433
- throw err;
5434
- } shim.isRequired = shim;
5435
- function getShim() {
5436
- return shim;
5437
- } // Important!
5438
- // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
5439
- var ReactPropTypes = {
5440
- array: shim,
5441
- bigint: shim,
5442
- bool: shim,
5443
- func: shim,
5444
- number: shim,
5445
- object: shim,
5446
- string: shim,
5447
- symbol: shim,
5448
-
5449
- any: shim,
5450
- arrayOf: getShim,
5451
- element: shim,
5452
- elementType: shim,
5453
- instanceOf: getShim,
5454
- node: shim,
5455
- objectOf: getShim,
5456
- oneOf: getShim,
5457
- oneOfType: getShim,
5458
- shape: getShim,
5459
- exact: getShim,
5460
-
5461
- checkPropTypes: emptyFunctionWithReset,
5462
- resetWarningCache: emptyFunction
5463
- };
5464
-
5465
- ReactPropTypes.PropTypes = ReactPropTypes;
5466
-
5467
- return ReactPropTypes;
5468
- };
5431
+ var ReactPropTypesSecret = requireReactPropTypesSecret();
5432
+
5433
+ function emptyFunction() {}
5434
+ function emptyFunctionWithReset() {}
5435
+ emptyFunctionWithReset.resetWarningCache = emptyFunction;
5436
+
5437
+ factoryWithThrowingShims = function() {
5438
+ function shim(props, propName, componentName, location, propFullName, secret) {
5439
+ if (secret === ReactPropTypesSecret) {
5440
+ // It is still safe when called from React.
5441
+ return;
5442
+ }
5443
+ var err = new Error(
5444
+ 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
5445
+ 'Use PropTypes.checkPropTypes() to call them. ' +
5446
+ 'Read more at http://fb.me/use-check-prop-types'
5447
+ );
5448
+ err.name = 'Invariant Violation';
5449
+ throw err;
5450
+ } shim.isRequired = shim;
5451
+ function getShim() {
5452
+ return shim;
5453
+ } // Important!
5454
+ // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
5455
+ var ReactPropTypes = {
5456
+ array: shim,
5457
+ bigint: shim,
5458
+ bool: shim,
5459
+ func: shim,
5460
+ number: shim,
5461
+ object: shim,
5462
+ string: shim,
5463
+ symbol: shim,
5464
+
5465
+ any: shim,
5466
+ arrayOf: getShim,
5467
+ element: shim,
5468
+ elementType: shim,
5469
+ instanceOf: getShim,
5470
+ node: shim,
5471
+ objectOf: getShim,
5472
+ oneOf: getShim,
5473
+ oneOfType: getShim,
5474
+ shape: getShim,
5475
+ exact: getShim,
5476
+
5477
+ checkPropTypes: emptyFunctionWithReset,
5478
+ resetWarningCache: emptyFunction
5479
+ };
5480
+
5481
+ ReactPropTypes.PropTypes = ReactPropTypes;
5482
+
5483
+ return ReactPropTypes;
5484
+ };
5485
+ return factoryWithThrowingShims;
5486
+ }
5469
5487
 
5470
5488
  /**
5471
5489
  * Copyright (c) 2013-present, Facebook, Inc.
@@ -5474,13 +5492,20 @@ var factoryWithThrowingShims = function() {
5474
5492
  * LICENSE file in the root directory of this source tree.
5475
5493
  */
5476
5494
 
5477
- {
5478
- // By explicitly using `prop-types` you are opting into new production behavior.
5479
- // http://fb.me/prop-types-in-prod
5480
- propTypes$1.exports = factoryWithThrowingShims();
5495
+ var hasRequiredPropTypes;
5496
+
5497
+ function requirePropTypes () {
5498
+ if (hasRequiredPropTypes) return propTypes$1.exports;
5499
+ hasRequiredPropTypes = 1;
5500
+ {
5501
+ // By explicitly using `prop-types` you are opting into new production behavior.
5502
+ // http://fb.me/prop-types-in-prod
5503
+ propTypes$1.exports = requireFactoryWithThrowingShims()();
5504
+ }
5505
+ return propTypes$1.exports;
5481
5506
  }
5482
5507
 
5483
- var propTypesExports = propTypes$1.exports;
5508
+ var propTypesExports = requirePropTypes();
5484
5509
  const PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
5485
5510
 
5486
5511
  /******************************************************************************
@@ -30258,18 +30283,10 @@ var _fails = function (exec) {
30258
30283
  }
30259
30284
  };
30260
30285
 
30261
- var _descriptors;
30262
- var hasRequired_descriptors;
30263
-
30264
- function require_descriptors () {
30265
- if (hasRequired_descriptors) return _descriptors;
30266
- hasRequired_descriptors = 1;
30267
- // Thank's IE8 for his funny defineProperty
30268
- _descriptors = !_fails(function () {
30269
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30270
- });
30271
- return _descriptors;
30272
- }
30286
+ // Thank's IE8 for his funny defineProperty
30287
+ var _descriptors = !_fails(function () {
30288
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30289
+ });
30273
30290
 
30274
30291
  var _domCreate;
30275
30292
  var hasRequired_domCreate;
@@ -30287,7 +30304,7 @@ function require_domCreate () {
30287
30304
  return _domCreate;
30288
30305
  }
30289
30306
 
30290
- var _ie8DomDefine = !require_descriptors() && !_fails(function () {
30307
+ var _ie8DomDefine = !_descriptors && !_fails(function () {
30291
30308
  return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30292
30309
  });
30293
30310
 
@@ -30304,17 +30321,17 @@ var _toPrimitive$1 = function (it, S) {
30304
30321
  throw TypeError("Can't convert object to primitive value");
30305
30322
  };
30306
30323
 
30307
- var anObject$3 = _anObject;
30324
+ var anObject$5 = _anObject;
30308
30325
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30309
30326
  var toPrimitive$2 = _toPrimitive$1;
30310
- var dP$2 = Object.defineProperty;
30327
+ var dP$3 = Object.defineProperty;
30311
30328
 
30312
- _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30313
- anObject$3(O);
30329
+ _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30330
+ anObject$5(O);
30314
30331
  P = toPrimitive$2(P, true);
30315
- anObject$3(Attributes);
30332
+ anObject$5(Attributes);
30316
30333
  if (IE8_DOM_DEFINE$1) try {
30317
- return dP$2(O, P, Attributes);
30334
+ return dP$3(O, P, Attributes);
30318
30335
  } catch (e) { /* empty */ }
30319
30336
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30320
30337
  if ('value' in Attributes) O[P] = Attributes.value;
@@ -30330,10 +30347,10 @@ var _propertyDesc = function (bitmap, value) {
30330
30347
  };
30331
30348
  };
30332
30349
 
30333
- var dP$1 = _objectDp;
30350
+ var dP$2 = _objectDp;
30334
30351
  var createDesc$3 = _propertyDesc;
30335
- var _hide = require_descriptors() ? function (object, key, value) {
30336
- return dP$1.f(object, key, createDesc$3(1, value));
30352
+ var _hide = _descriptors ? function (object, key, value) {
30353
+ return dP$2.f(object, key, createDesc$3(1, value));
30337
30354
  } : function (object, key, value) {
30338
30355
  object[key] = value;
30339
30356
  return object;
@@ -30349,7 +30366,7 @@ var core$3 = _coreExports;
30349
30366
  var ctx$1 = _ctx;
30350
30367
  var hide$3 = _hide;
30351
30368
  var has$e = _has;
30352
- var PROTOTYPE$1 = 'prototype';
30369
+ var PROTOTYPE$2 = 'prototype';
30353
30370
 
30354
30371
  var $export$8 = function (type, name, source) {
30355
30372
  var IS_FORCED = type & $export$8.F;
@@ -30359,8 +30376,8 @@ var $export$8 = function (type, name, source) {
30359
30376
  var IS_BIND = type & $export$8.B;
30360
30377
  var IS_WRAP = type & $export$8.W;
30361
30378
  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];
30379
+ var expProto = exports[PROTOTYPE$2];
30380
+ var target = IS_GLOBAL ? global$5 : IS_STATIC ? global$5[name] : (global$5[name] || {})[PROTOTYPE$2];
30364
30381
  var key, own, out;
30365
30382
  if (IS_GLOBAL) source = name;
30366
30383
  for (key in source) {
@@ -30384,7 +30401,7 @@ var $export$8 = function (type, name, source) {
30384
30401
  } return new C(a, b, c);
30385
30402
  } return C.apply(this, arguments);
30386
30403
  };
30387
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30404
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30388
30405
  return F;
30389
30406
  // make static versions for prototype methods
30390
30407
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30413,20 +30430,12 @@ var _cof = function (it) {
30413
30430
  return toString$6.call(it).slice(8, -1);
30414
30431
  };
30415
30432
 
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
- }
30433
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30434
+ var cof$2 = _cof;
30435
+ // eslint-disable-next-line no-prototype-builtins
30436
+ var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30437
+ return cof$2(it) == 'String' ? it.split('') : Object(it);
30438
+ };
30430
30439
 
30431
30440
  // 7.2.1 RequireObjectCoercible(argument)
30432
30441
  var _defined = function (it) {
@@ -30435,7 +30444,7 @@ var _defined = function (it) {
30435
30444
  };
30436
30445
 
30437
30446
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30438
- var IObject = require_iobject();
30447
+ var IObject = _iobject;
30439
30448
  var defined$2 = _defined;
30440
30449
  var _toIobject = function (it) {
30441
30450
  return IObject(defined$2(it));
@@ -30521,14 +30530,14 @@ var _sharedKey = function (key) {
30521
30530
  var has$d = _has;
30522
30531
  var toIObject$4 = _toIobject;
30523
30532
  var arrayIndexOf = _arrayIncludes$1(false);
30524
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30533
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30525
30534
 
30526
30535
  var _objectKeysInternal = function (object, names) {
30527
30536
  var O = toIObject$4(object);
30528
30537
  var i = 0;
30529
30538
  var result = [];
30530
30539
  var key;
30531
- for (key in O) if (key != IE_PROTO$1) has$d(O, key) && result.push(key);
30540
+ for (key in O) if (key != IE_PROTO$2) has$d(O, key) && result.push(key);
30532
30541
  // Don't enum bug & hidden keys
30533
30542
  while (names.length > i) if (has$d(O, key = names[i++])) {
30534
30543
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30543,10 +30552,10 @@ var _enumBugKeys = (
30543
30552
 
30544
30553
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30545
30554
  var $keys$3 = _objectKeysInternal;
30546
- var enumBugKeys = _enumBugKeys;
30555
+ var enumBugKeys$1 = _enumBugKeys;
30547
30556
 
30548
30557
  var _objectKeys = Object.keys || function keys(O) {
30549
- return $keys$3(O, enumBugKeys);
30558
+ return $keys$3(O, enumBugKeys$1);
30550
30559
  };
30551
30560
 
30552
30561
  var _objectGops = {};
@@ -30570,12 +30579,12 @@ function require_objectAssign () {
30570
30579
  if (hasRequired_objectAssign) return _objectAssign;
30571
30580
  hasRequired_objectAssign = 1;
30572
30581
  // 19.1.2.1 Object.assign(target, source, ...)
30573
- var DESCRIPTORS = require_descriptors();
30582
+ var DESCRIPTORS = _descriptors;
30574
30583
  var getKeys = _objectKeys;
30575
30584
  var gOPS = _objectGops;
30576
30585
  var pIE = _objectPie;
30577
30586
  var toObject = _toObject;
30578
- var IObject = require_iobject();
30587
+ var IObject = _iobject;
30579
30588
  var $assign = Object.assign;
30580
30589
 
30581
30590
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30646,27 +30655,19 @@ var _iterators = {};
30646
30655
 
30647
30656
  var _redefine = _hide;
30648
30657
 
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;
30658
+ var dP$1 = _objectDp;
30659
+ var anObject$4 = _anObject;
30660
+ var getKeys$1 = _objectKeys;
30658
30661
 
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
- }
30662
+ var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30663
+ anObject$4(O);
30664
+ var keys = getKeys$1(Properties);
30665
+ var length = keys.length;
30666
+ var i = 0;
30667
+ var P;
30668
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30669
+ return O;
30670
+ };
30670
30671
 
30671
30672
  var _html;
30672
30673
  var hasRequired_html;
@@ -30679,55 +30680,47 @@ function require_html () {
30679
30680
  return _html;
30680
30681
  }
30681
30682
 
30682
- var _objectCreate;
30683
- var hasRequired_objectCreate;
30683
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30684
+ var anObject$3 = _anObject;
30685
+ var dPs = _objectDps;
30686
+ var enumBugKeys = _enumBugKeys;
30687
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30688
+ var Empty = function () { /* empty */ };
30689
+ var PROTOTYPE$1 = 'prototype';
30684
30690
 
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
- }
30691
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30692
+ var createDict = function () {
30693
+ // Thrash, waste and sodomy: IE GC bug
30694
+ var iframe = require_domCreate()('iframe');
30695
+ var i = enumBugKeys.length;
30696
+ var lt = '<';
30697
+ var gt = '>';
30698
+ var iframeDocument;
30699
+ iframe.style.display = 'none';
30700
+ require_html().appendChild(iframe);
30701
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30702
+ // createDict = iframe.contentWindow.Object;
30703
+ // html.removeChild(iframe);
30704
+ iframeDocument = iframe.contentWindow.document;
30705
+ iframeDocument.open();
30706
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30707
+ iframeDocument.close();
30708
+ createDict = iframeDocument.F;
30709
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30710
+ return createDict();
30711
+ };
30712
+
30713
+ var _objectCreate = Object.create || function create(O, Properties) {
30714
+ var result;
30715
+ if (O !== null) {
30716
+ Empty[PROTOTYPE$1] = anObject$3(O);
30717
+ result = new Empty();
30718
+ Empty[PROTOTYPE$1] = null;
30719
+ // add "__proto__" for Object.getPrototypeOf polyfill
30720
+ result[IE_PROTO$1] = O;
30721
+ } else result = createDict();
30722
+ return Properties === undefined ? result : dPs(result, Properties);
30723
+ };
30731
30724
 
30732
30725
  var _wks = {exports: {}};
30733
30726
 
@@ -30753,7 +30746,7 @@ var _setToStringTag = function (it, tag, stat) {
30753
30746
  if (it && !has$c(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30754
30747
  };
30755
30748
 
30756
- var create$4 = require_objectCreate();
30749
+ var create$4 = _objectCreate;
30757
30750
  var descriptor = _propertyDesc;
30758
30751
  var setToStringTag$2 = _setToStringTag;
30759
30752
  var IteratorPrototype = {};
@@ -31192,7 +31185,7 @@ var _default$9 = function (instance, Constructor) {
31192
31185
 
31193
31186
  var $export$3 = _export;
31194
31187
  // 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 });
31188
+ $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
31196
31189
 
31197
31190
  var $Object$2 = _coreExports.Object;
31198
31191
  var defineProperty$c = function defineProperty(it, key, desc) {
@@ -31365,7 +31358,7 @@ var has$9 = _has;
31365
31358
  var IE8_DOM_DEFINE = _ie8DomDefine;
31366
31359
  var gOPD$5 = Object.getOwnPropertyDescriptor;
31367
31360
 
31368
- _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
31361
+ _objectGopd.f = _descriptors ? gOPD$5 : function getOwnPropertyDescriptor(O, P) {
31369
31362
  O = toIObject$1(O);
31370
31363
  P = toPrimitive$1(P, true);
31371
31364
  if (IE8_DOM_DEFINE) try {
@@ -31377,7 +31370,7 @@ _objectGopd.f = require_descriptors() ? gOPD$5 : function getOwnPropertyDescript
31377
31370
  // ECMAScript 6 symbols shim
31378
31371
  var global$2 = _globalExports;
31379
31372
  var has$8 = _has;
31380
- var DESCRIPTORS = require_descriptors();
31373
+ var DESCRIPTORS = _descriptors;
31381
31374
  var $export$2 = _export;
31382
31375
  var redefine = _redefine;
31383
31376
  var META = _metaExports.KEY;
@@ -31396,7 +31389,7 @@ var toObject$1 = _toObject;
31396
31389
  var toIObject = _toIobject;
31397
31390
  var toPrimitive = _toPrimitive$1;
31398
31391
  var createDesc = _propertyDesc;
31399
- var _create$1 = require_objectCreate();
31392
+ var _create$1 = _objectCreate;
31400
31393
  var gOPNExt = _objectGopnExt;
31401
31394
  var $GOPD = _objectGopd;
31402
31395
  var $GOPS = _objectGops;
@@ -31706,7 +31699,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31706
31699
 
31707
31700
  var $export = _export;
31708
31701
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31709
- $export($export.S, 'Object', { create: require_objectCreate() });
31702
+ $export($export.S, 'Object', { create: _objectCreate });
31710
31703
 
31711
31704
  var $Object$1 = _coreExports.Object;
31712
31705
  var create$3 = function create(P, D) {
@@ -37826,7 +37819,7 @@ var reactList = {};
37826
37819
  (function (exports) {
37827
37820
  (function (global, factory) {
37828
37821
  {
37829
- factory(exports, propTypesExports, React__default$1);
37822
+ factory(exports, requirePropTypes(), React__default$1);
37830
37823
  }
37831
37824
  })(commonjsGlobal, function (_exports, _propTypes, _react) {
37832
37825
 
@@ -66450,11 +66443,11 @@ function tagOptionRender(vals) {
66450
66443
  function getSort(text, queryString) {
66451
66444
  let ret;
66452
66445
  if (text === queryString)
66453
- ret = 0;
66446
+ ret = -1;
66454
66447
  else if (text.includes(queryString))
66455
- ret = 0.9;
66448
+ ret = text.indexOf(queryString);
66456
66449
  else
66457
- ret = 1;
66450
+ ret = text.length;
66458
66451
  return ret;
66459
66452
  }
66460
66453
 
@@ -101291,7 +101284,7 @@ DraggableCore$5.default = void 0;
101291
101284
 
101292
101285
  var React$2 = _interopRequireWildcard$2(React__default$1);
101293
101286
 
101294
- var _propTypes$1 = _interopRequireDefault$1(propTypesExports);
101287
+ var _propTypes$1 = _interopRequireDefault$1(requirePropTypes());
101295
101288
 
101296
101289
  var _reactDom$1 = _interopRequireDefault$1(ReactDOM$1);
101297
101290
 
@@ -101867,7 +101860,7 @@ _defineProperty$5(DraggableCore$4, "defaultProps", {
101867
101860
 
101868
101861
  var React = _interopRequireWildcard(React__default$1);
101869
101862
 
101870
- var _propTypes = _interopRequireDefault(propTypesExports);
101863
+ var _propTypes = _interopRequireDefault(requirePropTypes());
101871
101864
 
101872
101865
  var _reactDom = _interopRequireDefault(ReactDOM$1);
101873
101866
 
@@ -153958,7 +153951,7 @@ DraggableCore$2.default = void 0;
153958
153951
 
153959
153952
  var React$1 = _interopRequireWildcard(React__default$1);
153960
153953
 
153961
- var _propTypes = _interopRequireDefault(propTypesExports);
153954
+ var _propTypes = _interopRequireDefault(requirePropTypes());
153962
153955
 
153963
153956
  var _reactDom = _interopRequireDefault(ReactDOM$1);
153964
153957
 
@@ -154520,7 +154513,7 @@ _defineProperty$2(DraggableCore$1, "defaultProps", {
154520
154513
 
154521
154514
  var React = _interopRequireWildcard(React__default$1);
154522
154515
 
154523
- var _propTypes = _interopRequireDefault(propTypesExports);
154516
+ var _propTypes = _interopRequireDefault(requirePropTypes());
154524
154517
 
154525
154518
  var _reactDom = _interopRequireDefault(ReactDOM$1);
154526
154519
 
@@ -161159,7 +161152,7 @@ function showFileDialog({ multiple = false, onSelect }) {
161159
161152
  }
161160
161153
 
161161
161154
  const name = "@teselagen/ove";
161162
- const version = "0.3.13";
161155
+ const version = "0.3.14";
161163
161156
  const main = "./src/index.js";
161164
161157
  const exports$1 = {
161165
161158
  ".": {