@pie-lib/graphing-module 3.0.0 → 3.0.1

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/module/index.js CHANGED
@@ -1,7 +1,7 @@
1
- import {_dll_prop_types, _dll_lodash, _dll_react, _dll_pie_lib__render_ui, _dll_mui__material_styles, _dll_react_dom, _dll_debug, _dll_classnames, _dll_mui__material, _dll_mui__icons_material} from "../../shared-module@^3.0.5/module/index.js";
2
- import {_dll_pie_lib__editable_html_tip_tap} from "../../editable-html-module@^6.0.5/module/index.js";
3
- import {_dll_pie_lib__drag} from "../../drag-module@^3.0.5/module/index.js";
4
- import {_dll_pie_lib__config_ui} from "../../config-module@^3.0.0/module/index.js";
1
+ import {_dll_prop_types, _dll_react, _dll_pie_lib__render_ui, _dll_mui__material_styles, _dll_react_dom, _dll_debug, _dll_classnames, _dll_mui__material, _dll_mui__icons_material} from "../../shared-module@^4.0.1/module/index.js";
2
+ import {_dll_pie_lib__editable_html_tip_tap} from "../../editable-html-module@^6.1.2/module/index.js";
3
+ import {_dll_pie_lib__drag} from "../../drag-module@^3.1.2/module/index.js";
4
+ import {_dll_pie_lib__config_ui} from "../../config-module@^3.0.1/module/index.js";
5
5
  var xhtml = "http://www.w3.org/1999/xhtml";
6
6
  var namespaces = {
7
7
  svg: "http://www.w3.org/2000/svg",
@@ -647,7 +647,7 @@ function* selection_iterator() {
647
647
  }
648
648
  }
649
649
  }
