@teselagen/ui 0.3.15 → 0.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.cjs.js +78 -102
  2. package/index.es.js +78 -102
  3. package/package.json +2 -2
package/index.cjs.js CHANGED
@@ -30366,17 +30366,17 @@ var _toPrimitive = function (it, S) {
30366
30366
  throw TypeError("Can't convert object to primitive value");
30367
30367
  };
30368
30368
 
30369
- var anObject$3 = _anObject;
30369
+ var anObject$5 = _anObject;
30370
30370
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30371
30371
  var toPrimitive$2 = _toPrimitive;
30372
- var dP$2 = Object.defineProperty;
30372
+ var dP$3 = Object.defineProperty;
30373
30373
 
30374
30374
  _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30375
- anObject$3(O);
30375
+ anObject$5(O);
30376
30376
  P = toPrimitive$2(P, true);
30377
- anObject$3(Attributes);
30377
+ anObject$5(Attributes);
30378
30378
  if (IE8_DOM_DEFINE$1) try {
30379
- return dP$2(O, P, Attributes);
30379
+ return dP$3(O, P, Attributes);
30380
30380
  } catch (e) { /* empty */ }
30381
30381
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30382
30382
  if ('value' in Attributes) O[P] = Attributes.value;
@@ -30392,10 +30392,10 @@ var _propertyDesc = function (bitmap, value) {
30392
30392
  };
30393
30393
  };
30394
30394
 
30395
- var dP$1 = _objectDp;
30395
+ var dP$2 = _objectDp;
30396
30396
  var createDesc$3 = _propertyDesc;
30397
30397
  var _hide = _descriptors ? function (object, key, value) {
30398
- return dP$1.f(object, key, createDesc$3(1, value));
30398
+ return dP$2.f(object, key, createDesc$3(1, value));
30399
30399
  } : function (object, key, value) {
30400
30400
  object[key] = value;
30401
30401
  return object;
@@ -30411,7 +30411,7 @@ var core$3 = _coreExports;
30411
30411
  var ctx$1 = _ctx;
30412
30412
  var hide$2 = _hide;
30413
30413
  var has$b = _has;
30414
- var PROTOTYPE$1 = 'prototype';
30414
+ var PROTOTYPE$2 = 'prototype';
30415
30415
 
30416
30416
  var $export$8 = function (type, name, source) {
30417
30417
  var IS_FORCED = type & $export$8.F;
@@ -30421,8 +30421,8 @@ var $export$8 = function (type, name, source) {
30421
30421
  var IS_BIND = type & $export$8.B;
30422
30422
  var IS_WRAP = type & $export$8.W;
30423
30423
  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];
30424
+ var expProto = exports[PROTOTYPE$2];
30425
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
30426
30426
  var key, own, out;
30427
30427
  if (IS_GLOBAL) source = name;
30428
30428
  for (key in source) {
@@ -30446,7 +30446,7 @@ var $export$8 = function (type, name, source) {
30446
30446
  } return new C(a, b, c);
30447
30447
  } return C.apply(this, arguments);
30448
30448
  };
30449
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30449
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30450
30450
  return F;
30451
30451
  // make static versions for prototype methods
30452
30452
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30475,20 +30475,12 @@ var _cof = function (it) {
30475
30475
  return toString$6.call(it).slice(8, -1);
30476
30476
  };
30477
30477
 
30478
- var _iobject;
30479
- var hasRequired_iobject;
30480
-
30481
- function require_iobject () {
30482
- if (hasRequired_iobject) return _iobject;
30483
- hasRequired_iobject = 1;
30484
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30485
- var cof = _cof;
30486
- // eslint-disable-next-line no-prototype-builtins
30487
- _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30488
- return cof(it) == 'String' ? it.split('') : Object(it);
30489
- };
30490
- return _iobject;
30491
- }
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
+ };
30492
30484
 
30493
30485
  // 7.2.1 RequireObjectCoercible(argument)
