@teselagen/ui 0.3.60 → 0.3.61

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/index.es.js CHANGED
@@ -2819,7 +2819,7 @@ var followCursor = {
2819
2819
  }
2820
2820
  }
2821
2821
  __name(onMouseMove, "onMouseMove");
2822
- function create5() {
2822
+ function create6() {
2823
2823
  if (instance.props.followCursor) {
2824
2824
  activeInstances.push({
2825
2825
  instance,
@@ -2828,7 +2828,7 @@ var followCursor = {
2828
2828
  addMouseCoordsListener(doc);
2829
2829
  }
2830
2830
  }
2831
- __name(create5, "create");
2831
+ __name(create6, "create");
2832
2832
  function destroy2() {
2833
2833
  activeInstances = activeInstances.filter(function(data) {
2834
2834
  return data.instance !== instance;
@@ -2841,7 +2841,7 @@ var followCursor = {
2841
2841
  }
2842
2842
  __name(destroy2, "destroy");
2843
2843
  return {
2844
- onCreate: create5,
2844
+ onCreate: create6,
2845
2845
  onDestroy: destroy2,
2846
2846
  onBeforeUpdate: /* @__PURE__ */ __name(function onBeforeUpdate2() {
2847
2847
  prevProps = instance.props;
@@ -2854,7 +2854,7 @@ var followCursor = {
2854
2854
  if (followCursor2 !== void 0 && prevProps.followCursor !== followCursor2) {
2855
2855
  destroy2();
2856
2856
  if (followCursor2) {
2857
- create5();
2857
+ create6();
2858
2858
  if (instance.state.isMounted && !wasFocusEvent && !getIsInitialBehavior()) {
2859
2859
  addListener();
2860
2860
  }
@@ -3021,7 +3021,7 @@ let clearMe;
3021
3021
  inner(dataTip, el, opts);
3022
3022
  break;
3023
3023
  } else if (isEllipsized && el.offsetWidth < el.scrollWidth - 4 && //the -4 is adding a teeny bit of tolerance to fix issues with the column headers getting tooltips even when fully visible
3024
- !el.classList.contains("no-data-tip") && !document.body.classList.contains("drag-active") && el.textContent && ((_b = (_a2 = el.textContent) == null ? void 0 : _a2.trim) == null ? void 0 : _b.call(_a2).length) !== 0) {
3024
+ !el.classList.contains("no-data-tip") && !parentIncludesNoChildDataTip(el, 0) && !document.body.classList.contains("drag-active") && el.textContent && ((_b = (_a2 = el.textContent) == null ? void 0 : _a2.trim) == null ? void 0 : _b.call(_a2).length) !== 0) {
3025
3025
  inner(el.textContent, el, opts);
3026
3026
  break;
3027
3027
  } else if (isEllipsized && el.offsetWidth >= el.scrollWidth)
@@ -3034,6 +3034,16 @@ let clearMe;
3034
3034
  }
3035
3035
  });
3036
3036
  })();
3037
+ function parentIncludesNoChildDataTip(el, count) {
3038
+ if (count > 4)
3039
+ return false;
3040
+ if (!el)
3041
+ return false;
3042
+ if (el.classList.contains("no-child-data-tip"))
3043
+ return true;
3044
+ return parentIncludesNoChildDataTip(el.parentElement, count + 1);
3045
+ }
3046
+ __name(parentIncludesNoChildDataTip, "parentIncludesNoChildDataTip");
3037
3047
  const AssignDefaultsModeContext = React__default.createContext({
3038
3048
  inAssignDefaultsMode: false,
3039
3049
  // eslint-disable-next-line @typescript-eslint/no-empty-function
@@ -15123,11 +15133,11 @@ lodash.exports;
15123
15133
  copyObject2(source, keys3(source), object2, customizer);
15124
15134
  });
15125
15135
  var at = flatRest(baseAt);
15126
- function create5(prototype, properties) {
15136
+ function create6(prototype, properties) {
15127
15137
  var result2 = baseCreate2(prototype);
15128
15138
  return properties == null ? result2 : baseAssign2(result2, properties);
15129
15139
  }
15130
- __name(create5, "create");
15140
+ __name(create6, "create");
15131
15141
  var defaults2 = baseRest2(function(object2, sources) {
15132
15142
  object2 = Object2(object2);
15133
15143
  var index2 = -1;
@@ -15952,7 +15962,7 @@ lodash.exports;
15952
15962
  lodash2.conforms = conforms;
15953
15963
  lodash2.constant = constant2;
15954
15964
  lodash2.countBy = countBy;
15955
- lodash2.create = create5;
15965
+ lodash2.create = create6;
15956
15966
  lodash2.curry = curry;
15957
15967
  lodash2.curryRight = curryRight;
15958
15968
  lodash2.debounce = debounce2;
@@ -16976,17 +16986,17 @@ var _toPrimitive = /* @__PURE__ */ __name(function(it, S2) {
16976
16986
  return val;
16977
16987
  throw TypeError("Can't convert object to primitive value");
16978
16988
  }, "_toPrimitive");
16979
- var anObject$3 = _anObject;
16989
+ var anObject$5 = _anObject;
16980
16990
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
16981
16991
  var toPrimitive$2 = _toPrimitive;
16982
- var dP$2 = Object.defineProperty;
16992
+ var dP$3 = Object.defineProperty;
16983
16993
  _objectDp.f = _descriptors ? Object.defineProperty : /* @__PURE__ */ __name(function defineProperty2(O2, P2, Attributes) {
16984
- anObject$3(O2);
16994
+ anObject$5(O2);
16985
16995
  P2 = toPrimitive$2(P2, true);
16986
- anObject$3(Attributes);
16996
+ anObject$5(Attributes);
16987
16997
  if (IE8_DOM_DEFINE$1)
16988
16998
  try {
16989
- return dP$2(O2, P2, Attributes);
16999
+ return dP$3(O2, P2, Attributes);
16990
17000
  } catch (e2) {
16991
17001
  }
16992
17002
  if ("get" in Attributes || "set" in Attributes)
@@ -17003,10 +17013,10 @@ var _propertyDesc = /* @__PURE__ */ __name(function(bitmap, value) {
17003
17013
  value
17004
17014
  };
17005
17015
  }, "_propertyDesc");
17006
- var dP$1 = _objectDp;
17016
+ var dP$2 = _objectDp;
17007
17017
  var createDesc$3 = _propertyDesc;
17008
17018
  var _hide = _descriptors ? function(object2, key, value) {
17009
- return dP$1.f(object2, key, createDesc$3(1, value));
17019
+ return dP$2.f(object2, key, createDesc$3(1, value));
17010
17020
  } : function(object2, key, value) {
17011
17021
  object2[key] = value;
17012
17022
  return object2;
@@ -17020,7 +17030,7 @@ var core$3 = _coreExports;
17020
17030
  var ctx$1 = _ctx;
17021
17031
  var hide$2 = _hide;
17022
17032
  var has$b = _has;
17023
- var PROTOTYPE$1 = "prototype";
17033
+ var PROTOTYPE$2 = "prototype";
17024
17034
  var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
17025
17035
  var IS_FORCED = type & $export$8.F;
17026
17036
  var IS_GLOBAL = type & $export$8.G;
@@ -17029,8 +17039,8 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
17029
17039
  var IS_BIND = type & $export$8.B;
17030
17040
  var IS_WRAP = type & $export$8.W;
17031
17041
  var exports2 = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
17032
- var expProto = exports2[PROTOTYPE$1];
17033
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
17042
+ var expProto = exports2[PROTOTYPE$2];
17043
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
17034
17044
  var key, own2, out;
17035
17045
  if (IS_GLOBAL)
17036
17046
  source = name;
@@ -17054,7 +17064,7 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
17054
17064
  }
17055
17065
  return C.apply(this, arguments);
17056
17066
  }, "F");
17057
- F[PROTOTYPE$1] = C[PROTOTYPE$1];
17067
+ F[PROTOTYPE$2] = C[PROTOTYPE$2];
17058
17068
  return F;
17059
17069
  }(out) : IS_PROTO && typeof out == "function" ? ctx$1(Function.call, out) : out;
17060
17070
  if (IS_PROTO) {
@@ -17168,14 +17178,14 @@ var _sharedKey = /* @__PURE__ */ __name(function(key) {
17168
17178
  var has$a = _has;
17169
17179
  var toIObject$4 = _toIobject;
17170
17180
  var arrayIndexOf = _arrayIncludes(false);
17171
- var IE_PROTO$1 = _sharedKey("IE_PROTO");
17181
+ var IE_PROTO$2 = _sharedKey("IE_PROTO");
17172
17182
  var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
17173
17183
  var O2 = toIObject$4(object2);
17174
17184
  var i = 0;
17175
17185
  var result = [];
17176
17186
  var key;
17177
17187
  for (key in O2)
17178
- if (key != IE_PROTO$1)
17188
+ if (key != IE_PROTO$2)
17179
17189
  has$a(O2, key) && result.push(key);
17180
17190
  while (names2.length > i)
17181
17191
  if (has$a(O2, key = names2[i++])) {
@@ -17185,9 +17195,9 @@ var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
17185
17195
  }, "_objectKeysInternal");
17186
17196
  var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
17187
17197
  var $keys$3 = _objectKeysInternal;
17188
- var enumBugKeys = _enumBugKeys;
17198
+ var enumBugKeys$1 = _enumBugKeys;
17189
17199
  var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys(O2) {
17190
- return $keys$3(O2, enumBugKeys);
17200
+ return $keys$3(O2, enumBugKeys$1);
17191
17201
  }, "keys");
17192
17202
  var _objectGops = {};
17193
17203
  _objectGops.f = Object.getOwnPropertySymbols;
@@ -17277,28 +17287,19 @@ var _iterStep = /* @__PURE__ */ __name(function(done, value) {
17277
17287
  }, "_iterStep");
17278
17288
  var _iterators = {};
17279
17289
  var _redefine = _hide;
17280
- var _objectDps;
17281
- var hasRequired_objectDps;
17282
- function require_objectDps() {
17283
- if (hasRequired_objectDps)
17284
- return _objectDps;
17285
- hasRequired_objectDps = 1;
17286
- var dP2 = _objectDp;
17287
- var anObject2 = _anObject;
17288
- var getKeys2 = _objectKeys;
17289
- _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties2(O2, Properties) {
17290
- anObject2(O2);
17291
- var keys3 = getKeys2(Properties);
17292
- var length = keys3.length;
17293
- var i = 0;
17294
- var P2;
17295
- while (length > i)
17296
- dP2.f(O2, P2 = keys3[i++], Properties[P2]);
17297
- return O2;
17298
- }, "defineProperties");
17299
- return _objectDps;
17300
- }
17301
- __name(require_objectDps, "require_objectDps");
17290
+ var dP$1 = _objectDp;
17291
+ var anObject$4 = _anObject;
17292
+ var getKeys$1 = _objectKeys;
17293
+ var _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties(O2, Properties) {
17294
+ anObject$4(O2);
17295
+ var keys3 = getKeys$1(Properties);
17296
+ var length = keys3.length;
17297
+ var i = 0;
17298
+ var P2;
17299
+ while (length > i)
17300
+ dP$1.f(O2, P2 = keys3[i++], Properties[P2]);
17301
+ return O2;
17302
+ }, "defineProperties");
17302
17303
  var _html;
17303
17304
  var hasRequired_html;
17304
17305
  function require_html() {
@@ -17310,51 +17311,42 @@ function require_html() {
17310
17311
  return _html;
17311
17312
  }
17312
17313
  __name(require_html, "require_html");
17313
- var _objectCreate;
17314
- var hasRequired_objectCreate;
17315
- function require_objectCreate() {
17316
- if (hasRequired_objectCreate)
17317
- return _objectCreate;
17318
- hasRequired_objectCreate = 1;
17319
- var anObject2 = _anObject;
17320
- var dPs = require_objectDps();
17321
- var enumBugKeys2 = _enumBugKeys;
17322
- var IE_PROTO2 = _sharedKey("IE_PROTO");
17323
- var Empty = /* @__PURE__ */ __name(function() {
17324
- }, "Empty");
17325
- var PROTOTYPE2 = "prototype";
17326
- var createDict = /* @__PURE__ */ __name(function() {
17327
- var iframe = require_domCreate()("iframe");
17328
- var i = enumBugKeys2.length;
17329
- var lt = "<";
17330
- var gt = ">";
17331
- var iframeDocument;
17332
- iframe.style.display = "none";
17333
- require_html().appendChild(iframe);
17334
- iframe.src = "javascript:";
17335
- iframeDocument = iframe.contentWindow.document;
17336
- iframeDocument.open();
17337
- iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
17338
- iframeDocument.close();
17339
- createDict = iframeDocument.F;
17340
- while (i--)
17341
- delete createDict[PROTOTYPE2][enumBugKeys2[i]];
17342
- return createDict();
17343
- }, "createDict");
17344
- _objectCreate = Object.create || /* @__PURE__ */ __name(function create5(O2, Properties) {
17345
- var result;
17346
- if (O2 !== null) {
17347
- Empty[PROTOTYPE2] = anObject2(O2);
17348
- result = new Empty();
17349
- Empty[PROTOTYPE2] = null;
17350
- result[IE_PROTO2] = O2;
17351
- } else
17352
- result = createDict();
17353
- return Properties === void 0 ? result : dPs(result, Properties);
17354
- }, "create");
17355
- return _objectCreate;
17356
- }
17357
- __name(require_objectCreate, "require_objectCreate");
17314
+ var anObject$3 = _anObject;
17315
+ var dPs = _objectDps;
17316
+ var enumBugKeys = _enumBugKeys;
17317
+ var IE_PROTO$1 = _sharedKey("IE_PROTO");
17318
+ var Empty = /* @__PURE__ */ __name(function() {
17319
+ }, "Empty");
17320
+ var PROTOTYPE$1 = "prototype";
17321
+ var createDict = /* @__PURE__ */ __name(function() {
17322
+ var iframe = require_domCreate()("iframe");
17323
+ var i = enumBugKeys.length;
17324
+ var lt = "<";
17325
+ var gt = ">";
17326
+ var iframeDocument;
17327
+ iframe.style.display = "none";
17328
+ require_html().appendChild(iframe);
17329
+ iframe.src = "javascript:";
17330
+ iframeDocument = iframe.contentWindow.document;
17331
+ iframeDocument.open();
17332
+ iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
17333
+ iframeDocument.close();
17334
+ createDict = iframeDocument.F;
17335
+ while (i--)
17336
+ delete createDict[PROTOTYPE$1][enumBugKeys[i]];
17337
+ return createDict();
17338
+ }, "createDict");
17339
+ var _objectCreate = Object.create || /* @__PURE__ */ __name(function create(O2, Properties) {
17340
+ var result;
17341
+ if (O2 !== null) {
17342
+ Empty[PROTOTYPE$1] = anObject$3(O2);
17343
+ result = new Empty();
17344
+ Empty[PROTOTYPE$1] = null;
17345
+ result[IE_PROTO$1] = O2;
17346
+ } else
17347
+ result = createDict();
17348
+ return Properties === void 0 ? result : dPs(result, Properties);
17349
+ }, "create");
17358
17350
  var _wks = { exports: {} };
17359
17351
  var store = _sharedExports("wks");
17360
17352
  var uid$1 = _uid;
@@ -17372,7 +17364,7 @@ var _setToStringTag = /* @__PURE__ */ __name(function(it, tag, stat) {
17372
17364
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1))
17373
17365
  def(it, TAG$1, { configurable: true, value: tag });
17374
17366
  }, "_setToStringTag");
17375
- var create$3 = require_objectCreate();
17367
+ var create$3 = _objectCreate;
17376
17368
  var descriptor = _propertyDesc;
17377
17369
  var setToStringTag$2 = _setToStringTag;
17378
17370
  var IteratorPrototype = {};
@@ -17780,7 +17772,7 @@ function _interopRequireDefault$e(obj) {
17780
17772
  }
17781
17773
  __name(_interopRequireDefault$e, "_interopRequireDefault$e");
17782
17774
  var _default$7 = function() {
17783
- function defineProperties2(target, props) {
17775
+ function defineProperties3(target, props) {
17784
17776
  for (var i = 0; i < props.length; i++) {
17785
17777
  var descriptor2 = props[i];
17786
17778
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -17790,12 +17782,12 @@ var _default$7 = function() {
17790
17782
  (0, _defineProperty2.default)(target, descriptor2.key, descriptor2);
17791
17783
  }
17792
17784
  }
17793
- __name(defineProperties2, "defineProperties");
17785
+ __name(defineProperties3, "defineProperties");
17794
17786
  return function(Constructor, protoProps, staticProps) {
17795
17787
  if (protoProps)
17796
- defineProperties2(Constructor.prototype, protoProps);
17788
+ defineProperties3(Constructor.prototype, protoProps);
17797
17789
  if (staticProps)
17798
- defineProperties2(Constructor, staticProps);
17790
+ defineProperties3(Constructor, staticProps);
17799
17791
  return Constructor;
17800
17792
  };
17801
17793
  }();
@@ -17824,23 +17816,23 @@ var setMeta = /* @__PURE__ */ __name(function(it) {
17824
17816
  // weak collections IDs
17825
17817
  } });
17826
17818
  }, "setMeta");
17827
- var fastKey = /* @__PURE__ */ __name(function(it, create5) {
17819
+ var fastKey = /* @__PURE__ */ __name(function(it, create6) {
17828
17820
  if (!isObject$c(it))
17829
17821
  return typeof it == "symbol" ? it : (typeof it == "string" ? "S" : "P") + it;
17830
17822
  if (!has$7(it, META$1)) {
17831
17823
  if (!isExtensible(it))
17832
17824
  return "F";
17833
- if (!create5)
17825
+ if (!create6)
17834
17826
  return "E";
17835
17827
  setMeta(it);
17836
17828
  }
17837
17829
  return it[META$1].i;
17838
17830
  }, "fastKey");
17839
- var getWeak = /* @__PURE__ */ __name(function(it, create5) {
17831
+ var getWeak = /* @__PURE__ */ __name(function(it, create6) {
17840
17832
  if (!has$7(it, META$1)) {
17841
17833
  if (!isExtensible(it))
17842
17834
  return true;
17843
- if (!create5)
17835
+ if (!create6)
17844
17836
  return false;
17845
17837
  setMeta(it);
17846
17838
  }
@@ -17949,7 +17941,7 @@ var toObject$1 = _toObject;
17949
17941
  var toIObject = _toIobject;
17950
17942
  var toPrimitive = _toPrimitive;
17951
17943
  var createDesc = _propertyDesc;
17952
- var _create$1 = require_objectCreate();
17944
+ var _create$1 = _objectCreate;
17953
17945
  var gOPNExt = _objectGopnExt;
17954
17946
  var $GOPD = _objectGopd;
17955
17947
  var $GOPS = _objectGops;
@@ -18016,7 +18008,7 @@ var $defineProperty = /* @__PURE__ */ __name(function defineProperty4(it, key, D
18016
18008
  }
18017
18009
  return dP(it, key, D2);
18018
18010
  }, "defineProperty");
18019
- var $defineProperties = /* @__PURE__ */ __name(function defineProperties(it, P2) {
18011
+ var $defineProperties = /* @__PURE__ */ __name(function defineProperties2(it, P2) {
18020
18012
  anObject(it);
18021
18013
  var keys3 = enumKeys(P2 = toIObject(P2));
18022
18014
  var i = 0;
@@ -18026,7 +18018,7 @@ var $defineProperties = /* @__PURE__ */ __name(function defineProperties(it, P2)
18026
18018
  $defineProperty(it, key = keys3[i++], P2[key]);
18027
18019
  return it;
18028
18020
  }, "defineProperties");
18029
- var $create = /* @__PURE__ */ __name(function create(it, P2) {
18021
+ var $create = /* @__PURE__ */ __name(function create2(it, P2) {
18030
18022
  return P2 === void 0 ? _create$1(it) : $defineProperties(_create$1(it), P2);
18031
18023
  }, "create");
18032
18024
  var $propertyIsEnumerable = /* @__PURE__ */ __name(function propertyIsEnumerable(key) {
@@ -18256,9 +18248,9 @@ $export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
18256
18248
  var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
18257
18249
  var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
18258
18250
  var $export = _export;
18259
- $export($export.S, "Object", { create: require_objectCreate() });
18251
+ $export($export.S, "Object", { create: _objectCreate });
18260
18252
  var $Object$1 = _coreExports.Object;
18261
- var create$2 = /* @__PURE__ */ __name(function create2(P2, D2) {
18253
+ var create$2 = /* @__PURE__ */ __name(function create3(P2, D2) {
18262
18254
  return $Object$1.create(P2, D2);
18263
18255
  }, "create");
18264
18256
  var create$1 = { "default": create$2, __esModule: true };
@@ -22345,7 +22337,7 @@ function normalizeComponent(Comp) {
22345
22337
  }
22346
22338
  __name(normalizeComponent, "normalizeComponent");
22347
22339
  var _createClass$c = function() {
22348
- function defineProperties2(target, props) {
22340
+ function defineProperties3(target, props) {
22349
22341
  for (var i = 0; i < props.length; i++) {
22350
22342
  var descriptor2 = props[i];
22351
22343
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -22355,12 +22347,12 @@ var _createClass$c = function() {
22355
22347
  Object.defineProperty(target, descriptor2.key, descriptor2);
22356
22348
  }
22357
22349
  }
22358
- __name(defineProperties2, "defineProperties");
22350
+ __name(defineProperties3, "defineProperties");
22359
22351
  return function(Constructor, protoProps, staticProps) {
22360
22352
  if (protoProps)
22361
- defineProperties2(Constructor.prototype, protoProps);
22353
+ defineProperties3(Constructor.prototype, protoProps);
22362
22354
  if (staticProps)
22363
- defineProperties2(Constructor, staticProps);
22355
+ defineProperties3(Constructor, staticProps);
22364
22356
  return Constructor;
22365
22357
  };
22366
22358
  }();
@@ -22521,7 +22513,7 @@ var _extends$l = Object.assign || function(target) {
22521
22513
  return target;
22522
22514
  };
22523
22515
  var _createClass$b = function() {
22524
- function defineProperties2(target, props) {
22516
+ function defineProperties3(target, props) {
22525
22517
  for (var i = 0; i < props.length; i++) {
22526
22518
  var descriptor2 = props[i];
22527
22519
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -22531,12 +22523,12 @@ var _createClass$b = function() {
22531
22523
  Object.defineProperty(target, descriptor2.key, descriptor2);
22532
22524
  }
22533
22525
  }
22534
- __name(defineProperties2, "defineProperties");
22526
+ __name(defineProperties3, "defineProperties");
22535
22527
  return function(Constructor, protoProps, staticProps) {
22536
22528
  if (protoProps)
22537
- defineProperties2(Constructor.prototype, protoProps);
22529
+ defineProperties3(Constructor.prototype, protoProps);
22538
22530
  if (staticProps)
22539
- defineProperties2(Constructor, staticProps);
22531
+ defineProperties3(Constructor, staticProps);
22540
22532
  return Constructor;
22541
22533
  };
22542
22534
  }();
@@ -23127,7 +23119,7 @@ const Methods = /* @__PURE__ */ __name(function(Base) {
23127
23119
  }(Base);
23128
23120
  }, "Methods");
23129
23121
  var _createClass$a = function() {
23130
- function defineProperties2(target, props) {
23122
+ function defineProperties3(target, props) {
23131
23123
  for (var i = 0; i < props.length; i++) {
23132
23124
  var descriptor2 = props[i];
23133
23125
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -23137,12 +23129,12 @@ var _createClass$a = function() {
23137
23129
  Object.defineProperty(target, descriptor2.key, descriptor2);
23138
23130
  }
23139
23131
  }
23140
- __name(defineProperties2, "defineProperties");
23132
+ __name(defineProperties3, "defineProperties");
23141
23133
  return function(Constructor, protoProps, staticProps) {
23142
23134
  if (protoProps)
23143
- defineProperties2(Constructor.prototype, protoProps);
23135
+ defineProperties3(Constructor.prototype, protoProps);
23144
23136
  if (staticProps)
23145
- defineProperties2(Constructor, staticProps);
23137
+ defineProperties3(Constructor, staticProps);
23146
23138
  return Constructor;
23147
23139
  };
23148
23140
  }();
@@ -23914,7 +23906,7 @@ var _extends$i = Object.assign || function(target) {
23914
23906
  return target;
23915
23907
  };
23916
23908
  var _createClass$9 = function() {
23917
- function defineProperties2(target, props) {
23909
+ function defineProperties3(target, props) {
23918
23910
  for (var i = 0; i < props.length; i++) {
23919
23911
  var descriptor2 = props[i];
23920
23912
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -23924,12 +23916,12 @@ var _createClass$9 = function() {
23924
23916
  Object.defineProperty(target, descriptor2.key, descriptor2);
23925
23917
  }
23926
23918
  }
23927
- __name(defineProperties2, "defineProperties");
23919
+ __name(defineProperties3, "defineProperties");
23928
23920
  return function(Constructor, protoProps, staticProps) {
23929
23921
  if (protoProps)
23930
- defineProperties2(Constructor.prototype, protoProps);
23922
+ defineProperties3(Constructor.prototype, protoProps);
23931
23923
  if (staticProps)
23932
- defineProperties2(Constructor, staticProps);
23924
+ defineProperties3(Constructor, staticProps);
23933
23925
  return Constructor;
23934
23926
  };
23935
23927
  }();
@@ -30253,21 +30245,21 @@ function parse$5(options) {
30253
30245
  defined: [],
30254
30246
  lazy: {},
30255
30247
  constructs: constructs2,
30256
- content: create5(content$1),
30257
- document: create5(document$2),
30258
- flow: create5(flow$1),
30259
- string: create5(string$1),
30260
- text: create5(text$3)
30248
+ content: create6(content$1),
30249
+ document: create6(document$2),
30250
+ flow: create6(flow$1),
30251
+ string: create6(string$1),
30252
+ text: create6(text$3)
30261
30253
  };
30262
30254
  return parser;
30263
- function create5(initial) {
30255
+ function create6(initial) {
30264
30256
  return creator;
30265
30257
  function creator(from3) {
30266
30258
  return createTokenizer(parser, initial, from3);
30267
30259
  }
30268
30260
  __name(creator, "creator");
30269
30261
  }
30270
- __name(create5, "create");
30262
+ __name(create6, "create");
30271
30263
  }
30272
30264
  __name(parse$5, "parse$5");
30273
30265
  const search$1 = /[\0\t\n\r]/g;
@@ -30678,10 +30670,10 @@ function compiler(options) {
30678
30670
  return data[key];
30679
30671
  }
30680
30672
  __name(getData, "getData");
30681
- function opener(create5, and) {
30673
+ function opener(create6, and) {
30682
30674
  return open2;
30683
30675
  function open2(token) {
30684
- enter.call(this, create5(token), token);
30676
+ enter.call(this, create6(token), token);
30685
30677
  if (and)
30686
30678
  and.call(this, token);
30687
30679
  }
@@ -32443,7 +32435,7 @@ function mark(values, key, value) {
32443
32435
  }
32444
32436
  __name(mark, "mark");
32445
32437
  const own$3 = {}.hasOwnProperty;
32446
- function create3(definition2) {
32438
+ function create4(definition2) {
32447
32439
  const property2 = {};
32448
32440
  const normal = {};
32449
32441
  let prop;
@@ -32466,8 +32458,8 @@ function create3(definition2) {
32466
32458
  }
32467
32459
  return new Schema(property2, normal, definition2.space);
32468
32460
  }
32469
- __name(create3, "create");
32470
- const xlink = create3({
32461
+ __name(create4, "create");
32462
+ const xlink = create4({
32471
32463
  space: "xlink",
32472
32464
  transform(_2, prop) {
32473
32465
  return "xlink:" + prop.slice(5).toLowerCase();
@@ -32482,7 +32474,7 @@ const xlink = create3({
32482
32474
  xLinkType: null
32483
32475
  }
32484
32476
  });
32485
- const xml = create3({
32477
+ const xml = create4({
32486
32478
  space: "xml",
32487
32479
  transform(_2, prop) {
32488
32480
  return "xml:" + prop.slice(3).toLowerCase();
@@ -32497,13 +32489,13 @@ function caseInsensitiveTransform(attributes, property2) {
32497
32489
  return caseSensitiveTransform(attributes, property2.toLowerCase());
32498
32490
  }
32499
32491
  __name(caseInsensitiveTransform, "caseInsensitiveTransform");
32500
- const xmlns = create3({
32492
+ const xmlns = create4({
32501
32493
  space: "xmlns",
32502
32494
  attributes: { xmlnsxlink: "xmlns:xlink" },
32503
32495
  transform: caseInsensitiveTransform,
32504
32496
  properties: { xmlns: null, xmlnsXLink: null }
32505
32497
  });
32506
- const aria = create3({
32498
+ const aria = create4({
32507
32499
  transform(_2, prop) {
32508
32500
  return prop === "role" ? prop : "aria-" + prop.slice(4).toLowerCase();
32509
32501
  },
@@ -32559,7 +32551,7 @@ const aria = create3({
32559
32551
  role: null
32560
32552
  }
32561
32553
  });
32562
- const html$1 = create3({
32554
+ const html$1 = create4({
32563
32555
  space: "html",
32564
32556
  attributes: {
32565
32557
  acceptcharset: "accept-charset",
@@ -32910,7 +32902,7 @@ const html$1 = create3({
32910
32902
  unselectable: null
32911
32903
  }
32912
32904
  });
32913
- const svg$1 = create3({
32905
+ const svg$1 = create4({
32914
32906
  space: "svg",
32915
32907
  attributes: {
32916
32908
  accentHeight: "accent-height",
@@ -39607,11 +39599,11 @@ var implementation$1 = /* @__PURE__ */ __name(function bind(that) {
39607
39599
  }
39608
39600
  bound = Function("binder", "return function (" + boundArgs.join(",") + "){ return binder.apply(this,arguments); }")(binder);
39609
39601
  if (target.prototype) {
39610
- var Empty = /* @__PURE__ */ __name(function Empty2() {
39602
+ var Empty2 = /* @__PURE__ */ __name(function Empty3() {
39611
39603
  }, "Empty");
39612
- Empty.prototype = target.prototype;
39613
- bound.prototype = new Empty();
39614
- Empty.prototype = null;
39604
+ Empty2.prototype = target.prototype;
39605
+ bound.prototype = new Empty2();
39606
+ Empty2.prototype = null;
39615
39607
  }
39616
39608
  return bound;
39617
39609
  }, "bind");
@@ -43786,7 +43778,7 @@ var _extends$c = Object.assign || function(target) {
43786
43778
  return target;
43787
43779
  };
43788
43780
  var _createClass$8 = function() {
43789
- function defineProperties2(target, props) {
43781
+ function defineProperties3(target, props) {
43790
43782
  for (var i = 0; i < props.length; i++) {
43791
43783
  var descriptor2 = props[i];
43792
43784
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -43796,12 +43788,12 @@ var _createClass$8 = function() {
43796
43788
  Object.defineProperty(target, descriptor2.key, descriptor2);
43797
43789
  }
43798
43790
  }
43799
- __name(defineProperties2, "defineProperties");
43791
+ __name(defineProperties3, "defineProperties");
43800
43792
  return function(Constructor, protoProps, staticProps) {
43801
43793
  if (protoProps)
43802
- defineProperties2(Constructor.prototype, protoProps);
43794
+ defineProperties3(Constructor.prototype, protoProps);
43803
43795
  if (staticProps)
43804
- defineProperties2(Constructor, staticProps);
43796
+ defineProperties3(Constructor, staticProps);
43805
43797
  return Constructor;
43806
43798
  };
43807
43799
  }();
@@ -43943,7 +43935,7 @@ var Alpha = function(_ref) {
43943
43935
  return Alpha2;
43944
43936
  }(PureComponent || Component);
43945
43937
  var _createClass$7 = function() {
43946
- function defineProperties2(target, props) {
43938
+ function defineProperties3(target, props) {
43947
43939
  for (var i = 0; i < props.length; i++) {
43948
43940
  var descriptor2 = props[i];
43949
43941
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -43953,12 +43945,12 @@ var _createClass$7 = function() {
43953
43945
  Object.defineProperty(target, descriptor2.key, descriptor2);
43954
43946
  }
43955
43947
  }
43956
- __name(defineProperties2, "defineProperties");
43948
+ __name(defineProperties3, "defineProperties");
43957
43949
  return function(Constructor, protoProps, staticProps) {
43958
43950
  if (protoProps)
43959
- defineProperties2(Constructor.prototype, protoProps);
43951
+ defineProperties3(Constructor.prototype, protoProps);
43960
43952
  if (staticProps)
43961
- defineProperties2(Constructor, staticProps);
43953
+ defineProperties3(Constructor, staticProps);
43962
43954
  return Constructor;
43963
43955
  };
43964
43956
  }();
@@ -44191,7 +44183,7 @@ var calculateChange$1 = /* @__PURE__ */ __name(function calculateChange2(e2, dir
44191
44183
  return null;
44192
44184
  }, "calculateChange");
44193
44185
  var _createClass$6 = function() {
44194
- function defineProperties2(target, props) {
44186
+ function defineProperties3(target, props) {
44195
44187
  for (var i = 0; i < props.length; i++) {
44196
44188
  var descriptor2 = props[i];
44197
44189
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -44201,12 +44193,12 @@ var _createClass$6 = function() {
44201
44193
  Object.defineProperty(target, descriptor2.key, descriptor2);
44202
44194
  }
44203
44195
  }
44204
- __name(defineProperties2, "defineProperties");
44196
+ __name(defineProperties3, "defineProperties");
44205
44197
  return function(Constructor, protoProps, staticProps) {
44206
44198
  if (protoProps)
44207
- defineProperties2(Constructor.prototype, protoProps);
44199
+ defineProperties3(Constructor.prototype, protoProps);
44208
44200
  if (staticProps)
44209
- defineProperties2(Constructor, staticProps);
44201
+ defineProperties3(Constructor, staticProps);
44210
44202
  return Constructor;
44211
44203
  };
44212
44204
  }();
@@ -45417,7 +45409,7 @@ var calculateChange3 = /* @__PURE__ */ __name(function calculateChange4(e2, hsl,
45417
45409
  };
45418
45410
  }, "calculateChange");
45419
45411
  var _createClass$5 = function() {
45420
- function defineProperties2(target, props) {
45412
+ function defineProperties3(target, props) {
45421
45413
  for (var i = 0; i < props.length; i++) {
45422
45414
  var descriptor2 = props[i];
45423
45415
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -45427,12 +45419,12 @@ var _createClass$5 = function() {
45427
45419
  Object.defineProperty(target, descriptor2.key, descriptor2);
45428
45420
  }
45429
45421
  }
45430
- __name(defineProperties2, "defineProperties");
45422
+ __name(defineProperties3, "defineProperties");
45431
45423
  return function(Constructor, protoProps, staticProps) {
45432
45424
  if (protoProps)
45433
- defineProperties2(Constructor.prototype, protoProps);
45425
+ defineProperties3(Constructor.prototype, protoProps);
45434
45426
  if (staticProps)
45435
- defineProperties2(Constructor, staticProps);
45427
+ defineProperties3(Constructor, staticProps);
45436
45428
  return Constructor;
45437
45429
  };
45438
45430
  }();
@@ -46734,7 +46726,7 @@ var _extends$b = Object.assign || function(target) {
46734
46726
  return target;
46735
46727
  };
46736
46728
  var _createClass$4 = function() {
46737
- function defineProperties2(target, props) {
46729
+ function defineProperties3(target, props) {
46738
46730
  for (var i = 0; i < props.length; i++) {
46739
46731
  var descriptor2 = props[i];
46740
46732
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -46744,12 +46736,12 @@ var _createClass$4 = function() {
46744
46736
  Object.defineProperty(target, descriptor2.key, descriptor2);
46745
46737
  }
46746
46738
  }
46747
- __name(defineProperties2, "defineProperties");
46739
+ __name(defineProperties3, "defineProperties");
46748
46740
  return function(Constructor, protoProps, staticProps) {
46749
46741
  if (protoProps)
46750
- defineProperties2(Constructor.prototype, protoProps);
46742
+ defineProperties3(Constructor.prototype, protoProps);
46751
46743
  if (staticProps)
46752
- defineProperties2(Constructor, staticProps);
46744
+ defineProperties3(Constructor, staticProps);
46753
46745
  return Constructor;
46754
46746
  };
46755
46747
  }();
@@ -46846,7 +46838,7 @@ var _extends$a = Object.assign || function(target) {
46846
46838
  return target;
46847
46839
  };
46848
46840
  var _createClass$3 = function() {
46849
- function defineProperties2(target, props) {
46841
+ function defineProperties3(target, props) {
46850
46842
  for (var i = 0; i < props.length; i++) {
46851
46843
  var descriptor2 = props[i];
46852
46844
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -46856,12 +46848,12 @@ var _createClass$3 = function() {
46856
46848
  Object.defineProperty(target, descriptor2.key, descriptor2);
46857
46849
  }
46858
46850
  }
46859
- __name(defineProperties2, "defineProperties");
46851
+ __name(defineProperties3, "defineProperties");
46860
46852
  return function(Constructor, protoProps, staticProps) {
46861
46853
  if (protoProps)
46862
- defineProperties2(Constructor.prototype, protoProps);
46854
+ defineProperties3(Constructor.prototype, protoProps);
46863
46855
  if (staticProps)
46864
- defineProperties2(Constructor, staticProps);
46856
+ defineProperties3(Constructor, staticProps);
46865
46857
  return Constructor;
46866
46858
  };
46867
46859
  }();
@@ -47919,7 +47911,7 @@ var _default$3 = UnfoldMoreHorizontalIcon.default = function(_ref) {
47919
47911
  );
47920
47912
  };
47921
47913
  var _createClass$2 = function() {
47922
- function defineProperties2(target, props) {
47914
+ function defineProperties3(target, props) {
47923
47915
  for (var i = 0; i < props.length; i++) {
47924
47916
  var descriptor2 = props[i];
47925
47917
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -47929,12 +47921,12 @@ var _createClass$2 = function() {
47929
47921
  Object.defineProperty(target, descriptor2.key, descriptor2);
47930
47922
  }
47931
47923
  }
47932
- __name(defineProperties2, "defineProperties");
47924
+ __name(defineProperties3, "defineProperties");
47933
47925
  return function(Constructor, protoProps, staticProps) {
47934
47926
  if (protoProps)
47935
- defineProperties2(Constructor.prototype, protoProps);
47927
+ defineProperties3(Constructor.prototype, protoProps);
47936
47928
  if (staticProps)
47937
- defineProperties2(Constructor, staticProps);
47929
+ defineProperties3(Constructor, staticProps);
47938
47930
  return Constructor;
47939
47931
  };
47940
47932
  }();
@@ -49344,7 +49336,7 @@ var PhotoshopPreviews = /* @__PURE__ */ __name(function PhotoshopPreviews2(_ref)
49344
49336
  );
49345
49337
  }, "PhotoshopPreviews");
49346
49338
  var _createClass$1 = function() {
49347
- function defineProperties2(target, props) {
49339
+ function defineProperties3(target, props) {
49348
49340
  for (var i = 0; i < props.length; i++) {
49349
49341
  var descriptor2 = props[i];
49350
49342
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -49354,12 +49346,12 @@ var _createClass$1 = function() {
49354
49346
  Object.defineProperty(target, descriptor2.key, descriptor2);
49355
49347
  }
49356
49348
  }
49357
- __name(defineProperties2, "defineProperties");
49349
+ __name(defineProperties3, "defineProperties");
49358
49350
  return function(Constructor, protoProps, staticProps) {
49359
49351
  if (protoProps)
49360
- defineProperties2(Constructor.prototype, protoProps);
49352
+ defineProperties3(Constructor.prototype, protoProps);
49361
49353
  if (staticProps)
49362
- defineProperties2(Constructor, staticProps);
49354
+ defineProperties3(Constructor, staticProps);
49363
49355
  return Constructor;
49364
49356
  };
49365
49357
  }();
@@ -56173,7 +56165,8 @@ const _DataTable = class _DataTable extends React__default.Component {
56173
56165
  this.startCellEdit(cellId);
56174
56166
  }
56175
56167
  }, err && {
56176
- "data-tip": (err == null ? void 0 : err.message) || err
56168
+ "data-tip": (err == null ? void 0 : err.message) || err,
56169
+ "no-child-data-tip": true
56177
56170
  }), {
56178
56171
  onContextMenu: (e2) => {
56179
56172
  if (!isPrimarySelected) {
@@ -73760,7 +73753,7 @@ ObjectWithoutPrototypeCache.prototype.set = function(key, value) {
73760
73753
  this.cache[key] = value;
73761
73754
  };
73762
73755
  var cacheDefault = {
73763
- create: /* @__PURE__ */ __name(function create4() {
73756
+ create: /* @__PURE__ */ __name(function create5() {
73764
73757
  return new ObjectWithoutPrototypeCache();
73765
73758
  }, "create")
73766
73759
  };