@teselagen/ui 0.3.13 → 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;
@@ -30583,14 +30606,14 @@ var _sharedKey = function (key) {
30583
30606
  var has$a = _has;
30584
30607
  var toIObject$4 = _toIobject;
30585
30608
  var arrayIndexOf = _arrayIncludes(false);
30586
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30609
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30587
30610
 
30588
30611
  var _objectKeysInternal = function (object, names) {
30589
30612
  var O = toIObject$4(object);
30590
30613
  var i = 0;
30591
30614
  var result = [];
30592
30615
  var key;
30593
- 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);
30594
30617
  // Don't enum bug & hidden keys
30595
30618
  while (names.length > i) if (has$a(O, key = names[i++])) {
30596
30619
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30605,10 +30628,10 @@ var _enumBugKeys = (
30605
30628
 
30606
30629
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30607
30630
  var $keys$3 = _objectKeysInternal;
30608
- var enumBugKeys = _enumBugKeys;
30631
+ var enumBugKeys$1 = _enumBugKeys;
30609
30632
 
30610
30633
  var _objectKeys = Object.keys || function keys(O) {
30611
- return $keys$3(O, enumBugKeys);
30634
+ return $keys$3(O, enumBugKeys$1);
30612
30635
  };
30613
30636
 
30614
30637
  var _objectGops = {};
@@ -30639,7 +30662,7 @@ function require_objectAssign () {
30639
30662
  if (hasRequired_objectAssign) return _objectAssign;
30640
30663
  hasRequired_objectAssign = 1;
30641
30664
  // 19.1.2.1 Object.assign(target, source, ...)
30642
- var DESCRIPTORS = _descriptors;
30665
+ var DESCRIPTORS = require_descriptors();
30643
30666
  var getKeys = _objectKeys;
30644
30667
  var gOPS = _objectGops;
30645
30668
  var pIE = require_objectPie();
@@ -30715,27 +30738,19 @@ var _iterators = {};
30715
30738
 
30716
30739
  var _redefine = _hide;
30717
30740
 
30718
- var _objectDps;
30719
- var hasRequired_objectDps;
30741
+ var dP$1 = require_objectDp();
30742
+ var anObject$4 = _anObject;
30743
+ var getKeys$1 = _objectKeys;
30720
30744
 
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;
30727
-
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
- }
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
+ };
30739
30754
 
30740
30755
  var _html;
30741
30756
  var hasRequired_html;
@@ -30748,55 +30763,47 @@ function require_html () {
30748
30763
  return _html;
30749
30764
  }
30750
30765
 
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
- };
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';
30786
30773
 
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
- }
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
+ };
30800
30807
 
30801
30808
  var _wks = {exports: {}};
30802
30809
 
@@ -30814,7 +30821,7 @@ $exports.store = store;
30814
30821
 
30815
30822
  var _wksExports = _wks.exports;
30816
30823
 
30817
- var def = _objectDp.f;
30824
+ var def = require_objectDp().f;
30818
30825
  var has$9 = _has;
30819
30826
  var TAG$1 = _wksExports('toStringTag');
30820
30827
 
@@ -30822,7 +30829,7 @@ var _setToStringTag = function (it, tag, stat) {
30822
30829
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30823
30830
  };
30824
30831
 
30825
- var create$3 = require_objectCreate();
30832
+ var create$3 = _objectCreate;
30826
30833
  var descriptor = _propertyDesc;
30827
30834
  var setToStringTag$2 = _setToStringTag;
30828
30835
  var IteratorPrototype = {};
@@ -31128,7 +31135,7 @@ var _isArrayIter = function (it) {
31128
31135
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31129
31136
  };
31130
31137
 
31131
- var $defineProperty$1 = _objectDp;
31138
+ var $defineProperty$1 = require_objectDp();
31132
31139
  var createDesc$2 = _propertyDesc;
31133
31140
 
31134
31141
  var _createProperty = function (object, index, value) {
@@ -31261,7 +31268,7 @@ var _default$8 = function (instance, Constructor) {
31261
31268
 
31262
31269
  var $export$3 = _export;
31263
31270
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31264
- $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 });
31265
31272
 
31266
31273
  var $Object$2 = _coreExports.Object;
