@teselagen/ui 0.0.3 → 0.0.5

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 (4) hide show
  1. package/index.js +220 -206
  2. package/index.mjs +220 -206
  3. package/index.umd.js +108 -94
  4. package/package.json +1 -1
package/index.js CHANGED
@@ -6555,11 +6555,11 @@ var implementation$8 = /* @__PURE__ */ __name(function bind2(that) {
6555
6555
  }
6556
6556
  bound = Function("binder", "return function (" + boundArgs.join(",") + "){ return binder.apply(this,arguments); }")(binder);
6557
6557
  if (target.prototype) {
6558
- var Empty2 = /* @__PURE__ */ __name(function Empty3() {
6558
+ var Empty = /* @__PURE__ */ __name(function Empty2() {
6559
6559
  }, "Empty");
6560
- Empty2.prototype = target.prototype;
6561
- bound.prototype = new Empty2();
6562
- Empty2.prototype = null;
6560
+ Empty.prototype = target.prototype;
6561
+ bound.prototype = new Empty();
6562
+ Empty.prototype = null;
6563
6563
  }
6564
6564
  return bound;
6565
6565
  }, "bind");
@@ -7569,7 +7569,7 @@ var classCallCheck = /* @__PURE__ */ __name(function(instance, Constructor) {
7569
7569
  }
7570
7570
  }, "classCallCheck");
