@teselagen/ui 0.0.25 → 0.0.27

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 (2) hide show
  1. package/index.umd.js +145 -106
  2. package/package.json +3 -3
package/index.umd.js CHANGED
@@ -23264,7 +23264,7 @@
23264
23264
  var ownKeys$3 = typeof Reflect !== "undefined" && Reflect.ownKeys ? Reflect.ownKeys : hasGetOwnPropertySymbols ? function (obj) {
23265
23265
  return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));
23266
23266
  } : /* istanbul ignore next */Object.getOwnPropertyNames;
23267
- function toPrimitive$3(value) {
23267
+ function toPrimitive$2(value) {
23268
23268
  return value === null ? null : typeof value === "object" ? "" + value : value;
23269
23269
  }
23270
23270
  function hasProp(target, prop) {
@@ -24193,7 +24193,7 @@
24193
24193
  return this.name_ + "[" + this.value_ + "]";
24194
24194
  };
24195
24195
  _proto.valueOf = function valueOf() {
24196
- return toPrimitive$3(this.get());
24196
+ return toPrimitive$2(this.get());
24197
24197
  };
24198
24198
  _proto[_Symbol$toPrimitive] = function () {
24199
24199
  return this.valueOf();
@@ -24421,7 +24421,7 @@
24421
24421
  return this.name_ + "[" + this.derivation.toString() + "]";
24422
24422
  };
24423
24423
  _proto.valueOf = function valueOf() {
24424
- return toPrimitive$3(this.get());
24424
+ return toPrimitive$2(this.get());
24425
24425
  };
24426
24426
  _proto[_Symbol$toPrimitive$1] = function () {
24427
24427
  return this.valueOf();
@@ -54892,10 +54892,18 @@
54892
54892
  }
54893
54893
  };
54894
54894
 
54895
- // Thank's IE8 for his funny defineProperty
54896
- var _descriptors = !_fails(function () {
54897
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
54898
- });
54895
+ var _descriptors;
54896
+ var hasRequired_descriptors;
54897
+
54898
+ function require_descriptors () {
54899
+ if (hasRequired_descriptors) return _descriptors;
54900
+ hasRequired_descriptors = 1;
54901
+ // Thank's IE8 for his funny defineProperty
54902
+ _descriptors = !_fails(function () {
54903
+ return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
54904
+ });
54905
+ return _descriptors;
54906
+ }
54899
54907
 
54900
54908
  var _domCreate;
54901
54909
  var hasRequired_domCreate;
@@ -54913,7 +54921,7 @@
54913
54921
  return _domCreate;
54914
54922
  }
54915
54923
 
54916
- var _ie8DomDefine = !_descriptors && !_fails(function () {
54924
+ var _ie8DomDefine = !require_descriptors() && !_fails(function () {
54917
54925
  return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
54918
54926
  });
54919
54927
 
@@ -54930,22 +54938,29 @@
54930
54938
  throw TypeError("Can't convert object to primitive value");
54931
54939
  };
54932
54940
 
54933
- var anObject$5 = _anObject;
54934
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
54935
- var toPrimitive$2 = _toPrimitive;
54936
- var dP$3 = Object.defineProperty;
54941
+ var hasRequired_objectDp;
54937
54942
 
54938
- _objectDp.f = _descriptors ? Object.defineProperty : function defineProperty(O, P, Attributes) {
54939
- anObject$5(O);
54940
- P = toPrimitive$2(P, true);
54941
- anObject$5(Attributes);
54942
- if (IE8_DOM_DEFINE$1) try {
54943
- return dP$3(O, P, Attributes);
54944
- } catch (e) { /* empty */ }
54945
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
54946
- if ('value' in Attributes) O[P] = Attributes.value;
54947
- return O;
54948
- };
54943
+ function require_objectDp () {
54944
+ if (hasRequired_objectDp) return _objectDp;
54945
+ hasRequired_objectDp = 1;
54946
+ var anObject = _anObject;
54947
+ var IE8_DOM_DEFINE = _ie8DomDefine;
54948
+ var toPrimitive = _toPrimitive;
54949
+ var dP = Object.defineProperty;
54950
+
54951
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
54952
+ anObject(O);
54953
+ P = toPrimitive(P, true);
54954
+ anObject(Attributes);
54955
+ if (IE8_DOM_DEFINE) try {
54956
+ return dP(O, P, Attributes);
54957
+ } catch (e) { /* empty */ }
54958
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
54959
+ if ('value' in Attributes) O[P] = Attributes.value;
54960
+ return O;
54961
+ };
54962
+ return _objectDp;
54963
+ }
54949
54964
 