31267
31274
  var defineProperty$9 = function defineProperty(it, key, desc) {
@@ -31309,7 +31316,7 @@ var _meta = {exports: {}};
31309
31316
  var META$1 = _uid('meta');
31310
31317
  var isObject$c = _isObject;
31311
31318
  var has$7 = _has;
31312
- var setDesc = _objectDp.f;
31319
+ var setDesc = require_objectDp().f;
31313
31320
  var id = 0;
31314
31321
  var isExtensible = Object.isExtensible || function () {
31315
31322
  return true;
@@ -31364,7 +31371,7 @@ var _metaExports = _meta.exports;
31364
31371
 
31365
31372
  var core = _coreExports;
31366
31373
  var wksExt$1 = _wksExt;
31367
- var defineProperty$7 = _objectDp.f;
31374
+ var defineProperty$7 = require_objectDp().f;
31368
31375
  var _wksDefine = function (name) {
31369
31376
  var $Symbol = core.Symbol || (core.Symbol = {} );
31370
31377
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$7($Symbol, name, { value: wksExt$1.f(name) });
@@ -31431,10 +31438,10 @@ var createDesc$1 = _propertyDesc;
31431
31438
  var toIObject$1 = _toIobject;
31432
31439
  var toPrimitive$1 = _toPrimitive;
31433
31440
  var has$6 = _has;
31434
- var IE8_DOM_DEFINE = _ie8DomDefine;
31441
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31435
31442
  var gOPD$2 = Object.getOwnPropertyDescriptor;
31436
31443
 
31437
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31444
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31438
31445
  O = toIObject$1(O);
31439
31446
  P = toPrimitive$1(P, true);
31440
31447
  if (IE8_DOM_DEFINE) try {
@@ -31446,7 +31453,7 @@ _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P)
31446
31453
  // ECMAScript 6 symbols shim
31447
31454
  var global$1 = _globalExports;
31448
31455
  var has$5 = _has;
31449
- var DESCRIPTORS = _descriptors;
31456
+ var DESCRIPTORS = require_descriptors();
31450
31457
  var $export$2 = _export;
31451
31458
  var redefine = _redefine;
31452
31459
  var META = _metaExports.KEY;
@@ -31465,11 +31472,11 @@ var toObject$1 = _toObject;
31465
31472
  var toIObject = _toIobject;
31466
31473
  var toPrimitive = _toPrimitive;
31467
31474
  var createDesc = _propertyDesc;
31468
- var _create$1 = require_objectCreate();
31475
+ var _create$1 = _objectCreate;
31469
31476
  var gOPNExt = _objectGopnExt;
31470
31477
  var $GOPD = _objectGopd;
31471
31478
  var $GOPS = _objectGops;
31472
- var $DP = _objectDp;
31479
+ var $DP = require_objectDp();
31473
31480
  var $keys$1 = _objectKeys;
31474
31481
  var gOPD$1 = $GOPD.f;
31475
31482
  var dP = $DP.f;
@@ -31775,7 +31782,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31775
31782
 
31776
31783
  var $export = _export;
31777
31784
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31778
- $export($export.S, 'Object', { create: require_objectCreate() });
31785
+ $export($export.S, 'Object', { create: _objectCreate });
31779
31786
 
31780
31787
  var $Object$1 = _coreExports.Object;
31781
31788
  var create$2 = function create(P, D) {
@@ -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;
@@ -30562,14 +30585,14 @@ var _sharedKey = function (key) {
30562
30585
  var has$a = _has;
30563
30586
  var toIObject$4 = _toIobject;
30564
30587
  var arrayIndexOf = _arrayIncludes(false);
30565
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
30588
+ var IE_PROTO$2 = _sharedKey('IE_PROTO');
30566
30589
 
30567
30590
  var _objectKeysInternal = function (object, names) {
30568
30591
  var O = toIObject$4(object);
30569
30592
  var i = 0;
30570
30593
  var result = [];
30571
30594
  var key;
30572
- 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);
30573
30596
  // Don't enum bug & hidden keys
30574
30597
  while (names.length > i) if (has$a(O, key = names[i++])) {
30575
30598
  ~arrayIndexOf(result, key) || result.push(key);
@@ -30584,10 +30607,10 @@ var _enumBugKeys = (
30584
30607
 
30585
30608
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
30586
30609
  var $keys$3 = _objectKeysInternal;
30587
- var enumBugKeys = _enumBugKeys;
30610
+ var enumBugKeys$1 = _enumBugKeys;
30588
30611
 
30589
30612
  var _objectKeys = Object.keys || function keys(O) {
30590
- return $keys$3(O, enumBugKeys);
30613
+ return $keys$3(O, enumBugKeys$1);
30591
30614
  };
30592
30615
 
30593
30616
  var _objectGops = {};
@@ -30618,7 +30641,7 @@ function require_objectAssign () {
30618
30641
  if (hasRequired_objectAssign) return _objectAssign;
30619
30642
  hasRequired_objectAssign = 1;
30620
30643
  // 19.1.2.1 Object.assign(target, source, ...)
30621
- var DESCRIPTORS = _descriptors;
30644
+ var DESCRIPTORS = require_descriptors();
30622
30645
  var getKeys = _objectKeys;
30623
30646
  var gOPS = _objectGops;
30624
30647
  var pIE = require_objectPie();
@@ -30694,27 +30717,19 @@ var _iterators = {};
30694
30717
 
30695
30718
  var _redefine = _hide;
30696
30719
 
30697
- var _objectDps;
30698
- var hasRequired_objectDps;
30720
+ var dP$1 = require_objectDp();
30721
+ var anObject$4 = _anObject;
30722
+ var getKeys$1 = _objectKeys;
30699
30723
 
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;
30706
-
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
- }
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
+ };
30718
30733
 
30719
30734
  var _html;
30720
30735
  var hasRequired_html;
@@ -30727,55 +30742,47 @@ function require_html () {
30727
30742
  return _html;
30728
30743
  }
30729
30744
 
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
- };
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';
30765
30752
 
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
- }
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
+ };
30779
30786
 
30780
30787
  var _wks = {exports: {}};
30781
30788
 
@@ -30793,7 +30800,7 @@ $exports.store = store;
30793
30800
 
30794
30801
  var _wksExports = _wks.exports;
30795
30802
 
30796
- var def = _objectDp.f;
30803
+ var def = require_objectDp().f;
30797
30804
  var has$9 = _has;
30798
30805
  var TAG$1 = _wksExports('toStringTag');
30799
30806
 
@@ -30801,7 +30808,7 @@ var _setToStringTag = function (it, tag, stat) {
30801
30808
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
30802
30809
  };
30803
30810
 
30804
- var create$3 = require_objectCreate();
30811
+ var create$3 = _objectCreate;
30805
30812
  var descriptor = _propertyDesc;
30806
30813
  var setToStringTag$2 = _setToStringTag;
30807
30814
  var IteratorPrototype = {};
@@ -31107,7 +31114,7 @@ var _isArrayIter = function (it) {
31107
31114
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
31108
31115
  };
31109
31116
 
31110
- var $defineProperty$1 = _objectDp;
31117
+ var $defineProperty$1 = require_objectDp();
31111
31118
  var createDesc$2 = _propertyDesc;
31112
31119
 
31113
31120
  var _createProperty = function (object, index, value) {
@@ -31240,7 +31247,7 @@ var _default$8 = function (instance, Constructor) {
31240
31247
 
31241
31248
  var $export$3 = _export;
31242
31249
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
31243
- $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 });
31244
31251
 
31245
31252
  var $Object$2 = _coreExports.Object;
31246
31253
  var defineProperty$9 = function defineProperty(it, key, desc) {
@@ -31288,7 +31295,7 @@ var _meta = {exports: {}};
31288
31295
  var META$1 = _uid('meta');
31289
31296
  var isObject$c = _isObject;
31290
31297
  var has$7 = _has;
31291
- var setDesc = _objectDp.f;
31298
+ var setDesc = require_objectDp().f;
31292
31299
  var id = 0;
31293
31300
  var isExtensible = Object.isExtensible || function () {
31294
31301
  return true;
@@ -31343,7 +31350,7 @@ var _metaExports = _meta.exports;
31343
31350
 
31344
31351
  var core = _coreExports;
31345
31352
  var wksExt$1 = _wksExt;
31346
- var defineProperty$7 = _objectDp.f;
31353
+ var defineProperty$7 = require_objectDp().f;
31347
31354
  var _wksDefine = function (name) {
31348
31355
  var $Symbol = core.Symbol || (core.Symbol = {} );
31349
31356
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$7($Symbol, name, { value: wksExt$1.f(name) });
@@ -31410,10 +31417,10 @@ var createDesc$1 = _propertyDesc;
31410
31417
  var toIObject$1 = _toIobject;
31411
31418
  var toPrimitive$1 = _toPrimitive;
31412
31419
  var has$6 = _has;
31413
- var IE8_DOM_DEFINE = _ie8DomDefine;
31420
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
31414
31421
  var gOPD$2 = Object.getOwnPropertyDescriptor;
31415
31422
 
31416
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31423
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
31417
31424
  O = toIObject$1(O);
31418
31425
  P = toPrimitive$1(P, true);
31419
31426
  if (IE8_DOM_DEFINE) try {
@@ -31425,7 +31432,7 @@ _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P)
31425
31432
  // ECMAScript 6 symbols shim
31426
31433
  var global$1 = _globalExports;
31427
31434
  var has$5 = _has;
31428
- var DESCRIPTORS = _descriptors;
31435
+ var DESCRIPTORS = require_descriptors();
31429
31436
  var $export$2 = _export;
31430
31437
  var redefine = _redefine;
31431
31438
  var META = _metaExports.KEY;
@@ -31444,11 +31451,11 @@ var toObject$1 = _toObject;
31444
31451
  var toIObject = _toIobject;
31445
31452
  var toPrimitive = _toPrimitive;
31446
31453
  var createDesc = _propertyDesc;
31447
- var _create$1 = require_objectCreate();
31454
+ var _create$1 = _objectCreate;
31448
31455
  var gOPNExt = _objectGopnExt;
31449
31456
  var $GOPD = _objectGopd;
31450
31457
  var $GOPS = _objectGops;
31451
- var $DP = _objectDp;
31458
+ var $DP = require_objectDp();
31452
31459
  var $keys$1 = _objectKeys;
31453
31460
  var gOPD$1 = $GOPD.f;
31454
31461
  var dP = $DP.f;
@@ -31754,7 +31761,7 @@ var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
31754
31761
 
31755
31762
  var $export = _export;
31756
31763
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
31757
- $export($export.S, 'Object', { create: require_objectCreate() });
31764
+ $export($export.S, 'Object', { create: _objectCreate });
31758
31765
 
31759
31766
  var $Object$1 = _coreExports.Object;
31760
31767
  var create$2 = function create(P, D) {
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.3.13",
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",