30494
30486
  var _defined = function (it) {
@@ -30497,7 +30489,7 @@ var _defined = function (it) {
30497
30489
  };
30498
30490
 
30499
30491
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30500
- var IObject = require_iobject();
30492
+ var IObject = _iobject;
30501
30493
  var defined$2 = _defined;
30502
30494
  var _toIobject = function (it) {
30503
30495
  return IObject(defined$2(it));
@@ -30583,14 +30575,14 @@ var _sharedKey = function (key) {
30583
30575
  var has$a = _has;
30584
30576
  var toIObject$4 = _toIobject;
30585
30577
  var arrayIndexOf = _arrayIncludes(false);
30586
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30578
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30587
30579
 
30588
30580
  var _objectKeysInternal = function (object, names) {
30589
30581
  var O = toIObject$4(object);
30590
30582
  var i = 0;
30591
30583
  var result = [];
30592
30584
  var key;
30593
- for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
30585
+ for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
30594
30586
  // Don't enum bug & hidden keys
30595
30587
  while (names.length > i) if (has$a(O, key = names[i++])) {
30596
30588
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30605,10 +30597,10 @@ var _enumBugKeys = (
30605
30597
 
30606
30598
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30607
30599
  var $keys$3 = _objectKeysInternal;
30608
- var enumBugKeys = _enumBugKeys;
30600
+ var enumBugKeys$1 = _enumBugKeys;
30609
30601
 
30610
30602
  var _objectKeys = Object.keys || function keys(O) {
30611
- return $keys$3(O, enumBugKeys);
30603
+ return $keys$3(O, enumBugKeys$1);
30612
30604
  };
30613
30605
 
30614
30606
  var _objectGops = {};
@@ -30644,7 +30636,7 @@ function require_objectAssign () {
30644
30636
  var gOPS = _objectGops;
30645
30637
  var pIE = require_objectPie();
30646
30638
  var toObject = _toObject;
30647
- var IObject = require_iobject();
30639
+ var IObject = _iobject;
30648
30640
  var $assign = Object.assign;
30649
30641
 
30650
30642
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30715,27 +30707,19 @@ var _iterators = {};
30715
30707
 
30716
30708
  var _redefine = _hide;
30717
30709
 
30718
- var _objectDps;
30719
- var hasRequired_objectDps;
30720
-
30721
- function require_objectDps () {
30722
- if (hasRequired_objectDps) return _objectDps;
30723
- hasRequired_objectDps = 1;
30724
- var dP = _objectDp;
30725
- var anObject = _anObject;
30726
- var getKeys = _objectKeys;
30710
+ var dP$1 = _objectDp;
30711
+ var anObject$4 = _anObject;
30712
+ var getKeys$1 = _objectKeys;
30727
30713
 
30728
- _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30729
- anObject(O);
30730
- var keys = getKeys(Properties);
30731
- var length = keys.length;
30732
- var i = 0;
30733
- var P;
30734
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30735
- return O;
30736
- };
30737
- return _objectDps;
30738
- }
30714
+ var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30715
+ anObject$4(O);
30716
+ var keys = getKeys$1(Properties);
30717
+ var length = keys.length;
30718
+ var i = 0;
30719
+ var P;
30720
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30721
+ return O;
30722
+ };
30739
30723
 
30740
30724
  var _html;
30741
30725
  var hasRequired_html;
@@ -30748,55 +30732,47 @@ function require_html () {
30748
30732
  return _html;
30749
30733
  }
30750
30734
 
30751
- var _objectCreate;
30752
- var hasRequired_objectCreate;
30753
-
30754
- function require_objectCreate () {
30755
- if (hasRequired_objectCreate) return _objectCreate;
30756
- hasRequired_objectCreate = 1;
30757
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30758
- var anObject = _anObject;
30759
- var dPs = require_objectDps();
30760
- var enumBugKeys = _enumBugKeys;
30761
- var IE_PROTO = _sharedKey('IE_PROTO');
30762
- var Empty = function () { /* empty */ };
30763
- var PROTOTYPE = 'prototype';
30764
-
30765
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30766
- var createDict = function () {
30767
- // Thrash, waste and sodomy: IE GC bug
30768
- var iframe = require_domCreate()('iframe');
30769
- var i = enumBugKeys.length;
30770
- var lt = '<';
30771
- var gt = '>';
30772
- var iframeDocument;
30773
- iframe.style.display = 'none';
30774
- require_html().appendChild(iframe);
30775
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30776
- // createDict = iframe.contentWindow.Object;
30777
- // html.removeChild(iframe);
30778
- iframeDocument = iframe.contentWindow.document;
30779
- iframeDocument.open();
30780
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30781
- iframeDocument.close();
30782
- createDict = iframeDocument.F;
30783
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30784
- return createDict();
30785
- };
30735
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30736
+ var anObject$3 = _anObject;
30737
+ var dPs = _objectDps;
30738
+ var enumBugKeys = _enumBugKeys;
30739
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30740
+ var Empty = function () { /* empty */ };
30741
+ var PROTOTYPE$1 = 'prototype';
30786
30742
 
30787
- _objectCreate = Object.create || function create(O, Properties) {
30788
- var result;
30789
- if (O !== null) {
30790
- Empty[PROTOTYPE] = anObject(O);
30791
- result = new Empty();
30792
- Empty[PROTOTYPE] = null;
30793
- // add "__proto__" for Object.getPrototypeOf polyfill
30794
- result[IE_PROTO] = O;
30795
- } else result = createDict();
30796
- return Properties === undefined ? result : dPs(result, Properties);
30797
- };
30798
- return _objectCreate;
30799
- }
30743
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30744
+ var createDict = function () {
30745
+ // Thrash, waste and sodomy: IE GC bug
30746
+ var iframe = require_domCreate()('iframe');
30747
+ var i = enumBugKeys.length;
30748
+ var lt = '<';
30749
+ var gt = '>';
30750
+ var iframeDocument;
30751
+ iframe.style.display = 'none';
30752
+ require_html().appendChild(iframe);
30753
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30754
+ // createDict = iframe.contentWindow.Object;
30755
+ // html.removeChild(iframe);
30756
+ iframeDocument = iframe.contentWindow.document;
30757
+ iframeDocument.open();
30758
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30759
+ iframeDocument.close();
30760
+ createDict = iframeDocument.F;
30761
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30762
+ return createDict();
30763
+ };
30764
+
30765
+ var _objectCreate = Object.create || function create(O, Properties) {
30766
+ var result;
30767
+ if (O !== null) {
30768
+ Empty[PROTOTYPE$1] = anObject$3(O);
30769
+ result = new Empty();
30770
+ Empty[PROTOTYPE$1] = null;
30771
+ // add "__proto__" for Object.getPrototypeOf polyfill
30772
+ result[IE_PROTO$1] = O;
30773
+ } else result = createDict();
30774
+ return Properties === undefined ? result : dPs(result, Properties);
30775
+ };
30800
30776
 
30801
30777
  var _wks = {exports: {}};
30802
30778
 
@@ -30822,7 +30798,7 @@ var _setToStringTag = function (it, tag, stat) {
30822
30798
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30823
30799
  };
30824
30800
 
30825
- var create$3 = require_objectCreate();
30801
+ var create$3 = _objectCreate;
30826
30802
  var descriptor = _propertyDesc;
30827
30803
  var setToStringTag$2 = _setToStringTag;
30828
30804
  var IteratorPrototype = {};
@@ -31465,7 +31441,7 @@ var toObject$1 = _toObject;
31465
31441
  var toIObject = _toIobject;
31466
31442
  var toPrimitive = _toPrimitive;
31467
31443
  var createDesc = _propertyDesc;
31468
- var _create$1 = require_objectCreate();
31444
+ var _create$1 = _objectCreate;
31469
31445
  var gOPNExt = _objectGopnExt;
31470
31446
  var $GOPD = _objectGopd;
31471
31447
  var $GOPS = _objectGops;
@@ -31775,7 +31751,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31775
31751
 
31776
31752
  var $export = _export;
31777
31753
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31778
- $export($export.S, 'Object', { create: require_objectCreate() });
31754
+ $export($export.S, 'Object', { create: _objectCreate });
31779
31755
 
31780
31756
  var $Object$1 = _coreExports.Object;
31781
31757
  var create$2 = function create(P, D) {
package/index.es.js CHANGED
@@ -30345,17 +30345,17 @@ var _toPrimitive = function (it, S) {
30345
30345
  throw TypeError("Can't convert object to primitive value");
30346
30346
  };
30347
30347
 
30348
- var anObject$3 = _anObject;
30348
+ var anObject$5 = _anObject;
30349
30349
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
30350
30350
  var toPrimitive$2 = _toPrimitive;
30351
- var dP$2 = Object.defineProperty;
30351
+ var dP$3 = Object.defineProperty;
30352
30352
 
30353
30353
  _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
30354
- anObject$3(O);
30354
+ anObject$5(O);
30355
30355
  P = toPrimitive$2(P, true);
30356
- anObject$3(Attributes);
30356
+ anObject$5(Attributes);
30357
30357
  if (IE8_DOM_DEFINE$1) try {
30358
- return dP$2(O, P, Attributes);
30358
+ return dP$3(O, P, Attributes);
30359
30359
  } catch (e) { /* empty */ }
30360
30360
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
30361
30361
  if ('value' in Attributes) O[P] = Attributes.value;
@@ -30371,10 +30371,10 @@ var _propertyDesc = function (bitmap, value) {
30371
30371
  };
30372
30372
  };
30373
30373
 
30374
- var dP$1 = _objectDp;
30374
+ var dP$2 = _objectDp;
30375
30375
  var createDesc$3 = _propertyDesc;
30376
30376
  var _hide = _descriptors ? function (object, key, value) {
30377
- return dP$1.f(object, key, createDesc$3(1, value));
30377
+ return dP$2.f(object, key, createDesc$3(1, value));
30378
30378
  } : function (object, key, value) {
30379
30379
  object[key] = value;
30380
30380
  return object;
@@ -30390,7 +30390,7 @@ var core$3 = _coreExports;
30390
30390
  var ctx$1 = _ctx;
30391
30391
  var hide$2 = _hide;
30392
30392
  var has$b = _has;
30393
- var PROTOTYPE$1 = 'prototype';
30393
+ var PROTOTYPE$2 = 'prototype';
30394
30394
 
30395
30395
  var $export$8 = function (type, name, source) {
30396
30396
  var IS_FORCED = type & $export$8.F;
@@ -30400,8 +30400,8 @@ var $export$8 = function (type, name, source) {
30400
30400
  var IS_BIND = type & $export$8.B;
30401
30401
  var IS_WRAP = type & $export$8.W;
30402
30402
  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];
30403
+ var expProto = exports[PROTOTYPE$2];
30404
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
30405
30405
  var key, own, out;
30406
30406
  if (IS_GLOBAL) source = name;
30407
30407
  for (key in source) {
@@ -30425,7 +30425,7 @@ var $export$8 = function (type, name, source) {
30425
30425
  } return new C(a, b, c);
30426
30426
  } return C.apply(this, arguments);
30427
30427
  };
30428
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
30428
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
30429
30429
  return F;
30430
30430
  // make static versions for prototype methods
30431
30431
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -30454,20 +30454,12 @@ var _cof = function (it) {
30454
30454
  return toString$6.call(it).slice(8, -1);
30455
30455
  };
30456
30456
 
30457
- var _iobject;
30458
- var hasRequired_iobject;
30459
-
30460
- function require_iobject () {
30461
- if (hasRequired_iobject) return _iobject;
30462
- hasRequired_iobject = 1;
30463
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
30464
- var cof = _cof;
30465
- // eslint-disable-next-line no-prototype-builtins
30466
- _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
30467
- return cof(it) == 'String' ? it.split('') : Object(it);
30468
- };
30469
- return _iobject;
30470
- }
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
+ };
30471
30463
 
30472
30464
  // 7.2.1 RequireObjectCoercible(argument)
30473
30465
  var _defined = function (it) {
@@ -30476,7 +30468,7 @@ var _defined = function (it) {
30476
30468
  };
30477
30469
 
30478
30470
  // to indexed object, toObject with fallback for non-array-like ES3 strings
30479
- var IObject = require_iobject();
30471
+ var IObject = _iobject;
30480
30472
  var defined$2 = _defined;
30481
30473
  var _toIobject = function (it) {
30482
30474
  return IObject(defined$2(it));
@@ -30562,14 +30554,14 @@ var _sharedKey = function (key) {
30562
30554
  var has$a = _has;
30563
30555
  var toIObject$4 = _toIobject;
30564
30556
  var arrayIndexOf = _arrayIncludes(false);
30565
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30557
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30566
30558
 
30567
30559
  var _objectKeysInternal = function (object, names) {
30568
30560
  var O = toIObject$4(object);
30569
30561
  var i = 0;
30570
30562
  var result = [];
30571
30563
  var key;
30572
- for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
30564
+ for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
30573
30565
  // Don't enum bug & hidden keys
30574
30566
  while (names.length > i) if (has$a(O, key = names[i++])) {
30575
30567
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30584,10 +30576,10 @@ var _enumBugKeys = (
30584
30576
 
30585
30577
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30586
30578
  var $keys$3 = _objectKeysInternal;
30587
- var enumBugKeys = _enumBugKeys;
30579
+ var enumBugKeys$1 = _enumBugKeys;
30588
30580
 
30589
30581
  var _objectKeys = Object.keys || function keys(O) {
30590
- return $keys$3(O, enumBugKeys);
30582
+ return $keys$3(O, enumBugKeys$1);
30591
30583
  };
30592
30584
 
30593
30585
  var _objectGops = {};
@@ -30623,7 +30615,7 @@ function require_objectAssign () {
30623
30615
  var gOPS = _objectGops;
30624
30616
  var pIE = require_objectPie();
30625
30617
  var toObject = _toObject;
30626
- var IObject = require_iobject();
30618
+ var IObject = _iobject;
30627
30619
  var $assign = Object.assign;
30628
30620
 
30629
30621
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -30694,27 +30686,19 @@ var _iterators = {};
30694
30686
 
30695
30687
  var _redefine = _hide;
30696
30688
 
30697
- var _objectDps;
30698
- var hasRequired_objectDps;
30699
-
30700
- function require_objectDps () {
30701
- if (hasRequired_objectDps) return _objectDps;
30702
- hasRequired_objectDps = 1;
30703
- var dP = _objectDp;
30704
- var anObject = _anObject;
30705
- var getKeys = _objectKeys;
30689
+ var dP$1 = _objectDp;
30690
+ var anObject$4 = _anObject;
30691
+ var getKeys$1 = _objectKeys;
30706
30692
 
30707
- _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30708
- anObject(O);
30709
- var keys = getKeys(Properties);
30710
- var length = keys.length;
30711
- var i = 0;
30712
- var P;
30713
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
30714
- return O;
30715
- };
30716
- return _objectDps;
30717
- }
30693
+ var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
30694
+ anObject$4(O);
30695
+ var keys = getKeys$1(Properties);
30696
+ var length = keys.length;
30697
+ var i = 0;
30698
+ var P;
30699
+ while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
30700
+ return O;
30701
+ };
30718
30702
 
30719
30703
  var _html;
30720
30704
  var hasRequired_html;
@@ -30727,55 +30711,47 @@ function require_html () {
30727
30711
  return _html;
30728
30712
  }
30729
30713
 
30730
- var _objectCreate;
30731
- var hasRequired_objectCreate;
30732
-
30733
- function require_objectCreate () {
30734
- if (hasRequired_objectCreate) return _objectCreate;
30735
- hasRequired_objectCreate = 1;
30736
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30737
- var anObject = _anObject;
30738
- var dPs = require_objectDps();
30739
- var enumBugKeys = _enumBugKeys;
30740
- var IE_PROTO = _sharedKey('IE_PROTO');
30741
- var Empty = function () { /* empty */ };
30742
- var PROTOTYPE = 'prototype';
30743
-
30744
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
30745
- var createDict = function () {
30746
- // Thrash, waste and sodomy: IE GC bug
30747
- var iframe = require_domCreate()('iframe');
30748
- var i = enumBugKeys.length;
30749
- var lt = '<';
30750
- var gt = '>';
30751
- var iframeDocument;
30752
- iframe.style.display = 'none';
30753
- require_html().appendChild(iframe);
30754
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30755
- // createDict = iframe.contentWindow.Object;
30756
- // html.removeChild(iframe);
30757
- iframeDocument = iframe.contentWindow.document;
30758
- iframeDocument.open();
30759
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30760
- iframeDocument.close();
30761
- createDict = iframeDocument.F;
30762
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
30763
- return createDict();
30764
- };
30714
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
30715
+ var anObject$3 = _anObject;
30716
+ var dPs = _objectDps;
30717
+ var enumBugKeys = _enumBugKeys;
30718
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
30719
+ var Empty = function () { /* empty */ };
30720
+ var PROTOTYPE$1 = 'prototype';
30765
30721
 
30766
- _objectCreate = Object.create || function create(O, Properties) {
30767
- var result;
30768
- if (O !== null) {
30769
- Empty[PROTOTYPE] = anObject(O);
30770
- result = new Empty();
30771
- Empty[PROTOTYPE] = null;
30772
- // add "__proto__" for Object.getPrototypeOf polyfill
30773
- result[IE_PROTO] = O;
30774
- } else result = createDict();
30775
- return Properties === undefined ? result : dPs(result, Properties);
30776
- };
30777
- return _objectCreate;
30778
- }
30722
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
30723
+ var createDict = function () {
30724
+ // Thrash, waste and sodomy: IE GC bug
30725
+ var iframe = require_domCreate()('iframe');
30726
+ var i = enumBugKeys.length;
30727
+ var lt = '<';
30728
+ var gt = '>';
30729
+ var iframeDocument;
30730
+ iframe.style.display = 'none';
30731
+ require_html().appendChild(iframe);
30732
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
30733
+ // createDict = iframe.contentWindow.Object;
30734
+ // html.removeChild(iframe);
30735
+ iframeDocument = iframe.contentWindow.document;
30736
+ iframeDocument.open();
30737
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
30738
+ iframeDocument.close();
30739
+ createDict = iframeDocument.F;
30740
+ while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
30741
+ return createDict();
30742
+ };
30743
+
30744
+ var _objectCreate = Object.create || function create(O, Properties) {
30745
+ var result;
30746
+ if (O !== null) {
30747
+ Empty[PROTOTYPE$1] = anObject$3(O);
30748
+ result = new Empty();
30749
+ Empty[PROTOTYPE$1] = null;
30750
+ // add "__proto__" for Object.getPrototypeOf polyfill
30751
+ result[IE_PROTO$1] = O;
30752
+ } else result = createDict();
30753
+ return Properties === undefined ? result : dPs(result, Properties);
30754
+ };
30779
30755
 
30780
30756
  var _wks = {exports: {}};
30781
30757
 
@@ -30801,7 +30777,7 @@ var _setToStringTag = function (it, tag, stat) {
30801
30777
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30802
30778
  };
30803
30779
 
30804
- var create$3 = require_objectCreate();
30780
+ var create$3 = _objectCreate;
30805
30781
  var descriptor = _propertyDesc;
30806
30782
  var setToStringTag$2 = _setToStringTag;
30807
30783
  var IteratorPrototype = {};
@@ -31444,7 +31420,7 @@ var toObject$1 = _toObject;
31444
31420
  var toIObject = _toIobject;
31445
31421
  var toPrimitive = _toPrimitive;
31446
31422
  var createDesc = _propertyDesc;
31447
- var _create$1 = require_objectCreate();
31423
+ var _create$1 = _objectCreate;
31448
31424
  var gOPNExt = _objectGopnExt;
31449
31425
  var $GOPD = _objectGopd;
31450
31426
  var $GOPS = _objectGops;
@@ -31754,7 +31730,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31754
31730
 
31755
31731
  var $export = _export;
31756
31732
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31757
- $export($export.S, 'Object', { create: require_objectCreate() });
31733
+ $export($export.S, 'Object', { create: _objectCreate });
31758
31734
 
31759
31735
  var $Object$1 = _coreExports.Object;
31760
31736
  var create$2 = function create(P, D) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "main": "./src/index.js",
5
5
  "exports": {
6
6
  ".": {
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@teselagen/file-utils": "0.3.9",
14
- "@teselagen/bounce-loader": "0.3.9",
14
+ "@teselagen/bounce-loader": "0.3.10",
15
15
  "@blueprintjs/core": "3.52.0",
16
16
  "@blueprintjs/datetime": "3.23.19",
17
17
  "@blueprintjs/icons": "3.33.0",