7571
7571
  var createClass = function() {
7572
- function defineProperties4(target, props) {
7572
+ function defineProperties3(target, props) {
7573
7573
  for (var i = 0; i < props.length; i++) {
7574
7574
  var descriptor2 = props[i];
7575
7575
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -7579,12 +7579,12 @@ var createClass = function() {
7579
7579
  Object.defineProperty(target, descriptor2.key, descriptor2);
7580
7580
  }
7581
7581
  }
7582
- __name(defineProperties4, "defineProperties");
7582
+ __name(defineProperties3, "defineProperties");
7583
7583
  return function(Constructor, protoProps, staticProps) {
7584
7584
  if (protoProps)
7585
- defineProperties4(Constructor.prototype, protoProps);
7585
+ defineProperties3(Constructor.prototype, protoProps);
7586
7586
  if (staticProps)
7587
- defineProperties4(Constructor, staticProps);
7587
+ defineProperties3(Constructor, staticProps);
7588
7588
  return Constructor;
7589
7589
  };
7590
7590
  }();
@@ -28669,20 +28669,19 @@ function createField(structure2) {
28669
28669
  _proto.shouldComponentUpdate = /* @__PURE__ */ __name(function shouldComponentUpdate(nextProps, nextState) {
28670
28670
  return shallowCompare$1(this, nextProps, nextState);
28671
28671
  }, "shouldComponentUpdate");
28672
- _proto.componentDidUpdate = /* @__PURE__ */ __name(function componentDidUpdate(prevProps) {
28673
- var _this3 = this;
28674
- var oldName = prefixName(prevProps, prevProps.name);
28675
- var newName = prefixName(this.props, this.props.name);
28672
+ _proto.UNSAFE_componentWillReceiveProps = /* @__PURE__ */ __name(function UNSAFE_componentWillReceiveProps(nextProps) {
28673
+ var oldName = prefixName(this.props, this.props.name);
28674
+ var newName = prefixName(nextProps, nextProps.name);
28676
28675
  if (oldName !== newName || // use deepEqual here because they could be a function or an array of functions
28677
- !plain.deepEqual(prevProps.validate, this.props.validate) || !plain.deepEqual(prevProps.warn, this.props.warn)) {
28676
+ !plain.deepEqual(this.props.validate, nextProps.validate) || !plain.deepEqual(this.props.warn, nextProps.warn)) {
28678
28677
  this.props._reduxForm.unregister(oldName);
28679
28678
  this.props._reduxForm.register(newName, "Field", function() {
28680
- return _this3.props.validate;
28679
+ return nextProps.validate;
28681
28680
  }, function() {
28682
- return _this3.props.warn;
28681
+ return nextProps.warn;
28683
28682
  });
28684
28683
  }
28685
- }, "componentDidUpdate");
28684
+ }, "UNSAFE_componentWillReceiveProps");
28686
28685
  _proto.componentWillUnmount = /* @__PURE__ */ __name(function componentWillUnmount() {
28687
28686
  this.props._reduxForm.unregister(this.name);
28688
28687
  }, "componentWillUnmount");
@@ -30010,8 +30009,8 @@ var getDisplayName$1 = /* @__PURE__ */ __name(function getDisplayName(Comp) {
30010
30009
  }, "getDisplayName");
30011
30010
  const getDisplayName$2 = getDisplayName$1;
30012
30011
  var isHotReloading = /* @__PURE__ */ __name(function isHotReloading2() {
30013
- var castModule = typeof module !== "undefined" && module;
30014
- return !!(castModule && castModule.hot && typeof castModule.hot.status === "function" && castModule.hot.status() === "apply");
30012
+ var castModule = module;
30013
+ return !!(typeof castModule !== "undefined" && castModule.hot && typeof castModule.hot.status === "function" && castModule.hot.status() === "apply");
30015
30014
  }, "isHotReloading");
30016
30015
  const isHotReloading$1 = isHotReloading;
30017
30016
  var isClassComponent = /* @__PURE__ */ __name(function isClassComponent2(Component) {
@@ -30078,7 +30077,6 @@ function createReduxForm(structure2) {
30078
30077
  _this.lastFieldWarnerKeys = [];
30079
30078
  _this.innerOnSubmit = void 0;
30080
30079
  _this.submitPromise = void 0;
30081
- _this.initializedOnLoad = false;
30082
30080
  _this.initIfNeeded = function(nextProps) {
30083
30081
  var enableReinitialize = _this.props.enableReinitialize;
30084
30082
  if (nextProps) {
@@ -30089,16 +30087,13 @@ function createReduxForm(structure2) {
30089
30087
  lastInitialValues: _this.props.initialValues,
30090
30088
  updateUnregisteredFields: nextProps.updateUnregisteredFields
30091
30089
  });
30092
- return true;
30093
30090
  }
30094
30091
  } else if (_this.props.initialValues && (!_this.props.initialized || enableReinitialize)) {
30095
30092
  _this.props.initialize(_this.props.initialValues, _this.props.keepDirtyOnReinitialize, {
30096
30093
  keepValues: _this.props.keepValues,
30097
30094
  updateUnregisteredFields: _this.props.updateUnregisteredFields
30098
30095
  });
30099
- return true;
30100
30096
  }
30101
- return false;
30102
30097
  };
30103
30098
  _this.updateSyncErrorsIfNeeded = function(nextSyncErrors, nextError, lastSyncErrors) {
30104
30099
  var _this$props = _this.props, error = _this$props.error, updateSyncErrors3 = _this$props.updateSyncErrors;
@@ -30368,18 +30363,20 @@ function createReduxForm(structure2) {
30368
30363
  _this.reset = function() {
30369
30364
  return _this.props.reset();
30370
30365
  };
30371
- if (!isHotReloading$1()) {
30372
- _this.initializedOnLoad = _this.initIfNeeded();
30373
- }
30374
- invariant$1(_this.props.shouldValidate, "shouldValidate() is deprecated and will be removed in v9.0.0. Use shouldWarn() or shouldError() instead.");
30375
30366
  return _this;
30376
30367
  }
30377
30368
  __name(Form2, "Form");
30378
30369
  var _proto = Form2.prototype;
30370
+ _proto.UNSAFE_componentWillMount = /* @__PURE__ */ __name(function UNSAFE_componentWillMount() {
30371
+ if (!isHotReloading$1()) {
30372
+ this.initIfNeeded();
30373
+ this.validateIfNeeded();
30374
+ this.warnIfNeeded();
30375
+ }
30376
+ invariant$1(this.props.shouldValidate, "shouldValidate() is deprecated and will be removed in v9.0.0. Use shouldWarn() or shouldError() instead.");
30377
+ }, "UNSAFE_componentWillMount");
30379
30378
  _proto.UNSAFE_componentWillReceiveProps = /* @__PURE__ */ __name(function UNSAFE_componentWillReceiveProps(nextProps) {
30380
- var isValueReset = this.initIfNeeded(nextProps);
30381
- if (isValueReset)
30382
- return;
30379
+ this.initIfNeeded(nextProps);
30383
30380
  this.validateIfNeeded(nextProps);
30384
30381
  this.warnIfNeeded(nextProps);
30385
30382
  this.clearSubmitPromiseIfNeeded(nextProps);
@@ -30403,8 +30400,7 @@ function createReduxForm(structure2) {
30403
30400
  }, "shouldComponentUpdate");
30404
30401
  _proto.componentDidMount = /* @__PURE__ */ __name(function componentDidMount() {
30405
30402
  if (!isHotReloading$1()) {
30406
- if (this.initializedOnLoad)
30407
- return;
30403
+ this.initIfNeeded(this.props);
30408
30404
  this.validateIfNeeded();
30409
30405
  this.warnIfNeeded();
30410
30406
  }
@@ -35954,11 +35950,11 @@ lodash.exports;
35954
35950
  copyObject2(source, keys4(source), object2, customizer4);
35955
35951
  });
35956
35952
  var at = flatRest(baseAt);
35957
- function create7(prototype, properties) {
35953
+ function create6(prototype, properties) {
35958
35954
  var result2 = baseCreate2(prototype);
35959
35955
  return properties == null ? result2 : baseAssign2(result2, properties);
35960
35956
  }
35961
- __name(create7, "create");
35957
+ __name(create6, "create");
35962
35958
  var defaults2 = baseRest2(function(object2, sources) {
35963
35959
  object2 = Object2(object2);
35964
35960
  var index2 = -1;
@@ -36783,7 +36779,7 @@ lodash.exports;
36783
36779
  lodash2.conforms = conforms;
36784
36780
  lodash2.constant = constant2;
36785
36781
  lodash2.countBy = countBy;
36786
- lodash2.create = create7;
36782
+ lodash2.create = create6;
36787
36783
  lodash2.curry = curry;
36788
36784
  lodash2.curryRight = curryRight;
36789
36785
  lodash2.debounce = debounce2;
@@ -37735,17 +37731,17 @@ var _toPrimitive = /* @__PURE__ */ __name(function(it, S2) {
37735
37731
  return val;
37736
37732
  throw TypeError("Can't convert object to primitive value");
37737
37733
  }, "_toPrimitive");
37738
- var anObject$5 = _anObject;
37734
+ var anObject$3 = _anObject;
37739
37735
  var IE8_DOM_DEFINE$1 = _ie8DomDefine;
37740
37736
  var toPrimitive$2 = _toPrimitive;
37741
- var dP$3 = Object.defineProperty;
37737
+ var dP$2 = Object.defineProperty;
37742
37738
  _objectDp.f = _descriptors ? Object.defineProperty : /* @__PURE__ */ __name(function defineProperty2(O2, P2, Attributes) {
37743
- anObject$5(O2);
37739
+ anObject$3(O2);
37744
37740
  P2 = toPrimitive$2(P2, true);
37745
- anObject$5(Attributes);
37741
+ anObject$3(Attributes);
37746
37742
  if (IE8_DOM_DEFINE$1)
37747
37743
  try {
37748
- return dP$3(O2, P2, Attributes);
37744
+ return dP$2(O2, P2, Attributes);
37749
37745
  } catch (e) {
37750
37746
  }
37751
37747
  if ("get" in Attributes || "set" in Attributes)
@@ -37762,10 +37758,10 @@ var _propertyDesc = /* @__PURE__ */ __name(function(bitmap, value) {
37762
37758
  value
37763
37759
  };
37764
37760
  }, "_propertyDesc");
37765
- var dP$2 = _objectDp;
37761
+ var dP$1 = _objectDp;
37766
37762
  var createDesc$3 = _propertyDesc;
37767
37763
  var _hide = _descriptors ? function(object2, key, value) {
37768
- return dP$2.f(object2, key, createDesc$3(1, value));
37764
+ return dP$1.f(object2, key, createDesc$3(1, value));
37769
37765
  } : function(object2, key, value) {
37770
37766
  object2[key] = value;
37771
37767
  return object2;
@@ -37779,7 +37775,7 @@ var core$3 = _coreExports;
37779
37775
  var ctx$1 = _ctx;
37780
37776
  var hide$2 = _hide;
37781
37777
  var has$b = _has;
37782
- var PROTOTYPE$2 = "prototype";
37778
+ var PROTOTYPE$1 = "prototype";
37783
37779
  var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
37784
37780
  var IS_FORCED = type & $export$8.F;
37785
37781
  var IS_GLOBAL = type & $export$8.G;
@@ -37788,8 +37784,8 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
37788
37784
  var IS_BIND = type & $export$8.B;
37789
37785
  var IS_WRAP = type & $export$8.W;
37790
37786
  var exports2 = IS_GLOBAL ? core$3 : core$3[name] || (core$3[name] = {});
37791
- var expProto = exports2[PROTOTYPE$2];
37792
- var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$2];
37787
+ var expProto = exports2[PROTOTYPE$1];
37788
+ var target = IS_GLOBAL ? global$4 : IS_STATIC ? global$4[name] : (global$4[name] || {})[PROTOTYPE$1];
37793
37789
  var key, own2, out;
37794
37790
  if (IS_GLOBAL)
37795
37791
  source = name;
@@ -37813,7 +37809,7 @@ var $export$8 = /* @__PURE__ */ __name(function(type, name, source) {
37813
37809
  }
37814
37810
  return C.apply(this, arguments);
37815
37811
  }, "F");
37816
- F[PROTOTYPE$2] = C[PROTOTYPE$2];
37812
+ F[PROTOTYPE$1] = C[PROTOTYPE$1];
37817
37813
  return F;
37818
37814
  }(out) : IS_PROTO && typeof out == "function" ? ctx$1(Function.call, out) : out;
37819
37815
  if (IS_PROTO) {
@@ -37918,14 +37914,14 @@ var _sharedKey = /* @__PURE__ */ __name(function(key) {
37918
37914
  var has$a = _has;
37919
37915
  var toIObject$4 = _toIobject;
37920
37916
  var arrayIndexOf = _arrayIncludes(false);
37921
- var IE_PROTO$2 = _sharedKey("IE_PROTO");
37917
+ var IE_PROTO$1 = _sharedKey("IE_PROTO");
37922
37918
  var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
37923
37919
  var O2 = toIObject$4(object2);
37924
37920
  var i = 0;
37925
37921
  var result = [];
37926
37922
  var key;
37927
37923
  for (key in O2)
37928
- if (key != IE_PROTO$2)
37924
+ if (key != IE_PROTO$1)
37929
37925
  has$a(O2, key) && result.push(key);
37930
37926
  while (names2.length > i)
37931
37927
  if (has$a(O2, key = names2[i++])) {
@@ -37935,9 +37931,9 @@ var _objectKeysInternal = /* @__PURE__ */ __name(function(object2, names2) {
37935
37931
  }, "_objectKeysInternal");
37936
37932
  var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",");
37937
37933
  var $keys$3 = _objectKeysInternal;
37938
- var enumBugKeys$1 = _enumBugKeys;
37934
+ var enumBugKeys = _enumBugKeys;
37939
37935
  var _objectKeys = Object.keys || /* @__PURE__ */ __name(function keys2(O2) {
37940
- return $keys$3(O2, enumBugKeys$1);
37936
+ return $keys$3(O2, enumBugKeys);
37941
37937
  }, "keys");
37942
37938
  var _objectGops = {};
37943
37939
  _objectGops.f = Object.getOwnPropertySymbols;
@@ -38027,19 +38023,28 @@ var _iterStep = /* @__PURE__ */ __name(function(done, value) {
38027
38023
  }, "_iterStep");
38028
38024
  var _iterators = {};
38029
38025
  var _redefine = _hide;
38030
- var dP$1 = _objectDp;
38031
- var anObject$4 = _anObject;
38032
- var getKeys$1 = _objectKeys;
38033
- var _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties2(O2, Properties) {
38034
- anObject$4(O2);
38035
- var keys4 = getKeys$1(Properties);
38036
- var length = keys4.length;
38037
- var i = 0;
38038
- var P2;
38039
- while (length > i)
38040
- dP$1.f(O2, P2 = keys4[i++], Properties[P2]);
38041
- return O2;
38042
- }, "defineProperties");
38026
+ var _objectDps;
38027
+ var hasRequired_objectDps;
38028
+ function require_objectDps() {
38029
+ if (hasRequired_objectDps)
38030
+ return _objectDps;
38031
+ hasRequired_objectDps = 1;
38032
+ var dP2 = _objectDp;
38033
+ var anObject2 = _anObject;
38034
+ var getKeys2 = _objectKeys;
38035
+ _objectDps = _descriptors ? Object.defineProperties : /* @__PURE__ */ __name(function defineProperties3(O2, Properties) {
38036
+ anObject2(O2);
38037
+ var keys4 = getKeys2(Properties);
38038
+ var length = keys4.length;
38039
+ var i = 0;
38040
+ var P2;
38041
+ while (length > i)
38042
+ dP2.f(O2, P2 = keys4[i++], Properties[P2]);
38043
+ return O2;
38044
+ }, "defineProperties");
38045
+ return _objectDps;
38046
+ }
38047
+ __name(require_objectDps, "require_objectDps");
38043
38048
  var _html;
38044
38049
  var hasRequired_html;
38045
38050
  function require_html() {
@@ -38051,42 +38056,51 @@ function require_html() {
38051
38056
  return _html;
38052
38057
  }
38053
38058
  __name(require_html, "require_html");
38054
- var anObject$3 = _anObject;
38055
- var dPs = _objectDps;
38056
- var enumBugKeys = _enumBugKeys;
38057
- var IE_PROTO$1 = _sharedKey("IE_PROTO");
38058
- var Empty = /* @__PURE__ */ __name(function() {
38059
- }, "Empty");
38060
- var PROTOTYPE$1 = "prototype";
38061
- var createDict = /* @__PURE__ */ __name(function() {
38062
- var iframe = require_domCreate()("iframe");
38063
- var i = enumBugKeys.length;
38064
- var lt = "<";
38065
- var gt = ">";
38066
- var iframeDocument;
38067
- iframe.style.display = "none";
38068
- require_html().appendChild(iframe);
38069
- iframe.src = "javascript:";
38070
- iframeDocument = iframe.contentWindow.document;
38071
- iframeDocument.open();
38072
- iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
38073
- iframeDocument.close();
38074
- createDict = iframeDocument.F;
38075
- while (i--)
38076
- delete createDict[PROTOTYPE$1][enumBugKeys[i]];
38077
- return createDict();
38078
- }, "createDict");
38079
- var _objectCreate = Object.create || /* @__PURE__ */ __name(function create2(O2, Properties) {
38080
- var result;
38081
- if (O2 !== null) {
38082
- Empty[PROTOTYPE$1] = anObject$3(O2);
38083
- result = new Empty();
38084
- Empty[PROTOTYPE$1] = null;
38085
- result[IE_PROTO$1] = O2;
38086
- } else
38087
- result = createDict();
38088
- return Properties === void 0 ? result : dPs(result, Properties);
38089
- }, "create");
38059
+ var _objectCreate;
38060
+ var hasRequired_objectCreate;
38061
+ function require_objectCreate() {
38062
+ if (hasRequired_objectCreate)
38063
+ return _objectCreate;
38064
+ hasRequired_objectCreate = 1;
38065
+ var anObject2 = _anObject;
38066
+ var dPs = require_objectDps();
38067
+ var enumBugKeys2 = _enumBugKeys;
38068
+ var IE_PROTO2 = _sharedKey("IE_PROTO");
38069
+ var Empty = /* @__PURE__ */ __name(function() {
38070
+ }, "Empty");
38071
+ var PROTOTYPE2 = "prototype";
38072
+ var createDict = /* @__PURE__ */ __name(function() {
38073
+ var iframe = require_domCreate()("iframe");
38074
+ var i = enumBugKeys2.length;
38075
+ var lt = "<";
38076
+ var gt = ">";
38077
+ var iframeDocument;
38078
+ iframe.style.display = "none";
38079
+ require_html().appendChild(iframe);
38080
+ iframe.src = "javascript:";
38081
+ iframeDocument = iframe.contentWindow.document;
38082
+ iframeDocument.open();
38083
+ iframeDocument.write(lt + "script" + gt + "document.F=Object" + lt + "/script" + gt);
38084
+ iframeDocument.close();
38085
+ createDict = iframeDocument.F;
38086
+ while (i--)
38087
+ delete createDict[PROTOTYPE2][enumBugKeys2[i]];
38088
+ return createDict();
38089
+ }, "createDict");
38090
+ _objectCreate = Object.create || /* @__PURE__ */ __name(function create6(O2, Properties) {
38091
+ var result;
38092
+ if (O2 !== null) {
38093
+ Empty[PROTOTYPE2] = anObject2(O2);
38094
+ result = new Empty();
38095
+ Empty[PROTOTYPE2] = null;
38096
+ result[IE_PROTO2] = O2;
38097
+ } else
38098
+ result = createDict();
38099
+ return Properties === void 0 ? result : dPs(result, Properties);
38100
+ }, "create");
38101
+ return _objectCreate;
38102
+ }
38103
+ __name(require_objectCreate, "require_objectCreate");
38090
38104
  var _wks = { exports: {} };
38091
38105
  var store = _sharedExports("wks");
38092
38106
  var uid$1 = _uid;
@@ -38104,7 +38118,7 @@ var _setToStringTag = /* @__PURE__ */ __name(function(it, tag, stat) {
38104
38118
  if (it && !has$9(it = stat ? it : it.prototype, TAG$1))
38105
38119
  def(it, TAG$1, { configurable: true, value: tag });
38106
38120
  }, "_setToStringTag");
38107
- var create$3 = _objectCreate;
38121
+ var create$3 = require_objectCreate();
38108
38122
  var descriptor = _propertyDesc;
38109
38123
  var setToStringTag$2 = _setToStringTag;
38110
38124
  var IteratorPrototype = {};
@@ -38512,7 +38526,7 @@ function _interopRequireDefault$k(obj) {
38512
38526
  }
38513
38527
  __name(_interopRequireDefault$k, "_interopRequireDefault$k");
38514
38528
  var _default$6 = function() {
38515
- function defineProperties4(target, props) {
38529
+ function defineProperties3(target, props) {
38516
38530
  for (var i = 0; i < props.length; i++) {
38517
38531
  var descriptor2 = props[i];
38518
38532
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -38522,12 +38536,12 @@ var _default$6 = function() {
38522
38536
  (0, _defineProperty2.default)(target, descriptor2.key, descriptor2);
38523
38537
  }
38524
38538
  }
38525
- __name(defineProperties4, "defineProperties");
38539
+ __name(defineProperties3, "defineProperties");
38526
38540
  return function(Constructor, protoProps, staticProps) {
38527
38541
  if (protoProps)
38528
- defineProperties4(Constructor.prototype, protoProps);
38542
+ defineProperties3(Constructor.prototype, protoProps);
38529
38543
  if (staticProps)
38530
- defineProperties4(Constructor, staticProps);
38544
+ defineProperties3(Constructor, staticProps);
38531
38545
  return Constructor;
38532
38546
  };
38533
38547
  }();
@@ -38556,23 +38570,23 @@ var setMeta = /* @__PURE__ */ __name(function(it) {
38556
38570
  // weak collections IDs
38557
38571
  } });
38558
38572
  }, "setMeta");
38559
- var fastKey = /* @__PURE__ */ __name(function(it, create7) {
38573
+ var fastKey = /* @__PURE__ */ __name(function(it, create6) {
38560
38574
  if (!isObject$5(it))
38561
38575
  return typeof it == "symbol" ? it : (typeof it == "string" ? "S" : "P") + it;
38562
38576
  if (!has$7(it, META$1)) {
38563
38577
  if (!isExtensible(it))
38564
38578
  return "F";
38565
- if (!create7)
38579
+ if (!create6)
38566
38580
  return "E";
38567
38581
  setMeta(it);
38568
38582
  }
38569
38583
  return it[META$1].i;
38570
38584
  }, "fastKey");
38571
- var getWeak = /* @__PURE__ */ __name(function(it, create7) {
38585
+ var getWeak = /* @__PURE__ */ __name(function(it, create6) {
38572
38586
  if (!has$7(it, META$1)) {
38573
38587
  if (!isExtensible(it))
38574
38588
  return true;
38575
- if (!create7)
38589
+ if (!create6)
38576
38590
  return false;
38577
38591
  setMeta(it);
38578
38592
  }
@@ -38681,7 +38695,7 @@ var toObject$1 = _toObject;
38681
38695
  var toIObject = _toIobject;
38682
38696
  var toPrimitive = _toPrimitive;
38683
38697
  var createDesc = _propertyDesc;
38684
- var _create$1 = _objectCreate;
38698
+ var _create$1 = require_objectCreate();
38685
38699
  var gOPNExt = _objectGopnExt;
38686
38700
  var $GOPD = _objectGopd;
38687
38701
  var $GOPS = _objectGops;
@@ -38748,7 +38762,7 @@ var $defineProperty = /* @__PURE__ */ __name(function defineProperty4(it, key, D
38748
38762
  }
38749
38763
  return dP(it, key, D2);
38750
38764
  }, "defineProperty");
38751
- var $defineProperties = /* @__PURE__ */ __name(function defineProperties3(it, P2) {
38765
+ var $defineProperties = /* @__PURE__ */ __name(function defineProperties2(it, P2) {
38752
38766
  anObject(it);
38753
38767
  var keys4 = enumKeys(P2 = toIObject(P2));
38754
38768
  var i = 0;
@@ -38758,7 +38772,7 @@ var $defineProperties = /* @__PURE__ */ __name(function defineProperties3(it, P2
38758
38772
  $defineProperty(it, key = keys4[i++], P2[key]);
38759
38773
  return it;
38760
38774
  }, "defineProperties");
38761
- var $create = /* @__PURE__ */ __name(function create3(it, P2) {
38775
+ var $create = /* @__PURE__ */ __name(function create2(it, P2) {
38762
38776
  return P2 === void 0 ? _create$1(it) : $defineProperties(_create$1(it), P2);
38763
38777
  }, "create");
38764
38778
  var $propertyIsEnumerable = /* @__PURE__ */ __name(function propertyIsEnumerable(key) {
@@ -38988,9 +39002,9 @@ $export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
38988
39002
  var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf;
38989
39003
  var setPrototypeOf = { "default": setPrototypeOf$1, __esModule: true };
38990
39004
  var $export = _export;
38991
- $export($export.S, "Object", { create: _objectCreate });
39005
+ $export($export.S, "Object", { create: require_objectCreate() });
38992
39006
  var $Object = _coreExports.Object;
38993
- var create$2 = /* @__PURE__ */ __name(function create4(P2, D2) {
39007
+ var create$2 = /* @__PURE__ */ __name(function create3(P2, D2) {
38994
39008
  return $Object.create(P2, D2);
38995
39009
  }, "create");
38996
39010
  var create$1 = { "default": create$2, __esModule: true };
@@ -41701,7 +41715,7 @@ function normalizeComponent(Comp) {
41701
41715
  }
41702
41716
  __name(normalizeComponent, "normalizeComponent");
41703
41717
  var _createClass$j = function() {
41704
- function defineProperties4(target, props) {
41718
+ function defineProperties3(target, props) {
41705
41719
  for (var i = 0; i < props.length; i++) {
41706
41720
  var descriptor2 = props[i];
41707
41721
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -41711,12 +41725,12 @@ var _createClass$j = function() {
41711
41725
  Object.defineProperty(target, descriptor2.key, descriptor2);
41712
41726
  }
41713
41727
  }
41714
- __name(defineProperties4, "defineProperties");
41728
+ __name(defineProperties3, "defineProperties");
41715
41729
  return function(Constructor, protoProps, staticProps) {
41716
41730
  if (protoProps)
41717
- defineProperties4(Constructor.prototype, protoProps);
41731
+ defineProperties3(Constructor.prototype, protoProps);
41718
41732
  if (staticProps)
41719
- defineProperties4(Constructor, staticProps);
41733
+ defineProperties3(Constructor, staticProps);
41720
41734
  return Constructor;
41721
41735
  };
41722
41736
  }();
@@ -41877,7 +41891,7 @@ var _extends$o = Object.assign || function(target) {
41877
41891
  return target;
41878
41892
  };
41879
41893
  var _createClass$i = function() {
41880
- function defineProperties4(target, props) {
41894
+ function defineProperties3(target, props) {
41881
41895
  for (var i = 0; i < props.length; i++) {
41882
41896
  var descriptor2 = props[i];
41883
41897
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -41887,12 +41901,12 @@ var _createClass$i = function() {
41887
41901
  Object.defineProperty(target, descriptor2.key, descriptor2);
41888
41902
  }
41889
41903
  }
41890
- __name(defineProperties4, "defineProperties");
41904
+ __name(defineProperties3, "defineProperties");
41891
41905
  return function(Constructor, protoProps, staticProps) {
41892
41906
  if (protoProps)
41893
- defineProperties4(Constructor.prototype, protoProps);
41907
+ defineProperties3(Constructor.prototype, protoProps);
41894
41908
  if (staticProps)
41895
- defineProperties4(Constructor, staticProps);
41909
+ defineProperties3(Constructor, staticProps);
41896
41910
  return Constructor;
41897
41911
  };
41898
41912
  }();
@@ -42483,7 +42497,7 @@ const Methods = /* @__PURE__ */ __name(function(Base) {
42483
42497
  }(Base);
42484
42498
  }, "Methods");
42485
42499
  var _createClass$h = function() {
42486
- function defineProperties4(target, props) {
42500
+ function defineProperties3(target, props) {
42487
42501
  for (var i = 0; i < props.length; i++) {
42488
42502
  var descriptor2 = props[i];
42489
42503
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -42493,12 +42507,12 @@ var _createClass$h = function() {
42493
42507
  Object.defineProperty(target, descriptor2.key, descriptor2);
42494
42508
  }
42495
42509
  }
42496
- __name(defineProperties4, "defineProperties");
42510
+ __name(defineProperties3, "defineProperties");
42497
42511
  return function(Constructor, protoProps, staticProps) {
42498
42512
  if (protoProps)
42499
- defineProperties4(Constructor.prototype, protoProps);
42513
+ defineProperties3(Constructor.prototype, protoProps);
42500
42514
  if (staticProps)
42501
- defineProperties4(Constructor, staticProps);
42515
+ defineProperties3(Constructor, staticProps);
42502
42516
  return Constructor;
42503
42517
  };
42504
42518
  }();
@@ -43270,7 +43284,7 @@ var _extends$l = Object.assign || function(target) {
43270
43284
  return target;
43271
43285
  };
43272
43286
  var _createClass$g = function() {
43273
- function defineProperties4(target, props) {
43287
+ function defineProperties3(target, props) {
43274
43288
  for (var i = 0; i < props.length; i++) {
43275
43289
  var descriptor2 = props[i];
43276
43290
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -43280,12 +43294,12 @@ var _createClass$g = function() {
43280
43294
  Object.defineProperty(target, descriptor2.key, descriptor2);
43281
43295
  }
43282
43296
  }
43283
- __name(defineProperties4, "defineProperties");
43297
+ __name(defineProperties3, "defineProperties");
43284
43298
  return function(Constructor, protoProps, staticProps) {
43285
43299
  if (protoProps)
43286
- defineProperties4(Constructor.prototype, protoProps);
43300
+ defineProperties3(Constructor.prototype, protoProps);
43287
43301
  if (staticProps)
43288
- defineProperties4(Constructor, staticProps);
43302
+ defineProperties3(Constructor, staticProps);
43289
43303
  return Constructor;
43290
43304
  };
43291
43305
  }();
@@ -49516,21 +49530,21 @@ function parse$5(options) {
49516
49530
  defined: [],
49517
49531
  lazy: {},
49518
49532
  constructs: constructs2,
49519
- content: create7(content$1),
49520
- document: create7(document$2),
49521
- flow: create7(flow$1),
49522
- string: create7(string$1),
49523
- text: create7(text$3)
49533
+ content: create6(content$1),
49534
+ document: create6(document$2),
49535
+ flow: create6(flow$1),
49536
+ string: create6(string$1),
49537
+ text: create6(text$3)
49524
49538
  };
49525
49539
  return parser;
49526
- function create7(initial) {
49540
+ function create6(initial) {
49527
49541
  return creator;
49528
49542
  function creator(from3) {
49529
49543
  return createTokenizer(parser, initial, from3);
49530
49544
  }
49531
49545
  __name(creator, "creator");
49532
49546
  }
49533
- __name(create7, "create");
49547
+ __name(create6, "create");
49534
49548
  }
49535
49549
  __name(parse$5, "parse$5");
49536
49550
  const search$1 = /[\0\t\n\r]/g;
@@ -49941,10 +49955,10 @@ function compiler(options) {
49941
49955
  return data[key];
49942
49956
  }
49943
49957
  __name(getData, "getData");
49944
- function opener(create7, and) {
49958
+ function opener(create6, and) {
49945
49959
  return open2;
49946
49960
  function open2(token) {
49947
- enter.call(this, create7(token), token);
49961
+ enter.call(this, create6(token), token);
49948
49962
  if (and)
49949
49963
  and.call(this, token);
49950
49964
  }
@@ -51703,7 +51717,7 @@ function mark(values, key, value) {
51703
51717
  }
51704
51718
  __name(mark, "mark");
51705
51719
  const own$3 = {}.hasOwnProperty;
51706
- function create5(definition2) {
51720
+ function create4(definition2) {
51707
51721
  const property2 = {};
51708
51722
  const normal = {};
51709
51723
  let prop;
@@ -51726,8 +51740,8 @@ function create5(definition2) {
51726
51740
  }
51727
51741
  return new Schema(property2, normal, definition2.space);
51728
51742
  }
51729
- __name(create5, "create");
51730
- const xlink = create5({
51743
+ __name(create4, "create");
51744
+ const xlink = create4({
51731
51745
  space: "xlink",
51732
51746
  transform(_15, prop) {
51733
51747
  return "xlink:" + prop.slice(5).toLowerCase();
@@ -51742,7 +51756,7 @@ const xlink = create5({
51742
51756
  xLinkType: null
51743
51757
  }
51744
51758
  });
51745
- const xml = create5({
51759
+ const xml = create4({
51746
51760
  space: "xml",
51747
51761
  transform(_15, prop) {
51748
51762
  return "xml:" + prop.slice(3).toLowerCase();
@@ -51757,13 +51771,13 @@ function caseInsensitiveTransform(attributes, property2) {
51757
51771
  return caseSensitiveTransform(attributes, property2.toLowerCase());
51758
51772
  }
51759
51773
  __name(caseInsensitiveTransform, "caseInsensitiveTransform");
51760
- const xmlns = create5({
51774
+ const xmlns = create4({
51761
51775
  space: "xmlns",
51762
51776
  attributes: { xmlnsxlink: "xmlns:xlink" },
51763
51777
  transform: caseInsensitiveTransform,
51764
51778
  properties: { xmlns: null, xmlnsXLink: null }
51765
51779
  });
51766
- const aria = create5({
51780
+ const aria = create4({
51767
51781
  transform(_15, prop) {
51768
51782
  return prop === "role" ? prop : "aria-" + prop.slice(4).toLowerCase();
51769
51783
  },
@@ -51819,7 +51833,7 @@ const aria = create5({
51819
51833
  role: null
51820
51834
  }
51821
51835
  });
51822
- const html$1 = create5({
51836
+ const html$1 = create4({
51823
51837
  space: "html",
51824
51838
  attributes: {
51825
51839
  acceptcharset: "accept-charset",
@@ -52170,7 +52184,7 @@ const html$1 = create5({
52170
52184
  unselectable: null
52171
52185
  }
52172
52186
  });
52173
- const svg$1 = create5({
52187
+ const svg$1 = create4({
52174
52188
  space: "svg",
52175
52189
  attributes: {
52176
52190
  accentHeight: "accent-height",
@@ -63020,7 +63034,7 @@ Object.defineProperty(Caption$1, "__esModule", {
63020
63034
  value: true
63021
63035
  });
63022
63036
  var _createClass$f = function() {
63023
- function defineProperties4(target, props) {
63037
+ function defineProperties3(target, props) {
63024
63038
  for (var i = 0; i < props.length; i++) {
63025
63039
  var descriptor2 = props[i];
63026
63040
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -63030,12 +63044,12 @@ var _createClass$f = function() {
63030
63044
  Object.defineProperty(target, descriptor2.key, descriptor2);
63031
63045
  }
63032
63046
  }
63033
- __name(defineProperties4, "defineProperties");
63047
+ __name(defineProperties3, "defineProperties");
63034
63048
  return function(Constructor, protoProps, staticProps) {
63035
63049
  if (protoProps)
63036
- defineProperties4(Constructor.prototype, protoProps);
63050
+ defineProperties3(Constructor.prototype, protoProps);
63037
63051
  if (staticProps)
63038
- defineProperties4(Constructor, staticProps);
63052
+ defineProperties3(Constructor, staticProps);
63039
63053
  return Constructor;
63040
63054
  };
63041
63055
  }();
@@ -63147,7 +63161,7 @@ Object.defineProperty(Navbar$1, "__esModule", {
63147
63161
  value: true
63148
63162
  });
63149
63163
  var _createClass$e = function() {
63150
- function defineProperties4(target, props) {
63164
+ function defineProperties3(target, props) {
63151
63165
  for (var i = 0; i < props.length; i++) {
63152
63166
  var descriptor2 = props[i];
63153
63167
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -63157,12 +63171,12 @@ var _createClass$e = function() {
63157
63171
  Object.defineProperty(target, descriptor2.key, descriptor2);
63158
63172
  }
63159
63173
  }
63160
- __name(defineProperties4, "defineProperties");
63174
+ __name(defineProperties3, "defineProperties");
63161
63175
  return function(Constructor, protoProps, staticProps) {
63162
63176
  if (protoProps)
63163
- defineProperties4(Constructor.prototype, protoProps);
63177
+ defineProperties3(Constructor.prototype, protoProps);
63164
63178
  if (staticProps)
63165
- defineProperties4(Constructor, staticProps);
63179
+ defineProperties3(Constructor, staticProps);
63166
63180
  return Constructor;
63167
63181
  };
63168
63182
  }();
@@ -63305,7 +63319,7 @@ Object.defineProperty(Weekdays$1, "__esModule", {
63305
63319
  value: true
63306
63320
  });
63307
63321
  var _createClass$d = function() {
63308
- function defineProperties4(target, props) {
63322
+ function defineProperties3(target, props) {
63309
63323
  for (var i = 0; i < props.length; i++) {
63310
63324
  var descriptor2 = props[i];
63311
63325
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -63315,12 +63329,12 @@ var _createClass$d = function() {
63315
63329
  Object.defineProperty(target, descriptor2.key, descriptor2);
63316
63330
  }
63317
63331
  }
63318
- __name(defineProperties4, "defineProperties");
63332
+ __name(defineProperties3, "defineProperties");
63319
63333
  return function(Constructor, protoProps, staticProps) {
63320
63334
  if (protoProps)
63321
- defineProperties4(Constructor.prototype, protoProps);
63335
+ defineProperties3(Constructor.prototype, protoProps);
63322
63336
  if (staticProps)
63323
- defineProperties4(Constructor, staticProps);
63337
+ defineProperties3(Constructor, staticProps);
63324
63338
  return Constructor;
63325
63339
  };
63326
63340
  }();
@@ -63697,7 +63711,7 @@ var _extends$j = Object.assign || function(target) {
63697
63711
  return target;
63698
63712
  };
63699
63713
  var _createClass$c = function() {
63700
- function defineProperties4(target, props) {
63714
+ function defineProperties3(target, props) {
63701
63715
  for (var i = 0; i < props.length; i++) {
63702
63716
  var descriptor2 = props[i];
63703
63717
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -63707,12 +63721,12 @@ var _createClass$c = function() {
63707
63721
  Object.defineProperty(target, descriptor2.key, descriptor2);
63708
63722
  }
63709
63723
  }
63710
- __name(defineProperties4, "defineProperties");
63724
+ __name(defineProperties3, "defineProperties");
63711
63725
  return function(Constructor, protoProps, staticProps) {
63712
63726
  if (protoProps)
63713
- defineProperties4(Constructor.prototype, protoProps);
63727
+ defineProperties3(Constructor.prototype, protoProps);
63714
63728
  if (staticProps)
63715
- defineProperties4(Constructor, staticProps);
63729
+ defineProperties3(Constructor, staticProps);
63716
63730
  return Constructor;
63717
63731
  };
63718
63732
  }();
@@ -63914,7 +63928,7 @@ Object.defineProperty(Month$1, "__esModule", {
63914
63928
  value: true
63915
63929
  });
63916
63930
  var _createClass$b = function() {
63917
- function defineProperties4(target, props) {
63931
+ function defineProperties3(target, props) {
63918
63932
  for (var i = 0; i < props.length; i++) {
63919
63933
  var descriptor2 = props[i];
63920
63934
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -63924,12 +63938,12 @@ var _createClass$b = function() {
63924
63938
  Object.defineProperty(target, descriptor2.key, descriptor2);
63925
63939
  }
63926
63940
  }
63927
- __name(defineProperties4, "defineProperties");
63941
+ __name(defineProperties3, "defineProperties");
63928
63942
  return function(Constructor, protoProps, staticProps) {
63929
63943
  if (protoProps)
63930
- defineProperties4(Constructor.prototype, protoProps);
63944
+ defineProperties3(Constructor.prototype, protoProps);
63931
63945
  if (staticProps)
63932
- defineProperties4(Constructor, staticProps);
63946
+ defineProperties3(Constructor, staticProps);
63933
63947
  return Constructor;
63934
63948
  };
63935
63949
  }();
@@ -64121,7 +64135,7 @@ Object.defineProperty(Weekday$1, "__esModule", {
64121
64135
  value: true
64122
64136
  });
64123
64137
  var _createClass$a = function() {
64124
- function defineProperties4(target, props) {
64138
+ function defineProperties3(target, props) {
64125
64139
  for (var i = 0; i < props.length; i++) {
64126
64140
  var descriptor2 = props[i];
64127
64141
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -64131,12 +64145,12 @@ var _createClass$a = function() {
64131
64145
  Object.defineProperty(target, descriptor2.key, descriptor2);
64132
64146
  }
64133
64147
  }
64134
- __name(defineProperties4, "defineProperties");
64148
+ __name(defineProperties3, "defineProperties");
64135
64149
  return function(Constructor, protoProps, staticProps) {
64136
64150
  if (protoProps)
64137
- defineProperties4(Constructor.prototype, protoProps);
64151
+ defineProperties3(Constructor.prototype, protoProps);
64138
64152
  if (staticProps)
64139
- defineProperties4(Constructor, staticProps);
64153
+ defineProperties3(Constructor, staticProps);
64140
64154
  return Constructor;
64141
64155
  };
64142
64156
  }();
@@ -64226,7 +64240,7 @@ var _extends$i = Object.assign || function(target) {
64226
64240
  return target;
64227
64241
  };
64228
64242
  var _createClass$9 = function() {
64229
- function defineProperties4(target, props) {
64243
+ function defineProperties3(target, props) {
64230
64244
  for (var i = 0; i < props.length; i++) {
64231
64245
  var descriptor2 = props[i];
64232
64246
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -64236,12 +64250,12 @@ var _createClass$9 = function() {
64236
64250
  Object.defineProperty(target, descriptor2.key, descriptor2);
64237
64251
  }
64238
64252
  }
64239
- __name(defineProperties4, "defineProperties");
64253
+ __name(defineProperties3, "defineProperties");
64240
64254
  return function(Constructor, protoProps, staticProps) {
64241
64255
  if (protoProps)
64242
- defineProperties4(Constructor.prototype, protoProps);
64256
+ defineProperties3(Constructor.prototype, protoProps);
64243
64257
  if (staticProps)
64244
- defineProperties4(Constructor, staticProps);
64258
+ defineProperties3(Constructor, staticProps);
64245
64259
  return Constructor;
64246
64260
  };
64247
64261
  }();
@@ -68372,7 +68386,7 @@ var _extends$c = Object.assign || function(target) {
68372
68386
  return target;
68373
68387
  };
68374
68388
  var _createClass$8 = function() {
68375
- function defineProperties4(target, props) {
68389
+ function defineProperties3(target, props) {
68376
68390
  for (var i = 0; i < props.length; i++) {
68377
68391
  var descriptor2 = props[i];
68378
68392
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -68382,12 +68396,12 @@ var _createClass$8 = function() {
68382
68396
  Object.defineProperty(target, descriptor2.key, descriptor2);
68383
68397
  }
68384
68398
  }
68385
- __name(defineProperties4, "defineProperties");
68399
+ __name(defineProperties3, "defineProperties");
68386
68400
  return function(Constructor, protoProps, staticProps) {
68387
68401
  if (protoProps)
68388
- defineProperties4(Constructor.prototype, protoProps);
68402
+ defineProperties3(Constructor.prototype, protoProps);
68389
68403
  if (staticProps)
68390
- defineProperties4(Constructor, staticProps);
68404
+ defineProperties3(Constructor, staticProps);
68391
68405
  return Constructor;
68392
68406
  };
68393
68407
  }();
@@ -68529,7 +68543,7 @@ var Alpha = function(_ref) {
68529
68543
  return Alpha2;
68530
68544
  }(React$1.PureComponent || React$1.Component);
68531
68545
  var _createClass$7 = function() {
68532
- function defineProperties4(target, props) {
68546
+ function defineProperties3(target, props) {
68533
68547
  for (var i = 0; i < props.length; i++) {
68534
68548
  var descriptor2 = props[i];
68535
68549
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -68539,12 +68553,12 @@ var _createClass$7 = function() {
68539
68553
  Object.defineProperty(target, descriptor2.key, descriptor2);
68540
68554
  }
68541
68555
  }
68542
- __name(defineProperties4, "defineProperties");
68556
+ __name(defineProperties3, "defineProperties");
68543
68557
  return function(Constructor, protoProps, staticProps) {
68544
68558
  if (protoProps)
68545
- defineProperties4(Constructor.prototype, protoProps);
68559
+ defineProperties3(Constructor.prototype, protoProps);
68546
68560
  if (staticProps)
68547
- defineProperties4(Constructor, staticProps);
68561
+ defineProperties3(Constructor, staticProps);
68548
68562
  return Constructor;
68549
68563
  };
68550
68564
  }();
@@ -68777,7 +68791,7 @@ var calculateChange$1 = /* @__PURE__ */ __name(function calculateChange2(e, dire
68777
68791
  return null;
68778
68792
  }, "calculateChange");
68779
68793
  var _createClass$6 = function() {
68780
- function defineProperties4(target, props) {
68794
+ function defineProperties3(target, props) {
68781
68795
  for (var i = 0; i < props.length; i++) {
68782
68796
  var descriptor2 = props[i];
68783
68797
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -68787,12 +68801,12 @@ var _createClass$6 = function() {
68787
68801
  Object.defineProperty(target, descriptor2.key, descriptor2);
68788
68802
  }
68789
68803
  }
68790
- __name(defineProperties4, "defineProperties");
68804
+ __name(defineProperties3, "defineProperties");
68791
68805
  return function(Constructor, protoProps, staticProps) {
68792
68806
  if (protoProps)
68793
- defineProperties4(Constructor.prototype, protoProps);
68807
+ defineProperties3(Constructor.prototype, protoProps);
68794
68808
  if (staticProps)
68795
- defineProperties4(Constructor, staticProps);
68809
+ defineProperties3(Constructor, staticProps);
68796
68810
  return Constructor;
68797
68811
  };
68798
68812
  }();
@@ -70003,7 +70017,7 @@ var calculateChange3 = /* @__PURE__ */ __name(function calculateChange4(e, hsl,
70003
70017
  };
70004
70018
  }, "calculateChange");
70005
70019
  var _createClass$5 = function() {
70006
- function defineProperties4(target, props) {
70020
+ function defineProperties3(target, props) {
70007
70021
  for (var i = 0; i < props.length; i++) {
70008
70022
  var descriptor2 = props[i];
70009
70023
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -70013,12 +70027,12 @@ var _createClass$5 = function() {
70013
70027
  Object.defineProperty(target, descriptor2.key, descriptor2);
70014
70028
  }
70015
70029
  }
70016
- __name(defineProperties4, "defineProperties");
70030
+ __name(defineProperties3, "defineProperties");
70017
70031
  return function(Constructor, protoProps, staticProps) {
70018
70032
  if (protoProps)
70019
- defineProperties4(Constructor.prototype, protoProps);
70033
+ defineProperties3(Constructor.prototype, protoProps);
70020
70034
  if (staticProps)
70021
- defineProperties4(Constructor, staticProps);
70035
+ defineProperties3(Constructor, staticProps);
70022
70036
  return Constructor;
70023
70037
  };
70024
70038
  }();
@@ -71320,7 +71334,7 @@ var _extends$b = Object.assign || function(target) {
71320
71334
  return target;
71321
71335
  };
71322
71336
  var _createClass$4 = function() {
71323
- function defineProperties4(target, props) {
71337
+ function defineProperties3(target, props) {
71324
71338
  for (var i = 0; i < props.length; i++) {
71325
71339
  var descriptor2 = props[i];
71326
71340
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -71330,12 +71344,12 @@ var _createClass$4 = function() {
71330
71344
  Object.defineProperty(target, descriptor2.key, descriptor2);
71331
71345
  }
71332
71346
  }
71333
- __name(defineProperties4, "defineProperties");
71347
+ __name(defineProperties3, "defineProperties");
71334
71348
  return function(Constructor, protoProps, staticProps) {
71335
71349
  if (protoProps)
71336
- defineProperties4(Constructor.prototype, protoProps);
71350
+ defineProperties3(Constructor.prototype, protoProps);
71337
71351
  if (staticProps)
71338
- defineProperties4(Constructor, staticProps);
71352
+ defineProperties3(Constructor, staticProps);
71339
71353
  return Constructor;
71340
71354
  };
71341
71355
  }();
@@ -71432,7 +71446,7 @@ var _extends$a = Object.assign || function(target) {
71432
71446
  return target;
71433
71447
  };
71434
71448
  var _createClass$3 = function() {
71435
- function defineProperties4(target, props) {
71449
+ function defineProperties3(target, props) {
71436
71450
  for (var i = 0; i < props.length; i++) {
71437
71451
  var descriptor2 = props[i];
71438
71452
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -71442,12 +71456,12 @@ var _createClass$3 = function() {
71442
71456
  Object.defineProperty(target, descriptor2.key, descriptor2);
71443
71457
  }
71444
71458
  }
71445
- __name(defineProperties4, "defineProperties");
71459
+ __name(defineProperties3, "defineProperties");
71446
71460
  return function(Constructor, protoProps, staticProps) {
71447
71461
  if (protoProps)
71448
- defineProperties4(Constructor.prototype, protoProps);
71462
+ defineProperties3(Constructor.prototype, protoProps);
71449
71463
  if (staticProps)
71450
- defineProperties4(Constructor, staticProps);
71464
+ defineProperties3(Constructor, staticProps);
71451
71465
  return Constructor;
71452
71466
  };
71453
71467
  }();
@@ -72505,7 +72519,7 @@ var _default$2 = UnfoldMoreHorizontalIcon.default = function(_ref) {
72505
72519
  );
72506
72520
  };
72507
72521
  var _createClass$2 = function() {
72508
- function defineProperties4(target, props) {
72522
+ function defineProperties3(target, props) {
72509
72523
  for (var i = 0; i < props.length; i++) {
72510
72524
  var descriptor2 = props[i];
72511
72525
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -72515,12 +72529,12 @@ var _createClass$2 = function() {
72515
72529
  Object.defineProperty(target, descriptor2.key, descriptor2);
72516
72530
  }
72517
72531
  }
72518
- __name(defineProperties4, "defineProperties");
72532
+ __name(defineProperties3, "defineProperties");
72519
72533
  return function(Constructor, protoProps, staticProps) {
72520
72534
  if (protoProps)
72521
- defineProperties4(Constructor.prototype, protoProps);
72535
+ defineProperties3(Constructor.prototype, protoProps);
72522
72536
  if (staticProps)
72523
- defineProperties4(Constructor, staticProps);
72537
+ defineProperties3(Constructor, staticProps);
72524
72538
  return Constructor;
72525
72539
  };
72526
72540
  }();
@@ -73930,7 +73944,7 @@ var PhotoshopPreviews = /* @__PURE__ */ __name(function PhotoshopPreviews2(_ref)
73930
73944
  );
73931
73945
  }, "PhotoshopPreviews");
73932
73946
  var _createClass$1 = function() {
73933
- function defineProperties4(target, props) {
73947
+ function defineProperties3(target, props) {
73934
73948
  for (var i = 0; i < props.length; i++) {
73935
73949
  var descriptor2 = props[i];
73936
73950
  descriptor2.enumerable = descriptor2.enumerable || false;
@@ -73940,12 +73954,12 @@ var _createClass$1 = function() {
73940
73954
  Object.defineProperty(target, descriptor2.key, descriptor2);
73941
73955
  }
73942
73956
  }
73943
- __name(defineProperties4, "defineProperties");
73957
+ __name(defineProperties3, "defineProperties");
73944
73958
  return function(Constructor, protoProps, staticProps) {
73945
73959
  if (protoProps)
73946
- defineProperties4(Constructor.prototype, protoProps);
73960
+ defineProperties3(Constructor.prototype, protoProps);
73947
73961
  if (staticProps)
73948
- defineProperties4(Constructor, staticProps);
73962
+ defineProperties3(Constructor, staticProps);
73949
73963
  return Constructor;
73950
73964
  };
73951
73965
  }();
@@ -98028,7 +98042,7 @@ ObjectWithoutPrototypeCache.prototype.set = function(key, value) {
98028
98042
  this.cache[key] = value;
98029
98043
  };
98030
98044
  var cacheDefault = {
98031
- create: /* @__PURE__ */ __name(function create6() {
98045
+ create: /* @__PURE__ */ __name(function create5() {
98032
98046
  return new ObjectWithoutPrototypeCache();
98033
98047
  }, "create")
98034
98048
  };