vue-devui 1.6.19 → 1.6.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/action-timeline/index.es.js +12 -8
  2. package/action-timeline/index.umd.js +1 -1
  3. package/breadcrumb/index.es.js +6 -2
  4. package/breadcrumb/index.umd.js +2 -2
  5. package/category-search/index.es.js +1036 -2037
  6. package/category-search/index.umd.js +34 -34
  7. package/code-review/index.es.js +185 -9
  8. package/code-review/index.umd.js +27 -27
  9. package/code-review/style.css +1 -1
  10. package/data-grid/index.es.js +6 -2
  11. package/data-grid/index.umd.js +11 -11
  12. package/date-picker-pro/index.es.js +1 -1
  13. package/date-picker-pro/index.umd.js +1 -1
  14. package/dropdown/index.es.js +6 -2
  15. package/dropdown/index.umd.js +2 -2
  16. package/editable-select/index.es.js +1 -1
  17. package/editable-select/index.umd.js +1 -1
  18. package/editor-md/index.es.js +21 -8
  19. package/editor-md/index.umd.js +36 -36
  20. package/global.d.ts +0 -2
  21. package/input/index.es.js +1 -1
  22. package/input/index.umd.js +1 -1
  23. package/input-number/index.es.js +13 -9
  24. package/input-number/index.umd.js +10 -10
  25. package/package.json +1 -1
  26. package/pagination/index.es.js +7 -3
  27. package/pagination/index.umd.js +12 -12
  28. package/search/index.es.js +2 -8
  29. package/search/index.umd.js +1 -7
  30. package/select/index.es.js +1 -1
  31. package/select/index.umd.js +1 -1
  32. package/style.css +1 -1
  33. package/table/index.es.js +6 -2
  34. package/table/index.umd.js +11 -11
  35. package/time-picker/index.es.js +1 -1
  36. package/time-picker/index.umd.js +1 -1
  37. package/time-select/index.es.js +1 -1
  38. package/time-select/index.umd.js +1 -1
  39. package/tree/index.es.js +2 -2
  40. package/tree/index.umd.js +1 -1
  41. package/types/code-review/src/code-review-types.d.ts +4 -0
  42. package/types/code-review/src/composables/use-code-review-comment.d.ts +3 -0
  43. package/types/editor-md/src/composables/use-editor-md-toolbar.d.ts +1 -0
  44. package/types/editor-md/src/composables/use-editor-md.d.ts +2 -0
  45. package/types/editor-md/src/editor-md-types.d.ts +1 -0
  46. package/types/input-number/src/input-number-types.d.ts +10 -6
  47. package/vue-devui.es.js +455 -1273
  48. package/vue-devui.umd.js +98 -104
