@teselagen/ui 0.4.11 → 0.4.13
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/AdvancedOptions.d.ts +1 -1
- package/AssignDefaultsModeContext.d.ts +1 -1
- package/AsyncValidateFieldSpinner/index.d.ts +1 -1
- package/BlueprintError/index.d.ts +1 -1
- package/BounceLoader/index.d.ts +1 -1
- package/CollapsibleCard/index.d.ts +1 -1
- package/DNALoader/index.d.ts +1 -1
- package/DataTable/CellDragHandle.d.ts +1 -1
- package/DataTable/DisabledLoadingComponent.d.ts +1 -1
- package/DataTable/DisplayOptions.d.ts +2 -2
- package/DataTable/FilterAndSortMenu.d.ts +2 -2
- package/DataTable/SearchBar.d.ts +1 -1
- package/DataTable/SortableColumns.d.ts +2 -2
- package/DataTable/TableFormTrackerContext.d.ts +1 -1
- package/DataTable/defaultProps.d.ts +1 -1
- package/DataTable/utils/computePresets.d.ts +1 -1
- package/DataTable/viewColumn.d.ts +2 -2
- package/DialogFooter/index.d.ts +1 -1
- package/DropdownButton.d.ts +1 -1
- package/FillWindow.d.ts +1 -1
- package/FormComponents/LoadingDots.d.ts +1 -1
- package/FormComponents/index.d.ts +34 -34
- package/FormComponents/itemUpload.d.ts +1 -1
- package/HotkeysDialog/index.d.ts +1 -1
- package/InfoHelper/index.d.ts +1 -1
- package/IntentText/index.d.ts +1 -1
- package/MatchHeaders.d.ts +1 -1
- package/MenuBar/index.d.ts +4 -4
- package/PromptUnsavedChanges/index.d.ts +1 -1
- package/ResizableDraggableDialog/index.d.ts +2 -2
- package/ScrollToTop/index.d.ts +1 -1
- package/SimpleStepViz.d.ts +1 -1
- package/Tag.d.ts +14 -0
- package/TagSelect/index.d.ts +6 -0
- package/TgSelect/index.d.ts +2 -2
- package/TgSuggest/index.d.ts +3 -3
- package/Timeline/TimelineEvent.d.ts +1 -1
- package/Timeline/index.d.ts +2 -2
- package/UploadCsvWizard.d.ts +1 -1
- package/customIcons.d.ts +19 -19
- package/enhancers/withField.d.ts +1 -1
- package/enhancers/withFields.d.ts +1 -1
- package/enhancers/withLocalStorage.d.ts +1 -1
- package/index.cjs.js +88 -160
- package/index.d.ts +60 -60
- package/index.es.js +88 -160
- package/package.json +3 -1
- package/showConfirmationDialog/index.d.ts +2 -2
- package/src/DataTable/dataTableEnhancer.js +5 -1
- package/src/ExcelCell.js +38 -0
- package/src/Tag.js +112 -0
- package/src/TagSelect/index.js +69 -0
- package/src/TagSelect/style.css +13 -0
- package/src/TgSelect/index.js +0 -16
- package/src/TgSelect/style.css +7 -0
- package/style.css +7 -0
- package/useDialog.d.ts +2 -2
- package/utils/adHoc.d.ts +1 -1
- package/utils/commandControls.d.ts +5 -5
- package/utils/hotkeyUtils.d.ts +1 -1
- package/utils/menuUtils.d.ts +6 -6
- package/utils/tagUtils.d.ts +1 -1
- package/utils/tgFormValues.d.ts +1 -1
- package/utils/withStore.d.ts +1 -1
- package/wrapDialog.d.ts +1 -1
package/index.es.js
CHANGED
|
@@ -4214,7 +4214,6 @@ Dropzone.propTypes = {
|
|
|
4214
4214
|
*/
|
|
4215
4215
|
validator: PropTypes$1.func
|
|
4216
4216
|
};
|
|
4217
|
-
const Dropzone$1 = Dropzone;
|
|
4218
4217
|
var initialState = {
|
|
4219
4218
|
isFocused: false,
|
|
4220
4219
|
isFileDialogActive: false,
|
|
@@ -5555,8 +5554,6 @@ __name(_defineProperties$1, "_defineProperties$1");
|
|
|
5555
5554
|
function _createClass$d(Constructor, protoProps, staticProps) {
|
|
5556
5555
|
if (protoProps)
|
|
5557
5556
|
_defineProperties$1(Constructor.prototype, protoProps);
|
|
5558
|
-
if (staticProps)
|
|
5559
|
-
_defineProperties$1(Constructor, staticProps);
|
|
5560
5557
|
Object.defineProperty(Constructor, "prototype", {
|
|
5561
5558
|
writable: false
|
|
5562
5559
|
});
|
|
@@ -5625,7 +5622,7 @@ function _createForOfIteratorHelperLoose$5(o2, allowArrayLike) {
|
|
|
5625
5622
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
5626
5623
|
if (it)
|
|
5627
5624
|
return (it = it.call(o2)).next.bind(it);
|
|
5628
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$8(o2)) || allowArrayLike
|
|
5625
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$8(o2)) || allowArrayLike) {
|
|
5629
5626
|
if (it)
|
|
5630
5627
|
o2 = it;
|
|
5631
5628
|
var i = 0;
|
|
@@ -5648,12 +5645,12 @@ function _toPrimitive$1(input, hint) {
|
|
|
5648
5645
|
return input;
|
|
5649
5646
|
var prim = input[Symbol.toPrimitive];
|
|
5650
5647
|
if (prim !== void 0) {
|
|
5651
|
-
var res = prim.call(input, hint
|
|
5648
|
+
var res = prim.call(input, hint);
|
|
5652
5649
|
if (typeof res !== "object")
|
|
5653
5650
|
return res;
|
|
5654
5651
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
5655
5652
|
}
|
|
5656
|
-
return
|
|
5653
|
+
return String(input);
|
|
5657
5654
|
}
|
|
5658
5655
|
__name(_toPrimitive$1, "_toPrimitive$1");
|
|
5659
5656
|
function _toPropertyKey(arg) {
|
|
@@ -7396,7 +7393,7 @@ function onBecomeUnobserved(thing, arg2, arg3) {
|
|
|
7396
7393
|
}
|
|
7397
7394
|
__name(onBecomeUnobserved, "onBecomeUnobserved");
|
|
7398
7395
|
function interceptHook(hook, thing, arg2, arg3) {
|
|
7399
|
-
var atom =
|
|
7396
|
+
var atom = getAtom(thing);
|
|
7400
7397
|
var cb = isFunction$5(arg3) ? arg3 : arg2;
|
|
7401
7398
|
var listenersKey = hook + "L";
|
|
7402
7399
|
if (atom[listenersKey]) {
|
|
@@ -7578,12 +7575,6 @@ function _isObservable(value, property2) {
|
|
|
7578
7575
|
if (!value) {
|
|
7579
7576
|
return false;
|
|
7580
7577
|
}
|
|
7581
|
-
if (property2 !== void 0) {
|
|
7582
|
-
if (isObservableObject(value)) {
|
|
7583
|
-
return value[$mobx].values_.has(property2);
|
|
7584
|
-
}
|
|
7585
|
-
return false;
|
|
7586
|
-
}
|
|
7587
7578
|
return isObservableObject(value) || !!value[$mobx] || isAtom(value) || isReaction(value) || isComputedValue(value);
|
|
7588
7579
|
}
|
|
7589
7580
|
__name(_isObservable, "_isObservable");
|
|
@@ -9343,9 +9334,6 @@ function getAdministration$1(thing, property2) {
|
|
|
9343
9334
|
if (!thing) {
|
|
9344
9335
|
die(29);
|
|
9345
9336
|
}
|
|
9346
|
-
if (property2 !== void 0) {
|
|
9347
|
-
return getAdministration$1(getAtom(thing, property2));
|
|
9348
|
-
}
|
|
9349
9337
|
if (isAtom(thing) || isComputedValue(thing) || isReaction(thing)) {
|
|
9350
9338
|
return thing;
|
|
9351
9339
|
}
|
|
@@ -9778,7 +9766,7 @@ function observer$1(baseComponent, options) {
|
|
|
9778
9766
|
if (ReactMemoSymbol && baseComponent["$$typeof"] === ReactMemoSymbol) {
|
|
9779
9767
|
throw new Error("[mobx-react-lite] You are trying to use `observer` on a function component wrapped in either another `observer` or `React.memo`. The observer already applies 'React.memo' for you.");
|
|
9780
9768
|
}
|
|
9781
|
-
var useForwardRef = (_a2 =
|
|
9769
|
+
var useForwardRef = (_a2 = void 0) !== null && _a2 !== void 0 ? _a2 : false;
|
|
9782
9770
|
var render3 = baseComponent;
|
|
9783
9771
|
var baseComponentName = baseComponent.displayName || baseComponent.name;
|
|
9784
9772
|
if (ReactForwardRefSymbol && baseComponent["$$typeof"] === ReactForwardRefSymbol) {
|
|
@@ -10589,7 +10577,6 @@ an.setUseProxies.bind(an);
|
|
|
10589
10577
|
var pn = an.applyPatches.bind(an);
|
|
10590
10578
|
an.createDraft.bind(an);
|
|
10591
10579
|
an.finishDraft.bind(an);
|
|
10592
|
-
const immer = fn3;
|
|
10593
10580
|
var freeGlobal$2 = typeof global == "object" && global && global.Object === Object && global;
|
|
10594
10581
|
var freeSelf$1 = typeof self == "object" && self && self.Object === Object && self;
|
|
10595
10582
|
var root$b = freeGlobal$2 || freeSelf$1 || Function("return this")();
|
|
@@ -10873,8 +10860,7 @@ var baseSetToString$2 = !defineProperty$8 ? identity$7 : function(func, string2)
|
|
|
10873
10860
|
"writable": true
|
|
10874
10861
|
});
|
|
10875
10862
|
};
|
|
10876
|
-
|
|
10877
|
-
var setToString$2 = shortOut$2(baseSetToString$3);
|
|
10863
|
+
var setToString$2 = shortOut$2(baseSetToString$2);
|
|
10878
10864
|
function arrayEach$2(array2, iteratee) {
|
|
10879
10865
|
var index2 = -1, length = array2 == null ? 0 : array2.length;
|
|
10880
10866
|
while (++index2 < length) {
|
|
@@ -10886,8 +10872,8 @@ function arrayEach$2(array2, iteratee) {
|
|
|
10886
10872
|
}
|
|
10887
10873
|
__name(arrayEach$2, "arrayEach$2");
|
|
10888
10874
|
function baseFindIndex$2(array2, predicate, fromIndex, fromRight) {
|
|
10889
|
-
var length = array2.length, index2 = fromIndex +
|
|
10890
|
-
while (
|
|
10875
|
+
var length = array2.length, index2 = fromIndex + -1;
|
|
10876
|
+
while (++index2 < length) {
|
|
10891
10877
|
if (predicate(array2[index2], index2, array2)) {
|
|
10892
10878
|
return index2;
|
|
10893
10879
|
}
|
|
@@ -10958,7 +10944,7 @@ function copyObject$5(source, props, object2, customizer) {
|
|
|
10958
10944
|
var index2 = -1, length = props.length;
|
|
10959
10945
|
while (++index2 < length) {
|
|
10960
10946
|
var key = props[index2];
|
|
10961
|
-
var newValue =
|
|
10947
|
+
var newValue = void 0;
|
|
10962
10948
|
if (newValue === void 0) {
|
|
10963
10949
|
newValue = source[key];
|
|
10964
10950
|
}
|
|
@@ -11059,7 +11045,6 @@ var isArguments$4 = baseIsArguments$2(/* @__PURE__ */ function() {
|
|
|
11059
11045
|
}()) ? baseIsArguments$2 : function(value) {
|
|
11060
11046
|
return isObjectLike$b(value) && hasOwnProperty$q.call(value, "callee") && !propertyIsEnumerable$3.call(value, "callee");
|
|
11061
11047
|
};
|
|
11062
|
-
const isArguments$5 = isArguments$4;
|
|
11063
11048
|
function stubFalse$1() {
|
|
11064
11049
|
return false;
|
|
11065
11050
|
}
|
|
@@ -11070,7 +11055,6 @@ var moduleExports$2 = freeModule$2 && freeModule$2.exports === freeExports$2;
|
|
|
11070
11055
|
var Buffer$2 = moduleExports$2 ? root$b.Buffer : void 0;
|
|
11071
11056
|
var nativeIsBuffer = Buffer$2 ? Buffer$2.isBuffer : void 0;
|
|
11072
11057
|
var isBuffer$7 = nativeIsBuffer || stubFalse$1;
|
|
11073
|
-
const isBuffer$8 = isBuffer$7;
|
|
11074
11058
|
var argsTag$6 = "[object Arguments]", arrayTag$5 = "[object Array]", boolTag$7 = "[object Boolean]", dateTag$7 = "[object Date]", errorTag$5 = "[object Error]", funcTag$4 = "[object Function]", mapTag$d = "[object Map]", numberTag$8 = "[object Number]", objectTag$9 = "[object Object]", regexpTag$7 = "[object RegExp]", setTag$d = "[object Set]", stringTag$9 = "[object String]", weakMapTag$5 = "[object WeakMap]";
|
|
11075
11059
|
var arrayBufferTag$7 = "[object ArrayBuffer]", dataViewTag$9 = "[object DataView]", float32Tag$5 = "[object Float32Array]", float64Tag$5 = "[object Float64Array]", int8Tag$5 = "[object Int8Array]", int16Tag$5 = "[object Int16Array]", int32Tag$5 = "[object Int32Array]", uint8Tag$5 = "[object Uint8Array]", uint8ClampedTag$5 = "[object Uint8ClampedArray]", uint16Tag$5 = "[object Uint16Array]", uint32Tag$5 = "[object Uint32Array]";
|
|
11076
11060
|
var typedArrayTags$1 = {};
|
|
@@ -11102,11 +11086,10 @@ var nodeUtil$3 = function() {
|
|
|
11102
11086
|
}();
|
|
11103
11087
|
var nodeIsTypedArray$1 = nodeUtil$3 && nodeUtil$3.isTypedArray;
|
|
11104
11088
|
var isTypedArray$3 = nodeIsTypedArray$1 ? baseUnary$5(nodeIsTypedArray$1) : baseIsTypedArray$2;
|
|
11105
|
-
const isTypedArray$4 = isTypedArray$3;
|
|
11106
11089
|
var objectProto$r = Object.prototype;
|
|
11107
11090
|
var hasOwnProperty$p = objectProto$r.hasOwnProperty;
|
|
11108
11091
|
function arrayLikeKeys$3(value, inherited) {
|
|
11109
|
-
var isArr = isArray$m(value), isArg = !isArr && isArguments$
|
|
11092
|
+
var isArr = isArray$m(value), isArg = !isArr && isArguments$4(value), isBuff = !isArr && !isArg && isBuffer$7(value), isType2 = !isArr && !isArg && !isBuff && isTypedArray$3(value), skipIndexes = isArr || isArg || isBuff || isType2, result = skipIndexes ? baseTimes$2(value.length, String) : [], length = result.length;
|
|
11110
11093
|
for (var key in value) {
|
|
11111
11094
|
if ((inherited || hasOwnProperty$p.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
11112
11095
|
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
@@ -11447,7 +11430,7 @@ function arrayPush$4(array2, values2) {
|
|
|
11447
11430
|
__name(arrayPush$4, "arrayPush$4");
|
|
11448
11431
|
var spreadableSymbol$1 = Symbol$9 ? Symbol$9.isConcatSpreadable : void 0;
|
|
11449
11432
|
function isFlattenable$2(value) {
|
|
11450
|
-
return isArray$m(value) || isArguments$
|
|
11433
|
+
return isArray$m(value) || isArguments$4(value) || !!(spreadableSymbol$1 && value && value[spreadableSymbol$1]);
|
|
11451
11434
|
}
|
|
11452
11435
|
__name(isFlattenable$2, "isFlattenable$2");
|
|
11453
11436
|
function baseFlatten$2(array2, depth, predicate, isStrict, result) {
|
|
@@ -11456,10 +11439,8 @@ function baseFlatten$2(array2, depth, predicate, isStrict, result) {
|
|
|
11456
11439
|
result || (result = []);
|
|
11457
11440
|
while (++index2 < length) {
|
|
11458
11441
|
var value = array2[index2];
|
|
11459
|
-
if (
|
|
11460
|
-
|
|
11461
|
-
baseFlatten$2(value, depth - 1, predicate, isStrict, result);
|
|
11462
|
-
} else {
|
|
11442
|
+
if (predicate(value)) {
|
|
11443
|
+
{
|
|
11463
11444
|
arrayPush$4(result, value);
|
|
11464
11445
|
}
|
|
11465
11446
|
} else if (!isStrict) {
|
|
@@ -11471,7 +11452,7 @@ function baseFlatten$2(array2, depth, predicate, isStrict, result) {
|
|
|
11471
11452
|
__name(baseFlatten$2, "baseFlatten$2");
|
|
11472
11453
|
function flatten(array2) {
|
|
11473
11454
|
var length = array2 == null ? 0 : array2.length;
|
|
11474
|
-
return length ? baseFlatten$2(array2
|
|
11455
|
+
return length ? baseFlatten$2(array2) : [];
|
|
11475
11456
|
}
|
|
11476
11457
|
__name(flatten, "flatten");
|
|
11477
11458
|
function flatRest(func) {
|
|
@@ -11770,14 +11751,13 @@ var deburredLetters = {
|
|
|
11770
11751
|
"ſ": "s"
|
|
11771
11752
|
};
|
|
11772
11753
|
var deburrLetter = basePropertyOf(deburredLetters);
|
|
11773
|
-
const deburrLetter$1 = deburrLetter;
|
|
11774
11754
|
var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g;
|
|
11775
11755
|
var rsComboMarksRange$2 = "\\u0300-\\u036f", reComboHalfMarksRange$2 = "\\ufe20-\\ufe2f", rsComboSymbolsRange$2 = "\\u20d0-\\u20ff", rsComboRange$2 = rsComboMarksRange$2 + reComboHalfMarksRange$2 + rsComboSymbolsRange$2;
|
|
11776
11756
|
var rsCombo$2 = "[" + rsComboRange$2 + "]";
|
|
11777
11757
|
var reComboMark = RegExp(rsCombo$2, "g");
|
|
11778
11758
|
function deburr(string2) {
|
|
11779
11759
|
string2 = toString$6(string2);
|
|
11780
|
-
return string2 && string2.replace(reLatin, deburrLetter
|
|
11760
|
+
return string2 && string2.replace(reLatin, deburrLetter).replace(reComboMark, "");
|
|
11781
11761
|
}
|
|
11782
11762
|
__name(deburr, "deburr");
|
|
11783
11763
|
var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
|
|
@@ -11809,7 +11789,7 @@ function unicodeWords(string2) {
|
|
|
11809
11789
|
__name(unicodeWords, "unicodeWords");
|
|
11810
11790
|
function words(string2, pattern, guard) {
|
|
11811
11791
|
string2 = toString$6(string2);
|
|
11812
|
-
pattern =
|
|
11792
|
+
pattern = pattern;
|
|
11813
11793
|
if (pattern === void 0) {
|
|
11814
11794
|
return hasUnicodeWord(string2) ? unicodeWords(string2) : asciiWords(string2);
|
|
11815
11795
|
}
|
|
@@ -11833,7 +11813,7 @@ function baseClamp(number2, lower, upper) {
|
|
|
11833
11813
|
if (upper !== void 0) {
|
|
11834
11814
|
number2 = number2 <= upper ? number2 : upper;
|
|
11835
11815
|
}
|
|
11836
|
-
|
|
11816
|
+
{
|
|
11837
11817
|
number2 = number2 >= lower ? number2 : lower;
|
|
11838
11818
|
}
|
|
11839
11819
|
}
|
|
@@ -11991,7 +11971,6 @@ if (DataView$3 && getTag$6(new DataView$3(new ArrayBuffer(1))) != dataViewTag$8
|
|
|
11991
11971
|
return result;
|
|
11992
11972
|
}, "getTag$6");
|
|
11993
11973
|
}
|
|
11994
|
-
const getTag$7 = getTag$6;
|
|
11995
11974
|
var objectProto$k = Object.prototype;
|
|
11996
11975
|
var hasOwnProperty$j = objectProto$k.hasOwnProperty;
|
|
11997
11976
|
function initCloneArray$2(array2) {
|
|
@@ -12074,14 +12053,14 @@ function initCloneObject$2(object2) {
|
|
|
12074
12053
|
__name(initCloneObject$2, "initCloneObject$2");
|
|
12075
12054
|
var mapTag$a = "[object Map]";
|
|
12076
12055
|
function baseIsMap$2(value) {
|
|
12077
|
-
return isObjectLike$b(value) && getTag$
|
|
12056
|
+
return isObjectLike$b(value) && getTag$6(value) == mapTag$a;
|
|
12078
12057
|
}
|
|
12079
12058
|
__name(baseIsMap$2, "baseIsMap$2");
|
|
12080
12059
|
var nodeIsMap$1 = nodeUtil$3 && nodeUtil$3.isMap;
|
|
12081
12060
|
var isMap$3 = nodeIsMap$1 ? baseUnary$5(nodeIsMap$1) : baseIsMap$2;
|
|
12082
12061
|
var setTag$a = "[object Set]";
|
|
12083
12062
|
function baseIsSet$2(value) {
|
|
12084
|
-
return isObjectLike$b(value) && getTag$
|
|
12063
|
+
return isObjectLike$b(value) && getTag$6(value) == setTag$a;
|
|
12085
12064
|
}
|
|
12086
12065
|
__name(baseIsSet$2, "baseIsSet$2");
|
|
12087
12066
|
var nodeIsSet$1 = nodeUtil$3 && nodeUtil$3.isSet;
|
|
@@ -12110,8 +12089,8 @@ function baseClone$2(value, bitmask, customizer, key, object2, stack) {
|
|
|
12110
12089
|
return copyArray$2(value, result);
|
|
12111
12090
|
}
|
|
12112
12091
|
} else {
|
|
12113
|
-
var tag = getTag$
|
|
12114
|
-
if (isBuffer$
|
|
12092
|
+
var tag = getTag$6(value), isFunc = tag == funcTag$3 || tag == genTag$2;
|
|
12093
|
+
if (isBuffer$7(value)) {
|
|
12115
12094
|
return cloneBuffer$1(value, isDeep);
|
|
12116
12095
|
}
|
|
12117
12096
|
if (tag == objectTag$6 || tag == argsTag$5 || isFunc && !object2) {
|
|
@@ -12361,12 +12340,12 @@ var argsTag$4 = "[object Arguments]", arrayTag$3 = "[object Array]", objectTag$5
|
|
|
12361
12340
|
var objectProto$i = Object.prototype;
|
|
12362
12341
|
var hasOwnProperty$h = objectProto$i.hasOwnProperty;
|
|
12363
12342
|
function baseIsEqualDeep$2(object2, other, bitmask, customizer, equalFunc, stack) {
|
|
12364
|
-
var objIsArr = isArray$m(object2), othIsArr = isArray$m(other), objTag = objIsArr ? arrayTag$3 : getTag$
|
|
12343
|
+
var objIsArr = isArray$m(object2), othIsArr = isArray$m(other), objTag = objIsArr ? arrayTag$3 : getTag$6(object2), othTag = othIsArr ? arrayTag$3 : getTag$6(other);
|
|
12365
12344
|
objTag = objTag == argsTag$4 ? objectTag$5 : objTag;
|
|
12366
12345
|
othTag = othTag == argsTag$4 ? objectTag$5 : othTag;
|
|
12367
12346
|
var objIsObj = objTag == objectTag$5, othIsObj = othTag == objectTag$5, isSameTag = objTag == othTag;
|
|
12368
|
-
if (isSameTag && isBuffer$
|
|
12369
|
-
if (!isBuffer$
|
|
12347
|
+
if (isSameTag && isBuffer$7(object2)) {
|
|
12348
|
+
if (!isBuffer$7(other)) {
|
|
12370
12349
|
return false;
|
|
12371
12350
|
}
|
|
12372
12351
|
objIsArr = true;
|
|
@@ -12374,7 +12353,7 @@ function baseIsEqualDeep$2(object2, other, bitmask, customizer, equalFunc, stack
|
|
|
12374
12353
|
}
|
|
12375
12354
|
if (isSameTag && !objIsObj) {
|
|
12376
12355
|
stack || (stack = new Stack$4());
|
|
12377
|
-
return objIsArr || isTypedArray$
|
|
12356
|
+
return objIsArr || isTypedArray$3(object2) ? equalArrays$3(object2, other, bitmask, customizer, equalFunc, stack) : equalByTag$2(object2, other, objTag, bitmask, customizer, equalFunc, stack);
|
|
12378
12357
|
}
|
|
12379
12358
|
if (!(bitmask & COMPARE_PARTIAL_FLAG$8)) {
|
|
12380
12359
|
var objIsWrapped = objIsObj && hasOwnProperty$h.call(object2, "__wrapped__"), othIsWrapped = othIsObj && hasOwnProperty$h.call(other, "__wrapped__");
|
|
@@ -12403,29 +12382,27 @@ function baseIsEqual$3(value, other, bitmask, customizer, stack) {
|
|
|
12403
12382
|
__name(baseIsEqual$3, "baseIsEqual$3");
|
|
12404
12383
|
var COMPARE_PARTIAL_FLAG$7 = 1, COMPARE_UNORDERED_FLAG$5 = 2;
|
|
12405
12384
|
function baseIsMatch$2(object2, source, matchData, customizer) {
|
|
12406
|
-
var index2 = matchData.length, length = index2
|
|
12385
|
+
var index2 = matchData.length, length = index2;
|
|
12407
12386
|
if (object2 == null) {
|
|
12408
12387
|
return !length;
|
|
12409
12388
|
}
|
|
12410
12389
|
object2 = Object(object2);
|
|
12411
12390
|
while (index2--) {
|
|
12412
12391
|
var data = matchData[index2];
|
|
12413
|
-
if (
|
|
12392
|
+
if (data[2] ? data[1] !== object2[data[0]] : !(data[0] in object2)) {
|
|
12414
12393
|
return false;
|
|
12415
12394
|
}
|
|
12416
12395
|
}
|
|
12417
12396
|
while (++index2 < length) {
|
|
12418
12397
|
data = matchData[index2];
|
|
12419
12398
|
var key = data[0], objValue = object2[key], srcValue = data[1];
|
|
12420
|
-
if (
|
|
12399
|
+
if (data[2]) {
|
|
12421
12400
|
if (objValue === void 0 && !(key in object2)) {
|
|
12422
12401
|
return false;
|
|
12423
12402
|
}
|
|
12424
12403
|
} else {
|
|
12425
12404
|
var stack = new Stack$4();
|
|
12426
|
-
|
|
12427
|
-
var result = customizer(objValue, srcValue, key, object2, source, stack);
|
|
12428
|
-
}
|
|
12405
|
+
var result;
|
|
12429
12406
|
if (!(result === void 0 ? baseIsEqual$3(srcValue, objValue, COMPARE_PARTIAL_FLAG$7 | COMPARE_UNORDERED_FLAG$5, customizer, stack) : result)) {
|
|
12430
12407
|
return false;
|
|
12431
12408
|
}
|
|
@@ -12484,7 +12461,7 @@ function hasPath$2(object2, path2, hasFunc) {
|
|
|
12484
12461
|
return result;
|
|
12485
12462
|
}
|
|
12486
12463
|
length = object2 == null ? 0 : object2.length;
|
|
12487
|
-
return !!length && isLength$4(length) && isIndex$4(key, length) && (isArray$m(object2) || isArguments$
|
|
12464
|
+
return !!length && isLength$4(length) && isIndex$4(key, length) && (isArray$m(object2) || isArguments$4(object2));
|
|
12488
12465
|
}
|
|
12489
12466
|
__name(hasPath$2, "hasPath$2");
|
|
12490
12467
|
function hasIn$2(object2, path2) {
|
|
@@ -12544,7 +12521,7 @@ function createBaseFor$2(fromRight) {
|
|
|
12544
12521
|
return function(object2, iteratee, keysFunc) {
|
|
12545
12522
|
var index2 = -1, iterable = Object(object2), props = keysFunc(object2), length = props.length;
|
|
12546
12523
|
while (length--) {
|
|
12547
|
-
var key = props[
|
|
12524
|
+
var key = props[++index2];
|
|
12548
12525
|
if (iteratee(iterable[key], key, iterable) === false) {
|
|
12549
12526
|
break;
|
|
12550
12527
|
}
|
|
@@ -12566,8 +12543,8 @@ function createBaseEach$2(eachFunc, fromRight) {
|
|
|
12566
12543
|
if (!isArrayLike$7(collection)) {
|
|
12567
12544
|
return eachFunc(collection, iteratee);
|
|
12568
12545
|
}
|
|
12569
|
-
var length = collection.length, index2 =
|
|
12570
|
-
while (
|
|
12546
|
+
var length = collection.length, index2 = -1, iterable = Object(collection);
|
|
12547
|
+
while (++index2 < length) {
|
|
12571
12548
|
if (iteratee(iterable[index2], index2, iterable) === false) {
|
|
12572
12549
|
break;
|
|
12573
12550
|
}
|
|
@@ -12577,9 +12554,8 @@ function createBaseEach$2(eachFunc, fromRight) {
|
|
|
12577
12554
|
}
|
|
12578
12555
|
__name(createBaseEach$2, "createBaseEach$2");
|
|
12579
12556
|
var baseEach$2 = createBaseEach$2(baseForOwn$3);
|
|
12580
|
-
const baseEach$3 = baseEach$2;
|
|
12581
12557
|
function baseAggregator(collection, setter2, iteratee, accumulator) {
|
|
12582
|
-
baseEach$
|
|
12558
|
+
baseEach$2(collection, function(value, key, collection2) {
|
|
12583
12559
|
setter2(accumulator, value, iteratee(value), collection2);
|
|
12584
12560
|
});
|
|
12585
12561
|
return accumulator;
|
|
@@ -12721,7 +12697,7 @@ function baseMergeDeep(object2, source, key, srcIndex, mergeFunc, customizer, st
|
|
|
12721
12697
|
var newValue = customizer ? customizer(objValue, srcValue, key + "", object2, source, stack) : void 0;
|
|
12722
12698
|
var isCommon = newValue === void 0;
|
|
12723
12699
|
if (isCommon) {
|
|
12724
|
-
var isArr = isArray$m(srcValue), isBuff = !isArr && isBuffer$
|
|
12700
|
+
var isArr = isArray$m(srcValue), isBuff = !isArr && isBuffer$7(srcValue), isTyped = !isArr && !isBuff && isTypedArray$3(srcValue);
|
|
12725
12701
|
newValue = srcValue;
|
|
12726
12702
|
if (isArr || isBuff || isTyped) {
|
|
12727
12703
|
if (isArray$m(objValue)) {
|
|
@@ -12737,9 +12713,9 @@ function baseMergeDeep(object2, source, key, srcIndex, mergeFunc, customizer, st
|
|
|
12737
12713
|
} else {
|
|
12738
12714
|
newValue = [];
|
|
12739
12715
|
}
|
|
12740
|
-
} else if (isPlainObject$3(srcValue) || isArguments$
|
|
12716
|
+
} else if (isPlainObject$3(srcValue) || isArguments$4(srcValue)) {
|
|
12741
12717
|
newValue = objValue;
|
|
12742
|
-
if (isArguments$
|
|
12718
|
+
if (isArguments$4(objValue)) {
|
|
12743
12719
|
newValue = toPlainObject(objValue);
|
|
12744
12720
|
} else if (!isObject$e(objValue) || isFunction$4(objValue)) {
|
|
12745
12721
|
newValue = initCloneObject$2(srcValue);
|
|
@@ -12774,37 +12750,21 @@ function baseMerge(object2, source, srcIndex, customizer, stack) {
|
|
|
12774
12750
|
}, keysIn$4);
|
|
12775
12751
|
}
|
|
12776
12752
|
__name(baseMerge, "baseMerge");
|
|
12777
|
-
function arrayIncludesWith(array2, value, comparator) {
|
|
12778
|
-
var index2 = -1, length = array2 == null ? 0 : array2.length;
|
|
12779
|
-
while (++index2 < length) {
|
|
12780
|
-
if (comparator(value, array2[index2])) {
|
|
12781
|
-
return true;
|
|
12782
|
-
}
|
|
12783
|
-
}
|
|
12784
|
-
return false;
|
|
12785
|
-
}
|
|
12786
|
-
__name(arrayIncludesWith, "arrayIncludesWith");
|
|
12787
12753
|
var LARGE_ARRAY_SIZE$2 = 200;
|
|
12788
12754
|
function baseDifference(array2, values2, iteratee, comparator) {
|
|
12789
12755
|
var index2 = -1, includes = arrayIncludes, isCommon = true, length = array2.length, result = [], valuesLength = values2.length;
|
|
12790
12756
|
if (!length) {
|
|
12791
12757
|
return result;
|
|
12792
12758
|
}
|
|
12793
|
-
if (
|
|
12794
|
-
values2 = arrayMap$4(values2, baseUnary$5(iteratee));
|
|
12795
|
-
}
|
|
12796
|
-
if (comparator) {
|
|
12797
|
-
includes = arrayIncludesWith;
|
|
12798
|
-
isCommon = false;
|
|
12799
|
-
} else if (values2.length >= LARGE_ARRAY_SIZE$2) {
|
|
12759
|
+
if (values2.length >= LARGE_ARRAY_SIZE$2) {
|
|
12800
12760
|
includes = cacheHas$2;
|
|
12801
12761
|
isCommon = false;
|
|
12802
12762
|
values2 = new SetCache$2(values2);
|
|
12803
12763
|
}
|
|
12804
12764
|
outer:
|
|
12805
12765
|
while (++index2 < length) {
|
|
12806
|
-
var value = array2[index2], computed3 =
|
|
12807
|
-
value =
|
|
12766
|
+
var value = array2[index2], computed3 = value;
|
|
12767
|
+
value = value !== 0 ? value : 0;
|
|
12808
12768
|
if (isCommon && computed3 === computed3) {
|
|
12809
12769
|
var valuesIndex = valuesLength;
|
|
12810
12770
|
while (valuesIndex--) {
|
|
@@ -12833,7 +12793,7 @@ function drop(array2, n2, guard) {
|
|
|
12833
12793
|
if (!length) {
|
|
12834
12794
|
return [];
|
|
12835
12795
|
}
|
|
12836
|
-
n2 =
|
|
12796
|
+
n2 = n2 === void 0 ? 1 : toInteger$5(n2);
|
|
12837
12797
|
return baseSlice(array2, n2 < 0 ? 0 : n2, length);
|
|
12838
12798
|
}
|
|
12839
12799
|
__name(drop, "drop");
|
|
@@ -12842,7 +12802,7 @@ function castFunction$2(value) {
|
|
|
12842
12802
|
}
|
|
12843
12803
|
__name(castFunction$2, "castFunction$2");
|
|
12844
12804
|
function forEach(collection, iteratee) {
|
|
12845
|
-
var func = isArray$m(collection) ? arrayEach$2 : baseEach$
|
|
12805
|
+
var func = isArray$m(collection) ? arrayEach$2 : baseEach$2;
|
|
12846
12806
|
return func(collection, castFunction$2(iteratee));
|
|
12847
12807
|
}
|
|
12848
12808
|
__name(forEach, "forEach");
|
|
@@ -12868,7 +12828,7 @@ function arrayEvery(array2, predicate) {
|
|
|
12868
12828
|
__name(arrayEvery, "arrayEvery");
|
|
12869
12829
|
function baseEvery(collection, predicate) {
|
|
12870
12830
|
var result = true;
|
|
12871
|
-
baseEach$
|
|
12831
|
+
baseEach$2(collection, function(value, index2, collection2) {
|
|
12872
12832
|
result = !!predicate(value, index2, collection2);
|
|
12873
12833
|
return result;
|
|
12874
12834
|
});
|
|
@@ -12877,15 +12837,12 @@ function baseEvery(collection, predicate) {
|
|
|
12877
12837
|
__name(baseEvery, "baseEvery");
|
|
12878
12838
|
function every(collection, predicate, guard) {
|
|
12879
12839
|
var func = isArray$m(collection) ? arrayEvery : baseEvery;
|
|
12880
|
-
if (guard && isIterateeCall$2(collection, predicate, guard)) {
|
|
12881
|
-
predicate = void 0;
|
|
12882
|
-
}
|
|
12883
12840
|
return func(collection, baseIteratee$5(predicate));
|
|
12884
12841
|
}
|
|
12885
12842
|
__name(every, "every");
|
|
12886
12843
|
function baseFilter(collection, predicate) {
|
|
12887
12844
|
var result = [];
|
|
12888
|
-
baseEach$
|
|
12845
|
+
baseEach$2(collection, function(value, index2, collection2) {
|
|
12889
12846
|
if (predicate(value, index2, collection2)) {
|
|
12890
12847
|
result.push(value);
|
|
12891
12848
|
}
|
|
@@ -12900,7 +12857,7 @@ function filter(collection, predicate) {
|
|
|
12900
12857
|
__name(filter, "filter");
|
|
12901
12858
|
function baseMap$3(collection, iteratee) {
|
|
12902
12859
|
var index2 = -1, result = isArrayLike$7(collection) ? Array(collection.length) : [];
|
|
12903
|
-
baseEach$
|
|
12860
|
+
baseEach$2(collection, function(value, key, collection2) {
|
|
12904
12861
|
result[++index2] = iteratee(value, key, collection2);
|
|
12905
12862
|
});
|
|
12906
12863
|
return result;
|
|
@@ -12912,7 +12869,7 @@ function map$2(collection, iteratee) {
|
|
|
12912
12869
|
}
|
|
12913
12870
|
__name(map$2, "map$2");
|
|
12914
12871
|
function flatMap(collection, iteratee) {
|
|
12915
|
-
return baseFlatten$2(map$2(collection, iteratee)
|
|
12872
|
+
return baseFlatten$2(map$2(collection, iteratee));
|
|
12916
12873
|
}
|
|
12917
12874
|
__name(flatMap, "flatMap");
|
|
12918
12875
|
function baseGt(value, other) {
|
|
@@ -12966,10 +12923,10 @@ function isEmpty$1(value) {
|
|
|
12966
12923
|
if (value == null) {
|
|
12967
12924
|
return true;
|
|
12968
12925
|
}
|
|
12969
|
-
if (isArrayLike$7(value) && (isArray$m(value) || typeof value == "string" || typeof value.splice == "function" || isBuffer$
|
|
12926
|
+
if (isArrayLike$7(value) && (isArray$m(value) || typeof value == "string" || typeof value.splice == "function" || isBuffer$7(value) || isTypedArray$3(value) || isArguments$4(value))) {
|
|
12970
12927
|
return !value.length;
|
|
12971
12928
|
}
|
|
12972
|
-
var tag = getTag$
|
|
12929
|
+
var tag = getTag$6(value);
|
|
12973
12930
|
if (tag == mapTag$7 || tag == setTag$7) {
|
|
12974
12931
|
return !value.size;
|
|
12975
12932
|
}
|
|
@@ -13087,7 +13044,7 @@ function toArray(value) {
|
|
|
13087
13044
|
if (symIterator && value[symIterator]) {
|
|
13088
13045
|
return iteratorToArray(value[symIterator]());
|
|
13089
13046
|
}
|
|
13090
|
-
var tag = getTag$
|
|
13047
|
+
var tag = getTag$6(value), func = tag == mapTag$6 ? mapToArray$2 : tag == setTag$6 ? setToArray$2 : values;
|
|
13091
13048
|
return func(value);
|
|
13092
13049
|
}
|
|
13093
13050
|
__name(toArray, "toArray");
|
|
@@ -13136,7 +13093,7 @@ function baseSet(object2, path2, value, customizer) {
|
|
|
13136
13093
|
}
|
|
13137
13094
|
if (index2 != lastIndex) {
|
|
13138
13095
|
var objValue = nested[key];
|
|
13139
|
-
newValue =
|
|
13096
|
+
newValue = void 0;
|
|
13140
13097
|
if (newValue === void 0) {
|
|
13141
13098
|
newValue = isObject$e(objValue) ? objValue : isIndex$4(path2[index2 + 1]) ? [] : {};
|
|
13142
13099
|
}
|
|
@@ -13246,7 +13203,7 @@ function orderBy$1(collection, iteratees, orders, guard) {
|
|
|
13246
13203
|
if (!isArray$m(iteratees)) {
|
|
13247
13204
|
iteratees = iteratees == null ? [] : [iteratees];
|
|
13248
13205
|
}
|
|
13249
|
-
orders =
|
|
13206
|
+
orders = orders;
|
|
13250
13207
|
if (!isArray$m(orders)) {
|
|
13251
13208
|
orders = orders == null ? [] : [orders];
|
|
13252
13209
|
}
|
|
@@ -13329,7 +13286,7 @@ var nativeCeil = Math.ceil, nativeMax$2 = Math.max;
|
|
|
13329
13286
|
function baseRange(start2, end2, step2, fromRight) {
|
|
13330
13287
|
var index2 = -1, length = nativeMax$2(nativeCeil((end2 - start2) / (step2 || 1)), 0), result = Array(length);
|
|
13331
13288
|
while (length--) {
|
|
13332
|
-
result[
|
|
13289
|
+
result[++index2] = start2;
|
|
13333
13290
|
start2 += step2;
|
|
13334
13291
|
}
|
|
13335
13292
|
return result;
|
|
@@ -13348,7 +13305,7 @@ function createRange(fromRight) {
|
|
|
13348
13305
|
end2 = toFinite$2(end2);
|
|
13349
13306
|
}
|
|
13350
13307
|
step2 = step2 === void 0 ? start2 < end2 ? 1 : -1 : toFinite$2(step2);
|
|
13351
|
-
return baseRange(start2, end2, step2
|
|
13308
|
+
return baseRange(start2, end2, step2);
|
|
13352
13309
|
};
|
|
13353
13310
|
}
|
|
13354
13311
|
__name(createRange, "createRange");
|
|
@@ -13362,7 +13319,7 @@ function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {
|
|
|
13362
13319
|
__name(baseReduce, "baseReduce");
|
|
13363
13320
|
function reduce(collection, iteratee, accumulator) {
|
|
13364
13321
|
var func = isArray$m(collection) ? arrayReduce : baseReduce, initAccum = arguments.length < 3;
|
|
13365
|
-
return func(collection, baseIteratee$5(iteratee), accumulator, initAccum, baseEach$
|
|
13322
|
+
return func(collection, baseIteratee$5(iteratee), accumulator, initAccum, baseEach$2);
|
|
13366
13323
|
}
|
|
13367
13324
|
__name(reduce, "reduce");
|
|
13368
13325
|
function remove$1(array2, predicate) {
|
|
@@ -13392,7 +13349,7 @@ var snakeCase = createCompounder(function(result, word, index2) {
|
|
|
13392
13349
|
});
|
|
13393
13350
|
function baseSome(collection, predicate) {
|
|
13394
13351
|
var result;
|
|
13395
|
-
baseEach$
|
|
13352
|
+
baseEach$2(collection, function(value, index2, collection2) {
|
|
13396
13353
|
result = predicate(value, index2, collection2);
|
|
13397
13354
|
return !result;
|
|
13398
13355
|
});
|
|
@@ -13401,9 +13358,6 @@ function baseSome(collection, predicate) {
|
|
|
13401
13358
|
__name(baseSome, "baseSome");
|
|
13402
13359
|
function some(collection, predicate, guard) {
|
|
13403
13360
|
var func = isArray$m(collection) ? arraySome$2 : baseSome;
|
|
13404
|
-
if (guard && isIterateeCall$2(collection, predicate, guard)) {
|
|
13405
|
-
predicate = void 0;
|
|
13406
|
-
}
|
|
13407
13361
|
return func(collection, baseIteratee$5(predicate));
|
|
13408
13362
|
}
|
|
13409
13363
|
__name(some, "some");
|
|
@@ -13421,7 +13375,7 @@ function take(array2, n2, guard) {
|
|
|
13421
13375
|
if (!(array2 && array2.length)) {
|
|
13422
13376
|
return [];
|
|
13423
13377
|
}
|
|
13424
|
-
n2 =
|
|
13378
|
+
n2 = n2 === void 0 ? 1 : toInteger$5(n2);
|
|
13425
13379
|
return baseSlice(array2, 0, n2 < 0 ? 0 : n2);
|
|
13426
13380
|
}
|
|
13427
13381
|
__name(take, "take");
|
|
@@ -13467,10 +13421,7 @@ var createSet = !(Set$3 && 1 / setToArray$2(new Set$3([, -0]))[1] == INFINITY$4)
|
|
|
13467
13421
|
var LARGE_ARRAY_SIZE$1 = 200;
|
|
13468
13422
|
function baseUniq(array2, iteratee, comparator) {
|
|
13469
13423
|
var index2 = -1, includes = arrayIncludes, length = array2.length, isCommon = true, result = [], seen = result;
|
|
13470
|
-
if (
|
|
13471
|
-
isCommon = false;
|
|
13472
|
-
includes = arrayIncludesWith;
|
|
13473
|
-
} else if (length >= LARGE_ARRAY_SIZE$1) {
|
|
13424
|
+
if (length >= LARGE_ARRAY_SIZE$1) {
|
|
13474
13425
|
var set5 = iteratee ? null : createSet(array2);
|
|
13475
13426
|
if (set5) {
|
|
13476
13427
|
return setToArray$2(set5);
|
|
@@ -13484,7 +13435,7 @@ function baseUniq(array2, iteratee, comparator) {
|
|
|
13484
13435
|
outer:
|
|
13485
13436
|
while (++index2 < length) {
|
|
13486
13437
|
var value = array2[index2], computed3 = iteratee ? iteratee(value) : value;
|
|
13487
|
-
value =
|
|
13438
|
+
value = value !== 0 ? value : 0;
|
|
13488
13439
|
if (isCommon && computed3 === computed3) {
|
|
13489
13440
|
var seenIndex = seen.length;
|
|
13490
13441
|
while (seenIndex--) {
|
|
@@ -18564,8 +18515,6 @@ var reactList = {};
|
|
|
18564
18515
|
function _createClass2(Constructor, protoProps, staticProps) {
|
|
18565
18516
|
if (protoProps)
|
|
18566
18517
|
_defineProperties2(Constructor.prototype, protoProps);
|
|
18567
|
-
if (staticProps)
|
|
18568
|
-
_defineProperties2(Constructor, staticProps);
|
|
18569
18518
|
return Constructor;
|
|
18570
18519
|
}
|
|
18571
18520
|
__name(_createClass2, "_createClass");
|
|
@@ -23228,7 +23177,7 @@ function looksLikeAVFileValue(value) {
|
|
|
23228
23177
|
__name(looksLikeAVFileValue, "looksLikeAVFileValue");
|
|
23229
23178
|
const emptyOptions = {};
|
|
23230
23179
|
function toString$1(value, options) {
|
|
23231
|
-
const settings =
|
|
23180
|
+
const settings = emptyOptions;
|
|
23232
23181
|
const includeImageAlt = typeof settings.includeImageAlt === "boolean" ? settings.includeImageAlt : true;
|
|
23233
23182
|
const includeHtml = typeof settings.includeHtml === "boolean" ? settings.includeHtml : true;
|
|
23234
23183
|
return one$1(value, includeImageAlt, includeHtml);
|
|
@@ -29424,7 +29373,6 @@ const remarkRehype = (
|
|
|
29424
29373
|
return destination && "run" in destination ? bridge(destination, options) : mutate(destination || options);
|
|
29425
29374
|
}, "remarkRehype")
|
|
29426
29375
|
);
|
|
29427
|
-
const remarkRehype$1 = remarkRehype;
|
|
29428
29376
|
function bridge(destination, options) {
|
|
29429
29377
|
return (node2, file, next) => {
|
|
29430
29378
|
destination.run(toHast(node2, options), file, (error) => {
|
|
@@ -30801,7 +30749,7 @@ function stringify$3(values2) {
|
|
|
30801
30749
|
}
|
|
30802
30750
|
__name(stringify$3, "stringify$3");
|
|
30803
30751
|
function stringify$2(values2, options) {
|
|
30804
|
-
const settings =
|
|
30752
|
+
const settings = {};
|
|
30805
30753
|
const input = values2[values2.length - 1] === "" ? [...values2, ""] : values2;
|
|
30806
30754
|
return input.join(
|
|
30807
30755
|
(settings.padRight ? " " : "") + "," + (settings.padLeft === false ? "" : " ")
|
|
@@ -31222,7 +31170,7 @@ function ReactMarkdown(options) {
|
|
|
31222
31170
|
delete deprecated[key];
|
|
31223
31171
|
}
|
|
31224
31172
|
}
|
|
31225
|
-
const processor = unified().use(remarkParse).use(options.remarkPlugins || []).use(remarkRehype
|
|
31173
|
+
const processor = unified().use(remarkParse).use(options.remarkPlugins || []).use(remarkRehype, __spreadProps(__spreadValues({}, options.remarkRehypeOptions), {
|
|
31226
31174
|
allowDangerousHtml: true
|
|
31227
31175
|
})).use(options.rehypePlugins || []).use(rehypeFilter, options);
|
|
31228
31176
|
const file = new VFile();
|
|
@@ -36161,22 +36109,6 @@ const _TgSelect = class _TgSelect extends React__default.Component {
|
|
|
36161
36109
|
})
|
|
36162
36110
|
}), rest)
|
|
36163
36111
|
);
|
|
36164
|
-
if (backgroundColor) {
|
|
36165
|
-
return /* @__PURE__ */ React__default.createElement(
|
|
36166
|
-
"div",
|
|
36167
|
-
{
|
|
36168
|
-
style: {
|
|
36169
|
-
backgroundColor,
|
|
36170
|
-
borderRadius: "4px 4px 4px 4px",
|
|
36171
|
-
overflow: "hidden",
|
|
36172
|
-
width: "fit-content",
|
|
36173
|
-
color: "white",
|
|
36174
|
-
border: "2px solid white"
|
|
36175
|
-
}
|
|
36176
|
-
},
|
|
36177
|
-
toRet
|
|
36178
|
-
);
|
|
36179
|
-
}
|
|
36180
36112
|
return toRet;
|
|
36181
36113
|
}
|
|
36182
36114
|
};
|
|
@@ -36772,7 +36704,7 @@ var concatty = /* @__PURE__ */ __name(function concatty2(a2, b2) {
|
|
|
36772
36704
|
}, "concatty");
|
|
36773
36705
|
var slicy = /* @__PURE__ */ __name(function slicy2(arrLike, offset3) {
|
|
36774
36706
|
var arr = [];
|
|
36775
|
-
for (var i = offset3
|
|
36707
|
+
for (var i = offset3, j = 0; i < arrLike.length; i += 1, j += 1) {
|
|
36776
36708
|
arr[j] = arrLike[i];
|
|
36777
36709
|
}
|
|
36778
36710
|
return arr;
|
|
@@ -49203,7 +49135,7 @@ function createLocation(path2, state, key, currentLocation) {
|
|
|
49203
49135
|
} else {
|
|
49204
49136
|
location2.hash = "";
|
|
49205
49137
|
}
|
|
49206
|
-
if (
|
|
49138
|
+
if (location2.state === void 0)
|
|
49207
49139
|
location2.state = state;
|
|
49208
49140
|
}
|
|
49209
49141
|
try {
|
|
@@ -49215,8 +49147,6 @@ function createLocation(path2, state, key, currentLocation) {
|
|
|
49215
49147
|
throw e2;
|
|
49216
49148
|
}
|
|
49217
49149
|
}
|
|
49218
|
-
if (key)
|
|
49219
|
-
location2.key = key;
|
|
49220
49150
|
if (currentLocation) {
|
|
49221
49151
|
if (!location2.pathname) {
|
|
49222
49152
|
location2.pathname = currentLocation.pathname;
|
|
@@ -49338,7 +49268,6 @@ Link.contextTypes = {
|
|
|
49338
49268
|
}).isRequired
|
|
49339
49269
|
}).isRequired
|
|
49340
49270
|
};
|
|
49341
|
-
const Link$1 = Link;
|
|
49342
49271
|
var pathToRegexp$2 = { exports: {} };
|
|
49343
49272
|
var isarray$1 = Array.isArray || function(arr) {
|
|
49344
49273
|
return Object.prototype.toString.call(arr) == "[object Array]";
|
|
@@ -49785,7 +49714,6 @@ Route.contextTypes = {
|
|
|
49785
49714
|
Route.childContextTypes = {
|
|
49786
49715
|
router: PropTypes$1.object.isRequired
|
|
49787
49716
|
};
|
|
49788
|
-
const Route$1 = Route;
|
|
49789
49717
|
function _classCallCheck$1(instance, Constructor) {
|
|
49790
49718
|
if (!(instance instanceof Constructor)) {
|
|
49791
49719
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -49861,7 +49789,6 @@ Prompt.contextTypes = {
|
|
|
49861
49789
|
}).isRequired
|
|
49862
49790
|
}).isRequired
|
|
49863
49791
|
};
|
|
49864
|
-
const Prompt$1 = Prompt;
|
|
49865
49792
|
var REACT_STATICS = {
|
|
49866
49793
|
childContextTypes: true,
|
|
49867
49794
|
contextTypes: true,
|
|
@@ -49943,7 +49870,7 @@ __name(_objectWithoutProperties$1, "_objectWithoutProperties$1");
|
|
|
49943
49870
|
var withRouter = /* @__PURE__ */ __name(function withRouter2(Component2) {
|
|
49944
49871
|
var C = /* @__PURE__ */ __name(function C2(props) {
|
|
49945
49872
|
var wrappedComponentRef = props.wrappedComponentRef, remainingProps = _objectWithoutProperties$1(props, ["wrappedComponentRef"]);
|
|
49946
|
-
return React__default.createElement(Route
|
|
49873
|
+
return React__default.createElement(Route, {
|
|
49947
49874
|
children: /* @__PURE__ */ __name(function children(routeComponentProps) {
|
|
49948
49875
|
return React__default.createElement(Component2, _extends({}, remainingProps, routeComponentProps, {
|
|
49949
49876
|
ref: wrappedComponentRef
|
|
@@ -49958,7 +49885,6 @@ var withRouter = /* @__PURE__ */ __name(function withRouter2(Component2) {
|
|
|
49958
49885
|
};
|
|
49959
49886
|
return hoistStatics(C, Component2);
|
|
49960
49887
|
}, "withRouter");
|
|
49961
|
-
const withRouter$1 = withRouter;
|
|
49962
49888
|
const isEq = /* @__PURE__ */ __name((o1, o2) => {
|
|
49963
49889
|
const isEq2 = isEqualWith(o1, o2, function(val1, val2) {
|
|
49964
49890
|
if (isFunction$4(val1) && isFunction$4(val2)) {
|
|
@@ -50269,7 +50195,7 @@ function withTableParams(compOrOpts, pTopLevelOpts) {
|
|
|
50269
50195
|
}),
|
|
50270
50196
|
branch((props) => {
|
|
50271
50197
|
return !props.noRouter;
|
|
50272
|
-
}, withRouter
|
|
50198
|
+
}, withRouter),
|
|
50273
50199
|
connect(mapStateToProps, mapDispatchToProps, mergeProps),
|
|
50274
50200
|
pure,
|
|
50275
50201
|
addFormTracking
|
|
@@ -50333,7 +50259,11 @@ const dataTableEnhancer = compose(
|
|
|
50333
50259
|
withTableParams({
|
|
50334
50260
|
isLocalCall: true
|
|
50335
50261
|
}),
|
|
50336
|
-
|
|
50262
|
+
branch(
|
|
50263
|
+
(props) => props.showEmptyColumnsByDefault,
|
|
50264
|
+
withState("showForcedHiddenColumns", "setShowForcedHidden", true),
|
|
50265
|
+
withState("showForcedHiddenColumns", "setShowForcedHidden", false)
|
|
50266
|
+
),
|
|
50337
50267
|
withProps((ownProps) => {
|
|
50338
50268
|
let propsToUse = ownProps;
|
|
50339
50269
|
if (!ownProps.isTableParamsConnected) {
|
|
@@ -51187,7 +51117,7 @@ const _DataTable = class _DataTable extends React__default.Component {
|
|
|
51187
51117
|
const { schema } = this.props;
|
|
51188
51118
|
const editableFields = schema.fields.filter((f2) => !f2.isNotEditable);
|
|
51189
51119
|
const validationErrors = {};
|
|
51190
|
-
const newEnts =
|
|
51120
|
+
const newEnts = fn3(entities, (entities2) => {
|
|
51191
51121
|
entities2.forEach((e2, index2) => {
|
|
51192
51122
|
editableFields.forEach((columnSchema) => {
|
|
51193
51123
|
if (useDefaultValues) {
|
|
@@ -54755,7 +54685,7 @@ function MatchHeaders({
|
|
|
54755
54685
|
}),
|
|
54756
54686
|
onChange: (val) => {
|
|
54757
54687
|
setFilesWIssues(
|
|
54758
|
-
|
|
54688
|
+
fn3(filesWIssues, (files) => {
|
|
54759
54689
|
files.forEach((f2, i2) => {
|
|
54760
54690
|
const isCurrentFile = fileIndex === i2;
|
|
54761
54691
|
if (isCurrentFile || doAllFilesHaveSameHeaders) {
|
|
@@ -56715,7 +56645,7 @@ const UploadCsvWizardDialogInner = compose(
|
|
|
56715
56645
|
}, hasSubmitted && {
|
|
56716
56646
|
onBackClick: onBackClick || (() => {
|
|
56717
56647
|
setSteps(
|
|
56718
|
-
|
|
56648
|
+
fn3(steps, (draft) => {
|
|
56719
56649
|
draft[0].active = true;
|
|
56720
56650
|
draft[0].completed = false;
|
|
56721
56651
|
draft[1].active = false;
|
|
@@ -56728,7 +56658,7 @@ const UploadCsvWizardDialogInner = compose(
|
|
|
56728
56658
|
return __async(this, null, function* () {
|
|
56729
56659
|
if (!hasSubmitted) {
|
|
56730
56660
|
setSteps(
|
|
56731
|
-
|
|
56661
|
+
fn3(steps, (draft) => {
|
|
56732
56662
|
draft[0].active = false;
|
|
56733
56663
|
draft[0].completed = true;
|
|
56734
56664
|
draft[1].active = true;
|
|
@@ -59580,8 +59510,8 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
59580
59510
|
var q2 = false;
|
|
59581
59511
|
function J(e3, t3, r3, n3) {
|
|
59582
59512
|
P2(e3, (s2 << 1) + (n3 ? 1 : 0), 3), function(e4, t4, r4, n4) {
|
|
59583
|
-
M2(e4),
|
|
59584
|
-
}(e3, t3, r3
|
|
59513
|
+
M2(e4), U2(e4, r4), U2(e4, ~r4), i.arraySet(e4.pending_buf, e4.window, t4, r4, e4.pending), e4.pending += r4;
|
|
59514
|
+
}(e3, t3, r3);
|
|
59585
59515
|
}
|
|
59586
59516
|
__name(J, "J");
|
|
59587
59517
|
r2._tr_init = function(e3) {
|
|
@@ -65483,7 +65413,7 @@ function _createForOfIteratorHelperLoose$4(o2, allowArrayLike) {
|
|
|
65483
65413
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
65484
65414
|
if (it)
|
|
65485
65415
|
return (it = it.call(o2)).next.bind(it);
|
|
65486
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$6(o2)) || allowArrayLike
|
|
65416
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$6(o2)) || allowArrayLike) {
|
|
65487
65417
|
if (it)
|
|
65488
65418
|
o2 = it;
|
|
65489
65419
|
var i = 0;
|
|
@@ -65836,7 +65766,7 @@ function _createForOfIteratorHelperLoose$3(o2, allowArrayLike) {
|
|
|
65836
65766
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
65837
65767
|
if (it)
|
|
65838
65768
|
return (it = it.call(o2)).next.bind(it);
|
|
65839
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$4(o2)) || allowArrayLike
|
|
65769
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$4(o2)) || allowArrayLike) {
|
|
65840
65770
|
if (it)
|
|
65841
65771
|
o2 = it;
|
|
65842
65772
|
var i = 0;
|
|
@@ -66132,7 +66062,7 @@ function _createForOfIteratorHelperLoose$2(o2, allowArrayLike) {
|
|
|
66132
66062
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
66133
66063
|
if (it)
|
|
66134
66064
|
return (it = it.call(o2)).next.bind(it);
|
|
66135
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$3(o2)) || allowArrayLike
|
|
66065
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$3(o2)) || allowArrayLike) {
|
|
66136
66066
|
if (it)
|
|
66137
66067
|
o2 = it;
|
|
66138
66068
|
var i = 0;
|
|
@@ -66218,7 +66148,7 @@ function _createForOfIteratorHelperLoose$1(o2, allowArrayLike) {
|
|
|
66218
66148
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
66219
66149
|
if (it)
|
|
66220
66150
|
return (it = it.call(o2)).next.bind(it);
|
|
66221
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$2(o2)) || allowArrayLike
|
|
66151
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$2(o2)) || allowArrayLike) {
|
|
66222
66152
|
if (it)
|
|
66223
66153
|
o2 = it;
|
|
66224
66154
|
var i = 0;
|
|
@@ -66319,7 +66249,7 @@ function _createForOfIteratorHelperLoose(o2, allowArrayLike) {
|
|
|
66319
66249
|
var it = typeof Symbol !== "undefined" && o2[Symbol.iterator] || o2["@@iterator"];
|
|
66320
66250
|
if (it)
|
|
66321
66251
|
return (it = it.call(o2)).next.bind(it);
|
|
66322
|
-
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$1(o2)) || allowArrayLike
|
|
66252
|
+
if (Array.isArray(o2) || (it = _unsupportedIterableToArray$1(o2)) || allowArrayLike) {
|
|
66323
66253
|
if (it)
|
|
66324
66254
|
o2 = it;
|
|
66325
66255
|
var i = 0;
|
|
@@ -66956,7 +66886,7 @@ function UploaderInner({
|
|
|
66956
66886
|
) : /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, "Accepts ", simpleAccept)
|
|
66957
66887
|
),
|
|
66958
66888
|
/* @__PURE__ */ React__default.createElement(
|
|
66959
|
-
Dropzone
|
|
66889
|
+
Dropzone,
|
|
66960
66890
|
__spreadValues(__spreadValues({
|
|
66961
66891
|
disabled: dropzoneDisabled,
|
|
66962
66892
|
onClick: (evt) => evt.preventDefault(),
|
|
@@ -67572,7 +67502,7 @@ function PromptUnsavedChanges({
|
|
|
67572
67502
|
if (window.Cypress) {
|
|
67573
67503
|
return null;
|
|
67574
67504
|
}
|
|
67575
|
-
return /* @__PURE__ */ React__default.createElement(Prompt
|
|
67505
|
+
return /* @__PURE__ */ React__default.createElement(Prompt, { when, message });
|
|
67576
67506
|
}
|
|
67577
67507
|
__name(PromptUnsavedChanges, "PromptUnsavedChanges");
|
|
67578
67508
|
function BlueprintError({ error }) {
|
|
@@ -67861,7 +67791,7 @@ function _getRequireWildcardCache$1(nodeInterop) {
|
|
|
67861
67791
|
}
|
|
67862
67792
|
__name(_getRequireWildcardCache$1, "_getRequireWildcardCache$1");
|
|
67863
67793
|
function _interopRequireWildcard$2(obj, nodeInterop) {
|
|
67864
|
-
if (
|
|
67794
|
+
if (obj && obj.__esModule) {
|
|
67865
67795
|
return obj;
|
|
67866
67796
|
}
|
|
67867
67797
|
if (obj === null || _typeof$1(obj) !== "object" && typeof obj !== "function") {
|
|
@@ -68286,7 +68216,7 @@ function _getRequireWildcardCache(nodeInterop) {
|
|
|
68286
68216
|
}
|
|
68287
68217
|
__name(_getRequireWildcardCache, "_getRequireWildcardCache");
|
|
68288
68218
|
function _interopRequireWildcard$1(obj, nodeInterop) {
|
|
68289
|
-
if (
|
|
68219
|
+
if (obj && obj.__esModule) {
|
|
68290
68220
|
return obj;
|
|
68291
68221
|
}
|
|
68292
68222
|
if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") {
|
|
@@ -68400,8 +68330,6 @@ __name(_defineProperties, "_defineProperties");
|
|
|
68400
68330
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
68401
68331
|
if (protoProps)
|
|
68402
68332
|
_defineProperties(Constructor.prototype, protoProps);
|
|
68403
|
-
if (staticProps)
|
|
68404
|
-
_defineProperties(Constructor, staticProps);
|
|
68405
68333
|
Object.defineProperty(Constructor, "prototype", { writable: false });
|
|
68406
68334
|
return Constructor;
|
|
68407
68335
|
}
|
|
@@ -68883,7 +68811,7 @@ _defineProperty(DraggableCore$1, "defaultProps", {
|
|
|
68883
68811
|
}
|
|
68884
68812
|
__name(_getRequireWildcardCache2, "_getRequireWildcardCache");
|
|
68885
68813
|
function _interopRequireWildcard2(obj, nodeInterop) {
|
|
68886
|
-
if (
|
|
68814
|
+
if (obj && obj.__esModule) {
|
|
68887
68815
|
return obj;
|
|
68888
68816
|
}
|
|
68889
68817
|
if (obj === null || _typeof4(obj) !== "object" && typeof obj !== "function") {
|
|
@@ -70997,7 +70925,7 @@ function MenuItemLink({ text: text2, onClick, icon, navTo, active: active3 }) {
|
|
|
70997
70925
|
e2.target.closest(`.${Classes.POPOVER_DISMISS}`).click();
|
|
70998
70926
|
}, "handleLinkClick");
|
|
70999
70927
|
return /* @__PURE__ */ React__default.createElement("li", { className: Classes.POPOVER_DISMISS, onClick }, /* @__PURE__ */ React__default.createElement(
|
|
71000
|
-
Link
|
|
70928
|
+
Link,
|
|
71001
70929
|
{
|
|
71002
70930
|
onClick: handleLinkClick,
|
|
71003
70931
|
to: navTo,
|
|
@@ -71021,7 +70949,7 @@ const EnhancedMenuItem = compose(
|
|
|
71021
70949
|
willUnmount({ className });
|
|
71022
70950
|
}
|
|
71023
70951
|
}),
|
|
71024
|
-
branch(({ navTo }) => navTo, withRouter
|
|
70952
|
+
branch(({ navTo }) => navTo, withRouter)
|
|
71025
70953
|
)(function(_q) {
|
|
71026
70954
|
var _r = _q, {
|
|
71027
70955
|
navTo,
|