54950
54965
  var _propertyDesc = function (bitmap, value) {
54951
54966
  return {
@@ -54956,10 +54971,10 @@
54956
54971
  };
54957
54972
  };
54958
54973
 
54959
- var dP$2 = _objectDp;
54974
+ var dP$1 = require_objectDp();
54960
54975
  var createDesc$3 = _propertyDesc;
54961
- var _hide = _descriptors ? function (object, key, value) {
54962
- return dP$2.f(object, key, createDesc$3(1, value));
54976
+ var _hide = require_descriptors() ? function (object, key, value) {
54977
+ return dP$1.f(object, key, createDesc$3(1, value));
54963
54978
  } : function (object, key, value) {
54964
54979
  object[key] = value;
54965
54980
  return object;
@@ -54975,7 +54990,7 @@
54975
54990
  var ctx$1 = _ctx;
54976
54991
  var hide$2 = _hide;
54977
54992
  var has$b = _has;
54978
- var PROTOTYPE$2 = 'prototype';
54993
+ var PROTOTYPE$1 = 'prototype';
54979
54994
 
54980
54995
  var $export$8 = function (type, name, source) {
54981
54996
  var IS_FORCED = type & $export$8.F;
@@ -54985,8 +55000,8 @@
54985
55000
  var IS_BIND = type & $export$8.B;
54986
55001
  var IS_WRAP = type & $export$8.W;
54987
55002
  var exports = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
54988
- var expProto = exports[PROTOTYPE$2];
54989
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
55003
+ var expProto = exports[PROTOTYPE$1];
55004
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
54990
55005
  var key, own, out;
54991
55006
  if (IS_GLOBAL) source = name;
54992
55007
  for (key in source) {
@@ -55010,7 +55025,7 @@
55010
55025
  } return new C(a, b, c);
55011
55026
  } return C.apply(this, arguments);
55012
55027
  };
55013
- F[PROTOTYPE$2] = C[PROTOTYPE$2];
55028
+ F[PROTOTYPE$1] = C[PROTOTYPE$1];
55014
55029
  return F;
55015
55030
  // make static versions for prototype methods
55016
55031
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -55039,12 +55054,20 @@
55039
55054
  return toString$4.call(it).slice(8, -1);
55040
55055
  };
55041
55056
 
55042
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
55043
- var cof$2 = _cof;
55044
- // eslint-disable-next-line no-prototype-builtins
55045
- var _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
55046
- return cof$2(it) == 'String' ? it.split('') : Object(it);
55047
- };
55057
+ var _iobject;
55058
+ var hasRequired_iobject;
55059
+
55060
+ function require_iobject () {
55061
+ if (hasRequired_iobject) return _iobject;
55062
+ hasRequired_iobject = 1;
55063
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
55064
+ var cof = _cof;
55065
+ // eslint-disable-next-line no-prototype-builtins
55066
+ _iobject = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
55067
+ return cof(it) == 'String' ? it.split('') : Object(it);
55068
+ };
55069
+ return _iobject;
55070
+ }
55048
55071
 
55049
55072
  // 7.2.1 RequireObjectCoercible(argument)
55050
55073
  var _defined = function (it) {
@@ -55053,7 +55076,7 @@
55053
55076
  };
55054
55077
 
55055
55078
  // to indexed object, toObject with fallback for non-array-like ES3 strings
55056
- var IObject = _iobject;
55079
+ var IObject = require_iobject();
55057
55080
  var defined$2 = _defined;
