@teselagen/ui 0.3.2 → 0.3.4

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 -113
  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,9 +54921,17 @@
54913
54921
  return _domCreate;
54914
54922
  }
54915
54923
 
54916
- var _ie8DomDefine = !_descriptors && !_fails(function () {
54917
- return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
54918
- });
54924
+ var _ie8DomDefine;
54925
+ var hasRequired_ie8DomDefine;
54926
+
54927
+ function require_ie8DomDefine () {
54928
+ if (hasRequired_ie8DomDefine) return _ie8DomDefine;
54929
+ hasRequired_ie8DomDefine = 1;
54930
+ _ie8DomDefine = !require_descriptors() && !_fails(function () {
54931
+ return Object.defineProperty(require_domCreate()('div'), 'a', { get: function () { return 7; } }).a != 7;
54932
+ });
54933
+ return _ie8DomDefine;
54934
+ }
54919
54935
 
54920
54936
  // 7.1.1 ToPrimitive(input [, PreferredType])
54921
54937
  var isObject$6 = _isObject;
@@ -54930,22 +54946,29 @@
54930
54946
  throw TypeError("Can't convert object to primitive value");
54931
54947
  };
54932
54948
 
54933
- var anObject$5 = _anObject;
54934
- var IE8_DOM_DEFINE$1 = _ie8DomDefine;
54935
- var toPrimitive$2 = _toPrimitive;
54936
- var dP$3 = Object.defineProperty;
54949
+ var hasRequired_objectDp;
54937
54950
 
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
- };
54951
+ function require_objectDp () {
54952
+ if (hasRequired_objectDp) return _objectDp;
54953
+ hasRequired_objectDp = 1;
54954
+ var anObject = _anObject;
54955
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
54956
+ var toPrimitive = _toPrimitive;
54957
+ var dP = Object.defineProperty;
54958
+
54959
+ _objectDp.f = require_descriptors() ? Object.defineProperty : function defineProperty(O, P, Attributes) {
54960
+ anObject(O);
54961
+ P = toPrimitive(P, true);
54962
+ anObject(Attributes);
54963
+ if (IE8_DOM_DEFINE) try {
54964
+ return dP(O, P, Attributes);
54965
+ } catch (e) { /* empty */ }
54966
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
54967
+ if ('value' in Attributes) O[P] = Attributes.value;
54968
+ return O;
54969
+ };
54970
+ return _objectDp;
54971
+ }
54949
54972
 
54950
54973
  var _propertyDesc = function (bitmap, value) {
54951
54974
  return {
@@ -54956,10 +54979,10 @@
54956
54979
  };
54957
54980
  };
54958
54981
 
54959
- var dP$2 = _objectDp;
54982
+ var dP$1 = require_objectDp();
54960
54983
  var createDesc$3 = _propertyDesc;
54961
- var _hide = _descriptors ? function (object, key, value) {
54962
- return dP$2.f(object, key, createDesc$3(1, value));
54984
+ var _hide = require_descriptors() ? function (object, key, value) {
54985
+ return dP$1.f(object, key, createDesc$3(1, value));
54963
54986
  } : function (object, key, value) {
54964
54987
  object[key] = value;
54965
54988
  return object;
@@ -54975,7 +54998,7 @@
54975
54998
  var ctx$1 = _ctx;
54976
54999
  var hide$2 = _hide;
54977
55000
  var has$b = _has;
54978
- var PROTOTYPE$2 = 'prototype';
55001
+ var PROTOTYPE$1 = 'prototype';
54979
55002
 
54980
55003
  var $export$8 = function (type, name, source) {
54981
55004
  var IS_FORCED = type & $export$8.F;
@@ -54985,8 +55008,8 @@
54985
55008
  var IS_BIND = type & $export$8.B;
54986
55009
  var IS_WRAP = type & $export$8.W;
54987
55010
  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];
55011
+ var expProto = exports[PROTOTYPE$1];
55012
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
54990
55013
  var key, own, out;
54991
55014
  if (IS_GLOBAL) source = name;
54992
55015
  for (key in source) {
@@ -55010,7 +55033,7 @@
55010
55033
  } return new C(a, b, c);
55011
55034
  } return C.apply(this, arguments);
55012
55035
  };