650
- var root = [null];
650
+ var root$6 = [null];
651
651
  function Selection(groups, parents) {
652
652
  this._groups = groups;
653
653
  this._parents = parents;
@@ -694,7 +694,7 @@ Selection.prototype = {
694
694
  [Symbol.iterator]: selection_iterator
695
695
  };
696
696
  function select(selector) {
697
- return typeof selector === "string" ? new Selection([[document.querySelector(selector)]], [document.documentElement]) : new Selection([[selector]], root);
697
+ return typeof selector === "string" ? new Selection([[document.querySelector(selector)]], [document.documentElement]) : new Selection([[selector]], root$6);
698
698
  }
699
699
  function sourceEvent(event) {
700
700
  let sourceEvent;
@@ -787,6 +787,1305 @@ var invariant = function (condition, format, a, b, c, d, e, f) {
787
787
  }
788
788
  };
789
789
  var browser = invariant;
790
+ var freeGlobal$2 = typeof global == 'object' && global && global.Object === Object && global;
791
+ var freeGlobal$3 = freeGlobal$2;
792
+ var freeSelf$1 = typeof self == 'object' && self && self.Object === Object && self;
793
+ var root$4 = freeGlobal$3 || freeSelf$1 || Function('return this')();
794
+ var root$5 = root$4;
795
+ var Symbol$4 = root$5.Symbol;
796
+ var Symbol$5 = Symbol$4;
797
+ var objectProto$k = Object.prototype;
798
+ var hasOwnProperty$g = objectProto$k.hasOwnProperty;
799
+ var nativeObjectToString$3 = objectProto$k.toString;
800
+ var symToStringTag$3 = Symbol$5 ? Symbol$5.toStringTag : undefined;
801
+ function getRawTag$2(value) {
802
+ var isOwn = hasOwnProperty$g.call(value, symToStringTag$3), tag = value[symToStringTag$3];
803
+ try {
804
+ value[symToStringTag$3] = undefined;
805
+ var unmasked = true;
806
+ } catch (e) {}
807
+ var result = nativeObjectToString$3.call(value);
808
+ if (unmasked) {
809
+ if (isOwn) {
810
+ value[symToStringTag$3] = tag;
811
+ } else {
812
+ delete value[symToStringTag$3];
813
+ }
814
+ }
815
+ return result;
816
+ }
817
+ var objectProto$j = Object.prototype;
818
+ var nativeObjectToString$2 = objectProto$j.toString;
819
+ function objectToString$2(value) {
820
+ return nativeObjectToString$2.call(value);
821
+ }
822
+ var nullTag$1 = '[object Null]', undefinedTag$1 = '[object Undefined]';
823
+ var symToStringTag$2 = Symbol$5 ? Symbol$5.toStringTag : undefined;
824
+ function baseGetTag$2(value) {
825
+ if (value == null) {
826
+ return value === undefined ? undefinedTag$1 : nullTag$1;
827
+ }
828
+ return symToStringTag$2 && (symToStringTag$2 in Object(value)) ? getRawTag$2(value) : objectToString$2(value);
829
+ }
830
+ function isObjectLike(value) {
831
+ return value != null && typeof value == 'object';
832
+ }
833
+ var symbolTag$3 = '[object Symbol]';
834
+ function isSymbol(value) {
835
+ return typeof value == 'symbol' || isObjectLike(value) && baseGetTag$2(value) == symbolTag$3;
836
+ }
837
+ var isArray = Array.isArray;
838
+ var isArray$1 = isArray;
839
+ var reWhitespace = /\s/;
840
+ function trimmedEndIndex(string) {
841
+ var index = string.length;
842
+ while (index-- && reWhitespace.test(string.charAt(index))) {}
843
+ return index;
844
+ }
845
+ var reTrimStart = /^\s+/;
846
+ function baseTrim(string) {
847
+ return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string;
848
+ }
849
+ function isObject$3(value) {
850
+ var type = typeof value;
851
+ return value != null && (type == 'object' || type == 'function');
852
+ }
853
+ var NAN = 0 / 0;
854
+ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
855
+ var reIsBinary = /^0b[01]+$/i;
856
+ var reIsOctal = /^0o[0-7]+$/i;
857
+ var freeParseInt = parseInt;
858
+ function toNumber(value) {
859
+ if (typeof value == 'number') {
860
+ return value;
861
+ }
862
+ if (isSymbol(value)) {
863
+ return NAN;
864
+ }
865
+ if (isObject$3(value)) {
866
+ var other = typeof value.valueOf == 'function' ? value.valueOf() : value;
867
+ value = isObject$3(other) ? other + '' : other;
868
+ }
869
+ if (typeof value != 'string') {
870
+ return value === 0 ? value : +value;
871
+ }
872
+ value = baseTrim(value);
873
+ var isBinary = reIsBinary.test(value);
874
+ return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
875
+ }
876
+ var INFINITY$1 = 1 / 0, MAX_INTEGER = 1.7976931348623157e+308;
877
+ function toFinite(value) {
878
+ if (!value) {
879
+ return value === 0 ? value : 0;
880
+ }
881
+ value = toNumber(value);
882
+ if (value === INFINITY$1 || value === -INFINITY$1) {
883
+ var sign = value < 0 ? -1 : 1;
884
+ return sign * MAX_INTEGER;
885
+ }
886
+ return value === value ? value : 0;
887
+ }
888
+ function toInteger(value) {
889
+ var result = toFinite(value), remainder = result % 1;
890
+ return result === result ? remainder ? result - remainder : result : 0;
891
+ }
892
+ var asyncTag$1 = '[object AsyncFunction]', funcTag$3 = '[object Function]', genTag$2 = '[object GeneratorFunction]', proxyTag$1 = '[object Proxy]';
893
+ function isFunction$2(value) {
894
+ if (!isObject$3(value)) {
895
+ return false;
896
+ }
897
+ var tag = baseGetTag$2(value);
898
+ return tag == funcTag$3 || tag == genTag$2 || tag == asyncTag$1 || tag == proxyTag$1;
899
+ }
900
+ var coreJsData$2 = root$5['__core-js_shared__'];
901
+ var coreJsData$3 = coreJsData$2;
902
+ var maskSrcKey$1 = (function () {
903
+ var uid = (/[^.]+$/).exec(coreJsData$3 && coreJsData$3.keys && coreJsData$3.keys.IE_PROTO || '');
904
+ return uid ? 'Symbol(src)_1.' + uid : '';
905
+ })();
906
+ function isMasked$2(func) {
907
+ return !!maskSrcKey$1 && (maskSrcKey$1 in func);
908
+ }
909
+ var funcProto$3 = Function.prototype;
910
+ var funcToString$3 = funcProto$3.toString;
911
+ function toSource$2(func) {
912
+ if (func != null) {
913
+ try {
914
+ return funcToString$3.call(func);
915
+ } catch (e) {}
916
+ try {
917
+ return func + '';
918
+ } catch (e) {}
919
+ }
920
+ return '';
921
+ }
922
+ var reRegExpChar$1 = /[\\^$.*+?()[\]{}|]/g;
923
+ var reIsHostCtor$1 = /^\[object .+?Constructor\]$/;
924
+ var funcProto$2 = Function.prototype, objectProto$i = Object.prototype;
925
+ var funcToString$2 = funcProto$2.toString;
926
+ var hasOwnProperty$f = objectProto$i.hasOwnProperty;
927
+ var reIsNative$1 = RegExp('^' + funcToString$2.call(hasOwnProperty$f).replace(reRegExpChar$1, '\\$&').replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$');
928
+ function baseIsNative$2(value) {
929
+ if (!isObject$3(value) || isMasked$2(value)) {
930
+ return false;
931
+ }
932
+ var pattern = isFunction$2(value) ? reIsNative$1 : reIsHostCtor$1;
933
+ return pattern.test(toSource$2(value));
934
+ }
935
+ function getValue$2(object, key) {
936
+ return object == null ? undefined : object[key];
937
+ }
938
+ function getNative$3(object, key) {
939
+ var value = getValue$2(object, key);
940
+ return baseIsNative$2(value) ? value : undefined;
941
+ }
942
+ var WeakMap = getNative$3(root$5, 'WeakMap');
943
+ var WeakMap$1 = WeakMap;
944
+ var objectCreate = Object.create;
945
+ var baseCreate = (function () {
946
+ function object() {}
947
+ return function (proto) {
948
+ if (!isObject$3(proto)) {
949
+ return {};
950
+ }
951
+ if (objectCreate) {
952
+ return objectCreate(proto);
953
+ }
954
+ object.prototype = proto;
955
+ var result = new object();
956
+ object.prototype = undefined;
957
+ return result;
958
+ };
959
+ })();
960
+ var baseCreate$1 = baseCreate;
961
+ function noop$2() {}
962
+ function copyArray(source, array) {
963
+ var index = -1, length = source.length;
964
+ array || (array = Array(length));
965
+ while (++index < length) {
966
+ array[index] = source[index];
967
+ }
968
+ return array;
969
+ }
970
+ var defineProperty$1 = (function () {
971
+ try {
972
+ var func = getNative$3(Object, 'defineProperty');
973
+ func({}, '', {});
974
+ return func;
975
+ } catch (e) {}
976
+ })();
977
+ var defineProperty$2 = defineProperty$1;
978
+ function arrayEach(array, iteratee) {
979
+ var index = -1, length = array == null ? 0 : array.length;
980
+ while (++index < length) {
981
+ if (iteratee(array[index], index, array) === false) {
982
+ break;
983
+ }
984
+ }
985
+ return array;
986
+ }
987
+ function baseFindIndex(array, predicate, fromIndex, fromRight) {
988
+ var length = array.length, index = fromIndex + (fromRight ? 1 : -1);
989
+ while (fromRight ? index-- : ++index < length) {
990
+ if (predicate(array[index], index, array)) {
991
+ return index;
992
+ }
993
+ }
994
+ return -1;
995
+ }
996
+ function baseIsNaN(value) {
997
+ return value !== value;
998
+ }
999
+ function strictIndexOf(array, value, fromIndex) {
1000
+ var index = fromIndex - 1, length = array.length;
1001
+ while (++index < length) {
1002
+ if (array[index] === value) {
1003
+ return index;
1004
+ }
1005
+ }
1006
+ return -1;
1007
+ }
1008
+ function baseIndexOf(array, value, fromIndex) {
1009
+ return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex);
1010
+ }
1011
+ function arrayIncludes(array, value) {
1012
+ var length = array == null ? 0 : array.length;
1013
+ return !!length && baseIndexOf(array, value, 0) > -1;
1014
+ }
1015
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
1016
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
1017
+ function isIndex(value, length) {
1018
+ var type = typeof value;
1019
+ length = length == null ? MAX_SAFE_INTEGER$1 : length;
1020
+ return !!length && (type == 'number' || type != 'symbol' && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
1021
+ }
1022
+ function baseAssignValue(object, key, value) {
1023
+ if (key == '__proto__' && defineProperty$2) {
1024
+ defineProperty$2(object, key, {
1025
+ 'configurable': true,
1026
+ 'enumerable': true,
1027
+ 'value': value,
1028
+ 'writable': true
1029
+ });
1030
+ } else {
1031
+ object[key] = value;
1032
+ }
1033
+ }
1034
+ function eq$2(value, other) {
1035
+ return value === other || value !== value && other !== other;
1036
+ }
1037
+ var objectProto$h = Object.prototype;
1038
+ var hasOwnProperty$e = objectProto$h.hasOwnProperty;
1039
+ function assignValue(object, key, value) {
1040
+ var objValue = object[key];
1041
+ if (!(hasOwnProperty$e.call(object, key) && eq$2(objValue, value)) || value === undefined && !((key in object))) {
1042
+ baseAssignValue(object, key, value);
1043
+ }
1044
+ }
1045
+ function copyObject(source, props, object, customizer) {
1046
+ var isNew = !object;
1047
+ object || (object = {});
1048
+ var index = -1, length = props.length;
1049
+ while (++index < length) {
1050
+ var key = props[index];
1051
+ var newValue = customizer ? customizer(object[key], source[key], key, object, source) : undefined;
1052
+ if (newValue === undefined) {
1053
+ newValue = source[key];
1054
+ }
1055
+ if (isNew) {
1056
+ baseAssignValue(object, key, newValue);
1057
+ } else {
1058
+ assignValue(object, key, newValue);
1059
+ }
1060
+ }
1061
+ return object;
1062
+ }
1063
+ var MAX_SAFE_INTEGER = 9007199254740991;
1064
+ function isLength(value) {
1065
+ return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
1066
+ }
1067
+ function isArrayLike(value) {
1068
+ return value != null && isLength(value.length) && !isFunction$2(value);
1069
+ }
1070
+ function isIterateeCall(value, index, object) {
1071
+ if (!isObject$3(object)) {
1072
+ return false;
1073
+ }
1074
+ var type = typeof index;
1075
+ if (type == 'number' ? isArrayLike(object) && isIndex(index, object.length) : type == 'string' && (index in object)) {
1076
+ return eq$2(object[index], value);
1077
+ }
1078
+ return false;
1079
+ }
1080
+ var objectProto$g = Object.prototype;
1081
+ function isPrototype(value) {
1082
+ var Ctor = value && value.constructor, proto = typeof Ctor == 'function' && Ctor.prototype || objectProto$g;
1083
+ return value === proto;
1084
+ }
1085
+ function baseTimes(n, iteratee) {
1086
+ var index = -1, result = Array(n);
1087
+ while (++index < n) {
1088
+ result[index] = iteratee(index);
1089
+ }
1090
+ return result;
1091
+ }
1092
+ var argsTag$3 = '[object Arguments]';
1093
+ function baseIsArguments(value) {
1094
+ return isObjectLike(value) && baseGetTag$2(value) == argsTag$3;
1095
+ }
1096
+ var objectProto$f = Object.prototype;
1097
+ var hasOwnProperty$d = objectProto$f.hasOwnProperty;
1098
+ var propertyIsEnumerable$1 = objectProto$f.propertyIsEnumerable;
1099
+ var isArguments = baseIsArguments((function () {
1100
+ return arguments;
1101
+ })()) ? baseIsArguments : function (value) {
1102
+ return isObjectLike(value) && hasOwnProperty$d.call(value, 'callee') && !propertyIsEnumerable$1.call(value, 'callee');
1103
+ };
1104
+ var isArguments$1 = isArguments;
1105
+ function stubFalse() {
1106
+ return false;
1107
+ }
1108
+ var freeExports$2 = typeof exports == 'object' && exports && !exports.nodeType && exports;
1109
+ var freeModule$2 = freeExports$2 && typeof module == 'object' && module && !module.nodeType && module;
1110
+ var moduleExports$2 = freeModule$2 && freeModule$2.exports === freeExports$2;
1111
+ var Buffer$1 = moduleExports$2 ? root$5.Buffer : undefined;
1112
+ var nativeIsBuffer = Buffer$1 ? Buffer$1.isBuffer : undefined;
1113
+ var isBuffer = nativeIsBuffer || stubFalse;
1114
+ var isBuffer$1 = isBuffer;
1115
+ var argsTag$2 = '[object Arguments]', arrayTag$2 = '[object Array]', boolTag$3 = '[object Boolean]', dateTag$3 = '[object Date]', errorTag$2 = '[object Error]', funcTag$2 = '[object Function]', mapTag$6 = '[object Map]', numberTag$3 = '[object Number]', objectTag$3 = '[object Object]', regexpTag$3 = '[object RegExp]', setTag$6 = '[object Set]', stringTag$4 = '[object String]', weakMapTag$2 = '[object WeakMap]';
1116
+ var arrayBufferTag$3 = '[object ArrayBuffer]', dataViewTag$4 = '[object DataView]', float32Tag$2 = '[object Float32Array]', float64Tag$2 = '[object Float64Array]', int8Tag$2 = '[object Int8Array]', int16Tag$2 = '[object Int16Array]', int32Tag$2 = '[object Int32Array]', uint8Tag$2 = '[object Uint8Array]', uint8ClampedTag$2 = '[object Uint8ClampedArray]', uint16Tag$2 = '[object Uint16Array]', uint32Tag$2 = '[object Uint32Array]';
1117
+ var typedArrayTags = {};
1118
+ typedArrayTags[float32Tag$2] = typedArrayTags[float64Tag$2] = typedArrayTags[int8Tag$2] = typedArrayTags[int16Tag$2] = typedArrayTags[int32Tag$2] = typedArrayTags[uint8Tag$2] = typedArrayTags[uint8ClampedTag$2] = typedArrayTags[uint16Tag$2] = typedArrayTags[uint32Tag$2] = true;
1119
+ typedArrayTags[argsTag$2] = typedArrayTags[arrayTag$2] = typedArrayTags[arrayBufferTag$3] = typedArrayTags[boolTag$3] = typedArrayTags[dataViewTag$4] = typedArrayTags[dateTag$3] = typedArrayTags[errorTag$2] = typedArrayTags[funcTag$2] = typedArrayTags[mapTag$6] = typedArrayTags[numberTag$3] = typedArrayTags[objectTag$3] = typedArrayTags[regexpTag$3] = typedArrayTags[setTag$6] = typedArrayTags[stringTag$4] = typedArrayTags[weakMapTag$2] = false;
1120
+ function baseIsTypedArray(value) {
1121
+ return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag$2(value)];
1122
+ }
1123
+ function baseUnary(func) {
1124
+ return function (value) {
1125
+ return func(value);
1126
+ };
1127
+ }
1128
+ var freeExports$1 = typeof exports == 'object' && exports && !exports.nodeType && exports;
1129
+ var freeModule$1 = freeExports$1 && typeof module == 'object' && module && !module.nodeType && module;
1130
+ var moduleExports$1 = freeModule$1 && freeModule$1.exports === freeExports$1;
1131
+ var freeProcess = moduleExports$1 && freeGlobal$3.process;
1132
+ var nodeUtil = (function () {
1133
+ try {
1134
+ var types = freeModule$1 && freeModule$1.require && freeModule$1.require('util').types;
1135
+ if (types) {
1136
+ return types;
1137
+ }
1138
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
1139
+ } catch (e) {}
1140
+ })();
1141
+ var nodeUtil$1 = nodeUtil;
1142
+ var nodeIsTypedArray = nodeUtil$1 && nodeUtil$1.isTypedArray;
1143
+ var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
1144
+ var isTypedArray$1 = isTypedArray;
1145
+ var objectProto$e = Object.prototype;
1146
+ var hasOwnProperty$c = objectProto$e.hasOwnProperty;
1147
+ function arrayLikeKeys(value, inherited) {
1148
+ var isArr = isArray$1(value), isArg = !isArr && isArguments$1(value), isBuff = !isArr && !isArg && isBuffer$1(value), isType = !isArr && !isArg && !isBuff && isTypedArray$1(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
1149
+ for (var key in value) {
1150
+ if ((inherited || hasOwnProperty$c.call(value, key)) && !(skipIndexes && (key == 'length' || isBuff && (key == 'offset' || key == 'parent') || isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset') || isIndex(key, length)))) {
1151
+ result.push(key);
1152
+ }
1153
+ }
1154
+ return result;
1155
+ }
1156
+ function overArg(func, transform) {
1157
+ return function (arg) {
1158
+ return func(transform(arg));
1159
+ };
1160
+ }
1161
+ var nativeKeys = overArg(Object.keys, Object);
1162
+ var nativeKeys$1 = nativeKeys;
1163
+ var objectProto$d = Object.prototype;
1164
+ var hasOwnProperty$b = objectProto$d.hasOwnProperty;
1165
+ function baseKeys(object) {
1166
+ if (!isPrototype(object)) {
1167
+ return nativeKeys$1(object);
1168
+ }
1169
+ var result = [];
1170
+ for (var key in Object(object)) {
1171
+ if (hasOwnProperty$b.call(object, key) && key != 'constructor') {
1172
+ result.push(key);
1173
+ }
1174
+ }
1175
+ return result;
1176
+ }
1177
+ function keys(object) {
1178
+ return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
1179
+ }
1180
+ function nativeKeysIn(object) {
1181
+ var result = [];
1182
+ if (object != null) {
1183
+ for (var key in Object(object)) {
1184
+ result.push(key);
1185
+ }
1186
+ }
1187
+ return result;
1188
+ }
1189
+ var objectProto$c = Object.prototype;
1190
+ var hasOwnProperty$a = objectProto$c.hasOwnProperty;
1191
+ function baseKeysIn(object) {
1192
+ if (!isObject$3(object)) {
1193
+ return nativeKeysIn(object);
1194
+ }
1195
+ var isProto = isPrototype(object), result = [];
1196
+ for (var key in object) {
1197
+ if (!(key == 'constructor' && (isProto || !hasOwnProperty$a.call(object, key)))) {
1198
+ result.push(key);
1199
+ }
1200
+ }
1201
+ return result;
1202
+ }
1203
+ function keysIn(object) {
1204
+ return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
1205
+ }
1206
+ var nativeCreate$5 = getNative$3(Object, 'create');
1207
+ var nativeCreate$6 = nativeCreate$5;
1208
+ function hashClear$2() {
1209
+ this.__data__ = nativeCreate$6 ? nativeCreate$6(null) : {};
1210
+ this.size = 0;
1211
+ }
1212
+ function hashDelete$2(key) {
1213
+ var result = this.has(key) && delete this.__data__[key];
1214
+ this.size -= result ? 1 : 0;
1215
+ return result;
1216
+ }
1217
+ var HASH_UNDEFINED$4 = '__lodash_hash_undefined__';
1218
+ var objectProto$b = Object.prototype;
1219
+ var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
1220
+ function hashGet$2(key) {
1221
+ var data = this.__data__;
1222
+ if (nativeCreate$6) {
1223
+ var result = data[key];
1224
+ return result === HASH_UNDEFINED$4 ? undefined : result;
1225
+ }
1226
+ return hasOwnProperty$9.call(data, key) ? data[key] : undefined;
1227
+ }
1228
+ var objectProto$a = Object.prototype;
1229
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
1230
+ function hashHas$2(key) {
1231
+ var data = this.__data__;
1232
+ return nativeCreate$6 ? data[key] !== undefined : hasOwnProperty$8.call(data, key);
1233
+ }
1234
+ var HASH_UNDEFINED$3 = '__lodash_hash_undefined__';
1235
+ function hashSet$2(key, value) {
1236
+ var data = this.__data__;
1237
+ this.size += this.has(key) ? 0 : 1;
1238
+ data[key] = nativeCreate$6 && value === undefined ? HASH_UNDEFINED$3 : value;
1239
+ return this;
1240
+ }
1241
+ function Hash$2(entries) {
1242
+ var index = -1, length = entries == null ? 0 : entries.length;
1243
+ this.clear();
1244
+ while (++index < length) {
1245
+ var entry = entries[index];
1246
+ this.set(entry[0], entry[1]);
1247
+ }
1248
+ }
1249
+ Hash$2.prototype.clear = hashClear$2;
1250
+ Hash$2.prototype['delete'] = hashDelete$2;
1251
+ Hash$2.prototype.get = hashGet$2;
1252
+ Hash$2.prototype.has = hashHas$2;
1253
+ Hash$2.prototype.set = hashSet$2;
1254
+ function listCacheClear$2() {
1255
+ this.__data__ = [];
1256
+ this.size = 0;
1257
+ }
1258
+ function assocIndexOf$5(array, key) {
1259
+ var length = array.length;
1260
+ while (length--) {
1261
+ if (eq$2(array[length][0], key)) {
1262
+ return length;
1263
+ }
1264
+ }
1265
+ return -1;
1266
+ }
1267
+ var arrayProto$1 = Array.prototype;
1268
+ var splice$1 = arrayProto$1.splice;
1269
+ function listCacheDelete$2(key) {
1270
+ var data = this.__data__, index = assocIndexOf$5(data, key);
1271
+ if (index < 0) {
1272
+ return false;
1273
+ }
1274
+ var lastIndex = data.length - 1;
1275
+ if (index == lastIndex) {
1276
+ data.pop();
1277
+ } else {
1278
+ splice$1.call(data, index, 1);
1279
+ }
1280
+ --this.size;
1281
+ return true;
1282
+ }
1283
+ function listCacheGet$2(key) {
1284
+ var data = this.__data__, index = assocIndexOf$5(data, key);
1285
+ return index < 0 ? undefined : data[index][1];
1286
+ }
1287
+ function listCacheHas$2(key) {
1288
+ return assocIndexOf$5(this.__data__, key) > -1;
1289
+ }
1290
+ function listCacheSet$2(key, value) {
1291
+ var data = this.__data__, index = assocIndexOf$5(data, key);
1292
+ if (index < 0) {
1293
+ ++this.size;
1294
+ data.push([key, value]);
1295
+ } else {
1296
+ data[index][1] = value;
1297
+ }
1298
+ return this;
1299
+ }
1300
+ function ListCache$2(entries) {
1301
+ var index = -1, length = entries == null ? 0 : entries.length;
1302
+ this.clear();
1303
+ while (++index < length) {
1304
+ var entry = entries[index];
1305
+ this.set(entry[0], entry[1]);
1306
+ }
1307
+ }
1308
+ ListCache$2.prototype.clear = listCacheClear$2;
1309
+ ListCache$2.prototype['delete'] = listCacheDelete$2;
1310
+ ListCache$2.prototype.get = listCacheGet$2;
1311
+ ListCache$2.prototype.has = listCacheHas$2;
1312
+ ListCache$2.prototype.set = listCacheSet$2;
1313
+ var Map$3 = getNative$3(root$5, 'Map');
1314
+ var Map$4 = Map$3;
1315
+ function mapCacheClear$2() {
1316
+ this.size = 0;
1317
+ this.__data__ = {
1318
+ 'hash': new Hash$2(),
1319
+ 'map': new (Map$4 || ListCache$2)(),
1320
+ 'string': new Hash$2()
1321
+ };
1322
+ }
1323
+ function isKeyable$2(value) {
1324
+ var type = typeof value;
1325
+ return type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean' ? value !== '__proto__' : value === null;
1326
+ }
1327
+ function getMapData$5(map, key) {
1328
+ var data = map.__data__;
1329
+ return isKeyable$2(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map;
1330
+ }
1331
+ function mapCacheDelete$2(key) {
1332
+ var result = getMapData$5(this, key)['delete'](key);
1333
+ this.size -= result ? 1 : 0;
1334
+ return result;
1335
+ }
1336
+ function mapCacheGet$2(key) {
1337
+ return getMapData$5(this, key).get(key);
1338
+ }
1339
+ function mapCacheHas$2(key) {
1340
+ return getMapData$5(this, key).has(key);
1341
+ }
1342
+ function mapCacheSet$2(key, value) {
1343
+ var data = getMapData$5(this, key), size = data.size;
1344
+ data.set(key, value);
1345
+ this.size += data.size == size ? 0 : 1;
1346
+ return this;
1347
+ }
1348
+ function MapCache$2(entries) {
1349
+ var index = -1, length = entries == null ? 0 : entries.length;
1350
+ this.clear();
1351
+ while (++index < length) {
1352
+ var entry = entries[index];
1353
+ this.set(entry[0], entry[1]);
1354
+ }
1355
+ }
1356
+ MapCache$2.prototype.clear = mapCacheClear$2;
1357
+ MapCache$2.prototype['delete'] = mapCacheDelete$2;
1358
+ MapCache$2.prototype.get = mapCacheGet$2;
1359
+ MapCache$2.prototype.has = mapCacheHas$2;
1360
+ MapCache$2.prototype.set = mapCacheSet$2;
1361
+ function arrayPush(array, values) {
1362
+ var index = -1, length = values.length, offset = array.length;
1363
+ while (++index < length) {
1364
+ array[offset + index] = values[index];
1365
+ }
1366
+ return array;
1367
+ }
1368
+ var spreadableSymbol = Symbol$5 ? Symbol$5.isConcatSpreadable : undefined;
1369
+ function isFlattenable(value) {
1370
+ return isArray$1(value) || isArguments$1(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);
1371
+ }
1372
+ function baseFlatten(array, depth, predicate, isStrict, result) {
1373
+ var index = -1, length = array.length;
1374
+ predicate || (predicate = isFlattenable);
1375
+ result || (result = []);
1376
+ while (++index < length) {
1377
+ var value = array[index];
1378
+ if (depth > 0 && predicate(value)) {
1379
+ if (depth > 1) {
1380
+ baseFlatten(value, depth - 1, predicate, isStrict, result);
1381
+ } else {
1382
+ arrayPush(result, value);
1383
+ }
1384
+ } else if (!isStrict) {
1385
+ result[result.length] = value;
1386
+ }
1387
+ }
1388
+ return result;
1389
+ }
1390
+ var getPrototype = overArg(Object.getPrototypeOf, Object);
1391
+ var getPrototype$1 = getPrototype;
1392
+ function baseSlice(array, start, end) {
1393
+ var index = -1, length = array.length;
1394
+ if (start < 0) {
1395
+ start = -start > length ? 0 : length + start;
1396
+ }
1397
+ end = end > length ? length : end;
1398
+ if (end < 0) {
1399
+ end += length;
1400
+ }
1401
+ length = start > end ? 0 : end - start >>> 0;
1402
+ start >>>= 0;
1403
+ var result = Array(length);
1404
+ while (++index < length) {
1405
+ result[index] = array[index + start];
1406
+ }
1407
+ return result;
1408
+ }
1409
+ var nativeCeil$1 = Math.ceil, nativeMax$1 = Math.max;
1410
+ function chunk(array, size, guard) {
1411
+ if (guard ? isIterateeCall(array, size, guard) : size === undefined) {
1412
+ size = 1;
1413
+ } else {
1414
+ size = nativeMax$1(toInteger(size), 0);
1415
+ }
1416
+ var length = array == null ? 0 : array.length;
1417
+ if (!length || size < 1) {
1418
+ return [];
1419
+ }
1420
+ var index = 0, resIndex = 0, result = Array(nativeCeil$1(length / size));
1421
+ while (index < length) {
1422
+ result[resIndex++] = baseSlice(array, index, index += size);
1423
+ }
1424
+ return result;
1425
+ }
1426
+ function stackClear() {
1427
+ this.__data__ = new ListCache$2();
1428
+ this.size = 0;
1429
+ }
1430
+ function stackDelete(key) {
1431
+ var data = this.__data__, result = data['delete'](key);
1432
+ this.size = data.size;
1433
+ return result;
1434
+ }
1435
+ function stackGet(key) {
1436
+ return this.__data__.get(key);
1437
+ }
1438
+ function stackHas(key) {
1439
+ return this.__data__.has(key);
1440
+ }
1441
+ var LARGE_ARRAY_SIZE$1 = 200;
1442
+ function stackSet(key, value) {
1443
+ var data = this.__data__;
1444
+ if (data instanceof ListCache$2) {
1445
+ var pairs = data.__data__;
1446
+ if (!Map$4 || pairs.length < LARGE_ARRAY_SIZE$1 - 1) {
1447
+ pairs.push([key, value]);
1448
+ this.size = ++data.size;
1449
+ return this;
1450
+ }
1451
+ data = this.__data__ = new MapCache$2(pairs);
1452
+ }
1453
+ data.set(key, value);
1454
+ this.size = data.size;
1455
+ return this;
1456
+ }
1457
+ function Stack(entries) {
1458
+ var data = this.__data__ = new ListCache$2(entries);
1459
+ this.size = data.size;
1460
+ }
1461
+ Stack.prototype.clear = stackClear;
1462
+ Stack.prototype['delete'] = stackDelete;
1463
+ Stack.prototype.get = stackGet;
1464
+ Stack.prototype.has = stackHas;
1465
+ Stack.prototype.set = stackSet;
1466
+ function baseAssign(object, source) {
1467
+ return object && copyObject(source, keys(source), object);
1468
+ }
1469
+ function baseAssignIn(object, source) {
1470
+ return object && copyObject(source, keysIn(source), object);
1471
+ }
1472
+ var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
1473
+ var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;
1474
+ var moduleExports = freeModule && freeModule.exports === freeExports;
1475
+ var Buffer = moduleExports ? root$5.Buffer : undefined, allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
1476
+ function cloneBuffer(buffer, isDeep) {
1477
+ if (isDeep) {
1478
+ return buffer.slice();
1479
+ }
1480
+ var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
1481
+ buffer.copy(result);
1482
+ return result;
1483
+ }
1484
+ function arrayFilter(array, predicate) {
1485
+ var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = [];
1486
+ while (++index < length) {
1487
+ var value = array[index];
1488
+ if (predicate(value, index, array)) {
1489
+ result[resIndex++] = value;
1490
+ }
1491
+ }
1492
+ return result;
1493
+ }
1494
+ function stubArray() {
1495
+ return [];
1496
+ }
1497
+ var objectProto$9 = Object.prototype;
1498
+ var propertyIsEnumerable = objectProto$9.propertyIsEnumerable;
1499
+ var nativeGetSymbols$1 = Object.getOwnPropertySymbols;
1500
+ var getSymbols = !nativeGetSymbols$1 ? stubArray : function (object) {
1501
+ if (object == null) {
1502
+ return [];
1503
+ }
1504
+ object = Object(object);
1505
+ return arrayFilter(nativeGetSymbols$1(object), function (symbol) {
1506
+ return propertyIsEnumerable.call(object, symbol);
1507
+ });
1508
+ };
1509
+ var getSymbols$1 = getSymbols;
1510
+ function copySymbols(source, object) {
1511
+ return copyObject(source, getSymbols$1(source), object);
1512
+ }
1513
+ var nativeGetSymbols = Object.getOwnPropertySymbols;
1514
+ var getSymbolsIn = !nativeGetSymbols ? stubArray : function (object) {
1515
+ var result = [];
1516
+ while (object) {
1517
+ arrayPush(result, getSymbols$1(object));
1518
+ object = getPrototype$1(object);
1519
+ }
1520
+ return result;
1521
+ };
1522
+ var getSymbolsIn$1 = getSymbolsIn;
1523
+ function copySymbolsIn(source, object) {
1524
+ return copyObject(source, getSymbolsIn$1(source), object);
1525
+ }
1526
+ function baseGetAllKeys(object, keysFunc, symbolsFunc) {
1527
+ var result = keysFunc(object);
1528
+ return isArray$1(object) ? result : arrayPush(result, symbolsFunc(object));
1529
+ }
1530
+ function getAllKeys(object) {
1531
+ return baseGetAllKeys(object, keys, getSymbols$1);
1532
+ }
1533
+ function getAllKeysIn(object) {
1534
+ return baseGetAllKeys(object, keysIn, getSymbolsIn$1);
1535
+ }
1536
+ var DataView$1 = getNative$3(root$5, 'DataView');
1537
+ var DataView$2 = DataView$1;
1538
+ var Promise$1 = getNative$3(root$5, 'Promise');
1539
+ var Promise$2 = Promise$1;
1540
+ var Set$1 = getNative$3(root$5, 'Set');
1541
+ var Set$2 = Set$1;
1542
+ var mapTag$5 = '[object Map]', objectTag$2 = '[object Object]', promiseTag = '[object Promise]', setTag$5 = '[object Set]', weakMapTag$1 = '[object WeakMap]';
1543
+ var dataViewTag$3 = '[object DataView]';
1544
+ var dataViewCtorString = toSource$2(DataView$2), mapCtorString = toSource$2(Map$4), promiseCtorString = toSource$2(Promise$2), setCtorString = toSource$2(Set$2), weakMapCtorString = toSource$2(WeakMap$1);
1545
+ var getTag = baseGetTag$2;
1546
+ if (DataView$2 && getTag(new DataView$2(new ArrayBuffer(1))) != dataViewTag$3 || Map$4 && getTag(new Map$4()) != mapTag$5 || Promise$2 && getTag(Promise$2.resolve()) != promiseTag || Set$2 && getTag(new Set$2()) != setTag$5 || WeakMap$1 && getTag(new WeakMap$1()) != weakMapTag$1) {
1547
+ getTag = function (value) {
1548
+ var result = baseGetTag$2(value), Ctor = result == objectTag$2 ? value.constructor : undefined, ctorString = Ctor ? toSource$2(Ctor) : '';
1549
+ if (ctorString) {
1550
+ switch (ctorString) {
1551
+ case dataViewCtorString:
1552
+ return dataViewTag$3;
1553
+ case mapCtorString:
1554
+ return mapTag$5;
1555
+ case promiseCtorString:
1556
+ return promiseTag;
1557
+ case setCtorString:
1558
+ return setTag$5;
1559
+ case weakMapCtorString:
1560
+ return weakMapTag$1;
1561
+ }
1562
+ }
1563
+ return result;
1564
+ };
1565
+ }
1566
+ var getTag$1 = getTag;
1567
+ var objectProto$8 = Object.prototype;
1568
+ var hasOwnProperty$7 = objectProto$8.hasOwnProperty;
1569
+ function initCloneArray(array) {
1570
+ var length = array.length, result = new array.constructor(length);
1571
+ if (length && typeof array[0] == 'string' && hasOwnProperty$7.call(array, 'index')) {
1572
+ result.index = array.index;
1573
+ result.input = array.input;
1574
+ }
1575
+ return result;
1576
+ }
1577
+ var Uint8Array = root$5.Uint8Array;
1578
+ var Uint8Array$1 = Uint8Array;
1579
+ function cloneArrayBuffer(arrayBuffer) {
1580
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
1581
+ new Uint8Array$1(result).set(new Uint8Array$1(arrayBuffer));
1582
+ return result;
1583
+ }
1584
+ function cloneDataView(dataView, isDeep) {
1585
+ var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;
1586
+ return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
1587
+ }
1588
+ var reFlags = /\w*$/;
1589
+ function cloneRegExp(regexp) {
1590
+ var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
1591
+ result.lastIndex = regexp.lastIndex;
1592
+ return result;
1593
+ }
1594
+ var symbolProto$1 = Symbol$5 ? Symbol$5.prototype : undefined, symbolValueOf$1 = symbolProto$1 ? symbolProto$1.valueOf : undefined;
1595
+ function cloneSymbol(symbol) {
1596
+ return symbolValueOf$1 ? Object(symbolValueOf$1.call(symbol)) : {};
1597
+ }
1598
+ function cloneTypedArray(typedArray, isDeep) {
1599
+ var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
1600
+ return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
1601
+ }
1602
+ var boolTag$2 = '[object Boolean]', dateTag$2 = '[object Date]', mapTag$4 = '[object Map]', numberTag$2 = '[object Number]', regexpTag$2 = '[object RegExp]', setTag$4 = '[object Set]', stringTag$3 = '[object String]', symbolTag$2 = '[object Symbol]';
1603
+ var arrayBufferTag$2 = '[object ArrayBuffer]', dataViewTag$2 = '[object DataView]', float32Tag$1 = '[object Float32Array]', float64Tag$1 = '[object Float64Array]', int8Tag$1 = '[object Int8Array]', int16Tag$1 = '[object Int16Array]', int32Tag$1 = '[object Int32Array]', uint8Tag$1 = '[object Uint8Array]', uint8ClampedTag$1 = '[object Uint8ClampedArray]', uint16Tag$1 = '[object Uint16Array]', uint32Tag$1 = '[object Uint32Array]';
1604
+ function initCloneByTag(object, tag, isDeep) {
1605
+ var Ctor = object.constructor;
1606
+ switch (tag) {
1607
+ case arrayBufferTag$2:
1608
+ return cloneArrayBuffer(object);
1609
+ case boolTag$2:
1610
+ case dateTag$2:
1611
+ return new Ctor(+object);
1612
+ case dataViewTag$2:
1613
+ return cloneDataView(object, isDeep);
1614
+ case float32Tag$1:
1615
+ case float64Tag$1:
1616
+ case int8Tag$1:
1617
+ case int16Tag$1:
1618
+ case int32Tag$1:
1619
+ case uint8Tag$1:
1620
+ case uint8ClampedTag$1:
1621
+ case uint16Tag$1:
1622
+ case uint32Tag$1:
1623
+ return cloneTypedArray(object, isDeep);
1624
+ case mapTag$4:
1625
+ return new Ctor();
1626
+ case numberTag$2:
1627
+ case stringTag$3:
1628
+ return new Ctor(object);
1629
+ case regexpTag$2:
1630
+ return cloneRegExp(object);
1631
+ case setTag$4:
1632
+ return new Ctor();
1633
+ case symbolTag$2:
1634
+ return cloneSymbol(object);
1635
+ }
1636
+ }
1637
+ function initCloneObject(object) {
1638
+ return typeof object.constructor == 'function' && !isPrototype(object) ? baseCreate$1(getPrototype$1(object)) : {};
1639
+ }
1640
+ var mapTag$3 = '[object Map]';
1641
+ function baseIsMap(value) {
1642
+ return isObjectLike(value) && getTag$1(value) == mapTag$3;
1643
+ }
1644
+ var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
1645
+ var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;
1646
+ var isMap$1 = isMap;
1647
+ var setTag$3 = '[object Set]';
1648
+ function baseIsSet(value) {
1649
+ return isObjectLike(value) && getTag$1(value) == setTag$3;
1650
+ }
1651
+ var nodeIsSet = nodeUtil$1 && nodeUtil$1.isSet;
1652
+ var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
1653
+ var isSet$1 = isSet;
1654
+ var CLONE_DEEP_FLAG$1 = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG$1 = 4;
1655
+ var argsTag$1 = '[object Arguments]', arrayTag$1 = '[object Array]', boolTag$1 = '[object Boolean]', dateTag$1 = '[object Date]', errorTag$1 = '[object Error]', funcTag$1 = '[object Function]', genTag$1 = '[object GeneratorFunction]', mapTag$2 = '[object Map]', numberTag$1 = '[object Number]', objectTag$1 = '[object Object]', regexpTag$1 = '[object RegExp]', setTag$2 = '[object Set]', stringTag$2 = '[object String]', symbolTag$1 = '[object Symbol]', weakMapTag = '[object WeakMap]';
1656
+ var arrayBufferTag$1 = '[object ArrayBuffer]', dataViewTag$1 = '[object DataView]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]';
1657
+ var cloneableTags = {};
1658
+ cloneableTags[argsTag$1] = cloneableTags[arrayTag$1] = cloneableTags[arrayBufferTag$1] = cloneableTags[dataViewTag$1] = cloneableTags[boolTag$1] = cloneableTags[dateTag$1] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag$2] = cloneableTags[numberTag$1] = cloneableTags[objectTag$1] = cloneableTags[regexpTag$1] = cloneableTags[setTag$2] = cloneableTags[stringTag$2] = cloneableTags[symbolTag$1] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;
1659
+ cloneableTags[errorTag$1] = cloneableTags[funcTag$1] = cloneableTags[weakMapTag] = false;
1660
+ function baseClone(value, bitmask, customizer, key, object, stack) {
1661
+ var result, isDeep = bitmask & CLONE_DEEP_FLAG$1, isFlat = bitmask & CLONE_FLAT_FLAG, isFull = bitmask & CLONE_SYMBOLS_FLAG$1;
1662
+ if (customizer) {
1663
+ result = object ? customizer(value, key, object, stack) : customizer(value);
1664
+ }
1665
+ if (result !== undefined) {
1666
+ return result;
1667
+ }
1668
+ if (!isObject$3(value)) {
1669
+ return value;
1670
+ }
1671
+ var isArr = isArray$1(value);
1672
+ if (isArr) {
1673
+ result = initCloneArray(value);
1674
+ if (!isDeep) {
1675
+ return copyArray(value, result);
1676
+ }
1677
+ } else {
1678
+ var tag = getTag$1(value), isFunc = tag == funcTag$1 || tag == genTag$1;
1679
+ if (isBuffer$1(value)) {
1680
+ return cloneBuffer(value, isDeep);
1681
+ }
1682
+ if (tag == objectTag$1 || tag == argsTag$1 || isFunc && !object) {
1683
+ result = isFlat || isFunc ? {} : initCloneObject(value);
1684
+ if (!isDeep) {
1685
+ return isFlat ? copySymbolsIn(value, baseAssignIn(result, value)) : copySymbols(value, baseAssign(result, value));
1686
+ }
1687
+ } else {
1688
+ if (!cloneableTags[tag]) {
1689
+ return object ? value : {};
1690
+ }
1691
+ result = initCloneByTag(value, tag, isDeep);
1692
+ }
1693
+ }
1694
+ stack || (stack = new Stack());
1695
+ var stacked = stack.get(value);
1696
+ if (stacked) {
1697
+ return stacked;
1698
+ }
1699
+ stack.set(value, result);
1700
+ if (isSet$1(value)) {
1701
+ value.forEach(function (subValue) {
1702
+ result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
1703
+ });
1704
+ } else if (isMap$1(value)) {
1705
+ value.forEach(function (subValue, key) {
1706
+ result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));
1707
+ });
1708
+ }
1709
+ var keysFunc = isFull ? isFlat ? getAllKeysIn : getAllKeys : isFlat ? keysIn : keys;
1710
+ var props = isArr ? undefined : keysFunc(value);
1711
+ arrayEach(props || value, function (subValue, key) {
1712
+ if (props) {
1713
+ key = subValue;
1714
+ subValue = value[key];
1715
+ }
1716
+ assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));
1717
+ });
1718
+ return result;
1719
+ }
1720
+ var CLONE_DEEP_FLAG = 1, CLONE_SYMBOLS_FLAG = 4;
1721
+ function cloneDeep(value) {
1722
+ return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);
1723
+ }
1724
+ function concat() {
1725
+ var length = arguments.length;
1726
+ if (!length) {
1727
+ return [];
1728
+ }
1729
+ var args = Array(length - 1), array = arguments[0], index = length;
1730
+ while (index--) {
1731
+ args[index - 1] = arguments[index];
1732
+ }
1733
+ return arrayPush(isArray$1(array) ? copyArray(array) : [array], baseFlatten(args, 1));
1734
+ }
1735
+ var HASH_UNDEFINED$2 = '__lodash_hash_undefined__';
1736
+ function setCacheAdd(value) {
1737
+ this.__data__.set(value, HASH_UNDEFINED$2);
1738
+ return this;
1739
+ }
1740
+ function setCacheHas(value) {
1741
+ return this.__data__.has(value);
1742
+ }
1743
+ function SetCache(values) {
1744
+ var index = -1, length = values == null ? 0 : values.length;
1745
+ this.__data__ = new MapCache$2();
1746
+ while (++index < length) {
1747
+ this.add(values[index]);
1748
+ }
1749
+ }
1750
+ SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;
1751
+ SetCache.prototype.has = setCacheHas;
1752
+ function arraySome(array, predicate) {
1753
+ var index = -1, length = array == null ? 0 : array.length;
1754
+ while (++index < length) {
1755
+ if (predicate(array[index], index, array)) {
1756
+ return true;
1757
+ }
1758
+ }
1759
+ return false;
1760
+ }
1761
+ function cacheHas(cache, key) {
1762
+ return cache.has(key);
1763
+ }
1764
+ var COMPARE_PARTIAL_FLAG$3 = 1, COMPARE_UNORDERED_FLAG$1 = 2;
1765
+ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
1766
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG$3, arrLength = array.length, othLength = other.length;
1767
+ if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
1768
+ return false;
1769
+ }
1770
+ var arrStacked = stack.get(array);
1771
+ var othStacked = stack.get(other);
1772
+ if (arrStacked && othStacked) {
1773
+ return arrStacked == other && othStacked == array;
1774
+ }
1775
+ var index = -1, result = true, seen = bitmask & COMPARE_UNORDERED_FLAG$1 ? new SetCache() : undefined;
1776
+ stack.set(array, other);
1777
+ stack.set(other, array);
1778
+ while (++index < arrLength) {
1779
+ var arrValue = array[index], othValue = other[index];
1780
+ if (customizer) {
1781
+ var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack);
1782
+ }
1783
+ if (compared !== undefined) {
1784
+ if (compared) {
1785
+ continue;
1786
+ }
1787
+ result = false;
1788
+ break;
1789
+ }
1790
+ if (seen) {
1791
+ if (!arraySome(other, function (othValue, othIndex) {
1792
+ if (!cacheHas(seen, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
1793
+ return seen.push(othIndex);
1794
+ }
1795
+ })) {
1796
+ result = false;
1797
+ break;
1798
+ }
1799
+ } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
1800
+ result = false;
1801
+ break;
1802
+ }
1803
+ }
1804
+ stack['delete'](array);
1805
+ stack['delete'](other);
1806
+ return result;
1807
+ }
1808
+ function mapToArray(map) {
1809
+ var index = -1, result = Array(map.size);
1810
+ map.forEach(function (value, key) {
1811
+ result[++index] = [key, value];
1812
+ });
1813
+ return result;
1814
+ }
1815
+ function setToArray(set) {
1816
+ var index = -1, result = Array(set.size);
1817
+ set.forEach(function (value) {
1818
+ result[++index] = value;
1819
+ });
1820
+ return result;
1821
+ }
1822
+ var COMPARE_PARTIAL_FLAG$2 = 1, COMPARE_UNORDERED_FLAG = 2;
1823
+ var boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', mapTag$1 = '[object Map]', numberTag = '[object Number]', regexpTag = '[object RegExp]', setTag$1 = '[object Set]', stringTag$1 = '[object String]', symbolTag = '[object Symbol]';
1824
+ var arrayBufferTag = '[object ArrayBuffer]', dataViewTag = '[object DataView]';
1825
+ var symbolProto = Symbol$5 ? Symbol$5.prototype : undefined, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
1826
+ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
1827
+ switch (tag) {
1828
+ case dataViewTag:
1829
+ if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {
1830
+ return false;
1831
+ }
1832
+ object = object.buffer;
1833
+ other = other.buffer;
1834
+ case arrayBufferTag:
1835
+ if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array$1(object), new Uint8Array$1(other))) {
1836
+ return false;
1837
+ }
1838
+ return true;
1839
+ case boolTag:
1840
+ case dateTag:
1841
+ case numberTag:
1842
+ return eq$2(+object, +other);
1843
+ case errorTag:
1844
+ return object.name == other.name && object.message == other.message;
1845
+ case regexpTag:
1846
+ case stringTag$1:
1847
+ return object == other + '';
1848
+ case mapTag$1:
1849
+ var convert = mapToArray;
1850
+ case setTag$1:
1851
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG$2;
1852
+ convert || (convert = setToArray);
1853
+ if (object.size != other.size && !isPartial) {
1854
+ return false;
1855
+ }
1856
+ var stacked = stack.get(object);
1857
+ if (stacked) {
1858
+ return stacked == other;
1859
+ }
1860
+ bitmask |= COMPARE_UNORDERED_FLAG;
1861
+ stack.set(object, other);
1862
+ var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
1863
+ stack['delete'](object);
1864
+ return result;
1865
+ case symbolTag:
1866
+ if (symbolValueOf) {
1867
+ return symbolValueOf.call(object) == symbolValueOf.call(other);
1868
+ }
1869
+ }
1870
+ return false;
1871
+ }
1872
+ var COMPARE_PARTIAL_FLAG$1 = 1;
1873
+ var objectProto$7 = Object.prototype;
1874
+ var hasOwnProperty$6 = objectProto$7.hasOwnProperty;
1875
+ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
1876
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG$1, objProps = getAllKeys(object), objLength = objProps.length, othProps = getAllKeys(other), othLength = othProps.length;
1877
+ if (objLength != othLength && !isPartial) {
1878
+ return false;
1879
+ }
1880
+ var index = objLength;
1881
+ while (index--) {
1882
+ var key = objProps[index];
1883
+ if (!(isPartial ? (key in other) : hasOwnProperty$6.call(other, key))) {
1884
+ return false;
1885
+ }
1886
+ }
1887
+ var objStacked = stack.get(object);
1888
+ var othStacked = stack.get(other);
1889
+ if (objStacked && othStacked) {
1890
+ return objStacked == other && othStacked == object;
1891
+ }
1892
+ var result = true;
1893
+ stack.set(object, other);
1894
+ stack.set(other, object);
1895
+ var skipCtor = isPartial;
1896
+ while (++index < objLength) {
1897
+ key = objProps[index];
1898
+ var objValue = object[key], othValue = other[key];
1899
+ if (customizer) {
1900
+ var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack);
1901
+ }
1902
+ if (!(compared === undefined ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {
1903
+ result = false;
1904
+ break;
1905
+ }
1906
+ skipCtor || (skipCtor = key == 'constructor');
1907
+ }
1908
+ if (result && !skipCtor) {
1909
+ var objCtor = object.constructor, othCtor = other.constructor;
1910
+ if (objCtor != othCtor && (('constructor' in object) && ('constructor' in other)) && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) {
1911
+ result = false;
1912
+ }
1913
+ }
1914
+ stack['delete'](object);
1915
+ stack['delete'](other);
1916
+ return result;
1917
+ }
1918
+ var COMPARE_PARTIAL_FLAG = 1;
1919
+ var argsTag = '[object Arguments]', arrayTag = '[object Array]', objectTag = '[object Object]';
1920
+ var objectProto$6 = Object.prototype;
1921
+ var hasOwnProperty$5 = objectProto$6.hasOwnProperty;
1922
+ function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
1923
+ var objIsArr = isArray$1(object), othIsArr = isArray$1(other), objTag = objIsArr ? arrayTag : getTag$1(object), othTag = othIsArr ? arrayTag : getTag$1(other);
1924
+ objTag = objTag == argsTag ? objectTag : objTag;
1925
+ othTag = othTag == argsTag ? objectTag : othTag;
1926
+ var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag;
1927
+ if (isSameTag && isBuffer$1(object)) {
1928
+ if (!isBuffer$1(other)) {
1929
+ return false;
1930
+ }
1931
+ objIsArr = true;
1932
+ objIsObj = false;
1933
+ }
1934
+ if (isSameTag && !objIsObj) {
1935
+ stack || (stack = new Stack());
1936
+ return objIsArr || isTypedArray$1(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);
1937
+ }
1938
+ if (!(bitmask & COMPARE_PARTIAL_FLAG)) {
1939
+ var objIsWrapped = objIsObj && hasOwnProperty$5.call(object, '__wrapped__'), othIsWrapped = othIsObj && hasOwnProperty$5.call(other, '__wrapped__');
1940
+ if (objIsWrapped || othIsWrapped) {
1941
+ var objUnwrapped = objIsWrapped ? object.value() : object, othUnwrapped = othIsWrapped ? other.value() : other;
1942
+ stack || (stack = new Stack());
1943
+ return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);
1944
+ }
1945
+ }
1946
+ if (!isSameTag) {
1947
+ return false;
1948
+ }
1949
+ stack || (stack = new Stack());
1950
+ return equalObjects(object, other, bitmask, customizer, equalFunc, stack);
1951
+ }
1952
+ function baseIsEqual(value, other, bitmask, customizer, stack) {
1953
+ if (value === other) {
1954
+ return true;
1955
+ }
1956
+ if (value == null || other == null || !isObjectLike(value) && !isObjectLike(other)) {
1957
+ return value !== value && other !== other;
1958
+ }
1959
+ return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);
1960
+ }
1961
+ function arrayIncludesWith(array, value, comparator) {
1962
+ var index = -1, length = array == null ? 0 : array.length;
1963
+ while (++index < length) {
1964
+ if (comparator(value, array[index])) {
1965
+ return true;
1966
+ }
1967
+ }
1968
+ return false;
1969
+ }
1970
+ function head(array) {
1971
+ return array && array.length ? array[0] : undefined;
1972
+ }
1973
+ var stringTag = '[object String]';
1974
+ function isString$1(value) {
1975
+ return typeof value == 'string' || !isArray$1(value) && isObjectLike(value) && baseGetTag$2(value) == stringTag;
1976
+ }
1977
+ function initial(array) {
1978
+ var length = array == null ? 0 : array.length;
1979
+ return length ? baseSlice(array, 0, -1) : [];
1980
+ }
1981
+ var mapTag = '[object Map]', setTag = '[object Set]';
1982
+ var objectProto$5 = Object.prototype;
1983
+ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
1984
+ function isEmpty(value) {
1985
+ if (value == null) {
1986
+ return true;
1987
+ }
1988
+ if (isArrayLike(value) && (isArray$1(value) || typeof value == 'string' || typeof value.splice == 'function' || isBuffer$1(value) || isTypedArray$1(value) || isArguments$1(value))) {
1989
+ return !value.length;
1990
+ }
1991
+ var tag = getTag$1(value);
1992
+ if (tag == mapTag || tag == setTag) {
1993
+ return !value.size;
1994
+ }
1995
+ if (isPrototype(value)) {
1996
+ return !baseKeys(value).length;
1997
+ }
1998
+ for (var key in value) {
1999
+ if (hasOwnProperty$4.call(value, key)) {
2000
+ return false;
2001
+ }
2002
+ }
2003
+ return true;
2004
+ }
2005
+ function isEqual(value, other) {
2006
+ return baseIsEqual(value, other);
2007
+ }
2008
+ var nativeCeil = Math.ceil, nativeMax = Math.max;
2009
+ function baseRange(start, end, step, fromRight) {
2010
+ var index = -1, length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), result = Array(length);
2011
+ while (length--) {
2012
+ result[fromRight ? length : ++index] = start;
2013
+ start += step;
2014
+ }
2015
+ return result;
2016
+ }
2017
+ function createRange(fromRight) {
2018
+ return function (start, end, step) {
2019
+ if (step && typeof step != 'number' && isIterateeCall(start, end, step)) {
2020
+ end = step = undefined;
2021
+ }
2022
+ start = toFinite(start);
2023
+ if (end === undefined) {
2024
+ end = start;
2025
+ start = 0;
2026
+ } else {
2027
+ end = toFinite(end);
2028
+ }
2029
+ step = step === undefined ? start < end ? 1 : -1 : toFinite(step);
2030
+ return baseRange(start, end, step, fromRight);
2031
+ };
2032
+ }
2033
+ var range$2 = createRange();
2034
+ var range$3 = range$2;
2035
+ var rangeRight = createRange(true);
2036
+ var rangeRight$1 = rangeRight;
2037
+ function tail(array) {
2038
+ var length = array == null ? 0 : array.length;
2039
+ return length ? baseSlice(array, 1, length) : [];
2040
+ }
2041
+ var INFINITY = 1 / 0;
2042
+ var createSet = !(Set$2 && 1 / setToArray(new Set$2([, -0]))[1] == INFINITY) ? noop$2 : function (values) {
2043
+ return new Set$2(values);
2044
+ };
2045
+ var createSet$1 = createSet;
2046
+ var LARGE_ARRAY_SIZE = 200;
2047
+ function baseUniq(array, iteratee, comparator) {
2048
+ var index = -1, includes = arrayIncludes, length = array.length, isCommon = true, result = [], seen = result;
2049
+ if (comparator) {
2050
+ isCommon = false;
2051
+ includes = arrayIncludesWith;
2052
+ } else if (length >= LARGE_ARRAY_SIZE) {
2053
+ var set = iteratee ? null : createSet$1(array);
2054
+ if (set) {
2055
+ return setToArray(set);
2056
+ }
2057
+ isCommon = false;
2058
+ includes = cacheHas;
2059
+ seen = new SetCache();
2060
+ } else {
2061
+ seen = iteratee ? [] : result;
2062
+ }
2063
+ outer: while (++index < length) {
2064
+ var value = array[index], computed = iteratee ? iteratee(value) : value;
2065
+ value = comparator || value !== 0 ? value : 0;
2066
+ if (isCommon && computed === computed) {
2067
+ var seenIndex = seen.length;
2068
+ while (seenIndex--) {
2069
+ if (seen[seenIndex] === computed) {
2070
+ continue outer;
2071
+ }
2072
+ }
2073
+ if (iteratee) {
2074
+ seen.push(computed);
2075
+ }
2076
+ result.push(value);
2077
+ } else if (!includes(seen, computed, comparator)) {
2078
+ if (seen !== result) {
2079
+ seen.push(computed);
2080
+ }
2081
+ result.push(value);
2082
+ }
2083
+ }
2084
+ return result;
2085
+ }
2086
+ function uniq(array) {
2087
+ return array && array.length ? baseUniq(array) : [];
2088
+ }
790
2089
  function Point$2(x, y) {
791
2090
  this.x = x;
792
2091
  this.y = y;
@@ -933,10 +2232,6 @@ Point$2.convert = function (p) {
933
2232
  }
934
2233
  throw new Error('Expected [x, y] or {x, y} point format');
935
2234
  };