55058
55081
  var _toIobject = function (it) {
55059
55082
  return IObject(defined$2(it));
@@ -55139,14 +55162,14 @@
55139
55162
  var has$a = _has;
55140
55163
  var toIObject$4 = _toIobject;
55141
55164
  var arrayIndexOf = _arrayIncludes(false);
55142
- var IE_PROTO$2 = _sharedKey('IE_PROTO');
55165
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
55143
55166
 
55144
55167
  var _objectKeysInternal = function (object, names) {
55145
55168
  var O = toIObject$4(object);
55146
55169
  var i = 0;
55147
55170
  var result = [];
55148
55171
  var key;
55149
- for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
55172
+ for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
55150
55173
  // Don't enum bug & hidden keys
55151
55174
  while (names.length > i) if (has$a(O, key = names[i++])) {
55152
55175
  ~arrayIndexOf(result, key) || result.push(key);
@@ -55161,10 +55184,10 @@
55161
55184
 
55162
55185
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
55163
55186
  var $keys$3 = _objectKeysInternal;
55164
- var enumBugKeys$1 = _enumBugKeys;
55187
+ var enumBugKeys = _enumBugKeys;
55165
55188
 
55166
55189
  var _objectKeys = Object.keys || function keys(O) {
55167
- return $keys$3(O, enumBugKeys$1);
55190
+ return $keys$3(O, enumBugKeys);
55168
55191
  };
55169
55192
 
55170
55193
  var _objectGops = {};
@@ -55195,12 +55218,12 @@
55195
55218
  if (hasRequired_objectAssign) return _objectAssign;
55196
55219
  hasRequired_objectAssign = 1;
55197
55220
  // 19.1.2.1 Object.assign(target, source, ...)
55198
- var DESCRIPTORS = _descriptors;
55221
+ var DESCRIPTORS = require_descriptors();
55199
55222
  var getKeys = _objectKeys;
55200
55223
  var gOPS = _objectGops;
55201
55224
  var pIE = require_objectPie();
55202
55225
  var toObject = _toObject;
55203
- var IObject = _iobject;
55226
+ var IObject = require_iobject();
55204
55227
  var $assign = Object.assign;
55205
55228
 
55206
55229
  // should work with symbols and should have deterministic property order (V8 bug)
@@ -55271,19 +55294,27 @@
55271
55294
 
55272
55295
  var _redefine = _hide;
55273
55296
 
55274
- var dP$1 = _objectDp;
55275
- var anObject$4 = _anObject;
55276
- var getKeys$1 = _objectKeys;
55297
+ var _objectDps;
55298
+ var hasRequired_objectDps;
55277
55299
 
55278
- var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
55279
- anObject$4(O);
55280
- var keys = getKeys$1(Properties);
55281
- var length = keys.length;
55282
- var i = 0;
55283
- var P;
55284
- while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
55285
- return O;
55286
- };
55300
+ function require_objectDps () {
55301
+ if (hasRequired_objectDps) return _objectDps;
55302
+ hasRequired_objectDps = 1;
55303
+ var dP = require_objectDp();
55304
+ var anObject = _anObject;
55305
+ var getKeys = _objectKeys;
55306
+
55307
+ _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
55308
+ anObject(O);
55309
+ var keys = getKeys(Properties);
55310
+ var length = keys.length;
55311
+ var i = 0;
55312
+ var P;
55313
+ while (length > i) dP.f(O, P = keys[i++], Properties[P]);
55314
+ return O;
55315
+ };
55316
+ return _objectDps;
55317
+ }
55287
55318
 
55288
55319
  var _html;
55289
55320
  var hasRequired_html;
@@ -55296,47 +55327,55 @@
55296
55327
  return _html;
55297
55328
  }
55298
55329
 
55299
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55300
- var anObject$3 = _anObject;
55301
- var dPs = _objectDps;
55302
- var enumBugKeys = _enumBugKeys;
55303
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
55304
- var Empty = function () { /* empty */ };
55305
- var PROTOTYPE$1 = 'prototype';
55330
+ var _objectCreate;
55331
+ var hasRequired_objectCreate;
55306
55332
 
