@teselagen/ui 0.3.12 → 0.3.14

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.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # ui
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test ui` to execute the unit tests via [Vitest](https://vitest.dev/).
@@ -7422,7 +7422,7 @@ function getPlainObjectKeys(object) {
7422
7422
  var ownKeys$3 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
7423
7423
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
7424
7424
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
7425
- function toPrimitive$3(value) {
7425
+ function toPrimitive$2(value) {
7426
7426
  return value === null ? null : typeof value === "object" ? "" + value : value;
7427
7427
  }
7428
7428
  function hasProp(target, prop) {
@@ -8351,7 +8351,7 @@ var ObservableValue = /*#__PURE__*/function (_Atom) {
8351
8351
  return this.name_ + "[" + this.value_ + "]";
8352
8352
  };
8353
8353
  _proto.valueOf = function valueOf() {
8354
- return toPrimitive$3(this.get());
8354
+ return toPrimitive$2(this.get());
8355
8355
  };
8356
8356
  _proto[_Symbol$toPrimitive] = function () {
8357
8357
  return this.valueOf();
@@ -8579,7 +8579,7 @@ var ComputedValue = /*#__PURE__*/function () {
8579
8579
  return this.name_ + "[" + this.derivation.toString() + "]";
8580
8580
  };
8581
8581
  _proto.valueOf = function valueOf() {
8582
- return toPrimitive$3(this.get());
8582
+ return toPrimitive$2(this.get());
8583
8583
  };
8584
8584
  _proto[_Symbol$toPrimitive$1] = function () {
8585
8585
  return this.valueOf();
@@ -30328,10 +30328,18 @@ var _fails = function (exec) {
30328
30328
  }
30329
30329
  };
30330
30330
 
30331
- // Thank's IE8 for his funny defineProperty
30332
- var _descriptors = !_fails(function () {
30333
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30334
- });
30331
+ var _descriptors;
30332
+ var hasRequired_descriptors;
30333
+
30334
+ function require_descriptors () {
30335
+ if (hasRequired_descriptors) return _descriptors;
30336
+ hasRequired_descriptors = 1;
30337
+ // Thank's IE8 for his funny defineProperty
30338
+ _descriptors = !_fails(function () {
30339
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30340
+ });
30341
+ return _descriptors;
30342
+ }
30335
30343
 
30336
30344
  var _domCreate;
30337
30345
  var hasRequired_domCreate;
@@ -30349,9 +30357,17 @@ function require_domCreate () {
30349
30357
  return _domCreate;
30350
30358
  }
30351
30359
 
30352
- var _ie8DomDefine = !_descriptors && !_fails(function () {
30353
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30354
- });
30360
+ var _ie8DomDefine;
30361
+ var hasRequired_ie8DomDefine;
30362
+
30363
+ function require_ie8DomDefine () {
30364
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
30365
+ hasRequired_ie8DomDefine = 1;
30366
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
30367
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30368
+ });
30369
+ return _ie8DomDefine;
30370
+ }
30355
30371
 
30356
30372
  // 7.1.1 ToPrimitive(input [, PreferredType])
30357
30373
  var isObject$d = _isObject;
@@ -30366,22 +30382,29 @@ var _toPrimitive = function (it, S) {
30366
30382
  throw TypeError("Can't convert object to primitive value");
30367
30383
  };
30368
30384
 
30369
- var anObject$3 = _anObject;
30370
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30371
- var toPrimitive$2 = _toPrimitive;
30372
- var dP$2 = Object.defineProperty;
30373
-
30374
- _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30375
- anObject$3(O);
30376
- P = toPrimitive$2(P, true);
30377
- anObject$3(Attributes);
30378
- if (IE8_DOM_DEFINE$1) try {
30379
- return dP$2(O, P, Attributes);
30380
- } catch (e) { /* empty */ }
30381
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30382
- if ('value' in Attributes) O[P] = Attributes.value;
30383
- return O;
30384
- };
30385
+ var hasRequired_objectDp;
30386
+
30387
+ function require_objectDp () {
30388
+ if (hasRequired_objectDp) return _objectDp;
30389
+ hasRequired_objectDp = 1;
30390
+ var anObject = _anObject;
30391
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
30392
+ var toPrimitive = _toPrimitive;
30393
+ var dP = Object.defineProperty;
30394
+
30395
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30396
+ anObject(O);
30397
+ P = toPrimitive(P, true);
30398
+ anObject(Attributes);
30399
+ if (IE8_DOM_DEFINE) try {
30400
+ return dP(O, P, Attributes);
30401
+ } catch (e) { /* empty */ }
30402
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30403
+ if ('value' in Attributes) O[P] = Attributes.value;
30404
+ return O;
30405
+ };
30406
+ return _objectDp;
30407
+ }
30385
30408
 
30386
30409
  var _propertyDesc = function (bitmap, value) {
30387
30410
  return {
@@ -30392,10 +30415,10 @@ var _propertyDesc = function (bitmap, value) {
30392
30415
  };
30393
30416
  };
30394
30417
 
30395
- var dP$1 = _objectDp;
30418
+ var dP$2 = require_objectDp();
30396
30419
  var createDesc$3 = _propertyDesc;
30397
- var _hide = _descriptors ? function (object, key, value) {
30398
- return dP$1.f(object, key, createDesc$3(1, value));
30420
+ var _hide = require_descriptors() ? function (object, key, value) {
30421
+ return dP$2.f(object, key, createDesc$3(1, value));
30399
30422
  } : function (object, key, value) {
30400
30423
  object[key] = value;
30401
30424
  return object;
@@ -30411,7 +30434,7 @@ var core$3 = _coreExports;
30411
30434
  var ctx$1 = _ctx;
30412
30435
  var hide$2 = _hide;
30413
30436
  var has$b = _has;
30414
- var PROTOTYPE$1 = 'prototype';
30437
+ var PROTOTYPE$2 = 'prototype';
30415
30438
 
30416
30439
  var $export$8 = function (type, name, source) {
30417
30440
  var IS_FORCED = type & $export$8.F;
@@ -30421,8 +30444,8 @@ var $export$8 = function (type, name, source) {
30421
30444
  var IS_BIND = type & $export$8.B;
30422
30445
  var IS_WRAP = type & $export$8.W;
30423
30446
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
30424
- var expProto = exports[PROTOTYPE$1];
30425
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
30447
+ var expProto = exports[PROTOTYPE$2];
30448
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
30426
30449
  var key, own, out;
30427
30450
  if (IS_GLOBAL) source = name;
30428
30451
  for (key in source) {
@@ -30446,7 +30469,7 @@ var $export$8 = function (type, name, source) {
30446
30469
  } return new C(a, b, c);
30447
30470
  } return C.apply(this, arguments);
30448
30471
  };
30449
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30472
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30450
30473
  return F;
30451
30474
  // make static versions for prototype methods
30452
30475
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30475,12 +30498,20 @@ var _cof = function (it) {
30475
30498
  return toString$6.call(it).slice(8, -1);
30476
30499
  };
30477
30500
 
30478
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30479
- var cof$2 = _cof;
30480
- // eslint-disable-next-line no-prototype-builtins
30481
- var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30482
- return cof$2(it) == 'String' ? it.split('') : Object(it);
30483
- };
30501
+ var _iobject;
30502
+ var hasRequired_iobject;
30503
+
30504
+ function require_iobject () {
30505
+ if (hasRequired_iobject) return _iobject;
30506
+ hasRequired_iobject = 1;
30507
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30508
+ var cof = _cof;
30509
+ // eslint-disable-next-line no-prototype-builtins
30510
+ _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30511
+ return cof(it) == 'String' ? it.split('') : Object(it);
30512
+ };
30513
+ return _iobject;
30514
+ }
30484
30515
 
30485
30516
  // 7.2.1 RequireObjectCoercible(argument)
30486
30517
  var _defined = function (it) {
@@ -30489,7 +30520,7 @@ var _defined = function (it) {
30489
30520
  };
30490
30521
 
30491
30522
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30492
- var IObject = _iobject;
30523
+ var IObject = require_iobject();
30493
30524
  var defined$2 = _defined;
30494
30525
  var _toIobject = function (it) {
30495
30526
  return IObject(defined$2(it));
@@ -30575,14 +30606,14 @@ var _sharedKey = function (key) {
30575
30606
  var has$a = _has;
30576
30607
  var toIObject$4 = _toIobject;
30577
30608
  var arrayIndexOf = _arrayIncludes(false);
30578
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30609
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30579
30610
 
30580
30611
  var _objectKeysInternal = function (object, names) {
30581
30612
  var O = toIObject$4(object);
30582
30613
  var i = 0;
30583
30614
  var result = [];
30584
30615
  var key;
30585
- for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
30616
+ for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
30586
30617
  // Don't enum bug & hidden keys
30587
30618
  while (names.length > i) if (has$a(O, key = names[i++])) {
30588
30619
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30597,10 +30628,10 @@ var _enumBugKeys = (
30597
30628
 
30598
30629
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30599
30630
  var $keys$3 = _objectKeysInternal;
30600
- var enumBugKeys = _enumBugKeys;
30631
+ var enumBugKeys$1 = _enumBugKeys;
30601
30632
 
30602
30633
  var _objectKeys = Object.keys || function keys(O) {
30603
- return $keys$3(O, enumBugKeys);
30634
+ return $keys$3(O, enumBugKeys$1);
30604
30635
  };
30605
30636
 
30606
30637
  var _objectGops = {};
@@ -30631,12 +30662,12 @@ function require_objectAssign () {
30631
30662
  if (hasRequired_objectAssign) return _objectAssign;
30632
30663
  hasRequired_objectAssign = 1;
30633
30664
  // 19.1.2.1 Object.assign(target, source, ...)
30634
- var DESCRIPTORS = _descriptors;
30665
+ var DESCRIPTORS = require_descriptors();
30635
30666
  var getKeys = _objectKeys;
30636
30667
  var gOPS = _objectGops;
30637
30668
  var pIE = require_objectPie();
30638
30669
  var toObject = _toObject;
30639
- var IObject = _iobject;
30670
+ var IObject = require_iobject();
30640
30671
  var $assign = Object.assign;
30641
30672
 
30642
30673
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30707,27 +30738,19 @@ var _iterators = {};
30707
30738
 
30708
30739
  var _redefine = _hide;
30709
30740
 
30710
- var _objectDps;
30711
- var hasRequired_objectDps;
30712
-
30713
- function require_objectDps () {
30714
- if (hasRequired_objectDps) return _objectDps;
30715
- hasRequired_objectDps = 1;
30716
- var dP = _objectDp;
30717
- var anObject = _anObject;
30718
- var getKeys = _objectKeys;
30741
+ var dP$1 = require_objectDp();
30742
+ var anObject$4 = _anObject;
30743
+ var getKeys$1 = _objectKeys;
30719
30744
 
30720
- _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30721
- anObject(O);
30722
- var keys = getKeys(Properties);
30723
- var length = keys.length;
30724
- var i = 0;
30725
- var P;
30726
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30727
- return O;
30728
- };
30729
- return _objectDps;
30730
- }
30745
+ var _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30746
+ anObject$4(O);
30747
+ var keys = getKeys$1(Properties);
30748
+ var length = keys.length;
30749
+ var i = 0;
30750
+ var P;
30751
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30752
+ return O;
30753
+ };
30731
30754
 
30732
30755
  var _html;
30733
30756
  var hasRequired_html;
@@ -30740,55 +30763,47 @@ function require_html () {
30740
30763
  return _html;
30741
30764
  }
30742
30765
 
30743
- var _objectCreate;
30744
- var hasRequired_objectCreate;
30745
-
30746
- function require_objectCreate () {
30747
- if (hasRequired_objectCreate) return _objectCreate;
30748
- hasRequired_objectCreate = 1;
30749
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30750
- var anObject = _anObject;
30751
- var dPs = require_objectDps();
30752
- var enumBugKeys = _enumBugKeys;
30753
- var IE_PROTO = _sharedKey('IE_PROTO');
30754
- var Empty = function () { /* empty */ };
30755
- var PROTOTYPE = 'prototype';
30756
-
30757
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30758
- var createDict = function () {
30759
- // Thrash, waste and sodomy: IE GC bug
30760
- var iframe = require_domCreate()('iframe');
30761
- var i = enumBugKeys.length;
30762
- var lt = '<';
30763
- var gt = '>';
30764
- var iframeDocument;
30765
- iframe.style.display = 'none';
30766
- require_html().appendChild(iframe);
30767
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30768
- // createDict = iframe.contentWindow.Object;
30769
- // html.removeChild(iframe);
30770
- iframeDocument = iframe.contentWindow.document;
30771
- iframeDocument.open();
30772
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30773
- iframeDocument.close();
30774
- createDict = iframeDocument.F;
30775
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30776
- return createDict();
30777
- };
30766
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30767
+ var anObject$3 = _anObject;
30768
+ var dPs = _objectDps;
30769
+ var enumBugKeys = _enumBugKeys;
30770
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30771
+ var Empty = function () { /* empty */ };
30772
+ var PROTOTYPE$1 = 'prototype';
30778
30773
 
30779
- _objectCreate = Object.create || function create(O, Properties) {
30780
- var result;
30781
- if (O !== null) {
30782
- Empty[PROTOTYPE] = anObject(O);
30783
- result = new Empty();
30784
- Empty[PROTOTYPE] = null;
30785
- // add "__proto__" for Object.getPrototypeOf polyfill
30786
- result[IE_PROTO] = O;
30787
- } else result = createDict();
30788
- return Properties === undefined ? result : dPs(result, Properties);
30789
- };
30790
- return _objectCreate;
30791
- }
30774
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30775
+ var createDict = function () {
30776
+ // Thrash, waste and sodomy: IE GC bug
30777
+ var iframe = require_domCreate()('iframe');
30778
+ var i = enumBugKeys.length;
30779
+ var lt = '<';
30780
+ var gt = '>';
30781
+ var iframeDocument;
30782
+ iframe.style.display = 'none';
30783
+ require_html().appendChild(iframe);
30784
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30785
+ // createDict = iframe.contentWindow.Object;
30786
+ // html.removeChild(iframe);
30787
+ iframeDocument = iframe.contentWindow.document;
30788
+ iframeDocument.open();
30789
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30790
+ iframeDocument.close();
30791
+ createDict = iframeDocument.F;
30792
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30793
+ return createDict();
30794
+ };
30795
+
30796
+ var _objectCreate = Object.create || function create(O, Properties) {
30797
+ var result;
30798
+ if (O !== null) {
30799
+ Empty[PROTOTYPE$1] = anObject$3(O);
30800
+ result = new Empty();
30801
+ Empty[PROTOTYPE$1] = null;
30802
+ // add "__proto__" for Object.getPrototypeOf polyfill
30803
+ result[IE_PROTO$1] = O;
30804
+ } else result = createDict();
30805
+ return Properties === undefined ? result : dPs(result, Properties);
30806
+ };
30792
30807
 
30793
30808
  var _wks = {exports: {}};
30794
30809
 
@@ -30806,7 +30821,7 @@ $exports.store = store;
30806
30821
 
30807
30822
  var _wksExports = _wks.exports;
30808
30823
 
30809
- var def = _objectDp.f;
30824
+ var def = require_objectDp().f;
30810
30825
  var has$9 = _has;
30811
30826
  var TAG$1 = _wksExports('toStringTag');
30812
30827
 
@@ -30814,7 +30829,7 @@ var _setToStringTag = function (it, tag, stat) {
30814
30829
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30815
30830
  };
30816
30831
 
30817
- var create$3 = require_objectCreate();
30832
+ var create$3 = _objectCreate;
30818
30833
  var descriptor = _propertyDesc;
30819
30834
  var setToStringTag$2 = _setToStringTag;
30820
30835
  var IteratorPrototype = {};
@@ -31120,7 +31135,7 @@ var _isArrayIter = function (it) {
31120
31135
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31121
31136
  };
31122
31137
 
31123
- var $defineProperty$1 = _objectDp;
31138
+ var $defineProperty$1 = require_objectDp();
31124
31139
  var createDesc$2 = _propertyDesc;
31125
31140
 
31126
31141
  var _createProperty = function (object, index, value) {
@@ -31253,7 +31268,7 @@ var _default$8 = function (instance, Constructor) {
31253
31268
 
31254
31269
  var $export$3 = _export;
31255
31270
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31256
- $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
31271
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
31257
31272
 
31258
31273
  var $Object$2 = _coreExports.Object;
31259
31274
  var defineProperty$9 = function defineProperty(it, key, desc) {
@@ -31301,7 +31316,7 @@ var _meta = {exports: {}};
31301
31316
  var META$1 = _uid('meta');
31302
31317
  var isObject$c = _isObject;
31303
31318
  var has$7 = _has;
31304
- var setDesc = _objectDp.f;
31319
+ var setDesc = require_objectDp().f;
31305
31320
  var id = 0;
31306
31321
  var isExtensible = Object.isExtensible || function () {
31307
31322
  return true;
@@ -31356,7 +31371,7 @@ var _metaExports = _meta.exports;
31356
31371
 
31357
31372
  var core = _coreExports;
31358
31373
  var wksExt$1 = _wksExt;
31359
- var defineProperty$7 = _objectDp.f;
31374
+ var defineProperty$7 = require_objectDp().f;
31360
31375
  var _wksDefine = function (name) {
31361
31376
  var $Symbol = core.Symbol || (core.Symbol = {} );
31362
31377
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$7($Symbol, name, { value: wksExt$1.f(name) });
@@ -31423,10 +31438,10 @@ var createDesc$1 = _propertyDesc;
31423
31438
  var toIObject$1 = _toIobject;
31424
31439
  var toPrimitive$1 = _toPrimitive;
31425
31440
  var has$6 = _has;
31426
- var IE8_DOM_DEFINE = _ie8DomDefine;
31441
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31427
31442
  var gOPD$2 = Object.getOwnPropertyDescriptor;
31428
31443
 
31429
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31444
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31430
31445
  O = toIObject$1(O);
31431
31446
  P = toPrimitive$1(P, true);
31432
31447
  if (IE8_DOM_DEFINE) try {
@@ -31438,7 +31453,7 @@ _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P)
31438
31453
  // ECMAScript 6 symbols shim
31439
31454
  var global$1 = _globalExports;
31440
31455
  var has$5 = _has;
31441
- var DESCRIPTORS = _descriptors;
31456
+ var DESCRIPTORS = require_descriptors();
31442
31457
  var $export$2 = _export;
31443
31458
  var redefine = _redefine;
31444
31459
  var META = _metaExports.KEY;
@@ -31457,11 +31472,11 @@ var toObject$1 = _toObject;
31457
31472
  var toIObject = _toIobject;
31458
31473
  var toPrimitive = _toPrimitive;
31459
31474
  var createDesc = _propertyDesc;
31460
- var _create$1 = require_objectCreate();
31475
+ var _create$1 = _objectCreate;
31461
31476
  var gOPNExt = _objectGopnExt;
31462
31477
  var $GOPD = _objectGopd;
31463
31478
  var $GOPS = _objectGops;
31464
- var $DP = _objectDp;
31479
+ var $DP = require_objectDp();
31465
31480
  var $keys$1 = _objectKeys;
31466
31481
  var gOPD$1 = $GOPD.f;
31467
31482
  var dP = $DP.f;
@@ -31767,7 +31782,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31767
31782
 
31768
31783
  var $export = _export;
31769
31784
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31770
- $export($export.S, 'Object', { create: require_objectCreate() });
31785
+ $export($export.S, 'Object', { create: _objectCreate });
31771
31786
 
31772
31787
  var $Object$1 = _coreExports.Object;
31773
31788
  var create$2 = function create(P, D) {
@@ -66511,11 +66526,11 @@ function tagOptionRender(vals) {
66511
66526
  function getSort(text, queryString) {
66512
66527
  let ret;
66513
66528
  if (text === queryString)
66514
- ret = 0;
66529
+ ret = -1;
66515
66530
  else if (text.includes(queryString))
66516
- ret = 0.9;
66531
+ ret = text.indexOf(queryString);
66517
66532
  else
66518
- ret = 1;
66533
+ ret = text.length;
66519
66534
  return ret;
66520
66535
  }
66521
66536
 
@@ -7401,7 +7401,7 @@ function getPlainObjectKeys(object) {
7401
7401
  var ownKeys$3 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
7402
7402
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
7403
7403
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
7404
- function toPrimitive$3(value) {
7404
+ function toPrimitive$2(value) {
7405
7405
  return value === null ? null : typeof value === "object" ? "" + value : value;
7406
7406
  }
7407
7407
  function hasProp(target, prop) {
@@ -8330,7 +8330,7 @@ var ObservableValue = /*#__PURE__*/function (_Atom) {
8330
8330
  return this.name_ + "[" + this.value_ + "]";
8331
8331
  };
8332
8332
  _proto.valueOf = function valueOf() {
8333
- return toPrimitive$3(this.get());
8333
+ return toPrimitive$2(this.get());
8334
8334
  };
8335
8335
  _proto[_Symbol$toPrimitive] = function () {
8336
8336
  return this.valueOf();
@@ -8558,7 +8558,7 @@ var ComputedValue = /*#__PURE__*/function () {
8558
8558
  return this.name_ + "[" + this.derivation.toString() + "]";
8559
8559
  };
8560
8560
  _proto.valueOf = function valueOf() {
8561
- return toPrimitive$3(this.get());
8561
+ return toPrimitive$2(this.get());
8562
8562
  };
8563
8563
  _proto[_Symbol$toPrimitive$1] = function () {
8564
8564
  return this.valueOf();
@@ -30307,10 +30307,18 @@ var _fails = function (exec) {
30307
30307
  }
30308
30308
  };
30309
30309
 
30310
- // Thank's IE8 for his funny defineProperty
30311
- var _descriptors = !_fails(function () {
30312
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30313
- });
30310
+ var _descriptors;
30311
+ var hasRequired_descriptors;
30312
+
30313
+ function require_descriptors () {
30314
+ if (hasRequired_descriptors) return _descriptors;
30315
+ hasRequired_descriptors = 1;
30316
+ // Thank's IE8 for his funny defineProperty
30317
+ _descriptors = !_fails(function () {
30318
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
30319
+ });
30320
+ return _descriptors;
30321
+ }
30314
30322
 
30315
30323
  var _domCreate;
30316
30324
  var hasRequired_domCreate;
@@ -30328,9 +30336,17 @@ function require_domCreate () {
30328
30336
  return _domCreate;
30329
30337
  }
30330
30338
 
30331
- var _ie8DomDefine = !_descriptors && !_fails(function () {
30332
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30333
- });
30339
+ var _ie8DomDefine;
30340
+ var hasRequired_ie8DomDefine;
30341
+
30342
+ function require_ie8DomDefine () {
30343
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
30344
+ hasRequired_ie8DomDefine = 1;
30345
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
30346
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
30347
+ });
30348
+ return _ie8DomDefine;
30349
+ }
30334
30350
 
30335
30351
  // 7.1.1 ToPrimitive(input [, PreferredType])
30336
30352
  var isObject$d = _isObject;
@@ -30345,22 +30361,29 @@ var _toPrimitive = function (it, S) {
30345
30361
  throw TypeError("Can't convert object to primitive value");
30346
30362
  };
30347
30363
 
30348
- var anObject$3 = _anObject;
30349
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30350
- var toPrimitive$2 = _toPrimitive;
30351
- var dP$2 = Object.defineProperty;
30352
-
30353
- _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30354
- anObject$3(O);
30355
- P = toPrimitive$2(P, true);
30356
- anObject$3(Attributes);
30357
- if (IE8_DOM_DEFINE$1) try {
30358
- return dP$2(O, P, Attributes);
30359
- } catch (e) { /* empty */ }
30360
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30361
- if ('value' in Attributes) O[P] = Attributes.value;
30362
- return O;
30363
- };
30364
+ var hasRequired_objectDp;
30365
+
30366
+ function require_objectDp () {
30367
+ if (hasRequired_objectDp) return _objectDp;
30368
+ hasRequired_objectDp = 1;
30369
+ var anObject = _anObject;
30370
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
30371
+ var toPrimitive = _toPrimitive;
30372
+ var dP = Object.defineProperty;
30373
+
30374
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30375
+ anObject(O);
30376
+ P = toPrimitive(P, true);
30377
+ anObject(Attributes);
30378
+ if (IE8_DOM_DEFINE) try {
30379
+ return dP(O, P, Attributes);
30380
+ } catch (e) { /* empty */ }
30381
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30382
+ if ('value' in Attributes) O[P] = Attributes.value;
30383
+ return O;
30384
+ };
30385
+ return _objectDp;
30386
+ }
30364
30387
 
30365
30388
  var _propertyDesc = function (bitmap, value) {
30366
30389
  return {
@@ -30371,10 +30394,10 @@ var _propertyDesc = function (bitmap, value) {
30371
30394
  };
30372
30395
  };
30373
30396
 
30374
- var dP$1 = _objectDp;
30397
+ var dP$2 = require_objectDp();
30375
30398
  var createDesc$3 = _propertyDesc;
30376
- var _hide = _descriptors ? function (object, key, value) {
30377
- return dP$1.f(object, key, createDesc$3(1, value));
30399
+ var _hide = require_descriptors() ? function (object, key, value) {
30400
+ return dP$2.f(object, key, createDesc$3(1, value));
30378
30401
  } : function (object, key, value) {
30379
30402
  object[key] = value;
30380
30403
  return object;
@@ -30390,7 +30413,7 @@ var core$3 = _coreExports;
30390
30413
  var ctx$1 = _ctx;
30391
30414
  var hide$2 = _hide;
30392
30415
  var has$b = _has;
30393
- var PROTOTYPE$1 = 'prototype';
30416
+ var PROTOTYPE$2 = 'prototype';
30394
30417
 
30395
30418
  var $export$8 = function (type, name, source) {
30396
30419
  var IS_FORCED = type & $export$8.F;
@@ -30400,8 +30423,8 @@ var $export$8 = function (type, name, source) {
30400
30423
  var IS_BIND = type & $export$8.B;
30401
30424
  var IS_WRAP = type & $export$8.W;
30402
30425
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
30403
- var expProto = exports[PROTOTYPE$1];
30404
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
30426
+ var expProto = exports[PROTOTYPE$2];
30427
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
30405
30428
  var key, own, out;
30406
30429
  if (IS_GLOBAL) source = name;
30407
30430
  for (key in source) {
@@ -30425,7 +30448,7 @@ var $export$8 = function (type, name, source) {
30425
30448
  } return new C(a, b, c);
30426
30449
  } return C.apply(this, arguments);
30427
30450
  };
30428
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30451
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30429
30452
  return F;
30430
30453
  // make static versions for prototype methods
30431
30454
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30454,12 +30477,20 @@ var _cof = function (it) {
30454
30477
  return toString$6.call(it).slice(8, -1);
30455
30478
  };
30456
30479
 
30457
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30458
- var cof$2 = _cof;
30459
- // eslint-disable-next-line no-prototype-builtins
30460
- var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30461
- return cof$2(it) == 'String' ? it.split('') : Object(it);
30462
- };
30480
+ var _iobject;
30481
+ var hasRequired_iobject;
30482
+
30483
+ function require_iobject () {
30484
+ if (hasRequired_iobject) return _iobject;
30485
+ hasRequired_iobject = 1;
30486
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30487
+ var cof = _cof;
30488
+ // eslint-disable-next-line no-prototype-builtins
30489
+ _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30490
+ return cof(it) == 'String' ? it.split('') : Object(it);
30491
+ };
30492
+ return _iobject;
30493
+ }
30463
30494
 
30464
30495
  // 7.2.1 RequireObjectCoercible(argument)
30465
30496
  var _defined = function (it) {
@@ -30468,7 +30499,7 @@ var _defined = function (it) {
30468
30499
  };
30469
30500
 
30470
30501
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30471
- var IObject = _iobject;
30502
+ var IObject = require_iobject();
30472
30503
  var defined$2 = _defined;
30473
30504
  var _toIobject = function (it) {
30474
30505
  return IObject(defined$2(it));
@@ -30554,14 +30585,14 @@ var _sharedKey = function (key) {
30554
30585
  var has$a = _has;
30555
30586
  var toIObject$4 = _toIobject;
30556
30587
  var arrayIndexOf = _arrayIncludes(false);
30557
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30588
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30558
30589
 
30559
30590
  var _objectKeysInternal = function (object, names) {
30560
30591
  var O = toIObject$4(object);
30561
30592
  var i = 0;
30562
30593
  var result = [];
30563
30594
  var key;
30564
- for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
30595
+ for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
30565
30596
  // Don't enum bug & hidden keys
30566
30597
  while (names.length > i) if (has$a(O, key = names[i++])) {
30567
30598
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30576,10 +30607,10 @@ var _enumBugKeys = (
30576
30607
 
30577
30608
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30578
30609
  var $keys$3 = _objectKeysInternal;
30579
- var enumBugKeys = _enumBugKeys;
30610
+ var enumBugKeys$1 = _enumBugKeys;
30580
30611
 
30581
30612
  var _objectKeys = Object.keys || function keys(O) {
30582
- return $keys$3(O, enumBugKeys);
30613
+ return $keys$3(O, enumBugKeys$1);
30583
30614
  };
30584
30615
 
30585
30616
  var _objectGops = {};
@@ -30610,12 +30641,12 @@ function require_objectAssign () {
30610
30641
  if (hasRequired_objectAssign) return _objectAssign;
30611
30642
  hasRequired_objectAssign = 1;
30612
30643
  // 19.1.2.1 Object.assign(target, source, ...)
30613
- var DESCRIPTORS = _descriptors;
30644
+ var DESCRIPTORS = require_descriptors();
30614
30645
  var getKeys = _objectKeys;
30615
30646
  var gOPS = _objectGops;
30616
30647
  var pIE = require_objectPie();
30617
30648
  var toObject = _toObject;
30618
- var IObject = _iobject;
30649
+ var IObject = require_iobject();
30619
30650
  var $assign = Object.assign;
30620
30651
 
30621
30652
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30686,27 +30717,19 @@ var _iterators = {};
30686
30717
 
30687
30718
  var _redefine = _hide;
30688
30719
 
30689
- var _objectDps;
30690
- var hasRequired_objectDps;
30691
-
30692
- function require_objectDps () {
30693
- if (hasRequired_objectDps) return _objectDps;
30694
- hasRequired_objectDps = 1;
30695
- var dP = _objectDp;
30696
- var anObject = _anObject;
30697
- var getKeys = _objectKeys;
30720
+ var dP$1 = require_objectDp();
30721
+ var anObject$4 = _anObject;
30722
+ var getKeys$1 = _objectKeys;
30698
30723
 
30699
- _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30700
- anObject(O);
30701
- var keys = getKeys(Properties);
30702
- var length = keys.length;
30703
- var i = 0;
30704
- var P;
30705
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30706
- return O;
30707
- };
30708
- return _objectDps;
30709
- }
30724
+ var _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
30725
+ anObject$4(O);
30726
+ var keys = getKeys$1(Properties);
30727
+ var length = keys.length;
30728
+ var i = 0;
30729
+ var P;
30730
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30731
+ return O;
30732
+ };
30710
30733
 
30711
30734
  var _html;
30712
30735
  var hasRequired_html;
@@ -30719,55 +30742,47 @@ function require_html () {
30719
30742
  return _html;
30720
30743
  }
30721
30744
 
30722
- var _objectCreate;
30723
- var hasRequired_objectCreate;
30724
-
30725
- function require_objectCreate () {
30726
- if (hasRequired_objectCreate) return _objectCreate;
30727
- hasRequired_objectCreate = 1;
30728
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30729
- var anObject = _anObject;
30730
- var dPs = require_objectDps();
30731
- var enumBugKeys = _enumBugKeys;
30732
- var IE_PROTO = _sharedKey('IE_PROTO');
30733
- var Empty = function () { /* empty */ };
30734
- var PROTOTYPE = 'prototype';
30735
-
30736
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30737
- var createDict = function () {
30738
- // Thrash, waste and sodomy: IE GC bug
30739
- var iframe = require_domCreate()('iframe');
30740
- var i = enumBugKeys.length;
30741
- var lt = '<';
30742
- var gt = '>';
30743
- var iframeDocument;
30744
- iframe.style.display = 'none';
30745
- require_html().appendChild(iframe);
30746
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30747
- // createDict = iframe.contentWindow.Object;
30748
- // html.removeChild(iframe);
30749
- iframeDocument = iframe.contentWindow.document;
30750
- iframeDocument.open();
30751
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30752
- iframeDocument.close();
30753
- createDict = iframeDocument.F;
30754
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30755
- return createDict();
30756
- };
30745
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30746
+ var anObject$3 = _anObject;
30747
+ var dPs = _objectDps;
30748
+ var enumBugKeys = _enumBugKeys;
30749
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30750
+ var Empty = function () { /* empty */ };
30751
+ var PROTOTYPE$1 = 'prototype';
30757
30752
 
30758
- _objectCreate = Object.create || function create(O, Properties) {
30759
- var result;
30760
- if (O !== null) {
30761
- Empty[PROTOTYPE] = anObject(O);
30762
- result = new Empty();
30763
- Empty[PROTOTYPE] = null;
30764
- // add "__proto__" for Object.getPrototypeOf polyfill
30765
- result[IE_PROTO] = O;
30766
- } else result = createDict();
30767
- return Properties === undefined ? result : dPs(result, Properties);
30768
- };
30769
- return _objectCreate;
30770
- }
30753
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30754
+ var createDict = function () {
30755
+ // Thrash, waste and sodomy: IE GC bug
30756
+ var iframe = require_domCreate()('iframe');
30757
+ var i = enumBugKeys.length;
30758
+ var lt = '<';
30759
+ var gt = '>';
30760
+ var iframeDocument;
30761
+ iframe.style.display = 'none';
30762
+ require_html().appendChild(iframe);
30763
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30764
+ // createDict = iframe.contentWindow.Object;
30765
+ // html.removeChild(iframe);
30766
+ iframeDocument = iframe.contentWindow.document;
30767
+ iframeDocument.open();
30768
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30769
+ iframeDocument.close();
30770
+ createDict = iframeDocument.F;
30771
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30772
+ return createDict();
30773
+ };
30774
+
30775
+ var _objectCreate = Object.create || function create(O, Properties) {
30776
+ var result;
30777
+ if (O !== null) {
30778
+ Empty[PROTOTYPE$1] = anObject$3(O);
30779
+ result = new Empty();
30780
+ Empty[PROTOTYPE$1] = null;
30781
+ // add "__proto__" for Object.getPrototypeOf polyfill
30782
+ result[IE_PROTO$1] = O;
30783
+ } else result = createDict();
30784
+ return Properties === undefined ? result : dPs(result, Properties);
30785
+ };
30771
30786
 
30772
30787
  var _wks = {exports: {}};
30773
30788
 
@@ -30785,7 +30800,7 @@ $exports.store = store;
30785
30800
 
30786
30801
  var _wksExports = _wks.exports;
30787
30802
 
30788
- var def = _objectDp.f;
30803
+ var def = require_objectDp().f;
30789
30804
  var has$9 = _has;
30790
30805
  var TAG$1 = _wksExports('toStringTag');
30791
30806
 
@@ -30793,7 +30808,7 @@ var _setToStringTag = function (it, tag, stat) {
30793
30808
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30794
30809
  };
30795
30810
 
30796
- var create$3 = require_objectCreate();
30811
+ var create$3 = _objectCreate;
30797
30812
  var descriptor = _propertyDesc;
30798
30813
  var setToStringTag$2 = _setToStringTag;
30799
30814
  var IteratorPrototype = {};
@@ -31099,7 +31114,7 @@ var _isArrayIter = function (it) {
31099
31114
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31100
31115
  };
31101
31116
 
31102
- var $defineProperty$1 = _objectDp;
31117
+ var $defineProperty$1 = require_objectDp();
31103
31118
  var createDesc$2 = _propertyDesc;
31104
31119
 
31105
31120
  var _createProperty = function (object, index, value) {
@@ -31232,7 +31247,7 @@ var _default$8 = function (instance, Constructor) {
31232
31247
 
31233
31248
  var $export$3 = _export;
31234
31249
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31235
- $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
31250
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
31236
31251
 
31237
31252
  var $Object$2 = _coreExports.Object;
31238
31253
  var defineProperty$9 = function defineProperty(it, key, desc) {
@@ -31280,7 +31295,7 @@ var _meta = {exports: {}};
31280
31295
  var META$1 = _uid('meta');
31281
31296
  var isObject$c = _isObject;
31282
31297
  var has$7 = _has;
31283
- var setDesc = _objectDp.f;
31298
+ var setDesc = require_objectDp().f;
31284
31299
  var id = 0;
31285
31300
  var isExtensible = Object.isExtensible || function () {
31286
31301
  return true;
@@ -31335,7 +31350,7 @@ var _metaExports = _meta.exports;
31335
31350
 
31336
31351
  var core = _coreExports;
31337
31352
  var wksExt$1 = _wksExt;
31338
- var defineProperty$7 = _objectDp.f;
31353
+ var defineProperty$7 = require_objectDp().f;
31339
31354
  var _wksDefine = function (name) {
31340
31355
  var $Symbol = core.Symbol || (core.Symbol = {} );
31341
31356
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$7($Symbol, name, { value: wksExt$1.f(name) });
@@ -31402,10 +31417,10 @@ var createDesc$1 = _propertyDesc;
31402
31417
  var toIObject$1 = _toIobject;
31403
31418
  var toPrimitive$1 = _toPrimitive;
31404
31419
  var has$6 = _has;
31405
- var IE8_DOM_DEFINE = _ie8DomDefine;
31420
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31406
31421
  var gOPD$2 = Object.getOwnPropertyDescriptor;
31407
31422
 
31408
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31423
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31409
31424
  O = toIObject$1(O);
31410
31425
  P = toPrimitive$1(P, true);
31411
31426
  if (IE8_DOM_DEFINE) try {
@@ -31417,7 +31432,7 @@ _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P)
31417
31432
  // ECMAScript 6 symbols shim
31418
31433
  var global$1 = _globalExports;
31419
31434
  var has$5 = _has;
31420
- var DESCRIPTORS = _descriptors;
31435
+ var DESCRIPTORS = require_descriptors();
31421
31436
  var $export$2 = _export;
31422
31437
  var redefine = _redefine;
31423
31438
  var META = _metaExports.KEY;
@@ -31436,11 +31451,11 @@ var toObject$1 = _toObject;
31436
31451
  var toIObject = _toIobject;
31437
31452
  var toPrimitive = _toPrimitive;
31438
31453
  var createDesc = _propertyDesc;
31439
- var _create$1 = require_objectCreate();
31454
+ var _create$1 = _objectCreate;
31440
31455
  var gOPNExt = _objectGopnExt;
31441
31456
  var $GOPD = _objectGopd;
31442
31457
  var $GOPS = _objectGops;
31443
- var $DP = _objectDp;
31458
+ var $DP = require_objectDp();
31444
31459
  var $keys$1 = _objectKeys;
31445
31460
  var gOPD$1 = $GOPD.f;
31446
31461
  var dP = $DP.f;
@@ -31746,7 +31761,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31746
31761
 
31747
31762
  var $export = _export;
31748
31763
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31749
- $export($export.S, 'Object', { create: require_objectCreate() });
31764
+ $export($export.S, 'Object', { create: _objectCreate });
31750
31765
 
31751
31766
  var $Object$1 = _coreExports.Object;
31752
31767
  var create$2 = function create(P, D) {
@@ -66490,11 +66505,11 @@ function tagOptionRender(vals) {
66490
66505
  function getSort(text, queryString) {
66491
66506
  let ret;
66492
66507
  if (text === queryString)
66493
- ret = 0;
66508
+ ret = -1;
66494
66509
  else if (text.includes(queryString))
66495
- ret = 0.9;
66510
+ ret = text.indexOf(queryString);
66496
66511
  else
66497
- ret = 1;
66512
+ ret = text.length;
66498
66513
  return ret;
66499
66514
  }
66500
66515
 
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.3.12",
3
+ "version": "0.3.14",
4
4
  "main": "./src/index.js",
5
+ "exports": {
6
+ ".": {
7
+ "import": "./index.es.js",
8
+ "require": "./index.cjs.js"
9
+ },
10
+ "./style.css": "./style.css"
11
+ },
5
12
  "dependencies": {
6
13
  "@teselagen/file-utils": "0.3.9",
7
- "@teselagen/bounce-loader": "0.3.7",
14
+ "@teselagen/bounce-loader": "0.3.8",
8
15
  "@blueprintjs/core": "3.52.0",
9
16
  "@blueprintjs/datetime": "3.23.19",
10
17
  "@blueprintjs/icons": "3.33.0",
@@ -287,5 +287,5 @@ export default compose(
287
287
  // "reduxFormExpandedEntityIdMap"
288
288
  // ]
289
289
  // }),
290
- branch(props => !props.alwaysRerender, pureNoFunc),
290
+ branch(props => !props.alwaysRerender, pureNoFunc)
291
291
  );
@@ -458,8 +458,8 @@ function tagOptionRender(vals) {
458
458
 
459
459
  function getSort(text, queryString) {
460
460
  let ret;
461
- if (text === queryString) ret = 0;
462
- else if (text.includes(queryString)) ret = 0.9;
463
- else ret = 1;
461
+ if (text === queryString) ret = -1;
462
+ else if (text.includes(queryString)) ret = text.indexOf(queryString);
463
+ else ret = text.length;
464
464
  return ret;
465
465
  }
@@ -3,9 +3,7 @@ import { reduxForm, change, formValueSelector, destroy } from "redux-form";
3
3
  import { Callout, Icon, Intent, Tab, Tabs } from "@blueprintjs/core";
4
4
  import immer from "immer";
5
5
  import { observer } from "mobx-react";
6
-
7
6
  import "./UploadCsvWizard.css";
8
-
9
7
  import { forEach } from "lodash";
10
8
  import { compose } from "recompose";
11
9
  import SimpleStepViz from "./SimpleStepViz";