@teselagen/ui 0.0.26 → 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 +129 -98
  2. package/package.json +2 -2
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;
@@ -55147,14 +55162,14 @@
55147
55162
  var has$a = _has;
55148
55163
  var toIObject$4 = _toIobject;
55149
55164
  var arrayIndexOf = _arrayIncludes(false);
55150
- var IE_PROTO$2 = _sharedKey('IE_PROTO');
55165
+ var IE_PROTO$1 = _sharedKey('IE_PROTO');
55151
55166
 
55152
55167
  var _objectKeysInternal = function (object, names) {
55153
55168
  var O = toIObject$4(object);
55154
55169
  var i = 0;
55155
55170
  var result = [];
55156
55171
  var key;
55157
- 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);
55158
55173
  // Don't enum bug & hidden keys
55159
55174
  while (names.length > i) if (has$a(O, key = names[i++])) {
55160
55175
  ~arrayIndexOf(result, key) || result.push(key);
@@ -55169,10 +55184,10 @@
55169
55184
 
55170
55185
  // 19.1.2.14 / 15.2.3.14 Object.keys(O)
55171
55186
  var $keys$3 = _objectKeysInternal;
55172
- var enumBugKeys$1 = _enumBugKeys;
55187
+ var enumBugKeys = _enumBugKeys;
55173
55188
 
55174
55189
  var _objectKeys = Object.keys || function keys(O) {
55175
- return $keys$3(O, enumBugKeys$1);
55190
+ return $keys$3(O, enumBugKeys);
55176
55191
  };
55177
55192
 
55178
55193
  var _objectGops = {};
@@ -55203,7 +55218,7 @@
55203
55218
  if (hasRequired_objectAssign) return _objectAssign;
55204
55219
  hasRequired_objectAssign = 1;
55205
55220
  // 19.1.2.1 Object.assign(target, source, ...)
55206
- var DESCRIPTORS = _descriptors;
55221
+ var DESCRIPTORS = require_descriptors();
55207
55222
  var getKeys = _objectKeys;
55208
55223
  var gOPS = _objectGops;
55209
55224
  var pIE = require_objectPie();
@@ -55279,19 +55294,27 @@
55279
55294
 
55280
55295
  var _redefine = _hide;
55281
55296
 
55282
- var dP$1 = _objectDp;
55283
- var anObject$4 = _anObject;
55284
- var getKeys$1 = _objectKeys;
55297
+ var _objectDps;
55298
+ var hasRequired_objectDps;
55285
55299
 
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
- };
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
+ }
55295
55318
 
55296
55319
  var _html;
55297
55320
  var hasRequired_html;
@@ -55304,47 +55327,55 @@
55304
55327
  return _html;
55305
55328
  }
55306
55329
 
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';
55330
+ var _objectCreate;
55331
+ var hasRequired_objectCreate;
55314
55332
 
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
- };
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
+ }
55348
55379
 
55349
55380
  var _wks = {exports: {}};
55350
55381
 
@@ -55362,7 +55393,7 @@
55362
55393
 
55363
55394
  var _wksExports = _wks.exports;
55364
55395
 
55365
- var def = _objectDp.f;
55396
+ var def = require_objectDp().f;
55366
55397
  var has$9 = _has;
55367
55398
  var TAG$1 = _wksExports('toStringTag');
55368
55399
 
@@ -55370,7 +55401,7 @@
55370
55401
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1)) def(it, TAG$1, { configurable: true, value: tag });
55371
55402
  };
55372
55403
 
55373
- var create$3 = _objectCreate;
55404
+ var create$3 = require_objectCreate();
55374
55405
  var descriptor = _propertyDesc;
55375
55406
  var setToStringTag$2 = _setToStringTag;
55376
55407
  var IteratorPrototype = {};
@@ -55676,7 +55707,7 @@
55676
55707
  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
55677
55708
  };
55678
55709
 