55307
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
55308
- var createDict = function () {
55309
- // Thrash, waste and sodomy: IE GC bug
55310
- var iframe = require_domCreate()('iframe');
55311
- var i = enumBugKeys.length;
55312
- var lt = '<';
55313
- var gt = '>';
55314
- var iframeDocument;
55315
- iframe.style.display = 'none';
55316
- require_html().appendChild(iframe);
55317
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55318
- // createDict = iframe.contentWindow.Object;
55319
- // html.removeChild(iframe);
55320
- iframeDocument = iframe.contentWindow.document;
55321
- iframeDocument.open();
55322
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55323
- iframeDocument.close();
55324
- createDict = iframeDocument.F;
55325
- while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
55326
- return createDict();
55327
- };
55328
-
55329
- var _objectCreate = Object.create || function create(O, Properties) {
55330
- var result;
55331
- if (O !== null) {
55332
- Empty[PROTOTYPE$1] = anObject$3(O);
55333
- result = new Empty();
55334
- Empty[PROTOTYPE$1] = null;
55335
- // add "__proto__" for Object.getPrototypeOf polyfill
55336
- result[IE_PROTO$1] = O;
55337
- } else result = createDict();
55338
- return Properties === undefined ? result : dPs(result, Properties);
55339
- };
55333
+ function require_objectCreate () {
55334
+ if (hasRequired_objectCreate) return _objectCreate;
55335
+ hasRequired_objectCreate = 1;
55336
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55337
+ var anObject = _anObject;
55338
+ var dPs = require_objectDps();
55339
+ var enumBugKeys = _enumBugKeys;
55340
+ var IE_PROTO = _sharedKey('IE_PROTO');
55341
+ var Empty = function () { /* empty */ };
55342
+ var PROTOTYPE = 'prototype';
55343
+
55344
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
55345
+ var createDict = function () {
55346
+ // Thrash, waste and sodomy: IE GC bug
55347
+ var iframe = require_domCreate()('iframe');
55348
+ var i = enumBugKeys.length;
55349
+ var lt = '<';
55350
+ var gt = '>';
55351
+ var iframeDocument;
55352
+ iframe.style.display = 'none';
55353
+ require_html().appendChild(iframe);
55354
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55355
+ // createDict = iframe.contentWindow.Object;
55356
+ // html.removeChild(iframe);
55357
+ iframeDocument = iframe.contentWindow.document;
55358
+ iframeDocument.open();
55359
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55360
+ iframeDocument.close();
55361
+ createDict = iframeDocument.F;
55362
+ while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
55363
+ return createDict();
55364
+ };
55365
+
55366
+ _objectCreate = Object.create || function create(O, Properties) {
55367
+ var result;
55368
+ if (O !== null) {
55369
+ Empty[PROTOTYPE] = anObject(O);
55370
+ result = new Empty();
55371
+ Empty[PROTOTYPE] = null;
55372
+ // add "__proto__" for Object.getPrototypeOf polyfill
55373
+ result[IE_PROTO] = O;
55374
+ } else result = createDict();
55375
+ return Properties === undefined ? result : dPs(result, Properties);
55376
+ };
55377
+ return _objectCreate;
55378
+ }
55340
55379
 
55341
55380
  var _wks = {exports: {}};
55342
55381
 
@@ -55354,7 +55393,7 @@
55354
55393
 
55355
55394
  var _wksExports = _wks.exports;
55356
55395
 
55357
- var def = _objectDp.f;
55396
+ var def = require_objectDp().f;
55358
55397
  var has$9 = _has;
55359
55398
  var TAG$1 = _wksExports('toStringTag');
55360
55399
 
@@ -55362,7 +55401,7 @@
55362
55401
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
55363
55402
  };
55364
55403
 
55365
- var create$3 = _objectCreate;
55404
+ var create$3 = require_objectCreate();
55366
55405
  var descriptor = _propertyDesc;
55367
55406
  var setToStringTag$2 = _setToStringTag;
55368
55407
  var IteratorPrototype = {};
@@ -55668,7 +55707,7 @@
55668
55707
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
55669
55708
  };