55013
- F[PROTOTYPE$2] = C[PROTOTYPE$2];
55036
+ F[PROTOTYPE$1] = C[PROTOTYPE$1];
55014
55037
  return F;
55015
55038
  // make static versions for prototype methods
55016
55039
  })(out) : IS_PROTO && typeof out == 'function' ? ctx$1(Function.call, out) : out;
@@ -55147,14 +55170,14 @@
55147
55170
  var has$a = _has;
55148
55171
  var toIObject$4 = _toIobject;
55149
55172
  var arrayIndexOf = _arrayIncludes(false);
55150
- var IE_PROTO$2 = _sharedKey('IE_PROTO');
55173
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
55151
55174
 
55152
55175
  var _objectKeysInternal = function (object, names) {
55153
55176
  var O = toIObject$4(object);
55154
55177
  var i = 0;
55155
55178
  var result = [];
55156
55179
  var key;
55157
- for (key in O) if (key != IE_PROTO$2) has$a(O, key) && result.push(key);
55180
+ for (key in O) if (key != IE_PROTO$1) has$a(O, key) && result.push(key);
55158
55181
  // Don't enum bug & hidden keys
55159
55182
  while (names.length > i) if (has$a(O, key = names[i++])) {
55160
55183
  ~arrayIndexOf(result, key) || result.push(key);
@@ -55169,10 +55192,10 @@
55169
55192
 
55170
55193
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
55171
55194
  var $keys$3 = _objectKeysInternal;
55172
- var enumBugKeys$1 = _enumBugKeys;
55195
+ var enumBugKeys = _enumBugKeys;
55173
55196
 
55174
55197
  var _objectKeys = Object.keys || function keys(O) {
55175
- return $keys$3(O, enumBugKeys$1);
55198
+ return $keys$3(O, enumBugKeys);
55176
55199
  };
55177
55200
 
55178
55201
  var _objectGops = {};
@@ -55181,14 +55204,7 @@
55181
55204
 
55182
55205
  var _objectPie = {};
55183
55206
 
55184
- var hasRequired_objectPie;
55185
-
55186
- function require_objectPie () {
55187
- if (hasRequired_objectPie) return _objectPie;
55188
- hasRequired_objectPie = 1;
55189
- _objectPie.f = {}.propertyIsEnumerable;
55190
- return _objectPie;
55191
- }
55207
+ _objectPie.f = {}.propertyIsEnumerable;
55192
55208
 
55193
55209
  // 7.1.13 ToObject(argument)
55194
55210
  var defined$1 = _defined;
@@ -55203,10 +55219,10 @@
55203
55219
  if (hasRequired_objectAssign) return _objectAssign;
55204
55220
  hasRequired_objectAssign = 1;
55205
55221
  // 19.1.2.1 Object.assign(target, source, ...)
55206
- var DESCRIPTORS = _descriptors;
55222
+ var DESCRIPTORS = require_descriptors();
55207
55223
  var getKeys = _objectKeys;
55208
55224
  var gOPS = _objectGops;
55209
- var pIE = require_objectPie();
55225
+ var pIE = _objectPie;
55210
55226
  var toObject = _toObject;
55211
55227
  var IObject = require_iobject();
55212
55228
  var $assign = Object.assign;
@@ -55279,19 +55295,27 @@
55279
55295
 
55280
55296
  var _redefine = _hide;
55281
55297
 
55282
- var dP$1 = _objectDp;
55283
- var anObject$4 = _anObject;
55284
- var getKeys$1 = _objectKeys;
55298
+ var _objectDps;
55299
+ var hasRequired_objectDps;
55285
55300
 
55286
- var _objectDps = _descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
55287
- anObject$4(O);
55288
- var keys = getKeys$1(Properties);
55289
- var length = keys.length;
55290
- var i = 0;
55291
- var P;
55292
- while (length > i) dP$1.f(O, P = keys[i++], Properties[P]);
55293
- return O;
55294
- };
55301
+ function require_objectDps () {
55302
+ if (hasRequired_objectDps) return _objectDps;
55303
+ hasRequired_objectDps = 1;
55304
+ var dP = require_objectDp();
55305
+ var anObject = _anObject;
55306
+ var getKeys = _objectKeys;
55307
+
55308
+ _objectDps = require_descriptors() ? Object.defineProperties : function defineProperties(O, Properties) {
55309
+ anObject(O);
55310
+ var keys = getKeys(Properties);
55311
+ var length = keys.length;
55312
+ var i = 0;
55313
+ var P;
55314
+ while (length > i) dP.f(O, P = keys[i++], Properties[P]);
55315
+ return O;
55316
+ };
55317
+ return _objectDps;
55318
+ }
55295
55319
 
55296
55320
  var _html;
55297
55321
  var hasRequired_html;
@@ -55304,47 +55328,55 @@
55304
55328
  return _html;
55305
55329
  }