package/vue-devui.es.js CHANGED
@@ -1016,14 +1016,16 @@ var ActionTimeline = defineComponent({
1016
1016
  const renderVerticalBody = (actionData, parentIndex) => {
1017
1017
  var _a;
1018
1018
  return (_a = actionData.actions) == null ? void 0 : _a.map((item, index2) => {
1019
- var _a2, _b, _c, _d;
1019
+ var _a2, _b, _c, _d, _e, _f;
1020
1020
  return createVNode("div", {
1021
1021
  "class": timelineItemClass(index2, parentIndex, actionData, item)
1022
1022
  }, [createVNode("div", {
1023
1023
  "class": "vertical-list-item-top"
1024
1024
  }, [createVNode("div", {
1025
1025
  "class": "vertical-list-item-top-left"
1026
- }, [createVNode("div", {
1026
+ }, [((_b = (_a2 = ctx2.slots).iconContent) == null ? void 0 : _b.call(_a2, {
1027
+ option: item
1028
+ })) || createVNode("div", {
1027
1029
  "class": itemIconClass(item, true)
1028
1030
  }, [!item.icon && createVNode("div", {
1029
1031
  "class": "list-empty-icon-dot"
@@ -1031,13 +1033,13 @@ var ActionTimeline = defineComponent({
1031
1033
  "class": itemIconClass(item)
1032
1034
  }, null)]), createVNode("div", {
1033
1035
  "class": "vertical-list-item-top-left-title"
1034
- }, [(_b = (_a2 = ctx2.slots).title) == null ? void 0 : _b.call(_a2, {
1036
+ }, [(_d = (_c = ctx2.slots).title) == null ? void 0 : _d.call(_c, {
1035
1037
  option: item
1036
1038
  })])]), createVNode("div", {
1037
1039
  "class": "dp-action-timeline-item-data"
1038
1040
  }, [item.createdAt])]), createVNode("div", {
1039
1041
  "class": "vertical-list-item-bottom"
1040
- }, [(_d = (_c = ctx2.slots).content) == null ? void 0 : _d.call(_c, {
1042
+ }, [(_f = (_e = ctx2.slots).content) == null ? void 0 : _f.call(_e, {
1041
1043
  option: item
1042
1044
  })])]);
1043
1045
  });
@@ -1045,10 +1047,12 @@ var ActionTimeline = defineComponent({
1045
1047
  const renderHorizontalBody = (actionData, parentIndex) => {
1046
1048
  var _a;
1047
1049
  return (_a = actionData.actions) == null ? void 0 : _a.map((item, index2) => {
1048
- var _a2, _b, _c;
1050
+ var _a2, _b, _c, _d, _e;
1049
1051
  return createVNode("div", {
1050
1052
  "class": timelineItemClass(index2, parentIndex, actionData, item)
1051
- }, [createVNode("div", {
1053
+ }, [((_b = (_a2 = ctx2.slots).iconContent) == null ? void 0 : _b.call(_a2, {
1054
+ option: item
1055
+ })) || createVNode("div", {
1052
1056
  "class": itemIconClass(item, true)
1053
1057
  }, [!item.icon && createVNode("div", {
1054
1058
  "class": "list-empty-icon-dot"
@@ -1056,11 +1060,11 @@ var ActionTimeline = defineComponent({
1056
1060
  "class": itemIconClass(item)
1057
1061
  }, null)]), createVNode("div", {
1058
1062
  "class": "dp-action-timeline-list-data"
1059
- }, [(_b = (_a2 = ctx2.slots).content) == null ? void 0 : _b.call(_a2, {
1063
+ }, [(_d = (_c = ctx2.slots).content) == null ? void 0 : _d.call(_c, {
1060
1064
  option: item
1061
1065
  })]), createVNode("div", {
1062
1066
  "class": "dp-action-timeline-item-date"
1063
- }, [item.createdAt]), !(actionData.actions && (data == null ? void 0 : data.value) && index2 === actionData.actions.length - 1 && parentIndex === ((_c = data == null ? void 0 : data.value) == null ? void 0 : _c.length) - 1) && createVNode("div", {
1067
+ }, [item.createdAt]), !(actionData.actions && (data == null ? void 0 : data.value) && index2 === actionData.actions.length - 1 && parentIndex === ((_e = data == null ? void 0 : data.value) == null ? void 0 : _e.length) - 1) && createVNode("div", {
1064
1068
  "class": "border-bottom"
1065
1069
  }, null)]);
1066
1070
  });
@@ -1177,11 +1181,15 @@ function debounce(func, wait, immediate) {
1177
1181
  return result2;
1178
1182
  };
1179
1183
  }
1184
+ function judgeFireIsElement(element) {
1185
+ const str = Object.prototype.toString.call(element);
1186
+ return str.includes("object") && str.includes("HTML") && str.includes("Element");
1187
+ }
1180
1188
  function getElement(element) {
1181
- if (element instanceof Element) {
1189
+ if (element instanceof Element || judgeFireIsElement(element)) {
1182
1190
  return element;
1183
1191
  }
1184
- if (element && typeof element === "object" && element.$el instanceof Element) {
1192
+ if (element && typeof element === "object" && (element.$el instanceof Element || judgeFireIsElement(element.$el))) {
1185
1193
  return element.$el;
1186
1194
  }
1187
1195
  return null;
@@ -1257,7 +1265,7 @@ function middleNum(num, min = 0, max = 100) {
1257
1265
  const isNumber = (value) => typeof value === "number";
1258
1266
  const isBoolean = (value) => typeof value === "boolean";
1259
1267
  const isString$2 = (value) => typeof value === "string";
1260
- const isFunction$5 = (value) => Object.prototype.toString.call(value) === "[object Function]";
1268
+ const isFunction$4 = (value) => Object.prototype.toString.call(value) === "[object Function]";
1261
1269
  const isUndefined = (value) => value === void 0;
1262
1270
  const isHTMLElement = (value) => inBrowser && "HTMLElement" in window && value instanceof HTMLElement;
1263
1271
  function omit(obj, fields) {
@@ -2207,7 +2215,7 @@ var lodash = { exports: {} };
2207
2215
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
2208
2216
  * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
2209
2217
  */
2210
- (function(module2, exports2) {
2218
+ (function(module, exports) {
2211
2219
  (function() {
2212
2220
  var undefined$1;
2213
2221
  var VERSION = "4.17.21";
@@ -2220,7 +2228,7 @@ var lodash = { exports: {} };
2220
2228
  var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2;
2221
2229
  var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_BOUND_FLAG = 4, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64, WRAP_ARY_FLAG = 128, WRAP_REARG_FLAG = 256, WRAP_FLIP_FLAG = 512;
2222
2230
  var DEFAULT_TRUNC_LENGTH = 30, DEFAULT_TRUNC_OMISSION = "...";
2223
- var HOT_COUNT2 = 800, HOT_SPAN2 = 16;
2231
+ var HOT_COUNT = 800, HOT_SPAN = 16;
2224
2232
  var LAZY_FILTER_FLAG = 1, LAZY_MAP_FLAG = 2, LAZY_WHILE_FLAG = 3;
2225
2233
  var INFINITY = 1 / 0, MAX_SAFE_INTEGER2 = 9007199254740991, MAX_INTEGER = 17976931348623157e292, NAN = 0 / 0;
2226
2234
  var MAX_ARRAY_LENGTH = 4294967295, MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
@@ -2533,22 +2541,22 @@ var lodash = { exports: {} };
2533
2541
  var freeGlobal2 = typeof commonjsGlobal == "object" && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
2534
2542
  var freeSelf2 = typeof self == "object" && self && self.Object === Object && self;
2535
2543
  var root2 = freeGlobal2 || freeSelf2 || Function("return this")();
2536
- var freeExports2 = exports2 && !exports2.nodeType && exports2;
2537
- var freeModule2 = freeExports2 && true && module2 && !module2.nodeType && module2;
2538
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
2539
- var freeProcess2 = moduleExports2 && freeGlobal2.process;
2544
+ var freeExports = exports && !exports.nodeType && exports;
2545
+ var freeModule = freeExports && true && module && !module.nodeType && module;
2546
+ var moduleExports = freeModule && freeModule.exports === freeExports;
2547
+ var freeProcess = moduleExports && freeGlobal2.process;
2540
2548
  var nodeUtil2 = function() {
2541
2549
  try {
2542
- var types2 = freeModule2 && freeModule2.require && freeModule2.require("util").types;
2550
+ var types2 = freeModule && freeModule.require && freeModule.require("util").types;
2543
2551
  if (types2) {
2544
2552
  return types2;
2545
2553
  }
2546
- return freeProcess2 && freeProcess2.binding && freeProcess2.binding("util");
2554
+ return freeProcess && freeProcess.binding && freeProcess.binding("util");
2547
2555
  } catch (e) {
2548
2556
  }
2549
2557
  }();
2550
2558
  var nodeIsArrayBuffer = nodeUtil2 && nodeUtil2.isArrayBuffer, nodeIsDate = nodeUtil2 && nodeUtil2.isDate, nodeIsMap2 = nodeUtil2 && nodeUtil2.isMap, nodeIsRegExp = nodeUtil2 && nodeUtil2.isRegExp, nodeIsSet2 = nodeUtil2 && nodeUtil2.isSet, nodeIsTypedArray2 = nodeUtil2 && nodeUtil2.isTypedArray;
2551
- function apply2(func, thisArg, args) {
2559
+ function apply(func, thisArg, args) {
2552
2560
  switch (args.length) {
2553
2561
  case 0:
2554
2562
  return func.call(thisArg);
@@ -2905,12 +2913,12 @@ var lodash = { exports: {} };
2905
2913
  return uid ? "Symbol(src)_1." + uid : "";
2906
2914
  }();
2907
2915
  var nativeObjectToString2 = objectProto2.toString;
2908
- var objectCtorString2 = funcToString2.call(Object2);
2916
+ var objectCtorString = funcToString2.call(Object2);
2909
2917
  var oldDash = root2._;
2910
2918
  var reIsNative2 = RegExp2(
2911
2919
  "^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar2, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
2912
2920
  );
2913
- var Buffer3 = moduleExports2 ? context2.Buffer : undefined$1, Symbol2 = context2.Symbol, Uint8Array2 = context2.Uint8Array, allocUnsafe2 = Buffer3 ? Buffer3.allocUnsafe : undefined$1, getPrototype2 = overArg2(Object2.getPrototypeOf, Object2), objectCreate2 = Object2.create, propertyIsEnumerable2 = objectProto2.propertyIsEnumerable, splice2 = arrayProto2.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined$1, symIterator = Symbol2 ? Symbol2.iterator : undefined$1, symToStringTag2 = Symbol2 ? Symbol2.toStringTag : undefined$1;
2921
+ var Buffer2 = moduleExports ? context2.Buffer : undefined$1, Symbol2 = context2.Symbol, Uint8Array2 = context2.Uint8Array, allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : undefined$1, getPrototype2 = overArg2(Object2.getPrototypeOf, Object2), objectCreate2 = Object2.create, propertyIsEnumerable2 = objectProto2.propertyIsEnumerable, splice2 = arrayProto2.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined$1, symIterator = Symbol2 ? Symbol2.iterator : undefined$1, symToStringTag2 = Symbol2 ? Symbol2.toStringTag : undefined$1;
2914
2922
  var defineProperty2 = function() {
2915
2923
  try {
2916
2924
  var func = getNative2(Object2, "defineProperty");
@@ -2920,7 +2928,7 @@ var lodash = { exports: {} };
2920
2928
  }
2921
2929
  }();
2922
2930
  var ctxClearTimeout = context2.clearTimeout !== root2.clearTimeout && context2.clearTimeout, ctxNow = Date2 && Date2.now !== root2.Date.now && Date2.now, ctxSetTimeout = context2.setTimeout !== root2.setTimeout && context2.setTimeout;
2923
- var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols2 = Object2.getOwnPropertySymbols, nativeIsBuffer2 = Buffer3 ? Buffer3.isBuffer : undefined$1, nativeIsFinite = context2.isFinite, nativeJoin = arrayProto2.join, nativeKeys2 = overArg2(Object2.keys, Object2), nativeMax2 = Math2.max, nativeMin = Math2.min, nativeNow2 = Date2.now, nativeParseInt = context2.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto2.reverse;
2931
+ var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols2 = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : undefined$1, nativeIsFinite = context2.isFinite, nativeJoin = arrayProto2.join, nativeKeys2 = overArg2(Object2.keys, Object2), nativeMax = Math2.max, nativeMin = Math2.min, nativeNow = Date2.now, nativeParseInt = context2.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto2.reverse;
2924
2932
  var DataView2 = getNative2(context2, "DataView"), Map2 = getNative2(context2, "Map"), Promise2 = getNative2(context2, "Promise"), Set2 = getNative2(context2, "Set"), WeakMap2 = getNative2(context2, "WeakMap"), nativeCreate2 = getNative2(Object2, "create");
2925
2933
  var metaMap = WeakMap2 && new WeakMap2();
2926
2934
  var realNames = {};
@@ -3233,7 +3241,7 @@ var lodash = { exports: {} };
3233
3241
  function arrayShuffle(array4) {
3234
3242
  return shuffleSelf(copyArray2(array4));
3235
3243
  }
3236
- function assignMergeValue2(object4, key, value) {
3244
+ function assignMergeValue(object4, key, value) {
3237
3245
  if (value !== undefined$1 && !eq2(object4[key], value) || value === undefined$1 && !(key in object4)) {
3238
3246
  baseAssignValue2(object4, key, value);
3239
3247
  }
@@ -3480,10 +3488,10 @@ var lodash = { exports: {} };
3480
3488
  }
3481
3489
  return result3;
3482
3490
  }
3483
- var baseFor2 = createBaseFor2();
3484
- var baseForRight = createBaseFor2(true);
3491
+ var baseFor = createBaseFor();
3492
+ var baseForRight = createBaseFor(true);
3485
3493
  function baseForOwn(object4, iteratee2) {
3486
- return object4 && baseFor2(object4, iteratee2, keys2);
3494
+ return object4 && baseFor(object4, iteratee2, keys2);
3487
3495
  }
3488
3496
  function baseForOwnRight(object4, iteratee2) {
3489
3497
  return object4 && baseForRight(object4, iteratee2, keys2);
@@ -3521,7 +3529,7 @@ var lodash = { exports: {} };
3521
3529
  return object4 != null && key in Object2(object4);
3522
3530
  }
3523
3531
  function baseInRange(number4, start, end) {
3524
- return number4 >= nativeMin(start, end) && number4 < nativeMax2(start, end);
3532
+ return number4 >= nativeMin(start, end) && number4 < nativeMax(start, end);
3525
3533
  }
3526
3534
  function baseIntersection(arrays, iteratee2, comparator) {
3527
3535
  var includes2 = comparator ? arrayIncludesWith : arrayIncludes, length = arrays[0].length, othLength = arrays.length, othIndex = othLength, caches = Array2(othLength), maxLength = Infinity, result3 = [];
@@ -3565,7 +3573,7 @@ var lodash = { exports: {} };
3565
3573
  path = castPath(path, object4);
3566
3574
  object4 = parent(object4, path);
3567
3575
  var func = object4 == null ? object4 : object4[toKey(last2(path))];
3568
- return func == null ? undefined$1 : apply2(func, object4, args);
3576
+ return func == null ? undefined$1 : apply(func, object4, args);
3569
3577
  }
3570
3578
  function baseIsArguments2(value) {
3571
3579
  return isObjectLike2(value) && baseGetTag2(value) == argsTag2;
@@ -3729,27 +3737,27 @@ var lodash = { exports: {} };
3729
3737
  return objValue === undefined$1 && objValue === srcValue ? hasIn(object4, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
3730
3738
  };
3731
3739
  }
3732
- function baseMerge2(object4, source, srcIndex, customizer, stack) {
3740
+ function baseMerge(object4, source, srcIndex, customizer, stack) {
3733
3741
  if (object4 === source) {
3734
3742
  return;
3735
3743
  }
3736
- baseFor2(source, function(srcValue, key) {
3744
+ baseFor(source, function(srcValue, key) {
3737
3745
  stack || (stack = new Stack2());
3738
3746
  if (isObject2(srcValue)) {
3739
- baseMergeDeep2(object4, source, key, srcIndex, baseMerge2, customizer, stack);
3747
+ baseMergeDeep(object4, source, key, srcIndex, baseMerge, customizer, stack);
3740
3748
  } else {
3741
- var newValue = customizer ? customizer(safeGet2(object4, key), srcValue, key + "", object4, source, stack) : undefined$1;
3749
+ var newValue = customizer ? customizer(safeGet(object4, key), srcValue, key + "", object4, source, stack) : undefined$1;
3742
3750
  if (newValue === undefined$1) {
3743
3751
  newValue = srcValue;
3744
3752
  }
3745
- assignMergeValue2(object4, key, newValue);
3753
+ assignMergeValue(object4, key, newValue);
3746
3754
  }
3747
3755
  }, keysIn2);
3748
3756
  }
3749
- function baseMergeDeep2(object4, source, key, srcIndex, mergeFunc, customizer, stack) {
3750
- var objValue = safeGet2(object4, key), srcValue = safeGet2(source, key), stacked = stack.get(srcValue);
3757
+ function baseMergeDeep(object4, source, key, srcIndex, mergeFunc, customizer, stack) {
3758
+ var objValue = safeGet(object4, key), srcValue = safeGet(source, key), stacked = stack.get(srcValue);
3751
3759
  if (stacked) {
3752
- assignMergeValue2(object4, key, stacked);
3760
+ assignMergeValue(object4, key, stacked);
3753
3761
  return;
3754
3762
  }
3755
3763
  var newValue = customizer ? customizer(objValue, srcValue, key + "", object4, source, stack) : undefined$1;
@@ -3760,7 +3768,7 @@ var lodash = { exports: {} };
3760
3768
  if (isArr || isBuff || isTyped) {
3761
3769
  if (isArray2(objValue)) {
3762
3770
  newValue = objValue;
3763
- } else if (isArrayLikeObject2(objValue)) {
3771
+ } else if (isArrayLikeObject(objValue)) {
3764
3772
  newValue = copyArray2(objValue);
3765
3773
  } else if (isBuff) {
3766
3774
  isCommon = false;
@@ -3771,10 +3779,10 @@ var lodash = { exports: {} };
3771
3779
  } else {
3772
3780
  newValue = [];
3773
3781
  }
3774
- } else if (isPlainObject2(srcValue) || isArguments2(srcValue)) {
3782
+ } else if (isPlainObject(srcValue) || isArguments2(srcValue)) {
3775
3783
  newValue = objValue;
3776
3784
  if (isArguments2(objValue)) {
3777
- newValue = toPlainObject2(objValue);
3785
+ newValue = toPlainObject(objValue);
3778
3786
  } else if (!isObject2(objValue) || isFunction2(objValue)) {
3779
3787
  newValue = initCloneObject2(srcValue);
3780
3788
  }
@@ -3787,7 +3795,7 @@ var lodash = { exports: {} };
3787
3795
  mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
3788
3796
  stack["delete"](srcValue);
3789
3797
  }
3790
- assignMergeValue2(object4, key, newValue);
3798
+ assignMergeValue(object4, key, newValue);
3791
3799
  }
3792
3800
  function baseNth(array4, n) {
3793
3801
  var length = array4.length;
@@ -3880,7 +3888,7 @@ var lodash = { exports: {} };
3880
3888
  return lower + nativeFloor(nativeRandom() * (upper - lower + 1));
3881
3889
  }
3882
3890
  function baseRange(start, end, step2, fromRight) {
3883
- var index2 = -1, length = nativeMax2(nativeCeil((end - start) / (step2 || 1)), 0), result3 = Array2(length);
3891
+ var index2 = -1, length = nativeMax(nativeCeil((end - start) / (step2 || 1)), 0), result3 = Array2(length);
3884
3892
  while (length--) {
3885
3893
  result3[fromRight ? length : ++index2] = start;
3886
3894
  start += step2;
@@ -3903,8 +3911,8 @@ var lodash = { exports: {} };
3903
3911
  } while (n);
3904
3912
  return result3;
3905
3913
  }
3906
- function baseRest2(func, start) {
3907
- return setToString2(overRest2(func, start, identity2), func + "");
3914
+ function baseRest(func, start) {
3915
+ return setToString(overRest(func, start, identity2), func + "");
3908
3916
  }
3909
3917
  function baseSample(collection) {
3910
3918
  return arraySample(values(collection));
@@ -3940,11 +3948,11 @@ var lodash = { exports: {} };
3940
3948
  metaMap.set(func, data);
3941
3949
  return func;
3942
3950
  };
3943
- var baseSetToString2 = !defineProperty2 ? identity2 : function(func, string3) {
3951
+ var baseSetToString = !defineProperty2 ? identity2 : function(func, string3) {
3944
3952
  return defineProperty2(func, "toString", {
3945
3953
  "configurable": true,
3946
3954
  "enumerable": false,
3947
- "value": constant2(string3),
3955
+ "value": constant(string3),
3948
3956
  "writable": true
3949
3957
  });
3950
3958
  };
@@ -4142,7 +4150,7 @@ var lodash = { exports: {} };
4142
4150
  return result3;
4143
4151
  }
4144
4152
  function castArrayLikeObject(value) {
4145
- return isArrayLikeObject2(value) ? value : [];
4153
+ return isArrayLikeObject(value) ? value : [];
4146
4154
  }
4147
4155
  function castFunction(value) {
4148
4156
  return typeof value == "function" ? value : identity2;
@@ -4153,7 +4161,7 @@ var lodash = { exports: {} };
4153
4161
  }
4154
4162
  return isKey(value, object4) ? [value] : stringToPath(toString(value));
4155
4163
  }
4156
- var castRest = baseRest2;
4164
+ var castRest = baseRest;
4157
4165
  function castSlice(array4, start, end) {
4158
4166
  var length = array4.length;
4159
4167
  end = end === undefined$1 ? length : end;
@@ -4166,7 +4174,7 @@ var lodash = { exports: {} };
4166
4174
  if (isDeep) {
4167
4175
  return buffer.slice();
4168
4176
  }
4169
- var length = buffer.length, result3 = allocUnsafe2 ? allocUnsafe2(length) : new buffer.constructor(length);
4177
+ var length = buffer.length, result3 = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
4170
4178
  buffer.copy(result3);
4171
4179
  return result3;
4172
4180
  }
@@ -4219,7 +4227,7 @@ var lodash = { exports: {} };
4219
4227
  return object4.index - other.index;
4220
4228
  }
4221
4229
  function composeArgs(args, partials, holders, isCurried) {
4222
- var argsIndex = -1, argsLength = args.length, holdersLength = holders.length, leftIndex = -1, leftLength = partials.length, rangeLength = nativeMax2(argsLength - holdersLength, 0), result3 = Array2(leftLength + rangeLength), isUncurried = !isCurried;
4230
+ var argsIndex = -1, argsLength = args.length, holdersLength = holders.length, leftIndex = -1, leftLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result3 = Array2(leftLength + rangeLength), isUncurried = !isCurried;
4223
4231
  while (++leftIndex < leftLength) {
4224
4232
  result3[leftIndex] = partials[leftIndex];
4225
4233
  }
@@ -4234,7 +4242,7 @@ var lodash = { exports: {} };
4234
4242
  return result3;
4235
4243
  }
4236
4244
  function composeArgsRight(args, partials, holders, isCurried) {
4237
- var argsIndex = -1, argsLength = args.length, holdersIndex = -1, holdersLength = holders.length, rightIndex = -1, rightLength = partials.length, rangeLength = nativeMax2(argsLength - holdersLength, 0), result3 = Array2(rangeLength + rightLength), isUncurried = !isCurried;
4245
+ var argsIndex = -1, argsLength = args.length, holdersIndex = -1, holdersLength = holders.length, rightIndex = -1, rightLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result3 = Array2(rangeLength + rightLength), isUncurried = !isCurried;
4238
4246
  while (++argsIndex < rangeLength) {
4239
4247
  result3[argsIndex] = args[argsIndex];
4240
4248
  }
@@ -4287,11 +4295,11 @@ var lodash = { exports: {} };
4287
4295
  return func(collection, setter, getIteratee(iteratee2, 2), accumulator);
4288
4296
  };
4289
4297
  }
4290
- function createAssigner2(assigner) {
4291
- return baseRest2(function(object4, sources) {
4298
+ function createAssigner(assigner) {
4299
+ return baseRest(function(object4, sources) {
4292
4300
  var index2 = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : undefined$1, guard = length > 2 ? sources[2] : undefined$1;
4293
4301
  customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : undefined$1;
4294
- if (guard && isIterateeCall2(sources[0], sources[1], guard)) {
4302
+ if (guard && isIterateeCall(sources[0], sources[1], guard)) {
4295
4303
  customizer = length < 3 ? undefined$1 : customizer;
4296
4304
  length = 1;
4297
4305
  }
@@ -4322,7 +4330,7 @@ var lodash = { exports: {} };
4322
4330
  return collection;
4323
4331
  };
4324
4332
  }
4325
- function createBaseFor2(fromRight) {
4333
+ function createBaseFor(fromRight) {
4326
4334
  return function(object4, iteratee2, keysFunc) {
4327
4335
  var index2 = -1, iterable = Object2(object4), props = keysFunc(object4), length = props.length;
4328
4336
  while (length--) {
@@ -4405,7 +4413,7 @@ var lodash = { exports: {} };
4405
4413
  );
4406
4414
  }
4407
4415
  var fn = this && this !== root2 && this instanceof wrapper ? Ctor : func;
4408
- return apply2(fn, this, args);
4416
+ return apply(fn, this, args);
4409
4417
  }
4410
4418
  return wrapper;
4411
4419
  }
@@ -4543,10 +4551,10 @@ var lodash = { exports: {} };
4543
4551
  function createOver(arrayFunc) {
4544
4552
  return flatRest(function(iteratees) {
4545
4553
  iteratees = arrayMap(iteratees, baseUnary2(getIteratee()));
4546
- return baseRest2(function(args) {
4554
+ return baseRest(function(args) {
4547
4555
  var thisArg = this;
4548
4556
  return arrayFunc(iteratees, function(iteratee2) {
4549
- return apply2(iteratee2, thisArg, args);
4557
+ return apply(iteratee2, thisArg, args);
4550
4558
  });
4551
4559
  });
4552
4560
  });
@@ -4570,13 +4578,13 @@ var lodash = { exports: {} };
4570
4578
  while (argsLength--) {
4571
4579
  args[leftIndex++] = arguments[++argsIndex];
4572
4580
  }
4573
- return apply2(fn, isBind ? thisArg : this, args);
4581
+ return apply(fn, isBind ? thisArg : this, args);
4574
4582
  }
4575
4583
  return wrapper;
4576
4584
  }
4577
4585
  function createRange(fromRight) {
4578
4586
  return function(start, end, step2) {
4579
- if (step2 && typeof step2 != "number" && isIterateeCall2(start, end, step2)) {
4587
+ if (step2 && typeof step2 != "number" && isIterateeCall(start, end, step2)) {
4580
4588
  end = step2 = undefined$1;
4581
4589
  }
4582
4590
  start = toFinite(start);
@@ -4663,7 +4671,7 @@ var lodash = { exports: {} };
4663
4671
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
4664
4672
  partials = holders = undefined$1;
4665
4673
  }
4666
- ary2 = ary2 === undefined$1 ? ary2 : nativeMax2(toInteger(ary2), 0);
4674
+ ary2 = ary2 === undefined$1 ? ary2 : nativeMax(toInteger(ary2), 0);
4667
4675
  arity = arity === undefined$1 ? arity : toInteger(arity);
4668
4676
  length -= holders ? holders.length : 0;
4669
4677
  if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) {
@@ -4691,7 +4699,7 @@ var lodash = { exports: {} };
4691
4699
  thisArg = newData[2];
4692
4700
  partials = newData[3];
4693
4701
  holders = newData[4];
4694
- arity = newData[9] = newData[9] === undefined$1 ? isBindKey ? 0 : func.length : nativeMax2(newData[9] - length, 0);
4702
+ arity = newData[9] = newData[9] === undefined$1 ? isBindKey ? 0 : func.length : nativeMax(newData[9] - length, 0);
4695
4703
  if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {
4696
4704
  bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG);
4697
4705
  }
@@ -4716,13 +4724,13 @@ var lodash = { exports: {} };
4716
4724
  function customDefaultsMerge(objValue, srcValue, key, object4, source, stack) {
4717
4725
  if (isObject2(objValue) && isObject2(srcValue)) {
4718
4726
  stack.set(srcValue, objValue);
4719
- baseMerge2(objValue, srcValue, undefined$1, customDefaultsMerge, stack);
4727
+ baseMerge(objValue, srcValue, undefined$1, customDefaultsMerge, stack);
4720
4728
  stack["delete"](srcValue);
4721
4729
  }
4722
4730
  return objValue;
4723
4731
  }
4724
4732
  function customOmitClone(value) {
4725
- return isPlainObject2(value) ? undefined$1 : value;
4733
+ return isPlainObject(value) ? undefined$1 : value;
4726
4734
  }
4727
4735
  function equalArrays(array4, other, bitmask, customizer, equalFunc, stack) {
4728
4736
  var isPartial = bitmask & COMPARE_PARTIAL_FLAG, arrLength = array4.length, othLength = other.length;
@@ -4857,7 +4865,7 @@ var lodash = { exports: {} };
4857
4865
  return result3;
4858
4866
  }
4859
4867
  function flatRest(func) {
4860
- return setToString2(overRest2(func, undefined$1, flatten2), func + "");
4868
+ return setToString(overRest(func, undefined$1, flatten2), func + "");
4861
4869
  }
4862
4870
  function getAllKeys2(object4) {
4863
4871
  return baseGetAllKeys2(object4, keys2, getSymbols2);
@@ -4973,7 +4981,7 @@ var lodash = { exports: {} };
4973
4981
  end = nativeMin(end, start + size2);
4974
4982
  break;
4975
4983
  case "takeRight":
4976
- start = nativeMax2(start, end - size2);
4984
+ start = nativeMax(start, end - size2);
4977
4985
  break;
4978
4986
  }
4979
4987
  }
@@ -5061,7 +5069,7 @@ var lodash = { exports: {} };
5061
5069
  length = length == null ? MAX_SAFE_INTEGER2 : length;
5062
5070
  return !!length && (type4 == "number" || type4 != "symbol" && reIsUint2.test(value)) && (value > -1 && value % 1 == 0 && value < length);
5063
5071
  }
5064
- function isIterateeCall2(value, index2, object4) {
5072
+ function isIterateeCall(value, index2, object4) {
5065
5073
  if (!isObject2(object4)) {
5066
5074
  return false;
5067
5075
  }
@@ -5173,10 +5181,10 @@ var lodash = { exports: {} };
5173
5181
  function objectToString2(value) {
5174
5182
  return nativeObjectToString2.call(value);
5175
5183
  }
5176
- function overRest2(func, start, transform2) {
5177
- start = nativeMax2(start === undefined$1 ? func.length - 1 : start, 0);
5184
+ function overRest(func, start, transform2) {
5185
+ start = nativeMax(start === undefined$1 ? func.length - 1 : start, 0);
5178
5186
  return function() {
5179
- var args = arguments, index2 = -1, length = nativeMax2(args.length - start, 0), array4 = Array2(length);
5187
+ var args = arguments, index2 = -1, length = nativeMax(args.length - start, 0), array4 = Array2(length);
5180
5188
  while (++index2 < length) {
5181
5189
  array4[index2] = args[start + index2];
5182
5190
  }
@@ -5186,7 +5194,7 @@ var lodash = { exports: {} };
5186
5194
  otherArgs[index2] = args[index2];
5187
5195
  }
5188
5196
  otherArgs[start] = transform2(array4);
5189
- return apply2(func, this, otherArgs);
5197
+ return apply(func, this, otherArgs);
5190
5198
  };
5191
5199
  }
5192
5200
  function parent(object4, path) {
@@ -5200,7 +5208,7 @@ var lodash = { exports: {} };
5200
5208
  }
5201
5209
  return array4;
5202
5210
  }
5203
- function safeGet2(object4, key) {
5211
+ function safeGet(object4, key) {
5204
5212
  if (key === "constructor" && typeof object4[key] === "function") {
5205
5213
  return;
5206
5214
  }
@@ -5209,22 +5217,22 @@ var lodash = { exports: {} };
5209
5217
  }
5210
5218
  return object4[key];
5211
5219
  }
5212
- var setData = shortOut2(baseSetData);
5220
+ var setData = shortOut(baseSetData);
5213
5221
  var setTimeout2 = ctxSetTimeout || function(func, wait) {
5214
5222
  return root2.setTimeout(func, wait);
5215
5223
  };
5216
- var setToString2 = shortOut2(baseSetToString2);
5224
+ var setToString = shortOut(baseSetToString);
5217
5225
  function setWrapToString(wrapper, reference, bitmask) {
5218
5226
  var source = reference + "";
5219
- return setToString2(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));
5227
+ return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));
5220
5228
  }
5221
- function shortOut2(func) {
5229
+ function shortOut(func) {
5222
5230
  var count = 0, lastCalled = 0;
5223
5231
  return function() {
5224
- var stamp = nativeNow2(), remaining = HOT_SPAN2 - (stamp - lastCalled);
5232
+ var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
5225
5233
  lastCalled = stamp;
5226
5234
  if (remaining > 0) {
5227
- if (++count >= HOT_COUNT2) {
5235
+ if (++count >= HOT_COUNT) {
5228
5236
  return arguments[0];
5229
5237
  }
5230
5238
  } else {
@@ -5294,10 +5302,10 @@ var lodash = { exports: {} };
5294
5302
  return result3;
5295
5303
  }
5296
5304
  function chunk2(array4, size2, guard) {
5297
- if (guard ? isIterateeCall2(array4, size2, guard) : size2 === undefined$1) {
5305
+ if (guard ? isIterateeCall(array4, size2, guard) : size2 === undefined$1) {
5298
5306
  size2 = 1;
5299
5307
  } else {
5300
- size2 = nativeMax2(toInteger(size2), 0);
5308
+ size2 = nativeMax(toInteger(size2), 0);
5301
5309
  }
5302
5310
  var length = array4 == null ? 0 : array4.length;
5303
5311
  if (!length || size2 < 1) {
@@ -5330,22 +5338,22 @@ var lodash = { exports: {} };
5330
5338
  }
5331
5339
  return arrayPush2(isArray2(array4) ? copyArray2(array4) : [array4], baseFlatten(args, 1));
5332
5340
  }
5333
- var difference = baseRest2(function(array4, values2) {
5334
- return isArrayLikeObject2(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject2, true)) : [];
5341
+ var difference = baseRest(function(array4, values2) {
5342
+ return isArrayLikeObject(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject, true)) : [];
5335
5343
  });
5336
- var differenceBy = baseRest2(function(array4, values2) {
5344
+ var differenceBy = baseRest(function(array4, values2) {
5337
5345
  var iteratee2 = last2(values2);
5338
- if (isArrayLikeObject2(iteratee2)) {
5346
+ if (isArrayLikeObject(iteratee2)) {
5339
5347
  iteratee2 = undefined$1;
5340
5348
  }
5341
- return isArrayLikeObject2(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject2, true), getIteratee(iteratee2, 2)) : [];
5349
+ return isArrayLikeObject(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject, true), getIteratee(iteratee2, 2)) : [];
5342
5350
  });
5343
- var differenceWith = baseRest2(function(array4, values2) {
5351
+ var differenceWith = baseRest(function(array4, values2) {
5344
5352
  var comparator = last2(values2);
5345
- if (isArrayLikeObject2(comparator)) {
5353
+ if (isArrayLikeObject(comparator)) {
5346
5354
  comparator = undefined$1;
5347
5355
  }
5348
- return isArrayLikeObject2(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject2, true), undefined$1, comparator) : [];
5356
+ return isArrayLikeObject(array4) ? baseDifference(array4, baseFlatten(values2, 1, isArrayLikeObject, true), undefined$1, comparator) : [];
5349
5357
  });
5350
5358
  function drop(array4, n, guard) {
5351
5359
  var length = array4 == null ? 0 : array4.length;
@@ -5375,7 +5383,7 @@ var lodash = { exports: {} };
5375
5383
  if (!length) {
5376
5384
  return [];
5377
5385
  }
5378
- if (start && typeof start != "number" && isIterateeCall2(array4, value, start)) {
5386
+ if (start && typeof start != "number" && isIterateeCall(array4, value, start)) {
5379
5387
  start = 0;
5380
5388
  end = length;
5381
5389
  }
@@ -5388,7 +5396,7 @@ var lodash = { exports: {} };
5388
5396
  }
5389
5397
  var index2 = fromIndex == null ? 0 : toInteger(fromIndex);
5390
5398
  if (index2 < 0) {
5391
- index2 = nativeMax2(length + index2, 0);
5399
+ index2 = nativeMax(length + index2, 0);
5392
5400
  }
5393
5401
  return baseFindIndex(array4, getIteratee(predicate, 3), index2);
5394
5402
  }
@@ -5400,7 +5408,7 @@ var lodash = { exports: {} };
5400
5408
  var index2 = length - 1;
5401
5409
  if (fromIndex !== undefined$1) {
5402
5410
  index2 = toInteger(fromIndex);
5403
- index2 = fromIndex < 0 ? nativeMax2(length + index2, 0) : nativeMin(index2, length - 1);
5411
+ index2 = fromIndex < 0 ? nativeMax(length + index2, 0) : nativeMin(index2, length - 1);
5404
5412
  }
5405
5413
  return baseFindIndex(array4, getIteratee(predicate, 3), index2, true);
5406
5414
  }
@@ -5438,7 +5446,7 @@ var lodash = { exports: {} };
5438
5446
  }
5439
5447
  var index2 = fromIndex == null ? 0 : toInteger(fromIndex);
5440
5448
  if (index2 < 0) {
5441
- index2 = nativeMax2(length + index2, 0);
5449
+ index2 = nativeMax(length + index2, 0);
5442
5450
  }
5443
5451
  return baseIndexOf(array4, value, index2);
5444
5452
  }
@@ -5446,11 +5454,11 @@ var lodash = { exports: {} };
5446
5454
  var length = array4 == null ? 0 : array4.length;
5447
5455
  return length ? baseSlice(array4, 0, -1) : [];
5448
5456
  }
5449
- var intersection = baseRest2(function(arrays) {
5457
+ var intersection = baseRest(function(arrays) {
5450
5458
  var mapped = arrayMap(arrays, castArrayLikeObject);
5451
5459
  return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped) : [];
5452
5460
  });
5453
- var intersectionBy = baseRest2(function(arrays) {
5461
+ var intersectionBy = baseRest(function(arrays) {
5454
5462
  var iteratee2 = last2(arrays), mapped = arrayMap(arrays, castArrayLikeObject);
5455
5463
  if (iteratee2 === last2(mapped)) {
5456
5464
  iteratee2 = undefined$1;
@@ -5459,7 +5467,7 @@ var lodash = { exports: {} };
5459
5467
  }
5460
5468
  return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, getIteratee(iteratee2, 2)) : [];
5461
5469
  });
5462
- var intersectionWith = baseRest2(function(arrays) {
5470
+ var intersectionWith = baseRest(function(arrays) {
5463
5471
  var comparator = last2(arrays), mapped = arrayMap(arrays, castArrayLikeObject);
5464
5472
  comparator = typeof comparator == "function" ? comparator : undefined$1;
5465
5473
  if (comparator) {
@@ -5482,14 +5490,14 @@ var lodash = { exports: {} };
5482
5490
  var index2 = length;
5483
5491
  if (fromIndex !== undefined$1) {
5484
5492
  index2 = toInteger(fromIndex);
5485
- index2 = index2 < 0 ? nativeMax2(length + index2, 0) : nativeMin(index2, length - 1);
5493
+ index2 = index2 < 0 ? nativeMax(length + index2, 0) : nativeMin(index2, length - 1);
5486
5494
  }
5487
5495
  return value === value ? strictLastIndexOf(array4, value, index2) : baseFindIndex(array4, baseIsNaN, index2, true);
5488
5496
  }
5489
5497
  function nth(array4, n) {
5490
5498
  return array4 && array4.length ? baseNth(array4, toInteger(n)) : undefined$1;
5491
5499
  }
5492
- var pull = baseRest2(pullAll);
5500
+ var pull = baseRest(pullAll);
5493
5501
  function pullAll(array4, values2) {
5494
5502
  return array4 && array4.length && values2 && values2.length ? basePullAll(array4, values2) : array4;
5495
5503
  }
@@ -5531,7 +5539,7 @@ var lodash = { exports: {} };
5531
5539
  if (!length) {
5532
5540
  return [];
5533
5541
  }
5534
- if (end && typeof end != "number" && isIterateeCall2(array4, start, end)) {
5542
+ if (end && typeof end != "number" && isIterateeCall(array4, start, end)) {
5535
5543
  start = 0;
5536
5544
  end = length;
5537
5545
  } else {
@@ -5604,20 +5612,20 @@ var lodash = { exports: {} };
5604
5612
  function takeWhile(array4, predicate) {
5605
5613
  return array4 && array4.length ? baseWhile(array4, getIteratee(predicate, 3)) : [];
5606
5614
  }
5607
- var union = baseRest2(function(arrays) {
5608
- return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject2, true));
5615
+ var union = baseRest(function(arrays) {
5616
+ return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));
5609
5617
  });
5610
- var unionBy = baseRest2(function(arrays) {
5618
+ var unionBy = baseRest(function(arrays) {
5611
5619
  var iteratee2 = last2(arrays);
5612
- if (isArrayLikeObject2(iteratee2)) {
5620
+ if (isArrayLikeObject(iteratee2)) {
5613
5621
  iteratee2 = undefined$1;
5614
5622
  }
5615
- return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject2, true), getIteratee(iteratee2, 2));
5623
+ return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee2, 2));
5616
5624
  });
5617
- var unionWith = baseRest2(function(arrays) {
5625
+ var unionWith = baseRest(function(arrays) {
5618
5626
  var comparator = last2(arrays);
5619
5627
  comparator = typeof comparator == "function" ? comparator : undefined$1;
5620
- return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject2, true), undefined$1, comparator);
5628
+ return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined$1, comparator);
5621
5629
  });
5622
5630
  function uniq(array4) {
5623
5631
  return array4 && array4.length ? baseUniq(array4) : [];
@@ -5635,8 +5643,8 @@ var lodash = { exports: {} };
5635
5643
  }
5636
5644
  var length = 0;
5637
5645
  array4 = arrayFilter2(array4, function(group) {
5638
- if (isArrayLikeObject2(group)) {
5639
- length = nativeMax2(group.length, length);
5646
+ if (isArrayLikeObject(group)) {
5647
+ length = nativeMax(group.length, length);
5640
5648
  return true;
5641
5649
  }
5642
5650
  });
@@ -5653,35 +5661,35 @@ var lodash = { exports: {} };
5653
5661
  return result3;
5654
5662
  }
5655
5663
  return arrayMap(result3, function(group) {
5656
- return apply2(iteratee2, undefined$1, group);
5664
+ return apply(iteratee2, undefined$1, group);
5657
5665
  });
5658
5666
  }
5659
- var without = baseRest2(function(array4, values2) {
5660
- return isArrayLikeObject2(array4) ? baseDifference(array4, values2) : [];
5667
+ var without = baseRest(function(array4, values2) {
5668
+ return isArrayLikeObject(array4) ? baseDifference(array4, values2) : [];
5661
5669
  });
5662
- var xor = baseRest2(function(arrays) {
5663
- return baseXor(arrayFilter2(arrays, isArrayLikeObject2));
5670
+ var xor = baseRest(function(arrays) {
5671
+ return baseXor(arrayFilter2(arrays, isArrayLikeObject));
5664
5672
  });
5665
- var xorBy = baseRest2(function(arrays) {
5673
+ var xorBy = baseRest(function(arrays) {
5666
5674
  var iteratee2 = last2(arrays);
5667
- if (isArrayLikeObject2(iteratee2)) {
5675
+ if (isArrayLikeObject(iteratee2)) {
5668
5676
  iteratee2 = undefined$1;
5669
5677
  }
5670
- return baseXor(arrayFilter2(arrays, isArrayLikeObject2), getIteratee(iteratee2, 2));
5678
+ return baseXor(arrayFilter2(arrays, isArrayLikeObject), getIteratee(iteratee2, 2));
5671
5679
  });
5672
- var xorWith = baseRest2(function(arrays) {
5680
+ var xorWith = baseRest(function(arrays) {
5673
5681
  var comparator = last2(arrays);
5674
5682
  comparator = typeof comparator == "function" ? comparator : undefined$1;
5675
- return baseXor(arrayFilter2(arrays, isArrayLikeObject2), undefined$1, comparator);
5683
+ return baseXor(arrayFilter2(arrays, isArrayLikeObject), undefined$1, comparator);
5676
5684
  });
5677
- var zip = baseRest2(unzip);
5685
+ var zip = baseRest(unzip);
5678
5686
  function zipObject(props, values2) {
5679
5687
  return baseZipObject(props || [], values2 || [], assignValue2);
5680
5688
  }
5681
5689
  function zipObjectDeep(props, values2) {
5682
5690
  return baseZipObject(props || [], values2 || [], baseSet);
5683
5691
  }
5684
- var zipWith = baseRest2(function(arrays) {
5692
+ var zipWith = baseRest(function(arrays) {
5685
5693
  var length = arrays.length, iteratee2 = length > 1 ? arrays[length - 1] : undefined$1;
5686
5694
  iteratee2 = typeof iteratee2 == "function" ? (arrays.pop(), iteratee2) : undefined$1;
5687
5695
  return unzipWith(arrays, iteratee2);
@@ -5780,7 +5788,7 @@ var lodash = { exports: {} };
5780
5788
  });
5781
5789
  function every(collection, predicate, guard) {
5782
5790
  var func = isArray2(collection) ? arrayEvery : baseEvery;
5783
- if (guard && isIterateeCall2(collection, predicate, guard)) {
5791
+ if (guard && isIterateeCall(collection, predicate, guard)) {
5784
5792
  predicate = undefined$1;
5785
5793
  }
5786
5794
  return func(collection, getIteratee(predicate, 3));
@@ -5821,14 +5829,14 @@ var lodash = { exports: {} };
5821
5829
  fromIndex = fromIndex && !guard ? toInteger(fromIndex) : 0;
5822
5830
  var length = collection.length;
5823
5831
  if (fromIndex < 0) {
5824
- fromIndex = nativeMax2(length + fromIndex, 0);
5832
+ fromIndex = nativeMax(length + fromIndex, 0);
5825
5833
  }
5826
5834
  return isString2(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;
5827
5835
  }
5828
- var invokeMap = baseRest2(function(collection, path, args) {
5836
+ var invokeMap = baseRest(function(collection, path, args) {
5829
5837
  var index2 = -1, isFunc = typeof path == "function", result3 = isArrayLike2(collection) ? Array2(collection.length) : [];
5830
5838
  baseEach(collection, function(value) {
5831
- result3[++index2] = isFunc ? apply2(path, value, args) : baseInvoke(value, path, args);
5839
+ result3[++index2] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);
5832
5840
  });
5833
5841
  return result3;
5834
5842
  });
@@ -5874,7 +5882,7 @@ var lodash = { exports: {} };
5874
5882
  return func(collection);
5875
5883
  }
5876
5884
  function sampleSize(collection, n, guard) {
5877
- if (guard ? isIterateeCall2(collection, n, guard) : n === undefined$1) {
5885
+ if (guard ? isIterateeCall(collection, n, guard) : n === undefined$1) {
5878
5886
  n = 1;
5879
5887
  } else {
5880
5888
  n = toInteger(n);
@@ -5901,19 +5909,19 @@ var lodash = { exports: {} };
5901
5909
  }
5902
5910
  function some(collection, predicate, guard) {
5903
5911
  var func = isArray2(collection) ? arraySome : baseSome;
5904
- if (guard && isIterateeCall2(collection, predicate, guard)) {
5912
+ if (guard && isIterateeCall(collection, predicate, guard)) {
5905
5913
  predicate = undefined$1;
5906
5914
  }
5907
5915
  return func(collection, getIteratee(predicate, 3));
5908
5916
  }
5909
- var sortBy = baseRest2(function(collection, iteratees) {
5917
+ var sortBy = baseRest(function(collection, iteratees) {
5910
5918
  if (collection == null) {
5911
5919
  return [];
5912
5920
  }
5913
5921
  var length = iteratees.length;
5914
- if (length > 1 && isIterateeCall2(collection, iteratees[0], iteratees[1])) {
5922
+ if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {
5915
5923
  iteratees = [];
5916
- } else if (length > 2 && isIterateeCall2(iteratees[0], iteratees[1], iteratees[2])) {
5924
+ } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {
5917
5925
  iteratees = [iteratees[0]];
5918
5926
  }
5919
5927
  return baseOrderBy(collection, baseFlatten(iteratees, 1), []);
@@ -5953,7 +5961,7 @@ var lodash = { exports: {} };
5953
5961
  return result3;
5954
5962
  };
5955
5963
  }
5956
- var bind2 = baseRest2(function(func, thisArg, partials) {
5964
+ var bind2 = baseRest(function(func, thisArg, partials) {
5957
5965
  var bitmask = WRAP_BIND_FLAG;
5958
5966
  if (partials.length) {
5959
5967
  var holders = replaceHolders(partials, getHolder(bind2));
@@ -5961,7 +5969,7 @@ var lodash = { exports: {} };
5961
5969
  }
5962
5970
  return createWrap(func, bitmask, thisArg, partials, holders);
5963
5971
  });
5964
- var bindKey = baseRest2(function(object4, key, partials) {
5972
+ var bindKey = baseRest(function(object4, key, partials) {
5965
5973
  var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG;
5966
5974
  if (partials.length) {
5967
5975
  var holders = replaceHolders(partials, getHolder(bindKey));
@@ -5990,7 +5998,7 @@ var lodash = { exports: {} };
5990
5998
  if (isObject2(options)) {
5991
5999
  leading = !!options.leading;
5992
6000
  maxing = "maxWait" in options;
5993
- maxWait = maxing ? nativeMax2(toNumber(options.maxWait) || 0, wait) : maxWait;
6001
+ maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
5994
6002
  trailing = "trailing" in options ? !!options.trailing : trailing;
5995
6003
  }
5996
6004
  function invokeFunc(time) {
@@ -6062,10 +6070,10 @@ var lodash = { exports: {} };
6062
6070
  debounced.flush = flush;
6063
6071
  return debounced;
6064
6072
  }
6065
- var defer = baseRest2(function(func, args) {
6073
+ var defer = baseRest(function(func, args) {
6066
6074
  return baseDelay(func, 1, args);
6067
6075
  });
6068
- var delay = baseRest2(function(func, wait, args) {
6076
+ var delay = baseRest(function(func, wait, args) {
6069
6077
  return baseDelay(func, toNumber(wait) || 0, args);
6070
6078
  });
6071
6079
  function flip2(func) {
@@ -6113,19 +6121,19 @@ var lodash = { exports: {} };
6113
6121
  var overArgs = castRest(function(func, transforms) {
6114
6122
  transforms = transforms.length == 1 && isArray2(transforms[0]) ? arrayMap(transforms[0], baseUnary2(getIteratee())) : arrayMap(baseFlatten(transforms, 1), baseUnary2(getIteratee()));
6115
6123
  var funcsLength = transforms.length;
6116
- return baseRest2(function(args) {
6124
+ return baseRest(function(args) {
6117
6125
  var index2 = -1, length = nativeMin(args.length, funcsLength);
6118
6126
  while (++index2 < length) {
6119
6127
  args[index2] = transforms[index2].call(this, args[index2]);
6120
6128
  }
6121
- return apply2(func, this, args);
6129
+ return apply(func, this, args);
6122
6130
  });
6123
6131
  });
6124
- var partial = baseRest2(function(func, partials) {
6132
+ var partial = baseRest(function(func, partials) {
6125
6133
  var holders = replaceHolders(partials, getHolder(partial));
6126
6134
  return createWrap(func, WRAP_PARTIAL_FLAG, undefined$1, partials, holders);
6127
6135
  });
6128
- var partialRight = baseRest2(function(func, partials) {
6136
+ var partialRight = baseRest(function(func, partials) {
6129
6137
  var holders = replaceHolders(partials, getHolder(partialRight));
6130
6138
  return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined$1, partials, holders);
6131
6139
  });
@@ -6137,19 +6145,19 @@ var lodash = { exports: {} };
6137
6145
  throw new TypeError2(FUNC_ERROR_TEXT);
6138
6146
  }
6139
6147
  start = start === undefined$1 ? start : toInteger(start);
6140
- return baseRest2(func, start);
6148
+ return baseRest(func, start);
6141
6149
  }
6142
6150
  function spread(func, start) {
6143
6151
  if (typeof func != "function") {
6144
6152
  throw new TypeError2(FUNC_ERROR_TEXT);
6145
6153
  }
6146
- start = start == null ? 0 : nativeMax2(toInteger(start), 0);
6147
- return baseRest2(function(args) {
6154
+ start = start == null ? 0 : nativeMax(toInteger(start), 0);
6155
+ return baseRest(function(args) {
6148
6156
  var array4 = args[start], otherArgs = castSlice(args, 0, start);
6149
6157
  if (array4) {
6150
6158
  arrayPush2(otherArgs, array4);
6151
6159
  }
6152
- return apply2(func, this, otherArgs);
6160
+ return apply(func, this, otherArgs);
6153
6161
  });
6154
6162
  }
6155
6163
  function throttle2(func, wait, options) {
@@ -6214,16 +6222,16 @@ var lodash = { exports: {} };
6214
6222
  function isArrayLike2(value) {
6215
6223
  return value != null && isLength2(value.length) && !isFunction2(value);
6216
6224
  }
6217
- function isArrayLikeObject2(value) {
6225
+ function isArrayLikeObject(value) {
6218
6226
  return isObjectLike2(value) && isArrayLike2(value);
6219
6227
  }
6220
6228
  function isBoolean2(value) {
6221
6229
  return value === true || value === false || isObjectLike2(value) && baseGetTag2(value) == boolTag2;
6222
6230
  }
6223
- var isBuffer2 = nativeIsBuffer2 || stubFalse2;
6231
+ var isBuffer2 = nativeIsBuffer || stubFalse2;
6224
6232
  var isDate = nodeIsDate ? baseUnary2(nodeIsDate) : baseIsDate;
6225
6233
  function isElement(value) {
6226
- return isObjectLike2(value) && value.nodeType === 1 && !isPlainObject2(value);
6234
+ return isObjectLike2(value) && value.nodeType === 1 && !isPlainObject(value);
6227
6235
  }
6228
6236
  function isEmpty2(value) {
6229
6237
  if (value == null) {
@@ -6259,7 +6267,7 @@ var lodash = { exports: {} };
6259
6267
  return false;
6260
6268
  }
6261
6269
  var tag2 = baseGetTag2(value);
6262
- return tag2 == errorTag2 || tag2 == domExcTag || typeof value.message == "string" && typeof value.name == "string" && !isPlainObject2(value);
6270
+ return tag2 == errorTag2 || tag2 == domExcTag || typeof value.message == "string" && typeof value.name == "string" && !isPlainObject(value);
6263
6271
  }
6264
6272
  function isFinite(value) {
6265
6273
  return typeof value == "number" && nativeIsFinite(value);
@@ -6310,7 +6318,7 @@ var lodash = { exports: {} };
6310
6318
  function isNumber2(value) {
6311
6319
  return typeof value == "number" || isObjectLike2(value) && baseGetTag2(value) == numberTag2;
6312
6320
  }
6313
- function isPlainObject2(value) {
6321
+ function isPlainObject(value) {
6314
6322
  if (!isObjectLike2(value) || baseGetTag2(value) != objectTag2) {
6315
6323
  return false;
6316
6324
  }
@@ -6319,7 +6327,7 @@ var lodash = { exports: {} };
6319
6327
  return true;
6320
6328
  }
6321
6329
  var Ctor = hasOwnProperty2.call(proto, "constructor") && proto.constructor;
6322
- return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString2.call(Ctor) == objectCtorString2;
6330
+ return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString2.call(Ctor) == objectCtorString;
6323
6331
  }
6324
6332
  var isRegExp = nodeIsRegExp ? baseUnary2(nodeIsRegExp) : baseIsRegExp;
6325
6333
  function isSafeInteger(value) {
@@ -6395,7 +6403,7 @@ var lodash = { exports: {} };
6395
6403
  var isBinary = reIsBinary.test(value);
6396
6404
  return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
6397
6405
  }
6398
- function toPlainObject2(value) {
6406
+ function toPlainObject(value) {
6399
6407
  return copyObject2(value, keysIn2(value));
6400
6408
  }
6401
6409
  function toSafeInteger(value) {
@@ -6404,7 +6412,7 @@ var lodash = { exports: {} };
6404
6412
  function toString(value) {
6405
6413
  return value == null ? "" : baseToString(value);
6406
6414
  }
6407
- var assign = createAssigner2(function(object4, source) {
6415
+ var assign = createAssigner(function(object4, source) {
6408
6416
  if (isPrototype2(source) || isArrayLike2(source)) {
6409
6417
  copyObject2(source, keys2(source), object4);
6410
6418
  return;
@@ -6415,13 +6423,13 @@ var lodash = { exports: {} };
6415
6423
  }
6416
6424
  }
6417
6425
  });
6418
- var assignIn = createAssigner2(function(object4, source) {
6426
+ var assignIn = createAssigner(function(object4, source) {
6419
6427
  copyObject2(source, keysIn2(source), object4);
6420
6428
  });
6421
- var assignInWith = createAssigner2(function(object4, source, srcIndex, customizer) {
6429
+ var assignInWith = createAssigner(function(object4, source, srcIndex, customizer) {
6422
6430
  copyObject2(source, keysIn2(source), object4, customizer);
6423
6431
  });
6424
- var assignWith = createAssigner2(function(object4, source, srcIndex, customizer) {
6432
+ var assignWith = createAssigner(function(object4, source, srcIndex, customizer) {
6425
6433
  copyObject2(source, keys2(source), object4, customizer);
6426
6434
  });
6427
6435
  var at = flatRest(baseAt);
@@ -6429,12 +6437,12 @@ var lodash = { exports: {} };
6429
6437
  var result3 = baseCreate2(prototype);
6430
6438
  return properties == null ? result3 : baseAssign2(result3, properties);
6431
6439
  }
6432
- var defaults = baseRest2(function(object4, sources) {
6440
+ var defaults = baseRest(function(object4, sources) {
6433
6441
  object4 = Object2(object4);
6434
6442
  var index2 = -1;
6435
6443
  var length = sources.length;
6436
6444
  var guard = length > 2 ? sources[2] : undefined$1;
6437
- if (guard && isIterateeCall2(sources[0], sources[1], guard)) {
6445
+ if (guard && isIterateeCall(sources[0], sources[1], guard)) {
6438
6446
  length = 1;
6439
6447
  }
6440
6448
  while (++index2 < length) {
@@ -6452,9 +6460,9 @@ var lodash = { exports: {} };
6452
6460
  }
6453
6461
  return object4;
6454
6462
  });
6455
- var defaultsDeep = baseRest2(function(args) {
6463
+ var defaultsDeep = baseRest(function(args) {
6456
6464
  args.push(undefined$1, customDefaultsMerge);
6457
- return apply2(mergeWith2, undefined$1, args);
6465
+ return apply(mergeWith, undefined$1, args);
6458
6466
  });
6459
6467
  function findKey(object4, predicate) {
6460
6468
  return baseFindKey(object4, getIteratee(predicate, 3), baseForOwn);
@@ -6463,7 +6471,7 @@ var lodash = { exports: {} };
6463
6471
  return baseFindKey(object4, getIteratee(predicate, 3), baseForOwnRight);
6464
6472
  }
6465
6473
  function forIn(object4, iteratee2) {
6466
- return object4 == null ? object4 : baseFor2(object4, getIteratee(iteratee2, 3), keysIn2);
6474
+ return object4 == null ? object4 : baseFor(object4, getIteratee(iteratee2, 3), keysIn2);
6467
6475
  }
6468
6476
  function forInRight(object4, iteratee2) {
6469
6477
  return object4 == null ? object4 : baseForRight(object4, getIteratee(iteratee2, 3), keysIn2);
@@ -6495,7 +6503,7 @@ var lodash = { exports: {} };
6495
6503
  value = nativeObjectToString2.call(value);
6496
6504
  }
6497
6505
  result3[value] = key;
6498
- }, constant2(identity2));
6506
+ }, constant(identity2));
6499
6507
  var invertBy = createInverter(function(result3, value, key) {
6500
6508
  if (value != null && typeof value.toString != "function") {
6501
6509
  value = nativeObjectToString2.call(value);
@@ -6506,7 +6514,7 @@ var lodash = { exports: {} };
6506
6514
  result3[value] = [key];
6507
6515
  }
6508
6516
  }, getIteratee);
6509
- var invoke = baseRest2(baseInvoke);
6517
+ var invoke = baseRest(baseInvoke);
6510
6518
  function keys2(object4) {
6511
6519
  return isArrayLike2(object4) ? arrayLikeKeys2(object4) : baseKeys2(object4);
6512
6520
  }
@@ -6529,11 +6537,11 @@ var lodash = { exports: {} };
6529
6537
  });
6530
6538
  return result3;
6531
6539
  }
6532
- var merge2 = createAssigner2(function(object4, source, srcIndex) {
6533
- baseMerge2(object4, source, srcIndex);
6540
+ var merge2 = createAssigner(function(object4, source, srcIndex) {
6541
+ baseMerge(object4, source, srcIndex);
6534
6542
  });
6535
- var mergeWith2 = createAssigner2(function(object4, source, srcIndex, customizer) {
6536
- baseMerge2(object4, source, srcIndex, customizer);
6543
+ var mergeWith = createAssigner(function(object4, source, srcIndex, customizer) {
6544
+ baseMerge(object4, source, srcIndex, customizer);
6537
6545
  });
6538
6546
  var omit2 = flatRest(function(object4, paths) {
6539
6547
  var result3 = {};
@@ -6661,7 +6669,7 @@ var lodash = { exports: {} };
6661
6669
  return baseInRange(number4, start, end);
6662
6670
  }
6663
6671
  function random(lower, upper, floating) {
6664
- if (floating && typeof floating != "boolean" && isIterateeCall2(lower, upper, floating)) {
6672
+ if (floating && typeof floating != "boolean" && isIterateeCall(lower, upper, floating)) {
6665
6673
  upper = floating = undefined$1;
6666
6674
  }
6667
6675
  if (floating === undefined$1) {
@@ -6762,7 +6770,7 @@ var lodash = { exports: {} };
6762
6770
  return nativeParseInt(toString(string3).replace(reTrimStart, ""), radix || 0);
6763
6771
  }
6764
6772
  function repeat(string3, n, guard) {
6765
- if (guard ? isIterateeCall2(string3, n, guard) : n === undefined$1) {
6773
+ if (guard ? isIterateeCall(string3, n, guard) : n === undefined$1) {
6766
6774
  n = 1;
6767
6775
  } else {
6768
6776
  n = toInteger(n);
@@ -6777,7 +6785,7 @@ var lodash = { exports: {} };
6777
6785
  return result3 + (index2 ? "_" : "") + word.toLowerCase();
6778
6786
  });
6779
6787
  function split(string3, separator2, limit) {
6780
- if (limit && typeof limit != "number" && isIterateeCall2(string3, separator2, limit)) {
6788
+ if (limit && typeof limit != "number" && isIterateeCall(string3, separator2, limit)) {
6781
6789
  separator2 = limit = undefined$1;
6782
6790
  }
6783
6791
  limit = limit === undefined$1 ? MAX_ARRAY_LENGTH : limit >>> 0;
@@ -6804,7 +6812,7 @@ var lodash = { exports: {} };
6804
6812
  }
6805
6813
  function template(string3, options, guard) {
6806
6814
  var settings = lodash2.templateSettings;
6807
- if (guard && isIterateeCall2(string3, options, guard)) {
6815
+ if (guard && isIterateeCall(string3, options, guard)) {
6808
6816
  options = undefined$1;
6809
6817
  }
6810
6818
  string3 = toString(string3);
@@ -6953,9 +6961,9 @@ var lodash = { exports: {} };
6953
6961
  }
6954
6962
  return string3.match(pattern4) || [];
6955
6963
  }
6956
- var attempt = baseRest2(function(func, args) {
6964
+ var attempt = baseRest(function(func, args) {
6957
6965
  try {
6958
- return apply2(func, undefined$1, args);
6966
+ return apply(func, undefined$1, args);
6959
6967
  } catch (e) {
6960
6968
  return isError(e) ? e : new Error2(e);
6961
6969
  }
@@ -6975,12 +6983,12 @@ var lodash = { exports: {} };
6975
6983
  }
6976
6984
  return [toIteratee(pair[0]), pair[1]];
6977
6985
  });
6978
- return baseRest2(function(args) {
6986
+ return baseRest(function(args) {
6979
6987
  var index2 = -1;
6980
6988
  while (++index2 < length) {
6981
6989
  var pair = pairs[index2];
6982
- if (apply2(pair[0], this, args)) {
6983
- return apply2(pair[1], this, args);
6990
+ if (apply(pair[0], this, args)) {
6991
+ return apply(pair[1], this, args);
6984
6992
  }
6985
6993
  }
6986
6994
  });
@@ -6988,7 +6996,7 @@ var lodash = { exports: {} };
6988
6996
  function conforms(source) {
6989
6997
  return baseConforms(baseClone2(source, CLONE_DEEP_FLAG2));
6990
6998
  }
6991
- function constant2(value) {
6999
+ function constant(value) {
6992
7000
  return function() {
6993
7001
  return value;
6994
7002
  };
@@ -7010,12 +7018,12 @@ var lodash = { exports: {} };
7010
7018
  function matchesProperty(path, srcValue) {
7011
7019
  return baseMatchesProperty(path, baseClone2(srcValue, CLONE_DEEP_FLAG2));
7012
7020
  }
7013
- var method4 = baseRest2(function(path, args) {
7021
+ var method4 = baseRest(function(path, args) {
7014
7022
  return function(object4) {
7015
7023
  return baseInvoke(object4, path, args);
7016
7024
  };
7017
7025
  });
7018
- var methodOf = baseRest2(function(object4, args) {
7026
+ var methodOf = baseRest(function(object4, args) {
7019
7027
  return function(path) {
7020
7028
  return baseInvoke(object4, path, args);
7021
7029
  };
@@ -7057,7 +7065,7 @@ var lodash = { exports: {} };
7057
7065
  }
7058
7066
  function nthArg(n) {
7059
7067
  n = toInteger(n);
7060
- return baseRest2(function(args) {
7068
+ return baseRest(function(args) {
7061
7069
  return baseNth(args, n);
7062
7070
  });
7063
7071
  }
@@ -7170,7 +7178,7 @@ var lodash = { exports: {} };
7170
7178
  lodash2.concat = concat;
7171
7179
  lodash2.cond = cond;
7172
7180
  lodash2.conforms = conforms;
7173
- lodash2.constant = constant2;
7181
+ lodash2.constant = constant;
7174
7182
  lodash2.countBy = countBy;
7175
7183
  lodash2.create = create;
7176
7184
  lodash2.curry = curry;
@@ -7220,7 +7228,7 @@ var lodash = { exports: {} };
7220
7228
  lodash2.matchesProperty = matchesProperty;
7221
7229
  lodash2.memoize = memoize;
7222
7230
  lodash2.merge = merge2;
7223
- lodash2.mergeWith = mergeWith2;
7231
+ lodash2.mergeWith = mergeWith;
7224
7232
  lodash2.method = method4;
7225
7233
  lodash2.methodOf = methodOf;
7226
7234
  lodash2.mixin = mixin;
@@ -7275,7 +7283,7 @@ var lodash = { exports: {} };
7275
7283
  lodash2.toPairs = toPairs;
7276
7284
  lodash2.toPairsIn = toPairsIn;
7277
7285
  lodash2.toPath = toPath;
7278
- lodash2.toPlainObject = toPlainObject2;
7286
+ lodash2.toPlainObject = toPlainObject;
7279
7287
  lodash2.transform = transform;
7280
7288
  lodash2.unary = unary;
7281
7289
  lodash2.union = union;
@@ -7353,7 +7361,7 @@ var lodash = { exports: {} };
7353
7361
  lodash2.isArray = isArray2;
7354
7362
  lodash2.isArrayBuffer = isArrayBuffer;
7355
7363
  lodash2.isArrayLike = isArrayLike2;
7356
- lodash2.isArrayLikeObject = isArrayLikeObject2;
7364
+ lodash2.isArrayLikeObject = isArrayLikeObject;
7357
7365
  lodash2.isBoolean = isBoolean2;
7358
7366
  lodash2.isBuffer = isBuffer2;
7359
7367
  lodash2.isDate = isDate;
@@ -7376,7 +7384,7 @@ var lodash = { exports: {} };
7376
7384
  lodash2.isNumber = isNumber2;
7377
7385
  lodash2.isObject = isObject2;
7378
7386
  lodash2.isObjectLike = isObjectLike2;
7379
- lodash2.isPlainObject = isPlainObject2;
7387
+ lodash2.isPlainObject = isPlainObject;
7380
7388
  lodash2.isRegExp = isRegExp;
7381
7389
  lodash2.isSafeInteger = isSafeInteger;
7382
7390
  lodash2.isSet = isSet2;
@@ -7473,7 +7481,7 @@ var lodash = { exports: {} };
7473
7481
  });
7474
7482
  arrayEach2(["drop", "take"], function(methodName, index2) {
7475
7483
  LazyWrapper.prototype[methodName] = function(n) {
7476
- n = n === undefined$1 ? 1 : nativeMax2(toInteger(n), 0);
7484
+ n = n === undefined$1 ? 1 : nativeMax(toInteger(n), 0);
7477
7485
  var result3 = this.__filtered__ && !index2 ? new LazyWrapper(this) : this.clone();
7478
7486
  if (result3.__filtered__) {
7479
7487
  result3.__takeCount__ = nativeMin(n, result3.__takeCount__);
@@ -7522,7 +7530,7 @@ var lodash = { exports: {} };
7522
7530
  LazyWrapper.prototype.findLast = function(predicate) {
7523
7531
  return this.reverse().find(predicate);
7524
7532
  };
7525
- LazyWrapper.prototype.invokeMap = baseRest2(function(path, args) {
7533
+ LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
7526
7534
  if (typeof path == "function") {
7527
7535
  return new LazyWrapper(this);
7528
7536
  }
@@ -7628,9 +7636,9 @@ var lodash = { exports: {} };
7628
7636
  return lodash2;
7629
7637
  };
7630
7638
  var _ = runInContext();
7631
- if (freeModule2) {
7632
- (freeModule2.exports = _)._ = _;
7633
- freeExports2._ = _;
7639
+ if (freeModule) {
7640
+ (freeModule.exports = _)._ = _;
7641
+ freeExports._ = _;
7634
7642
  } else {
7635
7643
  root2._ = _;
7636
7644
  }
@@ -8074,14 +8082,14 @@ const POPPER_TRIGGER_TOKEN = Symbol("popper-trigger");
8074
8082
  * @license MIT
8075
8083
  **/
8076
8084
  const isString$1 = (val) => typeof val === "string";
8077
- const isObject$8 = (val) => val !== null && typeof val === "object";
8085
+ const isObject$7 = (val) => val !== null && typeof val === "object";
8078
8086
  const ns$j = useNamespace$1("popper-trigger");
8079
8087
  function wrapContent(content2) {
8080
8088
  return h("span", { class: ns$j.b() }, content2);
8081
8089
  }
8082
8090
  function getFirstValidChild(nodes) {
8083
8091
  for (const child of nodes) {
8084
- if (isObject$8(child)) {
8092
+ if (isObject$7(child)) {
8085
8093
  if (child.type === Comment$1) {
8086
8094
  continue;
8087
8095
  }
@@ -8961,7 +8969,7 @@ function asyncMap(objArr, option2, func, callback, source) {
8961
8969
  function isErrorObj(obj) {
8962
8970
  return !!(obj && obj.message !== void 0);
8963
8971
  }
8964
- function getValue$3(value, path) {
8972
+ function getValue$2(value, path) {
8965
8973
  var v = value;
8966
8974
  for (var i = 0; i < path.length; i++) {
8967
8975
  if (v == void 0) {
@@ -8975,7 +8983,7 @@ function complementError(rule, source) {
8975
8983
  return function(oe) {
8976
8984
  var fieldValue;
8977
8985
  if (rule.fullFields) {
8978
- fieldValue = getValue$3(source, rule.fullFields);
8986
+ fieldValue = getValue$2(source, rule.fullFields);
8979
8987
  } else {
8980
8988
  fieldValue = source[oe.field || rule.fullField];
8981
8989
  }
@@ -13726,13 +13734,7 @@ function SearchIcon$1() {
13726
13734
  "fill": "none",
13727
13735
  "fill-rule": "evenodd"
13728
13736
  }, [createVNode("path", {
13729
- "d": `M7.71295742,1.53283795 C11.0266659,1.53283795 13.7129574,4.21912945 13.7129574,7.53283795 C13.7129574,9.0690006
13730
- 13.1356609,10.4703284 12.1861834,11.5317059 L14.5333041,13.8784875 C14.7285663,14.0737497 14.7285663,14.3903321
13731
- 14.5333041,14.5855943 C14.3597378,14.7591606 14.0903134,14.7784458 13.8954453,14.6434497 L13.8261974,14.5855943
13732
- L11.4604434,12.2188804 C10.4336319,13.0411023 9.13072017,13.5328379 7.71295742,13.5328379 C4.39924893,13.5328379
13733
- 1.71295742,10.8465464 1.71295742,7.53283795 C1.71295742,4.21912945 4.39924893,1.53283795 7.71295742,1.53283795 Z M7.71295742,2.53283795
13734
- C4.95153368,2.53283795 2.71295742,4.7714142 2.71295742,7.53283795 C2.71295742,10.2942617 4.95153368,12.5328379 7.71295742,12.5328379
13735
- C10.4743812,12.5328379 12.7129574,10.2942617 12.7129574,7.53283795 C12.7129574,4.7714142 10.4743812,2.53283795 7.71295742,2.53283795 Z`,
13737
+ "d": "M7.71295742,1.53283795 C11.0266659,1.53283795 13.7129574,4.21912945 13.7129574,7.53283795 C13.7129574,9.0690006 13.1356609,10.4703284 12.1861834,11.5317059 L14.5333041,13.8784875 C14.7285663,14.0737497 14.7285663,14.3903321 14.5333041,14.5855943 C14.3597378,14.7591606 14.0903134,14.7784458 13.8954453,14.6434497 L13.8261974,14.5855943 L11.4604434,12.2188804 C10.4336319,13.0411023 9.13072017,13.5328379 7.71295742,13.5328379 C4.39924893,13.5328379 1.71295742,10.8465464 1.71295742,7.53283795 C1.71295742,4.21912945 4.39924893,1.53283795 7.71295742,1.53283795 Z M7.71295742,2.53283795 C4.95153368,2.53283795 2.71295742,4.7714142 2.71295742,7.53283795 C2.71295742,10.2942617 4.95153368,12.5328379 7.71295742,12.5328379 C10.4743812,12.5328379 12.7129574,10.2942617 12.7129574,7.53283795 C12.7129574,4.7714142 10.4743812,2.53283795 7.71295742,2.53283795 Z",
13736
13738
  "id": "\u5F62\u72B6\u7ED3\u5408",
13737
13739
  "fill": "#71757F",
13738
13740
  "fill-rule": "nonzero"
@@ -13751,7 +13753,7 @@ function InputClearIcon() {
13751
13753
  "fill": "none",
13752
13754
  "fill-rule": "evenodd"
13753
13755
  }, [createVNode("path", {
13754
- "d": "M8,1 C11.8659932,1 15,4.13400675 15,8 C15,11.8659932 11.8659932,15 8,15 C4.13400675,15 1,11.8659932 1,8 C1,4.13400675 \\ 4.13400675,1 8,1 Z M5.87867966,5.17157288 C5.68341751,4.97631073 5.36683502,4.97631073 5.17157288,5.17157288 \\ C4.99800652,5.34513923 4.97872137,5.61456363 5.11371742,5.80943177 L5.17157288,5.87867966 L7.29218611,7.99929289 \\ L5.17157288,10.1213203 C4.97631073,10.3165825 4.97631073,10.633165 5.17157288,10.8284271 C5.34513923,11.0019935 \\ 5.61456363,11.0212786 5.80943177,10.8862826 L5.87867966,10.8284271 L7.99929289,8.70639967 L10.1213203,10.8284271 \\ C10.3165825,11.0236893 10.633165,11.0236893 10.8284271,10.8284271 C11.0019935,10.6548608 11.0212786,10.3854364 \\ 10.8862826,10.1905682 L10.8284271,10.1213203 L8.70710678,8 L10.8284271,5.87867966 C11.0236893,5.68341751 \\ 11.0236893,5.36683502 10.8284271,5.17157288 C10.6548608,4.99800652 10.3854364,4.97872137 10.1905682,5.11371742 \\ L10.1213203,5.17157288 L8,7.29289322 L5.87867966,5.17157288 Z",
13756
+ "d": "M8,1 C11.8659932,1 15,4.13400675 15,8 C15,11.8659932 11.8659932,15 8,15 C4.13400675,15 1,11.8659932 1,8 C1,4.13400675 4.13400675,1 8,1 Z M5.87867966,5.17157288 C5.68341751,4.97631073 5.36683502,4.97631073 5.17157288,5.17157288 C4.99800652,5.34513923 4.97872137,5.61456363 5.11371742,5.80943177 L5.17157288,5.87867966 L7.29218611,7.99929289 L5.17157288,10.1213203 C4.97631073,10.3165825 4.97631073,10.633165 5.17157288,10.8284271 C5.34513923,11.0019935 5.61456363,11.0212786 5.80943177,10.8862826 L5.87867966,10.8284271 L7.99929289,8.70639967 L10.1213203,10.8284271 C10.3165825,11.0236893 10.633165,11.0236893 10.8284271,10.8284271 C11.0019935,10.6548608 11.0212786,10.3854364 10.8862826,10.1905682 L10.8284271,10.1213203 L8.70710678,8 L10.8284271,5.87867966 C11.0236893,5.68341751 11.0236893,5.36683502 10.8284271,5.17157288 C10.6548608,4.99800652 10.3854364,4.97872137 10.1905682,5.11371742 L10.1213203,5.17157288 L8,7.29289322 L5.87867966,5.17157288 Z",
13755
13757
  "id": "\u5F62\u72B6",
13756
13758
  "fill": "#D5D5DB",
13757
13759
  "fill-rule": "nonzero"
@@ -15114,1015 +15116,6 @@ var CategorySearchMore = defineComponent({
15114
15116
  })]);
15115
15117
  }
15116
15118
  });
15117
- var freeGlobal$2 = typeof global == "object" && global && global.Object === Object && global;
15118
- var freeGlobal$3 = freeGlobal$2;
15119
- var freeSelf$1 = typeof self == "object" && self && self.Object === Object && self;
15120
- var root$9 = freeGlobal$3 || freeSelf$1 || Function("return this")();
15121
- var root$a = root$9;
15122
- var Symbol$5 = root$a.Symbol;
15123
- var Symbol$6 = Symbol$5;
15124
- var objectProto$q = Object.prototype;
15125
- var hasOwnProperty$k = objectProto$q.hasOwnProperty;
15126
- var nativeObjectToString$3 = objectProto$q.toString;
15127
- var symToStringTag$3 = Symbol$6 ? Symbol$6.toStringTag : void 0;
15128
- function getRawTag$2(value) {
15129
- var isOwn = hasOwnProperty$k.call(value, symToStringTag$3), tag2 = value[symToStringTag$3];
15130
- try {
15131
- value[symToStringTag$3] = void 0;
15132
- var unmasked = true;
15133
- } catch (e) {
15134
- }
15135
- var result2 = nativeObjectToString$3.call(value);
15136
- if (unmasked) {
15137
- if (isOwn) {
15138
- value[symToStringTag$3] = tag2;
15139
- } else {
15140
- delete value[symToStringTag$3];
15141
- }
15142
- }
15143
- return result2;
15144
- }
15145
- var objectProto$p = Object.prototype;
15146
- var nativeObjectToString$2 = objectProto$p.toString;
15147
- function objectToString$2(value) {
15148
- return nativeObjectToString$2.call(value);
15149
- }
15150
- var nullTag$1 = "[object Null]", undefinedTag$1 = "[object Undefined]";
15151
- var symToStringTag$2 = Symbol$6 ? Symbol$6.toStringTag : void 0;
15152
- function baseGetTag$5(value) {
15153
- if (value == null) {
15154
- return value === void 0 ? undefinedTag$1 : nullTag$1;
15155
- }
15156
- return symToStringTag$2 && symToStringTag$2 in Object(value) ? getRawTag$2(value) : objectToString$2(value);
15157
- }
15158
- function isObjectLike$6(value) {
15159
- return value != null && typeof value == "object";
15160
- }
15161
- var isArray$5 = Array.isArray;
15162
- var isArray$6 = isArray$5;
15163
- function isObject$7(value) {
15164
- var type4 = typeof value;
15165
- return value != null && (type4 == "object" || type4 == "function");
15166
- }
15167
- function identity$1(value) {
15168
- return value;
15169
- }
15170
- var asyncTag$1 = "[object AsyncFunction]", funcTag$5 = "[object Function]", genTag$3 = "[object GeneratorFunction]", proxyTag$1 = "[object Proxy]";
15171
- function isFunction$4(value) {
15172
- if (!isObject$7(value)) {
15173
- return false;
15174
- }
15175
- var tag2 = baseGetTag$5(value);
15176
- return tag2 == funcTag$5 || tag2 == genTag$3 || tag2 == asyncTag$1 || tag2 == proxyTag$1;
15177
- }
15178
- var coreJsData$2 = root$a["__core-js_shared__"];
15179
- var coreJsData$3 = coreJsData$2;
15180
- var maskSrcKey$1 = function() {
15181
- var uid = /[^.]+$/.exec(coreJsData$3 && coreJsData$3.keys && coreJsData$3.keys.IE_PROTO || "");
15182
- return uid ? "Symbol(src)_1." + uid : "";
15183
- }();
15184
- function isMasked$2(func) {
15185
- return !!maskSrcKey$1 && maskSrcKey$1 in func;
15186
- }
15187
- var funcProto$4 = Function.prototype;
15188
- var funcToString$4 = funcProto$4.toString;
15189
- function toSource$3(func) {
15190
- if (func != null) {
15191
- try {
15192
- return funcToString$4.call(func);
15193
- } catch (e) {
15194
- }
15195
- try {
15196
- return func + "";
15197
- } catch (e) {
15198
- }
15199
- }
15200
- return "";
15201
- }
15202
- var reRegExpChar$1 = /[\\^$.*+?()[\]{}|]/g;
15203
- var reIsHostCtor$1 = /^\[object .+?Constructor\]$/;
15204
- var funcProto$3 = Function.prototype, objectProto$o = Object.prototype;
15205
- var funcToString$3 = funcProto$3.toString;
15206
- var hasOwnProperty$j = objectProto$o.hasOwnProperty;
15207
- var reIsNative$1 = RegExp(
15208
- "^" + funcToString$3.call(hasOwnProperty$j).replace(reRegExpChar$1, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
15209
- );
15210
- function baseIsNative$2(value) {
15211
- if (!isObject$7(value) || isMasked$2(value)) {
15212
- return false;
15213
- }
15214
- var pattern4 = isFunction$4(value) ? reIsNative$1 : reIsHostCtor$1;
15215
- return pattern4.test(toSource$3(value));
15216
- }
15217
- function getValue$2(object4, key) {
15218
- return object4 == null ? void 0 : object4[key];
15219
- }
15220
- function getNative$8(object4, key) {
15221
- var value = getValue$2(object4, key);
15222
- return baseIsNative$2(value) ? value : void 0;
15223
- }
15224
- var WeakMap$3 = getNative$8(root$a, "WeakMap");
15225
- var WeakMap$4 = WeakMap$3;
15226
- var objectCreate$1 = Object.create;
15227
- var baseCreate$2 = function() {
15228
- function object4() {
15229
- }
15230
- return function(proto) {
15231
- if (!isObject$7(proto)) {
15232
- return {};
15233
- }
15234
- if (objectCreate$1) {
15235
- return objectCreate$1(proto);
15236
- }
15237
- object4.prototype = proto;
15238
- var result2 = new object4();
15239
- object4.prototype = void 0;
15240
- return result2;
15241
- };
15242
- }();
15243
- var baseCreate$3 = baseCreate$2;
15244
- function apply(func, thisArg, args) {
15245
- switch (args.length) {
15246
- case 0:
15247
- return func.call(thisArg);
15248
- case 1:
15249
- return func.call(thisArg, args[0]);
15250
- case 2:
15251
- return func.call(thisArg, args[0], args[1]);
15252
- case 3:
15253
- return func.call(thisArg, args[0], args[1], args[2]);
15254
- }
15255
- return func.apply(thisArg, args);
15256
- }
15257
- function copyArray$2(source, array4) {
15258
- var index2 = -1, length = source.length;
15259
- array4 || (array4 = Array(length));
15260
- while (++index2 < length) {
15261
- array4[index2] = source[index2];
15262
- }
15263
- return array4;
15264
- }
15265
- var HOT_COUNT = 800, HOT_SPAN = 16;
15266
- var nativeNow = Date.now;
15267
- function shortOut(func) {
15268
- var count = 0, lastCalled = 0;
15269
- return function() {
15270
- var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled);
15271
- lastCalled = stamp;
15272
- if (remaining > 0) {
15273
- if (++count >= HOT_COUNT) {
15274
- return arguments[0];
15275
- }
15276
- } else {
15277
- count = 0;
15278
- }
15279
- return func.apply(void 0, arguments);
15280
- };
15281
- }
15282
- function constant(value) {
15283
- return function() {
15284
- return value;
15285
- };
15286
- }
15287
- var defineProperty$2 = function() {
15288
- try {
15289
- var func = getNative$8(Object, "defineProperty");
15290
- func({}, "", {});
15291
- return func;
15292
- } catch (e) {
15293
- }
15294
- }();
15295
- var defineProperty$3 = defineProperty$2;
15296
- var baseSetToString = !defineProperty$3 ? identity$1 : function(func, string3) {
15297
- return defineProperty$3(func, "toString", {
15298
- "configurable": true,
15299
- "enumerable": false,
15300
- "value": constant(string3),
15301
- "writable": true
15302
- });
15303
- };
15304
- var baseSetToString$1 = baseSetToString;
15305
- var setToString = shortOut(baseSetToString$1);
15306
- var setToString$1 = setToString;
15307
- function arrayEach$2(array4, iteratee) {
15308
- var index2 = -1, length = array4 == null ? 0 : array4.length;
15309
- while (++index2 < length) {
15310
- if (iteratee(array4[index2], index2, array4) === false) {
15311
- break;
15312
- }
15313
- }
15314
- return array4;
15315
- }
15316
- var MAX_SAFE_INTEGER$3 = 9007199254740991;
15317
- var reIsUint$1 = /^(?:0|[1-9]\d*)$/;
15318
- function isIndex$2(value, length) {
15319
- var type4 = typeof value;
15320
- length = length == null ? MAX_SAFE_INTEGER$3 : length;
15321
- return !!length && (type4 == "number" || type4 != "symbol" && reIsUint$1.test(value)) && (value > -1 && value % 1 == 0 && value < length);
15322
- }
15323
- function baseAssignValue$3(object4, key, value) {
15324
- if (key == "__proto__" && defineProperty$3) {
15325
- defineProperty$3(object4, key, {
15326
- "configurable": true,
15327
- "enumerable": true,
15328
- "value": value,
15329
- "writable": true
15330
- });
15331
- } else {
15332
- object4[key] = value;
15333
- }
15334
- }
15335
- function eq$3(value, other) {
15336
- return value === other || value !== value && other !== other;
15337
- }
15338
- var objectProto$n = Object.prototype;
15339
- var hasOwnProperty$i = objectProto$n.hasOwnProperty;
15340
- function assignValue$3(object4, key, value) {
15341
- var objValue = object4[key];
15342
- if (!(hasOwnProperty$i.call(object4, key) && eq$3(objValue, value)) || value === void 0 && !(key in object4)) {
15343
- baseAssignValue$3(object4, key, value);
15344
- }
15345
- }
15346
- function copyObject$5(source, props, object4, customizer) {
15347
- var isNew = !object4;
15348
- object4 || (object4 = {});
15349
- var index2 = -1, length = props.length;
15350
- while (++index2 < length) {
15351
- var key = props[index2];
15352
- var newValue = customizer ? customizer(object4[key], source[key], key, object4, source) : void 0;
15353
- if (newValue === void 0) {
15354
- newValue = source[key];
15355
- }
15356
- if (isNew) {
15357
- baseAssignValue$3(object4, key, newValue);
15358
- } else {
15359
- assignValue$3(object4, key, newValue);
15360
- }
15361
- }
15362
- return object4;
15363
- }
15364
- var nativeMax = Math.max;
15365
- function overRest(func, start, transform) {
15366
- start = nativeMax(start === void 0 ? func.length - 1 : start, 0);
15367
- return function() {
15368
- var args = arguments, index2 = -1, length = nativeMax(args.length - start, 0), array4 = Array(length);
15369
- while (++index2 < length) {
15370
- array4[index2] = args[start + index2];
15371
- }
15372
- index2 = -1;
15373
- var otherArgs = Array(start + 1);
15374
- while (++index2 < start) {
15375
- otherArgs[index2] = args[index2];
15376
- }
15377
- otherArgs[start] = transform(array4);
15378
- return apply(func, this, otherArgs);
15379
- };
15380
- }
15381
- function baseRest(func, start) {
15382
- return setToString$1(overRest(func, start, identity$1), func + "");
15383
- }
15384
- var MAX_SAFE_INTEGER$2 = 9007199254740991;
15385
- function isLength$3(value) {
15386
- return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$2;
15387
- }
15388
- function isArrayLike$4(value) {
15389
- return value != null && isLength$3(value.length) && !isFunction$4(value);
15390
- }
15391
- function isIterateeCall(value, index2, object4) {
15392
- if (!isObject$7(object4)) {
15393
- return false;
15394
- }
15395
- var type4 = typeof index2;
15396
- if (type4 == "number" ? isArrayLike$4(object4) && isIndex$2(index2, object4.length) : type4 == "string" && index2 in object4) {
15397
- return eq$3(object4[index2], value);
15398
- }
15399
- return false;
15400
- }
15401
- function createAssigner(assigner) {
15402
- return baseRest(function(object4, sources) {
15403
- var index2 = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : void 0, guard = length > 2 ? sources[2] : void 0;
15404
- customizer = assigner.length > 3 && typeof customizer == "function" ? (length--, customizer) : void 0;
15405
- if (guard && isIterateeCall(sources[0], sources[1], guard)) {
15406
- customizer = length < 3 ? void 0 : customizer;
15407
- length = 1;
15408
- }
15409
- object4 = Object(object4);
15410
- while (++index2 < length) {
15411
- var source = sources[index2];
15412
- if (source) {
15413
- assigner(object4, source, index2, customizer);
15414
- }
15415
- }
15416
- return object4;
15417
- });
15418
- }
15419
- var objectProto$m = Object.prototype;
15420
- function isPrototype$4(value) {
15421
- var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto$m;
15422
- return value === proto;
15423
- }
15424
- function baseTimes$2(n, iteratee) {
15425
- var index2 = -1, result2 = Array(n);
15426
- while (++index2 < n) {
15427
- result2[index2] = iteratee(index2);
15428
- }
15429
- return result2;
15430
- }
15431
- var argsTag$5 = "[object Arguments]";
15432
- function baseIsArguments$2(value) {
15433
- return isObjectLike$6(value) && baseGetTag$5(value) == argsTag$5;
15434
- }
15435
- var objectProto$l = Object.prototype;
15436
- var hasOwnProperty$h = objectProto$l.hasOwnProperty;
15437
- var propertyIsEnumerable$3 = objectProto$l.propertyIsEnumerable;
15438
- var isArguments$2 = baseIsArguments$2(function() {
15439
- return arguments;
15440
- }()) ? baseIsArguments$2 : function(value) {
15441
- return isObjectLike$6(value) && hasOwnProperty$h.call(value, "callee") && !propertyIsEnumerable$3.call(value, "callee");
15442
- };
15443
- var isArguments$3 = isArguments$2;
15444
- function stubFalse$1() {
15445
- return false;
15446
- }
15447
- var freeExports$2 = typeof exports == "object" && exports && !exports.nodeType && exports;
15448
- var freeModule$2 = freeExports$2 && typeof module == "object" && module && !module.nodeType && module;
15449
- var moduleExports$2 = freeModule$2 && freeModule$2.exports === freeExports$2;
15450
- var Buffer$1 = moduleExports$2 ? root$a.Buffer : void 0;
15451
- var nativeIsBuffer = Buffer$1 ? Buffer$1.isBuffer : void 0;
15452
- var isBuffer$3 = nativeIsBuffer || stubFalse$1;
15453
- var isBuffer$4 = isBuffer$3;
15454
- var argsTag$4 = "[object Arguments]", arrayTag$3 = "[object Array]", boolTag$5 = "[object Boolean]", dateTag$5 = "[object Date]", errorTag$3 = "[object Error]", funcTag$4 = "[object Function]", mapTag$9 = "[object Map]", numberTag$5 = "[object Number]", objectTag$6 = "[object Object]", regexpTag$5 = "[object RegExp]", setTag$9 = "[object Set]", stringTag$5 = "[object String]", weakMapTag$5 = "[object WeakMap]";
15455
- var arrayBufferTag$5 = "[object ArrayBuffer]", dataViewTag$7 = "[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]";
15456
- var typedArrayTags$1 = {};
15457
- typedArrayTags$1[float32Tag$5] = typedArrayTags$1[float64Tag$5] = typedArrayTags$1[int8Tag$5] = typedArrayTags$1[int16Tag$5] = typedArrayTags$1[int32Tag$5] = typedArrayTags$1[uint8Tag$5] = typedArrayTags$1[uint8ClampedTag$5] = typedArrayTags$1[uint16Tag$5] = typedArrayTags$1[uint32Tag$5] = true;
15458
- typedArrayTags$1[argsTag$4] = typedArrayTags$1[arrayTag$3] = typedArrayTags$1[arrayBufferTag$5] = typedArrayTags$1[boolTag$5] = typedArrayTags$1[dataViewTag$7] = typedArrayTags$1[dateTag$5] = typedArrayTags$1[errorTag$3] = typedArrayTags$1[funcTag$4] = typedArrayTags$1[mapTag$9] = typedArrayTags$1[numberTag$5] = typedArrayTags$1[objectTag$6] = typedArrayTags$1[regexpTag$5] = typedArrayTags$1[setTag$9] = typedArrayTags$1[stringTag$5] = typedArrayTags$1[weakMapTag$5] = false;
15459
- function baseIsTypedArray$2(value) {
15460
- return isObjectLike$6(value) && isLength$3(value.length) && !!typedArrayTags$1[baseGetTag$5(value)];
15461
- }
15462
- function baseUnary$4(func) {
15463
- return function(value) {
15464
- return func(value);
15465
- };
15466
- }
15467
- var freeExports$1 = typeof exports == "object" && exports && !exports.nodeType && exports;
15468
- var freeModule$1 = freeExports$1 && typeof module == "object" && module && !module.nodeType && module;
15469
- var moduleExports$1 = freeModule$1 && freeModule$1.exports === freeExports$1;
15470
- var freeProcess = moduleExports$1 && freeGlobal$3.process;
15471
- var nodeUtil$3 = function() {
15472
- try {
15473
- var types2 = freeModule$1 && freeModule$1.require && freeModule$1.require("util").types;
15474
- if (types2) {
15475
- return types2;
15476
- }
15477
- return freeProcess && freeProcess.binding && freeProcess.binding("util");
15478
- } catch (e) {
15479
- }
15480
- }();
15481
- var nodeUtil$4 = nodeUtil$3;
15482
- var nodeIsTypedArray$1 = nodeUtil$4 && nodeUtil$4.isTypedArray;
15483
- var isTypedArray$2 = nodeIsTypedArray$1 ? baseUnary$4(nodeIsTypedArray$1) : baseIsTypedArray$2;
15484
- var isTypedArray$3 = isTypedArray$2;
15485
- var objectProto$k = Object.prototype;
15486
- var hasOwnProperty$g = objectProto$k.hasOwnProperty;
15487
- function arrayLikeKeys$3(value, inherited) {
15488
- var isArr = isArray$6(value), isArg = !isArr && isArguments$3(value), isBuff = !isArr && !isArg && isBuffer$4(value), isType = !isArr && !isArg && !isBuff && isTypedArray$3(value), skipIndexes = isArr || isArg || isBuff || isType, result2 = skipIndexes ? baseTimes$2(value.length, String) : [], length = result2.length;
15489
- for (var key in value) {
15490
- if ((inherited || hasOwnProperty$g.call(value, key)) && !(skipIndexes && (key == "length" || isBuff && (key == "offset" || key == "parent") || isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || isIndex$2(key, length)))) {
15491
- result2.push(key);
15492
- }
15493
- }
15494
- return result2;
15495
- }
15496
- function overArg$3(func, transform) {
15497
- return function(arg) {
15498
- return func(transform(arg));
15499
- };
15500
- }
15501
- var nativeKeys$2 = overArg$3(Object.keys, Object);
15502
- var nativeKeys$3 = nativeKeys$2;
15503
- var objectProto$j = Object.prototype;
15504
- var hasOwnProperty$f = objectProto$j.hasOwnProperty;
15505
- function baseKeys$2(object4) {
15506
- if (!isPrototype$4(object4)) {
15507
- return nativeKeys$3(object4);
15508
- }
15509
- var result2 = [];
15510
- for (var key in Object(object4)) {
15511
- if (hasOwnProperty$f.call(object4, key) && key != "constructor") {
15512
- result2.push(key);
15513
- }
15514
- }
15515
- return result2;
15516
- }
15517
- function keys$4(object4) {
15518
- return isArrayLike$4(object4) ? arrayLikeKeys$3(object4) : baseKeys$2(object4);
15519
- }
15520
- function nativeKeysIn$2(object4) {
15521
- var result2 = [];
15522
- if (object4 != null) {
15523
- for (var key in Object(object4)) {
15524
- result2.push(key);
15525
- }
15526
- }
15527
- return result2;
15528
- }
15529
- var objectProto$i = Object.prototype;
15530
- var hasOwnProperty$e = objectProto$i.hasOwnProperty;
15531
- function baseKeysIn$2(object4) {
15532
- if (!isObject$7(object4)) {
15533
- return nativeKeysIn$2(object4);
15534
- }
15535
- var isProto = isPrototype$4(object4), result2 = [];
15536
- for (var key in object4) {
15537
- if (!(key == "constructor" && (isProto || !hasOwnProperty$e.call(object4, key)))) {
15538
- result2.push(key);
15539
- }
15540
- }
15541
- return result2;
15542
- }
15543
- function keysIn$4(object4) {
15544
- return isArrayLike$4(object4) ? arrayLikeKeys$3(object4, true) : baseKeysIn$2(object4);
15545
- }
15546
- var nativeCreate$5 = getNative$8(Object, "create");
15547
- var nativeCreate$6 = nativeCreate$5;
15548
- function hashClear$2() {
15549
- this.__data__ = nativeCreate$6 ? nativeCreate$6(null) : {};
15550
- this.size = 0;
15551
- }
15552
- function hashDelete$2(key) {
15553
- var result2 = this.has(key) && delete this.__data__[key];
15554
- this.size -= result2 ? 1 : 0;
15555
- return result2;
15556
- }
15557
- var HASH_UNDEFINED$3 = "__lodash_hash_undefined__";
15558
- var objectProto$h = Object.prototype;
15559
- var hasOwnProperty$d = objectProto$h.hasOwnProperty;
15560
- function hashGet$2(key) {
15561
- var data = this.__data__;
15562
- if (nativeCreate$6) {
15563
- var result2 = data[key];
15564
- return result2 === HASH_UNDEFINED$3 ? void 0 : result2;
15565
- }
15566
- return hasOwnProperty$d.call(data, key) ? data[key] : void 0;
15567
- }
15568
- var objectProto$g = Object.prototype;
15569
- var hasOwnProperty$c = objectProto$g.hasOwnProperty;
15570
- function hashHas$2(key) {
15571
- var data = this.__data__;
15572
- return nativeCreate$6 ? data[key] !== void 0 : hasOwnProperty$c.call(data, key);
15573
- }
15574
- var HASH_UNDEFINED$2 = "__lodash_hash_undefined__";
15575
- function hashSet$2(key, value) {
15576
- var data = this.__data__;
15577
- this.size += this.has(key) ? 0 : 1;
15578
- data[key] = nativeCreate$6 && value === void 0 ? HASH_UNDEFINED$2 : value;
15579
- return this;
15580
- }
15581
- function Hash$2(entries) {
15582
- var index2 = -1, length = entries == null ? 0 : entries.length;
15583
- this.clear();
15584
- while (++index2 < length) {
15585
- var entry = entries[index2];
15586
- this.set(entry[0], entry[1]);
15587
- }
15588
- }
15589
- Hash$2.prototype.clear = hashClear$2;
15590
- Hash$2.prototype["delete"] = hashDelete$2;
15591
- Hash$2.prototype.get = hashGet$2;
15592
- Hash$2.prototype.has = hashHas$2;
15593
- Hash$2.prototype.set = hashSet$2;
15594
- function listCacheClear$2() {
15595
- this.__data__ = [];
15596
- this.size = 0;
15597
- }
15598
- function assocIndexOf$5(array4, key) {
15599
- var length = array4.length;
15600
- while (length--) {
15601
- if (eq$3(array4[length][0], key)) {
15602
- return length;
15603
- }
15604
- }
15605
- return -1;
15606
- }
15607
- var arrayProto$1 = Array.prototype;
15608
- var splice$1 = arrayProto$1.splice;
15609
- function listCacheDelete$2(key) {
15610
- var data = this.__data__, index2 = assocIndexOf$5(data, key);
15611
- if (index2 < 0) {
15612
- return false;
15613
- }
15614
- var lastIndex = data.length - 1;
15615
- if (index2 == lastIndex) {
15616
- data.pop();
15617
- } else {
15618
- splice$1.call(data, index2, 1);
15619
- }
15620
- --this.size;
15621
- return true;
15622
- }
15623
- function listCacheGet$2(key) {
15624
- var data = this.__data__, index2 = assocIndexOf$5(data, key);
15625
- return index2 < 0 ? void 0 : data[index2][1];
15626
- }
15627
- function listCacheHas$2(key) {
15628
- return assocIndexOf$5(this.__data__, key) > -1;
15629
- }
15630
- function listCacheSet$2(key, value) {
15631
- var data = this.__data__, index2 = assocIndexOf$5(data, key);
15632
- if (index2 < 0) {
15633
- ++this.size;
15634
- data.push([key, value]);
15635
- } else {
15636
- data[index2][1] = value;
15637
- }
15638
- return this;
15639
- }
15640
- function ListCache$5(entries) {
15641
- var index2 = -1, length = entries == null ? 0 : entries.length;
15642
- this.clear();
15643
- while (++index2 < length) {
15644
- var entry = entries[index2];
15645
- this.set(entry[0], entry[1]);
15646
- }
15647
- }
15648
- ListCache$5.prototype.clear = listCacheClear$2;
15649
- ListCache$5.prototype["delete"] = listCacheDelete$2;
15650
- ListCache$5.prototype.get = listCacheGet$2;
15651
- ListCache$5.prototype.has = listCacheHas$2;
15652
- ListCache$5.prototype.set = listCacheSet$2;
15653
- var Map$5 = getNative$8(root$a, "Map");
15654
- var Map$6 = Map$5;
15655
- function mapCacheClear$2() {
15656
- this.size = 0;
15657
- this.__data__ = {
15658
- "hash": new Hash$2(),
15659
- "map": new (Map$6 || ListCache$5)(),
15660
- "string": new Hash$2()
15661
- };
15662
- }
15663
- function isKeyable$2(value) {
15664
- var type4 = typeof value;
15665
- return type4 == "string" || type4 == "number" || type4 == "symbol" || type4 == "boolean" ? value !== "__proto__" : value === null;
15666
- }
15667
- function getMapData$5(map2, key) {
15668
- var data = map2.__data__;
15669
- return isKeyable$2(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
15670
- }
15671
- function mapCacheDelete$2(key) {
15672
- var result2 = getMapData$5(this, key)["delete"](key);
15673
- this.size -= result2 ? 1 : 0;
15674
- return result2;
15675
- }
15676
- function mapCacheGet$2(key) {
15677
- return getMapData$5(this, key).get(key);
15678
- }
15679
- function mapCacheHas$2(key) {
15680
- return getMapData$5(this, key).has(key);
15681
- }
15682
- function mapCacheSet$2(key, value) {
15683
- var data = getMapData$5(this, key), size = data.size;
15684
- data.set(key, value);
15685
- this.size += data.size == size ? 0 : 1;
15686
- return this;
15687
- }
15688
- function MapCache$2(entries) {
15689
- var index2 = -1, length = entries == null ? 0 : entries.length;
15690
- this.clear();
15691
- while (++index2 < length) {
15692
- var entry = entries[index2];
15693
- this.set(entry[0], entry[1]);
15694
- }
15695
- }
15696
- MapCache$2.prototype.clear = mapCacheClear$2;
15697
- MapCache$2.prototype["delete"] = mapCacheDelete$2;
15698
- MapCache$2.prototype.get = mapCacheGet$2;
15699
- MapCache$2.prototype.has = mapCacheHas$2;
15700
- MapCache$2.prototype.set = mapCacheSet$2;
15701
- function arrayPush$3(array4, values) {
15702
- var index2 = -1, length = values.length, offset2 = array4.length;
15703
- while (++index2 < length) {
15704
- array4[offset2 + index2] = values[index2];
15705
- }
15706
- return array4;
15707
- }
15708
- var getPrototype$3 = overArg$3(Object.getPrototypeOf, Object);
15709
- var getPrototype$4 = getPrototype$3;
15710
- var objectTag$5 = "[object Object]";
15711
- var funcProto$2 = Function.prototype, objectProto$f = Object.prototype;
15712
- var funcToString$2 = funcProto$2.toString;
15713
- var hasOwnProperty$b = objectProto$f.hasOwnProperty;
15714
- var objectCtorString = funcToString$2.call(Object);
15715
- function isPlainObject(value) {
15716
- if (!isObjectLike$6(value) || baseGetTag$5(value) != objectTag$5) {
15717
- return false;
15718
- }
15719
- var proto = getPrototype$4(value);
15720
- if (proto === null) {
15721
- return true;
15722
- }
15723
- var Ctor = hasOwnProperty$b.call(proto, "constructor") && proto.constructor;
15724
- return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString$2.call(Ctor) == objectCtorString;
15725
- }
15726
- function stackClear$2() {
15727
- this.__data__ = new ListCache$5();
15728
- this.size = 0;
15729
- }
15730
- function stackDelete$2(key) {
15731
- var data = this.__data__, result2 = data["delete"](key);
15732
- this.size = data.size;
15733
- return result2;
15734
- }
15735
- function stackGet$2(key) {
15736
- return this.__data__.get(key);
15737
- }
15738
- function stackHas$2(key) {
15739
- return this.__data__.has(key);
15740
- }
15741
- var LARGE_ARRAY_SIZE$1 = 200;
15742
- function stackSet$2(key, value) {
15743
- var data = this.__data__;
15744
- if (data instanceof ListCache$5) {
15745
- var pairs = data.__data__;
15746
- if (!Map$6 || pairs.length < LARGE_ARRAY_SIZE$1 - 1) {
15747
- pairs.push([key, value]);
15748
- this.size = ++data.size;
15749
- return this;
15750
- }
15751
- data = this.__data__ = new MapCache$2(pairs);
15752
- }
15753
- data.set(key, value);
15754
- this.size = data.size;
15755
- return this;
15756
- }
15757
- function Stack$2(entries) {
15758
- var data = this.__data__ = new ListCache$5(entries);
15759
- this.size = data.size;
15760
- }
15761
- Stack$2.prototype.clear = stackClear$2;
15762
- Stack$2.prototype["delete"] = stackDelete$2;
15763
- Stack$2.prototype.get = stackGet$2;
15764
- Stack$2.prototype.has = stackHas$2;
15765
- Stack$2.prototype.set = stackSet$2;
15766
- function baseAssign$2(object4, source) {
15767
- return object4 && copyObject$5(source, keys$4(source), object4);
15768
- }
15769
- function baseAssignIn$2(object4, source) {
15770
- return object4 && copyObject$5(source, keysIn$4(source), object4);
15771
- }
15772
- var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
15773
- var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
15774
- var moduleExports = freeModule && freeModule.exports === freeExports;
15775
- var Buffer2 = moduleExports ? root$a.Buffer : void 0, allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : void 0;
15776
- function cloneBuffer$1(buffer, isDeep) {
15777
- if (isDeep) {
15778
- return buffer.slice();
15779
- }
15780
- var length = buffer.length, result2 = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
15781
- buffer.copy(result2);
15782
- return result2;
15783
- }
15784
- function arrayFilter$2(array4, predicate) {
15785
- var index2 = -1, length = array4 == null ? 0 : array4.length, resIndex = 0, result2 = [];
15786
- while (++index2 < length) {
15787
- var value = array4[index2];
15788
- if (predicate(value, index2, array4)) {
15789
- result2[resIndex++] = value;
15790
- }
15791
- }
15792
- return result2;
15793
- }
15794
- function stubArray$3() {
15795
- return [];
15796
- }
15797
- var objectProto$e = Object.prototype;
15798
- var propertyIsEnumerable$2 = objectProto$e.propertyIsEnumerable;
15799
- var nativeGetSymbols$3 = Object.getOwnPropertySymbols;
15800
- var getSymbols$4 = !nativeGetSymbols$3 ? stubArray$3 : function(object4) {
15801
- if (object4 == null) {
15802
- return [];
15803
- }
15804
- object4 = Object(object4);
15805
- return arrayFilter$2(nativeGetSymbols$3(object4), function(symbol) {
15806
- return propertyIsEnumerable$2.call(object4, symbol);
15807
- });
15808
- };
15809
- var getSymbols$5 = getSymbols$4;
15810
- function copySymbols$2(source, object4) {
15811
- return copyObject$5(source, getSymbols$5(source), object4);
15812
- }
15813
- var nativeGetSymbols$2 = Object.getOwnPropertySymbols;
15814
- var getSymbolsIn$3 = !nativeGetSymbols$2 ? stubArray$3 : function(object4) {
15815
- var result2 = [];
15816
- while (object4) {
15817
- arrayPush$3(result2, getSymbols$5(object4));
15818
- object4 = getPrototype$4(object4);
15819
- }
15820
- return result2;
15821
- };
15822
- var getSymbolsIn$4 = getSymbolsIn$3;
15823
- function copySymbolsIn$2(source, object4) {
15824
- return copyObject$5(source, getSymbolsIn$4(source), object4);
15825
- }
15826
- function baseGetAllKeys$3(object4, keysFunc, symbolsFunc) {
15827
- var result2 = keysFunc(object4);
15828
- return isArray$6(object4) ? result2 : arrayPush$3(result2, symbolsFunc(object4));
15829
- }
15830
- function getAllKeys$2(object4) {
15831
- return baseGetAllKeys$3(object4, keys$4, getSymbols$5);
15832
- }
15833
- function getAllKeysIn$2(object4) {
15834
- return baseGetAllKeys$3(object4, keysIn$4, getSymbolsIn$4);
15835
- }
15836
- var DataView$2 = getNative$8(root$a, "DataView");
15837
- var DataView$3 = DataView$2;
15838
- var Promise$3 = getNative$8(root$a, "Promise");
15839
- var Promise$4 = Promise$3;
15840
- var Set$3 = getNative$8(root$a, "Set");
15841
- var Set$4 = Set$3;
15842
- var mapTag$8 = "[object Map]", objectTag$4 = "[object Object]", promiseTag$1 = "[object Promise]", setTag$8 = "[object Set]", weakMapTag$4 = "[object WeakMap]";
15843
- var dataViewTag$6 = "[object DataView]";
15844
- var dataViewCtorString$1 = toSource$3(DataView$3), mapCtorString$1 = toSource$3(Map$6), promiseCtorString$1 = toSource$3(Promise$4), setCtorString$1 = toSource$3(Set$4), weakMapCtorString$1 = toSource$3(WeakMap$4);
15845
- var getTag$4 = baseGetTag$5;
15846
- if (DataView$3 && getTag$4(new DataView$3(new ArrayBuffer(1))) != dataViewTag$6 || Map$6 && getTag$4(new Map$6()) != mapTag$8 || Promise$4 && getTag$4(Promise$4.resolve()) != promiseTag$1 || Set$4 && getTag$4(new Set$4()) != setTag$8 || WeakMap$4 && getTag$4(new WeakMap$4()) != weakMapTag$4) {
15847
- getTag$4 = function(value) {
15848
- var result2 = baseGetTag$5(value), Ctor = result2 == objectTag$4 ? value.constructor : void 0, ctorString = Ctor ? toSource$3(Ctor) : "";
15849
- if (ctorString) {
15850
- switch (ctorString) {
15851
- case dataViewCtorString$1:
15852
- return dataViewTag$6;
15853
- case mapCtorString$1:
15854
- return mapTag$8;
15855
- case promiseCtorString$1:
15856
- return promiseTag$1;
15857
- case setCtorString$1:
15858
- return setTag$8;
15859
- case weakMapCtorString$1:
15860
- return weakMapTag$4;
15861
- }
15862
- }
15863
- return result2;
15864
- };
15865
- }
15866
- var getTag$5 = getTag$4;
15867
- var objectProto$d = Object.prototype;
15868
- var hasOwnProperty$a = objectProto$d.hasOwnProperty;
15869
- function initCloneArray$2(array4) {
15870
- var length = array4.length, result2 = new array4.constructor(length);
15871
- if (length && typeof array4[0] == "string" && hasOwnProperty$a.call(array4, "index")) {
15872
- result2.index = array4.index;
15873
- result2.input = array4.input;
15874
- }
15875
- return result2;
15876
- }
15877
- var Uint8Array$3 = root$a.Uint8Array;
15878
- var Uint8Array$4 = Uint8Array$3;
15879
- function cloneArrayBuffer$4(arrayBuffer) {
15880
- var result2 = new arrayBuffer.constructor(arrayBuffer.byteLength);
15881
- new Uint8Array$4(result2).set(new Uint8Array$4(arrayBuffer));
15882
- return result2;
15883
- }
15884
- function cloneDataView$2(dataView, isDeep) {
15885
- var buffer = isDeep ? cloneArrayBuffer$4(dataView.buffer) : dataView.buffer;
15886
- return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
15887
- }
15888
- var reFlags$1 = /\w*$/;
15889
- function cloneRegExp$2(regexp4) {
15890
- var result2 = new regexp4.constructor(regexp4.source, reFlags$1.exec(regexp4));
15891
- result2.lastIndex = regexp4.lastIndex;
15892
- return result2;
15893
- }
15894
- var symbolProto$1 = Symbol$6 ? Symbol$6.prototype : void 0, symbolValueOf$1 = symbolProto$1 ? symbolProto$1.valueOf : void 0;
15895
- function cloneSymbol$2(symbol) {
15896
- return symbolValueOf$1 ? Object(symbolValueOf$1.call(symbol)) : {};
15897
- }
15898
- function cloneTypedArray$2(typedArray, isDeep) {
15899
- var buffer = isDeep ? cloneArrayBuffer$4(typedArray.buffer) : typedArray.buffer;
15900
- return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
15901
- }
15902
- var boolTag$4 = "[object Boolean]", dateTag$4 = "[object Date]", mapTag$7 = "[object Map]", numberTag$4 = "[object Number]", regexpTag$4 = "[object RegExp]", setTag$7 = "[object Set]", stringTag$4 = "[object String]", symbolTag$3 = "[object Symbol]";
15903
- var arrayBufferTag$4 = "[object ArrayBuffer]", dataViewTag$5 = "[object DataView]", float32Tag$4 = "[object Float32Array]", float64Tag$4 = "[object Float64Array]", int8Tag$4 = "[object Int8Array]", int16Tag$4 = "[object Int16Array]", int32Tag$4 = "[object Int32Array]", uint8Tag$4 = "[object Uint8Array]", uint8ClampedTag$4 = "[object Uint8ClampedArray]", uint16Tag$4 = "[object Uint16Array]", uint32Tag$4 = "[object Uint32Array]";
15904
- function initCloneByTag$2(object4, tag2, isDeep) {
15905
- var Ctor = object4.constructor;
15906
- switch (tag2) {
15907
- case arrayBufferTag$4:
15908
- return cloneArrayBuffer$4(object4);
15909
- case boolTag$4:
15910
- case dateTag$4:
15911
- return new Ctor(+object4);
15912
- case dataViewTag$5:
15913
- return cloneDataView$2(object4, isDeep);
15914
- case float32Tag$4:
15915
- case float64Tag$4:
15916
- case int8Tag$4:
15917
- case int16Tag$4:
15918
- case int32Tag$4:
15919
- case uint8Tag$4:
15920
- case uint8ClampedTag$4:
15921
- case uint16Tag$4:
15922
- case uint32Tag$4:
15923
- return cloneTypedArray$2(object4, isDeep);
15924
- case mapTag$7:
15925
- return new Ctor();
15926
- case numberTag$4:
15927
- case stringTag$4:
15928
- return new Ctor(object4);
15929
- case regexpTag$4:
15930
- return cloneRegExp$2(object4);
15931
- case setTag$7:
15932
- return new Ctor();
15933
- case symbolTag$3:
15934
- return cloneSymbol$2(object4);
15935
- }
15936
- }
15937
- function initCloneObject$2(object4) {
15938
- return typeof object4.constructor == "function" && !isPrototype$4(object4) ? baseCreate$3(getPrototype$4(object4)) : {};
15939
- }
15940
- var mapTag$6 = "[object Map]";
15941
- function baseIsMap$2(value) {
15942
- return isObjectLike$6(value) && getTag$5(value) == mapTag$6;
15943
- }
15944
- var nodeIsMap$1 = nodeUtil$4 && nodeUtil$4.isMap;
15945
- var isMap$2 = nodeIsMap$1 ? baseUnary$4(nodeIsMap$1) : baseIsMap$2;
15946
- var isMap$3 = isMap$2;
15947
- var setTag$6 = "[object Set]";
15948
- function baseIsSet$2(value) {
15949
- return isObjectLike$6(value) && getTag$5(value) == setTag$6;
15950
- }
15951
- var nodeIsSet$1 = nodeUtil$4 && nodeUtil$4.isSet;
15952
- var isSet$2 = nodeIsSet$1 ? baseUnary$4(nodeIsSet$1) : baseIsSet$2;
15953
- var isSet$3 = isSet$2;
15954
- var CLONE_DEEP_FLAG$3 = 1, CLONE_FLAT_FLAG$1 = 2, CLONE_SYMBOLS_FLAG$3 = 4;
15955
- var argsTag$3 = "[object Arguments]", arrayTag$2 = "[object Array]", boolTag$3 = "[object Boolean]", dateTag$3 = "[object Date]", errorTag$2 = "[object Error]", funcTag$3 = "[object Function]", genTag$2 = "[object GeneratorFunction]", mapTag$5 = "[object Map]", numberTag$3 = "[object Number]", objectTag$3 = "[object Object]", regexpTag$3 = "[object RegExp]", setTag$5 = "[object Set]", stringTag$3 = "[object String]", symbolTag$2 = "[object Symbol]", weakMapTag$3 = "[object WeakMap]";
15956
- var arrayBufferTag$3 = "[object ArrayBuffer]", dataViewTag$4 = "[object DataView]", float32Tag$3 = "[object Float32Array]", float64Tag$3 = "[object Float64Array]", int8Tag$3 = "[object Int8Array]", int16Tag$3 = "[object Int16Array]", int32Tag$3 = "[object Int32Array]", uint8Tag$3 = "[object Uint8Array]", uint8ClampedTag$3 = "[object Uint8ClampedArray]", uint16Tag$3 = "[object Uint16Array]", uint32Tag$3 = "[object Uint32Array]";
15957
- var cloneableTags$1 = {};
15958
- cloneableTags$1[argsTag$3] = cloneableTags$1[arrayTag$2] = cloneableTags$1[arrayBufferTag$3] = cloneableTags$1[dataViewTag$4] = cloneableTags$1[boolTag$3] = cloneableTags$1[dateTag$3] = cloneableTags$1[float32Tag$3] = cloneableTags$1[float64Tag$3] = cloneableTags$1[int8Tag$3] = cloneableTags$1[int16Tag$3] = cloneableTags$1[int32Tag$3] = cloneableTags$1[mapTag$5] = cloneableTags$1[numberTag$3] = cloneableTags$1[objectTag$3] = cloneableTags$1[regexpTag$3] = cloneableTags$1[setTag$5] = cloneableTags$1[stringTag$3] = cloneableTags$1[symbolTag$2] = cloneableTags$1[uint8Tag$3] = cloneableTags$1[uint8ClampedTag$3] = cloneableTags$1[uint16Tag$3] = cloneableTags$1[uint32Tag$3] = true;
15959
- cloneableTags$1[errorTag$2] = cloneableTags$1[funcTag$3] = cloneableTags$1[weakMapTag$3] = false;
15960
- function baseClone$2(value, bitmask, customizer, key, object4, stack) {
15961
- var result2, isDeep = bitmask & CLONE_DEEP_FLAG$3, isFlat = bitmask & CLONE_FLAT_FLAG$1, isFull = bitmask & CLONE_SYMBOLS_FLAG$3;
15962
- if (customizer) {
15963
- result2 = object4 ? customizer(value, key, object4, stack) : customizer(value);
15964
- }
15965
- if (result2 !== void 0) {
15966
- return result2;
15967
- }
15968
- if (!isObject$7(value)) {
15969
- return value;
15970
- }
15971
- var isArr = isArray$6(value);
15972
- if (isArr) {
15973
- result2 = initCloneArray$2(value);
15974
- if (!isDeep) {
15975
- return copyArray$2(value, result2);
15976
- }
15977
- } else {
15978
- var tag2 = getTag$5(value), isFunc = tag2 == funcTag$3 || tag2 == genTag$2;
15979
- if (isBuffer$4(value)) {
15980
- return cloneBuffer$1(value, isDeep);
15981
- }
15982
- if (tag2 == objectTag$3 || tag2 == argsTag$3 || isFunc && !object4) {
15983
- result2 = isFlat || isFunc ? {} : initCloneObject$2(value);
15984
- if (!isDeep) {
15985
- return isFlat ? copySymbolsIn$2(value, baseAssignIn$2(result2, value)) : copySymbols$2(value, baseAssign$2(result2, value));
15986
- }
15987
- } else {
15988
- if (!cloneableTags$1[tag2]) {
15989
- return object4 ? value : {};
15990
- }
15991
- result2 = initCloneByTag$2(value, tag2, isDeep);
15992
- }
15993
- }
15994
- stack || (stack = new Stack$2());
15995
- var stacked = stack.get(value);
15996
- if (stacked) {
15997
- return stacked;
15998
- }
15999
- stack.set(value, result2);
16000
- if (isSet$3(value)) {
16001
- value.forEach(function(subValue) {
16002
- result2.add(baseClone$2(subValue, bitmask, customizer, subValue, value, stack));
16003
- });
16004
- } else if (isMap$3(value)) {
16005
- value.forEach(function(subValue, key2) {
16006
- result2.set(key2, baseClone$2(subValue, bitmask, customizer, key2, value, stack));
16007
- });
16008
- }
16009
- var keysFunc = isFull ? isFlat ? getAllKeysIn$2 : getAllKeys$2 : isFlat ? keysIn$4 : keys$4;
16010
- var props = isArr ? void 0 : keysFunc(value);
16011
- arrayEach$2(props || value, function(subValue, key2) {
16012
- if (props) {
16013
- key2 = subValue;
16014
- subValue = value[key2];
16015
- }
16016
- assignValue$3(result2, key2, baseClone$2(subValue, bitmask, customizer, key2, value, stack));
16017
- });
16018
- return result2;
16019
- }
16020
- var CLONE_DEEP_FLAG$2 = 1, CLONE_SYMBOLS_FLAG$2 = 4;
16021
- function cloneDeep$1(value) {
16022
- return baseClone$2(value, CLONE_DEEP_FLAG$2 | CLONE_SYMBOLS_FLAG$2);
16023
- }
16024
- function createBaseFor(fromRight) {
16025
- return function(object4, iteratee, keysFunc) {
16026
- var index2 = -1, iterable = Object(object4), props = keysFunc(object4), length = props.length;
16027
- while (length--) {
16028
- var key = props[fromRight ? length : ++index2];
16029
- if (iteratee(iterable[key], key, iterable) === false) {
16030
- break;
16031
- }
16032
- }
16033
- return object4;
16034
- };
16035
- }
16036
- var baseFor = createBaseFor();
16037
- var baseFor$1 = baseFor;
16038
- function assignMergeValue(object4, key, value) {
16039
- if (value !== void 0 && !eq$3(object4[key], value) || value === void 0 && !(key in object4)) {
16040
- baseAssignValue$3(object4, key, value);
16041
- }
16042
- }
16043
- function isArrayLikeObject(value) {
16044
- return isObjectLike$6(value) && isArrayLike$4(value);
16045
- }
16046
- function safeGet(object4, key) {
16047
- if (key === "constructor" && typeof object4[key] === "function") {
16048
- return;
16049
- }
16050
- if (key == "__proto__") {
16051
- return;
16052
- }
16053
- return object4[key];
16054
- }
16055
- function toPlainObject(value) {
16056
- return copyObject$5(value, keysIn$4(value));
16057
- }
16058
- function baseMergeDeep(object4, source, key, srcIndex, mergeFunc, customizer, stack) {
16059
- var objValue = safeGet(object4, key), srcValue = safeGet(source, key), stacked = stack.get(srcValue);
16060
- if (stacked) {
16061
- assignMergeValue(object4, key, stacked);
16062
- return;
16063
- }
16064
- var newValue = customizer ? customizer(objValue, srcValue, key + "", object4, source, stack) : void 0;
16065
- var isCommon = newValue === void 0;
16066
- if (isCommon) {
16067
- var isArr = isArray$6(srcValue), isBuff = !isArr && isBuffer$4(srcValue), isTyped = !isArr && !isBuff && isTypedArray$3(srcValue);
16068
- newValue = srcValue;
16069
- if (isArr || isBuff || isTyped) {
16070
- if (isArray$6(objValue)) {
16071
- newValue = objValue;
16072
- } else if (isArrayLikeObject(objValue)) {
16073
- newValue = copyArray$2(objValue);
16074
- } else if (isBuff) {
16075
- isCommon = false;
16076
- newValue = cloneBuffer$1(srcValue, true);
16077
- } else if (isTyped) {
16078
- isCommon = false;
16079
- newValue = cloneTypedArray$2(srcValue, true);
16080
- } else {
16081
- newValue = [];
16082
- }
16083
- } else if (isPlainObject(srcValue) || isArguments$3(srcValue)) {
16084
- newValue = objValue;
16085
- if (isArguments$3(objValue)) {
16086
- newValue = toPlainObject(objValue);
16087
- } else if (!isObject$7(objValue) || isFunction$4(objValue)) {
16088
- newValue = initCloneObject$2(srcValue);
16089
- }
16090
- } else {
16091
- isCommon = false;
16092
- }
16093
- }
16094
- if (isCommon) {
16095
- stack.set(srcValue, newValue);
16096
- mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
16097
- stack["delete"](srcValue);
16098
- }
16099
- assignMergeValue(object4, key, newValue);
16100
- }
16101
- function baseMerge(object4, source, srcIndex, customizer, stack) {
16102
- if (object4 === source) {
16103
- return;
16104
- }
16105
- baseFor$1(source, function(srcValue, key) {
16106
- stack || (stack = new Stack$2());
16107
- if (isObject$7(srcValue)) {
16108
- baseMergeDeep(object4, source, key, srcIndex, baseMerge, customizer, stack);
16109
- } else {
16110
- var newValue = customizer ? customizer(safeGet(object4, key), srcValue, key + "", object4, source, stack) : void 0;
16111
- if (newValue === void 0) {
16112
- newValue = srcValue;
16113
- }
16114
- assignMergeValue(object4, key, newValue);
16115
- }
16116
- }, keysIn$4);
16117
- }
16118
- var mergeWith = createAssigner(function(object4, source, srcIndex, customizer) {
16119
- baseMerge(object4, source, srcIndex, customizer);
16120
- });
16121
- var mergeWith$1 = mergeWith;
16122
- var merge$1 = createAssigner(function(object4, source, srcIndex) {
16123
- baseMerge(object4, source, srcIndex);
16124
- });
16125
- var merge$2 = merge$1;
16126
15119
  var RadioMenu = defineComponent({
16127
15120
  name: "DCategorySearchRadioMenu",
16128
15121
  props: typeMenuProps,
@@ -16326,6 +15319,9 @@ var TextInputMenu = defineComponent({
16326
15319
  }
16327
15320
  });
16328
15321
  const inputNumberProps = {
15322
+ modelValue: {
15323
+ type: [Number, String]
15324
+ },
16329
15325
  placeholder: {
16330
15326
  type: String
16331
15327
  },
@@ -16348,9 +15344,6 @@ const inputNumberProps = {
16348
15344
  size: {
16349
15345
  type: String
16350
15346
  },
16351
- modelValue: {
16352
- type: Number
16353
- },
16354
15347
  precision: {
16355
15348
  type: Number
16356
15349
  },
@@ -16361,6 +15354,10 @@ const inputNumberProps = {
16361
15354
  showGlowStyle: {
16362
15355
  type: Boolean,
16363
15356
  default: true
15357
+ },
15358
+ allowEmpty: {
15359
+ type: Boolean,
15360
+ default: false
16364
15361
  }
16365
15362
  };
16366
15363
  const ns$g = useNamespace$1("input-number");
@@ -16477,8 +15474,8 @@ function useEvent$1(props, ctx2, inputRef) {
16477
15474
  return state.userInputValue;
16478
15475
  }
16479
15476
  let currentValue = state.currentValue;
16480
- if (currentValue === "" || isUndefined(currentValue) || Number.isNaN(currentValue)) {
16481
- return "";
15477
+ if (!currentValue && currentValue !== 0) {
15478
+ return null;
16482
15479
  }
16483
15480
  if (isNumber(currentValue)) {
16484
15481
  currentValue = currentValue.toFixed(numPrecision.value);
@@ -16495,14 +15492,14 @@ function useEvent$1(props, ctx2, inputRef) {
16495
15492
  return toPrecision(val + step2.value * addOrNot);
16496
15493
  };
16497
15494
  const correctValue = (value) => {
15495
+ if (!value && value !== 0 && props.allowEmpty) {
15496
+ return null;
15497
+ }
16498
15498
  const valueStr = value + "";
16499
15499
  if (props.reg && !valueStr.match(new RegExp(props.reg))) {
16500
15500
  return void 0;
16501
15501
  }
16502
15502
  let newVal = Number(value);
16503
- if (newVal !== 0 && (!Number(value) || Number.isNaN(newVal))) {
16504
- return void 0;
16505
- }
16506
15503
  if (!isUndefined(props.precision)) {
16507
15504
  newVal = toPrecision(newVal);
16508
15505
  }
@@ -16515,7 +15512,7 @@ function useEvent$1(props, ctx2, inputRef) {
16515
15512
  const oldVal = state.currentValue;
16516
15513
  const newVal = correctValue(value);
16517
15514
  state.userInputValue = void 0;
16518
- if (newVal !== 0 && !newVal) {
15515
+ if (newVal !== 0 && newVal !== null && !newVal) {
16519
15516
  ctx2.emit("update:modelValue", oldVal);
16520
15517
  return;
16521
15518
  }
@@ -16776,7 +15773,7 @@ function useCategorySearch(props, ctx2) {
16776
15773
  const chooseItem = (tag2, chooseItem2) => {
16777
15774
  afterDropdownClosed();
16778
15775
  const key = tag2.filterKey || "label";
16779
- tag2.value = { value: chooseItem2, cache: cloneDeep$1(chooseItem2) };
15776
+ tag2.value = { value: chooseItem2, cache: lodash.exports.cloneDeep(chooseItem2) };
16780
15777
  tag2.value[key] = chooseItem2[key];
16781
15778
  tag2.title = setTitle(tag2, "radio");
16782
15779
  updateSelectedTags(tag2);
@@ -16798,7 +15795,7 @@ function useCategorySearch(props, ctx2) {
16798
15795
  if (result2) {
16799
15796
  tag2.title = setTitle(tag2, "checkbox", result2);
16800
15797
  tag2.value[key] = result2;
16801
- tag2.value.cache = cloneDeep$1(tag2.value.value);
15798
+ tag2.value.cache = lodash.exports.cloneDeep(tag2.value.value);
16802
15799
  updateSelectedTags(tag2);
16803
15800
  } else {
16804
15801
  removeTag(tag2);
@@ -16921,8 +15918,8 @@ function useCategorySearch(props, ctx2) {
16921
15918
  watch(
16922
15919
  [selectedTags, category, defaultSearchField],
16923
15920
  () => {
16924
- innerSelectedTags.value = cloneDeep$1(selectedTags.value);
16925
- innerCategory.value = cloneDeep$1(category.value);
15921
+ innerSelectedTags.value = lodash.exports.cloneDeep(selectedTags.value);
15922
+ innerCategory.value = lodash.exports.cloneDeep(category.value);
16926
15923
  init();
16927
15924
  },
16928
15925
  { immediate: true, deep: true }
@@ -16962,7 +15959,7 @@ function useCategorySearch(props, ctx2) {
16962
15959
  watch(
16963
15960
  () => extendConfig == null ? void 0 : extendConfig.value,
16964
15961
  () => {
16965
- merge$2(operationConfig, (extendConfig == null ? void 0 : extendConfig.value) || {});
15962
+ lodash.exports.merge(operationConfig, (extendConfig == null ? void 0 : extendConfig.value) || {});
16966
15963
  },
16967
15964
  { immediate: true, deep: true }
16968
15965
  );
@@ -17069,7 +16066,7 @@ function useCategorySearch(props, ctx2) {
17069
16066
  field.value.value = [result2];
17070
16067
  }
17071
16068
  field.value[filterKey] = value;
17072
- field.value.cache = cloneDeep$1(field.value.value);
16069
+ field.value.cache = lodash.exports.cloneDeep(field.value.value);
17073
16070
  field.title = setTitle(field, field.type || "", value);
17074
16071
  }
17075
16072
  function chooseCategory(item) {
@@ -17127,7 +16124,7 @@ function useCategorySearch(props, ctx2) {
17127
16124
  function initCategoryDisplay(isInit = false) {
17128
16125
  const selectedTagsField = innerSelectedTags.value.map((item) => item.field);
17129
16126
  if (isInit) {
17130
- innerCategory.value = cloneDeep$1(innerCategory.value) || [];
16127
+ innerCategory.value = lodash.exports.cloneDeep(innerCategory.value) || [];
17131
16128
  categoryOrder = [];
17132
16129
  categoryDictionary = {};
17133
16130
  initGroupAndDictionary();
@@ -17224,7 +16221,7 @@ function useCategorySearch(props, ctx2) {
17224
16221
  const index2 = innerSelectedTags.value.map((item) => item.field).indexOf(tag2.field);
17225
16222
  if (index2 > -1) {
17226
16223
  if (!((_a = tag2.value) == null ? void 0 : _a.value)) {
17227
- merge$2(tag2, innerSelectedTags.value[index2]);
16224
+ lodash.exports.merge(tag2, innerSelectedTags.value[index2]);
17228
16225
  }
17229
16226
  innerSelectedTags.value[index2] = tag2;
17230
16227
  } else {
@@ -17263,9 +16260,9 @@ function useCategorySearch(props, ctx2) {
17263
16260
  if (isSelectedTags && innerCategory.value) {
17264
16261
  let result2 = "";
17265
16262
  const originItem = innerCategory.value.find((categoryItem) => categoryItem.field === item.field);
17266
- mergeWith$1(item, originItem, mergeCheck);
16263
+ lodash.exports.mergeWith(item, originItem, mergeCheck);
17267
16264
  if ((_a = item.value) == null ? void 0 : _a.value) {
17268
- item.value.cache = cloneDeep$1(item.value.value);
16265
+ item.value.cache = lodash.exports.cloneDeep(item.value.value);
17269
16266
  result2 = joinLabelTypes.includes(item.type || "") ? getItemValue(item.value.value, item.filterKey || "label") : "";
17270
16267
  }
17271
16268
  item.title = setTitle(item, item.type || "", result2);
@@ -17313,7 +16310,7 @@ function useCategorySearch(props, ctx2) {
17313
16310
  } else {
17314
16311
  item.value = preValue;
17315
16312
  }
17316
- item.value.cache = item.value.value && typeof item.value.value === "object" && cloneDeep$1(item.value.value) || item.value.value;
16313
+ item.value.cache = item.value.value && typeof item.value.value === "object" && lodash.exports.cloneDeep(item.value.value) || item.value.value;
17317
16314
  return item;
17318
16315
  }
17319
16316
  return {
@@ -17991,6 +16988,10 @@ const codeReviewProps = {
17991
16988
  type: Boolean,
17992
16989
  default: true
17993
16990
  },
16991
+ allowChecked: {
16992
+ type: Boolean,
16993
+ default: false
16994
+ },
17994
16995
  allowExpand: {
17995
16996
  type: Boolean,
17996
16997
  default: true
@@ -18226,6 +17227,17 @@ function updateExpandLineCount(expandDom, newExpandDom) {
18226
17227
  const newChangedNumRight = parseInt((curMatches == null ? void 0 : curMatches[4]) || "") + parseInt((newMatches == null ? void 0 : newMatches[4]) || "");
18227
17228
  expandDom.children[1].children[0].innerText = `@@ -${(newMatches == null ? void 0 : newMatches[1]) || 0},${newChangedNumLeft} +${(newMatches == null ? void 0 : newMatches[3]) || 0},${newChangedNumRight} @@`;
18228
17229
  }
17230
+ function addClassToDiffCode(codeStrArr, theClassName) {
17231
+ if (!codeStrArr || codeStrArr.length === 0) {
17232
+ return null;
17233
+ }
17234
+ const newArray = codeStrArr.map((item) => {
17235
+ const classNames = item == null ? void 0 : item.match(/class="([^"]+)"/)[1].split(" ");
17236
+ classNames.push(theClassName);
17237
+ return item.replace(/class="([^"]+)"/, `class="${classNames.join(" ")}"`);
17238
+ });
17239
+ return newArray;
17240
+ }
18229
17241
  function parseDiffCode(container, code, outputFormat, isAddCode = false) {
18230
17242
  var _a;
18231
17243
  const diff2HtmlUi = new Diff2HtmlUI(container, code, {
@@ -18245,8 +17257,10 @@ function parseDiffCode(container, code, outputFormat, isAddCode = false) {
18245
17257
  let newTrStr = "";
18246
17258
  const offset2 = trListLength / 2;
18247
17259
  for (let i = 0; i < trListLength / 2; i++) {
18248
- const leftTdList = trList[i].match(TableTdReg);
18249
- const rightTdList = trList[i + offset2].match(TableTdReg);
17260
+ let leftTdList = trList[i].match(TableTdReg);
17261
+ let rightTdList = trList[i + offset2].match(TableTdReg);
17262
+ leftTdList = addClassToDiffCode(leftTdList, "d-code-left");
17263
+ rightTdList = addClassToDiffCode(rightTdList, "d-code-right");
18250
17264
  newTrStr += `<tr>${leftTdList == null ? void 0 : leftTdList.join("")}${rightTdList == null ? void 0 : rightTdList.join("")}</tr>`;
18251
17265
  }
18252
17266
  const tbodyAttr = ((_a = diffHtmlStr.match(TableTbodyAttrReg)) == null ? void 0 : _a[1]) || "";
@@ -18723,13 +17737,24 @@ function useCodeReviewFold(props, ctx2) {
18723
17737
  return { isFold, toggleFold };
18724
17738
  }
18725
17739
  function useCodeReviewComment(reviewContentRef, props, ctx2) {
18726
- const { outputFormat, allowComment } = toRefs(props);
17740
+ const { outputFormat, allowComment, allowChecked } = toRefs(props);
18727
17741
  const ns2 = useNamespace$1("code-review");
18728
17742
  const commentLeft = ref(-100);
18729
17743
  const commentTop = ref(-100);
18730
17744
  let currentLeftLineNumber = -1;
18731
17745
  let currentRightLineNumber = -1;
18732
17746
  let lastLineNumberContainer;
17747
+ let checkedLineNumberContainer = [];
17748
+ let isShift = false;
17749
+ let currentLeftLineNumbers = [];
17750
+ let currentRightLineNumbers = [];
17751
+ let checkedLineCodeString = {};
17752
+ watch(() => outputFormat.value, () => {
17753
+ checkedLineNumberContainer = [];
17754
+ currentLeftLineNumbers = [];
17755
+ currentRightLineNumbers = [];
17756
+ checkedLineCodeString = [];
17757
+ });
18733
17758
  const resetLeftTop = () => {
18734
17759
  commentLeft.value = -100;
18735
17760
  commentTop.value = -100;
@@ -18812,6 +17837,141 @@ function useCodeReviewComment(reviewContentRef, props, ctx2) {
18812
17837
  resetLeftTop();
18813
17838
  }
18814
17839
  };
17840
+ function commentKeyDown(e) {
17841
+ switch (e.key) {
17842
+ case "Shift":
17843
+ isShift = true;
17844
+ break;
17845
+ }
17846
+ }
17847
+ function commentKeyUp(e) {
17848
+ e.preventDefault();
17849
+ switch (e.key) {
17850
+ case "Shift":
17851
+ isShift = false;
17852
+ break;
17853
+ }
17854
+ }
17855
+ const unCommentKeyDown = () => {
17856
+ document.removeEventListener("keydown", commentKeyDown);
17857
+ document.removeEventListener("keyup", commentKeyUp);
17858
+ };
17859
+ const onCommentKeyDown = () => {
17860
+ document.addEventListener("keydown", commentKeyDown);
17861
+ document.addEventListener("keyup", commentKeyUp);
17862
+ };
17863
+ const getLineNumbers = (currentNumber, currentNumbers, e) => {
17864
+ if (currentNumber === -1) {
17865
+ return currentNumbers;
17866
+ }
17867
+ if (currentNumbers.length === 0) {
17868
+ return [currentNumber];
17869
+ }
17870
+ const numbers = [...currentNumbers];
17871
+ let max = Math.max(...numbers);
17872
+ const min = Math.min(...numbers);
17873
+ if (currentNumber > max) {
17874
+ max = currentNumber;
17875
+ }
17876
+ return Array.from({ length: max - min + 1 }, (_, i) => i + min);
17877
+ };
17878
+ const getCommonClassAndJudge = (side) => {
17879
+ const lineClassName = side === "line-by-line" ? ".d2h-code-linenumber" : ".d2h-code-side-linenumber";
17880
+ const linenumberDom = reviewContentRef.value.querySelectorAll(lineClassName);
17881
+ const checkedLine = [currentLeftLineNumbers, currentRightLineNumbers];
17882
+ return {
17883
+ linenumberDom,
17884
+ checkedLine
17885
+ };
17886
+ };
17887
+ const addCommentCheckedClass = (Dom) => {
17888
+ !Dom.classList.contains("comment-checked") && Dom.classList.add("comment-checked");
17889
+ };
17890
+ const addCommentClassSingle = (side) => {
17891
+ const { linenumberDom, checkedLine } = getCommonClassAndJudge(side);
17892
+ const checkedCodeContent = [];
17893
+ for (let i = 0; i < linenumberDom.length; i++) {
17894
+ const lineNumberDomLeft = linenumberDom[i].children[0];
17895
+ const lineNumberDomRight = linenumberDom[i].children[1];
17896
+ if (lineNumberDomLeft || lineNumberDomRight) {
17897
+ const codeLineNumberLeft = parseInt(lineNumberDomLeft == null ? void 0 : lineNumberDomLeft.innerText);
17898
+ const codeLineNumberRight = parseInt(lineNumberDomRight == null ? void 0 : lineNumberDomRight.innerText);
17899
+ if (checkedLine[0].includes(codeLineNumberLeft) || checkedLine[1].includes(codeLineNumberRight)) {
17900
+ checkedLineNumberContainer.push(linenumberDom[i]);
17901
+ const codeNode = linenumberDom[i].nextSibling.nodeName === "#text" ? linenumberDom[i].nextSibling.nextSibling : linenumberDom[i].nextSibling;
17902
+ checkedCodeContent.push(codeNode == null ? void 0 : codeNode.innerText);
17903
+ addCommentCheckedClass(linenumberDom[i]);
17904
+ addCommentCheckedClass(codeNode);
17905
+ }
17906
+ }
17907
+ }
17908
+ checkedLineCodeString = checkedCodeContent;
17909
+ };
17910
+ const addCommentClassDouble = (side) => {
17911
+ var _a;
17912
+ const { linenumberDom, checkedLine } = getCommonClassAndJudge(side);
17913
+ const checkedCodeContentLeft = [];
17914
+ const checkedCodeContentRight = [];
17915
+ function checkedFunc(Dom) {
17916
+ checkedLineNumberContainer.push(Dom);
17917
+ const codeNode = Dom.nextSibling.nodeName === "#text" ? Dom.nextSibling.nextSibling : Dom.nextSibling;
17918
+ addCommentCheckedClass(Dom);
17919
+ addCommentCheckedClass(codeNode);
17920
+ return codeNode == null ? void 0 : codeNode.innerText;
17921
+ }
17922
+ for (let i = 0; i < linenumberDom.length; i++) {
17923
+ const codeLineNumber = parseInt((_a = linenumberDom[i]) == null ? void 0 : _a.innerHTML);
17924
+ if (linenumberDom[i].classList.contains("d-code-left") && checkedLine[0].includes(codeLineNumber)) {
17925
+ const lineNumText = checkedFunc(linenumberDom[i]);
17926
+ checkedCodeContentLeft.push(lineNumText);
17927
+ continue;
17928
+ }
17929
+ if (linenumberDom[i].classList.contains("d-code-right") && checkedLine[1].includes(codeLineNumber)) {
17930
+ const lineNumText = checkedFunc(linenumberDom[i]);
17931
+ checkedCodeContentRight.push(lineNumText);
17932
+ }
17933
+ }
17934
+ checkedLineCodeString = { leftCode: checkedCodeContentLeft, rightCode: checkedCodeContentRight };
17935
+ };
17936
+ const updateCheckedLineClass = () => {
17937
+ if (outputFormat.value === "line-by-line") {
17938
+ addCommentClassSingle(outputFormat.value);
17939
+ return;
17940
+ }
17941
+ addCommentClassDouble(outputFormat.value);
17942
+ };
17943
+ const resetCommentClass = () => {
17944
+ for (let i = 0; i < checkedLineNumberContainer.length; i++) {
17945
+ checkedLineNumberContainer[i].classList.remove("comment-checked");
17946
+ const codeNode = checkedLineNumberContainer[i].nextSibling.nodeName === "#text" ? checkedLineNumberContainer[i].nextSibling.nextSibling : checkedLineNumberContainer[i].nextSibling;
17947
+ codeNode == null ? void 0 : codeNode.classList.remove("comment-checked");
17948
+ }
17949
+ checkedLineNumberContainer = [];
17950
+ };
17951
+ const commentShiftClick = (e) => {
17952
+ currentLeftLineNumbers = currentLeftLineNumber === -1 ? currentLeftLineNumbers : getLineNumbers(currentLeftLineNumber, currentLeftLineNumbers);
17953
+ currentRightLineNumbers = currentRightLineNumber === -1 ? currentRightLineNumbers : getLineNumbers(currentRightLineNumber, currentRightLineNumbers);
17954
+ updateCheckedLineClass();
17955
+ };
17956
+ const commentClick = (e) => {
17957
+ let obj = { left: currentLeftLineNumber, right: currentRightLineNumber };
17958
+ if (currentLeftLineNumbers.length >= 1 || currentRightLineNumbers.length >= 1 && allowChecked.value) {
17959
+ const maxCurrentLeftLineNumber = currentLeftLineNumbers[currentLeftLineNumbers.length - 1];
17960
+ const maxCurrentRightLineNumber = currentRightLineNumbers[currentRightLineNumbers.length - 1];
17961
+ if (maxCurrentLeftLineNumber === currentLeftLineNumber || maxCurrentRightLineNumber === currentRightLineNumber) {
17962
+ obj = { left: currentLeftLineNumber, right: currentRightLineNumber, details: {
17963
+ lefts: currentLeftLineNumbers,
17964
+ rights: currentRightLineNumbers,
17965
+ codes: checkedLineCodeString
17966
+ } };
17967
+ } else {
17968
+ currentLeftLineNumbers = [];
17969
+ currentRightLineNumbers = [];
17970
+ resetCommentClass();
17971
+ }
17972
+ }
17973
+ ctx2.emit("addComment", obj);
17974
+ };
18815
17975
  const onCommentIconClick = (e) => {
18816
17976
  if (e) {
18817
17977
  const composedPath = e.composedPath();
@@ -18825,9 +17985,11 @@ function useCodeReviewComment(reviewContentRef, props, ctx2) {
18825
17985
  return;
18826
17986
  }
18827
17987
  }
18828
- if (outputFormat.value === "line-by-line")
18829
- ;
18830
- ctx2.emit("addComment", { left: currentLeftLineNumber, right: currentRightLineNumber });
17988
+ if (isShift && allowChecked.value) {
17989
+ commentShiftClick();
17990
+ return;
17991
+ }
17992
+ commentClick();
18831
17993
  };
18832
17994
  const insertComment = (lineNumber, lineSide, commentDom) => {
18833
17995
  if (outputFormat.value === "line-by-line") {
@@ -18876,8 +18038,11 @@ function useCodeReviewComment(reviewContentRef, props, ctx2) {
18876
18038
  commentLeft,
18877
18039
  commentTop,
18878
18040
  mouseEvent,
18041
+ updateCheckedLineClass,
18879
18042
  onCommentMouseLeave,
18880
18043
  onCommentIconClick,
18044
+ onCommentKeyDown,
18045
+ unCommentKeyDown,
18881
18046
  insertComment,
18882
18047
  removeComment
18883
18048
  };
@@ -18908,15 +18073,23 @@ var CodeReview = defineComponent({
18908
18073
  mouseEvent,
18909
18074
  onCommentMouseLeave,
18910
18075
  onCommentIconClick,
18076
+ onCommentKeyDown,
18077
+ unCommentKeyDown,
18911
18078
  insertComment,
18912
- removeComment
18079
+ removeComment,
18080
+ updateCheckedLineClass
18913
18081
  } = useCodeReviewComment(reviewContentRef, props, ctx2);
18914
18082
  onMounted(() => {
18915
18083
  ctx2.emit("afterViewInit", {
18916
18084
  toggleFold,
18917
18085
  insertComment,
18918
- removeComment
18086
+ removeComment,
18087
+ updateCheckedLineClass
18919
18088
  });
18089
+ onCommentKeyDown();
18090
+ });
18091
+ onBeforeUnmount(() => {
18092
+ unCommentKeyDown();
18920
18093
  });
18921
18094
  provide(CodeReviewInjectionKey, {
18922
18095
  diffType,
@@ -24582,9 +23755,9 @@ const timerPickerPanelProps = {
24582
23755
  }
24583
23756
  };
24584
23757
  var dayjs_min = { exports: {} };
24585
- (function(module2, exports2) {
23758
+ (function(module, exports) {
24586
23759
  !function(t, e) {
24587
- module2.exports = e();
23760
+ module.exports = e();
24588
23761
  }(commonjsGlobal, function() {
24589
23762
  var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h2 = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t2) {
24590
23763
  var e2 = ["th", "st", "nd", "rd"], n2 = t2 % 100;
@@ -35255,15 +34428,15 @@ function stubFalse() {
35255
34428
  return false;
35256
34429
  }
35257
34430
  var stubFalse_1 = stubFalse;
35258
- (function(module2, exports2) {
34431
+ (function(module, exports) {
35259
34432
  var root2 = _root, stubFalse2 = stubFalse_1;
35260
- var freeExports2 = exports2 && !exports2.nodeType && exports2;
35261
- var freeModule2 = freeExports2 && true && module2 && !module2.nodeType && module2;
35262
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
35263
- var Buffer3 = moduleExports2 ? root2.Buffer : void 0;
35264
- var nativeIsBuffer2 = Buffer3 ? Buffer3.isBuffer : void 0;
35265
- var isBuffer2 = nativeIsBuffer2 || stubFalse2;
35266
- module2.exports = isBuffer2;
34433
+ var freeExports = exports && !exports.nodeType && exports;
34434
+ var freeModule = freeExports && true && module && !module.nodeType && module;
34435
+ var moduleExports = freeModule && freeModule.exports === freeExports;
34436
+ var Buffer2 = moduleExports ? root2.Buffer : void 0;
34437
+ var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
34438
+ var isBuffer2 = nativeIsBuffer || stubFalse2;
34439
+ module.exports = isBuffer2;
35267
34440
  })(isBuffer$2, isBuffer$2.exports);
35268
34441
  var MAX_SAFE_INTEGER$1 = 9007199254740991;
35269
34442
  var reIsUint = /^(?:0|[1-9]\d*)$/;
@@ -35295,23 +34468,23 @@ function baseUnary$3(func) {
35295
34468
  }
35296
34469
  var _baseUnary = baseUnary$3;
35297
34470
  var _nodeUtil = { exports: {} };
35298
- (function(module2, exports2) {
34471
+ (function(module, exports) {
35299
34472
  var freeGlobal2 = _freeGlobal;
35300
- var freeExports2 = exports2 && !exports2.nodeType && exports2;
35301
- var freeModule2 = freeExports2 && true && module2 && !module2.nodeType && module2;
35302
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
35303
- var freeProcess2 = moduleExports2 && freeGlobal2.process;
34473
+ var freeExports = exports && !exports.nodeType && exports;
34474
+ var freeModule = freeExports && true && module && !module.nodeType && module;
34475
+ var moduleExports = freeModule && freeModule.exports === freeExports;
34476
+ var freeProcess = moduleExports && freeGlobal2.process;
35304
34477
  var nodeUtil2 = function() {
35305
34478
  try {
35306
- var types2 = freeModule2 && freeModule2.require && freeModule2.require("util").types;
34479
+ var types2 = freeModule && freeModule.require && freeModule.require("util").types;
35307
34480
  if (types2) {
35308
34481
  return types2;
35309
34482
  }
35310
- return freeProcess2 && freeProcess2.binding && freeProcess2.binding("util");
34483
+ return freeProcess && freeProcess.binding && freeProcess.binding("util");
35311
34484
  } catch (e) {
35312
34485
  }
35313
34486
  }();
35314
- module2.exports = nodeUtil2;
34487
+ module.exports = nodeUtil2;
35315
34488
  })(_nodeUtil, _nodeUtil.exports);
35316
34489
  var baseIsTypedArray = _baseIsTypedArray, baseUnary$2 = _baseUnary, nodeUtil$2 = _nodeUtil.exports;
35317
34490
  var nodeIsTypedArray = nodeUtil$2 && nodeUtil$2.isTypedArray;
@@ -35413,21 +34586,21 @@ function baseAssignIn$1(object4, source) {
35413
34586
  }
35414
34587
  var _baseAssignIn = baseAssignIn$1;
35415
34588
  var _cloneBuffer = { exports: {} };
35416
- (function(module2, exports2) {
34589
+ (function(module, exports) {
35417
34590
  var root2 = _root;
35418
- var freeExports2 = exports2 && !exports2.nodeType && exports2;
35419
- var freeModule2 = freeExports2 && true && module2 && !module2.nodeType && module2;
35420
- var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2;
35421
- var Buffer3 = moduleExports2 ? root2.Buffer : void 0, allocUnsafe2 = Buffer3 ? Buffer3.allocUnsafe : void 0;
34591
+ var freeExports = exports && !exports.nodeType && exports;
34592
+ var freeModule = freeExports && true && module && !module.nodeType && module;
34593
+ var moduleExports = freeModule && freeModule.exports === freeExports;
34594
+ var Buffer2 = moduleExports ? root2.Buffer : void 0, allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : void 0;
35422
34595
  function cloneBuffer2(buffer, isDeep) {
35423
34596
  if (isDeep) {
35424
34597
  return buffer.slice();
35425
34598
  }
35426
- var length = buffer.length, result2 = allocUnsafe2 ? allocUnsafe2(length) : new buffer.constructor(length);
34599
+ var length = buffer.length, result2 = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
35427
34600
  buffer.copy(result2);
35428
34601
  return result2;
35429
34602
  }
35430
- module2.exports = cloneBuffer2;
34603
+ module.exports = cloneBuffer2;
35431
34604
  })(_cloneBuffer, _cloneBuffer.exports);
35432
34605
  function copyArray$1(source, array4) {
35433
34606
  var index2 = -1, length = source.length;
@@ -36371,7 +35544,7 @@ function locale(key) {
36371
35544
  loading: "\u6B63\u5728\u52A0\u8F7D\u4E2D...",
36372
35545
  pasting: "\u60A8\u7C98\u8D34\u5185\u5BB9\u8F83\u591A, \u6B63\u5728\u52AA\u529B\u52A0\u8F7D\u4E2D\uFF0C\u8BF7\u8010\u5FC3\u7B49\u5F85..."
36373
35546
  };
36374
- return localeMap[key];
35547
+ return localeMap[key] || key;
36375
35548
  }
36376
35549
  function _enforceMaxLength(cm, changes) {
36377
35550
  const maxLength = cm.getOption("maxLength");
@@ -36671,8 +35844,8 @@ function useEditorMd(props, ctx2) {
36671
35844
  onMounted(async () => {
36672
35845
  await import("codemirror/addon/display/placeholder.js");
36673
35846
  await import("codemirror/mode/markdown/markdown.js");
36674
- const module2 = await import("codemirror");
36675
- CodeMirror = module2.default;
35847
+ const module = await import("codemirror");
35848
+ CodeMirror = module.default;
36676
35849
  initEditor();
36677
35850
  document.addEventListener("click", onDocumentClick);
36678
35851
  });
@@ -36724,8 +35897,10 @@ function useEditorMd(props, ctx2) {
36724
35897
  renderRef,
36725
35898
  containerRef,
36726
35899
  toolbars,
35900
+ toolbarConfig,
36727
35901
  previewHtmlList,
36728
35902
  isHintShow,
35903
+ customToolbars,
36729
35904
  getEditorIns,
36730
35905
  onPaste,
36731
35906
  previewContentChange,
@@ -37206,8 +36381,8 @@ var ToolbarItem = defineComponent({
37206
36381
  }
37207
36382
  });
37208
36383
  function useToolbar() {
37209
- const { toolbars, toolbarConfig } = inject(EditorMdInjectionKey);
37210
- return { toolbars, toolbarConfig };
36384
+ const { toolbars, toolbarConfig, customToolbars } = inject(EditorMdInjectionKey);
36385
+ return { toolbars, toolbarConfig, customToolbars };
37211
36386
  }
37212
36387
  var toolbar = "";
37213
36388
  var Toolbar = defineComponent({
@@ -37215,17 +36390,22 @@ var Toolbar = defineComponent({
37215
36390
  setup() {
37216
36391
  const {
37217
36392
  toolbars,
37218
- toolbarConfig
36393
+ toolbarConfig,
36394
+ customToolbars
37219
36395
  } = useToolbar();
36396
+ const tempToolbars = {
36397
+ ...toolbars,
36398
+ ...customToolbars == null ? void 0 : customToolbars.value
36399
+ };
37220
36400
  return () => createVNode("div", {
37221
36401
  "class": "md-toolbar-container"
37222
36402
  }, [toolbarConfig.value.map((item, index2) => Array.isArray(item) ? createVNode(Fragment, null, [item.map((key, idx) => createVNode(ToolbarItem, {
37223
- "config": toolbars[key],
36403
+ "config": tempToolbars[key],
37224
36404
  "key": `${index2}-${idx}`
37225
36405
  }, null)), createVNode("span", {
37226
36406
  "class": "md-toolbar-span"
37227
36407
  }, null)]) : createVNode(ToolbarItem, {
37228
- "config": toolbars[item],
36408
+ "config": tempToolbars[item],
37229
36409
  "key": index2
37230
36410
  }, null))]);
37231
36411
  }
@@ -37737,6 +36917,7 @@ var EditorMd = defineComponent({
37737
36917
  const {
37738
36918
  mode,
37739
36919
  toolbarConfig,
36920
+ customToolbars,
37740
36921
  editorContainerHeight,
37741
36922
  hidePreviewView,
37742
36923
  placeholder,
@@ -37785,6 +36966,7 @@ var EditorMd = defineComponent({
37785
36966
  showFullscreen,
37786
36967
  toolbars,
37787
36968
  toolbarConfig,
36969
+ customToolbars,
37788
36970
  getEditorIns,
37789
36971
  t: locale
37790
36972
  });
@@ -46415,7 +45597,7 @@ var Slider = defineComponent({
46415
45597
  const disableClass = computed(() => {
46416
45598
  return props.disabled ? " disabled" : "";
46417
45599
  });
46418
- const tipsContent = computed(() => isFunction$5(props.tipsRenderer) ? props.tipsRenderer(currentValue.value) : "");
45600
+ const tipsContent = computed(() => isFunction$4(props.tipsRenderer) ? props.tipsRenderer(currentValue.value) : "");
46419
45601
  return () => createVNode("div", {
46420
45602
  "class": ns2.b()
46421
45603
  }, [createVNode("div", {
@@ -48382,7 +47564,7 @@ function formatWidth(width) {
48382
47564
  return parseInt(width, 10) || 80;
48383
47565
  }
48384
47566
  function getRowIdentity(row2, rowKey, index2) {
48385
- if (isFunction$5(rowKey)) {
47567
+ if (isFunction$4(rowKey)) {
48386
47568
  return rowKey(row2, index2);
48387
47569
  } else if (isString$2(rowKey)) {
48388
47570
  const paths = rowKey.split(".");
@@ -53378,8 +52560,8 @@ function useTree(tree2, plugins = [], context2) {
53378
52560
  const ns = useNamespace$1("tree");
53379
52561
  function useTreeNode(data) {
53380
52562
  const nodeClass = computed(() => {
53381
- var _a;
53382
- return [ns.e("node"), ((_a = data.value) == null ? void 0 : _a.expanded) && ns.em("node", "open")];
52563
+ var _a, _b;
52564
+ return [ns.e("node"), ((_a = data.value) == null ? void 0 : _a.expanded) && ns.em("node", "open"), ((_b = data.value) == null ? void 0 : _b.selected) && "active"];
53383
52565
  });
53384
52566
  const nodeStyle = computed(() => {
53385
52567
  var _a;
@@ -54948,7 +54130,7 @@ const installs = [
54948
54130
  VirtualListInstall
54949
54131
  ];
54950
54132
  var vueDevui = {
54951
- version: "1.6.19",
54133
+ version: "1.6.21",
54952
54134
  install(app) {
54953
54135
  installs.forEach((p) => app.use(p));
54954
54136
  }