55670
55709
 
55671
- var $defineProperty$1 = _objectDp;
55710
+ var $defineProperty$1 = require_objectDp();
55672
55711
  var createDesc$2 = _propertyDesc;
55673
55712
 
55674
55713
  var _createProperty = function (object, index, value) {
@@ -55801,7 +55840,7 @@
55801
55840
 
55802
55841
  var $export$3 = _export;
55803
55842
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
55804
- $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
55843
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
55805
55844
 
55806
55845
  var $Object$1 = _coreExports.Object;
55807
55846
  var defineProperty$6 = function defineProperty(it, key, desc) {
@@ -55849,7 +55888,7 @@
55849
55888
  var META$1 = _uid('meta');
55850
55889
  var isObject$5 = _isObject;
55851
55890
  var has$7 = _has;
55852
- var setDesc = _objectDp.f;
55891
+ var setDesc = require_objectDp().f;
55853
55892
  var id = 0;
55854
55893
  var isExtensible = Object.isExtensible || function () {
55855
55894
  return true;
@@ -55904,7 +55943,7 @@
55904
55943
 
55905
55944
  var core = _coreExports;
55906
55945
  var wksExt$1 = _wksExt;
55907
- var defineProperty$4 = _objectDp.f;
55946
+ var defineProperty$4 = require_objectDp().f;
55908
55947
  var _wksDefine = function (name) {
55909
55948
  var $Symbol = core.Symbol || (core.Symbol = {} );
55910
55949
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$4($Symbol, name, { value: wksExt$1.f(name) });
@@ -55974,7 +56013,7 @@
55974
56013
  var IE8_DOM_DEFINE = _ie8DomDefine;
55975
56014
  var gOPD$2 = Object.getOwnPropertyDescriptor;
55976
56015
 
55977
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
56016
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
55978
56017
  O = toIObject$1(O);
55979
56018
  P = toPrimitive$1(P, true);
55980
56019
  if (IE8_DOM_DEFINE) try {
@@ -55986,7 +56025,7 @@
55986
56025
  // ECMAScript 6 symbols shim
55987
56026
  var global$1 = _globalExports;
55988
56027
  var has$5 = _has;
55989
- var DESCRIPTORS = _descriptors;
56028
+ var DESCRIPTORS = require_descriptors();
55990
56029
  var $export$2 = _export;
55991
56030
  var redefine = _redefine;
55992
56031
  var META = _metaExports.KEY;
@@ -56005,11 +56044,11 @@
56005
56044
  var toIObject = _toIobject;
56006
56045
  var toPrimitive = _toPrimitive;
56007
56046
  var createDesc = _propertyDesc;
56008
- var _create$1 = _objectCreate;
56047
+ var _create$1 = require_objectCreate();
56009
56048
  var gOPNExt = _objectGopnExt;
56010
56049
  var $GOPD = _objectGopd;
56011
56050
  var $GOPS = _objectGops;
56012
- var $DP = _objectDp;
56051
+ var $DP = require_objectDp();
56013
56052
  var $keys$1 = _objectKeys;
56014
56053
  var gOPD$1 = $GOPD.f;
56015
56054
  var dP = $DP.f;
@@ -56315,7 +56354,7 @@
56315
56354
 
56316
56355
  var $export = _export;
56317
56356
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
56318
- $export($export.S, 'Object', { create: _objectCreate });
56357
+ $export($export.S, 'Object', { create: require_objectCreate() });
56319
56358
 
56320
56359
  var $Object = _coreExports.Object;
56321
56360
  var create$2 = function create(P, D) {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@teselagen/ui",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "main": "./src/index.js",
5
5
  "dependencies": {
6
- "@teselagen/file-utils": "0.2.27",
7
- "@teselagen/bounce-loader": "0.0.14",
6
+ "@teselagen/file-utils": "0.2.28",
7
+ "@teselagen/bounce-loader": "0.0.16",
8
8
  "@blueprintjs/core": "3.52.0",
9
9
  "@blueprintjs/datetime": "3.23.19",
10
10
  "@blueprintjs/icons": "3.33.0",