55306
55330
 
55307
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55308
- var anObject$3 = _anObject;
55309
- var dPs = _objectDps;
55310
- var enumBugKeys = _enumBugKeys;
55311
- var IE_PROTO$1 = _sharedKey('IE_PROTO');
55312
- var Empty = function () { /* empty */ };
55313
- var PROTOTYPE$1 = 'prototype';
55331
+ var _objectCreate;
55332
+ var hasRequired_objectCreate;
55314
55333
 
55315
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
55316
- var createDict = function () {
55317
- // Thrash, waste and sodomy: IE GC bug
55318
- var iframe = require_domCreate()('iframe');
55319
- var i = enumBugKeys.length;
55320
- var lt = '<';
55321
- var gt = '>';
55322
- var iframeDocument;
55323
- iframe.style.display = 'none';
55324
- require_html().appendChild(iframe);
55325
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55326
- // createDict = iframe.contentWindow.Object;
55327
- // html.removeChild(iframe);
55328
- iframeDocument = iframe.contentWindow.document;
55329
- iframeDocument.open();
55330
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55331
- iframeDocument.close();
55332
- createDict = iframeDocument.F;
55333
- while (i--) delete createDict[PROTOTYPE$1][enumBugKeys[i]];
55334
- return createDict();
55335
- };
55336
-
55337
- var _objectCreate = Object.create || function create(O, Properties) {
55338
- var result;
55339
- if (O !== null) {
55340
- Empty[PROTOTYPE$1] = anObject$3(O);
55341
- result = new Empty();
55342
- Empty[PROTOTYPE$1] = null;
55343
- // add "__proto__" for Object.getPrototypeOf polyfill
55344
- result[IE_PROTO$1] = O;
55345
- } else result = createDict();
55346
- return Properties === undefined ? result : dPs(result, Properties);
55347
- };
55334
+ function require_objectCreate () {
55335
+ if (hasRequired_objectCreate) return _objectCreate;
55336
+ hasRequired_objectCreate = 1;
55337
+ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
55338
+ var anObject = _anObject;
55339
+ var dPs = require_objectDps();
55340
+ var enumBugKeys = _enumBugKeys;
55341
+ var IE_PROTO = _sharedKey('IE_PROTO');
55342
+ var Empty = function () { /* empty */ };
55343
+ var PROTOTYPE = 'prototype';
55344
+
55345
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
55346
+ var createDict = function () {
55347
+ // Thrash, waste and sodomy: IE GC bug
55348
+ var iframe = require_domCreate()('iframe');
55349
+ var i = enumBugKeys.length;
55350
+ var lt = '<';
55351
+ var gt = '>';
55352
+ var iframeDocument;
55353
+ iframe.style.display = 'none';
55354
+ require_html().appendChild(iframe);
55355
+ iframe.src = 'javascript:'; // eslint-disable-line no-script-url
55356
+ // createDict = iframe.contentWindow.Object;
55357
+ // html.removeChild(iframe);
55358
+ iframeDocument = iframe.contentWindow.document;
55359
+ iframeDocument.open();
55360
+ iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
55361
+ iframeDocument.close();
55362
+ createDict = iframeDocument.F;
55363
+ while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
55364
+ return createDict();
55365
+ };
55366
+
55367
+ _objectCreate = Object.create || function create(O, Properties) {
55368
+ var result;
55369
+ if (O !== null) {
55370
+ Empty[PROTOTYPE] = anObject(O);
55371
+ result = new Empty();
55372
+ Empty[PROTOTYPE] = null;
55373
+ // add "__proto__" for Object.getPrototypeOf polyfill
55374
+ result[IE_PROTO] = O;
55375
+ } else result = createDict();
55376
+ return Properties === undefined ? result : dPs(result, Properties);
55377
+ };
55378
+ return _objectCreate;
55379
+ }
55348
55380
 