55679
- var $defineProperty$1 = _objectDp;
55710
+ var $defineProperty$1 = require_objectDp();
55680
55711
  var createDesc$2 = _propertyDesc;
55681
55712
 
55682
55713
  var _createProperty = function (object, index, value) {
@@ -55809,7 +55840,7 @@
55809
55840
 
55810
55841
  var $export$3 = _export;
55811
55842
  // 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 });
55843
+ $export$3($export$3.S + $export$3.F * !require_descriptors(), 'Object', { defineProperty: require_objectDp().f });
55813
55844
 
55814
55845
  var $Object$1 = _coreExports.Object;
55815
55846
  var defineProperty$6 = function defineProperty(it, key, desc) {
@@ -55857,7 +55888,7 @@
55857
55888
  var META$1 = _uid('meta');
55858
55889
  var isObject$5 = _isObject;
55859
55890
  var has$7 = _has;
55860
- var setDesc = _objectDp.f;
55891
+ var setDesc = require_objectDp().f;
55861
55892
  var id = 0;
55862
55893
  var isExtensible = Object.isExtensible || function () {
55863
55894
  return true;
@@ -55912,7 +55943,7 @@
55912
55943
 
55913
55944
  var core = _coreExports;
55914
55945
  var wksExt$1 = _wksExt;
55915
- var defineProperty$4 = _objectDp.f;
55946
+ var defineProperty$4 = require_objectDp().f;
55916
55947
  var _wksDefine = function (name) {
55917
55948
  var $Symbol = core.Symbol || (core.Symbol = {} );
55918
55949
  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty$4($Symbol, name, { value: wksExt$1.f(name) });
@@ -55982,7 +56013,7 @@
55982
56013
  var IE8_DOM_DEFINE = _ie8DomDefine;
55983
56014
  var gOPD$2 = Object.getOwnPropertyDescriptor;
55984
56015
 
55985
- _objectGopd.f = _descriptors ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
56016
+ _objectGopd.f = require_descriptors() ? gOPD$2 : function getOwnPropertyDescriptor(O, P) {
55986
56017
  O = toIObject$1(O);
55987
56018
  P = toPrimitive$1(P, true);
55988
56019
  if (IE8_DOM_DEFINE) try {
@@ -55994,7 +56025,7 @@
55994
56025
  // ECMAScript 6 symbols shim
55995
56026
  var global$1 = _globalExports;
55996
56027
  var has$5 = _has;
55997
- var DESCRIPTORS = _descriptors;
56028
+ var DESCRIPTORS = require_descriptors();
55998
56029
  var $export$2 = _export;
55999
56030
  var redefine = _redefine;
56000
56031
  var META = _metaExports.KEY;
@@ -56013,11 +56044,11 @@
56013
56044
  var toIObject = _toIobject;
56014
56045
  var toPrimitive = _toPrimitive;
56015
56046
  var createDesc = _propertyDesc;
56016
- var _create$1 = _objectCreate;
56047
+ var _create$1 = require_objectCreate();
56017
56048
  var gOPNExt = _objectGopnExt;
56018
56049
  var $GOPD = _objectGopd;
56019
56050
  var $GOPS = _objectGops;
56020
- var $DP = _objectDp;
56051
+ var $DP = require_objectDp();
56021
56052
  var $keys$1 = _objectKeys;
56022
56053
  var gOPD$1 = $GOPD.f;
56023
56054
  var dP = $DP.f;
@@ -56323,7 +56354,7 @@
56323
56354
 
56324
56355
  var $export = _export;
56325
56356
  // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
56326
- $export($export.S, 'Object', { create: _objectCreate });
56357
+ $export($export.S, 'Object', { create: require_objectCreate() });
56327
56358
 
56328
56359
  var $Object = _coreExports.Object;
56329
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.26",
3
+ "version": "0.0.27",
4
4
  "main": "./src/index.js",
5
5
  "dependencies": {
6
6
  "@teselagen/file-utils": "0.2.28",
7
- "@teselagen/bounce-loader": "0.0.15",
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",