936
- const {range: range$2} = _dll_lodash;
937
- const {head: head$1} = _dll_lodash;
938
- const {tail: tail$1} = _dll_lodash;
939
- const {isEqual: isEqual$5} = _dll_lodash;
940
2235
  function _optionalChain$6(ops) {
941
2236
  let lastAccessLHS = undefined;
942
2237
  let value = ops[0];
@@ -993,7 +2288,7 @@ function getInterval(domain, ticks) {
993
2288
  return parseFloat(Number(raw).toFixed(4));
994
2289
  }
995
2290
  const mkRange = (min, max, interval) => {
996
- const raw = range$2(min, max, interval);
2291
+ const raw = range$3(min, max, interval);
997
2292
  raw.splice(raw.length, 1, max);
998
2293
  return raw;
999
2294
  };
@@ -1026,14 +2321,14 @@ function buildTickModel(domain, ticks, interval, scaleFn) {
1026
2321
  });
1027
2322
  }
1028
2323
  const polygonToArea$1 = points => {
1029
- const h = head$1(points);
2324
+ const h = head(points);
1030
2325
  const area = {
1031
2326
  left: h.x,
1032
2327
  top: h.y,
1033
2328
  bottom: h.y,
1034
2329
  right: h.x
1035
2330
  };
1036
- return tail$1(points).reduce((a, p) => {
2331
+ return tail(points).reduce((a, p) => {
1037
2332
  a.left = Math.min(a.left, p.x);
1038
2333
  a.top = Math.max(a.top, p.y);
1039
2334
  a.bottom = Math.min(a.bottom, p.y);
@@ -1067,7 +2362,7 @@ const getDelta = (from, to) => {
1067
2362
  };
1068
2363
  const bandKey = (d, index) => `${index}-${d.label || '-'}`;
1069
2364
  const isDomainRangeEqual = (graphProps, nextGraphProps) => {
1070
- return isEqual$5(graphProps.domain, nextGraphProps.domain) && isEqual$5(graphProps.range, nextGraphProps.range);
2365
+ return isEqual(graphProps.domain, nextGraphProps.domain) && isEqual(graphProps.range, nextGraphProps.range);
1071
2366
  };
1072
2367
  const findLongestWord$1 = label => {
1073
2368
  let longestWord = (label || '').replace(/<[^>]+>/g, '').split(' ').sort((a, b) => b.length - a.length);
@@ -1534,7 +2829,7 @@ class Root$1 extends React$S.Component {
1534
2829
  __self: this,
1535
2830
  __source: {
1536
2831
  fileName: _jsxFileName$C,
1537
- lineNumber: 287
2832
+ lineNumber: 286
1538
2833
  }
1539
2834
  }, showPixelGuides && React$S.createElement(TopPixelGuides, {
1540
2835
  style: {
@@ -1543,7 +2838,7 @@ class Root$1 extends React$S.Component {
1543
2838
  __self: this,
1544
2839
  __source: {
1545
2840
  fileName: _jsxFileName$C,
1546
- lineNumber: 289
2841
+ lineNumber: 288
1547
2842
  }
1548
2843
  }, [...Array(nbOfVerticalLines + 1).keys()].map(value => React$S.createElement(Readable$2, {
1549
2844
  false: true,
@@ -1551,25 +2846,25 @@ class Root$1 extends React$S.Component {
1551
2846
  __self: this,
1552
2847
  __source: {
1553
2848
  fileName: _jsxFileName$C,
1554
- lineNumber: 291
2849
+ lineNumber: 290
1555
2850
  }
1556
2851
  }, React$S.createElement(TopPixelIndicator, {
1557
2852
  __self: this,
1558
2853
  __source: {
1559
2854
  fileName: _jsxFileName$C,
1560
- lineNumber: 292
2855
+ lineNumber: 291
1561
2856
  }
1562
2857
  }, React$S.createElement('div', {
1563
2858
  __self: this,
1564
2859
  __source: {
1565
2860
  fileName: _jsxFileName$C,
1566
- lineNumber: 293
2861
+ lineNumber: 292
1567
2862
  }
1568
2863
  }, value * 100, "px"), React$S.createElement('div', {
1569
2864
  __self: this,
1570
2865
  __source: {
1571
2866
  fileName: _jsxFileName$C,
1572
- lineNumber: 294
2867
+ lineNumber: 293
1573
2868
  }
1574
2869
  }, "|"))))), showTitle && (disabledTitle ? React$S.createElement('div', {
1575
2870
  ref: r => this.titleRef = r,
@@ -1584,7 +2879,7 @@ class Root$1 extends React$S.Component {
1584
2879
  __self: this,
1585
2880
  __source: {
1586
2881
  fileName: _jsxFileName$C,
1587
- lineNumber: 302
2882
+ lineNumber: 301
1588
2883
  }
1589
2884
  }, isChart ? React$S.createElement(ChartTitle, {
1590
2885
  className: "disabled",
@@ -1594,7 +2889,7 @@ class Root$1 extends React$S.Component {
1594
2889
  __self: this,
1595
2890
  __source: {
1596
2891
  fileName: _jsxFileName$C,
1597
- lineNumber: 310
2892
+ lineNumber: 309
1598
2893
  }
1599
2894
  }) : React$S.createElement(GraphTitle, {
1600
2895
  className: "disabled",
@@ -1604,21 +2899,21 @@ class Root$1 extends React$S.Component {
1604
2899
  __self: this,
1605
2900
  __source: {
1606
2901
  fileName: _jsxFileName$C,
1607
- lineNumber: 312
2902
+ lineNumber: 311
1608
2903
  }
1609
2904
  })) : React$S.createElement('div', {
1610
2905
  ref: r => this.titleRef = r,
1611
2906
  __self: this,
1612
2907
  __source: {
1613
2908
  fileName: _jsxFileName$C,
1614
- lineNumber: 316
2909
+ lineNumber: 315
1615
2910
  }
1616
2911
  }, isChart ? React$S.createElement(ChartTitle, {
1617
2912
  className: showPixelGuides ? 'rightMargin' : '',
1618
2913
  __self: this,
1619
2914
  __source: {
1620
2915
  fileName: _jsxFileName$C,
1621
- lineNumber: 318
2916
+ lineNumber: 317
1622
2917
  }
1623
2918
  }, React$S.createElement(EditableHtml$1, {
1624
2919
  style: isChart && ({
@@ -1637,14 +2932,14 @@ class Root$1 extends React$S.Component {
1637
2932
  __self: this,
1638
2933
  __source: {
1639
2934
  fileName: _jsxFileName$C,
1640
- lineNumber: 319
2935
+ lineNumber: 318
1641
2936
  }
1642
2937
  })) : React$S.createElement(GraphTitle, {
1643
2938
  className: showPixelGuides ? 'rightMargin' : '',
1644
2939
  __self: this,
1645
2940
  __source: {
1646
2941
  fileName: _jsxFileName$C,
1647
- lineNumber: 338
2942
+ lineNumber: 337
1648
2943
  }
1649
2944
  }, React$S.createElement(EditableHtml$1, {
1650
2945
  style: isChart && ({
@@ -1663,7 +2958,7 @@ class Root$1 extends React$S.Component {
1663
2958
  __self: this,
1664
2959
  __source: {
1665
2960
  fileName: _jsxFileName$C,
1666
- lineNumber: 339
2961
+ lineNumber: 338
1667
2962
  }
1668
2963
  })))), showLabels && !isChart && React$S.createElement(LabelComponent, {
1669
2964
  side: "top",
@@ -1678,13 +2973,13 @@ class Root$1 extends React$S.Component {
1678
2973
  __self: this,
1679
2974
  __source: {
1680
2975
  fileName: _jsxFileName$C,
1681
- lineNumber: 361
2976
+ lineNumber: 360
1682
2977
  }
1683
2978
  }), React$S.createElement(Wrapper$1, {
1684
2979
  __self: this,
1685
2980
  __source: {
1686
2981
  fileName: _jsxFileName$C,
1687
- lineNumber: 373
2982
+ lineNumber: 372
1688
2983
  }
1689
2984
  }, showLabels && React$S.createElement(LabelComponent, {
1690
2985
  side: "left",
@@ -1701,7 +2996,7 @@ class Root$1 extends React$S.Component {
1701
2996
  __self: this,
1702
2997
  __source: {
1703
2998
  fileName: _jsxFileName$C,
1704
- lineNumber: 375
2999
+ lineNumber: 374
1705
3000
  }
1706
3001
  }), defineChart ? React$S.createElement(DefineChartSvg, {
1707
3002
  width: finalWidth,
@@ -1709,7 +3004,7 @@ class Root$1 extends React$S.Component {
1709
3004
  __self: this,
1710
3005
  __source: {
1711
3006
  fileName: _jsxFileName$C,
1712
- lineNumber: 390
3007
+ lineNumber: 389
1713
3008
  }
1714
3009
  }, React$S.createElement(GraphBox, {
1715
3010
  ref: r => {
@@ -1722,7 +3017,7 @@ class Root$1 extends React$S.Component {
1722
3017
  __self: this,
1723
3018
  __source: {
1724
3019
  fileName: _jsxFileName$C,
1725
- lineNumber: 391
3020
+ lineNumber: 390
1726
3021
  }
1727
3022
  }, children)) : React$S.createElement(ChartSvg, {
1728
3023
  width: finalWidth,
@@ -1730,7 +3025,7 @@ class Root$1 extends React$S.Component {
1730
3025
  __self: this,
1731
3026
  __source: {
1732
3027
  fileName: _jsxFileName$C,
1733
- lineNumber: 404
3028
+ lineNumber: 403
1734
3029
  }
1735
3030
  }, React$S.createElement(GraphBox, {
1736
3031
  ref: r => {
@@ -1743,7 +3038,7 @@ class Root$1 extends React$S.Component {
1743
3038
  __self: this,
1744
3039
  __source: {
1745
3040
  fileName: _jsxFileName$C,
1746
- lineNumber: 405
3041
+ lineNumber: 404
1747
3042
  }
1748
3043
  }, children)), showLabels && !isChart && React$S.createElement(LabelComponent, {
1749
3044
  side: "right",
@@ -1758,7 +3053,7 @@ class Root$1 extends React$S.Component {
1758
3053
  __self: this,
1759
3054
  __source: {
1760
3055
  fileName: _jsxFileName$C,
1761
- lineNumber: 419
3056
+ lineNumber: 418
1762
3057
  }
1763
3058
  }), showPixelGuides && React$S.createElement(SidePixelGuides, {
1764
3059
  style: {
@@ -1768,7 +3063,7 @@ class Root$1 extends React$S.Component {
1768
3063
  __self: this,
1769
3064
  __source: {
1770
3065
  fileName: _jsxFileName$C,
1771
- lineNumber: 432
3066
+ lineNumber: 431
1772
3067
  }
1773
3068
  }, [...Array(nbOfHorizontalLines + 1).keys()].reverse().map(value => React$S.createElement(Readable$2, {
1774
3069
  false: true,
@@ -1776,13 +3071,13 @@ class Root$1 extends React$S.Component {
1776
3071
  __self: this,
1777
3072
  __source: {
1778
3073
  fileName: _jsxFileName$C,
1779
- lineNumber: 439
3074
+ lineNumber: 438
1780
3075
  }
1781
3076
  }, React$S.createElement(SidePixelIndicator, {
1782
3077
  __self: this,
1783
3078
  __source: {
1784
3079
  fileName: _jsxFileName$C,
1785
- lineNumber: 440
3080
+ lineNumber: 439
1786
3081
  }
1787
3082
  }, "━ ", value * 100, "px"))))), showLabels && React$S.createElement(LabelComponent, {
1788
3083
  side: "bottom",
@@ -1800,7 +3095,7 @@ class Root$1 extends React$S.Component {
1800
3095
  __self: this,
1801
3096
  __source: {
1802
3097
  fileName: _jsxFileName$C,
1803
- lineNumber: 447
3098
+ lineNumber: 446
1804
3099
  }
1805
3100
  }));
1806
3101
  }
@@ -3166,7 +4461,6 @@ class LocalDraggable extends Draggable {
3166
4461
  const React$R = _dll_react;
3167
4462
  const PropTypes$B = _dll_prop_types;
3168
4463
  const debug$c = _dll_debug;
3169
- const {isFunction: isFunction} = _dll_lodash;
3170
4464
  const _jsxFileName$B = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/plot/src/grid-draggable.jsx";
3171
4465
  var _class$1;
3172
4466
  const log$c = debug$c('pie-lib:plot:grid-draggable');
@@ -3177,7 +4471,7 @@ const deltaFn = (scale, snap, val) => delta => {
3177
4471
  return fixDecimalsArithmetic;
3178
4472
  };
3179
4473
  const gridDraggable = opts => Comp => {
3180
- browser(!!opts && isFunction(opts.fromDelta) && isFunction(opts.bounds) && isFunction(opts.anchorPoint), 'You must supply an object with: { anchorPoint: Function, fromDelta: Function, bounds: Function }');
4474
+ browser(!!opts && isFunction$2(opts.fromDelta) && isFunction$2(opts.bounds) && isFunction$2(opts.anchorPoint), 'You must supply an object with: { anchorPoint: Function, fromDelta: Function, bounds: Function }');
3181
4475
  return (_class$1 = class GridDraggable extends React$R.Component {
3182
4476
  static __initStatic() {
3183
4477
  this.propTypes = {
@@ -6096,7 +7390,340 @@ function getUnitsInExpression(expression) {
6096
7390
  return uniqueUnits;
6097
7391
  }
6098
7392
  var reduceCSSCalc$1 = reduceCssCalc;
6099
- const {memoize: memoize} = _dll_lodash;
7393
+ var freeGlobal$1 = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
7394
+ var _freeGlobal = freeGlobal$1;
7395
+ var freeGlobal = _freeGlobal;
7396
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
7397
+ var root$3 = freeGlobal || freeSelf || Function('return this')();
7398
+ var _root = root$3;
7399
+ var root$2 = _root;
7400
+ var Symbol$3 = root$2.Symbol;
7401
+ var _Symbol = Symbol$3;
7402
+ var Symbol$2 = _Symbol;
7403
+ var objectProto$4 = Object.prototype;
7404
+ var hasOwnProperty$3 = objectProto$4.hasOwnProperty;
7405
+ var nativeObjectToString$1 = objectProto$4.toString;
7406
+ var symToStringTag$1 = Symbol$2 ? Symbol$2.toStringTag : undefined;
7407
+ function getRawTag$1(value) {
7408
+ var isOwn = hasOwnProperty$3.call(value, symToStringTag$1), tag = value[symToStringTag$1];
7409
+ try {
7410
+ value[symToStringTag$1] = undefined;
7411
+ var unmasked = true;
7412
+ } catch (e) {}
7413
+ var result = nativeObjectToString$1.call(value);
7414
+ if (unmasked) {
7415
+ if (isOwn) {
7416
+ value[symToStringTag$1] = tag;
7417
+ } else {
7418
+ delete value[symToStringTag$1];
7419
+ }
7420
+ }
7421
+ return result;
7422
+ }
7423
+ var _getRawTag = getRawTag$1;
7424
+ var objectProto$3 = Object.prototype;
7425
+ var nativeObjectToString = objectProto$3.toString;
7426
+ function objectToString$1(value) {
7427
+ return nativeObjectToString.call(value);
7428
+ }
7429
+ var _objectToString = objectToString$1;
7430
+ var Symbol$1 = _Symbol, getRawTag = _getRawTag, objectToString = _objectToString;
7431
+ var nullTag = '[object Null]', undefinedTag = '[object Undefined]';
7432
+ var symToStringTag = Symbol$1 ? Symbol$1.toStringTag : undefined;
7433
+ function baseGetTag$1(value) {
7434
+ if (value == null) {
7435
+ return value === undefined ? undefinedTag : nullTag;
7436
+ }
7437
+ return symToStringTag && (symToStringTag in Object(value)) ? getRawTag(value) : objectToString(value);
7438
+ }
7439
+ var _baseGetTag = baseGetTag$1;
7440
+ function isObject$2(value) {
7441
+ var type = typeof value;
7442
+ return value != null && (type == 'object' || type == 'function');
7443
+ }
7444
+ var isObject_1 = isObject$2;
7445
+ var baseGetTag = _baseGetTag, isObject$1 = isObject_1;
7446
+ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]';
7447
+ function isFunction$1(value) {
7448
+ if (!isObject$1(value)) {
7449
+ return false;
7450
+ }
7451
+ var tag = baseGetTag(value);
7452
+ return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
7453
+ }
7454
+ var isFunction_1 = isFunction$1;
7455
+ var root$1 = _root;
7456
+ var coreJsData$1 = root$1['__core-js_shared__'];
7457
+ var _coreJsData = coreJsData$1;
7458
+ var coreJsData = _coreJsData;
7459
+ var maskSrcKey = (function () {
7460
+ var uid = (/[^.]+$/).exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');
7461
+ return uid ? 'Symbol(src)_1.' + uid : '';
7462
+ })();
7463
+ function isMasked$1(func) {
7464
+ return !!maskSrcKey && (maskSrcKey in func);
7465
+ }
7466
+ var _isMasked = isMasked$1;
7467
+ var funcProto$1 = Function.prototype;
7468
+ var funcToString$1 = funcProto$1.toString;
7469
+ function toSource$1(func) {
7470
+ if (func != null) {
7471
+ try {
7472
+ return funcToString$1.call(func);
7473
+ } catch (e) {}
7474
+ try {
7475
+ return func + '';
7476
+ } catch (e) {}
7477
+ }
7478
+ return '';
7479
+ }
7480
+ var _toSource = toSource$1;
7481
+ var isFunction = isFunction_1, isMasked = _isMasked, isObject = isObject_1, toSource = _toSource;
7482
+ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
7483
+ var reIsHostCtor = /^\[object .+?Constructor\]$/;
7484
+ var funcProto = Function.prototype, objectProto$2 = Object.prototype;
7485
+ var funcToString = funcProto.toString;
7486
+ var hasOwnProperty$2 = objectProto$2.hasOwnProperty;
7487
+ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty$2).replace(reRegExpChar, '\\$&').replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$');
7488
+ function baseIsNative$1(value) {
7489
+ if (!isObject(value) || isMasked(value)) {
7490
+ return false;
7491
+ }
7492
+ var pattern = isFunction(value) ? reIsNative : reIsHostCtor;
7493
+ return pattern.test(toSource(value));
7494
+ }
7495
+ var _baseIsNative = baseIsNative$1;
7496
+ function getValue$1(object, key) {
7497
+ return object == null ? undefined : object[key];
7498
+ }
7499
+ var _getValue = getValue$1;
7500
+ var baseIsNative = _baseIsNative, getValue = _getValue;
7501
+ function getNative$2(object, key) {
7502
+ var value = getValue(object, key);
7503
+ return baseIsNative(value) ? value : undefined;
7504
+ }
7505
+ var _getNative = getNative$2;
7506
+ var getNative$1 = _getNative;
7507
+ var nativeCreate$4 = getNative$1(Object, 'create');
7508
+ var _nativeCreate = nativeCreate$4;
7509
+ var nativeCreate$3 = _nativeCreate;
7510
+ function hashClear$1() {
7511
+ this.__data__ = nativeCreate$3 ? nativeCreate$3(null) : {};
7512
+ this.size = 0;
7513
+ }
7514
+ var _hashClear = hashClear$1;
7515
+ function hashDelete$1(key) {
7516
+ var result = this.has(key) && delete this.__data__[key];
7517
+ this.size -= result ? 1 : 0;
7518
+ return result;
7519
+ }
7520
+ var _hashDelete = hashDelete$1;
7521
+ var nativeCreate$2 = _nativeCreate;
7522
+ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__';
7523
+ var objectProto$1 = Object.prototype;
7524
+ var hasOwnProperty$1 = objectProto$1.hasOwnProperty;
7525
+ function hashGet$1(key) {
7526
+ var data = this.__data__;
7527
+ if (nativeCreate$2) {
7528
+ var result = data[key];
7529
+ return result === HASH_UNDEFINED$1 ? undefined : result;
7530
+ }
7531
+ return hasOwnProperty$1.call(data, key) ? data[key] : undefined;
7532
+ }
7533
+ var _hashGet = hashGet$1;
7534
+ var nativeCreate$1 = _nativeCreate;
7535
+ var objectProto = Object.prototype;
7536
+ var hasOwnProperty = objectProto.hasOwnProperty;
7537
+ function hashHas$1(key) {
7538
+ var data = this.__data__;
7539
+ return nativeCreate$1 ? data[key] !== undefined : hasOwnProperty.call(data, key);
7540
+ }
7541
+ var _hashHas = hashHas$1;
7542
+ var nativeCreate = _nativeCreate;
7543
+ var HASH_UNDEFINED = '__lodash_hash_undefined__';
7544
+ function hashSet$1(key, value) {
7545
+ var data = this.__data__;
7546
+ this.size += this.has(key) ? 0 : 1;
7547
+ data[key] = nativeCreate && value === undefined ? HASH_UNDEFINED : value;
7548
+ return this;
7549
+ }
7550
+ var _hashSet = hashSet$1;
7551
+ var hashClear = _hashClear, hashDelete = _hashDelete, hashGet = _hashGet, hashHas = _hashHas, hashSet = _hashSet;
7552
+ function Hash$1(entries) {
7553
+ var index = -1, length = entries == null ? 0 : entries.length;
7554
+ this.clear();
7555
+ while (++index < length) {
7556
+ var entry = entries[index];
7557
+ this.set(entry[0], entry[1]);
7558
+ }
7559
+ }
7560
+ Hash$1.prototype.clear = hashClear;
7561
+ Hash$1.prototype['delete'] = hashDelete;
7562
+ Hash$1.prototype.get = hashGet;
7563
+ Hash$1.prototype.has = hashHas;
7564
+ Hash$1.prototype.set = hashSet;
7565
+ var _Hash = Hash$1;
7566
+ function listCacheClear$1() {
7567
+ this.__data__ = [];
7568
+ this.size = 0;
7569
+ }
7570
+ var _listCacheClear = listCacheClear$1;
7571
+ function eq$1(value, other) {
7572
+ return value === other || value !== value && other !== other;
7573
+ }
7574
+ var eq_1 = eq$1;
7575
+ var eq = eq_1;
7576
+ function assocIndexOf$4(array, key) {
7577
+ var length = array.length;
7578
+ while (length--) {
7579
+ if (eq(array[length][0], key)) {
7580
+ return length;
7581
+ }
7582
+ }
7583
+ return -1;
7584
+ }
7585
+ var _assocIndexOf = assocIndexOf$4;
7586
+ var assocIndexOf$3 = _assocIndexOf;
7587
+ var arrayProto = Array.prototype;
7588
+ var splice = arrayProto.splice;
7589
+ function listCacheDelete$1(key) {
7590
+ var data = this.__data__, index = assocIndexOf$3(data, key);
7591
+ if (index < 0) {
7592
+ return false;
7593
+ }
7594
+ var lastIndex = data.length - 1;
7595
+ if (index == lastIndex) {
7596
+ data.pop();
7597
+ } else {
7598
+ splice.call(data, index, 1);
7599
+ }
7600
+ --this.size;
7601
+ return true;
7602
+ }
7603
+ var _listCacheDelete = listCacheDelete$1;
7604
+ var assocIndexOf$2 = _assocIndexOf;
7605
+ function listCacheGet$1(key) {
7606
+ var data = this.__data__, index = assocIndexOf$2(data, key);
7607
+ return index < 0 ? undefined : data[index][1];
7608
+ }
7609
+ var _listCacheGet = listCacheGet$1;
7610
+ var assocIndexOf$1 = _assocIndexOf;
7611
+ function listCacheHas$1(key) {
7612
+ return assocIndexOf$1(this.__data__, key) > -1;
7613
+ }
7614
+ var _listCacheHas = listCacheHas$1;
7615
+ var assocIndexOf = _assocIndexOf;
7616
+ function listCacheSet$1(key, value) {
7617
+ var data = this.__data__, index = assocIndexOf(data, key);
7618
+ if (index < 0) {
7619
+ ++this.size;
7620
+ data.push([key, value]);
7621
+ } else {
7622
+ data[index][1] = value;
7623
+ }
7624
+ return this;
7625
+ }
7626
+ var _listCacheSet = listCacheSet$1;
7627
+ var listCacheClear = _listCacheClear, listCacheDelete = _listCacheDelete, listCacheGet = _listCacheGet, listCacheHas = _listCacheHas, listCacheSet = _listCacheSet;
7628
+ function ListCache$1(entries) {
7629
+ var index = -1, length = entries == null ? 0 : entries.length;
7630
+ this.clear();
7631
+ while (++index < length) {
7632
+ var entry = entries[index];
7633
+ this.set(entry[0], entry[1]);
7634
+ }
7635
+ }
7636
+ ListCache$1.prototype.clear = listCacheClear;
7637
+ ListCache$1.prototype['delete'] = listCacheDelete;
7638
+ ListCache$1.prototype.get = listCacheGet;
7639
+ ListCache$1.prototype.has = listCacheHas;
7640
+ ListCache$1.prototype.set = listCacheSet;
7641
+ var _ListCache = ListCache$1;
7642
+ var getNative = _getNative, root = _root;
7643
+ var Map$2 = getNative(root, 'Map');
7644
+ var _Map = Map$2;
7645
+ var Hash = _Hash, ListCache = _ListCache, Map$1 = _Map;
7646
+ function mapCacheClear$1() {
7647
+ this.size = 0;
7648
+ this.__data__ = {
7649
+ 'hash': new Hash(),
7650
+ 'map': new (Map$1 || ListCache)(),
7651
+ 'string': new Hash()
7652
+ };
7653
+ }
7654
+ var _mapCacheClear = mapCacheClear$1;
7655
+ function isKeyable$1(value) {
7656
+ var type = typeof value;
7657
+ return type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean' ? value !== '__proto__' : value === null;
7658
+ }
7659
+ var _isKeyable = isKeyable$1;
7660
+ var isKeyable = _isKeyable;
7661
+ function getMapData$4(map, key) {
7662
+ var data = map.__data__;
7663
+ return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map;
7664
+ }
7665
+ var _getMapData = getMapData$4;
7666
+ var getMapData$3 = _getMapData;
7667
+ function mapCacheDelete$1(key) {
7668
+ var result = getMapData$3(this, key)['delete'](key);
7669
+ this.size -= result ? 1 : 0;
7670
+ return result;
7671
+ }
7672
+ var _mapCacheDelete = mapCacheDelete$1;
7673
+ var getMapData$2 = _getMapData;
7674
+ function mapCacheGet$1(key) {
7675
+ return getMapData$2(this, key).get(key);
7676
+ }
7677
+ var _mapCacheGet = mapCacheGet$1;
7678
+ var getMapData$1 = _getMapData;
7679
+ function mapCacheHas$1(key) {
7680
+ return getMapData$1(this, key).has(key);
7681
+ }
7682
+ var _mapCacheHas = mapCacheHas$1;
7683
+ var getMapData = _getMapData;
7684
+ function mapCacheSet$1(key, value) {
7685
+ var data = getMapData(this, key), size = data.size;
7686
+ data.set(key, value);
7687
+ this.size += data.size == size ? 0 : 1;
7688
+ return this;
7689
+ }
7690
+ var _mapCacheSet = mapCacheSet$1;
7691
+ var mapCacheClear = _mapCacheClear, mapCacheDelete = _mapCacheDelete, mapCacheGet = _mapCacheGet, mapCacheHas = _mapCacheHas, mapCacheSet = _mapCacheSet;
7692
+ function MapCache$1(entries) {
7693
+ var index = -1, length = entries == null ? 0 : entries.length;
7694
+ this.clear();
7695
+ while (++index < length) {
7696
+ var entry = entries[index];
7697
+ this.set(entry[0], entry[1]);
7698
+ }
7699
+ }
7700
+ MapCache$1.prototype.clear = mapCacheClear;
7701
+ MapCache$1.prototype['delete'] = mapCacheDelete;
7702
+ MapCache$1.prototype.get = mapCacheGet;
7703
+ MapCache$1.prototype.has = mapCacheHas;
7704
+ MapCache$1.prototype.set = mapCacheSet;
7705
+ var _MapCache = MapCache$1;
7706
+ var MapCache = _MapCache;
7707
+ var FUNC_ERROR_TEXT = 'Expected a function';
7708
+ function memoize(func, resolver) {
7709
+ if (typeof func != 'function' || resolver != null && typeof resolver != 'function') {
7710
+ throw new TypeError(FUNC_ERROR_TEXT);
7711
+ }
7712
+ var memoized = function () {
7713
+ var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache;
7714
+ if (cache.has(key)) {
7715
+ return cache.get(key);
7716
+ }
7717
+ var result = func.apply(this, args);
7718
+ memoized.cache = cache.set(key, result) || cache;
7719
+ return result;
7720
+ };
7721
+ memoized.cache = new (memoize.Cache || MapCache)();
7722
+ return memoized;
7723
+ }
7724
+ memoize.Cache = MapCache;
7725
+ var memoize_1 = memoize;
7726
+ var memoize$1 = memoize_1;
6100
7727
  var MEASUREMENT_ELEMENT_ID = '__react_svg_text_measurement_id';
6101
7728
  function getStringWidth(str, style) {
6102
7729
  try {
@@ -6121,7 +7748,7 @@ function getStringWidth(str, style) {
6121
7748
  return null;
6122
7749
  }
6123
7750
  }
6124
- var getStringWidth$1 = memoize(getStringWidth, function (str, style) {
7751
+ var getStringWidth$1 = memoize$1(getStringWidth, function (str, style) {
6125
7752
  return str + "_" + JSON.stringify(style);
6126
7753
  });
6127
7754
  const {useMemo: useMemo$2} = _dll_react;
@@ -6637,11 +8264,6 @@ Arrow$1.defaultProps = {
6637
8264
  x: 0,
6638
8265
  direction: 'left'
6639
8266
  };
6640
- const {head: head} = _dll_lodash;
6641
- const {tail: tail} = _dll_lodash;
6642
- const {isEqual: isEqual$4} = _dll_lodash;
6643
- const {isEmpty: isEmpty$4} = _dll_lodash;
6644
- const {cloneDeep: cloneDeep$2} = _dll_lodash;
6645
8267
  const bounds = bounds$1;
6646
8268
  const point = point$2;
6647
8269
  const getAngleDeg = () => 0;
@@ -6664,7 +8286,7 @@ const getTickValues = prop => {
6664
8286
  return [];
6665
8287
  };
6666
8288
  const countWords = label => {
6667
- if (label == null || isEmpty$4(label)) {
8289
+ if (label == null || isEmpty(label)) {
6668
8290
  return 1;
6669
8291
  }
6670
8292
  const words = label.split(' ');
@@ -6711,7 +8333,7 @@ const pointsToArea = (a, b) => {
6711
8333
  };
6712
8334
  };
6713
8335
  const getRightestPoints = points => {
6714
- const sortedPoints = cloneDeep$2(points);
8336
+ const sortedPoints = cloneDeep(points);
6715
8337
  sortedPoints.sort((a, b) => b.x - a.x);
6716
8338
  return {
6717
8339
  a: sortedPoints[0],
@@ -6724,7 +8346,7 @@ const getMiddleOfTwoPoints = (a, b) => ({
6724
8346
  });
6725
8347
  const roundNumber = number => parseFloat(number.toFixed(4));
6726
8348
  const sameAxes = (p1, p2) => p1 && p2 && (roundNumber(p1.x) === roundNumber(p2.x) || roundNumber(p1.y) === roundNumber(p2.y));
6727
- const equalPoints = (p1, p2) => p1 && p2 && isEqual$4({
8349
+ const equalPoints = (p1, p2) => p1 && p2 && isEqual({
6728
8350
  x: roundNumber(p1.x),
6729
8351
  y: roundNumber(p1.y)
6730
8352
  }, {
@@ -6768,7 +8390,7 @@ const isDuplicatedMark = (mark, marks, oldMark) => {
6768
8390
  return false;
6769
8391
  }
6770
8392
  const filteredMarks = (marks || []).filter(m => m.type === type && !m.building);
6771
- const index = filteredMarks.findIndex(m => isEqual$4(m, oldMark));
8393
+ const index = filteredMarks.findIndex(m => isEqual(m, oldMark));
6772
8394
  if (index !== -1) {
6773
8395
  filteredMarks.splice(index, 1);
6774
8396
  }
@@ -6780,7 +8402,7 @@ const isDuplicatedMark = (mark, marks, oldMark) => {
6780
8402
  const {from, to} = mark;
6781
8403
  return equalPoints(from, m.from) && equalPoints(to, m.to) || equalPoints(from, m.to) && equalPoints(to, m.from) || type === 'line' && isSameLine(m, mark);
6782
8404
  } else if (type === 'polygon') {
6783
- return isEqual$4(sortPoints(cloneDeep$2(mark.points)), sortPoints(cloneDeep$2(m.points)));
8405
+ return isEqual(sortPoints(cloneDeep(mark.points)), sortPoints(cloneDeep(m.points)));
6784
8406
  } else if (type === 'point') {
6785
8407
  return equalPoints(m, mark);
6786
8408
  }
@@ -6876,7 +8498,7 @@ class RawXAxis extends React$I.Component {
6876
8498
  __self: this,
6877
8499
  __source: {
6878
8500
  fileName: _jsxFileName$z,
6879
- lineNumber: 122
8501
+ lineNumber: 116
6880
8502
  }
6881
8503
  }, React$I.createElement(Axis, {
6882
8504
  scale: scale.x,
@@ -6891,7 +8513,7 @@ class RawXAxis extends React$I.Component {
6891
8513
  __self: this,
6892
8514
  __source: {
6893
8515
  fileName: _jsxFileName$z,
6894
- lineNumber: 123
8516
+ lineNumber: 117
6895
8517
  }
6896
8518
  }), includeArrows && includeArrows.left && React$I.createElement(StyledArrow, {
6897
8519
  direction: "left",
@@ -6901,7 +8523,7 @@ class RawXAxis extends React$I.Component {
6901
8523
  __self: this,
6902
8524
  __source: {
6903
8525
  fileName: _jsxFileName$z,
6904
- lineNumber: 135
8526
+ lineNumber: 128
6905
8527
  }
6906
8528
  }), includeArrows && includeArrows.right && React$I.createElement(StyledArrow, {
6907
8529
  direction: "right",
@@ -6911,7 +8533,7 @@ class RawXAxis extends React$I.Component {
6911
8533
  __self: this,
6912
8534
  __source: {
6913
8535
  fileName: _jsxFileName$z,
6914
- lineNumber: 138
8536
+ lineNumber: 129
6915
8537
  }
6916
8538
  }), domain.axisLabel && React$I.createElement('foreignObject', {
6917
8539
  x: size.width + 17,
@@ -6921,7 +8543,7 @@ class RawXAxis extends React$I.Component {
6921
8543
  __self: this,
6922
8544
  __source: {
6923
8545
  fileName: _jsxFileName$z,
6924
- lineNumber: 141
8546
+ lineNumber: 131
6925
8547
  }
6926
8548
  }, React$I.createElement(StyledLabel, {
6927
8549
  dangerouslySetInnerHTML: {
@@ -6930,7 +8552,7 @@ class RawXAxis extends React$I.Component {
6930
8552
  __self: this,
6931
8553
  __source: {
6932
8554
  fileName: _jsxFileName$z,
6933
- lineNumber: 142
8555
+ lineNumber: 132
6934
8556
  }
6935
8557
  })));
6936
8558
  }
@@ -6957,7 +8579,7 @@ class RawYAxis extends React$I.Component {
6957
8579
  __self: this,
6958
8580
  __source: {
6959
8581
  fileName: _jsxFileName$z,
6960
- lineNumber: 168
8582
+ lineNumber: 158
6961
8583
  }
6962
8584
  }, React$I.createElement(Axis, {
6963
8585
  orientation: 'left',
@@ -6987,7 +8609,7 @@ class RawYAxis extends React$I.Component {
6987
8609
  __self: this,
6988
8610
  __source: {
6989
8611
  fileName: _jsxFileName$z,
6990
- lineNumber: 169
8612
+ lineNumber: 159
6991
8613
  }
6992
8614
  }), includeArrows && includeArrows.down && React$I.createElement(StyledArrow, {
6993
8615
  direction: "down",
@@ -6997,7 +8619,7 @@ class RawYAxis extends React$I.Component {
6997
8619
  __self: this,
6998
8620
  __source: {
6999
8621
  fileName: _jsxFileName$z,
7000
- lineNumber: 195
8622
+ lineNumber: 184
7001
8623
  }
7002
8624
  }), includeArrows && includeArrows.up && React$I.createElement(StyledArrow, {
7003
8625
  direction: "up",
@@ -7007,7 +8629,7 @@ class RawYAxis extends React$I.Component {
7007
8629
  __self: this,
7008
8630
  __source: {
7009
8631
  fileName: _jsxFileName$z,
7010
- lineNumber: 198
8632
+ lineNumber: 185
7011
8633
  }
7012
8634
  }), range.axisLabel && React$I.createElement('foreignObject', {
7013
8635
  x: scale.x(0) - necessaryWidth / 2,
@@ -7017,14 +8639,14 @@ class RawYAxis extends React$I.Component {
7017
8639
  __self: this,
7018
8640
  __source: {
7019
8641
  fileName: _jsxFileName$z,
7020
- lineNumber: 201
8642
+ lineNumber: 187
7021
8643
  }
7022
8644
  }, React$I.createElement(Readable$1, {
7023
8645
  false: true,
7024
8646
  __self: this,
7025
8647
  __source: {
7026
8648
  fileName: _jsxFileName$z,
7027
- lineNumber: 202
8649
+ lineNumber: 188
7028
8650
  }
7029
8651
  }, React$I.createElement(StyledAxisLabelHolder, {
7030
8652
  dangerouslySetInnerHTML: {
@@ -7033,7 +8655,7 @@ class RawYAxis extends React$I.Component {
7033
8655
  __self: this,
7034
8656
  __source: {
7035
8657
  fileName: _jsxFileName$z,
7036
- lineNumber: 203
8658
+ lineNumber: 189
7037
8659
  }
7038
8660
  }))));
7039
8661
  }
@@ -7106,7 +8728,7 @@ class Axes extends React$I.Component {
7106
8728
  __self: this,
7107
8729
  __source: {
7108
8730
  fileName: _jsxFileName$z,
7109
- lineNumber: 276
8731
+ lineNumber: 262
7110
8732
  }
7111
8733
  }, range.min <= 0 ? React$I.createElement(XAxis, {
7112
8734
  ...this.props,
@@ -7117,7 +8739,7 @@ class Axes extends React$I.Component {
7117
8739
  __self: this,
7118
8740
  __source: {
7119
8741
  fileName: _jsxFileName$z,
7120
- lineNumber: 278
8742
+ lineNumber: 264
7121
8743
  }
7122
8744
  }) : null, domain.min <= 0 ? React$I.createElement(YAxis, {
7123
8745
  ...this.props,
@@ -7127,7 +8749,7 @@ class Axes extends React$I.Component {
7127
8749
  __self: this,
7128
8750
  __source: {
7129
8751
  fileName: _jsxFileName$z,
7130
- lineNumber: 287
8752
+ lineNumber: 273
7131
8753
  }
7132
8754
  }) : null);
7133
8755
  }
@@ -7805,8 +9427,6 @@ Bg.__initStatic();
7805
9427
  Bg.__initStatic2();
7806
9428
  const React$B = _dll_react;
7807
9429
  const PropTypes$v = _dll_prop_types;
7808
- const {isEqual: isEqual$3} = _dll_lodash;
7809
- const {cloneDeep: cloneDeep$1} = _dll_lodash;
7810
9430
  const debug$a = _dll_debug;
7811
9431
  const _jsxFileName$v = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/graphing/src/graph.jsx";
7812
9432
  const log$a = debug$a('pie-lib:graphing:graph');
@@ -7846,14 +9466,14 @@ const getMaskSize = size => ({
7846
9466
  });
7847
9467
  const removeBuildingToolIfCurrentToolDiffers = ({marks, currentTool, onChangeMarks, removeIncompleteTool}) => {
7848
9468
  const buildingMark = marks.filter(m => m.building)[0];
7849
- let newMarks = cloneDeep$1(marks);
9469
+ let newMarks = cloneDeep(marks);
7850
9470
  if (buildingMark && currentTool && buildingMark.type !== currentTool.type) {
7851
- const index = newMarks.findIndex(m => isEqual$3(m, buildingMark));
9471
+ const index = newMarks.findIndex(m => isEqual(m, buildingMark));
7852
9472
  if (index >= 0) {
7853
9473
  newMarks.splice(index, 1);
7854
9474
  }
7855
9475
  }
7856
- if (removeIncompleteTool && !isEqual$3(newMarks, marks)) {
9476
+ if (removeIncompleteTool && !isEqual(newMarks, marks)) {
7857
9477
  onChangeMarks(newMarks);
7858
9478
  }
7859
9479
  return newMarks;
@@ -7897,8 +9517,8 @@ class Graph extends React$B.Component {
7897
9517
  __init3() {
7898
9518
  this.changeMark = (oldMark, newMark) => {
7899
9519
  const {onChangeMarks, marks} = this.props;
7900
- let newMarks = cloneDeep$1(marks);
7901
- const index = newMarks.findIndex(m => isEqual$3(m, oldMark));
9520
+ let newMarks = cloneDeep(marks);
9521
+ const index = newMarks.findIndex(m => isEqual(m, oldMark));
7902
9522
  if (index >= 0 && !isDuplicatedMark(newMark, marks, oldMark)) {
7903
9523
  newMarks.splice(index, 1, newMark);
7904
9524
  onChangeMarks(newMarks);
@@ -7917,11 +9537,11 @@ class Graph extends React$B.Component {
7917
9537
  __init5() {
7918
9538
  this.updateMarks = (existing, update, addIfMissing = false) => {
7919
9539
  const {onChangeMarks, marks} = this.props;
7920
- let newMarks = cloneDeep$1(marks);
9540
+ let newMarks = cloneDeep(marks);
7921
9541
  if (!update || !update.building && isDuplicatedMark(update, marks)) {
7922
9542
  return;
7923
9543
  }
7924
- const index = newMarks.findIndex(m => isEqual$3(m, existing));
9544
+ const index = newMarks.findIndex(m => isEqual(m, existing));
7925
9545
  if (index >= 0) {
7926
9546
  newMarks.splice(index, 1, update);
7927
9547
  onChangeMarks(newMarks);
@@ -7997,21 +9617,21 @@ class Graph extends React$B.Component {
7997
9617
  __self: this,
7998
9618
  __source: {
7999
9619
  fileName: _jsxFileName$v,
8000
- lineNumber: 209
9620
+ lineNumber: 208
8001
9621
  }
8002
9622
  }, React$B.createElement('g', {
8003
9623
  transform: domain && domain.padding && domain.range ? `translate(${domain.padding}, ${range.padding})` : undefined,
8004
9624
  __self: this,
8005
9625
  __source: {
8006
9626
  fileName: _jsxFileName$v,
8007
- lineNumber: 225
9627
+ lineNumber: 224
8008
9628
  }
8009
9629
  }, React$B.createElement(Grid, {
8010
9630
  ...common,
8011
9631
  __self: this,
8012
9632
  __source: {
8013
9633
  fileName: _jsxFileName$v,
8014
- lineNumber: 230
9634
+ lineNumber: 229
8015
9635
  }
8016
9636
  }), React$B.createElement(Axes, {
8017
9637
  ...axesSettings,
@@ -8019,7 +9639,7 @@ class Graph extends React$B.Component {
8019
9639
  __self: this,
8020
9640
  __source: {
8021
9641
  fileName: _jsxFileName$v,
8022
- lineNumber: 231
9642
+ lineNumber: 230
8023
9643
  }
8024
9644
  }), React$B.createElement(Bg, {
8025
9645
  ...size,
@@ -8028,14 +9648,14 @@ class Graph extends React$B.Component {
8028
9648
  __self: this,
8029
9649
  __source: {
8030
9650
  fileName: _jsxFileName$v,
8031
- lineNumber: 232
9651
+ lineNumber: 231
8032
9652
  }
8033
9653
  }), React$B.createElement('mask', {
8034
9654
  id: `${this.maskUid}`,
8035
9655
  __self: this,
8036
9656
  __source: {
8037
9657
  fileName: _jsxFileName$v,
8038
- lineNumber: 233
9658
+ lineNumber: 232
8039
9659
  }
8040
9660
  }, React$B.createElement('rect', {
8041
9661
  ...maskSize,
@@ -8043,7 +9663,7 @@ class Graph extends React$B.Component {
8043
9663
  __self: this,
8044
9664
  __source: {
8045
9665
  fileName: _jsxFileName$v,
8046
- lineNumber: 234
9666
+ lineNumber: 233
8047
9667
  }
8048
9668
  }), " "), React$B.createElement('g', {
8049
9669
  id: "marks",
@@ -8051,7 +9671,7 @@ class Graph extends React$B.Component {
8051
9671
  __self: this,
8052
9672
  __source: {
8053
9673
  fileName: _jsxFileName$v,
8054
- lineNumber: 237
9674
+ lineNumber: 236
8055
9675
  }
8056
9676
  }, (backgroundMarks || []).map((m, index) => {
8057
9677
  const Component = this.getComponent(m);
@@ -8069,7 +9689,7 @@ class Graph extends React$B.Component {
8069
9689
  __self: this,
8070
9690
  __source: {
8071
9691
  fileName: _jsxFileName$v,
8072
- lineNumber: 243
9692
+ lineNumber: 242
8073
9693
  }
8074
9694
  });
8075
9695
  }), marks.map((m, index) => {
@@ -8090,7 +9710,7 @@ class Graph extends React$B.Component {
8090
9710
  __self: this,
8091
9711
  __source: {
8092
9712
  fileName: _jsxFileName$v,
8093
- lineNumber: 258
9713
+ lineNumber: 257
8094
9714
  }
8095
9715
  });
8096
9716
  }), React$B.createElement('foreignObject', {
@@ -8105,7 +9725,7 @@ class Graph extends React$B.Component {
8105
9725
  __self: this,
8106
9726
  __source: {
8107
9727
  fileName: _jsxFileName$v,
8108
- lineNumber: 273
9728
+ lineNumber: 272
8109
9729
  }
8110
9730
  }))));
8111
9731
  }
@@ -9310,7 +10930,7 @@ function T(e, t, n, s = null) {
9310
10930
  limit: e.length + n.length + 1
9311
10931
  };
9312
10932
  }
9313
- let _$1, d;
10933
+ let _, d;
9314
10934
  const P = {
9315
10935
  prevState: "#9E9E9E",
9316
10936
  action: "#03A9F4",
@@ -9333,17 +10953,17 @@ function S(e, t, n) {
9333
10953
  return [`%c${e}`, `color: ${t}; font-weight: bold`, n];
9334
10954
  }
9335
10955
  function h(e, t) {
9336
- (F(), _$1 && (console.group ? (d.header = ["%credux-undo", "font-style: italic", "action", e.type], d.action = S("action", P.action, e), d.prev = S("prev history", P.prevState, t)) : (d.header = ["redux-undo action", e.type], d.action = ["action", e], d.prev = ["prev history", t])));
10956
+ (F(), _ && (console.group ? (d.header = ["%credux-undo", "font-style: italic", "action", e.type], d.action = S("action", P.action, e), d.prev = S("prev history", P.prevState, t)) : (d.header = ["redux-undo action", e.type], d.action = ["action", e], d.prev = ["prev history", t])));
9337
10957
  }
9338
10958
  function a(e) {
9339
- _$1 && (console.group ? d.next = S("next history", P.nextState, e) : d.next = ["next history", e], H());
10959
+ _ && (console.group ? d.next = S("next history", P.nextState, e) : d.next = ["next history", e], H());
9340
10960
  }
9341
10961
  function f(...e) {
9342
- _$1 && (d.msgs = d.msgs.concat([...e, `
10962
+ _ && (d.msgs = d.msgs.concat([...e, `
9343
10963
  `]));
9344
10964
  }
9345
10965
  function j(e) {
9346
- _$1 = e;
10966
+ _ = e;
9347
10967
  }
9348
10968
  function m(e, t) {
9349
10969
  const n = T([], e, []);
@@ -9495,7 +11115,7 @@ const CoordinatesLabel = ({x, y, graphProps}) => {
9495
11115
  __self: undefined,
9496
11116
  __source: {
9497
11117
  fileName: _jsxFileName$u,
9498
- lineNumber: 55
11118
+ lineNumber: 54
9499
11119
  }
9500
11120
  });
9501
11121
  };
@@ -9931,7 +11551,7 @@ const ArrowMarker = ({id, size, className, disabled, correctness}) => {
9931
11551
  __self: undefined,
9932
11552
  __source: {
9933
11553
  fileName: _jsxFileName$o,
9934
- lineNumber: 73
11554
+ lineNumber: 78
9935
11555
  }
9936
11556
  }, React$r.createElement(ArrowHead, {
9937
11557
  size: size,
@@ -9940,7 +11560,7 @@ const ArrowMarker = ({id, size, className, disabled, correctness}) => {
9940
11560
  __self: undefined,
9941
11561
  __source: {
9942
11562
  fileName: _jsxFileName$o,
9943
- lineNumber: 84
11563
+ lineNumber: 89
9944
11564
  }
9945
11565
  }));
9946
11566
  };
@@ -10369,8 +11989,8 @@ AutosizeInput.defaultProps = {
10369
11989
  injectStyles: true
10370
11990
  };
10371
11991
  var _default = AutosizeInput$1.default = AutosizeInput;
10372
- const {useState: useState$3} = _dll_react;
10373
11992
  const {useEffect: useEffect$3} = _dll_react;
11993
+ const {useState: useState$3} = _dll_react;
10374
11994
  const useDebounce = (value, delay) => {
10375
11995
  const [debouncedValue, setDebouncedValue] = useState$3(value);
10376
11996
  useEffect$3(() => {
@@ -10453,9 +12073,9 @@ SvgIcon.propTypes = {
10453
12073
  type: PropTypes$k.string.isRequired
10454
12074
  };
10455
12075
  const React$n = _dll_react;
10456
- const {useState: useState$2} = _dll_react;
10457
12076
  const {useCallback: useCallback$3} = _dll_react;
10458
12077
  const {useEffect: useEffect$2} = _dll_react;
12078
+ const {useState: useState$2} = _dll_react;
10459
12079
  const PropTypes$j = _dll_prop_types;
10460
12080
  const {styled: styled$f} = _dll_mui__material_styles;
10461
12081
  const {useTheme: useTheme} = _dll_mui__material_styles;
@@ -10692,7 +12312,7 @@ const MarkLabel = props => {
10692
12312
  __self: undefined,
10693
12313
  __source: {
10694
12314
  fileName: _jsxFileName$k,
10695
- lineNumber: 220
12315
+ lineNumber: 217
10696
12316
  }
10697
12317
  }, renderInput(studentInputStyle, label));
10698
12318
  }
@@ -10702,7 +12322,7 @@ const MarkLabel = props => {
10702
12322
  __self: undefined,
10703
12323
  __source: {
10704
12324
  fileName: _jsxFileName$k,
10705
- lineNumber: 228
12325
+ lineNumber: 221
10706
12326
  }
10707
12327
  }, renderInput(studentInputStyle, label));
10708
12328
  }
@@ -10711,7 +12331,7 @@ const MarkLabel = props => {
10711
12331
  __self: undefined,
10712
12332
  __source: {
10713
12333
  fileName: _jsxFileName$k,
10714
- lineNumber: 235
12334
+ lineNumber: 224
10715
12335
  }
10716
12336
  }, renderInput(getInputStyles(theme, disabled, mark.disabled), label));
10717
12337
  };
@@ -10724,8 +12344,6 @@ MarkLabel.propTypes = {
10724
12344
  };
10725
12345
  const React$m = _dll_react;
10726
12346
  const ReactDOM$3 = _dll_react_dom;
10727
- const {isEqual: isEqual$2} = _dll_lodash;
10728
- const {isEmpty: isEmpty$3} = _dll_lodash;
10729
12347
  const _jsxFileName$j = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/graphing/src/tools/point/component.jsx";
10730
12348
  class Point extends React$m.Component {
10731
12349
  static __initStatic() {
@@ -10779,7 +12397,7 @@ class Point extends React$m.Component {
10779
12397
  this.setState({
10780
12398
  mark: undefined
10781
12399
  }, () => {
10782
- if (!isEqual$2(this.props.mark, mark)) {
12400
+ if (!isEqual(this.props.mark, mark)) {
10783
12401
  onChange(this.props.mark, mark);
10784
12402
  }
10785
12403
  });
@@ -10792,7 +12410,7 @@ class Point extends React$m.Component {
10792
12410
  ...this.props.mark,
10793
12411
  label
10794
12412
  };
10795
- if (!label || isEmpty$3(label)) {
12413
+ if (!label || isEmpty(label)) {
10796
12414
  delete update.label;
10797
12415
  }
10798
12416
  this.setState({
@@ -10828,7 +12446,7 @@ class Point extends React$m.Component {
10828
12446
  __self: this,
10829
12447
  __source: {
10830
12448
  fileName: _jsxFileName$j,
10831
- lineNumber: 84
12449
+ lineNumber: 83
10832
12450
  }
10833
12451
  }, React$m.createElement(BasePoint, {
10834
12452
  ...mark,
@@ -10850,7 +12468,7 @@ class Point extends React$m.Component {
10850
12468
  __self: this,
10851
12469
  __source: {
10852
12470
  fileName: _jsxFileName$j,
10853
- lineNumber: 85
12471
+ lineNumber: 84
10854
12472
  }
10855
12473
  }), labelNode && Object.prototype.hasOwnProperty.call(mark, 'label') && ReactDOM$3.createPortal(React$m.createElement(MarkLabel, {
10856
12474
  inputRef: r => this.input = r,
@@ -10861,7 +12479,7 @@ class Point extends React$m.Component {
10861
12479
  __self: this,
10862
12480
  __source: {
10863
12481
  fileName: _jsxFileName$j,
10864
- lineNumber: 106
12482
+ lineNumber: 105
10865
12483
  }
10866
12484
  }), labelNode));
10867
12485
  }
@@ -11054,7 +12672,7 @@ class RawLinePath extends React$k.Component {
11054
12672
  __self: this,
11055
12673
  __source: {
11056
12674
  fileName: _jsxFileName$h,
11057
- lineNumber: 82
12675
+ lineNumber: 76
11058
12676
  }
11059
12677
  }));
11060
12678
  }
@@ -11063,9 +12681,6 @@ RawLinePath.__initStatic();
11063
12681
  RawLinePath.__initStatic2();
11064
12682
  const LinePath = RawLinePath;
11065
12683
  const React$j = _dll_react;
11066
- const {isEqual: isEqual$1} = _dll_lodash;
11067
- const {cloneDeep: cloneDeep} = _dll_lodash;
11068
- const {isEmpty: isEmpty$2} = _dll_lodash;
11069
12684
  const PropTypes$g = _dll_prop_types;
11070
12685
  const ReactDOM$2 = _dll_react_dom;
11071
12686
  const {color: color$8} = _dll_pie_lib__render_ui;
@@ -11177,7 +12792,7 @@ const lineToolComponent = Component => {
11177
12792
  if (!shouldNotChange && type && type === 'exponential' && update.from && update.to) {
11178
12793
  shouldNotChange = update.from.y === 0 || update.to.y === 0 || update.from.y * update.to.y < 0;
11179
12794
  }
11180
- if (!isEqual$1(mark, update) && !shouldNotChange) {
12795
+ if (!isEqual(mark, update) && !shouldNotChange) {
11181
12796
  onChange(mark, update);
11182
12797
  }
11183
12798
  });
@@ -11226,7 +12841,7 @@ const lineToolComponent = Component => {
11226
12841
  middle
11227
12842
  };
11228
12843
  }
11229
- if (!isEqual$1(mark, update)) {
12844
+ if (!isEqual(mark, update)) {
11230
12845
  onChange(mark, update);
11231
12846
  }
11232
12847
  };
@@ -11265,7 +12880,7 @@ const lineToolComponent = Component => {
11265
12880
  __self: this,
11266
12881
  __source: {
11267
12882
  fileName: _jsxFileName$g,
11268
- lineNumber: 169
12883
+ lineNumber: 167
11269
12884
  }
11270
12885
  });
11271
12886
  }
@@ -11393,7 +13008,7 @@ const lineBase = (Comp, opts) => {
11393
13008
  const update = {
11394
13009
  ...point
11395
13010
  };
11396
- if (!point.label || isEmpty$2(point.label)) {
13011
+ if (!point.label || isEmpty(point.label)) {
11397
13012
  delete update.label;
11398
13013
  }
11399
13014
  changeMarkProps({
@@ -11464,7 +13079,7 @@ const lineBase = (Comp, opts) => {
11464
13079
  __self: this,
11465
13080
  __source: {
11466
13081
  fileName: _jsxFileName$g,
11467
- lineNumber: 359
13082
+ lineNumber: 357
11468
13083
  }
11469
13084
  }), labelNode);
11470
13085
  }
@@ -11481,7 +13096,7 @@ const lineBase = (Comp, opts) => {
11481
13096
  __self: this,
11482
13097
  __source: {
11483
13098
  fileName: _jsxFileName$g,
11484
- lineNumber: 372
13099
+ lineNumber: 370
11485
13100
  }
11486
13101
  }), labelNode);
11487
13102
  }
@@ -11498,7 +13113,7 @@ const lineBase = (Comp, opts) => {
11498
13113
  __self: this,
11499
13114
  __source: {
11500
13115
  fileName: _jsxFileName$g,
11501
- lineNumber: 385
13116
+ lineNumber: 383
11502
13117
  }
11503
13118
  }), labelNode);
11504
13119
  }
@@ -11509,7 +13124,7 @@ const lineBase = (Comp, opts) => {
11509
13124
  __self: this,
11510
13125
  __source: {
11511
13126
  fileName: _jsxFileName$g,
11512
- lineNumber: 398
13127
+ lineNumber: 396
11513
13128
  }
11514
13129
  }, to && React$j.createElement(DraggableComp, {
11515
13130
  from: from,
@@ -11521,7 +13136,7 @@ const lineBase = (Comp, opts) => {
11521
13136
  __self: this,
11522
13137
  __source: {
11523
13138
  fileName: _jsxFileName$g,
11524
- lineNumber: 400
13139
+ lineNumber: 398
11525
13140
  }
11526
13141
  }), lineLabelNode, React$j.createElement(FromPoint, {
11527
13142
  x: from.x,
@@ -11534,7 +13149,7 @@ const lineBase = (Comp, opts) => {
11534
13149
  __self: this,
11535
13150
  __source: {
11536
13151
  fileName: _jsxFileName$g,
11537
- lineNumber: 411
13152
+ lineNumber: 409
11538
13153
  }
11539
13154
  }), fromLabelNode, to && React$j.createElement(ToPoint, {
11540
13155
  x: to.x,
@@ -11548,7 +13163,7 @@ const lineBase = (Comp, opts) => {
11548
13163
  __self: this,
11549
13164
  __source: {
11550
13165
  fileName: _jsxFileName$g,
11551
- lineNumber: 423
13166
+ lineNumber: 421
11552
13167
  }
11553
13168
  }), toLabelNode);
11554
13169
  }
@@ -11719,10 +13334,9 @@ const React$h = _dll_react;
11719
13334
  const PropTypes$e = _dll_prop_types;
11720
13335
  const classNames$4 = _dll_classnames;
11721
13336
  const ReactDOM$1 = _dll_react_dom;
11722
- const {isEmpty: isEmpty$1} = _dll_lodash;
11723
13337
  const {color: color$7} = _dll_pie_lib__render_ui;
11724
- const {styled: styled$b} = _dll_mui__material_styles;
11725
13338
  const {keyframes: keyframes} = _dll_mui__material_styles;
13339
+ const {styled: styled$b} = _dll_mui__material_styles;
11726
13340
  const _jsxFileName$e = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/graphing/src/tools/circle/component.jsx";
11727
13341
  function _optionalChain$2(ops) {
11728
13342
  let lastAccessLHS = undefined;
@@ -11866,7 +13480,7 @@ class RawBaseCircle extends React$h.Component {
11866
13480
  const update = {
11867
13481
  ...point
11868
13482
  };
11869
- if (!point.label || isEmpty$1(point.label)) delete update.label;
13483
+ if (!point.label || isEmpty(point.label)) delete update.label;
11870
13484
  changeMarkProps({
11871
13485
  [type]: update
11872
13486
  });
@@ -11929,7 +13543,7 @@ class RawBaseCircle extends React$h.Component {
11929
13543
  __self: this,
11930
13544
  __source: {
11931
13545
  fileName: _jsxFileName$e,
11932
- lineNumber: 158
13546
+ lineNumber: 156
11933
13547
  }
11934
13548
  }), labelNode);
11935
13549
  }
@@ -11946,7 +13560,7 @@ class RawBaseCircle extends React$h.Component {
11946
13560
  __self: this,
11947
13561
  __source: {
11948
13562
  fileName: _jsxFileName$e,
11949
- lineNumber: 171
13563
+ lineNumber: 169
11950
13564
  }
11951
13565
  }), labelNode);
11952
13566
  }
@@ -11963,7 +13577,7 @@ class RawBaseCircle extends React$h.Component {
11963
13577
  __self: this,
11964
13578
  __source: {
11965
13579
  fileName: _jsxFileName$e,
11966
- lineNumber: 184
13580
+ lineNumber: 182
11967
13581
  }
11968
13582
  }), labelNode);
11969
13583
  }
@@ -11972,7 +13586,7 @@ class RawBaseCircle extends React$h.Component {
11972
13586
  __self: this,
11973
13587
  __source: {
11974
13588
  fileName: _jsxFileName$e,
11975
- lineNumber: 197
13589
+ lineNumber: 195
11976
13590
  }
11977
13591
  }, React$h.createElement(StyledBgCircle, {
11978
13592
  disabled: building || disabled,
@@ -11987,7 +13601,7 @@ class RawBaseCircle extends React$h.Component {
11987
13601
  __self: this,
11988
13602
  __source: {
11989
13603
  fileName: _jsxFileName$e,
11990
- lineNumber: 198
13604
+ lineNumber: 196
11991
13605
  }
11992
13606
  }), circleLabelNode, React$h.createElement(BasePoint, {
11993
13607
  disabled: building || disabled,
@@ -12002,7 +13616,7 @@ class RawBaseCircle extends React$h.Component {
12002
13616
  __self: this,
12003
13617
  __source: {
12004
13618
  fileName: _jsxFileName$e,
12005
- lineNumber: 211
13619
+ lineNumber: 209
12006
13620
  }
12007
13621
  }), toLabelNode, React$h.createElement(BasePoint, {
12008
13622
  disabled: building || disabled,
@@ -12018,7 +13632,7 @@ class RawBaseCircle extends React$h.Component {
12018
13632
  __self: this,
12019
13633
  __source: {
12020
13634
  fileName: _jsxFileName$e,
12021
- lineNumber: 224
13635
+ lineNumber: 222
12022
13636
  }
12023
13637
  }), fromLabelNode);
12024
13638
  }
@@ -12263,9 +13877,6 @@ var DraggablePolygon = gridDraggable({
12263
13877
  })(Polygon);
12264
13878
  const React$e = _dll_react;
12265
13879
  const PropTypes$b = _dll_prop_types;
12266
- const {chunk: chunk} = _dll_lodash;
12267
- const {initial: initial} = _dll_lodash;
12268
- const {isEmpty: isEmpty} = _dll_lodash;
12269
13880
  const debug$9 = _dll_debug;
12270
13881
  const ReactDOM = _dll_react_dom;
12271
13882
  const _jsxFileName$b = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/graphing/src/tools/polygon/component.jsx";
@@ -12480,7 +14091,7 @@ class RawBaseComponent extends React$e.Component {
12480
14091
  __self: this,
12481
14092
  __source: {
12482
14093
  fileName: _jsxFileName$b,
12483
- lineNumber: 237
14094
+ lineNumber: 235
12484
14095
  }
12485
14096
  }), labelNode);
12486
14097
  }
@@ -12488,13 +14099,13 @@ class RawBaseComponent extends React$e.Component {
12488
14099
  __self: this,
12489
14100
  __source: {
12490
14101
  fileName: _jsxFileName$b,
12491
- lineNumber: 249
14102
+ lineNumber: 247
12492
14103
  }
12493
14104
  }, closed ? React$e.createElement(React$e.Fragment, {
12494
14105
  __self: this,
12495
14106
  __source: {
12496
14107
  fileName: _jsxFileName$b,
12497
- lineNumber: 251
14108
+ lineNumber: 249
12498
14109
  }
12499
14110
  }, React$e.createElement(DraggablePolygon, {
12500
14111
  points: points,
@@ -12505,7 +14116,7 @@ class RawBaseComponent extends React$e.Component {
12505
14116
  __self: this,
12506
14117
  __source: {
12507
14118
  fileName: _jsxFileName$b,
12508
- lineNumber: 252
14119
+ lineNumber: 250
12509
14120
  }
12510
14121
  }), polygonLabelNode) : React$e.createElement(Polygon, {
12511
14122
  points: points,
@@ -12514,7 +14125,7 @@ class RawBaseComponent extends React$e.Component {
12514
14125
  __self: this,
12515
14126
  __source: {
12516
14127
  fileName: _jsxFileName$b,
12517
- lineNumber: 262
14128
+ lineNumber: 260
12518
14129
  }
12519
14130
  }), (lines || []).map((l, index) => React$e.createElement(Line$4, {
12520
14131
  key: `line-${index}`,
@@ -12526,7 +14137,7 @@ class RawBaseComponent extends React$e.Component {
12526
14137
  __self: this,
12527
14138
  __source: {
12528
14139
  fileName: _jsxFileName$b,
12529
- lineNumber: 265
14140
+ lineNumber: 263
12530
14141
  }
12531
14142
  })), (points || []).map((p, index) => {
12532
14143
  return [React$e.createElement(BasePoint, {
@@ -12541,7 +14152,7 @@ class RawBaseComponent extends React$e.Component {
12541
14152
  __self: this,
12542
14153
  __source: {
12543
14154
  fileName: _jsxFileName$b,
12544
- lineNumber: 277
14155
+ lineNumber: 275
12545
14156
  }
12546
14157
  }), labelNode && Object.prototype.hasOwnProperty.call(p, 'label') ? ReactDOM.createPortal(React$e.createElement(MarkLabel, {
12547
14158
  inputRef: r => this.input[index] = r,
@@ -12555,7 +14166,7 @@ class RawBaseComponent extends React$e.Component {
12555
14166
  __self: this,
12556
14167
  __source: {
12557
14168
  fileName: _jsxFileName$b,
12558
- lineNumber: 289
14169
+ lineNumber: 287
12559
14170
  }
12560
14171
  }), labelNode) : null];
12561
14172
  }));
@@ -12675,7 +14286,7 @@ class Component$8 extends React$e.Component {
12675
14286
  __self: this,
12676
14287
  __source: {
12677
14288
  fileName: _jsxFileName$b,
12678
- lineNumber: 382
14289
+ lineNumber: 372
12679
14290
  }
12680
14291
  });
12681
14292
  }
@@ -12754,7 +14365,6 @@ const tool$8 = () => ({
12754
14365
  }
12755
14366
  });
12756
14367
  const debug$8 = _dll_debug;
12757
- const _ = _dll_lodash;
12758
14368
  const log$8 = debug$8('pie-lib:graphing:tools:utils');
12759
14369
  const FREQ_DIVIDER = 16;
12760
14370
  const getAmplitudeAndFreq = (root, edge) => {
@@ -12781,9 +14391,9 @@ const getAmplitudeAndFreq = (root, edge) => {
12781
14391
  const xPoints = (root, freq, min, max) => {
12782
14392
  freq = Math.abs(freq);
12783
14393
  log$8('[xPoints] root:', root, 'freq:', freq, ' min:', min, ' max:', max);
12784
- const leftpoints = _.rangeRight(root, min - freq, freq * -1);
12785
- const rightpoints = _.range(root + freq, max + freq, freq);
12786
- return _.concat(leftpoints, rightpoints);
14394
+ const leftpoints = rangeRight$1(root, min - freq, freq * -1);
14395
+ const rightpoints = range$3(root + freq, max + freq, freq);
14396
+ return concat(leftpoints, rightpoints);
12787
14397
  };
12788
14398
  const sinY = (amplitude, freq, shift) => x => {
12789
14399
  shift = {
@@ -13082,7 +14692,7 @@ const ArrowedLine = props => {
13082
14692
  __self: undefined,
13083
14693
  __source: {
13084
14694
  fileName: _jsxFileName$a,
13085
- lineNumber: 46
14695
+ lineNumber: 44
13086
14696
  }
13087
14697
  }));
13088
14698
  };
@@ -13215,7 +14825,7 @@ const RayLine = props => {
13215
14825
  __self: undefined,
13216
14826
  __source: {
13217
14827
  fileName: _jsxFileName$8,
13218
- lineNumber: 57
14828
+ lineNumber: 55
13219
14829
  }
13220
14830
  }));
13221
14831
  };
@@ -16572,7 +18182,7 @@ function _optionalChain$1(ops) {
16572
18182
  }
16573
18183
  return value;
16574
18184
  }
16575
- const isString$1 = obj => typeof obj === 'string';
18185
+ const isString = obj => typeof obj === 'string';
16576
18186
  const defer = () => {
16577
18187
  let res;
16578
18188
  let rej;
@@ -16595,9 +18205,9 @@ const copy = (a, s, t) => {
16595
18205
  };
16596
18206
  const lastOfPathSeparatorRegExp = /###/g;
16597
18207
  const cleanKey = key => key && key.indexOf('###') > -1 ? key.replace(lastOfPathSeparatorRegExp, '.') : key;
16598
- const canNotTraverseDeeper = object => !object || isString$1(object);
18208
+ const canNotTraverseDeeper = object => !object || isString(object);
16599
18209
  const getLastOfPath = (object, path, Empty) => {
16600
- const stack = !isString$1(path) ? path : path.split('.');
18210
+ const stack = !isString(path) ? path : path.split('.');
16601
18211
  let stackIndex = 0;
16602
18212
  while (stackIndex < stack.length - 1) {
16603
18213
  if (canNotTraverseDeeper(object)) return {};
@@ -16657,7 +18267,7 @@ const deepExtend = (target, source, overwrite) => {
16657
18267
  for (const prop in source) {
16658
18268
  if (prop !== '__proto__' && prop !== 'constructor') {
16659
18269
  if ((prop in target)) {
16660
- if (isString$1(target[prop]) || target[prop] instanceof String || isString$1(source[prop]) || source[prop] instanceof String) {
18270
+ if (isString(target[prop]) || target[prop] instanceof String || isString(source[prop]) || source[prop] instanceof String) {
16661
18271
  if (overwrite) target[prop] = source[prop];
16662
18272
  } else {
16663
18273
  deepExtend(target[prop], source[prop], overwrite);
@@ -16679,7 +18289,7 @@ var _entityMap = {
16679
18289
  '/': '&#x2F;'
16680
18290
  };
16681
18291
  const escape = data => {
16682
- if (isString$1(data)) {
18292
+ if (isString(data)) {
16683
18293
  return data.replace(/[&<>"'\/]/g, s => _entityMap[s]);
16684
18294
  }
16685
18295
  return data;
@@ -16793,7 +18403,7 @@ class Logger {
16793
18403
  }
16794
18404
  forward(args, lvl, prefix, debugOnly) {
16795
18405
  if (debugOnly && !this.debug) return null;
16796
- if (isString$1(args[0])) args[0] = `${prefix}${this.prefix} ${args[0]}`;
18406
+ if (isString(args[0])) args[0] = `${prefix}${this.prefix} ${args[0]}`;
16797
18407
  return this.logger[lvl](args);
16798
18408
  }
16799
18409
  create(moduleName) {
@@ -16887,7 +18497,7 @@ class ResourceStore extends EventEmitter {
16887
18497
  if (key) {
16888
18498
  if (Array.isArray(key)) {
16889
18499
  path.push(...key);
16890
- } else if (isString$1(key) && keySeparator) {
18500
+ } else if (isString(key) && keySeparator) {
16891
18501
  path.push(...key.split(keySeparator));
16892
18502
  } else {
16893
18503
  path.push(key);
@@ -16900,7 +18510,7 @@ class ResourceStore extends EventEmitter {
16900
18510
  ns = path[1];
16901
18511
  key = path.slice(2).join('.');
16902
18512
  }
16903
- if (result || !ignoreJSONStructure || !isString$1(key)) return result;
18513
+ if (result || !ignoreJSONStructure || !isString(key)) return result;
16904
18514
  return deepFind(_optionalChain$1([this, 'access', _7 => _7.data, 'optionalAccess', _8 => _8[lng], 'optionalAccess', _9 => _9[ns]]), key, keySeparator);
16905
18515
  }
16906
18516
  addResource(lng, ns, key, value, options = {
@@ -16922,7 +18532,7 @@ class ResourceStore extends EventEmitter {
16922
18532
  silent: false
16923
18533
  }) {
16924
18534
  for (const m in resources) {
16925
- if (isString$1(resources[m]) || Array.isArray(resources[m])) this.addResource(lng, ns, m, resources[m], {
18535
+ if (isString(resources[m]) || Array.isArray(resources[m])) this.addResource(lng, ns, m, resources[m], {
16926
18536
  silent: true
16927
18537
  });
16928
18538
  }
@@ -17010,7 +18620,7 @@ function keysFromSelector(selector, opts) {
17010
18620
  return path.join(_nullishCoalesce(_optionalChain$1([opts, 'optionalAccess', _16 => _16.keySeparator]), () => '.'));
17011
18621
  }
17012
18622
  const checkedLoadedFor = {};
17013
- const shouldHandleAsObject = res => !isString$1(res) && typeof res !== 'boolean' && typeof res !== 'number';
18623
+ const shouldHandleAsObject = res => !isString(res) && typeof res !== 'boolean' && typeof res !== 'number';
17014
18624
  class Translator$1 extends EventEmitter {
17015
18625
  constructor(services, options = {}) {
17016
18626
  super();
@@ -17051,7 +18661,7 @@ class Translator$1 extends EventEmitter {
17051
18661
  if (m && m.length > 0) {
17052
18662
  return {
17053
18663
  key,
17054
- namespaces: isString$1(namespaces) ? [namespaces] : namespaces
18664
+ namespaces: isString(namespaces) ? [namespaces] : namespaces
17055
18665
  };
17056
18666
  }
17057
18667
  const parts = key.split(nsSeparator);
@@ -17060,7 +18670,7 @@ class Translator$1 extends EventEmitter {
17060
18670
  }
17061
18671
  return {
17062
18672
  key,
17063
- namespaces: isString$1(namespaces) ? [namespaces] : namespaces
18673
+ namespaces: isString(namespaces) ? [namespaces] : namespaces
17064
18674
  };
17065
18675
  }
17066
18676
  translate(keys, o, lastKey) {
@@ -17121,7 +18731,7 @@ class Translator$1 extends EventEmitter {
17121
18731
  const noObject = ['[object Number]', '[object Function]', '[object RegExp]'];
17122
18732
  const joinArrays = opt.joinArrays !== undefined ? opt.joinArrays : this.options.joinArrays;
17123
18733
  const handleAsObjectInI18nFormat = !this.i18nFormat || this.i18nFormat.handleAsObject;
17124
- const needsPluralHandling = opt.count !== undefined && !isString$1(opt.count);
18734
+ const needsPluralHandling = opt.count !== undefined && !isString(opt.count);
17125
18735
  const hasDefaultValue = Translator$1.hasDefaultValue(opt);
17126
18736
  const defaultValueSuffix = needsPluralHandling ? this.pluralResolver.getSuffix(lng, opt.count, opt) : '';
17127
18737
  const defaultValueSuffixOrdinalFallback = opt.ordinal && needsPluralHandling ? this.pluralResolver.getSuffix(lng, opt.count, {
@@ -17135,7 +18745,7 @@ class Translator$1 extends EventEmitter {
17135
18745
  }
17136
18746
  const handleAsObject = shouldHandleAsObject(resForObjHndl);
17137
18747
  const resType = Object.prototype.toString.apply(resForObjHndl);
17138
- if (handleAsObjectInI18nFormat && resForObjHndl && handleAsObject && noObject.indexOf(resType) < 0 && !(isString$1(joinArrays) && Array.isArray(resForObjHndl))) {
18748
+ if (handleAsObjectInI18nFormat && resForObjHndl && handleAsObject && noObject.indexOf(resType) < 0 && !(isString(joinArrays) && Array.isArray(resForObjHndl))) {
17139
18749
  if (!opt.returnObjects && !this.options.returnObjects) {
17140
18750
  if (!this.options.returnedObjectHandler) {
17141
18751
  this.logger.warn('accessing an object - but returnObjects options is not enabled!');
@@ -17181,7 +18791,7 @@ class Translator$1 extends EventEmitter {
17181
18791
  }
17182
18792
  res = copy;
17183
18793
  }
17184
- } else if (handleAsObjectInI18nFormat && isString$1(joinArrays) && Array.isArray(res)) {
18794
+ } else if (handleAsObjectInI18nFormat && isString(joinArrays) && Array.isArray(res)) {
17185
18795
  res = res.join(joinArrays);
17186
18796
  if (res) res = this.extendTranslation(res, keys, opt, lastKey);
17187
18797
  } else {
@@ -17276,13 +18886,13 @@ class Translator$1 extends EventEmitter {
17276
18886
  }
17277
18887
  }
17278
18888
  });
17279
- const skipOnVariables = isString$1(res) && (_optionalChain$1([opt, 'optionalAccess', _27 => _27.interpolation, 'optionalAccess', _28 => _28.skipOnVariables]) !== undefined ? opt.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables);
18889
+ const skipOnVariables = isString(res) && (_optionalChain$1([opt, 'optionalAccess', _27 => _27.interpolation, 'optionalAccess', _28 => _28.skipOnVariables]) !== undefined ? opt.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables);
17280
18890
  let nestBef;
17281
18891
  if (skipOnVariables) {
17282
18892
  const nb = res.match(this.interpolator.nestingRegexp);
17283
18893
  nestBef = nb && nb.length;
17284
18894
  }
17285
- let data = opt.replace && !isString$1(opt.replace) ? opt.replace : opt;
18895
+ let data = opt.replace && !isString(opt.replace) ? opt.replace : opt;
17286
18896
  if (this.options.interpolation.defaultVariables) data = {
17287
18897
  ...this.options.interpolation.defaultVariables,
17288
18898
  ...data
@@ -17304,7 +18914,7 @@ class Translator$1 extends EventEmitter {
17304
18914
  if (opt.interpolation) this.interpolator.reset();
17305
18915
  }
17306
18916
  const postProcess = opt.postProcess || this.options.postProcess;
17307
- const postProcessorNames = isString$1(postProcess) ? [postProcess] : postProcess;
18917
+ const postProcessorNames = isString(postProcess) ? [postProcess] : postProcess;
17308
18918
  if (res != null && _optionalChain$1([postProcessorNames, 'optionalAccess', _30 => _30.length]) && opt.applyPostProcessor !== false) {
17309
18919
  res = postProcessor.handle(postProcessorNames, res, key, this.options && this.options.postProcessPassResolved ? {
17310
18920
  i18nResolved: {
@@ -17322,7 +18932,7 @@ class Translator$1 extends EventEmitter {
17322
18932
  let exactUsedKey;
17323
18933
  let usedLng;
17324
18934
  let usedNS;
17325
- if (isString$1(keys)) keys = [keys];
18935
+ if (isString(keys)) keys = [keys];
17326
18936
  keys.forEach(k => {
17327
18937
  if (this.isValidLookup(found)) return;
17328
18938
  const extracted = this.extractFromKey(k, opt);
@@ -17330,9 +18940,9 @@ class Translator$1 extends EventEmitter {
17330
18940
  usedKey = key;
17331
18941
  let namespaces = extracted.namespaces;
17332
18942
  if (this.options.fallbackNS) namespaces = namespaces.concat(this.options.fallbackNS);
17333
- const needsPluralHandling = opt.count !== undefined && !isString$1(opt.count);
18943
+ const needsPluralHandling = opt.count !== undefined && !isString(opt.count);
17334
18944
  const needsZeroSuffixLookup = needsPluralHandling && !opt.ordinal && opt.count === 0;
17335
- const needsContextHandling = opt.context !== undefined && (isString$1(opt.context) || typeof opt.context === 'number') && opt.context !== '';
18945
+ const needsContextHandling = opt.context !== undefined && (isString(opt.context) || typeof opt.context === 'number') && opt.context !== '';
17336
18946
  const codes = opt.lngs ? opt.lngs : this.languageUtils.toResolveHierarchy(opt.lng || this.language, opt.fallbackLng);
17337
18947
  namespaces.forEach(ns => {
17338
18948
  if (this.isValidLookup(found)) return;
@@ -17402,7 +19012,7 @@ class Translator$1 extends EventEmitter {
17402
19012
  }
17403
19013
  getUsedParamsDetails(options = {}) {
17404
19014
  const optionsKeys = ['defaultValue', 'ordinal', 'context', 'replace', 'lng', 'lngs', 'fallbackLng', 'ns', 'keySeparator', 'nsSeparator', 'returnObjects', 'returnDetails', 'joinArrays', 'postProcess', 'interpolation'];
17405
- const useOptionsReplaceForData = options.replace && !isString$1(options.replace);
19015
+ const useOptionsReplaceForData = options.replace && !isString(options.replace);
17406
19016
  let data = useOptionsReplaceForData ? options.replace : options;
17407
19017
  if (useOptionsReplaceForData && typeof options.count !== 'undefined') {
17408
19018
  data.count = options.count;
@@ -17455,7 +19065,7 @@ class LanguageUtil {
17455
19065
  return this.formatLanguageCode(p[0]);
17456
19066
  }
17457
19067
  formatLanguageCode(code) {
17458
- if (isString$1(code) && code.indexOf('-') > -1) {
19068
+ if (isString(code) && code.indexOf('-') > -1) {
17459
19069
  let formattedCode;
17460
19070
  try {
17461
19071
  formattedCode = Intl.getCanonicalLocales(code)[0];
@@ -17506,7 +19116,7 @@ class LanguageUtil {
17506
19116
  getFallbackCodes(fallbacks, code) {
17507
19117
  if (!fallbacks) return [];
17508
19118
  if (typeof fallbacks === 'function') fallbacks = fallbacks(code);
17509
- if (isString$1(fallbacks)) fallbacks = [fallbacks];
19119
+ if (isString(fallbacks)) fallbacks = [fallbacks];
17510
19120
  if (Array.isArray(fallbacks)) return fallbacks;
17511
19121
  if (!code) return fallbacks.default || [];
17512
19122
  let found = fallbacks[code];
@@ -17527,11 +19137,11 @@ class LanguageUtil {
17527
19137
  this.logger.warn(`rejecting language code not found in supportedLngs: ${c}`);
17528
19138
  }
17529
19139
  };
17530
- if (isString$1(code) && (code.indexOf('-') > -1 || code.indexOf('_') > -1)) {
19140
+ if (isString(code) && (code.indexOf('-') > -1 || code.indexOf('_') > -1)) {
17531
19141
  if (this.options.load !== 'languageOnly') addCode(this.formatLanguageCode(code));
17532
19142
  if (this.options.load !== 'languageOnly' && this.options.load !== 'currentOnly') addCode(this.getScriptPartFromCode(code));
17533
19143
  if (this.options.load !== 'currentOnly') addCode(this.getLanguagePartFromCode(code));
17534
- } else if (isString$1(code)) {
19144
+ } else if (isString(code)) {
17535
19145
  addCode(this.formatLanguageCode(code));
17536
19146
  }
17537
19147
  fallbackCodes.forEach(fc => {
@@ -17616,7 +19226,7 @@ class PluralResolver {
17616
19226
  }
17617
19227
  const deepFindWithDefaults = (data, defaultData, key, keySeparator = '.', ignoreJSONStructure = true) => {
17618
19228
  let path = getPathWithDefaults(data, defaultData, key);
17619
- if (!path && ignoreJSONStructure && isString$1(key)) {
19229
+ if (!path && ignoreJSONStructure && isString(key)) {
17620
19230
  path = deepFind(data, key, keySeparator);
17621
19231
  if (path === undefined) path = deepFind(defaultData, key, keySeparator);
17622
19232
  }
@@ -17706,7 +19316,7 @@ class Interpolator {
17706
19316
  if (value === undefined) {
17707
19317
  if (typeof missingInterpolationHandler === 'function') {
17708
19318
  const temp = missingInterpolationHandler(str, match, options);
17709
- value = isString$1(temp) ? temp : '';
19319
+ value = isString(temp) ? temp : '';
17710
19320
  } else if (options && Object.prototype.hasOwnProperty.call(options, matchedVar)) {
17711
19321
  value = '';
17712
19322
  } else if (skipOnVariables) {
@@ -17716,7 +19326,7 @@ class Interpolator {
17716
19326
  this.logger.warn(`missed to pass in variable ${matchedVar} for interpolating ${str}`);
17717
19327
  value = '';
17718
19328
  }
17719
- } else if (!isString$1(value) && !this.useRawValueToEscape) {
19329
+ } else if (!isString(value) && !this.useRawValueToEscape) {
17720
19330
  value = makeString(value);
17721
19331
  }
17722
19332
  const safeValue = todo.safeValue(value);
@@ -17769,7 +19379,7 @@ class Interpolator {
17769
19379
  clonedOptions = {
17770
19380
  ...options
17771
19381
  };
17772
- clonedOptions = clonedOptions.replace && !isString$1(clonedOptions.replace) ? clonedOptions.replace : clonedOptions;
19382
+ clonedOptions = clonedOptions.replace && !isString(clonedOptions.replace) ? clonedOptions.replace : clonedOptions;
17773
19383
  clonedOptions.applyPostProcessor = false;
17774
19384
  delete clonedOptions.defaultValue;
17775
19385
  const keyEndIndex = (/{.*}/).test(match[1]) ? match[1].lastIndexOf('}') + 1 : match[1].indexOf(this.formatSeparator);
@@ -17778,8 +19388,8 @@ class Interpolator {
17778
19388
  match[1] = match[1].slice(0, keyEndIndex);
17779
19389
  }
17780
19390
  value = fc(handleHasOptions.call(this, match[1].trim(), clonedOptions), clonedOptions);
17781
- if (value && match[0] === str && !isString$1(value)) return value;
17782
- if (!isString$1(value)) value = makeString(value);
19391
+ if (value && match[0] === str && !isString(value)) return value;
19392
+ if (!isString(value)) value = makeString(value);
17783
19393
  if (!value) {
17784
19394
  this.logger.warn(`missed to resolve ${match[1]} for nesting ${str}`);
17785
19395
  value = '';
@@ -18078,8 +19688,8 @@ class Connector extends EventEmitter {
18078
19688
  this.logger.warn('No backend was added via i18next.use. Will not load resources.');
18079
19689
  return callback && callback();
18080
19690
  }
18081
- if (isString$1(languages)) languages = this.languageUtils.toResolveHierarchy(languages);
18082
- if (isString$1(namespaces)) namespaces = [namespaces];
19691
+ if (isString(languages)) languages = this.languageUtils.toResolveHierarchy(languages);
19692
+ if (isString(namespaces)) namespaces = [namespaces];
18083
19693
  const toLoad = this.queueLoad(languages, namespaces, options, callback);
18084
19694
  if (!toLoad.toLoad.length) {
18085
19695
  if (!toLoad.pending.length) callback();
@@ -18179,8 +19789,8 @@ const get = () => ({
18179
19789
  overloadTranslationOptionHandler: args => {
18180
19790
  let ret = {};
18181
19791
  if (typeof args[1] === 'object') ret = args[1];
18182
- if (isString$1(args[1])) ret.defaultValue = args[1];
18183
- if (isString$1(args[2])) ret.tDescription = args[2];
19792
+ if (isString(args[1])) ret.defaultValue = args[1];
19793
+ if (isString(args[2])) ret.tDescription = args[2];
18184
19794
  if (typeof args[2] === 'object' || typeof args[3] === 'object') {
18185
19795
  const options = args[3] || args[2];
18186
19796
  Object.keys(options).forEach(key => {
@@ -18205,9 +19815,9 @@ const get = () => ({
18205
19815
  cacheInBuiltFormats: true
18206
19816
  });
18207
19817
  const transformOptions = options => {
18208
- if (isString$1(options.ns)) options.ns = [options.ns];
18209
- if (isString$1(options.fallbackLng)) options.fallbackLng = [options.fallbackLng];
18210
- if (isString$1(options.fallbackNS)) options.fallbackNS = [options.fallbackNS];
19818
+ if (isString(options.ns)) options.ns = [options.ns];
19819
+ if (isString(options.fallbackLng)) options.fallbackLng = [options.fallbackLng];
19820
+ if (isString(options.fallbackNS)) options.fallbackNS = [options.fallbackNS];
18211
19821
  if (_optionalChain$1([options, 'access', _65 => _65.supportedLngs, 'optionalAccess', _66 => _66.indexOf, 'optionalCall', _67 => _67('cimode')]) < 0) {
18212
19822
  options.supportedLngs = options.supportedLngs.concat(['cimode']);
18213
19823
  }
@@ -18250,7 +19860,7 @@ class I18n extends EventEmitter {
18250
19860
  options = {};
18251
19861
  }
18252
19862
  if (options.defaultNS == null && options.ns) {
18253
- if (isString$1(options.ns)) {
19863
+ if (isString(options.ns)) {
18254
19864
  options.defaultNS = options.ns;
18255
19865
  } else if (options.ns.indexOf('translation') < 0) {
18256
19866
  options.defaultNS = options.ns[0];
@@ -18381,7 +19991,7 @@ class I18n extends EventEmitter {
18381
19991
  }
18382
19992
  loadResources(language, callback = noop) {
18383
19993
  let usedCallback = callback;
18384
- const usedLng = isString$1(language) ? language : this.language;
19994
+ const usedLng = isString(language) ? language : this.language;
18385
19995
  if (typeof language === 'function') usedCallback = language;
18386
19996
  if (!this.options.resources || this.options.partialBundledLanguages) {
18387
19997
  if (_optionalChain$1([usedLng, 'optionalAccess', _68 => _68.toLowerCase, 'call', _69 => _69()]) === 'cimode' && (!this.options.preload || this.options.preload.length === 0)) return usedCallback();
@@ -18498,8 +20108,8 @@ class I18n extends EventEmitter {
18498
20108
  };
18499
20109
  const setLng = lngs => {
18500
20110
  if (!lng && !lngs && this.services.languageDetector) lngs = [];
18501
- const fl = isString$1(lngs) ? lngs : lngs && lngs[0];
18502
- const l = this.store.hasLanguageSomeTranslations(fl) ? fl : this.services.languageUtils.getBestMatchFromCodes(isString$1(lngs) ? [lngs] : lngs);
20111
+ const fl = isString(lngs) ? lngs : lngs && lngs[0];
20112
+ const l = this.store.hasLanguageSomeTranslations(fl) ? fl : this.services.languageUtils.getBestMatchFromCodes(isString(lngs) ? [lngs] : lngs);
18503
20113
  if (l) {
18504
20114
  if (!this.language) {
18505
20115
  setLngProps(l);
@@ -18557,7 +20167,7 @@ class I18n extends EventEmitter {
18557
20167
  }
18558
20168
  return this.t(resultKey, o);
18559
20169
  };
18560
- if (isString$1(lng)) {
20170
+ if (isString(lng)) {
18561
20171
  fixedT.lng = lng;
18562
20172
  } else {
18563
20173
  fixedT.lngs = lng;
@@ -18607,7 +20217,7 @@ class I18n extends EventEmitter {
18607
20217
  if (callback) callback();
18608
20218
  return Promise.resolve();
18609
20219
  }
18610
- if (isString$1(ns)) ns = [ns];
20220
+ if (isString(ns)) ns = [ns];
18611
20221
  ns.forEach(n => {
18612
20222
  if (this.options.ns.indexOf(n) < 0) this.options.ns.push(n);
18613
20223
  });
@@ -18619,7 +20229,7 @@ class I18n extends EventEmitter {
18619
20229
  }
18620
20230
  loadLanguages(lngs, callback) {
18621
20231
  const deferred = defer();
18622
- if (isString$1(lngs)) lngs = [lngs];
20232
+ if (isString(lngs)) lngs = [lngs];
18623
20233
  const preloaded = this.options.preload || [];
18624
20234
  const newLngs = lngs.filter(lng => preloaded.indexOf(lng) < 0 && this.services.languageUtils.isSupportedCode(lng));
18625
20235
  if (!newLngs.length) {
@@ -19198,7 +20808,7 @@ function DragTool({children, index, draggable, toolRef, value}) {
19198
20808
  __self: this,
19199
20809
  __source: {
19200
20810
  fileName: _jsxFileName$6,
19201
- lineNumber: 196
20811
+ lineNumber: 203
19202
20812
  }
19203
20813
  }, React$6.createElement('div', {
19204
20814
  ...attributes,
@@ -19206,7 +20816,7 @@ function DragTool({children, index, draggable, toolRef, value}) {
19206
20816
  __self: this,
19207
20817
  __source: {
19208
20818
  fileName: _jsxFileName$6,
19209
- lineNumber: 197
20819
+ lineNumber: 204
19210
20820
  }
19211
20821
  }, children));
19212
20822
  }
@@ -19331,7 +20941,7 @@ class UndoRedo extends React$4.Component {
19331
20941
  __self: this,
19332
20942
  __source: {
19333
20943
  fileName: _jsxFileName$4,
19334
- lineNumber: 37
20944
+ lineNumber: 35
19335
20945
  }
19336
20946
  }, translator.t('graphing.redo', {
19337
20947
  lng: language
@@ -19340,7 +20950,7 @@ class UndoRedo extends React$4.Component {
19340
20950
  __self: this,
19341
20951
  __source: {
19342
20952
  fileName: _jsxFileName$4,
19343
- lineNumber: 40
20953
+ lineNumber: 36
19344
20954
  }
19345
20955
  }, translator.t('graphing.reset', {
19346
20956
  lng: language
@@ -19352,8 +20962,6 @@ UndoRedo.__initStatic2();
19352
20962
  const React$3 = _dll_react;
19353
20963
  const PropTypes$3 = _dll_prop_types;
19354
20964
  const {styled: styled$2} = _dll_mui__material_styles;
19355
- const {uniq: uniq} = _dll_lodash;
19356
- const {isString: isString} = _dll_lodash;
19357
20965
  const {color: color$2} = _dll_pie_lib__render_ui;
19358
20966
  const {Accordion: Accordion$1} = _dll_mui__material;
19359
20967
  const {AccordionDetails: AccordionDetails$1} = _dll_mui__material;
@@ -19415,33 +21023,33 @@ const Collapsible = ({children, title}) => React$3.createElement(StyledAccordion
19415
21023
  __self: undefined,
19416
21024
  __source: {
19417
21025
  fileName: _jsxFileName$3,
19418
- lineNumber: 69
21026
+ lineNumber: 68
19419
21027
  }
19420
21028
  }, React$3.createElement(StyledAccordionSummary, {
19421
21029
  expandIcon: React$3.createElement(ExpandMoreIcon$1, {
19422
21030
  __self: undefined,
19423
21031
  __source: {
19424
21032
  fileName: _jsxFileName$3,
19425
- lineNumber: 70
21033
+ lineNumber: 74
19426
21034
  }
19427
21035
  }),
19428
21036
  __self: undefined,
19429
21037
  __source: {
19430
21038
  fileName: _jsxFileName$3,
19431
- lineNumber: 70
21039
+ lineNumber: 74
19432
21040
  }
19433
21041
  }, React$3.createElement(Typography$1, {
19434
21042
  variant: "subheading",
19435
21043
  __self: undefined,
19436
21044
  __source: {
19437
21045
  fileName: _jsxFileName$3,
19438
- lineNumber: 71
21046
+ lineNumber: 75
19439
21047
  }
19440
21048
  }, title)), React$3.createElement(StyledAccordionDetails, {
19441
21049
  __self: undefined,
19442
21050
  __source: {
19443
21051
  fileName: _jsxFileName$3,
19444
- lineNumber: 73
21052
+ lineNumber: 77
19445
21053
  }
19446
21054
  }, children));
19447
21055
  Collapsible.propTypes = {
@@ -19497,7 +21105,7 @@ class GraphWithControls extends React$3.Component {
19497
21105
  let {currentTool, labelModeEnabled} = this.state;
19498
21106
  const {axesSettings, className, coordinatesOnHover, collapsibleToolbar, collapsibleToolbarTitle, disabled, disabledLabels, disabledTitle, domain, draggableTools, labels, labelsPlaceholders, onChangeLabels, onChangeMarks, onChangeTitle, onChangeTools, onUndo, onRedo, onReset, range, size, showLabels, showPixelGuides, showTitle, title, titlePlaceholder, language, removeIncompleteTool, limitLabeling} = this.props;
19499
21107
  let {backgroundMarks, marks, toolbarTools} = this.props;
19500
- toolbarTools = uniq(toolbarTools || []).filter(tT => !!isString(tT)) || [];
21108
+ toolbarTools = uniq(toolbarTools || []).filter(tT => !!isString$1(tT)) || [];
19501
21109
  backgroundMarks = filterByValidToolTypes(backgroundMarks || []);
19502
21110
  marks = filterByVisibleToolTypes(toolbarTools, marks || []);
19503
21111
  const tools = setToolbarAvailability(toolbarTools);
@@ -19508,7 +21116,7 @@ class GraphWithControls extends React$3.Component {
19508
21116
  __self: this,
19509
21117
  __source: {
19510
21118
  fileName: _jsxFileName$3,
19511
- lineNumber: 176
21119
+ lineNumber: 180
19512
21120
  }
19513
21121
  }, React$3.createElement(ToolMenu, {
19514
21122
  currentToolType: currentTool && currentTool.type,
@@ -19522,7 +21130,7 @@ class GraphWithControls extends React$3.Component {
19522
21130
  __self: this,
19523
21131
  __source: {
19524
21132
  fileName: _jsxFileName$3,
19525
- lineNumber: 177
21133
+ lineNumber: 181
19526
21134
  }
19527
21135
  }), !disabled && React$3.createElement(UndoRedo, {
19528
21136
  onUndo: onUndo,
@@ -19532,7 +21140,7 @@ class GraphWithControls extends React$3.Component {
19532
21140
  __self: this,
19533
21141
  __source: {
19534
21142
  fileName: _jsxFileName$3,
19535
- lineNumber: 188
21143
+ lineNumber: 192
19536
21144
  }
19537
21145
  }));
19538
21146
  return React$3.createElement(StyledGraphContainer, {
@@ -19540,27 +21148,27 @@ class GraphWithControls extends React$3.Component {
19540
21148
  __self: this,
19541
21149
  __source: {
19542
21150
  fileName: _jsxFileName$3,
19543
- lineNumber: 193
21151
+ lineNumber: 197
19544
21152
  }
19545
21153
  }, React$3.createElement(StyledControls, {
19546
21154
  __self: this,
19547
21155
  __source: {
19548
21156
  fileName: _jsxFileName$3,
19549
- lineNumber: 194
21157
+ lineNumber: 198
19550
21158
  }
19551
21159
  }, collapsibleToolbar ? React$3.createElement(Collapsible, {
19552
21160
  title: collapsibleToolbarTitle,
19553
21161
  __self: this,
19554
21162
  __source: {
19555
21163
  fileName: _jsxFileName$3,
19556
- lineNumber: 196
21164
+ lineNumber: 200
19557
21165
  }
19558
21166
  }, graphActions) : graphActions), React$3.createElement('div', {
19559
21167
  ref: r => this.labelNode = r,
19560
21168
  __self: this,
19561
21169
  __source: {
19562
21170
  fileName: _jsxFileName$3,
19563
- lineNumber: 204
21171
+ lineNumber: 206
19564
21172
  }
19565
21173
  }), React$3.createElement(Graph, {
19566
21174
  axesSettings: axesSettings,
@@ -19590,7 +21198,7 @@ class GraphWithControls extends React$3.Component {
19590
21198
  __self: this,
19591
21199
  __source: {
19592
21200
  fileName: _jsxFileName$3,
19593
- lineNumber: 206
21201
+ lineNumber: 208
19594
21202
  }
19595
21203
  }));
19596
21204
  }
@@ -19602,7 +21210,6 @@ const lastActionMiddleware = () => next => action => {
19602
21210
  };
19603
21211
  const React$2 = _dll_react;
19604
21212
  const PropTypes$2 = _dll_prop_types;
19605
- const {isEqual: isEqual} = _dll_lodash;
19606
21213
  const _jsxFileName$2 = "/Users/carlacostea/Pie_Work/pie-framework/pie-lib/packages/graphing/src/container/index.jsx";
19607
21214
  const mapStateToProps = s => ({
19608
21215
  marks: s.marks.present
@@ -19660,7 +21267,7 @@ class Root extends React$2.Component {
19660
21267
  __self: this,
19661
21268
  __source: {
19662
21269
  fileName: _jsxFileName$2,
19663
- lineNumber: 73
21270
+ lineNumber: 72
19664
21271
  }
19665
21272
  });
19666
21273
  }
@@ -19669,14 +21276,14 @@ class Root extends React$2.Component {
19669
21276
  __self: this,
19670
21277
  __source: {
19671
21278
  fileName: _jsxFileName$2,
19672
- lineNumber: 77
21279
+ lineNumber: 76
19673
21280
  }
19674
21281
  }, React$2.createElement(GraphContainer, {
19675
21282
  ...rest,
19676
21283
  __self: this,
19677
21284
  __source: {
19678
21285
  fileName: _jsxFileName$2,
19679
- lineNumber: 78
21286
+ lineNumber: 77
19680
21287
  }
19681
21288
  }));
19682
21289
  }
@@ -19687,8 +21294,8 @@ const PropTypes$1 = _dll_prop_types;
19687
21294
  const {color: color$1} = _dll_pie_lib__render_ui;
19688
21295
  const {InputContainer: InputContainer} = _dll_pie_lib__render_ui;
19689
21296
  const {Accordion: Accordion} = _dll_mui__material;
19690
- const {AccordionSummary: AccordionSummary} = _dll_mui__material;
19691
21297
  const {AccordionDetails: AccordionDetails} = _dll_mui__material;
21298
+ const {AccordionSummary: AccordionSummary} = _dll_mui__material;
19692
21299
  const {Typography: Typography} = _dll_mui__material;
19693
21300
  const {ExpandMore: ExpandMoreIcon} = _dll_mui__icons_material;
19694
21301
  const {styled: styled$1} = _dll_mui__material_styles;
@@ -20619,17 +22226,17 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20619
22226
  fileName: _jsxFileName,
20620
22227
  lineNumber: 110
20621
22228
  }
20622
- }), " ")), isLabelAvailable && React.createElement(StyledRow, {
22229
+ }), ' ')), isLabelAvailable && React.createElement(StyledRow, {
20623
22230
  __self: undefined,
20624
22231
  __source: {
20625
22232
  fileName: _jsxFileName,
20626
- lineNumber: 116
22233
+ lineNumber: 117
20627
22234
  }
20628
22235
  }, React.createElement(StyledText, {
20629
22236
  __self: undefined,
20630
22237
  __source: {
20631
22238
  fileName: _jsxFileName,
20632
- lineNumber: 117
22239
+ lineNumber: 118
20633
22240
  }
20634
22241
  }, " Student Correct Label "), React.createElement('svg', {
20635
22242
  width: "43",
@@ -20640,7 +22247,7 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20640
22247
  __self: undefined,
20641
22248
  __source: {
20642
22249
  fileName: _jsxFileName,
20643
- lineNumber: 118
22250
+ lineNumber: 119
20644
22251
  }
20645
22252
  }, React.createElement('rect', {
20646
22253
  x: "0.5",
@@ -20652,7 +22259,7 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20652
22259
  __self: undefined,
20653
22260
  __source: {
20654
22261
  fileName: _jsxFileName,
20655
- lineNumber: 119
22262
+ lineNumber: 120
20656
22263
  }
20657
22264
  }), React.createElement('rect', {
20658
22265
  x: "0.5",
@@ -20664,7 +22271,7 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20664
22271
  __self: undefined,
20665
22272
  __source: {
20666
22273
  fileName: _jsxFileName,
20667
- lineNumber: 120
22274
+ lineNumber: 121
20668
22275
  }
20669
22276
  }), React.createElement('path', {
20670
22277
  d: "M11.7969 5.3125C11.875 5.23438 12 5.23438 12.0625 5.3125L12.5156 5.75C12.5781 5.82812 12.5781 5.95312 12.5156 6.01562L7.82812 10.7031C7.75 10.7812 7.64062 10.7812 7.5625 10.7031L5.46875 8.625C5.40625 8.54688 5.40625 8.42188 5.46875 8.35938L5.92188 7.90625C5.98438 7.84375 6.10938 7.84375 6.1875 7.90625L7.6875 9.42188L11.7969 5.3125Z",
@@ -20672,7 +22279,7 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20672
22279
  __self: undefined,
20673
22280
  __source: {
20674
22281
  fileName: _jsxFileName,
20675
- lineNumber: 121
22282
+ lineNumber: 122
20676
22283
  }
20677
22284
  }), React.createElement('path', {
20678
22285
  d: "M15.9531 10.7041H18.3408V11.5H15.0791V4.625H15.9531V10.7041ZM20.5869 11.5928C20.1605 11.5928 19.8089 11.4837 19.5322 11.2656C19.2588 11.0443 19.1221 10.7155 19.1221 10.2793C19.1221 10.0384 19.166 9.83008 19.2539 9.6543C19.3418 9.47526 19.472 9.32878 19.6445 9.21484C19.8171 9.10091 20.0042 9.01139 20.2061 8.94629C20.4111 8.87793 20.6553 8.81934 20.9385 8.77051L21.7148 8.64355C21.998 8.59147 22.1396 8.44336 22.1396 8.19922C22.1396 7.8737 22.0387 7.63607 21.8369 7.48633C21.6383 7.33333 21.3861 7.25684 21.0801 7.25684C20.7806 7.25684 20.5299 7.33008 20.3281 7.47656C20.1263 7.62305 20.0075 7.84766 19.9717 8.15039L19.21 7.98926C19.2816 7.53353 19.4818 7.19173 19.8105 6.96387C20.1393 6.73275 20.5755 6.61719 21.1191 6.61719C21.373 6.61719 21.6042 6.64648 21.8125 6.70508C22.0241 6.76042 22.2178 6.84993 22.3936 6.97363C22.5726 7.09408 22.7109 7.2666 22.8086 7.49121C22.9095 7.71257 22.96 7.97461 22.96 8.27734V10.2598C22.96 10.5072 22.9958 10.6748 23.0674 10.7627C23.1423 10.8473 23.2692 10.8896 23.4482 10.8896H23.5264V11.5H23.1064C22.5889 11.5 22.2861 11.2835 22.1982 10.8506H22.1592C21.7946 11.3454 21.2705 11.5928 20.5869 11.5928ZM20.7822 10.9092C21.2087 10.9092 21.5521 10.7546 21.8125 10.4453C22.0729 10.1361 22.2031 9.71289 22.2031 9.17578L20.9336 9.41992C20.5983 9.47526 20.3493 9.56478 20.1865 9.68848C20.027 9.80892 19.9473 9.98307 19.9473 10.2109C19.9473 10.4486 20.0238 10.6243 20.1768 10.7383C20.333 10.8522 20.5348 10.9092 20.7822 10.9092ZM27.2666 6.60742C27.8916 6.60742 28.4206 6.83854 28.8535 7.30078C29.2865 7.76302 29.5029 8.36361 29.5029 9.10254C29.5029 9.84473 29.2881 10.4469 28.8584 10.9092C28.4287 11.3714 27.8981 11.6025 27.2666 11.6025C26.889 11.6025 26.5472 11.5098 26.2412 11.3242C25.9385 11.1387 25.7106 10.8864 25.5576 10.5674L25.5381 11.5H24.7227V4H25.5625L25.5674 7.61816C25.7236 7.30566 25.9515 7.0599 26.251 6.88086C26.5537 6.69857 26.8923 6.60742 27.2666 6.60742ZM27.0811 10.8701C27.527 10.8701 27.9014 10.7074 28.2041 10.3818C28.5068 10.0531 28.6582 9.62663 28.6582 9.10254C28.6582 8.57845 28.5068 8.15365 28.2041 7.82812C27.9014 7.49935 27.527 7.33496 27.0811 7.33496C26.6416 7.33496 26.2705 7.50423 25.9678 7.84277C25.665 8.18132 25.5137 8.60124 25.5137 9.10254C25.5137 9.6071 25.6634 10.0286 25.9629 10.3672C26.2656 10.7025 26.6383 10.8701 27.0811 10.8701ZM35.0352 9.00488L35.0254 9.23438H31.2754C31.2884 9.76823 31.4414 10.1784 31.7344 10.4648C32.0273 10.748 32.3919 10.8896 32.8281 10.8896C33.1211 10.8896 33.3864 10.8132 33.624 10.6602C33.8617 10.5072 34.0439 10.2956 34.1709 10.0254L34.9326 10.1865C34.7601 10.6227 34.4867 10.9661 34.1123 11.2168C33.738 11.4674 33.3132 11.5928 32.8379 11.5928C32.125 11.5928 31.5488 11.3698 31.1094 10.9238C30.6699 10.4779 30.4502 9.86914 30.4502 9.09766C30.4502 8.32943 30.6699 7.72233 31.1094 7.27637C31.5521 6.8304 32.1201 6.60742 32.8135 6.60742C33.484 6.60742 34.0212 6.8125 34.4248 7.22266C34.8317 7.63281 35.0352 8.22689 35.0352 9.00488ZM32.8135 7.25684C32.4163 7.25684 32.0827 7.37077 31.8125 7.59863C31.5456 7.82324 31.3779 8.15202 31.3096 8.58496H34.1855C34.153 8.15202 34.013 7.82324 33.7656 7.59863C33.5182 7.37077 33.2008 7.25684 32.8135 7.25684ZM36.3633 11.5V4H37.2178V11.5H36.3633Z",
@@ -20680,7 +22287,7 @@ const KeyLegend = ({className, isLabelAvailable}) => {
20680
22287
  __self: undefined,
20681
22288
  __source: {
20682
22289
  fileName: _jsxFileName,
20683
- lineNumber: 125
22290
+ lineNumber: 126
20684
22291
  }
20685
22292
  }))));
20686
22293
  };