55349
55381
  var _wks = {exports: {}};
55350
55382
 
@@ -55362,7 +55394,7 @@
55362
55394
 
55363
55395
  var _wksExports = _wks.exports;
55364
55396
 
55365
- var def = _objectDp.f;
55397
+ var def = require_objectDp().f;
55366
55398
  var has$9 = _has;
55367
55399
  var TAG$1 = _wksExports('toStringTag');
55368
55400
 
@@ -55370,7 +55402,7 @@
55370
55402
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
55371
55403
  };
55372
55404
 
55373
- var create$3 = _objectCreate;
55405
+ var create$3 = require_objectCreate();
55374
55406
  var descriptor = _propertyDesc;
55375
55407
  var setToStringTag$2 = _setToStringTag;
55376
55408
  var IteratorPrototype = {};
@@ -55676,7 +55708,7 @@
55676
55708
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
55677
55709
  };
55678
55710
 
55679
- var $defineProperty$1 = _objectDp;
55711
+ var $defineProperty$1 = require_objectDp();
55680
55712
  var createDesc$2 = _propertyDesc;
55681
55713
 
55682
55714
  var _createProperty = function (object, index, value) {
@@ -55809,7 +55841,7 @@
55809
55841
 
55810
55842
  var $export$3 = _export;
55811
55843
  // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
55812
- $export$3($export$3.S + $export$3.F * !_descriptors, 'Object', { defineProperty: _objectDp.f });
55844
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
55813
55845
 
55814
55846
  var $Object$1 = _coreExports.Object;
55815
55847
  var defineProperty$6 = function defineProperty(it, key, desc) {
@@ -55857,7 +55889,7 @@
55857
55889
  var META$1 = _uid('meta');
55858
55890
  var isObject$5 = _isObject;
55859
55891
  var has$7 = _has;
55860
- var setDesc = _objectDp.f;
55892
+ var setDesc = require_objectDp().f;
55861
55893
  var id = 0;
55862
55894
  var isExtensible = Object.isExtensible || function () {
55863
55895
  return true;
@@ -55912,7 +55944,7 @@
55912
55944
 
55913
55945
  var core = _coreExports;
55914
55946
  var wksExt$1 = _wksExt;
55915
- var defineProperty$4 = _objectDp.f;
55947
+ var defineProperty$4 = require_objectDp().f;
55916
55948
  var _wksDefine = function (name) {
55917
55949
  var $Symbol = core.Symbol || (core.Symbol = {} );
55918
55950
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$4($Symbol, name, { value: wksExt$1.f(name) });
@@ -55921,7 +55953,7 @@
55921
55953
  // all enumerable object keys, includes symbols
55922
55954
  var getKeys = _objectKeys;
55923
55955
  var gOPS$1 = _objectGops;
55924
- var pIE$1 = require_objectPie();
55956
+ var pIE$1 = _objectPie;
55925
55957
  var _enumKeys = function (it) {
55926
55958
  var result = getKeys(it);
55927
55959
  var getSymbols = gOPS$1.f;
@@ -55974,15 +56006,15 @@
55974
56006
 
55975
56007
  var _objectGopd = {};
55976
56008
 
55977
- var pIE = require_objectPie();
56009
+ var pIE = _objectPie;
55978
56010
  var createDesc$1 = _propertyDesc;
55979
56011
  var toIObject$1 = _toIobject;
55980
56012
  var toPrimitive$1 = _toPrimitive;
55981
56013
  var has$6 = _has;
55982
- var IE8_DOM_DEFINE = _ie8DomDefine;
56014
+ var IE8_DOM_DEFINE = require_ie8DomDefine();
55983
56015
  var gOPD$2 = Object.getOwnPropertyDescriptor;
55984
56016
 
55985
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
56017
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
55986
56018
  O = toIObject$1(O);
55987
56019
  P = toPrimitive$1(P, true);
55988
56020
  if (IE8_DOM_DEFINE) try {
@@ -55994,7 +56026,7 @@
55994
56026
  // ECMAScript 6 symbols shim
55995
56027
  var global$1 = _globalExports;
55996
56028
  var has$5 = _has;
55997
- var DESCRIPTORS = _descriptors;
56029
+ var DESCRIPTORS = require_descriptors();
55998
56030
  var $export$2 = _export;
55999
56031
  var redefine = _redefine;
56000
56032
  var META = _metaExports.KEY;
@@ -56013,11 +56045,11 @@
56013
56045
  var toIObject = _toIobject;
56014
56046
  var toPrimitive = _toPrimitive;
56015
56047
  var createDesc = _propertyDesc;
56016
- var _create$1 = _objectCreate;
56048
+ var _create$1 = require_objectCreate();
56017
56049
  var gOPNExt = _objectGopnExt;
56018
56050
  var $GOPD = _objectGopd;
56019
56051
  var $GOPS = _objectGops;
56020
- var $DP = _objectDp;
56052
+ var $DP = require_objectDp();
56021
56053
  var $keys$1 = _objectKeys;
56022
56054
  var gOPD$1 = $GOPD.f;
56023
56055
  var dP = $DP.f;
@@ -56142,7 +56174,7 @@
56142
56174
  $GOPD.f = $getOwnPropertyDescriptor;
56143
56175
  $DP.f = $defineProperty;
56144
56176
  _objectGopn.f = gOPNExt.f = $getOwnPropertyNames;
56145
- require_objectPie().f = $propertyIsEnumerable;
56177
+ _objectPie.f = $propertyIsEnumerable;
56146
56178
  $GOPS.f = $getOwnPropertySymbols;
56147
56179
 
56148
56180
  if (DESCRIPTORS && !_library) {
@@ -56323,7 +56355,7 @@
56323
56355
 
56324
56356
  var $export = _export;
56325
56357
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
56326
- $export($export.S, 'Object', { create: _objectCreate });
56358
+ $export($export.S, 'Object', { create: require_objectCreate() });
56327
56359
 
56328
56360
  var $Object = _coreExports.Object;
56329
56361
  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.3.2",
3
+ "version": "0.3.4",
4
4
  "main": "./src/index.js",
5
5
  "dependencies": {
6
- "@teselagen/file-utils": "0.3.2",
7
- "@teselagen/bounce-loader": "0.3.2",
6
+ "@teselagen/file-utils": "0.3.4",
7
+ "@teselagen/bounce-loader": "0.3.4",
8
8
  "@blueprintjs/core": "3.52.0",
9
9
  "@blueprintjs/datetime": "3.23.19",
10
10
  "@blueprintjs/icons": "3.33.0",