@telicent-oss/ds 0.26.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ds.js +2832 -361
- package/dist/ds.umd.cjs +2827 -356
- package/dist/logout-syncer/sw.js +1 -1
- package/dist/src/candidate-packages/authorize-flow/AuthModal.d.ts +7 -0
- package/dist/src/candidate-packages/authorize-flow/index.d.ts +3 -0
- package/dist/src/candidate-packages/authorize-flow/types.d.ts +19 -0
- package/dist/src/candidate-packages/authorize-flow/withSessionHandling.d.ts +6 -0
- package/dist/src/export.d.ts +2 -0
- package/package.json +4 -2
package/dist/ds.js
CHANGED
|
@@ -470,8 +470,8 @@ function requireReactJsxRuntime_development() {
|
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
function shouldConstruct(Component2) {
|
|
473
|
-
var
|
|
474
|
-
return !!(
|
|
473
|
+
var prototype2 = Component2.prototype;
|
|
474
|
+
return !!(prototype2 && prototype2.isReactComponent);
|
|
475
475
|
}
|
|
476
476
|
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
477
477
|
if (type == null) {
|
|
@@ -510,7 +510,7 @@ function requireReactJsxRuntime_development() {
|
|
|
510
510
|
}
|
|
511
511
|
return "";
|
|
512
512
|
}
|
|
513
|
-
var
|
|
513
|
+
var hasOwnProperty2 = Object.prototype.hasOwnProperty;
|
|
514
514
|
var loggedTypeFailures = {};
|
|
515
515
|
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
516
516
|
function setCurrentlyValidatingElement(element) {
|
|
@@ -526,7 +526,7 @@ function requireReactJsxRuntime_development() {
|
|
|
526
526
|
}
|
|
527
527
|
function checkPropTypes(typeSpecs, values2, location2, componentName, element) {
|
|
528
528
|
{
|
|
529
|
-
var has2 = Function.call.bind(
|
|
529
|
+
var has2 = Function.call.bind(hasOwnProperty2);
|
|
530
530
|
for (var typeSpecName in typeSpecs) {
|
|
531
531
|
if (has2(typeSpecs, typeSpecName)) {
|
|
532
532
|
var error$1 = void 0;
|
|
@@ -556,7 +556,7 @@ function requireReactJsxRuntime_development() {
|
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
var isArrayImpl = Array.isArray;
|
|
559
|
-
function
|
|
559
|
+
function isArray2(a) {
|
|
560
560
|
return isArrayImpl(a);
|
|
561
561
|
}
|
|
562
562
|
function typeName(value2) {
|
|
@@ -598,7 +598,7 @@ function requireReactJsxRuntime_development() {
|
|
|
598
598
|
var specialPropRefWarningShown;
|
|
599
599
|
function hasValidRef(config2) {
|
|
600
600
|
{
|
|
601
|
-
if (
|
|
601
|
+
if (hasOwnProperty2.call(config2, "ref")) {
|
|
602
602
|
var getter = Object.getOwnPropertyDescriptor(config2, "ref").get;
|
|
603
603
|
if (getter && getter.isReactWarning) {
|
|
604
604
|
return false;
|
|
@@ -609,7 +609,7 @@ function requireReactJsxRuntime_development() {
|
|
|
609
609
|
}
|
|
610
610
|
function hasValidKey(config2) {
|
|
611
611
|
{
|
|
612
|
-
if (
|
|
612
|
+
if (hasOwnProperty2.call(config2, "key")) {
|
|
613
613
|
var getter = Object.getOwnPropertyDescriptor(config2, "key").get;
|
|
614
614
|
if (getter && getter.isReactWarning) {
|
|
615
615
|
return false;
|
|
@@ -715,7 +715,7 @@ function requireReactJsxRuntime_development() {
|
|
|
715
715
|
warnIfStringRefCannotBeAutoConverted(config2, self2);
|
|
716
716
|
}
|
|
717
717
|
for (propName in config2) {
|
|
718
|
-
if (
|
|
718
|
+
if (hasOwnProperty2.call(config2, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
719
719
|
props[propName] = config2[propName];
|
|
720
720
|
}
|
|
721
721
|
}
|
|
@@ -815,7 +815,7 @@ function requireReactJsxRuntime_development() {
|
|
|
815
815
|
if (typeof node2 !== "object") {
|
|
816
816
|
return;
|
|
817
817
|
}
|
|
818
|
-
if (
|
|
818
|
+
if (isArray2(node2)) {
|
|
819
819
|
for (var i = 0; i < node2.length; i++) {
|
|
820
820
|
var child = node2[i];
|
|
821
821
|
if (isValidElement2(child)) {
|
|
@@ -830,9 +830,9 @@ function requireReactJsxRuntime_development() {
|
|
|
830
830
|
var iteratorFn = getIteratorFn(node2);
|
|
831
831
|
if (typeof iteratorFn === "function") {
|
|
832
832
|
if (iteratorFn !== node2.entries) {
|
|
833
|
-
var
|
|
833
|
+
var iterator2 = iteratorFn.call(node2);
|
|
834
834
|
var step;
|
|
835
|
-
while (!(step =
|
|
835
|
+
while (!(step = iterator2.next()).done) {
|
|
836
836
|
if (isValidElement2(step.value)) {
|
|
837
837
|
validateExplicitKey(step.value, parentType);
|
|
838
838
|
}
|
|
@@ -907,7 +907,7 @@ function requireReactJsxRuntime_development() {
|
|
|
907
907
|
var typeString;
|
|
908
908
|
if (type === null) {
|
|
909
909
|
typeString = "null";
|
|
910
|
-
} else if (
|
|
910
|
+
} else if (isArray2(type)) {
|
|
911
911
|
typeString = "array";
|
|
912
912
|
} else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
913
913
|
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
|
@@ -925,7 +925,7 @@ function requireReactJsxRuntime_development() {
|
|
|
925
925
|
var children2 = props.children;
|
|
926
926
|
if (children2 !== void 0) {
|
|
927
927
|
if (isStaticChildren) {
|
|
928
|
-
if (
|
|
928
|
+
if (isArray2(children2)) {
|
|
929
929
|
for (var i = 0; i < children2.length; i++) {
|
|
930
930
|
validateChildKeys(children2[i], type);
|
|
931
931
|
}
|
|
@@ -1068,7 +1068,7 @@ var assign = Object.assign;
|
|
|
1068
1068
|
function hash$2(value2, length2) {
|
|
1069
1069
|
return charat(value2, 0) ^ 45 ? (((length2 << 2 ^ charat(value2, 0)) << 2 ^ charat(value2, 1)) << 2 ^ charat(value2, 2)) << 2 ^ charat(value2, 3) : 0;
|
|
1070
1070
|
}
|
|
1071
|
-
function trim(value2) {
|
|
1071
|
+
function trim$1(value2) {
|
|
1072
1072
|
return value2.trim();
|
|
1073
1073
|
}
|
|
1074
1074
|
function match(value2, pattern) {
|
|
@@ -1173,7 +1173,7 @@ function dealloc(value2) {
|
|
|
1173
1173
|
return characters = "", value2;
|
|
1174
1174
|
}
|
|
1175
1175
|
function delimit(type) {
|
|
1176
|
-
return trim(slice(position - 1, delimiter(type === 91 ? type + 2 : type === 40 ? type + 1 : type)));
|
|
1176
|
+
return trim$1(slice(position - 1, delimiter(type === 91 ? type + 2 : type === 40 ? type + 1 : type)));
|
|
1177
1177
|
}
|
|
1178
1178
|
function whitespace(type) {
|
|
1179
1179
|
while (character = peek())
|
|
@@ -1342,7 +1342,7 @@ function ruleset(value2, root2, parent, index, offset2, rules, points, type, pro
|
|
|
1342
1342
|
var size = sizeof(rule);
|
|
1343
1343
|
for (var i = 0, j = 0, k = 0; i < index; ++i)
|
|
1344
1344
|
for (var x2 = 0, y = substr(value2, post + 1, post = abs(j = points[i])), z2 = value2; x2 < size; ++x2)
|
|
1345
|
-
if (z2 = trim(j > 0 ? rule[x2] + " " + y : replace$1(y, /&\f/g, rule[x2])))
|
|
1345
|
+
if (z2 = trim$1(j > 0 ? rule[x2] + " " + y : replace$1(y, /&\f/g, rule[x2])))
|
|
1346
1346
|
props[k++] = z2;
|
|
1347
1347
|
return node(value2, root2, parent, offset2 === 0 ? RULESET : type, props, children2, length2);
|
|
1348
1348
|
}
|
|
@@ -6584,14 +6584,14 @@ function _toPropertyKey$1(t2) {
|
|
|
6584
6584
|
var i = _toPrimitive$1(t2, "string");
|
|
6585
6585
|
return "symbol" == typeof i ? i : i + "";
|
|
6586
6586
|
}
|
|
6587
|
-
const noop$
|
|
6587
|
+
const noop$5 = () => {
|
|
6588
6588
|
};
|
|
6589
6589
|
let _WINDOW = {};
|
|
6590
6590
|
let _DOCUMENT = {};
|
|
6591
6591
|
let _MUTATION_OBSERVER = null;
|
|
6592
6592
|
let _PERFORMANCE = {
|
|
6593
|
-
mark: noop$
|
|
6594
|
-
measure: noop$
|
|
6593
|
+
mark: noop$5,
|
|
6594
|
+
measure: noop$5
|
|
6595
6595
|
};
|
|
6596
6596
|
try {
|
|
6597
6597
|
if (typeof window !== "undefined") _WINDOW = window;
|
|
@@ -7064,7 +7064,7 @@ function nextUniqueId() {
|
|
|
7064
7064
|
}
|
|
7065
7065
|
return id2;
|
|
7066
7066
|
}
|
|
7067
|
-
function toArray(obj) {
|
|
7067
|
+
function toArray$1(obj) {
|
|
7068
7068
|
const array2 = [];
|
|
7069
7069
|
for (let i = (obj || []).length >>> 0; i--; ) {
|
|
7070
7070
|
array2[i] = obj[i];
|
|
@@ -7073,7 +7073,7 @@ function toArray(obj) {
|
|
|
7073
7073
|
}
|
|
7074
7074
|
function classArray$1(node2) {
|
|
7075
7075
|
if (node2.classList) {
|
|
7076
|
-
return toArray(node2.classList);
|
|
7076
|
+
return toArray$1(node2.classList);
|
|
7077
7077
|
} else {
|
|
7078
7078
|
return (node2.getAttribute("class") || "").split(" ").filter((i) => i);
|
|
7079
7079
|
}
|
|
@@ -7222,7 +7222,7 @@ function iconFromMapping(mapping, prefix2, iconName) {
|
|
|
7222
7222
|
}
|
|
7223
7223
|
}
|
|
7224
7224
|
var reduce = function fastReduceObject(subject, fn2, initialValue, thisContext) {
|
|
7225
|
-
var keys = Object.keys(subject), length2 = keys.length,
|
|
7225
|
+
var keys = Object.keys(subject), length2 = keys.length, iterator2 = fn2, i, key, result;
|
|
7226
7226
|
if (initialValue === void 0) {
|
|
7227
7227
|
i = 1;
|
|
7228
7228
|
result = subject[keys[0]];
|
|
@@ -7232,7 +7232,7 @@ var reduce = function fastReduceObject(subject, fn2, initialValue, thisContext)
|
|
|
7232
7232
|
}
|
|
7233
7233
|
for (; i < length2; i++) {
|
|
7234
7234
|
key = keys[i];
|
|
7235
|
-
result =
|
|
7235
|
+
result = iterator2(result, subject[key], key, subject);
|
|
7236
7236
|
}
|
|
7237
7237
|
return result;
|
|
7238
7238
|
};
|
|
@@ -8260,7 +8260,7 @@ function observe(options) {
|
|
|
8260
8260
|
mo = new MUTATION_OBSERVER((objects) => {
|
|
8261
8261
|
if (disabled) return;
|
|
8262
8262
|
const defaultPrefix = getDefaultUsablePrefix();
|
|
8263
|
-
toArray(objects).forEach((mutationRecord) => {
|
|
8263
|
+
toArray$1(objects).forEach((mutationRecord) => {
|
|
8264
8264
|
if (mutationRecord.type === "childList" && mutationRecord.addedNodes.length > 0 && !isWatched(mutationRecord.addedNodes[0])) {
|
|
8265
8265
|
if (config$2.searchPseudoElements) {
|
|
8266
8266
|
pseudoElementsCallback(mutationRecord.target);
|
|
@@ -8336,7 +8336,7 @@ function classParser(node2) {
|
|
|
8336
8336
|
return val;
|
|
8337
8337
|
}
|
|
8338
8338
|
function attributesParser(node2) {
|
|
8339
|
-
const extraAttributes = toArray(node2.attributes).reduce((acc, attr) => {
|
|
8339
|
+
const extraAttributes = toArray$1(node2.attributes).reduce((acc, attr) => {
|
|
8340
8340
|
if (acc.name !== "class" && acc.name !== "style") {
|
|
8341
8341
|
acc[attr.name] = attr.value;
|
|
8342
8342
|
}
|
|
@@ -8439,7 +8439,7 @@ function onTree(root2) {
|
|
|
8439
8439
|
}
|
|
8440
8440
|
let candidates = [];
|
|
8441
8441
|
try {
|
|
8442
|
-
candidates = toArray(root2.querySelectorAll(prefixesDomQuery));
|
|
8442
|
+
candidates = toArray$1(root2.querySelectorAll(prefixesDomQuery));
|
|
8443
8443
|
} catch (e$$1) {
|
|
8444
8444
|
}
|
|
8445
8445
|
if (candidates.length > 0) {
|
|
@@ -8822,7 +8822,7 @@ function replaceForPosition(node2, position2) {
|
|
|
8822
8822
|
if (node2.getAttribute(pendingAttribute) !== null) {
|
|
8823
8823
|
return resolve();
|
|
8824
8824
|
}
|
|
8825
|
-
const children2 = toArray(node2.children);
|
|
8825
|
+
const children2 = toArray$1(node2.children);
|
|
8826
8826
|
const alreadyProcessedPseudoElement = children2.filter((c$$1) => c$$1.getAttribute(DATA_FA_PSEUDO_ELEMENT) === position2)[0];
|
|
8827
8827
|
const styles2 = WINDOW.getComputedStyle(node2, position2);
|
|
8828
8828
|
const fontFamily = styles2.getPropertyValue("font-family");
|
|
@@ -8897,7 +8897,7 @@ function processable(node2) {
|
|
|
8897
8897
|
function searchPseudoElements(root2) {
|
|
8898
8898
|
if (!IS_DOM) return;
|
|
8899
8899
|
return new Promise((resolve, reject) => {
|
|
8900
|
-
const operations = toArray(root2.querySelectorAll("*")).filter(processable).map(replace);
|
|
8900
|
+
const operations = toArray$1(root2.querySelectorAll("*")).filter(processable).map(replace);
|
|
8901
8901
|
const end2 = perf.begin("searchPseudoElements");
|
|
8902
8902
|
disableObservation();
|
|
8903
8903
|
Promise.all(operations).then(() => {
|
|
@@ -9598,7 +9598,7 @@ function requireObjectAssign() {
|
|
|
9598
9598
|
if (hasRequiredObjectAssign) return objectAssign;
|
|
9599
9599
|
hasRequiredObjectAssign = 1;
|
|
9600
9600
|
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
9601
|
-
var
|
|
9601
|
+
var hasOwnProperty2 = Object.prototype.hasOwnProperty;
|
|
9602
9602
|
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
9603
9603
|
function toObject(val) {
|
|
9604
9604
|
if (val === null || val === void 0) {
|
|
@@ -9645,7 +9645,7 @@ function requireObjectAssign() {
|
|
|
9645
9645
|
for (var s2 = 1; s2 < arguments.length; s2++) {
|
|
9646
9646
|
from2 = Object(arguments[s2]);
|
|
9647
9647
|
for (var key in from2) {
|
|
9648
|
-
if (
|
|
9648
|
+
if (hasOwnProperty2.call(from2, key)) {
|
|
9649
9649
|
to[key] = from2[key];
|
|
9650
9650
|
}
|
|
9651
9651
|
}
|
|
@@ -10090,16 +10090,16 @@ function requireFactoryWithTypeCheckers() {
|
|
|
10090
10090
|
}
|
|
10091
10091
|
var iteratorFn = getIteratorFn(propValue);
|
|
10092
10092
|
if (iteratorFn) {
|
|
10093
|
-
var
|
|
10093
|
+
var iterator2 = iteratorFn.call(propValue);
|
|
10094
10094
|
var step;
|
|
10095
10095
|
if (iteratorFn !== propValue.entries) {
|
|
10096
|
-
while (!(step =
|
|
10096
|
+
while (!(step = iterator2.next()).done) {
|
|
10097
10097
|
if (!isNode(step.value)) {
|
|
10098
10098
|
return false;
|
|
10099
10099
|
}
|
|
10100
10100
|
}
|
|
10101
10101
|
} else {
|
|
10102
|
-
while (!(step =
|
|
10102
|
+
while (!(step = iterator2.next()).done) {
|
|
10103
10103
|
var entry = step.value;
|
|
10104
10104
|
if (entry) {
|
|
10105
10105
|
if (!isNode(entry[1])) {
|
|
@@ -10846,7 +10846,7 @@ function keyframes() {
|
|
|
10846
10846
|
name,
|
|
10847
10847
|
styles: "@keyframes " + name + "{" + insertable.styles + "}",
|
|
10848
10848
|
anim: 1,
|
|
10849
|
-
toString: function
|
|
10849
|
+
toString: function toString3() {
|
|
10850
10850
|
return "_EMO_" + this.name + "_" + this.styles + "_EMO_";
|
|
10851
10851
|
}
|
|
10852
10852
|
};
|
|
@@ -11202,15 +11202,15 @@ const styledEngine = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.define
|
|
|
11202
11202
|
internal_processStyles,
|
|
11203
11203
|
keyframes
|
|
11204
11204
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
11205
|
-
function isPlainObject$
|
|
11205
|
+
function isPlainObject$3(item) {
|
|
11206
11206
|
if (typeof item !== "object" || item === null) {
|
|
11207
11207
|
return false;
|
|
11208
11208
|
}
|
|
11209
|
-
const
|
|
11210
|
-
return (
|
|
11209
|
+
const prototype2 = Object.getPrototypeOf(item);
|
|
11210
|
+
return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
|
|
11211
11211
|
}
|
|
11212
11212
|
function deepClone(source) {
|
|
11213
|
-
if (/* @__PURE__ */ React$2.isValidElement(source) || !isPlainObject$
|
|
11213
|
+
if (/* @__PURE__ */ React$2.isValidElement(source) || !isPlainObject$3(source)) {
|
|
11214
11214
|
return source;
|
|
11215
11215
|
}
|
|
11216
11216
|
const output = {};
|
|
@@ -11223,15 +11223,15 @@ function deepmerge$1(target, source, options = {
|
|
|
11223
11223
|
clone: true
|
|
11224
11224
|
}) {
|
|
11225
11225
|
const output = options.clone ? _extends$3({}, target) : target;
|
|
11226
|
-
if (isPlainObject$
|
|
11226
|
+
if (isPlainObject$3(target) && isPlainObject$3(source)) {
|
|
11227
11227
|
Object.keys(source).forEach((key) => {
|
|
11228
11228
|
if (/* @__PURE__ */ React$2.isValidElement(source[key])) {
|
|
11229
11229
|
output[key] = source[key];
|
|
11230
|
-
} else if (isPlainObject$
|
|
11231
|
-
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject$
|
|
11230
|
+
} else if (isPlainObject$3(source[key]) && // Avoid prototype pollution
|
|
11231
|
+
Object.prototype.hasOwnProperty.call(target, key) && isPlainObject$3(target[key])) {
|
|
11232
11232
|
output[key] = deepmerge$1(target[key], source[key], options);
|
|
11233
11233
|
} else if (options.clone) {
|
|
11234
|
-
output[key] = isPlainObject$
|
|
11234
|
+
output[key] = isPlainObject$3(source[key]) ? deepClone(source[key]) : source[key];
|
|
11235
11235
|
} else {
|
|
11236
11236
|
output[key] = source[key];
|
|
11237
11237
|
}
|
|
@@ -11242,7 +11242,7 @@ function deepmerge$1(target, source, options = {
|
|
|
11242
11242
|
const deepmerge = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
11243
11243
|
__proto__: null,
|
|
11244
11244
|
default: deepmerge$1,
|
|
11245
|
-
isPlainObject: isPlainObject$
|
|
11245
|
+
isPlainObject: isPlainObject$3
|
|
11246
11246
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
11247
11247
|
const _excluded$1t = ["values", "unit", "step"];
|
|
11248
11248
|
const sortBreakpointsValues = (values2) => {
|
|
@@ -11321,7 +11321,7 @@ const shape = {
|
|
|
11321
11321
|
borderRadius: 4
|
|
11322
11322
|
};
|
|
11323
11323
|
const responsivePropType = process.env.NODE_ENV !== "production" ? PropTypes.oneOfType([PropTypes.number, PropTypes.string, PropTypes.object, PropTypes.array]) : {};
|
|
11324
|
-
function merge$
|
|
11324
|
+
function merge$2(acc, item) {
|
|
11325
11325
|
if (!item) {
|
|
11326
11326
|
return acc;
|
|
11327
11327
|
}
|
|
@@ -11633,7 +11633,7 @@ function resolveCssProperty(props, keys, prop, transformer) {
|
|
|
11633
11633
|
}
|
|
11634
11634
|
function style$1(props, keys) {
|
|
11635
11635
|
const transformer = createUnarySpacing(props.theme);
|
|
11636
|
-
return Object.keys(props).map((prop) => resolveCssProperty(props, keys, prop, transformer)).reduce(merge$
|
|
11636
|
+
return Object.keys(props).map((prop) => resolveCssProperty(props, keys, prop, transformer)).reduce(merge$2, {});
|
|
11637
11637
|
}
|
|
11638
11638
|
function margin(props) {
|
|
11639
11639
|
return style$1(props, marginKeys);
|
|
@@ -11687,7 +11687,7 @@ function compose(...styles2) {
|
|
|
11687
11687
|
const fn2 = (props) => {
|
|
11688
11688
|
return Object.keys(props).reduce((acc, prop) => {
|
|
11689
11689
|
if (handlers[prop]) {
|
|
11690
|
-
return merge$
|
|
11690
|
+
return merge$2(acc, handlers[prop](props));
|
|
11691
11691
|
}
|
|
11692
11692
|
return acc;
|
|
11693
11693
|
}, {});
|
|
@@ -12255,7 +12255,7 @@ function unstable_createStyleFunctionSx() {
|
|
|
12255
12255
|
if (value2 !== null && value2 !== void 0) {
|
|
12256
12256
|
if (typeof value2 === "object") {
|
|
12257
12257
|
if (config2[styleKey]) {
|
|
12258
|
-
css2 = merge$
|
|
12258
|
+
css2 = merge$2(css2, getThemeValue(styleKey, value2, theme, config2));
|
|
12259
12259
|
} else {
|
|
12260
12260
|
const breakpointsValues = handleBreakpoints({
|
|
12261
12261
|
theme
|
|
@@ -12268,11 +12268,11 @@ function unstable_createStyleFunctionSx() {
|
|
|
12268
12268
|
theme
|
|
12269
12269
|
});
|
|
12270
12270
|
} else {
|
|
12271
|
-
css2 = merge$
|
|
12271
|
+
css2 = merge$2(css2, breakpointsValues);
|
|
12272
12272
|
}
|
|
12273
12273
|
}
|
|
12274
12274
|
} else {
|
|
12275
|
-
css2 = merge$
|
|
12275
|
+
css2 = merge$2(css2, getThemeValue(styleKey, value2, theme, config2));
|
|
12276
12276
|
}
|
|
12277
12277
|
}
|
|
12278
12278
|
});
|
|
@@ -12406,7 +12406,7 @@ function extendSxProp(props) {
|
|
|
12406
12406
|
} else if (typeof inSx === "function") {
|
|
12407
12407
|
finalSx = (...args) => {
|
|
12408
12408
|
const result = inSx(...args);
|
|
12409
|
-
if (!isPlainObject$
|
|
12409
|
+
if (!isPlainObject$3(result)) {
|
|
12410
12410
|
return systemProps;
|
|
12411
12411
|
}
|
|
12412
12412
|
return _extends$3({}, systemProps, result);
|
|
@@ -12882,7 +12882,7 @@ function createStyled$2(input = {}) {
|
|
|
12882
12882
|
label
|
|
12883
12883
|
}, options));
|
|
12884
12884
|
const transformStyleArg = (stylesArg) => {
|
|
12885
|
-
if (typeof stylesArg === "function" && stylesArg.__emotion_real !== stylesArg || isPlainObject$
|
|
12885
|
+
if (typeof stylesArg === "function" && stylesArg.__emotion_real !== stylesArg || isPlainObject$3(stylesArg)) {
|
|
12886
12886
|
return (props) => processStyleArg$1(stylesArg, _extends$3({}, props, {
|
|
12887
12887
|
theme: resolveTheme$1({
|
|
12888
12888
|
theme: props.theme,
|
|
@@ -13121,9 +13121,9 @@ function chainPropTypes(propType1, propType2) {
|
|
|
13121
13121
|
}
|
|
13122
13122
|
function isClassComponent$1(elementType) {
|
|
13123
13123
|
const {
|
|
13124
|
-
prototype = {}
|
|
13124
|
+
prototype: prototype2 = {}
|
|
13125
13125
|
} = elementType;
|
|
13126
|
-
return Boolean(
|
|
13126
|
+
return Boolean(prototype2.isReactComponent);
|
|
13127
13127
|
}
|
|
13128
13128
|
function acceptingRef(props, propName, componentName, location2, propFullName) {
|
|
13129
13129
|
const element = props[propName];
|
|
@@ -13149,9 +13149,9 @@ const elementAcceptingRef = chainPropTypes(PropTypes.element, acceptingRef);
|
|
|
13149
13149
|
elementAcceptingRef.isRequired = chainPropTypes(PropTypes.element.isRequired, acceptingRef);
|
|
13150
13150
|
function isClassComponent(elementType) {
|
|
13151
13151
|
const {
|
|
13152
|
-
prototype = {}
|
|
13152
|
+
prototype: prototype2 = {}
|
|
13153
13153
|
} = elementType;
|
|
13154
|
-
return Boolean(
|
|
13154
|
+
return Boolean(prototype2.isReactComponent);
|
|
13155
13155
|
}
|
|
13156
13156
|
function elementTypeAcceptingRef(props, propName, componentName, location2, propFullName) {
|
|
13157
13157
|
const propValue = props[propName];
|
|
@@ -13592,7 +13592,7 @@ function requiredInteger(props, propName, componentName, location2) {
|
|
|
13592
13592
|
}
|
|
13593
13593
|
return null;
|
|
13594
13594
|
}
|
|
13595
|
-
function validator(props, propName, ...other) {
|
|
13595
|
+
function validator$1(props, propName, ...other) {
|
|
13596
13596
|
const propValue = props[propName];
|
|
13597
13597
|
if (propValue === void 0) {
|
|
13598
13598
|
return null;
|
|
@@ -13602,9 +13602,9 @@ function validator(props, propName, ...other) {
|
|
|
13602
13602
|
function validatorNoop() {
|
|
13603
13603
|
return null;
|
|
13604
13604
|
}
|
|
13605
|
-
validator.isRequired = requiredInteger;
|
|
13605
|
+
validator$1.isRequired = requiredInteger;
|
|
13606
13606
|
validatorNoop.isRequired = validatorNoop;
|
|
13607
|
-
const integerPropType = process.env.NODE_ENV === "production" ? validatorNoop : validator;
|
|
13607
|
+
const integerPropType = process.env.NODE_ENV === "production" ? validatorNoop : validator$1;
|
|
13608
13608
|
function composeClasses$1(slots, getUtilityClass, classes = void 0) {
|
|
13609
13609
|
const output = {};
|
|
13610
13610
|
Object.keys(slots).forEach(
|
|
@@ -14062,11 +14062,11 @@ function createContainer(options = {}) {
|
|
|
14062
14062
|
return Container2;
|
|
14063
14063
|
}
|
|
14064
14064
|
const filterBreakpointKeys = (breakpointsKeys, responsiveKeys) => breakpointsKeys.filter((key) => responsiveKeys.includes(key));
|
|
14065
|
-
const traverseBreakpoints = (breakpoints, responsive,
|
|
14065
|
+
const traverseBreakpoints = (breakpoints, responsive, iterator2) => {
|
|
14066
14066
|
const smallestBreakpoint = breakpoints.keys[0];
|
|
14067
14067
|
if (Array.isArray(responsive)) {
|
|
14068
14068
|
responsive.forEach((breakpointValue, index) => {
|
|
14069
|
-
|
|
14069
|
+
iterator2((responsiveStyles, style2) => {
|
|
14070
14070
|
if (index <= breakpoints.keys.length - 1) {
|
|
14071
14071
|
if (index === 0) {
|
|
14072
14072
|
Object.assign(responsiveStyles, style2);
|
|
@@ -14082,7 +14082,7 @@ const traverseBreakpoints = (breakpoints, responsive, iterator) => {
|
|
|
14082
14082
|
if (breakpoints.keys.indexOf(key) !== -1) {
|
|
14083
14083
|
const breakpointValue = responsive[key];
|
|
14084
14084
|
if (breakpointValue !== void 0) {
|
|
14085
|
-
|
|
14085
|
+
iterator2((responsiveStyles, style2) => {
|
|
14086
14086
|
if (smallestBreakpoint === key) {
|
|
14087
14087
|
Object.assign(responsiveStyles, style2);
|
|
14088
14088
|
} else {
|
|
@@ -14093,7 +14093,7 @@ const traverseBreakpoints = (breakpoints, responsive, iterator) => {
|
|
|
14093
14093
|
}
|
|
14094
14094
|
});
|
|
14095
14095
|
} else if (typeof responsive === "number" || typeof responsive === "string") {
|
|
14096
|
-
|
|
14096
|
+
iterator2((responsiveStyles, style2) => {
|
|
14097
14097
|
Object.assign(responsiveStyles, style2);
|
|
14098
14098
|
}, responsive);
|
|
14099
14099
|
}
|
|
@@ -15322,18 +15322,18 @@ function createTransitions(inputTransitions) {
|
|
|
15322
15322
|
delay = 0
|
|
15323
15323
|
} = options, other = _objectWithoutPropertiesLoose$1(options, _excluded$1h);
|
|
15324
15324
|
if (process.env.NODE_ENV !== "production") {
|
|
15325
|
-
const
|
|
15326
|
-
const
|
|
15327
|
-
if (!
|
|
15325
|
+
const isString2 = (value2) => typeof value2 === "string";
|
|
15326
|
+
const isNumber2 = (value2) => !isNaN(parseFloat(value2));
|
|
15327
|
+
if (!isString2(props) && !Array.isArray(props)) {
|
|
15328
15328
|
console.error('MUI: Argument "props" must be a string or Array.');
|
|
15329
15329
|
}
|
|
15330
|
-
if (!
|
|
15330
|
+
if (!isNumber2(durationOption) && !isString2(durationOption)) {
|
|
15331
15331
|
console.error(`MUI: Argument "duration" must be a number or a string but found ${durationOption}.`);
|
|
15332
15332
|
}
|
|
15333
|
-
if (!
|
|
15333
|
+
if (!isString2(easingOption)) {
|
|
15334
15334
|
console.error('MUI: Argument "easing" must be a string.');
|
|
15335
15335
|
}
|
|
15336
|
-
if (!
|
|
15336
|
+
if (!isNumber2(delay) && !isString2(delay)) {
|
|
15337
15337
|
console.error('MUI: Argument "delay" must be a number or a string.');
|
|
15338
15338
|
}
|
|
15339
15339
|
if (typeof options !== "object") {
|
|
@@ -16395,7 +16395,7 @@ Transition$1.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
16395
16395
|
*/
|
|
16396
16396
|
onExited: PropTypes.func
|
|
16397
16397
|
} : {};
|
|
16398
|
-
function noop$
|
|
16398
|
+
function noop$4() {
|
|
16399
16399
|
}
|
|
16400
16400
|
Transition$1.defaultProps = {
|
|
16401
16401
|
in: false,
|
|
@@ -16404,12 +16404,12 @@ Transition$1.defaultProps = {
|
|
|
16404
16404
|
appear: false,
|
|
16405
16405
|
enter: true,
|
|
16406
16406
|
exit: true,
|
|
16407
|
-
onEnter: noop$
|
|
16408
|
-
onEntering: noop$
|
|
16409
|
-
onEntered: noop$
|
|
16410
|
-
onExit: noop$
|
|
16411
|
-
onExiting: noop$
|
|
16412
|
-
onExited: noop$
|
|
16407
|
+
onEnter: noop$4,
|
|
16408
|
+
onEntering: noop$4,
|
|
16409
|
+
onEntered: noop$4,
|
|
16410
|
+
onExit: noop$4,
|
|
16411
|
+
onExiting: noop$4,
|
|
16412
|
+
onExited: noop$4
|
|
16413
16413
|
};
|
|
16414
16414
|
Transition$1.UNMOUNTED = UNMOUNTED;
|
|
16415
16415
|
Transition$1.EXITED = EXITED;
|
|
@@ -18998,7 +18998,7 @@ function useAutocomplete(props) {
|
|
|
18998
18998
|
setValueState(newValue);
|
|
18999
18999
|
};
|
|
19000
19000
|
const isTouch = React$2.useRef(false);
|
|
19001
|
-
const selectNewValue = (event, option, reasonProp = "selectOption",
|
|
19001
|
+
const selectNewValue = (event, option, reasonProp = "selectOption", origin2 = "options") => {
|
|
19002
19002
|
let reason = reasonProp;
|
|
19003
19003
|
let newValue = option;
|
|
19004
19004
|
if (multiple) {
|
|
@@ -19012,7 +19012,7 @@ function useAutocomplete(props) {
|
|
|
19012
19012
|
const itemIndex = findIndex(newValue, (valueItem) => isOptionEqualToValue(option, valueItem));
|
|
19013
19013
|
if (itemIndex === -1) {
|
|
19014
19014
|
newValue.push(option);
|
|
19015
|
-
} else if (
|
|
19015
|
+
} else if (origin2 !== "freeSolo") {
|
|
19016
19016
|
newValue.splice(itemIndex, 1);
|
|
19017
19017
|
reason = "removeOption";
|
|
19018
19018
|
}
|
|
@@ -38915,8 +38915,8 @@ const TeliStyledEngineProvider = ({
|
|
|
38915
38915
|
}) => {
|
|
38916
38916
|
return /* @__PURE__ */ jsx$1(StyledEngineProvider, { injectFirst: true, children: children2 });
|
|
38917
38917
|
};
|
|
38918
|
+
var resolveConfig$4 = {};
|
|
38918
38919
|
var resolveConfig$3 = {};
|
|
38919
|
-
var resolveConfig$2 = {};
|
|
38920
38920
|
var negateValue = {};
|
|
38921
38921
|
(function(exports) {
|
|
38922
38922
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -39182,10 +39182,10 @@ var picocolors_browserExports = picocolors_browser.exports;
|
|
|
39182
39182
|
Object.defineProperty(exports, "__esModule", {
|
|
39183
39183
|
value: true
|
|
39184
39184
|
});
|
|
39185
|
-
function _export(target,
|
|
39186
|
-
for (var name in
|
|
39185
|
+
function _export(target, all3) {
|
|
39186
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
39187
39187
|
enumerable: true,
|
|
39188
|
-
get:
|
|
39188
|
+
get: all3[name]
|
|
39189
39189
|
});
|
|
39190
39190
|
}
|
|
39191
39191
|
_export(exports, {
|
|
@@ -39596,7 +39596,7 @@ var picocolors_browserExports = picocolors_browser.exports;
|
|
|
39596
39596
|
}
|
|
39597
39597
|
};
|
|
39598
39598
|
})(colors$2);
|
|
39599
|
-
var defaults = {};
|
|
39599
|
+
var defaults$1 = {};
|
|
39600
39600
|
(function(exports) {
|
|
39601
39601
|
Object.defineProperty(exports, "__esModule", {
|
|
39602
39602
|
value: true
|
|
@@ -39624,7 +39624,7 @@ var defaults = {};
|
|
|
39624
39624
|
}
|
|
39625
39625
|
return target;
|
|
39626
39626
|
}
|
|
39627
|
-
})(defaults);
|
|
39627
|
+
})(defaults$1);
|
|
39628
39628
|
var toPath = {};
|
|
39629
39629
|
(function(exports) {
|
|
39630
39630
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -39652,10 +39652,10 @@ var featureFlags = {};
|
|
|
39652
39652
|
Object.defineProperty(exports, "__esModule", {
|
|
39653
39653
|
value: true
|
|
39654
39654
|
});
|
|
39655
|
-
function _export(target,
|
|
39656
|
-
for (var name in
|
|
39655
|
+
function _export(target, all3) {
|
|
39656
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
39657
39657
|
enumerable: true,
|
|
39658
|
-
get:
|
|
39658
|
+
get: all3[name]
|
|
39659
39659
|
});
|
|
39660
39660
|
}
|
|
39661
39661
|
_export(exports, {
|
|
@@ -39971,7 +39971,7 @@ var featureFlags = {};
|
|
|
39971
39971
|
return config2;
|
|
39972
39972
|
}
|
|
39973
39973
|
})(normalizeConfig);
|
|
39974
|
-
var isPlainObject$
|
|
39974
|
+
var isPlainObject$2 = {};
|
|
39975
39975
|
(function(exports) {
|
|
39976
39976
|
Object.defineProperty(exports, "__esModule", {
|
|
39977
39977
|
value: true
|
|
@@ -39986,10 +39986,10 @@ var isPlainObject$1 = {};
|
|
|
39986
39986
|
if (Object.prototype.toString.call(value2) !== "[object Object]") {
|
|
39987
39987
|
return false;
|
|
39988
39988
|
}
|
|
39989
|
-
const
|
|
39990
|
-
return
|
|
39989
|
+
const prototype2 = Object.getPrototypeOf(value2);
|
|
39990
|
+
return prototype2 === null || Object.getPrototypeOf(prototype2) === null;
|
|
39991
39991
|
}
|
|
39992
|
-
})(isPlainObject$
|
|
39992
|
+
})(isPlainObject$2);
|
|
39993
39993
|
var cloneDeep = {};
|
|
39994
39994
|
(function(exports) {
|
|
39995
39995
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -40790,10 +40790,10 @@ var colorNames = {};
|
|
|
40790
40790
|
Object.defineProperty(exports, "__esModule", {
|
|
40791
40791
|
value: true
|
|
40792
40792
|
});
|
|
40793
|
-
function _export(target,
|
|
40794
|
-
for (var name in
|
|
40793
|
+
function _export(target, all3) {
|
|
40794
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
40795
40795
|
enumerable: true,
|
|
40796
|
-
get:
|
|
40796
|
+
get: all3[name]
|
|
40797
40797
|
});
|
|
40798
40798
|
}
|
|
40799
40799
|
_export(exports, {
|
|
@@ -40905,10 +40905,10 @@ var colorNames = {};
|
|
|
40905
40905
|
Object.defineProperty(exports, "__esModule", {
|
|
40906
40906
|
value: true
|
|
40907
40907
|
});
|
|
40908
|
-
function _export(target,
|
|
40909
|
-
for (var name in
|
|
40908
|
+
function _export(target, all3) {
|
|
40909
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
40910
40910
|
enumerable: true,
|
|
40911
|
-
get:
|
|
40911
|
+
get: all3[name]
|
|
40912
40912
|
});
|
|
40913
40913
|
}
|
|
40914
40914
|
_export(exports, {
|
|
@@ -41021,10 +41021,10 @@ var splitAtTopLevelOnly = {};
|
|
|
41021
41021
|
Object.defineProperty(exports, "__esModule", {
|
|
41022
41022
|
value: true
|
|
41023
41023
|
});
|
|
41024
|
-
function _export(target,
|
|
41025
|
-
for (var name in
|
|
41024
|
+
function _export(target, all3) {
|
|
41025
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
41026
41026
|
enumerable: true,
|
|
41027
|
-
get:
|
|
41027
|
+
get: all3[name]
|
|
41028
41028
|
});
|
|
41029
41029
|
}
|
|
41030
41030
|
_export(exports, {
|
|
@@ -41106,10 +41106,10 @@ var splitAtTopLevelOnly = {};
|
|
|
41106
41106
|
Object.defineProperty(exports, "__esModule", {
|
|
41107
41107
|
value: true
|
|
41108
41108
|
});
|
|
41109
|
-
function _export(target,
|
|
41110
|
-
for (var name in
|
|
41109
|
+
function _export(target, all3) {
|
|
41110
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
41111
41111
|
enumerable: true,
|
|
41112
|
-
get:
|
|
41112
|
+
get: all3[name]
|
|
41113
41113
|
});
|
|
41114
41114
|
}
|
|
41115
41115
|
_export(exports, {
|
|
@@ -41539,10 +41539,10 @@ var validateFormalSyntax = {};
|
|
|
41539
41539
|
Object.defineProperty(exports, "__esModule", {
|
|
41540
41540
|
value: true
|
|
41541
41541
|
});
|
|
41542
|
-
function _export(target,
|
|
41543
|
-
for (var name in
|
|
41542
|
+
function _export(target, all3) {
|
|
41543
|
+
for (var name in all3) Object.defineProperty(target, name, {
|
|
41544
41544
|
enumerable: true,
|
|
41545
|
-
get:
|
|
41545
|
+
get: all3[name]
|
|
41546
41546
|
});
|
|
41547
41547
|
}
|
|
41548
41548
|
_export(exports, {
|
|
@@ -41840,10 +41840,10 @@ var toColorValue = {};
|
|
|
41840
41840
|
const _corePluginList = /* @__PURE__ */ _interop_require_default(corePluginList);
|
|
41841
41841
|
const _configurePlugins = /* @__PURE__ */ _interop_require_default(configurePlugins);
|
|
41842
41842
|
const _colors = /* @__PURE__ */ _interop_require_default(colors$2);
|
|
41843
|
-
const _defaults = defaults;
|
|
41843
|
+
const _defaults = defaults$1;
|
|
41844
41844
|
const _toPath = toPath;
|
|
41845
41845
|
const _normalizeConfig = normalizeConfig;
|
|
41846
|
-
const _isPlainObject = /* @__PURE__ */ _interop_require_default(isPlainObject$
|
|
41846
|
+
const _isPlainObject = /* @__PURE__ */ _interop_require_default(isPlainObject$2);
|
|
41847
41847
|
const _cloneDeep = cloneDeep;
|
|
41848
41848
|
const _pluginUtils = pluginUtils;
|
|
41849
41849
|
const _withAlphaVariable = withAlphaVariable;
|
|
@@ -41944,10 +41944,10 @@ var toColorValue = {};
|
|
|
41944
41944
|
if (!isFunction2(themeValue) && !extensions.some(isFunction2)) {
|
|
41945
41945
|
return mergeWith({}, themeValue, ...extensions, mergeExtensionCustomizer);
|
|
41946
41946
|
}
|
|
41947
|
-
return (resolveThemePath,
|
|
41947
|
+
return (resolveThemePath, utils2) => mergeWith({}, ...[
|
|
41948
41948
|
themeValue,
|
|
41949
41949
|
...extensions
|
|
41950
|
-
].map((e) => value2(e, resolveThemePath,
|
|
41950
|
+
].map((e) => value2(e, resolveThemePath, utils2)), mergeExtensionCustomizer);
|
|
41951
41951
|
});
|
|
41952
41952
|
}
|
|
41953
41953
|
function* toPaths(key) {
|
|
@@ -42071,7 +42071,7 @@ var toColorValue = {};
|
|
|
42071
42071
|
}))
|
|
42072
42072
|
}, ...allConfigs));
|
|
42073
42073
|
}
|
|
42074
|
-
})(resolveConfig$
|
|
42074
|
+
})(resolveConfig$3);
|
|
42075
42075
|
var getAllConfigs = {};
|
|
42076
42076
|
var config_full = {
|
|
42077
42077
|
content: [],
|
|
@@ -43196,7 +43196,7 @@ var config_full = {
|
|
|
43196
43196
|
return resolveConfig2;
|
|
43197
43197
|
}
|
|
43198
43198
|
});
|
|
43199
|
-
const _resolveConfig = /* @__PURE__ */ _interop_require_default(resolveConfig$
|
|
43199
|
+
const _resolveConfig = /* @__PURE__ */ _interop_require_default(resolveConfig$3);
|
|
43200
43200
|
const _getAllConfigs = /* @__PURE__ */ _interop_require_default(getAllConfigs);
|
|
43201
43201
|
function _interop_require_default(obj) {
|
|
43202
43202
|
return obj && obj.__esModule ? obj : {
|
|
@@ -43210,10 +43210,10 @@ var config_full = {
|
|
|
43210
43210
|
...defaultConfigs
|
|
43211
43211
|
]);
|
|
43212
43212
|
}
|
|
43213
|
-
})(resolveConfig$
|
|
43214
|
-
let resolveConfig = resolveConfig$
|
|
43215
|
-
var resolveConfig_1 = (resolveConfig.__esModule ? resolveConfig : { default: resolveConfig }).default;
|
|
43216
|
-
const resolveConfig$
|
|
43213
|
+
})(resolveConfig$4);
|
|
43214
|
+
let resolveConfig$1 = resolveConfig$4;
|
|
43215
|
+
var resolveConfig_1 = (resolveConfig$1.__esModule ? resolveConfig$1 : { default: resolveConfig$1 }).default;
|
|
43216
|
+
const resolveConfig$2 = /* @__PURE__ */ getDefaultExportFromCjs(resolveConfig_1);
|
|
43217
43217
|
const config = {
|
|
43218
43218
|
content: ["./src/stories/**/*.{tsx,ts,js,jsx}", "./src/components/**/*.{tsx,ts,js,jsx}", "./src/layouts/**/*.{tsx,ts}"],
|
|
43219
43219
|
darkMode: "class",
|
|
@@ -43336,7 +43336,7 @@ const config = {
|
|
|
43336
43336
|
}
|
|
43337
43337
|
}
|
|
43338
43338
|
};
|
|
43339
|
-
const fullConfig$2 = resolveConfig$
|
|
43339
|
+
const fullConfig$2 = resolveConfig$2(config);
|
|
43340
43340
|
const colors$1 = (_a = fullConfig$2.theme) == null ? void 0 : _a.colors;
|
|
43341
43341
|
const styles$2 = getComputedStyle(document.body);
|
|
43342
43342
|
const whiteSmoke = {
|
|
@@ -43380,7 +43380,7 @@ const getThemePalette = (mode) => {
|
|
|
43380
43380
|
};
|
|
43381
43381
|
return palette;
|
|
43382
43382
|
};
|
|
43383
|
-
const fullConfig$1 = resolveConfig$
|
|
43383
|
+
const fullConfig$1 = resolveConfig$2(config);
|
|
43384
43384
|
const twFontFamily = (_b = fullConfig$1.theme) == null ? void 0 : _b.fontFamily;
|
|
43385
43385
|
const typography = {
|
|
43386
43386
|
fontFamily: twFontFamily["teli-body"].join(","),
|
|
@@ -43442,7 +43442,7 @@ const useTeliTheme = () => {
|
|
|
43442
43442
|
addDarkClass
|
|
43443
43443
|
};
|
|
43444
43444
|
};
|
|
43445
|
-
const fullConfig = resolveConfig$
|
|
43445
|
+
const fullConfig = resolveConfig$2(config);
|
|
43446
43446
|
const colors = (_c = fullConfig.theme) == null ? void 0 : _c.colors;
|
|
43447
43447
|
const getThemeComponents = () => {
|
|
43448
43448
|
const components = {
|
|
@@ -43526,7 +43526,7 @@ var Subscribable = class {
|
|
|
43526
43526
|
}
|
|
43527
43527
|
};
|
|
43528
43528
|
var isServer = typeof window === "undefined" || "Deno" in globalThis;
|
|
43529
|
-
function noop$
|
|
43529
|
+
function noop$3() {
|
|
43530
43530
|
}
|
|
43531
43531
|
function functionalUpdate(updater, input) {
|
|
43532
43532
|
return typeof updater === "function" ? updater(input) : updater;
|
|
@@ -43610,7 +43610,7 @@ function hashQueryKeyByOptions(queryKey, options) {
|
|
|
43610
43610
|
function hashKey(queryKey) {
|
|
43611
43611
|
return JSON.stringify(
|
|
43612
43612
|
queryKey,
|
|
43613
|
-
(_2, val) => isPlainObject(val) ? Object.keys(val).sort().reduce((result, key) => {
|
|
43613
|
+
(_2, val) => isPlainObject$1(val) ? Object.keys(val).sort().reduce((result, key) => {
|
|
43614
43614
|
result[key] = val[key];
|
|
43615
43615
|
return result;
|
|
43616
43616
|
}, {}) : val
|
|
@@ -43633,7 +43633,7 @@ function replaceEqualDeep(a, b) {
|
|
|
43633
43633
|
return a;
|
|
43634
43634
|
}
|
|
43635
43635
|
const array2 = isPlainArray(a) && isPlainArray(b);
|
|
43636
|
-
if (array2 || isPlainObject(a) && isPlainObject(b)) {
|
|
43636
|
+
if (array2 || isPlainObject$1(a) && isPlainObject$1(b)) {
|
|
43637
43637
|
const aItems = array2 ? a : Object.keys(a);
|
|
43638
43638
|
const aSize = aItems.length;
|
|
43639
43639
|
const bItems = array2 ? b : Object.keys(b);
|
|
@@ -43670,7 +43670,7 @@ function shallowEqualObjects(a, b) {
|
|
|
43670
43670
|
function isPlainArray(value2) {
|
|
43671
43671
|
return Array.isArray(value2) && value2.length === Object.keys(value2).length;
|
|
43672
43672
|
}
|
|
43673
|
-
function isPlainObject(o2) {
|
|
43673
|
+
function isPlainObject$1(o2) {
|
|
43674
43674
|
if (!hasObjectPrototype(o2)) {
|
|
43675
43675
|
return false;
|
|
43676
43676
|
}
|
|
@@ -44176,7 +44176,7 @@ var Query = (_g = class extends Removable {
|
|
|
44176
44176
|
var _a2, _b2;
|
|
44177
44177
|
const promise = (_a2 = __privateGet(this, _retryer)) == null ? void 0 : _a2.promise;
|
|
44178
44178
|
(_b2 = __privateGet(this, _retryer)) == null ? void 0 : _b2.cancel(options);
|
|
44179
|
-
return promise ? promise.then(noop$
|
|
44179
|
+
return promise ? promise.then(noop$3).catch(noop$3) : Promise.resolve();
|
|
44180
44180
|
}
|
|
44181
44181
|
destroy() {
|
|
44182
44182
|
super.destroy();
|
|
@@ -44930,7 +44930,7 @@ var MutationCache = (_j = class extends Subscribable {
|
|
|
44930
44930
|
const pausedMutations = this.getAll().filter((x2) => x2.state.isPaused);
|
|
44931
44931
|
return notifyManager.batch(
|
|
44932
44932
|
() => Promise.all(
|
|
44933
|
-
pausedMutations.map((mutation) => mutation.continue().catch(noop$
|
|
44933
|
+
pausedMutations.map((mutation) => mutation.continue().catch(noop$3))
|
|
44934
44934
|
)
|
|
44935
44935
|
);
|
|
44936
44936
|
}
|
|
@@ -45174,7 +45174,7 @@ var QueryClient = (_k = class {
|
|
|
45174
45174
|
const promises = notifyManager.batch(
|
|
45175
45175
|
() => __privateGet(this, _queryCache).findAll(filters).map((query) => query.cancel(defaultedCancelOptions))
|
|
45176
45176
|
);
|
|
45177
|
-
return Promise.all(promises).then(noop$
|
|
45177
|
+
return Promise.all(promises).then(noop$3).catch(noop$3);
|
|
45178
45178
|
}
|
|
45179
45179
|
invalidateQueries(filters, options = {}) {
|
|
45180
45180
|
return notifyManager.batch(() => {
|
|
@@ -45200,12 +45200,12 @@ var QueryClient = (_k = class {
|
|
|
45200
45200
|
() => __privateGet(this, _queryCache).findAll(filters).filter((query) => !query.isDisabled()).map((query) => {
|
|
45201
45201
|
let promise = query.fetch(void 0, fetchOptions2);
|
|
45202
45202
|
if (!fetchOptions2.throwOnError) {
|
|
45203
|
-
promise = promise.catch(noop$
|
|
45203
|
+
promise = promise.catch(noop$3);
|
|
45204
45204
|
}
|
|
45205
45205
|
return query.state.fetchStatus === "paused" ? Promise.resolve() : promise;
|
|
45206
45206
|
})
|
|
45207
45207
|
);
|
|
45208
|
-
return Promise.all(promises).then(noop$
|
|
45208
|
+
return Promise.all(promises).then(noop$3);
|
|
45209
45209
|
}
|
|
45210
45210
|
fetchQuery(options) {
|
|
45211
45211
|
const defaultedOptions = this.defaultQueryOptions(options);
|
|
@@ -45218,14 +45218,14 @@ var QueryClient = (_k = class {
|
|
|
45218
45218
|
) ? query.fetch(defaultedOptions) : Promise.resolve(query.state.data);
|
|
45219
45219
|
}
|
|
45220
45220
|
prefetchQuery(options) {
|
|
45221
|
-
return this.fetchQuery(options).then(noop$
|
|
45221
|
+
return this.fetchQuery(options).then(noop$3).catch(noop$3);
|
|
45222
45222
|
}
|
|
45223
45223
|
fetchInfiniteQuery(options) {
|
|
45224
45224
|
options.behavior = infiniteQueryBehavior(options.pages);
|
|
45225
45225
|
return this.fetchQuery(options);
|
|
45226
45226
|
}
|
|
45227
45227
|
prefetchInfiniteQuery(options) {
|
|
45228
|
-
return this.fetchInfiniteQuery(options).then(noop$
|
|
45228
|
+
return this.fetchInfiniteQuery(options).then(noop$3).catch(noop$3);
|
|
45229
45229
|
}
|
|
45230
45230
|
ensureInfiniteQueryData(options) {
|
|
45231
45231
|
options.behavior = infiniteQueryBehavior(options.pages);
|
|
@@ -45685,7 +45685,7 @@ var QueryObserver = (_l = class extends Subscribable {
|
|
|
45685
45685
|
fetchOptions2
|
|
45686
45686
|
);
|
|
45687
45687
|
if (!(fetchOptions2 == null ? void 0 : fetchOptions2.throwOnError)) {
|
|
45688
|
-
promise = promise.catch(noop$
|
|
45688
|
+
promise = promise.catch(noop$3);
|
|
45689
45689
|
}
|
|
45690
45690
|
return promise;
|
|
45691
45691
|
}, updateStaleTimeout_fn = function() {
|
|
@@ -45827,7 +45827,7 @@ function shouldThrowError(throwError, params) {
|
|
|
45827
45827
|
}
|
|
45828
45828
|
return !!throwError;
|
|
45829
45829
|
}
|
|
45830
|
-
function noop$
|
|
45830
|
+
function noop$2() {
|
|
45831
45831
|
}
|
|
45832
45832
|
var ensurePreventErrorBoundaryRetry = (options, errorResetBoundary) => {
|
|
45833
45833
|
if (options.suspense || options.throwOnError || options.experimental_prefetchInRender) {
|
|
@@ -45897,7 +45897,7 @@ function useBaseQuery(options, Observer, queryClient2) {
|
|
|
45897
45897
|
React$2.useSyncExternalStore(
|
|
45898
45898
|
React$2.useCallback(
|
|
45899
45899
|
(onStoreChange) => {
|
|
45900
|
-
const unsubscribe = shouldSubscribe ? observer.subscribe(notifyManager.batchCalls(onStoreChange)) : noop$
|
|
45900
|
+
const unsubscribe = shouldSubscribe ? observer.subscribe(notifyManager.batchCalls(onStoreChange)) : noop$2;
|
|
45901
45901
|
observer.updateResult();
|
|
45902
45902
|
return unsubscribe;
|
|
45903
45903
|
},
|
|
@@ -45934,7 +45934,7 @@ function useBaseQuery(options, Observer, queryClient2) {
|
|
|
45934
45934
|
// subscribe to the "cache promise" so that we can finalize the currentThenable once data comes in
|
|
45935
45935
|
(_e2 = client.getQueryCache().get(defaultedOptions.queryHash)) == null ? void 0 : _e2.promise
|
|
45936
45936
|
);
|
|
45937
|
-
promise == null ? void 0 : promise.catch(noop$
|
|
45937
|
+
promise == null ? void 0 : promise.catch(noop$2).finally(() => {
|
|
45938
45938
|
observer.updateResult();
|
|
45939
45939
|
});
|
|
45940
45940
|
}
|
|
@@ -46738,7 +46738,7 @@ function max(values2, valueof) {
|
|
|
46738
46738
|
}
|
|
46739
46739
|
return max2;
|
|
46740
46740
|
}
|
|
46741
|
-
var noop = { value: () => {
|
|
46741
|
+
var noop$1 = { value: () => {
|
|
46742
46742
|
} };
|
|
46743
46743
|
function dispatch() {
|
|
46744
46744
|
for (var i = 0, n = arguments.length, _2 = {}, t2; i < n; ++i) {
|
|
@@ -46798,7 +46798,7 @@ function get$3(type, name) {
|
|
|
46798
46798
|
function set$3(type, name, callback) {
|
|
46799
46799
|
for (var i = 0, n = type.length; i < n; ++i) {
|
|
46800
46800
|
if (type[i].name === name) {
|
|
46801
|
-
type[i] = noop, type = type.slice(0, i).concat(type.slice(i + 1));
|
|
46801
|
+
type[i] = noop$1, type = type.slice(0, i).concat(type.slice(i + 1));
|
|
46802
46802
|
break;
|
|
46803
46803
|
}
|
|
46804
46804
|
}
|
|
@@ -47008,11 +47008,11 @@ function datum(node2) {
|
|
|
47008
47008
|
}
|
|
47009
47009
|
function selection_data(value2, key) {
|
|
47010
47010
|
if (!arguments.length) return Array.from(this, datum);
|
|
47011
|
-
var
|
|
47011
|
+
var bind2 = key ? bindKey : bindIndex, parents = this._parents, groups = this._groups;
|
|
47012
47012
|
if (typeof value2 !== "function") value2 = constant$1(value2);
|
|
47013
47013
|
for (var m = groups.length, update = new Array(m), enter = new Array(m), exit = new Array(m), j = 0; j < m; ++j) {
|
|
47014
47014
|
var parent = parents[j], group = groups[j], groupLength = group.length, data = arraylike(value2.call(parent, parent && parent.__data__, j, parents)), dataLength = data.length, enterGroup = enter[j] = new Array(dataLength), updateGroup = update[j] = new Array(dataLength), exitGroup = exit[j] = new Array(groupLength);
|
|
47015
|
-
|
|
47015
|
+
bind2(parent, group, enterGroup, updateGroup, exitGroup, data, key);
|
|
47016
47016
|
for (var i0 = 0, i1 = 0, previous, next2; i0 < dataLength; ++i0) {
|
|
47017
47017
|
if (previous = enterGroup[i0]) {
|
|
47018
47018
|
if (i0 >= i1) i1 = i0 + 1;
|
|
@@ -47500,14 +47500,14 @@ Selection$1.prototype = selection.prototype = {
|
|
|
47500
47500
|
function select(selector2) {
|
|
47501
47501
|
return typeof selector2 === "string" ? new Selection$1([[document.querySelector(selector2)]], [document.documentElement]) : new Selection$1([[selector2]], root);
|
|
47502
47502
|
}
|
|
47503
|
-
function define(constructor, factory,
|
|
47504
|
-
constructor.prototype = factory.prototype =
|
|
47505
|
-
|
|
47503
|
+
function define(constructor, factory, prototype2) {
|
|
47504
|
+
constructor.prototype = factory.prototype = prototype2;
|
|
47505
|
+
prototype2.constructor = constructor;
|
|
47506
47506
|
}
|
|
47507
|
-
function extend(parent, definition) {
|
|
47508
|
-
var
|
|
47509
|
-
for (var key in definition)
|
|
47510
|
-
return
|
|
47507
|
+
function extend$1(parent, definition) {
|
|
47508
|
+
var prototype2 = Object.create(parent.prototype);
|
|
47509
|
+
for (var key in definition) prototype2[key] = definition[key];
|
|
47510
|
+
return prototype2;
|
|
47511
47511
|
}
|
|
47512
47512
|
function Color() {
|
|
47513
47513
|
}
|
|
@@ -47718,7 +47718,7 @@ function Rgb(r2, g2, b, opacity) {
|
|
|
47718
47718
|
this.b = +b;
|
|
47719
47719
|
this.opacity = +opacity;
|
|
47720
47720
|
}
|
|
47721
|
-
define(Rgb, rgb, extend(Color, {
|
|
47721
|
+
define(Rgb, rgb, extend$1(Color, {
|
|
47722
47722
|
brighter(k) {
|
|
47723
47723
|
k = k == null ? brighter : Math.pow(brighter, k);
|
|
47724
47724
|
return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);
|
|
@@ -47796,7 +47796,7 @@ function Hsl(h, s2, l, opacity) {
|
|
|
47796
47796
|
this.l = +l;
|
|
47797
47797
|
this.opacity = +opacity;
|
|
47798
47798
|
}
|
|
47799
|
-
define(Hsl, hsl, extend(Color, {
|
|
47799
|
+
define(Hsl, hsl, extend$1(Color, {
|
|
47800
47800
|
brighter(k) {
|
|
47801
47801
|
k = k == null ? brighter : Math.pow(brighter, k);
|
|
47802
47802
|
return new Hsl(this.h, this.s, this.l * k, this.opacity);
|
|
@@ -49369,7 +49369,7 @@ lodash.exports;
|
|
|
49369
49369
|
(function(module, exports) {
|
|
49370
49370
|
(function() {
|
|
49371
49371
|
var undefined$1;
|
|
49372
|
-
var
|
|
49372
|
+
var VERSION2 = "4.17.21";
|
|
49373
49373
|
var LARGE_ARRAY_SIZE = 200;
|
|
49374
49374
|
var CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`";
|
|
49375
49375
|
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
|
@@ -49965,9 +49965,9 @@ lodash.exports;
|
|
|
49965
49965
|
function hasUnicodeWord(string) {
|
|
49966
49966
|
return reHasUnicodeWord.test(string);
|
|
49967
49967
|
}
|
|
49968
|
-
function iteratorToArray(
|
|
49968
|
+
function iteratorToArray(iterator2) {
|
|
49969
49969
|
var data, result = [];
|
|
49970
|
-
while (!(data =
|
|
49970
|
+
while (!(data = iterator2.next()).done) {
|
|
49971
49971
|
result.push(data.value);
|
|
49972
49972
|
}
|
|
49973
49973
|
return result;
|
|
@@ -50059,7 +50059,7 @@ lodash.exports;
|
|
|
50059
50059
|
var arrayProto = Array2.prototype, funcProto = Function2.prototype, objectProto = Object2.prototype;
|
|
50060
50060
|
var coreJsData = context["__core-js_shared__"];
|
|
50061
50061
|
var funcToString = funcProto.toString;
|
|
50062
|
-
var
|
|
50062
|
+
var hasOwnProperty2 = objectProto.hasOwnProperty;
|
|
50063
50063
|
var idCounter = 0;
|
|
50064
50064
|
var maskSrcKey = function() {
|
|
50065
50065
|
var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || "");
|
|
@@ -50069,7 +50069,7 @@ lodash.exports;
|
|
|
50069
50069
|
var objectCtorString = funcToString.call(Object2);
|
|
50070
50070
|
var oldDash = root2._;
|
|
50071
50071
|
var reIsNative = RegExp2(
|
|
50072
|
-
"^" + funcToString.call(
|
|
50072
|
+
"^" + funcToString.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
|
50073
50073
|
);
|
|
50074
50074
|
var Buffer2 = moduleExports ? context.Buffer : undefined$1, Symbol2 = context.Symbol, Uint8Array2 = context.Uint8Array, allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : undefined$1, getPrototype = overArg(Object2.getPrototypeOf, Object2), objectCreate = Object2.create, propertyIsEnumerable = objectProto.propertyIsEnumerable, splice = arrayProto.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined$1, symIterator = Symbol2 ? Symbol2.iterator : undefined$1, symToStringTag = Symbol2 ? Symbol2.toStringTag : undefined$1;
|
|
50075
50075
|
var defineProperty = function() {
|
|
@@ -50088,11 +50088,11 @@ lodash.exports;
|
|
|
50088
50088
|
var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map2), promiseCtorString = toSource(Promise2), setCtorString = toSource(Set2), weakMapCtorString = toSource(WeakMap2);
|
|
50089
50089
|
var symbolProto = Symbol2 ? Symbol2.prototype : undefined$1, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined$1, symbolToString = symbolProto ? symbolProto.toString : undefined$1;
|
|
50090
50090
|
function lodash2(value2) {
|
|
50091
|
-
if (isObjectLike(value2) && !
|
|
50091
|
+
if (isObjectLike(value2) && !isArray2(value2) && !(value2 instanceof LazyWrapper)) {
|
|
50092
50092
|
if (value2 instanceof LodashWrapper) {
|
|
50093
50093
|
return value2;
|
|
50094
50094
|
}
|
|
50095
|
-
if (
|
|
50095
|
+
if (hasOwnProperty2.call(value2, "__wrapped__")) {
|
|
50096
50096
|
return wrapperClone(value2);
|
|
50097
50097
|
}
|
|
50098
50098
|
}
|
|
@@ -50102,7 +50102,7 @@ lodash.exports;
|
|
|
50102
50102
|
function object() {
|
|
50103
50103
|
}
|
|
50104
50104
|
return function(proto) {
|
|
50105
|
-
if (!
|
|
50105
|
+
if (!isObject2(proto)) {
|
|
50106
50106
|
return {};
|
|
50107
50107
|
}
|
|
50108
50108
|
if (objectCreate) {
|
|
@@ -50203,7 +50203,7 @@ lodash.exports;
|
|
|
50203
50203
|
return result2;
|
|
50204
50204
|
}
|
|
50205
50205
|
function lazyValue() {
|
|
50206
|
-
var array2 = this.__wrapped__.value(), dir = this.__dir__, isArr =
|
|
50206
|
+
var array2 = this.__wrapped__.value(), dir = this.__dir__, isArr = isArray2(array2), isRight = dir < 0, arrLength = isArr ? array2.length : 0, view = getView(0, arrLength, this.__views__), start2 = view.start, end2 = view.end, length2 = end2 - start2, index = isRight ? end2 : start2 - 1, iteratees = this.__iteratees__, iterLength = iteratees.length, resIndex = 0, takeCount = nativeMin(length2, this.__takeCount__);
|
|
50207
50207
|
if (!isArr || !isRight && arrLength == length2 && takeCount == length2) {
|
|
50208
50208
|
return baseWrapperValue(array2, this.__actions__);
|
|
50209
50209
|
}
|
|
@@ -50253,11 +50253,11 @@ lodash.exports;
|
|
|
50253
50253
|
var result2 = data[key];
|
|
50254
50254
|
return result2 === HASH_UNDEFINED ? undefined$1 : result2;
|
|
50255
50255
|
}
|
|
50256
|
-
return
|
|
50256
|
+
return hasOwnProperty2.call(data, key) ? data[key] : undefined$1;
|
|
50257
50257
|
}
|
|
50258
50258
|
function hashHas(key) {
|
|
50259
50259
|
var data = this.__data__;
|
|
50260
|
-
return nativeCreate ? data[key] !== undefined$1 :
|
|
50260
|
+
return nativeCreate ? data[key] !== undefined$1 : hasOwnProperty2.call(data, key);
|
|
50261
50261
|
}
|
|
50262
50262
|
function hashSet(key, value2) {
|
|
50263
50263
|
var data = this.__data__;
|
|
@@ -50412,9 +50412,9 @@ lodash.exports;
|
|
|
50412
50412
|
Stack2.prototype.has = stackHas;
|
|
50413
50413
|
Stack2.prototype.set = stackSet;
|
|
50414
50414
|
function arrayLikeKeys(value2, inherited) {
|
|
50415
|
-
var isArr =
|
|
50415
|
+
var isArr = isArray2(value2), isArg = !isArr && isArguments(value2), isBuff = !isArr && !isArg && isBuffer2(value2), isType = !isArr && !isArg && !isBuff && isTypedArray2(value2), skipIndexes = isArr || isArg || isBuff || isType, result2 = skipIndexes ? baseTimes(value2.length, String2) : [], length2 = result2.length;
|
|
50416
50416
|
for (var key in value2) {
|
|
50417
|
-
if ((inherited ||
|
|
50417
|
+
if ((inherited || hasOwnProperty2.call(value2, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
50418
50418
|
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
50419
50419
|
isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
|
|
50420
50420
|
isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties.
|
|
@@ -50441,7 +50441,7 @@ lodash.exports;
|
|
|
50441
50441
|
}
|
|
50442
50442
|
function assignValue(object, key, value2) {
|
|
50443
50443
|
var objValue = object[key];
|
|
50444
|
-
if (!(
|
|
50444
|
+
if (!(hasOwnProperty2.call(object, key) && eq(objValue, value2)) || value2 === undefined$1 && !(key in object)) {
|
|
50445
50445
|
baseAssignValue(object, key, value2);
|
|
50446
50446
|
}
|
|
50447
50447
|
}
|
|
@@ -50504,10 +50504,10 @@ lodash.exports;
|
|
|
50504
50504
|
if (result2 !== undefined$1) {
|
|
50505
50505
|
return result2;
|
|
50506
50506
|
}
|
|
50507
|
-
if (!
|
|
50507
|
+
if (!isObject2(value2)) {
|
|
50508
50508
|
return value2;
|
|
50509
50509
|
}
|
|
50510
|
-
var isArr =
|
|
50510
|
+
var isArr = isArray2(value2);
|
|
50511
50511
|
if (isArr) {
|
|
50512
50512
|
result2 = initCloneArray(value2);
|
|
50513
50513
|
if (!isDeep) {
|
|
@@ -50515,7 +50515,7 @@ lodash.exports;
|
|
|
50515
50515
|
}
|
|
50516
50516
|
} else {
|
|
50517
50517
|
var tag = getTag(value2), isFunc = tag == funcTag || tag == genTag;
|
|
50518
|
-
if (
|
|
50518
|
+
if (isBuffer2(value2)) {
|
|
50519
50519
|
return cloneBuffer(value2, isDeep);
|
|
50520
50520
|
}
|
|
50521
50521
|
if (tag == objectTag || tag == argsTag || isFunc && !object) {
|
|
@@ -50704,7 +50704,7 @@ lodash.exports;
|
|
|
50704
50704
|
}
|
|
50705
50705
|
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
|
50706
50706
|
var result2 = keysFunc(object);
|
|
50707
|
-
return
|
|
50707
|
+
return isArray2(object) ? result2 : arrayPush(result2, symbolsFunc(object));
|
|
50708
50708
|
}
|
|
50709
50709
|
function baseGetTag(value2) {
|
|
50710
50710
|
if (value2 == null) {
|
|
@@ -50716,7 +50716,7 @@ lodash.exports;
|
|
|
50716
50716
|
return value2 > other;
|
|
50717
50717
|
}
|
|
50718
50718
|
function baseHas(object, key) {
|
|
50719
|
-
return object != null &&
|
|
50719
|
+
return object != null && hasOwnProperty2.call(object, key);
|
|
50720
50720
|
}
|
|
50721
50721
|
function baseHasIn(object, key) {
|
|
50722
50722
|
return object != null && key in Object2(object);
|
|
@@ -50787,12 +50787,12 @@ lodash.exports;
|
|
|
50787
50787
|
return baseIsEqualDeep(value2, other, bitmask, customizer, baseIsEqual, stack);
|
|
50788
50788
|
}
|
|
50789
50789
|
function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
|
|
50790
|
-
var objIsArr =
|
|
50790
|
+
var objIsArr = isArray2(object), othIsArr = isArray2(other), objTag = objIsArr ? arrayTag : getTag(object), othTag = othIsArr ? arrayTag : getTag(other);
|
|
50791
50791
|
objTag = objTag == argsTag ? objectTag : objTag;
|
|
50792
50792
|
othTag = othTag == argsTag ? objectTag : othTag;
|
|
50793
50793
|
var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag;
|
|
50794
|
-
if (isSameTag &&
|
|
50795
|
-
if (!
|
|
50794
|
+
if (isSameTag && isBuffer2(object)) {
|
|
50795
|
+
if (!isBuffer2(other)) {
|
|
50796
50796
|
return false;
|
|
50797
50797
|
}
|
|
50798
50798
|
objIsArr = true;
|
|
@@ -50800,10 +50800,10 @@ lodash.exports;
|
|
|
50800
50800
|
}
|
|
50801
50801
|
if (isSameTag && !objIsObj) {
|
|
50802
50802
|
stack || (stack = new Stack2());
|
|
50803
|
-
return objIsArr ||
|
|
50803
|
+
return objIsArr || isTypedArray2(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);
|
|
50804
50804
|
}
|
|
50805
50805
|
if (!(bitmask & COMPARE_PARTIAL_FLAG)) {
|
|
50806
|
-
var objIsWrapped = objIsObj &&
|
|
50806
|
+
var objIsWrapped = objIsObj && hasOwnProperty2.call(object, "__wrapped__"), othIsWrapped = othIsObj && hasOwnProperty2.call(other, "__wrapped__");
|
|
50807
50807
|
if (objIsWrapped || othIsWrapped) {
|
|
50808
50808
|
var objUnwrapped = objIsWrapped ? object.value() : object, othUnwrapped = othIsWrapped ? other.value() : other;
|
|
50809
50809
|
stack || (stack = new Stack2());
|
|
@@ -50851,7 +50851,7 @@ lodash.exports;
|
|
|
50851
50851
|
return true;
|
|
50852
50852
|
}
|
|
50853
50853
|
function baseIsNative(value2) {
|
|
50854
|
-
if (!
|
|
50854
|
+
if (!isObject2(value2) || isMasked(value2)) {
|
|
50855
50855
|
return false;
|
|
50856
50856
|
}
|
|
50857
50857
|
var pattern = isFunction2(value2) ? reIsNative : reIsHostCtor;
|
|
@@ -50874,7 +50874,7 @@ lodash.exports;
|
|
|
50874
50874
|
return identity2;
|
|
50875
50875
|
}
|
|
50876
50876
|
if (typeof value2 == "object") {
|
|
50877
|
-
return
|
|
50877
|
+
return isArray2(value2) ? baseMatchesProperty(value2[0], value2[1]) : baseMatches(value2);
|
|
50878
50878
|
}
|
|
50879
50879
|
return property(value2);
|
|
50880
50880
|
}
|
|
@@ -50884,19 +50884,19 @@ lodash.exports;
|
|
|
50884
50884
|
}
|
|
50885
50885
|
var result2 = [];
|
|
50886
50886
|
for (var key in Object2(object)) {
|
|
50887
|
-
if (
|
|
50887
|
+
if (hasOwnProperty2.call(object, key) && key != "constructor") {
|
|
50888
50888
|
result2.push(key);
|
|
50889
50889
|
}
|
|
50890
50890
|
}
|
|
50891
50891
|
return result2;
|
|
50892
50892
|
}
|
|
50893
50893
|
function baseKeysIn(object) {
|
|
50894
|
-
if (!
|
|
50894
|
+
if (!isObject2(object)) {
|
|
50895
50895
|
return nativeKeysIn(object);
|
|
50896
50896
|
}
|
|
50897
50897
|
var isProto = isPrototype(object), result2 = [];
|
|
50898
50898
|
for (var key in object) {
|
|
50899
|
-
if (!(key == "constructor" && (isProto || !
|
|
50899
|
+
if (!(key == "constructor" && (isProto || !hasOwnProperty2.call(object, key)))) {
|
|
50900
50900
|
result2.push(key);
|
|
50901
50901
|
}
|
|
50902
50902
|
}
|
|
@@ -50936,7 +50936,7 @@ lodash.exports;
|
|
|
50936
50936
|
}
|
|
50937
50937
|
baseFor(source, function(srcValue, key) {
|
|
50938
50938
|
stack || (stack = new Stack2());
|
|
50939
|
-
if (
|
|
50939
|
+
if (isObject2(srcValue)) {
|
|
50940
50940
|
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
|
|
50941
50941
|
} else {
|
|
50942
50942
|
var newValue = customizer ? customizer(safeGet(object, key), srcValue, key + "", object, source, stack) : undefined$1;
|
|
@@ -50956,10 +50956,10 @@ lodash.exports;
|
|
|
50956
50956
|
var newValue = customizer ? customizer(objValue, srcValue, key + "", object, source, stack) : undefined$1;
|
|
50957
50957
|
var isCommon = newValue === undefined$1;
|
|
50958
50958
|
if (isCommon) {
|
|
50959
|
-
var isArr =
|
|
50959
|
+
var isArr = isArray2(srcValue), isBuff = !isArr && isBuffer2(srcValue), isTyped = !isArr && !isBuff && isTypedArray2(srcValue);
|
|
50960
50960
|
newValue = srcValue;
|
|
50961
50961
|
if (isArr || isBuff || isTyped) {
|
|
50962
|
-
if (
|
|
50962
|
+
if (isArray2(objValue)) {
|
|
50963
50963
|
newValue = objValue;
|
|
50964
50964
|
} else if (isArrayLikeObject(objValue)) {
|
|
50965
50965
|
newValue = copyArray(objValue);
|
|
@@ -50976,7 +50976,7 @@ lodash.exports;
|
|
|
50976
50976
|
newValue = objValue;
|
|
50977
50977
|
if (isArguments(objValue)) {
|
|
50978
50978
|
newValue = toPlainObject(objValue);
|
|
50979
|
-
} else if (!
|
|
50979
|
+
} else if (!isObject2(objValue) || isFunction2(objValue)) {
|
|
50980
50980
|
newValue = initCloneObject(srcValue);
|
|
50981
50981
|
}
|
|
50982
50982
|
} else {
|
|
@@ -51001,7 +51001,7 @@ lodash.exports;
|
|
|
51001
51001
|
function baseOrderBy(collection, iteratees, orders) {
|
|
51002
51002
|
if (iteratees.length) {
|
|
51003
51003
|
iteratees = arrayMap(iteratees, function(iteratee2) {
|
|
51004
|
-
if (
|
|
51004
|
+
if (isArray2(iteratee2)) {
|
|
51005
51005
|
return function(value2) {
|
|
51006
51006
|
return baseGet(value2, iteratee2.length === 1 ? iteratee2[0] : iteratee2);
|
|
51007
51007
|
};
|
|
@@ -51115,7 +51115,7 @@ lodash.exports;
|
|
|
51115
51115
|
return shuffleSelf(array2, baseClamp(n, 0, array2.length));
|
|
51116
51116
|
}
|
|
51117
51117
|
function baseSet(object, path, value2, customizer) {
|
|
51118
|
-
if (!
|
|
51118
|
+
if (!isObject2(object)) {
|
|
51119
51119
|
return object;
|
|
51120
51120
|
}
|
|
51121
51121
|
path = castPath(path, object);
|
|
@@ -51129,7 +51129,7 @@ lodash.exports;
|
|
|
51129
51129
|
var objValue = nested2[key];
|
|
51130
51130
|
newValue = customizer ? customizer(objValue, key, nested2) : undefined$1;
|
|
51131
51131
|
if (newValue === undefined$1) {
|
|
51132
|
-
newValue =
|
|
51132
|
+
newValue = isObject2(objValue) ? objValue : isIndex(path[index + 1]) ? [] : {};
|
|
51133
51133
|
}
|
|
51134
51134
|
}
|
|
51135
51135
|
assignValue(nested2, key, newValue);
|
|
@@ -51246,7 +51246,7 @@ lodash.exports;
|
|
|
51246
51246
|
if (typeof value2 == "string") {
|
|
51247
51247
|
return value2;
|
|
51248
51248
|
}
|
|
51249
|
-
if (
|
|
51249
|
+
if (isArray2(value2)) {
|
|
51250
51250
|
return arrayMap(value2, baseToString) + "";
|
|
51251
51251
|
}
|
|
51252
51252
|
if (isSymbol(value2)) {
|
|
@@ -51349,10 +51349,10 @@ lodash.exports;
|
|
|
51349
51349
|
return typeof value2 == "function" ? value2 : identity2;
|
|
51350
51350
|
}
|
|
51351
51351
|
function castPath(value2, object) {
|
|
51352
|
-
if (
|
|
51352
|
+
if (isArray2(value2)) {
|
|
51353
51353
|
return value2;
|
|
51354
51354
|
}
|
|
51355
|
-
return isKey(value2, object) ? [value2] : stringToPath(
|
|
51355
|
+
return isKey(value2, object) ? [value2] : stringToPath(toString3(value2));
|
|
51356
51356
|
}
|
|
51357
51357
|
var castRest = baseRest;
|
|
51358
51358
|
function castSlice(array2, start2, end2) {
|
|
@@ -51484,7 +51484,7 @@ lodash.exports;
|
|
|
51484
51484
|
}
|
|
51485
51485
|
function createAggregator(setter, initializer) {
|
|
51486
51486
|
return function(collection, iteratee2) {
|
|
51487
|
-
var func =
|
|
51487
|
+
var func = isArray2(collection) ? arrayAggregator : baseAggregator, accumulator = initializer ? initializer() : {};
|
|
51488
51488
|
return func(collection, setter, getIteratee(iteratee2, 2), accumulator);
|
|
51489
51489
|
};
|
|
51490
51490
|
}
|
|
@@ -51545,7 +51545,7 @@ lodash.exports;
|
|
|
51545
51545
|
}
|
|
51546
51546
|
function createCaseFirst(methodName) {
|
|
51547
51547
|
return function(string) {
|
|
51548
|
-
string =
|
|
51548
|
+
string = toString3(string);
|
|
51549
51549
|
var strSymbols = hasUnicode(string) ? stringToArray(string) : undefined$1;
|
|
51550
51550
|
var chr = strSymbols ? strSymbols[0] : string.charAt(0);
|
|
51551
51551
|
var trailing = strSymbols ? castSlice(strSymbols, 1).join("") : string.slice(1);
|
|
@@ -51579,7 +51579,7 @@ lodash.exports;
|
|
|
51579
51579
|
return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
|
|
51580
51580
|
}
|
|
51581
51581
|
var thisBinding = baseCreate(Ctor.prototype), result2 = Ctor.apply(thisBinding, args);
|
|
51582
|
-
return
|
|
51582
|
+
return isObject2(result2) ? result2 : thisBinding;
|
|
51583
51583
|
};
|
|
51584
51584
|
}
|
|
51585
51585
|
function createCurry(func, bitmask, arity) {
|
|
@@ -51651,7 +51651,7 @@ lodash.exports;
|
|
|
51651
51651
|
}
|
|
51652
51652
|
return function() {
|
|
51653
51653
|
var args = arguments, value2 = args[0];
|
|
51654
|
-
if (wrapper && args.length == 1 &&
|
|
51654
|
+
if (wrapper && args.length == 1 && isArray2(value2)) {
|
|
51655
51655
|
return wrapper.plant(value2).value();
|
|
51656
51656
|
}
|
|
51657
51657
|
var index2 = 0, result2 = length2 ? funcs[index2].apply(this, args) : value2;
|
|
@@ -51832,8 +51832,8 @@ lodash.exports;
|
|
|
51832
51832
|
number = toNumber(number);
|
|
51833
51833
|
precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);
|
|
51834
51834
|
if (precision && nativeIsFinite(number)) {
|
|
51835
|
-
var pair = (
|
|
51836
|
-
pair = (
|
|
51835
|
+
var pair = (toString3(number) + "e").split("e"), value2 = func(pair[0] + "e" + (+pair[1] + precision));
|
|
51836
|
+
pair = (toString3(value2) + "e").split("e");
|
|
51837
51837
|
return +(pair[0] + "e" + (+pair[1] - precision));
|
|
51838
51838
|
}
|
|
51839
51839
|
return func(number);
|
|
@@ -51909,13 +51909,13 @@ lodash.exports;
|
|
|
51909
51909
|
return setWrapToString(setter(result2, newData), func, bitmask);
|
|
51910
51910
|
}
|
|
51911
51911
|
function customDefaultsAssignIn(objValue, srcValue, key, object) {
|
|
51912
|
-
if (objValue === undefined$1 || eq(objValue, objectProto[key]) && !
|
|
51912
|
+
if (objValue === undefined$1 || eq(objValue, objectProto[key]) && !hasOwnProperty2.call(object, key)) {
|
|
51913
51913
|
return srcValue;
|
|
51914
51914
|
}
|
|
51915
51915
|
return objValue;
|
|
51916
51916
|
}
|
|
51917
51917
|
function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {
|
|
51918
|
-
if (
|
|
51918
|
+
if (isObject2(objValue) && isObject2(srcValue)) {
|
|
51919
51919
|
stack.set(srcValue, objValue);
|
|
51920
51920
|
baseMerge(objValue, srcValue, undefined$1, customDefaultsMerge, stack);
|
|
51921
51921
|
stack["delete"](srcValue);
|
|
@@ -52022,7 +52022,7 @@ lodash.exports;
|
|
|
52022
52022
|
var index = objLength;
|
|
52023
52023
|
while (index--) {
|
|
52024
52024
|
var key = objProps[index];
|
|
52025
|
-
if (!(isPartial ? key in other :
|
|
52025
|
+
if (!(isPartial ? key in other : hasOwnProperty2.call(other, key))) {
|
|
52026
52026
|
return false;
|
|
52027
52027
|
}
|
|
52028
52028
|
}
|
|
@@ -52070,7 +52070,7 @@ lodash.exports;
|
|
|
52070
52070
|
return metaMap.get(func);
|
|
52071
52071
|
};
|
|
52072
52072
|
function getFuncName(func) {
|
|
52073
|
-
var result2 = func.name + "", array2 = realNames[result2], length2 =
|
|
52073
|
+
var result2 = func.name + "", array2 = realNames[result2], length2 = hasOwnProperty2.call(realNames, result2) ? array2.length : 0;
|
|
52074
52074
|
while (length2--) {
|
|
52075
52075
|
var data = array2[length2], otherFunc = data.func;
|
|
52076
52076
|
if (otherFunc == null || otherFunc == func) {
|
|
@@ -52080,7 +52080,7 @@ lodash.exports;
|
|
|
52080
52080
|
return result2;
|
|
52081
52081
|
}
|
|
52082
52082
|
function getHolder(func) {
|
|
52083
|
-
var object =
|
|
52083
|
+
var object = hasOwnProperty2.call(lodash2, "placeholder") ? lodash2 : func;
|
|
52084
52084
|
return object.placeholder;
|
|
52085
52085
|
}
|
|
52086
52086
|
function getIteratee() {
|
|
@@ -52105,7 +52105,7 @@ lodash.exports;
|
|
|
52105
52105
|
return baseIsNative(value2) ? value2 : undefined$1;
|
|
52106
52106
|
}
|
|
52107
52107
|
function getRawTag(value2) {
|
|
52108
|
-
var isOwn =
|
|
52108
|
+
var isOwn = hasOwnProperty2.call(value2, symToStringTag), tag = value2[symToStringTag];
|
|
52109
52109
|
try {
|
|
52110
52110
|
value2[symToStringTag] = undefined$1;
|
|
52111
52111
|
var unmasked = true;
|
|
@@ -52198,11 +52198,11 @@ lodash.exports;
|
|
|
52198
52198
|
return result2;
|
|
52199
52199
|
}
|
|
52200
52200
|
length2 = object == null ? 0 : object.length;
|
|
52201
|
-
return !!length2 && isLength(length2) && isIndex(key, length2) && (
|
|
52201
|
+
return !!length2 && isLength(length2) && isIndex(key, length2) && (isArray2(object) || isArguments(object));
|
|
52202
52202
|
}
|
|
52203
52203
|
function initCloneArray(array2) {
|
|
52204
52204
|
var length2 = array2.length, result2 = new array2.constructor(length2);
|
|
52205
|
-
if (length2 && typeof array2[0] == "string" &&
|
|
52205
|
+
if (length2 && typeof array2[0] == "string" && hasOwnProperty2.call(array2, "index")) {
|
|
52206
52206
|
result2.index = array2.index;
|
|
52207
52207
|
result2.input = array2.input;
|
|
52208
52208
|
}
|
|
@@ -52255,7 +52255,7 @@ lodash.exports;
|
|
|
52255
52255
|
return source.replace(reWrapComment, "{\n/* [wrapped with " + details + "] */\n");
|
|
52256
52256
|
}
|
|
52257
52257
|
function isFlattenable(value2) {
|
|
52258
|
-
return
|
|
52258
|
+
return isArray2(value2) || isArguments(value2) || !!(spreadableSymbol && value2 && value2[spreadableSymbol]);
|
|
52259
52259
|
}
|
|
52260
52260
|
function isIndex(value2, length2) {
|
|
52261
52261
|
var type = typeof value2;
|
|
@@ -52263,7 +52263,7 @@ lodash.exports;
|
|
|
52263
52263
|
return !!length2 && (type == "number" || type != "symbol" && reIsUint.test(value2)) && (value2 > -1 && value2 % 1 == 0 && value2 < length2);
|
|
52264
52264
|
}
|
|
52265
52265
|
function isIterateeCall(value2, index, object) {
|
|
52266
|
-
if (!
|
|
52266
|
+
if (!isObject2(object)) {
|
|
52267
52267
|
return false;
|
|
52268
52268
|
}
|
|
52269
52269
|
var type = typeof index;
|
|
@@ -52273,7 +52273,7 @@ lodash.exports;
|
|
|
52273
52273
|
return false;
|
|
52274
52274
|
}
|
|
52275
52275
|
function isKey(value2, object) {
|
|
52276
|
-
if (
|
|
52276
|
+
if (isArray2(value2)) {
|
|
52277
52277
|
return false;
|
|
52278
52278
|
}
|
|
52279
52279
|
var type = typeof value2;
|
|
@@ -52306,7 +52306,7 @@ lodash.exports;
|
|
|
52306
52306
|
return value2 === proto;
|
|
52307
52307
|
}
|
|
52308
52308
|
function isStrictComparable(value2) {
|
|
52309
|
-
return value2 === value2 && !
|
|
52309
|
+
return value2 === value2 && !isObject2(value2);
|
|
52310
52310
|
}
|
|
52311
52311
|
function matchesStrictComparable(key, srcValue) {
|
|
52312
52312
|
return function(object) {
|
|
@@ -52529,7 +52529,7 @@ lodash.exports;
|
|
|
52529
52529
|
while (index--) {
|
|
52530
52530
|
args[index - 1] = arguments[index];
|
|
52531
52531
|
}
|
|
52532
|
-
return arrayPush(
|
|
52532
|
+
return arrayPush(isArray2(array2) ? copyArray(array2) : [array2], baseFlatten(args, 1));
|
|
52533
52533
|
}
|
|
52534
52534
|
var difference = baseRest(function(array2, values3) {
|
|
52535
52535
|
return isArrayLikeObject(array2) ? baseDifference(array2, baseFlatten(values3, 1, isArrayLikeObject, true)) : [];
|
|
@@ -52973,21 +52973,21 @@ lodash.exports;
|
|
|
52973
52973
|
return baseWrapperValue(this.__wrapped__, this.__actions__);
|
|
52974
52974
|
}
|
|
52975
52975
|
var countBy = createAggregator(function(result2, value2, key) {
|
|
52976
|
-
if (
|
|
52976
|
+
if (hasOwnProperty2.call(result2, key)) {
|
|
52977
52977
|
++result2[key];
|
|
52978
52978
|
} else {
|
|
52979
52979
|
baseAssignValue(result2, key, 1);
|
|
52980
52980
|
}
|
|
52981
52981
|
});
|
|
52982
52982
|
function every(collection, predicate, guard) {
|
|
52983
|
-
var func =
|
|
52983
|
+
var func = isArray2(collection) ? arrayEvery : baseEvery;
|
|
52984
52984
|
if (guard && isIterateeCall(collection, predicate, guard)) {
|
|
52985
52985
|
predicate = undefined$1;
|
|
52986
52986
|
}
|
|
52987
52987
|
return func(collection, getIteratee(predicate, 3));
|
|
52988
52988
|
}
|
|
52989
|
-
function
|
|
52990
|
-
var func =
|
|
52989
|
+
function filter3(collection, predicate) {
|
|
52990
|
+
var func = isArray2(collection) ? arrayFilter : baseFilter;
|
|
52991
52991
|
return func(collection, getIteratee(predicate, 3));
|
|
52992
52992
|
}
|
|
52993
52993
|
var find2 = createFind(findIndex2);
|
|
@@ -53002,16 +53002,16 @@ lodash.exports;
|
|
|
53002
53002
|
depth = depth === undefined$1 ? 1 : toInteger(depth);
|
|
53003
53003
|
return baseFlatten(map(collection, iteratee2), depth);
|
|
53004
53004
|
}
|
|
53005
|
-
function
|
|
53006
|
-
var func =
|
|
53005
|
+
function forEach2(collection, iteratee2) {
|
|
53006
|
+
var func = isArray2(collection) ? arrayEach : baseEach;
|
|
53007
53007
|
return func(collection, getIteratee(iteratee2, 3));
|
|
53008
53008
|
}
|
|
53009
53009
|
function forEachRight(collection, iteratee2) {
|
|
53010
|
-
var func =
|
|
53010
|
+
var func = isArray2(collection) ? arrayEachRight : baseEachRight;
|
|
53011
53011
|
return func(collection, getIteratee(iteratee2, 3));
|
|
53012
53012
|
}
|
|
53013
53013
|
var groupBy = createAggregator(function(result2, value2, key) {
|
|
53014
|
-
if (
|
|
53014
|
+
if (hasOwnProperty2.call(result2, key)) {
|
|
53015
53015
|
result2[key].push(value2);
|
|
53016
53016
|
} else {
|
|
53017
53017
|
baseAssignValue(result2, key, [value2]);
|
|
@@ -53024,7 +53024,7 @@ lodash.exports;
|
|
|
53024
53024
|
if (fromIndex < 0) {
|
|
53025
53025
|
fromIndex = nativeMax(length2 + fromIndex, 0);
|
|
53026
53026
|
}
|
|
53027
|
-
return
|
|
53027
|
+
return isString2(collection) ? fromIndex <= length2 && collection.indexOf(value2, fromIndex) > -1 : !!length2 && baseIndexOf(collection, value2, fromIndex) > -1;
|
|
53028
53028
|
}
|
|
53029
53029
|
var invokeMap = baseRest(function(collection, path, args) {
|
|
53030
53030
|
var index = -1, isFunc = typeof path == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
|
|
@@ -53037,18 +53037,18 @@ lodash.exports;
|
|
|
53037
53037
|
baseAssignValue(result2, key, value2);
|
|
53038
53038
|
});
|
|
53039
53039
|
function map(collection, iteratee2) {
|
|
53040
|
-
var func =
|
|
53040
|
+
var func = isArray2(collection) ? arrayMap : baseMap;
|
|
53041
53041
|
return func(collection, getIteratee(iteratee2, 3));
|
|
53042
53042
|
}
|
|
53043
53043
|
function orderBy(collection, iteratees, orders, guard) {
|
|
53044
53044
|
if (collection == null) {
|
|
53045
53045
|
return [];
|
|
53046
53046
|
}
|
|
53047
|
-
if (!
|
|
53047
|
+
if (!isArray2(iteratees)) {
|
|
53048
53048
|
iteratees = iteratees == null ? [] : [iteratees];
|
|
53049
53049
|
}
|
|
53050
53050
|
orders = guard ? undefined$1 : orders;
|
|
53051
|
-
if (!
|
|
53051
|
+
if (!isArray2(orders)) {
|
|
53052
53052
|
orders = orders == null ? [] : [orders];
|
|
53053
53053
|
}
|
|
53054
53054
|
return baseOrderBy(collection, iteratees, orders);
|
|
@@ -53059,19 +53059,19 @@ lodash.exports;
|
|
|
53059
53059
|
return [[], []];
|
|
53060
53060
|
});
|
|
53061
53061
|
function reduce2(collection, iteratee2, accumulator) {
|
|
53062
|
-
var func =
|
|
53062
|
+
var func = isArray2(collection) ? arrayReduce : baseReduce, initAccum = arguments.length < 3;
|
|
53063
53063
|
return func(collection, getIteratee(iteratee2, 4), accumulator, initAccum, baseEach);
|
|
53064
53064
|
}
|
|
53065
53065
|
function reduceRight(collection, iteratee2, accumulator) {
|
|
53066
|
-
var func =
|
|
53066
|
+
var func = isArray2(collection) ? arrayReduceRight : baseReduce, initAccum = arguments.length < 3;
|
|
53067
53067
|
return func(collection, getIteratee(iteratee2, 4), accumulator, initAccum, baseEachRight);
|
|
53068
53068
|
}
|
|
53069
53069
|
function reject(collection, predicate) {
|
|
53070
|
-
var func =
|
|
53070
|
+
var func = isArray2(collection) ? arrayFilter : baseFilter;
|
|
53071
53071
|
return func(collection, negate(getIteratee(predicate, 3)));
|
|
53072
53072
|
}
|
|
53073
53073
|
function sample(collection) {
|
|
53074
|
-
var func =
|
|
53074
|
+
var func = isArray2(collection) ? arraySample : baseSample;
|
|
53075
53075
|
return func(collection);
|
|
53076
53076
|
}
|
|
53077
53077
|
function sampleSize(collection, n, guard) {
|
|
@@ -53080,11 +53080,11 @@ lodash.exports;
|
|
|
53080
53080
|
} else {
|
|
53081
53081
|
n = toInteger(n);
|
|
53082
53082
|
}
|
|
53083
|
-
var func =
|
|
53083
|
+
var func = isArray2(collection) ? arraySampleSize : baseSampleSize;
|
|
53084
53084
|
return func(collection, n);
|
|
53085
53085
|
}
|
|
53086
53086
|
function shuffle(collection) {
|
|
53087
|
-
var func =
|
|
53087
|
+
var func = isArray2(collection) ? arrayShuffle : baseShuffle;
|
|
53088
53088
|
return func(collection);
|
|
53089
53089
|
}
|
|
53090
53090
|
function size(collection) {
|
|
@@ -53092,7 +53092,7 @@ lodash.exports;
|
|
|
53092
53092
|
return 0;
|
|
53093
53093
|
}
|
|
53094
53094
|
if (isArrayLike(collection)) {
|
|
53095
|
-
return
|
|
53095
|
+
return isString2(collection) ? stringSize(collection) : collection.length;
|
|
53096
53096
|
}
|
|
53097
53097
|
var tag = getTag(collection);
|
|
53098
53098
|
if (tag == mapTag || tag == setTag) {
|
|
@@ -53101,7 +53101,7 @@ lodash.exports;
|
|
|
53101
53101
|
return baseKeys(collection).length;
|
|
53102
53102
|
}
|
|
53103
53103
|
function some(collection, predicate, guard) {
|
|
53104
|
-
var func =
|
|
53104
|
+
var func = isArray2(collection) ? arraySome : baseSome;
|
|
53105
53105
|
if (guard && isIterateeCall(collection, predicate, guard)) {
|
|
53106
53106
|
predicate = undefined$1;
|
|
53107
53107
|
}
|
|
@@ -53154,10 +53154,10 @@ lodash.exports;
|
|
|
53154
53154
|
return result2;
|
|
53155
53155
|
};
|
|
53156
53156
|
}
|
|
53157
|
-
var
|
|
53157
|
+
var bind2 = baseRest(function(func, thisArg, partials) {
|
|
53158
53158
|
var bitmask = WRAP_BIND_FLAG;
|
|
53159
53159
|
if (partials.length) {
|
|
53160
|
-
var holders = replaceHolders(partials, getHolder(
|
|
53160
|
+
var holders = replaceHolders(partials, getHolder(bind2));
|
|
53161
53161
|
bitmask |= WRAP_PARTIAL_FLAG;
|
|
53162
53162
|
}
|
|
53163
53163
|
return createWrap(func, bitmask, thisArg, partials, holders);
|
|
@@ -53188,7 +53188,7 @@ lodash.exports;
|
|
|
53188
53188
|
throw new TypeError2(FUNC_ERROR_TEXT);
|
|
53189
53189
|
}
|
|
53190
53190
|
wait = toNumber(wait) || 0;
|
|
53191
|
-
if (
|
|
53191
|
+
if (isObject2(options)) {
|
|
53192
53192
|
leading = !!options.leading;
|
|
53193
53193
|
maxing = "maxWait" in options;
|
|
53194
53194
|
maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
|
|
@@ -53312,7 +53312,7 @@ lodash.exports;
|
|
|
53312
53312
|
return before(2, func);
|
|
53313
53313
|
}
|
|
53314
53314
|
var overArgs = castRest(function(func, transforms) {
|
|
53315
|
-
transforms = transforms.length == 1 &&
|
|
53315
|
+
transforms = transforms.length == 1 && isArray2(transforms[0]) ? arrayMap(transforms[0], baseUnary(getIteratee())) : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee()));
|
|
53316
53316
|
var funcsLength = transforms.length;
|
|
53317
53317
|
return baseRest(function(args) {
|
|
53318
53318
|
var index = -1, length2 = nativeMin(args.length, funcsLength);
|
|
@@ -53340,7 +53340,7 @@ lodash.exports;
|
|
|
53340
53340
|
start2 = start2 === undefined$1 ? start2 : toInteger(start2);
|
|
53341
53341
|
return baseRest(func, start2);
|
|
53342
53342
|
}
|
|
53343
|
-
function
|
|
53343
|
+
function spread2(func, start2) {
|
|
53344
53344
|
if (typeof func != "function") {
|
|
53345
53345
|
throw new TypeError2(FUNC_ERROR_TEXT);
|
|
53346
53346
|
}
|
|
@@ -53353,12 +53353,12 @@ lodash.exports;
|
|
|
53353
53353
|
return apply(func, this, otherArgs);
|
|
53354
53354
|
});
|
|
53355
53355
|
}
|
|
53356
|
-
function
|
|
53356
|
+
function throttle2(func, wait, options) {
|
|
53357
53357
|
var leading = true, trailing = true;
|
|
53358
53358
|
if (typeof func != "function") {
|
|
53359
53359
|
throw new TypeError2(FUNC_ERROR_TEXT);
|
|
53360
53360
|
}
|
|
53361
|
-
if (
|
|
53361
|
+
if (isObject2(options)) {
|
|
53362
53362
|
leading = "leading" in options ? !!options.leading : leading;
|
|
53363
53363
|
trailing = "trailing" in options ? !!options.trailing : trailing;
|
|
53364
53364
|
}
|
|
@@ -53379,7 +53379,7 @@ lodash.exports;
|
|
|
53379
53379
|
return [];
|
|
53380
53380
|
}
|
|
53381
53381
|
var value2 = arguments[0];
|
|
53382
|
-
return
|
|
53382
|
+
return isArray2(value2) ? value2 : [value2];
|
|
53383
53383
|
}
|
|
53384
53384
|
function clone(value2) {
|
|
53385
53385
|
return baseClone(value2, CLONE_SYMBOLS_FLAG);
|
|
@@ -53408,21 +53408,21 @@ lodash.exports;
|
|
|
53408
53408
|
var isArguments = baseIsArguments(/* @__PURE__ */ function() {
|
|
53409
53409
|
return arguments;
|
|
53410
53410
|
}()) ? baseIsArguments : function(value2) {
|
|
53411
|
-
return isObjectLike(value2) &&
|
|
53411
|
+
return isObjectLike(value2) && hasOwnProperty2.call(value2, "callee") && !propertyIsEnumerable.call(value2, "callee");
|
|
53412
53412
|
};
|
|
53413
|
-
var
|
|
53414
|
-
var
|
|
53413
|
+
var isArray2 = Array2.isArray;
|
|
53414
|
+
var isArrayBuffer2 = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer;
|
|
53415
53415
|
function isArrayLike(value2) {
|
|
53416
53416
|
return value2 != null && isLength(value2.length) && !isFunction2(value2);
|
|
53417
53417
|
}
|
|
53418
53418
|
function isArrayLikeObject(value2) {
|
|
53419
53419
|
return isObjectLike(value2) && isArrayLike(value2);
|
|
53420
53420
|
}
|
|
53421
|
-
function
|
|
53421
|
+
function isBoolean2(value2) {
|
|
53422
53422
|
return value2 === true || value2 === false || isObjectLike(value2) && baseGetTag(value2) == boolTag;
|
|
53423
53423
|
}
|
|
53424
|
-
var
|
|
53425
|
-
var
|
|
53424
|
+
var isBuffer2 = nativeIsBuffer || stubFalse;
|
|
53425
|
+
var isDate2 = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate;
|
|
53426
53426
|
function isElement2(value2) {
|
|
53427
53427
|
return isObjectLike(value2) && value2.nodeType === 1 && !isPlainObject2(value2);
|
|
53428
53428
|
}
|
|
@@ -53430,7 +53430,7 @@ lodash.exports;
|
|
|
53430
53430
|
if (value2 == null) {
|
|
53431
53431
|
return true;
|
|
53432
53432
|
}
|
|
53433
|
-
if (isArrayLike(value2) && (
|
|
53433
|
+
if (isArrayLike(value2) && (isArray2(value2) || typeof value2 == "string" || typeof value2.splice == "function" || isBuffer2(value2) || isTypedArray2(value2) || isArguments(value2))) {
|
|
53434
53434
|
return !value2.length;
|
|
53435
53435
|
}
|
|
53436
53436
|
var tag = getTag(value2);
|
|
@@ -53441,7 +53441,7 @@ lodash.exports;
|
|
|
53441
53441
|
return !baseKeys(value2).length;
|
|
53442
53442
|
}
|
|
53443
53443
|
for (var key in value2) {
|
|
53444
|
-
if (
|
|
53444
|
+
if (hasOwnProperty2.call(value2, key)) {
|
|
53445
53445
|
return false;
|
|
53446
53446
|
}
|
|
53447
53447
|
}
|
|
@@ -53466,7 +53466,7 @@ lodash.exports;
|
|
|
53466
53466
|
return typeof value2 == "number" && nativeIsFinite(value2);
|
|
53467
53467
|
}
|
|
53468
53468
|
function isFunction2(value2) {
|
|
53469
|
-
if (!
|
|
53469
|
+
if (!isObject2(value2)) {
|
|
53470
53470
|
return false;
|
|
53471
53471
|
}
|
|
53472
53472
|
var tag = baseGetTag(value2);
|
|
@@ -53478,7 +53478,7 @@ lodash.exports;
|
|
|
53478
53478
|
function isLength(value2) {
|
|
53479
53479
|
return typeof value2 == "number" && value2 > -1 && value2 % 1 == 0 && value2 <= MAX_SAFE_INTEGER;
|
|
53480
53480
|
}
|
|
53481
|
-
function
|
|
53481
|
+
function isObject2(value2) {
|
|
53482
53482
|
var type = typeof value2;
|
|
53483
53483
|
return value2 != null && (type == "object" || type == "function");
|
|
53484
53484
|
}
|
|
@@ -53494,7 +53494,7 @@ lodash.exports;
|
|
|
53494
53494
|
return baseIsMatch(object, source, getMatchData(source), customizer);
|
|
53495
53495
|
}
|
|
53496
53496
|
function isNaN2(value2) {
|
|
53497
|
-
return
|
|
53497
|
+
return isNumber2(value2) && value2 != +value2;
|
|
53498
53498
|
}
|
|
53499
53499
|
function isNative(value2) {
|
|
53500
53500
|
if (isMaskable(value2)) {
|
|
@@ -53508,7 +53508,7 @@ lodash.exports;
|
|
|
53508
53508
|
function isNil(value2) {
|
|
53509
53509
|
return value2 == null;
|
|
53510
53510
|
}
|
|
53511
|
-
function
|
|
53511
|
+
function isNumber2(value2) {
|
|
53512
53512
|
return typeof value2 == "number" || isObjectLike(value2) && baseGetTag(value2) == numberTag;
|
|
53513
53513
|
}
|
|
53514
53514
|
function isPlainObject2(value2) {
|
|
@@ -53519,22 +53519,22 @@ lodash.exports;
|
|
|
53519
53519
|
if (proto === null) {
|
|
53520
53520
|
return true;
|
|
53521
53521
|
}
|
|
53522
|
-
var Ctor =
|
|
53522
|
+
var Ctor = hasOwnProperty2.call(proto, "constructor") && proto.constructor;
|
|
53523
53523
|
return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;
|
|
53524
53524
|
}
|
|
53525
|
-
var
|
|
53525
|
+
var isRegExp2 = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;
|
|
53526
53526
|
function isSafeInteger(value2) {
|
|
53527
53527
|
return isInteger2(value2) && value2 >= -9007199254740991 && value2 <= MAX_SAFE_INTEGER;
|
|
53528
53528
|
}
|
|
53529
53529
|
var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
|
|
53530
|
-
function
|
|
53531
|
-
return typeof value2 == "string" || !
|
|
53530
|
+
function isString2(value2) {
|
|
53531
|
+
return typeof value2 == "string" || !isArray2(value2) && isObjectLike(value2) && baseGetTag(value2) == stringTag;
|
|
53532
53532
|
}
|
|
53533
53533
|
function isSymbol(value2) {
|
|
53534
53534
|
return typeof value2 == "symbol" || isObjectLike(value2) && baseGetTag(value2) == symbolTag;
|
|
53535
53535
|
}
|
|
53536
|
-
var
|
|
53537
|
-
function
|
|
53536
|
+
var isTypedArray2 = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
|
53537
|
+
function isUndefined2(value2) {
|
|
53538
53538
|
return value2 === undefined$1;
|
|
53539
53539
|
}
|
|
53540
53540
|
function isWeakMap(value2) {
|
|
@@ -53552,7 +53552,7 @@ lodash.exports;
|
|
|
53552
53552
|
return [];
|
|
53553
53553
|
}
|
|
53554
53554
|
if (isArrayLike(value2)) {
|
|
53555
|
-
return
|
|
53555
|
+
return isString2(value2) ? stringToArray(value2) : copyArray(value2);
|
|
53556
53556
|
}
|
|
53557
53557
|
if (symIterator && value2[symIterator]) {
|
|
53558
53558
|
return iteratorToArray(value2[symIterator]());
|
|
@@ -53585,9 +53585,9 @@ lodash.exports;
|
|
|
53585
53585
|
if (isSymbol(value2)) {
|
|
53586
53586
|
return NAN;
|
|
53587
53587
|
}
|
|
53588
|
-
if (
|
|
53588
|
+
if (isObject2(value2)) {
|
|
53589
53589
|
var other = typeof value2.valueOf == "function" ? value2.valueOf() : value2;
|
|
53590
|
-
value2 =
|
|
53590
|
+
value2 = isObject2(other) ? other + "" : other;
|
|
53591
53591
|
}
|
|
53592
53592
|
if (typeof value2 != "string") {
|
|
53593
53593
|
return value2 === 0 ? value2 : +value2;
|
|
@@ -53602,7 +53602,7 @@ lodash.exports;
|
|
|
53602
53602
|
function toSafeInteger(value2) {
|
|
53603
53603
|
return value2 ? baseClamp(toInteger(value2), -9007199254740991, MAX_SAFE_INTEGER) : value2 === 0 ? value2 : 0;
|
|
53604
53604
|
}
|
|
53605
|
-
function
|
|
53605
|
+
function toString3(value2) {
|
|
53606
53606
|
return value2 == null ? "" : baseToString(value2);
|
|
53607
53607
|
}
|
|
53608
53608
|
var assign2 = createAssigner(function(object, source) {
|
|
@@ -53611,7 +53611,7 @@ lodash.exports;
|
|
|
53611
53611
|
return;
|
|
53612
53612
|
}
|
|
53613
53613
|
for (var key in source) {
|
|
53614
|
-
if (
|
|
53614
|
+
if (hasOwnProperty2.call(source, key)) {
|
|
53615
53615
|
assignValue(object, key, source[key]);
|
|
53616
53616
|
}
|
|
53617
53617
|
}
|
|
@@ -53626,8 +53626,8 @@ lodash.exports;
|
|
|
53626
53626
|
copyObject(source, keys(source), object, customizer);
|
|
53627
53627
|
});
|
|
53628
53628
|
var at = flatRest(baseAt);
|
|
53629
|
-
function create2(
|
|
53630
|
-
var result2 = baseCreate(
|
|
53629
|
+
function create2(prototype2, properties2) {
|
|
53630
|
+
var result2 = baseCreate(prototype2);
|
|
53631
53631
|
return properties2 == null ? result2 : baseAssign(result2, properties2);
|
|
53632
53632
|
}
|
|
53633
53633
|
var defaults2 = baseRest(function(object, sources) {
|
|
@@ -53646,7 +53646,7 @@ lodash.exports;
|
|
|
53646
53646
|
while (++propsIndex < propsLength) {
|
|
53647
53647
|
var key = props[propsIndex];
|
|
53648
53648
|
var value2 = object[key];
|
|
53649
|
-
if (value2 === undefined$1 || eq(value2, objectProto[key]) && !
|
|
53649
|
+
if (value2 === undefined$1 || eq(value2, objectProto[key]) && !hasOwnProperty2.call(object, key)) {
|
|
53650
53650
|
object[key] = source[key];
|
|
53651
53651
|
}
|
|
53652
53652
|
}
|
|
@@ -53657,7 +53657,7 @@ lodash.exports;
|
|
|
53657
53657
|
args.push(undefined$1, customDefaultsMerge);
|
|
53658
53658
|
return apply(mergeWith, undefined$1, args);
|
|
53659
53659
|
});
|
|
53660
|
-
function
|
|
53660
|
+
function findKey2(object, predicate) {
|
|
53661
53661
|
return baseFindKey(object, getIteratee(predicate, 3), baseForOwn);
|
|
53662
53662
|
}
|
|
53663
53663
|
function findLastKey(object, predicate) {
|
|
@@ -53701,7 +53701,7 @@ lodash.exports;
|
|
|
53701
53701
|
if (value2 != null && typeof value2.toString != "function") {
|
|
53702
53702
|
value2 = nativeObjectToString.call(value2);
|
|
53703
53703
|
}
|
|
53704
|
-
if (
|
|
53704
|
+
if (hasOwnProperty2.call(result2, value2)) {
|
|
53705
53705
|
result2[value2].push(key);
|
|
53706
53706
|
} else {
|
|
53707
53707
|
result2[value2] = [key];
|
|
@@ -53802,13 +53802,13 @@ lodash.exports;
|
|
|
53802
53802
|
var toPairs = createToPairs(keys);
|
|
53803
53803
|
var toPairsIn = createToPairs(keysIn);
|
|
53804
53804
|
function transform(object, iteratee2, accumulator) {
|
|
53805
|
-
var isArr =
|
|
53805
|
+
var isArr = isArray2(object), isArrLike = isArr || isBuffer2(object) || isTypedArray2(object);
|
|
53806
53806
|
iteratee2 = getIteratee(iteratee2, 4);
|
|
53807
53807
|
if (accumulator == null) {
|
|
53808
53808
|
var Ctor = object && object.constructor;
|
|
53809
53809
|
if (isArrLike) {
|
|
53810
53810
|
accumulator = isArr ? new Ctor() : [];
|
|
53811
|
-
} else if (
|
|
53811
|
+
} else if (isObject2(object)) {
|
|
53812
53812
|
accumulator = isFunction2(Ctor) ? baseCreate(getPrototype(object)) : {};
|
|
53813
53813
|
} else {
|
|
53814
53814
|
accumulator = {};
|
|
@@ -53902,14 +53902,14 @@ lodash.exports;
|
|
|
53902
53902
|
return result2 + (index ? capitalize2(word) : word);
|
|
53903
53903
|
});
|
|
53904
53904
|
function capitalize2(string) {
|
|
53905
|
-
return upperFirst(
|
|
53905
|
+
return upperFirst(toString3(string).toLowerCase());
|
|
53906
53906
|
}
|
|
53907
53907
|
function deburr(string) {
|
|
53908
|
-
string =
|
|
53908
|
+
string = toString3(string);
|
|
53909
53909
|
return string && string.replace(reLatin, deburrLetter).replace(reComboMark, "");
|
|
53910
53910
|
}
|
|
53911
|
-
function
|
|
53912
|
-
string =
|
|
53911
|
+
function endsWith2(string, target, position2) {
|
|
53912
|
+
string = toString3(string);
|
|
53913
53913
|
target = baseToString(target);
|
|
53914
53914
|
var length2 = string.length;
|
|
53915
53915
|
position2 = position2 === undefined$1 ? length2 : baseClamp(toInteger(position2), 0, length2);
|
|
@@ -53918,11 +53918,11 @@ lodash.exports;
|
|
|
53918
53918
|
return position2 >= 0 && string.slice(position2, end2) == target;
|
|
53919
53919
|
}
|
|
53920
53920
|
function escape(string) {
|
|
53921
|
-
string =
|
|
53921
|
+
string = toString3(string);
|
|
53922
53922
|
return string && reHasUnescapedHtml.test(string) ? string.replace(reUnescapedHtml, escapeHtmlChar) : string;
|
|
53923
53923
|
}
|
|
53924
53924
|
function escapeRegExp(string) {
|
|
53925
|
-
string =
|
|
53925
|
+
string = toString3(string);
|
|
53926
53926
|
return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, "\\$&") : string;
|
|
53927
53927
|
}
|
|
53928
53928
|
var kebabCase = createCompounder(function(result2, word, index) {
|
|
@@ -53933,7 +53933,7 @@ lodash.exports;
|
|
|
53933
53933
|
});
|
|
53934
53934
|
var lowerFirst = createCaseFirst("toLowerCase");
|
|
53935
53935
|
function pad(string, length2, chars) {
|
|
53936
|
-
string =
|
|
53936
|
+
string = toString3(string);
|
|
53937
53937
|
length2 = toInteger(length2);
|
|
53938
53938
|
var strLength = length2 ? stringSize(string) : 0;
|
|
53939
53939
|
if (!length2 || strLength >= length2) {
|
|
@@ -53943,13 +53943,13 @@ lodash.exports;
|
|
|
53943
53943
|
return createPadding(nativeFloor(mid), chars) + string + createPadding(nativeCeil(mid), chars);
|
|
53944
53944
|
}
|
|
53945
53945
|
function padEnd(string, length2, chars) {
|
|
53946
|
-
string =
|
|
53946
|
+
string = toString3(string);
|
|
53947
53947
|
length2 = toInteger(length2);
|
|
53948
53948
|
var strLength = length2 ? stringSize(string) : 0;
|
|
53949
53949
|
return length2 && strLength < length2 ? string + createPadding(length2 - strLength, chars) : string;
|
|
53950
53950
|
}
|
|
53951
53951
|
function padStart(string, length2, chars) {
|
|
53952
|
-
string =
|
|
53952
|
+
string = toString3(string);
|
|
53953
53953
|
length2 = toInteger(length2);
|
|
53954
53954
|
var strLength = length2 ? stringSize(string) : 0;
|
|
53955
53955
|
return length2 && strLength < length2 ? createPadding(length2 - strLength, chars) + string : string;
|
|
@@ -53960,7 +53960,7 @@ lodash.exports;
|
|
|
53960
53960
|
} else if (radix) {
|
|
53961
53961
|
radix = +radix;
|
|
53962
53962
|
}
|
|
53963
|
-
return nativeParseInt(
|
|
53963
|
+
return nativeParseInt(toString3(string).replace(reTrimStart, ""), radix || 0);
|
|
53964
53964
|
}
|
|
53965
53965
|
function repeat(string, n, guard) {
|
|
53966
53966
|
if (guard ? isIterateeCall(string, n, guard) : n === undefined$1) {
|
|
@@ -53968,10 +53968,10 @@ lodash.exports;
|
|
|
53968
53968
|
} else {
|
|
53969
53969
|
n = toInteger(n);
|
|
53970
53970
|
}
|
|
53971
|
-
return baseRepeat(
|
|
53971
|
+
return baseRepeat(toString3(string), n);
|
|
53972
53972
|
}
|
|
53973
53973
|
function replace2() {
|
|
53974
|
-
var args = arguments, string =
|
|
53974
|
+
var args = arguments, string = toString3(args[0]);
|
|
53975
53975
|
return args.length < 3 ? string : string.replace(args[1], args[2]);
|
|
53976
53976
|
}
|
|
53977
53977
|
var snakeCase = createCompounder(function(result2, word, index) {
|
|
@@ -53985,8 +53985,8 @@ lodash.exports;
|
|
|
53985
53985
|
if (!limit) {
|
|
53986
53986
|
return [];
|
|
53987
53987
|
}
|
|
53988
|
-
string =
|
|
53989
|
-
if (string && (typeof separator == "string" || separator != null && !
|
|
53988
|
+
string = toString3(string);
|
|
53989
|
+
if (string && (typeof separator == "string" || separator != null && !isRegExp2(separator))) {
|
|
53990
53990
|
separator = baseToString(separator);
|
|
53991
53991
|
if (!separator && hasUnicode(string)) {
|
|
53992
53992
|
return castSlice(stringToArray(string), 0, limit);
|
|
@@ -53998,7 +53998,7 @@ lodash.exports;
|
|
|
53998
53998
|
return result2 + (index ? " " : "") + upperFirst(word);
|
|
53999
53999
|
});
|
|
54000
54000
|
function startsWith(string, target, position2) {
|
|
54001
|
-
string =
|
|
54001
|
+
string = toString3(string);
|
|
54002
54002
|
position2 = position2 == null ? 0 : baseClamp(toInteger(position2), 0, string.length);
|
|
54003
54003
|
target = baseToString(target);
|
|
54004
54004
|
return string.slice(position2, position2 + target.length) == target;
|
|
@@ -54008,7 +54008,7 @@ lodash.exports;
|
|
|
54008
54008
|
if (guard && isIterateeCall(string, options, guard)) {
|
|
54009
54009
|
options = undefined$1;
|
|
54010
54010
|
}
|
|
54011
|
-
string =
|
|
54011
|
+
string = toString3(string);
|
|
54012
54012
|
options = assignInWith({}, options, settings, customDefaultsAssignIn);
|
|
54013
54013
|
var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn), importsKeys = keys(imports), importsValues = baseValues(imports, importsKeys);
|
|
54014
54014
|
var isEscaping, isEvaluating, index = 0, interpolate2 = options.interpolate || reNoMatch, source = "__p += '";
|
|
@@ -54016,7 +54016,7 @@ lodash.exports;
|
|
|
54016
54016
|
(options.escape || reNoMatch).source + "|" + interpolate2.source + "|" + (interpolate2 === reInterpolate ? reEsTemplate : reNoMatch).source + "|" + (options.evaluate || reNoMatch).source + "|$",
|
|
54017
54017
|
"g"
|
|
54018
54018
|
);
|
|
54019
|
-
var sourceURL = "//# sourceURL=" + (
|
|
54019
|
+
var sourceURL = "//# sourceURL=" + (hasOwnProperty2.call(options, "sourceURL") ? (options.sourceURL + "").replace(/\s/g, " ") : "lodash.templateSources[" + ++templateCounter + "]") + "\n";
|
|
54020
54020
|
string.replace(reDelimiters, function(match2, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset2) {
|
|
54021
54021
|
interpolateValue || (interpolateValue = esTemplateValue);
|
|
54022
54022
|
source += string.slice(index, offset2).replace(reUnescapedString, escapeStringChar);
|
|
@@ -54035,7 +54035,7 @@ lodash.exports;
|
|
|
54035
54035
|
return match2;
|
|
54036
54036
|
});
|
|
54037
54037
|
source += "';\n";
|
|
54038
|
-
var variable =
|
|
54038
|
+
var variable = hasOwnProperty2.call(options, "variable") && options.variable;
|
|
54039
54039
|
if (!variable) {
|
|
54040
54040
|
source = "with (obj) {\n" + source + "\n}\n";
|
|
54041
54041
|
} else if (reForbiddenIdentifierChars.test(variable)) {
|
|
@@ -54053,13 +54053,13 @@ lodash.exports;
|
|
|
54053
54053
|
return result2;
|
|
54054
54054
|
}
|
|
54055
54055
|
function toLower(value2) {
|
|
54056
|
-
return
|
|
54056
|
+
return toString3(value2).toLowerCase();
|
|
54057
54057
|
}
|
|
54058
54058
|
function toUpper(value2) {
|
|
54059
|
-
return
|
|
54059
|
+
return toString3(value2).toUpperCase();
|
|
54060
54060
|
}
|
|
54061
54061
|
function trim2(string, chars, guard) {
|
|
54062
|
-
string =
|
|
54062
|
+
string = toString3(string);
|
|
54063
54063
|
if (string && (guard || chars === undefined$1)) {
|
|
54064
54064
|
return baseTrim(string);
|
|
54065
54065
|
}
|
|
@@ -54070,7 +54070,7 @@ lodash.exports;
|
|
|
54070
54070
|
return castSlice(strSymbols, start2, end2).join("");
|
|
54071
54071
|
}
|
|
54072
54072
|
function trimEnd(string, chars, guard) {
|
|
54073
|
-
string =
|
|
54073
|
+
string = toString3(string);
|
|
54074
54074
|
if (string && (guard || chars === undefined$1)) {
|
|
54075
54075
|
return string.slice(0, trimmedEndIndex(string) + 1);
|
|
54076
54076
|
}
|
|
@@ -54081,7 +54081,7 @@ lodash.exports;
|
|
|
54081
54081
|
return castSlice(strSymbols, 0, end2).join("");
|
|
54082
54082
|
}
|
|
54083
54083
|
function trimStart(string, chars, guard) {
|
|
54084
|
-
string =
|
|
54084
|
+
string = toString3(string);
|
|
54085
54085
|
if (string && (guard || chars === undefined$1)) {
|
|
54086
54086
|
return string.replace(reTrimStart, "");
|
|
54087
54087
|
}
|
|
@@ -54093,12 +54093,12 @@ lodash.exports;
|
|
|
54093
54093
|
}
|
|
54094
54094
|
function truncate(string, options) {
|
|
54095
54095
|
var length2 = DEFAULT_TRUNC_LENGTH, omission = DEFAULT_TRUNC_OMISSION;
|
|
54096
|
-
if (
|
|
54096
|
+
if (isObject2(options)) {
|
|
54097
54097
|
var separator = "separator" in options ? options.separator : separator;
|
|
54098
54098
|
length2 = "length" in options ? toInteger(options.length) : length2;
|
|
54099
54099
|
omission = "omission" in options ? baseToString(options.omission) : omission;
|
|
54100
54100
|
}
|
|
54101
|
-
string =
|
|
54101
|
+
string = toString3(string);
|
|
54102
54102
|
var strLength = string.length;
|
|
54103
54103
|
if (hasUnicode(string)) {
|
|
54104
54104
|
var strSymbols = stringToArray(string);
|
|
@@ -54118,11 +54118,11 @@ lodash.exports;
|
|
|
54118
54118
|
if (strSymbols) {
|
|
54119
54119
|
end2 += result2.length - end2;
|
|
54120
54120
|
}
|
|
54121
|
-
if (
|
|
54121
|
+
if (isRegExp2(separator)) {
|
|
54122
54122
|
if (string.slice(end2).search(separator)) {
|
|
54123
54123
|
var match2, substring = result2;
|
|
54124
54124
|
if (!separator.global) {
|
|
54125
|
-
separator = RegExp2(separator.source,
|
|
54125
|
+
separator = RegExp2(separator.source, toString3(reFlags.exec(separator)) + "g");
|
|
54126
54126
|
}
|
|
54127
54127
|
separator.lastIndex = 0;
|
|
54128
54128
|
while (match2 = separator.exec(substring)) {
|
|
@@ -54138,8 +54138,8 @@ lodash.exports;
|
|
|
54138
54138
|
}
|
|
54139
54139
|
return result2 + omission;
|
|
54140
54140
|
}
|
|
54141
|
-
function
|
|
54142
|
-
string =
|
|
54141
|
+
function unescape2(string) {
|
|
54142
|
+
string = toString3(string);
|
|
54143
54143
|
return string && reHasEscapedHtml.test(string) ? string.replace(reEscapedHtml, unescapeHtmlChar) : string;
|
|
54144
54144
|
}
|
|
54145
54145
|
var upperCase = createCompounder(function(result2, word, index) {
|
|
@@ -54147,7 +54147,7 @@ lodash.exports;
|
|
|
54147
54147
|
});
|
|
54148
54148
|
var upperFirst = createCaseFirst("toUpperCase");
|
|
54149
54149
|
function words(string, pattern, guard) {
|
|
54150
|
-
string =
|
|
54150
|
+
string = toString3(string);
|
|
54151
54151
|
pattern = guard ? undefined$1 : pattern;
|
|
54152
54152
|
if (pattern === undefined$1) {
|
|
54153
54153
|
return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);
|
|
@@ -54164,7 +54164,7 @@ lodash.exports;
|
|
|
54164
54164
|
var bindAll = flatRest(function(object, methodNames) {
|
|
54165
54165
|
arrayEach(methodNames, function(key) {
|
|
54166
54166
|
key = toKey(key);
|
|
54167
|
-
baseAssignValue(object, key,
|
|
54167
|
+
baseAssignValue(object, key, bind2(object[key], object));
|
|
54168
54168
|
});
|
|
54169
54169
|
return object;
|
|
54170
54170
|
});
|
|
@@ -54223,13 +54223,13 @@ lodash.exports;
|
|
|
54223
54223
|
});
|
|
54224
54224
|
function mixin(object, source, options) {
|
|
54225
54225
|
var props = keys(source), methodNames = baseFunctions(source, props);
|
|
54226
|
-
if (options == null && !(
|
|
54226
|
+
if (options == null && !(isObject2(source) && (methodNames.length || !props.length))) {
|
|
54227
54227
|
options = source;
|
|
54228
54228
|
source = object;
|
|
54229
54229
|
object = this;
|
|
54230
54230
|
methodNames = baseFunctions(source, keys(source));
|
|
54231
54231
|
}
|
|
54232
|
-
var chain2 = !(
|
|
54232
|
+
var chain2 = !(isObject2(options) && "chain" in options) || !!options.chain, isFunc = isFunction2(object);
|
|
54233
54233
|
arrayEach(methodNames, function(methodName) {
|
|
54234
54234
|
var func = source[methodName];
|
|
54235
54235
|
object[methodName] = func;
|
|
@@ -54305,14 +54305,14 @@ lodash.exports;
|
|
|
54305
54305
|
return result2;
|
|
54306
54306
|
}
|
|
54307
54307
|
function toPath2(value2) {
|
|
54308
|
-
if (
|
|
54308
|
+
if (isArray2(value2)) {
|
|
54309
54309
|
return arrayMap(value2, toKey);
|
|
54310
54310
|
}
|
|
54311
|
-
return isSymbol(value2) ? [value2] : copyArray(stringToPath(
|
|
54311
|
+
return isSymbol(value2) ? [value2] : copyArray(stringToPath(toString3(value2)));
|
|
54312
54312
|
}
|
|
54313
54313
|
function uniqueId(prefix2) {
|
|
54314
54314
|
var id2 = ++idCounter;
|
|
54315
|
-
return
|
|
54315
|
+
return toString3(prefix2) + id2;
|
|
54316
54316
|
}
|
|
54317
54317
|
var add = createMathOperation(function(augend, addend) {
|
|
54318
54318
|
return augend + addend;
|
|
@@ -54361,7 +54361,7 @@ lodash.exports;
|
|
|
54361
54361
|
lodash2.assignWith = assignWith;
|
|
54362
54362
|
lodash2.at = at;
|
|
54363
54363
|
lodash2.before = before;
|
|
54364
|
-
lodash2.bind =
|
|
54364
|
+
lodash2.bind = bind2;
|
|
54365
54365
|
lodash2.bindAll = bindAll;
|
|
54366
54366
|
lodash2.bindKey = bindKey2;
|
|
54367
54367
|
lodash2.castArray = castArray;
|
|
@@ -54389,7 +54389,7 @@ lodash.exports;
|
|
|
54389
54389
|
lodash2.dropRightWhile = dropRightWhile;
|
|
54390
54390
|
lodash2.dropWhile = dropWhile;
|
|
54391
54391
|
lodash2.fill = fill;
|
|
54392
|
-
lodash2.filter =
|
|
54392
|
+
lodash2.filter = filter3;
|
|
54393
54393
|
lodash2.flatMap = flatMap;
|
|
54394
54394
|
lodash2.flatMapDeep = flatMapDeep;
|
|
54395
54395
|
lodash2.flatMapDepth = flatMapDepth;
|
|
@@ -54463,14 +54463,14 @@ lodash.exports;
|
|
|
54463
54463
|
lodash2.sortedUniq = sortedUniq;
|
|
54464
54464
|
lodash2.sortedUniqBy = sortedUniqBy;
|
|
54465
54465
|
lodash2.split = split;
|
|
54466
|
-
lodash2.spread =
|
|
54466
|
+
lodash2.spread = spread2;
|
|
54467
54467
|
lodash2.tail = tail;
|
|
54468
54468
|
lodash2.take = take;
|
|
54469
54469
|
lodash2.takeRight = takeRight;
|
|
54470
54470
|
lodash2.takeRightWhile = takeRightWhile;
|
|
54471
54471
|
lodash2.takeWhile = takeWhile;
|
|
54472
54472
|
lodash2.tap = tap;
|
|
54473
|
-
lodash2.throttle =
|
|
54473
|
+
lodash2.throttle = throttle2;
|
|
54474
54474
|
lodash2.thru = thru;
|
|
54475
54475
|
lodash2.toArray = toArray2;
|
|
54476
54476
|
lodash2.toPairs = toPairs;
|
|
@@ -54521,19 +54521,19 @@ lodash.exports;
|
|
|
54521
54521
|
lodash2.deburr = deburr;
|
|
54522
54522
|
lodash2.defaultTo = defaultTo;
|
|
54523
54523
|
lodash2.divide = divide;
|
|
54524
|
-
lodash2.endsWith =
|
|
54524
|
+
lodash2.endsWith = endsWith2;
|
|
54525
54525
|
lodash2.eq = eq;
|
|
54526
54526
|
lodash2.escape = escape;
|
|
54527
54527
|
lodash2.escapeRegExp = escapeRegExp;
|
|
54528
54528
|
lodash2.every = every;
|
|
54529
54529
|
lodash2.find = find2;
|
|
54530
54530
|
lodash2.findIndex = findIndex2;
|
|
54531
|
-
lodash2.findKey =
|
|
54531
|
+
lodash2.findKey = findKey2;
|
|
54532
54532
|
lodash2.findLast = findLast;
|
|
54533
54533
|
lodash2.findLastIndex = findLastIndex;
|
|
54534
54534
|
lodash2.findLastKey = findLastKey;
|
|
54535
54535
|
lodash2.floor = floor;
|
|
54536
|
-
lodash2.forEach =
|
|
54536
|
+
lodash2.forEach = forEach2;
|
|
54537
54537
|
lodash2.forEachRight = forEachRight;
|
|
54538
54538
|
lodash2.forIn = forIn;
|
|
54539
54539
|
lodash2.forInRight = forInRight;
|
|
@@ -54551,13 +54551,13 @@ lodash.exports;
|
|
|
54551
54551
|
lodash2.inRange = inRange;
|
|
54552
54552
|
lodash2.invoke = invoke;
|
|
54553
54553
|
lodash2.isArguments = isArguments;
|
|
54554
|
-
lodash2.isArray =
|
|
54555
|
-
lodash2.isArrayBuffer =
|
|
54554
|
+
lodash2.isArray = isArray2;
|
|
54555
|
+
lodash2.isArrayBuffer = isArrayBuffer2;
|
|
54556
54556
|
lodash2.isArrayLike = isArrayLike;
|
|
54557
54557
|
lodash2.isArrayLikeObject = isArrayLikeObject;
|
|
54558
|
-
lodash2.isBoolean =
|
|
54559
|
-
lodash2.isBuffer =
|
|
54560
|
-
lodash2.isDate =
|
|
54558
|
+
lodash2.isBoolean = isBoolean2;
|
|
54559
|
+
lodash2.isBuffer = isBuffer2;
|
|
54560
|
+
lodash2.isDate = isDate2;
|
|
54561
54561
|
lodash2.isElement = isElement2;
|
|
54562
54562
|
lodash2.isEmpty = isEmpty2;
|
|
54563
54563
|
lodash2.isEqual = isEqual;
|
|
@@ -54574,17 +54574,17 @@ lodash.exports;
|
|
|
54574
54574
|
lodash2.isNative = isNative;
|
|
54575
54575
|
lodash2.isNil = isNil;
|
|
54576
54576
|
lodash2.isNull = isNull;
|
|
54577
|
-
lodash2.isNumber =
|
|
54578
|
-
lodash2.isObject =
|
|
54577
|
+
lodash2.isNumber = isNumber2;
|
|
54578
|
+
lodash2.isObject = isObject2;
|
|
54579
54579
|
lodash2.isObjectLike = isObjectLike;
|
|
54580
54580
|
lodash2.isPlainObject = isPlainObject2;
|
|
54581
|
-
lodash2.isRegExp =
|
|
54581
|
+
lodash2.isRegExp = isRegExp2;
|
|
54582
54582
|
lodash2.isSafeInteger = isSafeInteger;
|
|
54583
54583
|
lodash2.isSet = isSet;
|
|
54584
|
-
lodash2.isString =
|
|
54584
|
+
lodash2.isString = isString2;
|
|
54585
54585
|
lodash2.isSymbol = isSymbol;
|
|
54586
|
-
lodash2.isTypedArray =
|
|
54587
|
-
lodash2.isUndefined =
|
|
54586
|
+
lodash2.isTypedArray = isTypedArray2;
|
|
54587
|
+
lodash2.isUndefined = isUndefined2;
|
|
54588
54588
|
lodash2.isWeakMap = isWeakMap;
|
|
54589
54589
|
lodash2.isWeakSet = isWeakSet;
|
|
54590
54590
|
lodash2.join = join;
|
|
@@ -54646,29 +54646,29 @@ lodash.exports;
|
|
|
54646
54646
|
lodash2.toLower = toLower;
|
|
54647
54647
|
lodash2.toNumber = toNumber;
|
|
54648
54648
|
lodash2.toSafeInteger = toSafeInteger;
|
|
54649
|
-
lodash2.toString =
|
|
54649
|
+
lodash2.toString = toString3;
|
|
54650
54650
|
lodash2.toUpper = toUpper;
|
|
54651
54651
|
lodash2.trim = trim2;
|
|
54652
54652
|
lodash2.trimEnd = trimEnd;
|
|
54653
54653
|
lodash2.trimStart = trimStart;
|
|
54654
54654
|
lodash2.truncate = truncate;
|
|
54655
|
-
lodash2.unescape =
|
|
54655
|
+
lodash2.unescape = unescape2;
|
|
54656
54656
|
lodash2.uniqueId = uniqueId;
|
|
54657
54657
|
lodash2.upperCase = upperCase;
|
|
54658
54658
|
lodash2.upperFirst = upperFirst;
|
|
54659
|
-
lodash2.each =
|
|
54659
|
+
lodash2.each = forEach2;
|
|
54660
54660
|
lodash2.eachRight = forEachRight;
|
|
54661
54661
|
lodash2.first = head;
|
|
54662
54662
|
mixin(lodash2, function() {
|
|
54663
54663
|
var source = {};
|
|
54664
54664
|
baseForOwn(lodash2, function(func, methodName) {
|
|
54665
|
-
if (!
|
|
54665
|
+
if (!hasOwnProperty2.call(lodash2.prototype, methodName)) {
|
|
54666
54666
|
source[methodName] = func;
|
|
54667
54667
|
}
|
|
54668
54668
|
});
|
|
54669
54669
|
return source;
|
|
54670
54670
|
}(), { "chain": false });
|
|
54671
|
-
lodash2.VERSION =
|
|
54671
|
+
lodash2.VERSION = VERSION2;
|
|
54672
54672
|
arrayEach(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(methodName) {
|
|
54673
54673
|
lodash2[methodName].placeholder = lodash2;
|
|
54674
54674
|
});
|
|
@@ -54763,7 +54763,7 @@ lodash.exports;
|
|
|
54763
54763
|
return;
|
|
54764
54764
|
}
|
|
54765
54765
|
lodash2.prototype[methodName] = function() {
|
|
54766
|
-
var value2 = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value2 instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy ||
|
|
54766
|
+
var value2 = this.__wrapped__, args = isTaker ? [1] : arguments, isLazy = value2 instanceof LazyWrapper, iteratee2 = args[0], useLazy = isLazy || isArray2(value2);
|
|
54767
54767
|
var interceptor = function(value3) {
|
|
54768
54768
|
var result3 = lodashFunc.apply(lodash2, arrayPush([value3], args));
|
|
54769
54769
|
return isTaker && chainAll ? result3[0] : result3;
|
|
@@ -54791,10 +54791,10 @@ lodash.exports;
|
|
|
54791
54791
|
var args = arguments;
|
|
54792
54792
|
if (retUnwrapped && !this.__chain__) {
|
|
54793
54793
|
var value2 = this.value();
|
|
54794
|
-
return func.apply(
|
|
54794
|
+
return func.apply(isArray2(value2) ? value2 : [], args);
|
|
54795
54795
|
}
|
|
54796
54796
|
return this[chainName](function(value3) {
|
|
54797
|
-
return func.apply(
|
|
54797
|
+
return func.apply(isArray2(value3) ? value3 : [], args);
|
|
54798
54798
|
});
|
|
54799
54799
|
};
|
|
54800
54800
|
});
|
|
@@ -54802,7 +54802,7 @@ lodash.exports;
|
|
|
54802
54802
|
var lodashFunc = lodash2[methodName];
|
|
54803
54803
|
if (lodashFunc) {
|
|
54804
54804
|
var key = lodashFunc.name + "";
|
|
54805
|
-
if (!
|
|
54805
|
+
if (!hasOwnProperty2.call(realNames, key)) {
|
|
54806
54806
|
realNames[key] = [];
|
|
54807
54807
|
}
|
|
54808
54808
|
realNames[key].push({ "name": methodName, "func": lodashFunc });
|
|
@@ -58024,14 +58024,14 @@ Object.defineProperty(shims, "__esModule", {
|
|
|
58024
58024
|
shims.dontSetMe = dontSetMe;
|
|
58025
58025
|
shims.findInArray = findInArray;
|
|
58026
58026
|
shims.int = int;
|
|
58027
|
-
shims.isFunction = isFunction;
|
|
58027
|
+
shims.isFunction = isFunction$1;
|
|
58028
58028
|
shims.isNum = isNum;
|
|
58029
58029
|
function findInArray(array2, callback) {
|
|
58030
58030
|
for (let i = 0, length2 = array2.length; i < length2; i++) {
|
|
58031
58031
|
if (callback.apply(callback, [array2[i], i, array2])) return array2[i];
|
|
58032
58032
|
}
|
|
58033
58033
|
}
|
|
58034
|
-
function isFunction(func) {
|
|
58034
|
+
function isFunction$1(func) {
|
|
58035
58035
|
return typeof func === "function" || Object.prototype.toString.call(func) === "[object Function]";
|
|
58036
58036
|
}
|
|
58037
58037
|
function isNum(num) {
|
|
@@ -61151,7 +61151,7 @@ lodash_merge.exports;
|
|
|
61151
61151
|
var arrayProto = Array.prototype, funcProto = Function.prototype, objectProto = Object.prototype;
|
|
61152
61152
|
var coreJsData = root2["__core-js_shared__"];
|
|
61153
61153
|
var funcToString = funcProto.toString;
|
|
61154
|
-
var
|
|
61154
|
+
var hasOwnProperty2 = objectProto.hasOwnProperty;
|
|
61155
61155
|
var maskSrcKey = function() {
|
|
61156
61156
|
var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || "");
|
|
61157
61157
|
return uid ? "Symbol(src)_1." + uid : "";
|
|
@@ -61159,7 +61159,7 @@ lodash_merge.exports;
|
|
|
61159
61159
|
var nativeObjectToString = objectProto.toString;
|
|
61160
61160
|
var objectCtorString = funcToString.call(Object);
|
|
61161
61161
|
var reIsNative = RegExp(
|
|
61162
|
-
"^" + funcToString.call(
|
|
61162
|
+
"^" + funcToString.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
|
|
61163
61163
|
);
|
|
61164
61164
|
var Buffer2 = moduleExports ? root2.Buffer : void 0, Symbol2 = root2.Symbol, Uint8Array2 = root2.Uint8Array;
|
|
61165
61165
|
Buffer2 ? Buffer2.allocUnsafe : void 0;
|
|
@@ -61178,7 +61178,7 @@ lodash_merge.exports;
|
|
|
61178
61178
|
function object() {
|
|
61179
61179
|
}
|
|
61180
61180
|
return function(proto) {
|
|
61181
|
-
if (!
|
|
61181
|
+
if (!isObject2(proto)) {
|
|
61182
61182
|
return {};
|
|
61183
61183
|
}
|
|
61184
61184
|
if (objectCreate) {
|
|
@@ -61213,11 +61213,11 @@ lodash_merge.exports;
|
|
|
61213
61213
|
var result = data[key];
|
|
61214
61214
|
return result === HASH_UNDEFINED ? void 0 : result;
|
|
61215
61215
|
}
|
|
61216
|
-
return
|
|
61216
|
+
return hasOwnProperty2.call(data, key) ? data[key] : void 0;
|
|
61217
61217
|
}
|
|
61218
61218
|
function hashHas(key) {
|
|
61219
61219
|
var data = this.__data__;
|
|
61220
|
-
return nativeCreate ? data[key] !== void 0 :
|
|
61220
|
+
return nativeCreate ? data[key] !== void 0 : hasOwnProperty2.call(data, key);
|
|
61221
61221
|
}
|
|
61222
61222
|
function hashSet(key, value2) {
|
|
61223
61223
|
var data = this.__data__;
|
|
@@ -61356,7 +61356,7 @@ lodash_merge.exports;
|
|
|
61356
61356
|
Stack2.prototype.has = stackHas;
|
|
61357
61357
|
Stack2.prototype.set = stackSet;
|
|
61358
61358
|
function arrayLikeKeys(value2, inherited) {
|
|
61359
|
-
var isArr =
|
|
61359
|
+
var isArr = isArray2(value2), isArg = !isArr && isArguments(value2), isBuff = !isArr && !isArg && isBuffer2(value2), isType = !isArr && !isArg && !isBuff && isTypedArray2(value2), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value2.length, String) : [], length2 = result.length;
|
|
61360
61360
|
for (var key in value2) {
|
|
61361
61361
|
if (!(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
61362
61362
|
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
@@ -61375,7 +61375,7 @@ lodash_merge.exports;
|
|
|
61375
61375
|
}
|
|
61376
61376
|
function assignValue(object, key, value2) {
|
|
61377
61377
|
var objValue = object[key];
|
|
61378
|
-
if (!(
|
|
61378
|
+
if (!(hasOwnProperty2.call(object, key) && eq(objValue, value2)) || value2 === void 0 && !(key in object)) {
|
|
61379
61379
|
baseAssignValue(object, key, value2);
|
|
61380
61380
|
}
|
|
61381
61381
|
}
|
|
@@ -61411,7 +61411,7 @@ lodash_merge.exports;
|
|
|
61411
61411
|
return isObjectLike(value2) && baseGetTag(value2) == argsTag;
|
|
61412
61412
|
}
|
|
61413
61413
|
function baseIsNative(value2) {
|
|
61414
|
-
if (!
|
|
61414
|
+
if (!isObject2(value2) || isMasked(value2)) {
|
|
61415
61415
|
return false;
|
|
61416
61416
|
}
|
|
61417
61417
|
var pattern = isFunction2(value2) ? reIsNative : reIsHostCtor;
|
|
@@ -61421,12 +61421,12 @@ lodash_merge.exports;
|
|
|
61421
61421
|
return isObjectLike(value2) && isLength(value2.length) && !!typedArrayTags[baseGetTag(value2)];
|
|
61422
61422
|
}
|
|
61423
61423
|
function baseKeysIn(object) {
|
|
61424
|
-
if (!
|
|
61424
|
+
if (!isObject2(object)) {
|
|
61425
61425
|
return nativeKeysIn(object);
|
|
61426
61426
|
}
|
|
61427
61427
|
var isProto = isPrototype(object), result = [];
|
|
61428
61428
|
for (var key in object) {
|
|
61429
|
-
if (!(key == "constructor" && (isProto || !
|
|
61429
|
+
if (!(key == "constructor" && (isProto || !hasOwnProperty2.call(object, key)))) {
|
|
61430
61430
|
result.push(key);
|
|
61431
61431
|
}
|
|
61432
61432
|
}
|
|
@@ -61438,7 +61438,7 @@ lodash_merge.exports;
|
|
|
61438
61438
|
}
|
|
61439
61439
|
baseFor(source, function(srcValue, key) {
|
|
61440
61440
|
stack || (stack = new Stack2());
|
|
61441
|
-
if (
|
|
61441
|
+
if (isObject2(srcValue)) {
|
|
61442
61442
|
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
|
|
61443
61443
|
} else {
|
|
61444
61444
|
var newValue = customizer ? customizer(safeGet(object, key), srcValue, key + "", object, source, stack) : void 0;
|
|
@@ -61458,10 +61458,10 @@ lodash_merge.exports;
|
|
|
61458
61458
|
var newValue = customizer ? customizer(objValue, srcValue, key + "", object, source, stack) : void 0;
|
|
61459
61459
|
var isCommon = newValue === void 0;
|
|
61460
61460
|
if (isCommon) {
|
|
61461
|
-
var isArr =
|
|
61461
|
+
var isArr = isArray2(srcValue), isBuff = !isArr && isBuffer2(srcValue), isTyped = !isArr && !isBuff && isTypedArray2(srcValue);
|
|
61462
61462
|
newValue = srcValue;
|
|
61463
61463
|
if (isArr || isBuff || isTyped) {
|
|
61464
|
-
if (
|
|
61464
|
+
if (isArray2(objValue)) {
|
|
61465
61465
|
newValue = objValue;
|
|
61466
61466
|
} else if (isArrayLikeObject(objValue)) {
|
|
61467
61467
|
newValue = copyArray(objValue);
|
|
@@ -61478,7 +61478,7 @@ lodash_merge.exports;
|
|
|
61478
61478
|
newValue = objValue;
|
|
61479
61479
|
if (isArguments(objValue)) {
|
|
61480
61480
|
newValue = toPlainObject(objValue);
|
|
61481
|
-
} else if (!
|
|
61481
|
+
} else if (!isObject2(objValue) || isFunction2(objValue)) {
|
|
61482
61482
|
newValue = initCloneObject(srcValue);
|
|
61483
61483
|
}
|
|
61484
61484
|
} else {
|
|
@@ -61582,7 +61582,7 @@ lodash_merge.exports;
|
|
|
61582
61582
|
return baseIsNative(value2) ? value2 : void 0;
|
|
61583
61583
|
}
|
|
61584
61584
|
function getRawTag(value2) {
|
|
61585
|
-
var isOwn =
|
|
61585
|
+
var isOwn = hasOwnProperty2.call(value2, symToStringTag), tag = value2[symToStringTag];
|
|
61586
61586
|
try {
|
|
61587
61587
|
value2[symToStringTag] = void 0;
|
|
61588
61588
|
var unmasked = true;
|
|
@@ -61607,7 +61607,7 @@ lodash_merge.exports;
|
|
|
61607
61607
|
return !!length2 && (type == "number" || type != "symbol" && reIsUint.test(value2)) && (value2 > -1 && value2 % 1 == 0 && value2 < length2);
|
|
61608
61608
|
}
|
|
61609
61609
|
function isIterateeCall(value2, index, object) {
|
|
61610
|
-
if (!
|
|
61610
|
+
if (!isObject2(object)) {
|
|
61611
61611
|
return false;
|
|
61612
61612
|
}
|
|
61613
61613
|
var type = typeof index;
|
|
@@ -61699,18 +61699,18 @@ lodash_merge.exports;
|
|
|
61699
61699
|
var isArguments = baseIsArguments(/* @__PURE__ */ function() {
|
|
61700
61700
|
return arguments;
|
|
61701
61701
|
}()) ? baseIsArguments : function(value2) {
|
|
61702
|
-
return isObjectLike(value2) &&
|
|
61702
|
+
return isObjectLike(value2) && hasOwnProperty2.call(value2, "callee") && !propertyIsEnumerable.call(value2, "callee");
|
|
61703
61703
|
};
|
|
61704
|
-
var
|
|
61704
|
+
var isArray2 = Array.isArray;
|
|
61705
61705
|
function isArrayLike(value2) {
|
|
61706
61706
|
return value2 != null && isLength(value2.length) && !isFunction2(value2);
|
|
61707
61707
|
}
|
|
61708
61708
|
function isArrayLikeObject(value2) {
|
|
61709
61709
|
return isObjectLike(value2) && isArrayLike(value2);
|
|
61710
61710
|
}
|
|
61711
|
-
var
|
|
61711
|
+
var isBuffer2 = nativeIsBuffer || stubFalse;
|
|
61712
61712
|
function isFunction2(value2) {
|
|
61713
|
-
if (!
|
|
61713
|
+
if (!isObject2(value2)) {
|
|
61714
61714
|
return false;
|
|
61715
61715
|
}
|
|
61716
61716
|
var tag = baseGetTag(value2);
|
|
@@ -61719,7 +61719,7 @@ lodash_merge.exports;
|
|
|
61719
61719
|
function isLength(value2) {
|
|
61720
61720
|
return typeof value2 == "number" && value2 > -1 && value2 % 1 == 0 && value2 <= MAX_SAFE_INTEGER;
|
|
61721
61721
|
}
|
|
61722
|
-
function
|
|
61722
|
+
function isObject2(value2) {
|
|
61723
61723
|
var type = typeof value2;
|
|
61724
61724
|
return value2 != null && (type == "object" || type == "function");
|
|
61725
61725
|
}
|
|
@@ -61734,10 +61734,10 @@ lodash_merge.exports;
|
|
|
61734
61734
|
if (proto === null) {
|
|
61735
61735
|
return true;
|
|
61736
61736
|
}
|
|
61737
|
-
var Ctor =
|
|
61737
|
+
var Ctor = hasOwnProperty2.call(proto, "constructor") && proto.constructor;
|
|
61738
61738
|
return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;
|
|
61739
61739
|
}
|
|
61740
|
-
var
|
|
61740
|
+
var isTypedArray2 = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
|
61741
61741
|
function toPlainObject(value2) {
|
|
61742
61742
|
return copyObject(value2, keysIn(value2));
|
|
61743
61743
|
}
|
|
@@ -61761,8 +61761,8 @@ lodash_merge.exports;
|
|
|
61761
61761
|
module.exports = merge2;
|
|
61762
61762
|
})(lodash_merge, lodash_merge.exports);
|
|
61763
61763
|
var lodash_mergeExports = lodash_merge.exports;
|
|
61764
|
-
const merge = /* @__PURE__ */ getDefaultExportFromCjs(lodash_mergeExports);
|
|
61765
|
-
const createDarkPalette = (uiTheme) => merge(createLightPalette(uiTheme), {
|
|
61764
|
+
const merge$1 = /* @__PURE__ */ getDefaultExportFromCjs(lodash_mergeExports);
|
|
61765
|
+
const createDarkPalette = (uiTheme) => merge$1(createLightPalette(uiTheme), {
|
|
61766
61766
|
mode: "dark",
|
|
61767
61767
|
primary: {
|
|
61768
61768
|
main: THEME_COLORS[uiTheme].main,
|
|
@@ -63065,7 +63065,7 @@ function updateLayer(map, id2, props, prevProps) {
|
|
|
63065
63065
|
if (props.type === "custom" || prevProps.type === "custom") {
|
|
63066
63066
|
return;
|
|
63067
63067
|
}
|
|
63068
|
-
const { layout = {}, paint = {}, filter:
|
|
63068
|
+
const { layout = {}, paint = {}, filter: filter3, minzoom, maxzoom, beforeId } = props;
|
|
63069
63069
|
if (beforeId !== prevProps.beforeId) {
|
|
63070
63070
|
map.moveLayer(id2, beforeId);
|
|
63071
63071
|
}
|
|
@@ -63095,8 +63095,8 @@ function updateLayer(map, id2, props, prevProps) {
|
|
|
63095
63095
|
}
|
|
63096
63096
|
}
|
|
63097
63097
|
}
|
|
63098
|
-
if (!deepEqual(
|
|
63099
|
-
map.setFilter(id2,
|
|
63098
|
+
if (!deepEqual(filter3, prevProps.filter)) {
|
|
63099
|
+
map.setFilter(id2, filter3);
|
|
63100
63100
|
}
|
|
63101
63101
|
if (minzoom !== prevProps.minzoom || maxzoom !== prevProps.maxzoom) {
|
|
63102
63102
|
map.setLayerZoomRange(id2, minzoom, maxzoom);
|
|
@@ -79834,7 +79834,7 @@ const MAX_LAT = 90;
|
|
|
79834
79834
|
const MIN_LON = -180;
|
|
79835
79835
|
const MAX_LON = 180;
|
|
79836
79836
|
const SIGFIG_HASH_LENGTH = [0, 5, 7, 8, 11, 12, 13, 15, 16, 17, 18];
|
|
79837
|
-
const encode = function(latitude, longitude, numberOfChars) {
|
|
79837
|
+
const encode$2 = function(latitude, longitude, numberOfChars) {
|
|
79838
79838
|
if (numberOfChars === ENCODE_AUTO) {
|
|
79839
79839
|
if (typeof latitude === "number" || typeof longitude === "number") {
|
|
79840
79840
|
throw new Error("string notation required for auto precision.");
|
|
@@ -79993,7 +79993,7 @@ const neighbor = function(hashString, direction) {
|
|
|
79993
79993
|
let neighborLon = lonLat.longitude + direction[1] * lonLat.error.longitude * 2;
|
|
79994
79994
|
neighborLon = ensure_valid_lon(neighborLon);
|
|
79995
79995
|
neighborLat = ensure_valid_lat(neighborLat);
|
|
79996
|
-
return encode(neighborLat, neighborLon, hashString.length);
|
|
79996
|
+
return encode$2(neighborLat, neighborLon, hashString.length);
|
|
79997
79997
|
};
|
|
79998
79998
|
const neighbor_int = function(hash_int, direction, bitDepth) {
|
|
79999
79999
|
bitDepth = bitDepth || 52;
|
|
@@ -80018,7 +80018,7 @@ const neighbors = function(hash_string) {
|
|
|
80018
80018
|
neighbor_lon = lon + neighborLonDir * lonErr;
|
|
80019
80019
|
neighbor_lon = ensure_valid_lon(neighbor_lon);
|
|
80020
80020
|
neighbor_lat = ensure_valid_lat(neighbor_lat);
|
|
80021
|
-
return encode(neighbor_lat, neighbor_lon, hashstringLength);
|
|
80021
|
+
return encode$2(neighbor_lat, neighbor_lon, hashstringLength);
|
|
80022
80022
|
}
|
|
80023
80023
|
return neighborHashList;
|
|
80024
80024
|
};
|
|
@@ -80045,8 +80045,8 @@ const bboxes = function(minLat, minLon, maxLat, maxLon, numberOfChars) {
|
|
|
80045
80045
|
throw new Error("numberOfChars must be strictly positive");
|
|
80046
80046
|
}
|
|
80047
80047
|
numberOfChars = numberOfChars || 9;
|
|
80048
|
-
const hashSouthWest = encode(minLat, minLon, numberOfChars);
|
|
80049
|
-
const hashNorthEast = encode(maxLat, maxLon, numberOfChars);
|
|
80048
|
+
const hashSouthWest = encode$2(minLat, minLon, numberOfChars);
|
|
80049
|
+
const hashNorthEast = encode$2(maxLat, maxLon, numberOfChars);
|
|
80050
80050
|
const latLon = decode(hashSouthWest);
|
|
80051
80051
|
const perLat = latLon.error.latitude * 2;
|
|
80052
80052
|
const perLon = latLon.error.longitude * 2;
|
|
@@ -80093,7 +80093,7 @@ function ensure_valid_lat(lat) {
|
|
|
80093
80093
|
}
|
|
80094
80094
|
const geohash = {
|
|
80095
80095
|
ENCODE_AUTO,
|
|
80096
|
-
encode,
|
|
80096
|
+
encode: encode$2,
|
|
80097
80097
|
encode_uint64: encode_int,
|
|
80098
80098
|
// keeping for backwards compatibility, will deprecate
|
|
80099
80099
|
encode_int,
|
|
@@ -80443,6 +80443,2475 @@ const FeatureMap = ({
|
|
|
80443
80443
|
/* @__PURE__ */ jsx$1(FlexGridItem, { flexGrow: 0, p: 1, children: /* @__PURE__ */ jsx$1(LayerSelector, { ...styleSelector.props }) })
|
|
80444
80444
|
] }) }) }) });
|
|
80445
80445
|
};
|
|
80446
|
+
const AuthModal = ({
|
|
80447
|
+
channelName = "auth-events",
|
|
80448
|
+
signOutUrl,
|
|
80449
|
+
debounceMs = 5e3
|
|
80450
|
+
}) => {
|
|
80451
|
+
const bc = new BroadcastChannel(channelName);
|
|
80452
|
+
const alreadyTriggered = useRef(false);
|
|
80453
|
+
const [isOpen, setIsOpen] = useState(false);
|
|
80454
|
+
const handleLoginClick = () => {
|
|
80455
|
+
window.open(signOutUrl, "_blank");
|
|
80456
|
+
};
|
|
80457
|
+
const handleAuthMessage = useCallback((message) => {
|
|
80458
|
+
if (message.data.toLowerCase() === "unauthorized" && !alreadyTriggered.current) {
|
|
80459
|
+
setIsOpen(true);
|
|
80460
|
+
alreadyTriggered.current = true;
|
|
80461
|
+
setTimeout(() => alreadyTriggered.current = false, debounceMs);
|
|
80462
|
+
} else if (message.data.toLowerCase() === "authorized") {
|
|
80463
|
+
setIsOpen(false);
|
|
80464
|
+
alreadyTriggered.current = false;
|
|
80465
|
+
}
|
|
80466
|
+
}, []);
|
|
80467
|
+
useEffect(() => {
|
|
80468
|
+
if (!channelName) return;
|
|
80469
|
+
bc.addEventListener("message", handleAuthMessage);
|
|
80470
|
+
return () => {
|
|
80471
|
+
bc.removeEventListener("message", handleAuthMessage);
|
|
80472
|
+
bc.close();
|
|
80473
|
+
};
|
|
80474
|
+
}, [channelName]);
|
|
80475
|
+
return /* @__PURE__ */ jsx$1(Modal2, { hideCloseButton: true, onClose: () => {
|
|
80476
|
+
}, sx: {
|
|
80477
|
+
m: 2,
|
|
80478
|
+
p: 2
|
|
80479
|
+
}, open: isOpen, children: /* @__PURE__ */ jsxs(FlexBox, { sx: {
|
|
80480
|
+
p: 2
|
|
80481
|
+
}, children: [
|
|
80482
|
+
/* @__PURE__ */ jsxs(H3, { children: [
|
|
80483
|
+
/* @__PURE__ */ jsx$1("i", { className: "fa-regular fa-circle-exclamation" }),
|
|
80484
|
+
" Your session is no longer active"
|
|
80485
|
+
] }),
|
|
80486
|
+
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80487
|
+
pt: 4
|
|
80488
|
+
}, children: "Your session may have expired, you may have signed out, or your account isn't active." }),
|
|
80489
|
+
/* @__PURE__ */ jsx$1(Text, { children: "Please login again to continue." }),
|
|
80490
|
+
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80491
|
+
pt: 4
|
|
80492
|
+
}, children: "If you continue to have issues, contact your system administrator." }),
|
|
80493
|
+
/* @__PURE__ */ jsx$1(Box, { ml: "auto", mt: 2, children: /* @__PURE__ */ jsx$1(Button2, { variant: "primary", onClick: handleLoginClick, size: "large", children: "Login" }) })
|
|
80494
|
+
] }) });
|
|
80495
|
+
};
|
|
80496
|
+
function bind(fn2, thisArg) {
|
|
80497
|
+
return function wrap() {
|
|
80498
|
+
return fn2.apply(thisArg, arguments);
|
|
80499
|
+
};
|
|
80500
|
+
}
|
|
80501
|
+
const { toString } = Object.prototype;
|
|
80502
|
+
const { getPrototypeOf } = Object;
|
|
80503
|
+
const { iterator, toStringTag } = Symbol;
|
|
80504
|
+
const kindOf = /* @__PURE__ */ ((cache2) => (thing) => {
|
|
80505
|
+
const str = toString.call(thing);
|
|
80506
|
+
return cache2[str] || (cache2[str] = str.slice(8, -1).toLowerCase());
|
|
80507
|
+
})(/* @__PURE__ */ Object.create(null));
|
|
80508
|
+
const kindOfTest = (type) => {
|
|
80509
|
+
type = type.toLowerCase();
|
|
80510
|
+
return (thing) => kindOf(thing) === type;
|
|
80511
|
+
};
|
|
80512
|
+
const typeOfTest = (type) => (thing) => typeof thing === type;
|
|
80513
|
+
const { isArray } = Array;
|
|
80514
|
+
const isUndefined = typeOfTest("undefined");
|
|
80515
|
+
function isBuffer(val) {
|
|
80516
|
+
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
|
80517
|
+
}
|
|
80518
|
+
const isArrayBuffer = kindOfTest("ArrayBuffer");
|
|
80519
|
+
function isArrayBufferView(val) {
|
|
80520
|
+
let result;
|
|
80521
|
+
if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) {
|
|
80522
|
+
result = ArrayBuffer.isView(val);
|
|
80523
|
+
} else {
|
|
80524
|
+
result = val && val.buffer && isArrayBuffer(val.buffer);
|
|
80525
|
+
}
|
|
80526
|
+
return result;
|
|
80527
|
+
}
|
|
80528
|
+
const isString = typeOfTest("string");
|
|
80529
|
+
const isFunction = typeOfTest("function");
|
|
80530
|
+
const isNumber = typeOfTest("number");
|
|
80531
|
+
const isObject = (thing) => thing !== null && typeof thing === "object";
|
|
80532
|
+
const isBoolean = (thing) => thing === true || thing === false;
|
|
80533
|
+
const isPlainObject = (val) => {
|
|
80534
|
+
if (kindOf(val) !== "object") {
|
|
80535
|
+
return false;
|
|
80536
|
+
}
|
|
80537
|
+
const prototype2 = getPrototypeOf(val);
|
|
80538
|
+
return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(toStringTag in val) && !(iterator in val);
|
|
80539
|
+
};
|
|
80540
|
+
const isDate = kindOfTest("Date");
|
|
80541
|
+
const isFile = kindOfTest("File");
|
|
80542
|
+
const isBlob = kindOfTest("Blob");
|
|
80543
|
+
const isFileList = kindOfTest("FileList");
|
|
80544
|
+
const isStream = (val) => isObject(val) && isFunction(val.pipe);
|
|
80545
|
+
const isFormData = (thing) => {
|
|
80546
|
+
let kind;
|
|
80547
|
+
return thing && (typeof FormData === "function" && thing instanceof FormData || isFunction(thing.append) && ((kind = kindOf(thing)) === "formdata" || // detect form-data instance
|
|
80548
|
+
kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
|
|
80549
|
+
};
|
|
80550
|
+
const isURLSearchParams = kindOfTest("URLSearchParams");
|
|
80551
|
+
const [isReadableStream, isRequest, isResponse, isHeaders] = ["ReadableStream", "Request", "Response", "Headers"].map(kindOfTest);
|
|
80552
|
+
const trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
80553
|
+
function forEach(obj, fn2, { allOwnKeys = false } = {}) {
|
|
80554
|
+
if (obj === null || typeof obj === "undefined") {
|
|
80555
|
+
return;
|
|
80556
|
+
}
|
|
80557
|
+
let i;
|
|
80558
|
+
let l;
|
|
80559
|
+
if (typeof obj !== "object") {
|
|
80560
|
+
obj = [obj];
|
|
80561
|
+
}
|
|
80562
|
+
if (isArray(obj)) {
|
|
80563
|
+
for (i = 0, l = obj.length; i < l; i++) {
|
|
80564
|
+
fn2.call(null, obj[i], i, obj);
|
|
80565
|
+
}
|
|
80566
|
+
} else {
|
|
80567
|
+
const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
|
|
80568
|
+
const len = keys.length;
|
|
80569
|
+
let key;
|
|
80570
|
+
for (i = 0; i < len; i++) {
|
|
80571
|
+
key = keys[i];
|
|
80572
|
+
fn2.call(null, obj[key], key, obj);
|
|
80573
|
+
}
|
|
80574
|
+
}
|
|
80575
|
+
}
|
|
80576
|
+
function findKey(obj, key) {
|
|
80577
|
+
key = key.toLowerCase();
|
|
80578
|
+
const keys = Object.keys(obj);
|
|
80579
|
+
let i = keys.length;
|
|
80580
|
+
let _key;
|
|
80581
|
+
while (i-- > 0) {
|
|
80582
|
+
_key = keys[i];
|
|
80583
|
+
if (key === _key.toLowerCase()) {
|
|
80584
|
+
return _key;
|
|
80585
|
+
}
|
|
80586
|
+
}
|
|
80587
|
+
return null;
|
|
80588
|
+
}
|
|
80589
|
+
const _global = (() => {
|
|
80590
|
+
if (typeof globalThis !== "undefined") return globalThis;
|
|
80591
|
+
return typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : global;
|
|
80592
|
+
})();
|
|
80593
|
+
const isContextDefined = (context) => !isUndefined(context) && context !== _global;
|
|
80594
|
+
function merge() {
|
|
80595
|
+
const { caseless } = isContextDefined(this) && this || {};
|
|
80596
|
+
const result = {};
|
|
80597
|
+
const assignValue = (val, key) => {
|
|
80598
|
+
const targetKey = caseless && findKey(result, key) || key;
|
|
80599
|
+
if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
|
|
80600
|
+
result[targetKey] = merge(result[targetKey], val);
|
|
80601
|
+
} else if (isPlainObject(val)) {
|
|
80602
|
+
result[targetKey] = merge({}, val);
|
|
80603
|
+
} else if (isArray(val)) {
|
|
80604
|
+
result[targetKey] = val.slice();
|
|
80605
|
+
} else {
|
|
80606
|
+
result[targetKey] = val;
|
|
80607
|
+
}
|
|
80608
|
+
};
|
|
80609
|
+
for (let i = 0, l = arguments.length; i < l; i++) {
|
|
80610
|
+
arguments[i] && forEach(arguments[i], assignValue);
|
|
80611
|
+
}
|
|
80612
|
+
return result;
|
|
80613
|
+
}
|
|
80614
|
+
const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
80615
|
+
forEach(b, (val, key) => {
|
|
80616
|
+
if (thisArg && isFunction(val)) {
|
|
80617
|
+
a[key] = bind(val, thisArg);
|
|
80618
|
+
} else {
|
|
80619
|
+
a[key] = val;
|
|
80620
|
+
}
|
|
80621
|
+
}, { allOwnKeys });
|
|
80622
|
+
return a;
|
|
80623
|
+
};
|
|
80624
|
+
const stripBOM = (content) => {
|
|
80625
|
+
if (content.charCodeAt(0) === 65279) {
|
|
80626
|
+
content = content.slice(1);
|
|
80627
|
+
}
|
|
80628
|
+
return content;
|
|
80629
|
+
};
|
|
80630
|
+
const inherits = (constructor, superConstructor, props, descriptors2) => {
|
|
80631
|
+
constructor.prototype = Object.create(superConstructor.prototype, descriptors2);
|
|
80632
|
+
constructor.prototype.constructor = constructor;
|
|
80633
|
+
Object.defineProperty(constructor, "super", {
|
|
80634
|
+
value: superConstructor.prototype
|
|
80635
|
+
});
|
|
80636
|
+
props && Object.assign(constructor.prototype, props);
|
|
80637
|
+
};
|
|
80638
|
+
const toFlatObject = (sourceObj, destObj, filter3, propFilter) => {
|
|
80639
|
+
let props;
|
|
80640
|
+
let i;
|
|
80641
|
+
let prop;
|
|
80642
|
+
const merged = {};
|
|
80643
|
+
destObj = destObj || {};
|
|
80644
|
+
if (sourceObj == null) return destObj;
|
|
80645
|
+
do {
|
|
80646
|
+
props = Object.getOwnPropertyNames(sourceObj);
|
|
80647
|
+
i = props.length;
|
|
80648
|
+
while (i-- > 0) {
|
|
80649
|
+
prop = props[i];
|
|
80650
|
+
if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
|
|
80651
|
+
destObj[prop] = sourceObj[prop];
|
|
80652
|
+
merged[prop] = true;
|
|
80653
|
+
}
|
|
80654
|
+
}
|
|
80655
|
+
sourceObj = filter3 !== false && getPrototypeOf(sourceObj);
|
|
80656
|
+
} while (sourceObj && (!filter3 || filter3(sourceObj, destObj)) && sourceObj !== Object.prototype);
|
|
80657
|
+
return destObj;
|
|
80658
|
+
};
|
|
80659
|
+
const endsWith = (str, searchString, position2) => {
|
|
80660
|
+
str = String(str);
|
|
80661
|
+
if (position2 === void 0 || position2 > str.length) {
|
|
80662
|
+
position2 = str.length;
|
|
80663
|
+
}
|
|
80664
|
+
position2 -= searchString.length;
|
|
80665
|
+
const lastIndex = str.indexOf(searchString, position2);
|
|
80666
|
+
return lastIndex !== -1 && lastIndex === position2;
|
|
80667
|
+
};
|
|
80668
|
+
const toArray = (thing) => {
|
|
80669
|
+
if (!thing) return null;
|
|
80670
|
+
if (isArray(thing)) return thing;
|
|
80671
|
+
let i = thing.length;
|
|
80672
|
+
if (!isNumber(i)) return null;
|
|
80673
|
+
const arr = new Array(i);
|
|
80674
|
+
while (i-- > 0) {
|
|
80675
|
+
arr[i] = thing[i];
|
|
80676
|
+
}
|
|
80677
|
+
return arr;
|
|
80678
|
+
};
|
|
80679
|
+
const isTypedArray = /* @__PURE__ */ ((TypedArray) => {
|
|
80680
|
+
return (thing) => {
|
|
80681
|
+
return TypedArray && thing instanceof TypedArray;
|
|
80682
|
+
};
|
|
80683
|
+
})(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
|
|
80684
|
+
const forEachEntry = (obj, fn2) => {
|
|
80685
|
+
const generator = obj && obj[iterator];
|
|
80686
|
+
const _iterator = generator.call(obj);
|
|
80687
|
+
let result;
|
|
80688
|
+
while ((result = _iterator.next()) && !result.done) {
|
|
80689
|
+
const pair = result.value;
|
|
80690
|
+
fn2.call(obj, pair[0], pair[1]);
|
|
80691
|
+
}
|
|
80692
|
+
};
|
|
80693
|
+
const matchAll = (regExp, str) => {
|
|
80694
|
+
let matches;
|
|
80695
|
+
const arr = [];
|
|
80696
|
+
while ((matches = regExp.exec(str)) !== null) {
|
|
80697
|
+
arr.push(matches);
|
|
80698
|
+
}
|
|
80699
|
+
return arr;
|
|
80700
|
+
};
|
|
80701
|
+
const isHTMLForm = kindOfTest("HTMLFormElement");
|
|
80702
|
+
const toCamelCase = (str) => {
|
|
80703
|
+
return str.toLowerCase().replace(
|
|
80704
|
+
/[-_\s]([a-z\d])(\w*)/g,
|
|
80705
|
+
function replacer(m, p1, p2) {
|
|
80706
|
+
return p1.toUpperCase() + p2;
|
|
80707
|
+
}
|
|
80708
|
+
);
|
|
80709
|
+
};
|
|
80710
|
+
const hasOwnProperty = (({ hasOwnProperty: hasOwnProperty2 }) => (obj, prop) => hasOwnProperty2.call(obj, prop))(Object.prototype);
|
|
80711
|
+
const isRegExp = kindOfTest("RegExp");
|
|
80712
|
+
const reduceDescriptors = (obj, reducer) => {
|
|
80713
|
+
const descriptors2 = Object.getOwnPropertyDescriptors(obj);
|
|
80714
|
+
const reducedDescriptors = {};
|
|
80715
|
+
forEach(descriptors2, (descriptor, name) => {
|
|
80716
|
+
let ret;
|
|
80717
|
+
if ((ret = reducer(descriptor, name, obj)) !== false) {
|
|
80718
|
+
reducedDescriptors[name] = ret || descriptor;
|
|
80719
|
+
}
|
|
80720
|
+
});
|
|
80721
|
+
Object.defineProperties(obj, reducedDescriptors);
|
|
80722
|
+
};
|
|
80723
|
+
const freezeMethods = (obj) => {
|
|
80724
|
+
reduceDescriptors(obj, (descriptor, name) => {
|
|
80725
|
+
if (isFunction(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
|
|
80726
|
+
return false;
|
|
80727
|
+
}
|
|
80728
|
+
const value2 = obj[name];
|
|
80729
|
+
if (!isFunction(value2)) return;
|
|
80730
|
+
descriptor.enumerable = false;
|
|
80731
|
+
if ("writable" in descriptor) {
|
|
80732
|
+
descriptor.writable = false;
|
|
80733
|
+
return;
|
|
80734
|
+
}
|
|
80735
|
+
if (!descriptor.set) {
|
|
80736
|
+
descriptor.set = () => {
|
|
80737
|
+
throw Error("Can not rewrite read-only method '" + name + "'");
|
|
80738
|
+
};
|
|
80739
|
+
}
|
|
80740
|
+
});
|
|
80741
|
+
};
|
|
80742
|
+
const toObjectSet = (arrayOrString, delimiter2) => {
|
|
80743
|
+
const obj = {};
|
|
80744
|
+
const define2 = (arr) => {
|
|
80745
|
+
arr.forEach((value2) => {
|
|
80746
|
+
obj[value2] = true;
|
|
80747
|
+
});
|
|
80748
|
+
};
|
|
80749
|
+
isArray(arrayOrString) ? define2(arrayOrString) : define2(String(arrayOrString).split(delimiter2));
|
|
80750
|
+
return obj;
|
|
80751
|
+
};
|
|
80752
|
+
const noop = () => {
|
|
80753
|
+
};
|
|
80754
|
+
const toFiniteNumber = (value2, defaultValue) => {
|
|
80755
|
+
return value2 != null && Number.isFinite(value2 = +value2) ? value2 : defaultValue;
|
|
80756
|
+
};
|
|
80757
|
+
function isSpecCompliantForm(thing) {
|
|
80758
|
+
return !!(thing && isFunction(thing.append) && thing[toStringTag] === "FormData" && thing[iterator]);
|
|
80759
|
+
}
|
|
80760
|
+
const toJSONObject = (obj) => {
|
|
80761
|
+
const stack = new Array(10);
|
|
80762
|
+
const visit = (source, i) => {
|
|
80763
|
+
if (isObject(source)) {
|
|
80764
|
+
if (stack.indexOf(source) >= 0) {
|
|
80765
|
+
return;
|
|
80766
|
+
}
|
|
80767
|
+
if (!("toJSON" in source)) {
|
|
80768
|
+
stack[i] = source;
|
|
80769
|
+
const target = isArray(source) ? [] : {};
|
|
80770
|
+
forEach(source, (value2, key) => {
|
|
80771
|
+
const reducedValue = visit(value2, i + 1);
|
|
80772
|
+
!isUndefined(reducedValue) && (target[key] = reducedValue);
|
|
80773
|
+
});
|
|
80774
|
+
stack[i] = void 0;
|
|
80775
|
+
return target;
|
|
80776
|
+
}
|
|
80777
|
+
}
|
|
80778
|
+
return source;
|
|
80779
|
+
};
|
|
80780
|
+
return visit(obj, 0);
|
|
80781
|
+
};
|
|
80782
|
+
const isAsyncFn = kindOfTest("AsyncFunction");
|
|
80783
|
+
const isThenable = (thing) => thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
|
|
80784
|
+
const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
80785
|
+
if (setImmediateSupported) {
|
|
80786
|
+
return setImmediate;
|
|
80787
|
+
}
|
|
80788
|
+
return postMessageSupported ? ((token2, callbacks) => {
|
|
80789
|
+
_global.addEventListener("message", ({ source, data }) => {
|
|
80790
|
+
if (source === _global && data === token2) {
|
|
80791
|
+
callbacks.length && callbacks.shift()();
|
|
80792
|
+
}
|
|
80793
|
+
}, false);
|
|
80794
|
+
return (cb) => {
|
|
80795
|
+
callbacks.push(cb);
|
|
80796
|
+
_global.postMessage(token2, "*");
|
|
80797
|
+
};
|
|
80798
|
+
})(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
|
|
80799
|
+
})(
|
|
80800
|
+
typeof setImmediate === "function",
|
|
80801
|
+
isFunction(_global.postMessage)
|
|
80802
|
+
);
|
|
80803
|
+
const asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
|
|
80804
|
+
const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
80805
|
+
const utils$1 = {
|
|
80806
|
+
isArray,
|
|
80807
|
+
isArrayBuffer,
|
|
80808
|
+
isBuffer,
|
|
80809
|
+
isFormData,
|
|
80810
|
+
isArrayBufferView,
|
|
80811
|
+
isString,
|
|
80812
|
+
isNumber,
|
|
80813
|
+
isBoolean,
|
|
80814
|
+
isObject,
|
|
80815
|
+
isPlainObject,
|
|
80816
|
+
isReadableStream,
|
|
80817
|
+
isRequest,
|
|
80818
|
+
isResponse,
|
|
80819
|
+
isHeaders,
|
|
80820
|
+
isUndefined,
|
|
80821
|
+
isDate,
|
|
80822
|
+
isFile,
|
|
80823
|
+
isBlob,
|
|
80824
|
+
isRegExp,
|
|
80825
|
+
isFunction,
|
|
80826
|
+
isStream,
|
|
80827
|
+
isURLSearchParams,
|
|
80828
|
+
isTypedArray,
|
|
80829
|
+
isFileList,
|
|
80830
|
+
forEach,
|
|
80831
|
+
merge,
|
|
80832
|
+
extend,
|
|
80833
|
+
trim,
|
|
80834
|
+
stripBOM,
|
|
80835
|
+
inherits,
|
|
80836
|
+
toFlatObject,
|
|
80837
|
+
kindOf,
|
|
80838
|
+
kindOfTest,
|
|
80839
|
+
endsWith,
|
|
80840
|
+
toArray,
|
|
80841
|
+
forEachEntry,
|
|
80842
|
+
matchAll,
|
|
80843
|
+
isHTMLForm,
|
|
80844
|
+
hasOwnProperty,
|
|
80845
|
+
hasOwnProp: hasOwnProperty,
|
|
80846
|
+
// an alias to avoid ESLint no-prototype-builtins detection
|
|
80847
|
+
reduceDescriptors,
|
|
80848
|
+
freezeMethods,
|
|
80849
|
+
toObjectSet,
|
|
80850
|
+
toCamelCase,
|
|
80851
|
+
noop,
|
|
80852
|
+
toFiniteNumber,
|
|
80853
|
+
findKey,
|
|
80854
|
+
global: _global,
|
|
80855
|
+
isContextDefined,
|
|
80856
|
+
isSpecCompliantForm,
|
|
80857
|
+
toJSONObject,
|
|
80858
|
+
isAsyncFn,
|
|
80859
|
+
isThenable,
|
|
80860
|
+
setImmediate: _setImmediate,
|
|
80861
|
+
asap,
|
|
80862
|
+
isIterable
|
|
80863
|
+
};
|
|
80864
|
+
function AxiosError$1(message, code, config2, request, response) {
|
|
80865
|
+
Error.call(this);
|
|
80866
|
+
if (Error.captureStackTrace) {
|
|
80867
|
+
Error.captureStackTrace(this, this.constructor);
|
|
80868
|
+
} else {
|
|
80869
|
+
this.stack = new Error().stack;
|
|
80870
|
+
}
|
|
80871
|
+
this.message = message;
|
|
80872
|
+
this.name = "AxiosError";
|
|
80873
|
+
code && (this.code = code);
|
|
80874
|
+
config2 && (this.config = config2);
|
|
80875
|
+
request && (this.request = request);
|
|
80876
|
+
if (response) {
|
|
80877
|
+
this.response = response;
|
|
80878
|
+
this.status = response.status ? response.status : null;
|
|
80879
|
+
}
|
|
80880
|
+
}
|
|
80881
|
+
utils$1.inherits(AxiosError$1, Error, {
|
|
80882
|
+
toJSON: function toJSON() {
|
|
80883
|
+
return {
|
|
80884
|
+
// Standard
|
|
80885
|
+
message: this.message,
|
|
80886
|
+
name: this.name,
|
|
80887
|
+
// Microsoft
|
|
80888
|
+
description: this.description,
|
|
80889
|
+
number: this.number,
|
|
80890
|
+
// Mozilla
|
|
80891
|
+
fileName: this.fileName,
|
|
80892
|
+
lineNumber: this.lineNumber,
|
|
80893
|
+
columnNumber: this.columnNumber,
|
|
80894
|
+
stack: this.stack,
|
|
80895
|
+
// Axios
|
|
80896
|
+
config: utils$1.toJSONObject(this.config),
|
|
80897
|
+
code: this.code,
|
|
80898
|
+
status: this.status
|
|
80899
|
+
};
|
|
80900
|
+
}
|
|
80901
|
+
});
|
|
80902
|
+
const prototype$1 = AxiosError$1.prototype;
|
|
80903
|
+
const descriptors = {};
|
|
80904
|
+
[
|
|
80905
|
+
"ERR_BAD_OPTION_VALUE",
|
|
80906
|
+
"ERR_BAD_OPTION",
|
|
80907
|
+
"ECONNABORTED",
|
|
80908
|
+
"ETIMEDOUT",
|
|
80909
|
+
"ERR_NETWORK",
|
|
80910
|
+
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
80911
|
+
"ERR_DEPRECATED",
|
|
80912
|
+
"ERR_BAD_RESPONSE",
|
|
80913
|
+
"ERR_BAD_REQUEST",
|
|
80914
|
+
"ERR_CANCELED",
|
|
80915
|
+
"ERR_NOT_SUPPORT",
|
|
80916
|
+
"ERR_INVALID_URL"
|
|
80917
|
+
// eslint-disable-next-line func-names
|
|
80918
|
+
].forEach((code) => {
|
|
80919
|
+
descriptors[code] = { value: code };
|
|
80920
|
+
});
|
|
80921
|
+
Object.defineProperties(AxiosError$1, descriptors);
|
|
80922
|
+
Object.defineProperty(prototype$1, "isAxiosError", { value: true });
|
|
80923
|
+
AxiosError$1.from = (error, code, config2, request, response, customProps) => {
|
|
80924
|
+
const axiosError = Object.create(prototype$1);
|
|
80925
|
+
utils$1.toFlatObject(error, axiosError, function filter3(obj) {
|
|
80926
|
+
return obj !== Error.prototype;
|
|
80927
|
+
}, (prop) => {
|
|
80928
|
+
return prop !== "isAxiosError";
|
|
80929
|
+
});
|
|
80930
|
+
AxiosError$1.call(axiosError, error.message, code, config2, request, response);
|
|
80931
|
+
axiosError.cause = error;
|
|
80932
|
+
axiosError.name = error.name;
|
|
80933
|
+
customProps && Object.assign(axiosError, customProps);
|
|
80934
|
+
return axiosError;
|
|
80935
|
+
};
|
|
80936
|
+
const httpAdapter = null;
|
|
80937
|
+
function isVisitable(thing) {
|
|
80938
|
+
return utils$1.isPlainObject(thing) || utils$1.isArray(thing);
|
|
80939
|
+
}
|
|
80940
|
+
function removeBrackets(key) {
|
|
80941
|
+
return utils$1.endsWith(key, "[]") ? key.slice(0, -2) : key;
|
|
80942
|
+
}
|
|
80943
|
+
function renderKey(path, key, dots) {
|
|
80944
|
+
if (!path) return key;
|
|
80945
|
+
return path.concat(key).map(function each(token2, i) {
|
|
80946
|
+
token2 = removeBrackets(token2);
|
|
80947
|
+
return !dots && i ? "[" + token2 + "]" : token2;
|
|
80948
|
+
}).join(dots ? "." : "");
|
|
80949
|
+
}
|
|
80950
|
+
function isFlatArray(arr) {
|
|
80951
|
+
return utils$1.isArray(arr) && !arr.some(isVisitable);
|
|
80952
|
+
}
|
|
80953
|
+
const predicates = utils$1.toFlatObject(utils$1, {}, null, function filter2(prop) {
|
|
80954
|
+
return /^is[A-Z]/.test(prop);
|
|
80955
|
+
});
|
|
80956
|
+
function toFormData$1(obj, formData, options) {
|
|
80957
|
+
if (!utils$1.isObject(obj)) {
|
|
80958
|
+
throw new TypeError("target must be an object");
|
|
80959
|
+
}
|
|
80960
|
+
formData = formData || new FormData();
|
|
80961
|
+
options = utils$1.toFlatObject(options, {
|
|
80962
|
+
metaTokens: true,
|
|
80963
|
+
dots: false,
|
|
80964
|
+
indexes: false
|
|
80965
|
+
}, false, function defined(option, source) {
|
|
80966
|
+
return !utils$1.isUndefined(source[option]);
|
|
80967
|
+
});
|
|
80968
|
+
const metaTokens = options.metaTokens;
|
|
80969
|
+
const visitor = options.visitor || defaultVisitor;
|
|
80970
|
+
const dots = options.dots;
|
|
80971
|
+
const indexes = options.indexes;
|
|
80972
|
+
const _Blob = options.Blob || typeof Blob !== "undefined" && Blob;
|
|
80973
|
+
const useBlob = _Blob && utils$1.isSpecCompliantForm(formData);
|
|
80974
|
+
if (!utils$1.isFunction(visitor)) {
|
|
80975
|
+
throw new TypeError("visitor must be a function");
|
|
80976
|
+
}
|
|
80977
|
+
function convertValue(value2) {
|
|
80978
|
+
if (value2 === null) return "";
|
|
80979
|
+
if (utils$1.isDate(value2)) {
|
|
80980
|
+
return value2.toISOString();
|
|
80981
|
+
}
|
|
80982
|
+
if (utils$1.isBoolean(value2)) {
|
|
80983
|
+
return value2.toString();
|
|
80984
|
+
}
|
|
80985
|
+
if (!useBlob && utils$1.isBlob(value2)) {
|
|
80986
|
+
throw new AxiosError$1("Blob is not supported. Use a Buffer instead.");
|
|
80987
|
+
}
|
|
80988
|
+
if (utils$1.isArrayBuffer(value2) || utils$1.isTypedArray(value2)) {
|
|
80989
|
+
return useBlob && typeof Blob === "function" ? new Blob([value2]) : Buffer.from(value2);
|
|
80990
|
+
}
|
|
80991
|
+
return value2;
|
|
80992
|
+
}
|
|
80993
|
+
function defaultVisitor(value2, key, path) {
|
|
80994
|
+
let arr = value2;
|
|
80995
|
+
if (value2 && !path && typeof value2 === "object") {
|
|
80996
|
+
if (utils$1.endsWith(key, "{}")) {
|
|
80997
|
+
key = metaTokens ? key : key.slice(0, -2);
|
|
80998
|
+
value2 = JSON.stringify(value2);
|
|
80999
|
+
} else if (utils$1.isArray(value2) && isFlatArray(value2) || (utils$1.isFileList(value2) || utils$1.endsWith(key, "[]")) && (arr = utils$1.toArray(value2))) {
|
|
81000
|
+
key = removeBrackets(key);
|
|
81001
|
+
arr.forEach(function each(el, index) {
|
|
81002
|
+
!(utils$1.isUndefined(el) || el === null) && formData.append(
|
|
81003
|
+
// eslint-disable-next-line no-nested-ternary
|
|
81004
|
+
indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + "[]",
|
|
81005
|
+
convertValue(el)
|
|
81006
|
+
);
|
|
81007
|
+
});
|
|
81008
|
+
return false;
|
|
81009
|
+
}
|
|
81010
|
+
}
|
|
81011
|
+
if (isVisitable(value2)) {
|
|
81012
|
+
return true;
|
|
81013
|
+
}
|
|
81014
|
+
formData.append(renderKey(path, key, dots), convertValue(value2));
|
|
81015
|
+
return false;
|
|
81016
|
+
}
|
|
81017
|
+
const stack = [];
|
|
81018
|
+
const exposedHelpers = Object.assign(predicates, {
|
|
81019
|
+
defaultVisitor,
|
|
81020
|
+
convertValue,
|
|
81021
|
+
isVisitable
|
|
81022
|
+
});
|
|
81023
|
+
function build2(value2, path) {
|
|
81024
|
+
if (utils$1.isUndefined(value2)) return;
|
|
81025
|
+
if (stack.indexOf(value2) !== -1) {
|
|
81026
|
+
throw Error("Circular reference detected in " + path.join("."));
|
|
81027
|
+
}
|
|
81028
|
+
stack.push(value2);
|
|
81029
|
+
utils$1.forEach(value2, function each(el, key) {
|
|
81030
|
+
const result = !(utils$1.isUndefined(el) || el === null) && visitor.call(
|
|
81031
|
+
formData,
|
|
81032
|
+
el,
|
|
81033
|
+
utils$1.isString(key) ? key.trim() : key,
|
|
81034
|
+
path,
|
|
81035
|
+
exposedHelpers
|
|
81036
|
+
);
|
|
81037
|
+
if (result === true) {
|
|
81038
|
+
build2(el, path ? path.concat(key) : [key]);
|
|
81039
|
+
}
|
|
81040
|
+
});
|
|
81041
|
+
stack.pop();
|
|
81042
|
+
}
|
|
81043
|
+
if (!utils$1.isObject(obj)) {
|
|
81044
|
+
throw new TypeError("data must be an object");
|
|
81045
|
+
}
|
|
81046
|
+
build2(obj);
|
|
81047
|
+
return formData;
|
|
81048
|
+
}
|
|
81049
|
+
function encode$1(str) {
|
|
81050
|
+
const charMap = {
|
|
81051
|
+
"!": "%21",
|
|
81052
|
+
"'": "%27",
|
|
81053
|
+
"(": "%28",
|
|
81054
|
+
")": "%29",
|
|
81055
|
+
"~": "%7E",
|
|
81056
|
+
"%20": "+",
|
|
81057
|
+
"%00": "\0"
|
|
81058
|
+
};
|
|
81059
|
+
return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match2) {
|
|
81060
|
+
return charMap[match2];
|
|
81061
|
+
});
|
|
81062
|
+
}
|
|
81063
|
+
function AxiosURLSearchParams(params, options) {
|
|
81064
|
+
this._pairs = [];
|
|
81065
|
+
params && toFormData$1(params, this, options);
|
|
81066
|
+
}
|
|
81067
|
+
const prototype = AxiosURLSearchParams.prototype;
|
|
81068
|
+
prototype.append = function append2(name, value2) {
|
|
81069
|
+
this._pairs.push([name, value2]);
|
|
81070
|
+
};
|
|
81071
|
+
prototype.toString = function toString2(encoder) {
|
|
81072
|
+
const _encode = encoder ? function(value2) {
|
|
81073
|
+
return encoder.call(this, value2, encode$1);
|
|
81074
|
+
} : encode$1;
|
|
81075
|
+
return this._pairs.map(function each(pair) {
|
|
81076
|
+
return _encode(pair[0]) + "=" + _encode(pair[1]);
|
|
81077
|
+
}, "").join("&");
|
|
81078
|
+
};
|
|
81079
|
+
function encode(val) {
|
|
81080
|
+
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
81081
|
+
}
|
|
81082
|
+
function buildURL(url, params, options) {
|
|
81083
|
+
if (!params) {
|
|
81084
|
+
return url;
|
|
81085
|
+
}
|
|
81086
|
+
const _encode = options && options.encode || encode;
|
|
81087
|
+
if (utils$1.isFunction(options)) {
|
|
81088
|
+
options = {
|
|
81089
|
+
serialize: options
|
|
81090
|
+
};
|
|
81091
|
+
}
|
|
81092
|
+
const serializeFn = options && options.serialize;
|
|
81093
|
+
let serializedParams;
|
|
81094
|
+
if (serializeFn) {
|
|
81095
|
+
serializedParams = serializeFn(params, options);
|
|
81096
|
+
} else {
|
|
81097
|
+
serializedParams = utils$1.isURLSearchParams(params) ? params.toString() : new AxiosURLSearchParams(params, options).toString(_encode);
|
|
81098
|
+
}
|
|
81099
|
+
if (serializedParams) {
|
|
81100
|
+
const hashmarkIndex = url.indexOf("#");
|
|
81101
|
+
if (hashmarkIndex !== -1) {
|
|
81102
|
+
url = url.slice(0, hashmarkIndex);
|
|
81103
|
+
}
|
|
81104
|
+
url += (url.indexOf("?") === -1 ? "?" : "&") + serializedParams;
|
|
81105
|
+
}
|
|
81106
|
+
return url;
|
|
81107
|
+
}
|
|
81108
|
+
class InterceptorManager {
|
|
81109
|
+
constructor() {
|
|
81110
|
+
this.handlers = [];
|
|
81111
|
+
}
|
|
81112
|
+
/**
|
|
81113
|
+
* Add a new interceptor to the stack
|
|
81114
|
+
*
|
|
81115
|
+
* @param {Function} fulfilled The function to handle `then` for a `Promise`
|
|
81116
|
+
* @param {Function} rejected The function to handle `reject` for a `Promise`
|
|
81117
|
+
*
|
|
81118
|
+
* @return {Number} An ID used to remove interceptor later
|
|
81119
|
+
*/
|
|
81120
|
+
use(fulfilled, rejected, options) {
|
|
81121
|
+
this.handlers.push({
|
|
81122
|
+
fulfilled,
|
|
81123
|
+
rejected,
|
|
81124
|
+
synchronous: options ? options.synchronous : false,
|
|
81125
|
+
runWhen: options ? options.runWhen : null
|
|
81126
|
+
});
|
|
81127
|
+
return this.handlers.length - 1;
|
|
81128
|
+
}
|
|
81129
|
+
/**
|
|
81130
|
+
* Remove an interceptor from the stack
|
|
81131
|
+
*
|
|
81132
|
+
* @param {Number} id The ID that was returned by `use`
|
|
81133
|
+
*
|
|
81134
|
+
* @returns {Boolean} `true` if the interceptor was removed, `false` otherwise
|
|
81135
|
+
*/
|
|
81136
|
+
eject(id2) {
|
|
81137
|
+
if (this.handlers[id2]) {
|
|
81138
|
+
this.handlers[id2] = null;
|
|
81139
|
+
}
|
|
81140
|
+
}
|
|
81141
|
+
/**
|
|
81142
|
+
* Clear all interceptors from the stack
|
|
81143
|
+
*
|
|
81144
|
+
* @returns {void}
|
|
81145
|
+
*/
|
|
81146
|
+
clear() {
|
|
81147
|
+
if (this.handlers) {
|
|
81148
|
+
this.handlers = [];
|
|
81149
|
+
}
|
|
81150
|
+
}
|
|
81151
|
+
/**
|
|
81152
|
+
* Iterate over all the registered interceptors
|
|
81153
|
+
*
|
|
81154
|
+
* This method is particularly useful for skipping over any
|
|
81155
|
+
* interceptors that may have become `null` calling `eject`.
|
|
81156
|
+
*
|
|
81157
|
+
* @param {Function} fn The function to call for each interceptor
|
|
81158
|
+
*
|
|
81159
|
+
* @returns {void}
|
|
81160
|
+
*/
|
|
81161
|
+
forEach(fn2) {
|
|
81162
|
+
utils$1.forEach(this.handlers, function forEachHandler(h) {
|
|
81163
|
+
if (h !== null) {
|
|
81164
|
+
fn2(h);
|
|
81165
|
+
}
|
|
81166
|
+
});
|
|
81167
|
+
}
|
|
81168
|
+
}
|
|
81169
|
+
const transitionalDefaults = {
|
|
81170
|
+
silentJSONParsing: true,
|
|
81171
|
+
forcedJSONParsing: true,
|
|
81172
|
+
clarifyTimeoutError: false
|
|
81173
|
+
};
|
|
81174
|
+
const URLSearchParams$1 = typeof URLSearchParams !== "undefined" ? URLSearchParams : AxiosURLSearchParams;
|
|
81175
|
+
const FormData$1 = typeof FormData !== "undefined" ? FormData : null;
|
|
81176
|
+
const Blob$1 = typeof Blob !== "undefined" ? Blob : null;
|
|
81177
|
+
const platform$1 = {
|
|
81178
|
+
isBrowser: true,
|
|
81179
|
+
classes: {
|
|
81180
|
+
URLSearchParams: URLSearchParams$1,
|
|
81181
|
+
FormData: FormData$1,
|
|
81182
|
+
Blob: Blob$1
|
|
81183
|
+
},
|
|
81184
|
+
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
81185
|
+
};
|
|
81186
|
+
const hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
|
|
81187
|
+
const _navigator = typeof navigator === "object" && navigator || void 0;
|
|
81188
|
+
const hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || ["ReactNative", "NativeScript", "NS"].indexOf(_navigator.product) < 0);
|
|
81189
|
+
const hasStandardBrowserWebWorkerEnv = (() => {
|
|
81190
|
+
return typeof WorkerGlobalScope !== "undefined" && // eslint-disable-next-line no-undef
|
|
81191
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts === "function";
|
|
81192
|
+
})();
|
|
81193
|
+
const origin = hasBrowserEnv && window.location.href || "http://localhost";
|
|
81194
|
+
const utils = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
81195
|
+
__proto__: null,
|
|
81196
|
+
hasBrowserEnv,
|
|
81197
|
+
hasStandardBrowserEnv,
|
|
81198
|
+
hasStandardBrowserWebWorkerEnv,
|
|
81199
|
+
navigator: _navigator,
|
|
81200
|
+
origin
|
|
81201
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
81202
|
+
const platform = {
|
|
81203
|
+
...utils,
|
|
81204
|
+
...platform$1
|
|
81205
|
+
};
|
|
81206
|
+
function toURLEncodedForm(data, options) {
|
|
81207
|
+
return toFormData$1(data, new platform.classes.URLSearchParams(), Object.assign({
|
|
81208
|
+
visitor: function(value2, key, path, helpers) {
|
|
81209
|
+
if (platform.isNode && utils$1.isBuffer(value2)) {
|
|
81210
|
+
this.append(key, value2.toString("base64"));
|
|
81211
|
+
return false;
|
|
81212
|
+
}
|
|
81213
|
+
return helpers.defaultVisitor.apply(this, arguments);
|
|
81214
|
+
}
|
|
81215
|
+
}, options));
|
|
81216
|
+
}
|
|
81217
|
+
function parsePropPath(name) {
|
|
81218
|
+
return utils$1.matchAll(/\w+|\[(\w*)]/g, name).map((match2) => {
|
|
81219
|
+
return match2[0] === "[]" ? "" : match2[1] || match2[0];
|
|
81220
|
+
});
|
|
81221
|
+
}
|
|
81222
|
+
function arrayToObject(arr) {
|
|
81223
|
+
const obj = {};
|
|
81224
|
+
const keys = Object.keys(arr);
|
|
81225
|
+
let i;
|
|
81226
|
+
const len = keys.length;
|
|
81227
|
+
let key;
|
|
81228
|
+
for (i = 0; i < len; i++) {
|
|
81229
|
+
key = keys[i];
|
|
81230
|
+
obj[key] = arr[key];
|
|
81231
|
+
}
|
|
81232
|
+
return obj;
|
|
81233
|
+
}
|
|
81234
|
+
function formDataToJSON(formData) {
|
|
81235
|
+
function buildPath(path, value2, target, index) {
|
|
81236
|
+
let name = path[index++];
|
|
81237
|
+
if (name === "__proto__") return true;
|
|
81238
|
+
const isNumericKey = Number.isFinite(+name);
|
|
81239
|
+
const isLast = index >= path.length;
|
|
81240
|
+
name = !name && utils$1.isArray(target) ? target.length : name;
|
|
81241
|
+
if (isLast) {
|
|
81242
|
+
if (utils$1.hasOwnProp(target, name)) {
|
|
81243
|
+
target[name] = [target[name], value2];
|
|
81244
|
+
} else {
|
|
81245
|
+
target[name] = value2;
|
|
81246
|
+
}
|
|
81247
|
+
return !isNumericKey;
|
|
81248
|
+
}
|
|
81249
|
+
if (!target[name] || !utils$1.isObject(target[name])) {
|
|
81250
|
+
target[name] = [];
|
|
81251
|
+
}
|
|
81252
|
+
const result = buildPath(path, value2, target[name], index);
|
|
81253
|
+
if (result && utils$1.isArray(target[name])) {
|
|
81254
|
+
target[name] = arrayToObject(target[name]);
|
|
81255
|
+
}
|
|
81256
|
+
return !isNumericKey;
|
|
81257
|
+
}
|
|
81258
|
+
if (utils$1.isFormData(formData) && utils$1.isFunction(formData.entries)) {
|
|
81259
|
+
const obj = {};
|
|
81260
|
+
utils$1.forEachEntry(formData, (name, value2) => {
|
|
81261
|
+
buildPath(parsePropPath(name), value2, obj, 0);
|
|
81262
|
+
});
|
|
81263
|
+
return obj;
|
|
81264
|
+
}
|
|
81265
|
+
return null;
|
|
81266
|
+
}
|
|
81267
|
+
function stringifySafely(rawValue, parser, encoder) {
|
|
81268
|
+
if (utils$1.isString(rawValue)) {
|
|
81269
|
+
try {
|
|
81270
|
+
(parser || JSON.parse)(rawValue);
|
|
81271
|
+
return utils$1.trim(rawValue);
|
|
81272
|
+
} catch (e) {
|
|
81273
|
+
if (e.name !== "SyntaxError") {
|
|
81274
|
+
throw e;
|
|
81275
|
+
}
|
|
81276
|
+
}
|
|
81277
|
+
}
|
|
81278
|
+
return (encoder || JSON.stringify)(rawValue);
|
|
81279
|
+
}
|
|
81280
|
+
const defaults = {
|
|
81281
|
+
transitional: transitionalDefaults,
|
|
81282
|
+
adapter: ["xhr", "http", "fetch"],
|
|
81283
|
+
transformRequest: [function transformRequest(data, headers) {
|
|
81284
|
+
const contentType = headers.getContentType() || "";
|
|
81285
|
+
const hasJSONContentType = contentType.indexOf("application/json") > -1;
|
|
81286
|
+
const isObjectPayload = utils$1.isObject(data);
|
|
81287
|
+
if (isObjectPayload && utils$1.isHTMLForm(data)) {
|
|
81288
|
+
data = new FormData(data);
|
|
81289
|
+
}
|
|
81290
|
+
const isFormData2 = utils$1.isFormData(data);
|
|
81291
|
+
if (isFormData2) {
|
|
81292
|
+
return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
|
|
81293
|
+
}
|
|
81294
|
+
if (utils$1.isArrayBuffer(data) || utils$1.isBuffer(data) || utils$1.isStream(data) || utils$1.isFile(data) || utils$1.isBlob(data) || utils$1.isReadableStream(data)) {
|
|
81295
|
+
return data;
|
|
81296
|
+
}
|
|
81297
|
+
if (utils$1.isArrayBufferView(data)) {
|
|
81298
|
+
return data.buffer;
|
|
81299
|
+
}
|
|
81300
|
+
if (utils$1.isURLSearchParams(data)) {
|
|
81301
|
+
headers.setContentType("application/x-www-form-urlencoded;charset=utf-8", false);
|
|
81302
|
+
return data.toString();
|
|
81303
|
+
}
|
|
81304
|
+
let isFileList2;
|
|
81305
|
+
if (isObjectPayload) {
|
|
81306
|
+
if (contentType.indexOf("application/x-www-form-urlencoded") > -1) {
|
|
81307
|
+
return toURLEncodedForm(data, this.formSerializer).toString();
|
|
81308
|
+
}
|
|
81309
|
+
if ((isFileList2 = utils$1.isFileList(data)) || contentType.indexOf("multipart/form-data") > -1) {
|
|
81310
|
+
const _FormData = this.env && this.env.FormData;
|
|
81311
|
+
return toFormData$1(
|
|
81312
|
+
isFileList2 ? { "files[]": data } : data,
|
|
81313
|
+
_FormData && new _FormData(),
|
|
81314
|
+
this.formSerializer
|
|
81315
|
+
);
|
|
81316
|
+
}
|
|
81317
|
+
}
|
|
81318
|
+
if (isObjectPayload || hasJSONContentType) {
|
|
81319
|
+
headers.setContentType("application/json", false);
|
|
81320
|
+
return stringifySafely(data);
|
|
81321
|
+
}
|
|
81322
|
+
return data;
|
|
81323
|
+
}],
|
|
81324
|
+
transformResponse: [function transformResponse(data) {
|
|
81325
|
+
const transitional2 = this.transitional || defaults.transitional;
|
|
81326
|
+
const forcedJSONParsing = transitional2 && transitional2.forcedJSONParsing;
|
|
81327
|
+
const JSONRequested = this.responseType === "json";
|
|
81328
|
+
if (utils$1.isResponse(data) || utils$1.isReadableStream(data)) {
|
|
81329
|
+
return data;
|
|
81330
|
+
}
|
|
81331
|
+
if (data && utils$1.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) {
|
|
81332
|
+
const silentJSONParsing = transitional2 && transitional2.silentJSONParsing;
|
|
81333
|
+
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
81334
|
+
try {
|
|
81335
|
+
return JSON.parse(data);
|
|
81336
|
+
} catch (e) {
|
|
81337
|
+
if (strictJSONParsing) {
|
|
81338
|
+
if (e.name === "SyntaxError") {
|
|
81339
|
+
throw AxiosError$1.from(e, AxiosError$1.ERR_BAD_RESPONSE, this, null, this.response);
|
|
81340
|
+
}
|
|
81341
|
+
throw e;
|
|
81342
|
+
}
|
|
81343
|
+
}
|
|
81344
|
+
}
|
|
81345
|
+
return data;
|
|
81346
|
+
}],
|
|
81347
|
+
/**
|
|
81348
|
+
* A timeout in milliseconds to abort a request. If set to 0 (default) a
|
|
81349
|
+
* timeout is not created.
|
|
81350
|
+
*/
|
|
81351
|
+
timeout: 0,
|
|
81352
|
+
xsrfCookieName: "XSRF-TOKEN",
|
|
81353
|
+
xsrfHeaderName: "X-XSRF-TOKEN",
|
|
81354
|
+
maxContentLength: -1,
|
|
81355
|
+
maxBodyLength: -1,
|
|
81356
|
+
env: {
|
|
81357
|
+
FormData: platform.classes.FormData,
|
|
81358
|
+
Blob: platform.classes.Blob
|
|
81359
|
+
},
|
|
81360
|
+
validateStatus: function validateStatus(status) {
|
|
81361
|
+
return status >= 200 && status < 300;
|
|
81362
|
+
},
|
|
81363
|
+
headers: {
|
|
81364
|
+
common: {
|
|
81365
|
+
"Accept": "application/json, text/plain, */*",
|
|
81366
|
+
"Content-Type": void 0
|
|
81367
|
+
}
|
|
81368
|
+
}
|
|
81369
|
+
};
|
|
81370
|
+
utils$1.forEach(["delete", "get", "head", "post", "put", "patch"], (method) => {
|
|
81371
|
+
defaults.headers[method] = {};
|
|
81372
|
+
});
|
|
81373
|
+
const ignoreDuplicateOf = utils$1.toObjectSet([
|
|
81374
|
+
"age",
|
|
81375
|
+
"authorization",
|
|
81376
|
+
"content-length",
|
|
81377
|
+
"content-type",
|
|
81378
|
+
"etag",
|
|
81379
|
+
"expires",
|
|
81380
|
+
"from",
|
|
81381
|
+
"host",
|
|
81382
|
+
"if-modified-since",
|
|
81383
|
+
"if-unmodified-since",
|
|
81384
|
+
"last-modified",
|
|
81385
|
+
"location",
|
|
81386
|
+
"max-forwards",
|
|
81387
|
+
"proxy-authorization",
|
|
81388
|
+
"referer",
|
|
81389
|
+
"retry-after",
|
|
81390
|
+
"user-agent"
|
|
81391
|
+
]);
|
|
81392
|
+
const parseHeaders = (rawHeaders) => {
|
|
81393
|
+
const parsed = {};
|
|
81394
|
+
let key;
|
|
81395
|
+
let val;
|
|
81396
|
+
let i;
|
|
81397
|
+
rawHeaders && rawHeaders.split("\n").forEach(function parser(line2) {
|
|
81398
|
+
i = line2.indexOf(":");
|
|
81399
|
+
key = line2.substring(0, i).trim().toLowerCase();
|
|
81400
|
+
val = line2.substring(i + 1).trim();
|
|
81401
|
+
if (!key || parsed[key] && ignoreDuplicateOf[key]) {
|
|
81402
|
+
return;
|
|
81403
|
+
}
|
|
81404
|
+
if (key === "set-cookie") {
|
|
81405
|
+
if (parsed[key]) {
|
|
81406
|
+
parsed[key].push(val);
|
|
81407
|
+
} else {
|
|
81408
|
+
parsed[key] = [val];
|
|
81409
|
+
}
|
|
81410
|
+
} else {
|
|
81411
|
+
parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
|
|
81412
|
+
}
|
|
81413
|
+
});
|
|
81414
|
+
return parsed;
|
|
81415
|
+
};
|
|
81416
|
+
const $internals = Symbol("internals");
|
|
81417
|
+
function normalizeHeader(header) {
|
|
81418
|
+
return header && String(header).trim().toLowerCase();
|
|
81419
|
+
}
|
|
81420
|
+
function normalizeValue(value2) {
|
|
81421
|
+
if (value2 === false || value2 == null) {
|
|
81422
|
+
return value2;
|
|
81423
|
+
}
|
|
81424
|
+
return utils$1.isArray(value2) ? value2.map(normalizeValue) : String(value2);
|
|
81425
|
+
}
|
|
81426
|
+
function parseTokens(str) {
|
|
81427
|
+
const tokens = /* @__PURE__ */ Object.create(null);
|
|
81428
|
+
const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
81429
|
+
let match2;
|
|
81430
|
+
while (match2 = tokensRE.exec(str)) {
|
|
81431
|
+
tokens[match2[1]] = match2[2];
|
|
81432
|
+
}
|
|
81433
|
+
return tokens;
|
|
81434
|
+
}
|
|
81435
|
+
const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
|
|
81436
|
+
function matchHeaderValue(context, value2, header, filter3, isHeaderNameFilter) {
|
|
81437
|
+
if (utils$1.isFunction(filter3)) {
|
|
81438
|
+
return filter3.call(this, value2, header);
|
|
81439
|
+
}
|
|
81440
|
+
if (isHeaderNameFilter) {
|
|
81441
|
+
value2 = header;
|
|
81442
|
+
}
|
|
81443
|
+
if (!utils$1.isString(value2)) return;
|
|
81444
|
+
if (utils$1.isString(filter3)) {
|
|
81445
|
+
return value2.indexOf(filter3) !== -1;
|
|
81446
|
+
}
|
|
81447
|
+
if (utils$1.isRegExp(filter3)) {
|
|
81448
|
+
return filter3.test(value2);
|
|
81449
|
+
}
|
|
81450
|
+
}
|
|
81451
|
+
function formatHeader(header) {
|
|
81452
|
+
return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w2, char2, str) => {
|
|
81453
|
+
return char2.toUpperCase() + str;
|
|
81454
|
+
});
|
|
81455
|
+
}
|
|
81456
|
+
function buildAccessors(obj, header) {
|
|
81457
|
+
const accessorName = utils$1.toCamelCase(" " + header);
|
|
81458
|
+
["get", "set", "has"].forEach((methodName) => {
|
|
81459
|
+
Object.defineProperty(obj, methodName + accessorName, {
|
|
81460
|
+
value: function(arg1, arg2, arg3) {
|
|
81461
|
+
return this[methodName].call(this, header, arg1, arg2, arg3);
|
|
81462
|
+
},
|
|
81463
|
+
configurable: true
|
|
81464
|
+
});
|
|
81465
|
+
});
|
|
81466
|
+
}
|
|
81467
|
+
let AxiosHeaders$1 = class AxiosHeaders {
|
|
81468
|
+
constructor(headers) {
|
|
81469
|
+
headers && this.set(headers);
|
|
81470
|
+
}
|
|
81471
|
+
set(header, valueOrRewrite, rewrite) {
|
|
81472
|
+
const self2 = this;
|
|
81473
|
+
function setHeader(_value, _header, _rewrite) {
|
|
81474
|
+
const lHeader = normalizeHeader(_header);
|
|
81475
|
+
if (!lHeader) {
|
|
81476
|
+
throw new Error("header name must be a non-empty string");
|
|
81477
|
+
}
|
|
81478
|
+
const key = utils$1.findKey(self2, lHeader);
|
|
81479
|
+
if (!key || self2[key] === void 0 || _rewrite === true || _rewrite === void 0 && self2[key] !== false) {
|
|
81480
|
+
self2[key || _header] = normalizeValue(_value);
|
|
81481
|
+
}
|
|
81482
|
+
}
|
|
81483
|
+
const setHeaders = (headers, _rewrite) => utils$1.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
|
|
81484
|
+
if (utils$1.isPlainObject(header) || header instanceof this.constructor) {
|
|
81485
|
+
setHeaders(header, valueOrRewrite);
|
|
81486
|
+
} else if (utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
81487
|
+
setHeaders(parseHeaders(header), valueOrRewrite);
|
|
81488
|
+
} else if (utils$1.isObject(header) && utils$1.isIterable(header)) {
|
|
81489
|
+
let obj = {}, dest, key;
|
|
81490
|
+
for (const entry of header) {
|
|
81491
|
+
if (!utils$1.isArray(entry)) {
|
|
81492
|
+
throw TypeError("Object iterator must return a key-value pair");
|
|
81493
|
+
}
|
|
81494
|
+
obj[key = entry[0]] = (dest = obj[key]) ? utils$1.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1];
|
|
81495
|
+
}
|
|
81496
|
+
setHeaders(obj, valueOrRewrite);
|
|
81497
|
+
} else {
|
|
81498
|
+
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
81499
|
+
}
|
|
81500
|
+
return this;
|
|
81501
|
+
}
|
|
81502
|
+
get(header, parser) {
|
|
81503
|
+
header = normalizeHeader(header);
|
|
81504
|
+
if (header) {
|
|
81505
|
+
const key = utils$1.findKey(this, header);
|
|
81506
|
+
if (key) {
|
|
81507
|
+
const value2 = this[key];
|
|
81508
|
+
if (!parser) {
|
|
81509
|
+
return value2;
|
|
81510
|
+
}
|
|
81511
|
+
if (parser === true) {
|
|
81512
|
+
return parseTokens(value2);
|
|
81513
|
+
}
|
|
81514
|
+
if (utils$1.isFunction(parser)) {
|
|
81515
|
+
return parser.call(this, value2, key);
|
|
81516
|
+
}
|
|
81517
|
+
if (utils$1.isRegExp(parser)) {
|
|
81518
|
+
return parser.exec(value2);
|
|
81519
|
+
}
|
|
81520
|
+
throw new TypeError("parser must be boolean|regexp|function");
|
|
81521
|
+
}
|
|
81522
|
+
}
|
|
81523
|
+
}
|
|
81524
|
+
has(header, matcher2) {
|
|
81525
|
+
header = normalizeHeader(header);
|
|
81526
|
+
if (header) {
|
|
81527
|
+
const key = utils$1.findKey(this, header);
|
|
81528
|
+
return !!(key && this[key] !== void 0 && (!matcher2 || matchHeaderValue(this, this[key], key, matcher2)));
|
|
81529
|
+
}
|
|
81530
|
+
return false;
|
|
81531
|
+
}
|
|
81532
|
+
delete(header, matcher2) {
|
|
81533
|
+
const self2 = this;
|
|
81534
|
+
let deleted = false;
|
|
81535
|
+
function deleteHeader(_header) {
|
|
81536
|
+
_header = normalizeHeader(_header);
|
|
81537
|
+
if (_header) {
|
|
81538
|
+
const key = utils$1.findKey(self2, _header);
|
|
81539
|
+
if (key && (!matcher2 || matchHeaderValue(self2, self2[key], key, matcher2))) {
|
|
81540
|
+
delete self2[key];
|
|
81541
|
+
deleted = true;
|
|
81542
|
+
}
|
|
81543
|
+
}
|
|
81544
|
+
}
|
|
81545
|
+
if (utils$1.isArray(header)) {
|
|
81546
|
+
header.forEach(deleteHeader);
|
|
81547
|
+
} else {
|
|
81548
|
+
deleteHeader(header);
|
|
81549
|
+
}
|
|
81550
|
+
return deleted;
|
|
81551
|
+
}
|
|
81552
|
+
clear(matcher2) {
|
|
81553
|
+
const keys = Object.keys(this);
|
|
81554
|
+
let i = keys.length;
|
|
81555
|
+
let deleted = false;
|
|
81556
|
+
while (i--) {
|
|
81557
|
+
const key = keys[i];
|
|
81558
|
+
if (!matcher2 || matchHeaderValue(this, this[key], key, matcher2, true)) {
|
|
81559
|
+
delete this[key];
|
|
81560
|
+
deleted = true;
|
|
81561
|
+
}
|
|
81562
|
+
}
|
|
81563
|
+
return deleted;
|
|
81564
|
+
}
|
|
81565
|
+
normalize(format) {
|
|
81566
|
+
const self2 = this;
|
|
81567
|
+
const headers = {};
|
|
81568
|
+
utils$1.forEach(this, (value2, header) => {
|
|
81569
|
+
const key = utils$1.findKey(headers, header);
|
|
81570
|
+
if (key) {
|
|
81571
|
+
self2[key] = normalizeValue(value2);
|
|
81572
|
+
delete self2[header];
|
|
81573
|
+
return;
|
|
81574
|
+
}
|
|
81575
|
+
const normalized = format ? formatHeader(header) : String(header).trim();
|
|
81576
|
+
if (normalized !== header) {
|
|
81577
|
+
delete self2[header];
|
|
81578
|
+
}
|
|
81579
|
+
self2[normalized] = normalizeValue(value2);
|
|
81580
|
+
headers[normalized] = true;
|
|
81581
|
+
});
|
|
81582
|
+
return this;
|
|
81583
|
+
}
|
|
81584
|
+
concat(...targets) {
|
|
81585
|
+
return this.constructor.concat(this, ...targets);
|
|
81586
|
+
}
|
|
81587
|
+
toJSON(asStrings) {
|
|
81588
|
+
const obj = /* @__PURE__ */ Object.create(null);
|
|
81589
|
+
utils$1.forEach(this, (value2, header) => {
|
|
81590
|
+
value2 != null && value2 !== false && (obj[header] = asStrings && utils$1.isArray(value2) ? value2.join(", ") : value2);
|
|
81591
|
+
});
|
|
81592
|
+
return obj;
|
|
81593
|
+
}
|
|
81594
|
+
[Symbol.iterator]() {
|
|
81595
|
+
return Object.entries(this.toJSON())[Symbol.iterator]();
|
|
81596
|
+
}
|
|
81597
|
+
toString() {
|
|
81598
|
+
return Object.entries(this.toJSON()).map(([header, value2]) => header + ": " + value2).join("\n");
|
|
81599
|
+
}
|
|
81600
|
+
getSetCookie() {
|
|
81601
|
+
return this.get("set-cookie") || [];
|
|
81602
|
+
}
|
|
81603
|
+
get [Symbol.toStringTag]() {
|
|
81604
|
+
return "AxiosHeaders";
|
|
81605
|
+
}
|
|
81606
|
+
static from(thing) {
|
|
81607
|
+
return thing instanceof this ? thing : new this(thing);
|
|
81608
|
+
}
|
|
81609
|
+
static concat(first, ...targets) {
|
|
81610
|
+
const computed = new this(first);
|
|
81611
|
+
targets.forEach((target) => computed.set(target));
|
|
81612
|
+
return computed;
|
|
81613
|
+
}
|
|
81614
|
+
static accessor(header) {
|
|
81615
|
+
const internals = this[$internals] = this[$internals] = {
|
|
81616
|
+
accessors: {}
|
|
81617
|
+
};
|
|
81618
|
+
const accessors = internals.accessors;
|
|
81619
|
+
const prototype2 = this.prototype;
|
|
81620
|
+
function defineAccessor(_header) {
|
|
81621
|
+
const lHeader = normalizeHeader(_header);
|
|
81622
|
+
if (!accessors[lHeader]) {
|
|
81623
|
+
buildAccessors(prototype2, _header);
|
|
81624
|
+
accessors[lHeader] = true;
|
|
81625
|
+
}
|
|
81626
|
+
}
|
|
81627
|
+
utils$1.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
|
|
81628
|
+
return this;
|
|
81629
|
+
}
|
|
81630
|
+
};
|
|
81631
|
+
AxiosHeaders$1.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
|
|
81632
|
+
utils$1.reduceDescriptors(AxiosHeaders$1.prototype, ({ value: value2 }, key) => {
|
|
81633
|
+
let mapped = key[0].toUpperCase() + key.slice(1);
|
|
81634
|
+
return {
|
|
81635
|
+
get: () => value2,
|
|
81636
|
+
set(headerValue) {
|
|
81637
|
+
this[mapped] = headerValue;
|
|
81638
|
+
}
|
|
81639
|
+
};
|
|
81640
|
+
});
|
|
81641
|
+
utils$1.freezeMethods(AxiosHeaders$1);
|
|
81642
|
+
function transformData(fns, response) {
|
|
81643
|
+
const config2 = this || defaults;
|
|
81644
|
+
const context = response || config2;
|
|
81645
|
+
const headers = AxiosHeaders$1.from(context.headers);
|
|
81646
|
+
let data = context.data;
|
|
81647
|
+
utils$1.forEach(fns, function transform(fn2) {
|
|
81648
|
+
data = fn2.call(config2, data, headers.normalize(), response ? response.status : void 0);
|
|
81649
|
+
});
|
|
81650
|
+
headers.normalize();
|
|
81651
|
+
return data;
|
|
81652
|
+
}
|
|
81653
|
+
function isCancel$1(value2) {
|
|
81654
|
+
return !!(value2 && value2.__CANCEL__);
|
|
81655
|
+
}
|
|
81656
|
+
function CanceledError$1(message, config2, request) {
|
|
81657
|
+
AxiosError$1.call(this, message == null ? "canceled" : message, AxiosError$1.ERR_CANCELED, config2, request);
|
|
81658
|
+
this.name = "CanceledError";
|
|
81659
|
+
}
|
|
81660
|
+
utils$1.inherits(CanceledError$1, AxiosError$1, {
|
|
81661
|
+
__CANCEL__: true
|
|
81662
|
+
});
|
|
81663
|
+
function settle(resolve, reject, response) {
|
|
81664
|
+
const validateStatus2 = response.config.validateStatus;
|
|
81665
|
+
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
81666
|
+
resolve(response);
|
|
81667
|
+
} else {
|
|
81668
|
+
reject(new AxiosError$1(
|
|
81669
|
+
"Request failed with status code " + response.status,
|
|
81670
|
+
[AxiosError$1.ERR_BAD_REQUEST, AxiosError$1.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
|
|
81671
|
+
response.config,
|
|
81672
|
+
response.request,
|
|
81673
|
+
response
|
|
81674
|
+
));
|
|
81675
|
+
}
|
|
81676
|
+
}
|
|
81677
|
+
function parseProtocol(url) {
|
|
81678
|
+
const match2 = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
81679
|
+
return match2 && match2[1] || "";
|
|
81680
|
+
}
|
|
81681
|
+
function speedometer(samplesCount, min2) {
|
|
81682
|
+
samplesCount = samplesCount || 10;
|
|
81683
|
+
const bytes = new Array(samplesCount);
|
|
81684
|
+
const timestamps = new Array(samplesCount);
|
|
81685
|
+
let head = 0;
|
|
81686
|
+
let tail = 0;
|
|
81687
|
+
let firstSampleTS;
|
|
81688
|
+
min2 = min2 !== void 0 ? min2 : 1e3;
|
|
81689
|
+
return function push(chunkLength) {
|
|
81690
|
+
const now2 = Date.now();
|
|
81691
|
+
const startedAt = timestamps[tail];
|
|
81692
|
+
if (!firstSampleTS) {
|
|
81693
|
+
firstSampleTS = now2;
|
|
81694
|
+
}
|
|
81695
|
+
bytes[head] = chunkLength;
|
|
81696
|
+
timestamps[head] = now2;
|
|
81697
|
+
let i = tail;
|
|
81698
|
+
let bytesCount = 0;
|
|
81699
|
+
while (i !== head) {
|
|
81700
|
+
bytesCount += bytes[i++];
|
|
81701
|
+
i = i % samplesCount;
|
|
81702
|
+
}
|
|
81703
|
+
head = (head + 1) % samplesCount;
|
|
81704
|
+
if (head === tail) {
|
|
81705
|
+
tail = (tail + 1) % samplesCount;
|
|
81706
|
+
}
|
|
81707
|
+
if (now2 - firstSampleTS < min2) {
|
|
81708
|
+
return;
|
|
81709
|
+
}
|
|
81710
|
+
const passed = startedAt && now2 - startedAt;
|
|
81711
|
+
return passed ? Math.round(bytesCount * 1e3 / passed) : void 0;
|
|
81712
|
+
};
|
|
81713
|
+
}
|
|
81714
|
+
function throttle(fn2, freq) {
|
|
81715
|
+
let timestamp = 0;
|
|
81716
|
+
let threshold = 1e3 / freq;
|
|
81717
|
+
let lastArgs;
|
|
81718
|
+
let timer2;
|
|
81719
|
+
const invoke = (args, now2 = Date.now()) => {
|
|
81720
|
+
timestamp = now2;
|
|
81721
|
+
lastArgs = null;
|
|
81722
|
+
if (timer2) {
|
|
81723
|
+
clearTimeout(timer2);
|
|
81724
|
+
timer2 = null;
|
|
81725
|
+
}
|
|
81726
|
+
fn2.apply(null, args);
|
|
81727
|
+
};
|
|
81728
|
+
const throttled = (...args) => {
|
|
81729
|
+
const now2 = Date.now();
|
|
81730
|
+
const passed = now2 - timestamp;
|
|
81731
|
+
if (passed >= threshold) {
|
|
81732
|
+
invoke(args, now2);
|
|
81733
|
+
} else {
|
|
81734
|
+
lastArgs = args;
|
|
81735
|
+
if (!timer2) {
|
|
81736
|
+
timer2 = setTimeout(() => {
|
|
81737
|
+
timer2 = null;
|
|
81738
|
+
invoke(lastArgs);
|
|
81739
|
+
}, threshold - passed);
|
|
81740
|
+
}
|
|
81741
|
+
}
|
|
81742
|
+
};
|
|
81743
|
+
const flush = () => lastArgs && invoke(lastArgs);
|
|
81744
|
+
return [throttled, flush];
|
|
81745
|
+
}
|
|
81746
|
+
const progressEventReducer = (listener2, isDownloadStream, freq = 3) => {
|
|
81747
|
+
let bytesNotified = 0;
|
|
81748
|
+
const _speedometer = speedometer(50, 250);
|
|
81749
|
+
return throttle((e) => {
|
|
81750
|
+
const loaded2 = e.loaded;
|
|
81751
|
+
const total = e.lengthComputable ? e.total : void 0;
|
|
81752
|
+
const progressBytes = loaded2 - bytesNotified;
|
|
81753
|
+
const rate = _speedometer(progressBytes);
|
|
81754
|
+
const inRange = loaded2 <= total;
|
|
81755
|
+
bytesNotified = loaded2;
|
|
81756
|
+
const data = {
|
|
81757
|
+
loaded: loaded2,
|
|
81758
|
+
total,
|
|
81759
|
+
progress: total ? loaded2 / total : void 0,
|
|
81760
|
+
bytes: progressBytes,
|
|
81761
|
+
rate: rate ? rate : void 0,
|
|
81762
|
+
estimated: rate && total && inRange ? (total - loaded2) / rate : void 0,
|
|
81763
|
+
event: e,
|
|
81764
|
+
lengthComputable: total != null,
|
|
81765
|
+
[isDownloadStream ? "download" : "upload"]: true
|
|
81766
|
+
};
|
|
81767
|
+
listener2(data);
|
|
81768
|
+
}, freq);
|
|
81769
|
+
};
|
|
81770
|
+
const progressEventDecorator = (total, throttled) => {
|
|
81771
|
+
const lengthComputable = total != null;
|
|
81772
|
+
return [(loaded2) => throttled[0]({
|
|
81773
|
+
lengthComputable,
|
|
81774
|
+
total,
|
|
81775
|
+
loaded: loaded2
|
|
81776
|
+
}), throttled[1]];
|
|
81777
|
+
};
|
|
81778
|
+
const asyncDecorator = (fn2) => (...args) => utils$1.asap(() => fn2(...args));
|
|
81779
|
+
const isURLSameOrigin = platform.hasStandardBrowserEnv ? /* @__PURE__ */ ((origin2, isMSIE) => (url) => {
|
|
81780
|
+
url = new URL(url, platform.origin);
|
|
81781
|
+
return origin2.protocol === url.protocol && origin2.host === url.host && (isMSIE || origin2.port === url.port);
|
|
81782
|
+
})(
|
|
81783
|
+
new URL(platform.origin),
|
|
81784
|
+
platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent)
|
|
81785
|
+
) : () => true;
|
|
81786
|
+
const cookies = platform.hasStandardBrowserEnv ? (
|
|
81787
|
+
// Standard browser envs support document.cookie
|
|
81788
|
+
{
|
|
81789
|
+
write(name, value2, expires, path, domain, secure) {
|
|
81790
|
+
const cookie = [name + "=" + encodeURIComponent(value2)];
|
|
81791
|
+
utils$1.isNumber(expires) && cookie.push("expires=" + new Date(expires).toGMTString());
|
|
81792
|
+
utils$1.isString(path) && cookie.push("path=" + path);
|
|
81793
|
+
utils$1.isString(domain) && cookie.push("domain=" + domain);
|
|
81794
|
+
secure === true && cookie.push("secure");
|
|
81795
|
+
document.cookie = cookie.join("; ");
|
|
81796
|
+
},
|
|
81797
|
+
read(name) {
|
|
81798
|
+
const match2 = document.cookie.match(new RegExp("(^|;\\s*)(" + name + ")=([^;]*)"));
|
|
81799
|
+
return match2 ? decodeURIComponent(match2[3]) : null;
|
|
81800
|
+
},
|
|
81801
|
+
remove(name) {
|
|
81802
|
+
this.write(name, "", Date.now() - 864e5);
|
|
81803
|
+
}
|
|
81804
|
+
}
|
|
81805
|
+
) : (
|
|
81806
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
81807
|
+
{
|
|
81808
|
+
write() {
|
|
81809
|
+
},
|
|
81810
|
+
read() {
|
|
81811
|
+
return null;
|
|
81812
|
+
},
|
|
81813
|
+
remove() {
|
|
81814
|
+
}
|
|
81815
|
+
}
|
|
81816
|
+
);
|
|
81817
|
+
function isAbsoluteURL(url) {
|
|
81818
|
+
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
|
|
81819
|
+
}
|
|
81820
|
+
function combineURLs(baseURL, relativeURL) {
|
|
81821
|
+
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
|
81822
|
+
}
|
|
81823
|
+
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
81824
|
+
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
81825
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
81826
|
+
return combineURLs(baseURL, requestedURL);
|
|
81827
|
+
}
|
|
81828
|
+
return requestedURL;
|
|
81829
|
+
}
|
|
81830
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
|
|
81831
|
+
function mergeConfig$1(config1, config2) {
|
|
81832
|
+
config2 = config2 || {};
|
|
81833
|
+
const config3 = {};
|
|
81834
|
+
function getMergedValue(target, source, prop, caseless) {
|
|
81835
|
+
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
81836
|
+
return utils$1.merge.call({ caseless }, target, source);
|
|
81837
|
+
} else if (utils$1.isPlainObject(source)) {
|
|
81838
|
+
return utils$1.merge({}, source);
|
|
81839
|
+
} else if (utils$1.isArray(source)) {
|
|
81840
|
+
return source.slice();
|
|
81841
|
+
}
|
|
81842
|
+
return source;
|
|
81843
|
+
}
|
|
81844
|
+
function mergeDeepProperties(a, b, prop, caseless) {
|
|
81845
|
+
if (!utils$1.isUndefined(b)) {
|
|
81846
|
+
return getMergedValue(a, b, prop, caseless);
|
|
81847
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
81848
|
+
return getMergedValue(void 0, a, prop, caseless);
|
|
81849
|
+
}
|
|
81850
|
+
}
|
|
81851
|
+
function valueFromConfig2(a, b) {
|
|
81852
|
+
if (!utils$1.isUndefined(b)) {
|
|
81853
|
+
return getMergedValue(void 0, b);
|
|
81854
|
+
}
|
|
81855
|
+
}
|
|
81856
|
+
function defaultToConfig2(a, b) {
|
|
81857
|
+
if (!utils$1.isUndefined(b)) {
|
|
81858
|
+
return getMergedValue(void 0, b);
|
|
81859
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
81860
|
+
return getMergedValue(void 0, a);
|
|
81861
|
+
}
|
|
81862
|
+
}
|
|
81863
|
+
function mergeDirectKeys(a, b, prop) {
|
|
81864
|
+
if (prop in config2) {
|
|
81865
|
+
return getMergedValue(a, b);
|
|
81866
|
+
} else if (prop in config1) {
|
|
81867
|
+
return getMergedValue(void 0, a);
|
|
81868
|
+
}
|
|
81869
|
+
}
|
|
81870
|
+
const mergeMap = {
|
|
81871
|
+
url: valueFromConfig2,
|
|
81872
|
+
method: valueFromConfig2,
|
|
81873
|
+
data: valueFromConfig2,
|
|
81874
|
+
baseURL: defaultToConfig2,
|
|
81875
|
+
transformRequest: defaultToConfig2,
|
|
81876
|
+
transformResponse: defaultToConfig2,
|
|
81877
|
+
paramsSerializer: defaultToConfig2,
|
|
81878
|
+
timeout: defaultToConfig2,
|
|
81879
|
+
timeoutMessage: defaultToConfig2,
|
|
81880
|
+
withCredentials: defaultToConfig2,
|
|
81881
|
+
withXSRFToken: defaultToConfig2,
|
|
81882
|
+
adapter: defaultToConfig2,
|
|
81883
|
+
responseType: defaultToConfig2,
|
|
81884
|
+
xsrfCookieName: defaultToConfig2,
|
|
81885
|
+
xsrfHeaderName: defaultToConfig2,
|
|
81886
|
+
onUploadProgress: defaultToConfig2,
|
|
81887
|
+
onDownloadProgress: defaultToConfig2,
|
|
81888
|
+
decompress: defaultToConfig2,
|
|
81889
|
+
maxContentLength: defaultToConfig2,
|
|
81890
|
+
maxBodyLength: defaultToConfig2,
|
|
81891
|
+
beforeRedirect: defaultToConfig2,
|
|
81892
|
+
transport: defaultToConfig2,
|
|
81893
|
+
httpAgent: defaultToConfig2,
|
|
81894
|
+
httpsAgent: defaultToConfig2,
|
|
81895
|
+
cancelToken: defaultToConfig2,
|
|
81896
|
+
socketPath: defaultToConfig2,
|
|
81897
|
+
responseEncoding: defaultToConfig2,
|
|
81898
|
+
validateStatus: mergeDirectKeys,
|
|
81899
|
+
headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
|
|
81900
|
+
};
|
|
81901
|
+
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
81902
|
+
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
|
81903
|
+
const configValue = merge2(config1[prop], config2[prop], prop);
|
|
81904
|
+
utils$1.isUndefined(configValue) && merge2 !== mergeDirectKeys || (config3[prop] = configValue);
|
|
81905
|
+
});
|
|
81906
|
+
return config3;
|
|
81907
|
+
}
|
|
81908
|
+
const resolveConfig = (config2) => {
|
|
81909
|
+
const newConfig = mergeConfig$1({}, config2);
|
|
81910
|
+
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
81911
|
+
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
81912
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config2.params, config2.paramsSerializer);
|
|
81913
|
+
if (auth) {
|
|
81914
|
+
headers.set(
|
|
81915
|
+
"Authorization",
|
|
81916
|
+
"Basic " + btoa((auth.username || "") + ":" + (auth.password ? unescape(encodeURIComponent(auth.password)) : ""))
|
|
81917
|
+
);
|
|
81918
|
+
}
|
|
81919
|
+
let contentType;
|
|
81920
|
+
if (utils$1.isFormData(data)) {
|
|
81921
|
+
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
81922
|
+
headers.setContentType(void 0);
|
|
81923
|
+
} else if ((contentType = headers.getContentType()) !== false) {
|
|
81924
|
+
const [type, ...tokens] = contentType ? contentType.split(";").map((token2) => token2.trim()).filter(Boolean) : [];
|
|
81925
|
+
headers.setContentType([type || "multipart/form-data", ...tokens].join("; "));
|
|
81926
|
+
}
|
|
81927
|
+
}
|
|
81928
|
+
if (platform.hasStandardBrowserEnv) {
|
|
81929
|
+
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig));
|
|
81930
|
+
if (withXSRFToken || withXSRFToken !== false && isURLSameOrigin(newConfig.url)) {
|
|
81931
|
+
const xsrfValue = xsrfHeaderName && xsrfCookieName && cookies.read(xsrfCookieName);
|
|
81932
|
+
if (xsrfValue) {
|
|
81933
|
+
headers.set(xsrfHeaderName, xsrfValue);
|
|
81934
|
+
}
|
|
81935
|
+
}
|
|
81936
|
+
}
|
|
81937
|
+
return newConfig;
|
|
81938
|
+
};
|
|
81939
|
+
const isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
|
|
81940
|
+
const xhrAdapter = isXHRAdapterSupported && function(config2) {
|
|
81941
|
+
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
81942
|
+
const _config2 = resolveConfig(config2);
|
|
81943
|
+
let requestData = _config2.data;
|
|
81944
|
+
const requestHeaders = AxiosHeaders$1.from(_config2.headers).normalize();
|
|
81945
|
+
let { responseType, onUploadProgress, onDownloadProgress } = _config2;
|
|
81946
|
+
let onCanceled;
|
|
81947
|
+
let uploadThrottled, downloadThrottled;
|
|
81948
|
+
let flushUpload, flushDownload;
|
|
81949
|
+
function done() {
|
|
81950
|
+
flushUpload && flushUpload();
|
|
81951
|
+
flushDownload && flushDownload();
|
|
81952
|
+
_config2.cancelToken && _config2.cancelToken.unsubscribe(onCanceled);
|
|
81953
|
+
_config2.signal && _config2.signal.removeEventListener("abort", onCanceled);
|
|
81954
|
+
}
|
|
81955
|
+
let request = new XMLHttpRequest();
|
|
81956
|
+
request.open(_config2.method.toUpperCase(), _config2.url, true);
|
|
81957
|
+
request.timeout = _config2.timeout;
|
|
81958
|
+
function onloadend() {
|
|
81959
|
+
if (!request) {
|
|
81960
|
+
return;
|
|
81961
|
+
}
|
|
81962
|
+
const responseHeaders = AxiosHeaders$1.from(
|
|
81963
|
+
"getAllResponseHeaders" in request && request.getAllResponseHeaders()
|
|
81964
|
+
);
|
|
81965
|
+
const responseData = !responseType || responseType === "text" || responseType === "json" ? request.responseText : request.response;
|
|
81966
|
+
const response = {
|
|
81967
|
+
data: responseData,
|
|
81968
|
+
status: request.status,
|
|
81969
|
+
statusText: request.statusText,
|
|
81970
|
+
headers: responseHeaders,
|
|
81971
|
+
config: config2,
|
|
81972
|
+
request
|
|
81973
|
+
};
|
|
81974
|
+
settle(function _resolve(value2) {
|
|
81975
|
+
resolve(value2);
|
|
81976
|
+
done();
|
|
81977
|
+
}, function _reject(err) {
|
|
81978
|
+
reject(err);
|
|
81979
|
+
done();
|
|
81980
|
+
}, response);
|
|
81981
|
+
request = null;
|
|
81982
|
+
}
|
|
81983
|
+
if ("onloadend" in request) {
|
|
81984
|
+
request.onloadend = onloadend;
|
|
81985
|
+
} else {
|
|
81986
|
+
request.onreadystatechange = function handleLoad() {
|
|
81987
|
+
if (!request || request.readyState !== 4) {
|
|
81988
|
+
return;
|
|
81989
|
+
}
|
|
81990
|
+
if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf("file:") === 0)) {
|
|
81991
|
+
return;
|
|
81992
|
+
}
|
|
81993
|
+
setTimeout(onloadend);
|
|
81994
|
+
};
|
|
81995
|
+
}
|
|
81996
|
+
request.onabort = function handleAbort() {
|
|
81997
|
+
if (!request) {
|
|
81998
|
+
return;
|
|
81999
|
+
}
|
|
82000
|
+
reject(new AxiosError$1("Request aborted", AxiosError$1.ECONNABORTED, config2, request));
|
|
82001
|
+
request = null;
|
|
82002
|
+
};
|
|
82003
|
+
request.onerror = function handleError() {
|
|
82004
|
+
reject(new AxiosError$1("Network Error", AxiosError$1.ERR_NETWORK, config2, request));
|
|
82005
|
+
request = null;
|
|
82006
|
+
};
|
|
82007
|
+
request.ontimeout = function handleTimeout() {
|
|
82008
|
+
let timeoutErrorMessage = _config2.timeout ? "timeout of " + _config2.timeout + "ms exceeded" : "timeout exceeded";
|
|
82009
|
+
const transitional2 = _config2.transitional || transitionalDefaults;
|
|
82010
|
+
if (_config2.timeoutErrorMessage) {
|
|
82011
|
+
timeoutErrorMessage = _config2.timeoutErrorMessage;
|
|
82012
|
+
}
|
|
82013
|
+
reject(new AxiosError$1(
|
|
82014
|
+
timeoutErrorMessage,
|
|
82015
|
+
transitional2.clarifyTimeoutError ? AxiosError$1.ETIMEDOUT : AxiosError$1.ECONNABORTED,
|
|
82016
|
+
config2,
|
|
82017
|
+
request
|
|
82018
|
+
));
|
|
82019
|
+
request = null;
|
|
82020
|
+
};
|
|
82021
|
+
requestData === void 0 && requestHeaders.setContentType(null);
|
|
82022
|
+
if ("setRequestHeader" in request) {
|
|
82023
|
+
utils$1.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
|
|
82024
|
+
request.setRequestHeader(key, val);
|
|
82025
|
+
});
|
|
82026
|
+
}
|
|
82027
|
+
if (!utils$1.isUndefined(_config2.withCredentials)) {
|
|
82028
|
+
request.withCredentials = !!_config2.withCredentials;
|
|
82029
|
+
}
|
|
82030
|
+
if (responseType && responseType !== "json") {
|
|
82031
|
+
request.responseType = _config2.responseType;
|
|
82032
|
+
}
|
|
82033
|
+
if (onDownloadProgress) {
|
|
82034
|
+
[downloadThrottled, flushDownload] = progressEventReducer(onDownloadProgress, true);
|
|
82035
|
+
request.addEventListener("progress", downloadThrottled);
|
|
82036
|
+
}
|
|
82037
|
+
if (onUploadProgress && request.upload) {
|
|
82038
|
+
[uploadThrottled, flushUpload] = progressEventReducer(onUploadProgress);
|
|
82039
|
+
request.upload.addEventListener("progress", uploadThrottled);
|
|
82040
|
+
request.upload.addEventListener("loadend", flushUpload);
|
|
82041
|
+
}
|
|
82042
|
+
if (_config2.cancelToken || _config2.signal) {
|
|
82043
|
+
onCanceled = (cancel) => {
|
|
82044
|
+
if (!request) {
|
|
82045
|
+
return;
|
|
82046
|
+
}
|
|
82047
|
+
reject(!cancel || cancel.type ? new CanceledError$1(null, config2, request) : cancel);
|
|
82048
|
+
request.abort();
|
|
82049
|
+
request = null;
|
|
82050
|
+
};
|
|
82051
|
+
_config2.cancelToken && _config2.cancelToken.subscribe(onCanceled);
|
|
82052
|
+
if (_config2.signal) {
|
|
82053
|
+
_config2.signal.aborted ? onCanceled() : _config2.signal.addEventListener("abort", onCanceled);
|
|
82054
|
+
}
|
|
82055
|
+
}
|
|
82056
|
+
const protocol = parseProtocol(_config2.url);
|
|
82057
|
+
if (protocol && platform.protocols.indexOf(protocol) === -1) {
|
|
82058
|
+
reject(new AxiosError$1("Unsupported protocol " + protocol + ":", AxiosError$1.ERR_BAD_REQUEST, config2));
|
|
82059
|
+
return;
|
|
82060
|
+
}
|
|
82061
|
+
request.send(requestData || null);
|
|
82062
|
+
});
|
|
82063
|
+
};
|
|
82064
|
+
const composeSignals = (signals, timeout3) => {
|
|
82065
|
+
const { length: length2 } = signals = signals ? signals.filter(Boolean) : [];
|
|
82066
|
+
if (timeout3 || length2) {
|
|
82067
|
+
let controller = new AbortController();
|
|
82068
|
+
let aborted;
|
|
82069
|
+
const onabort = function(reason) {
|
|
82070
|
+
if (!aborted) {
|
|
82071
|
+
aborted = true;
|
|
82072
|
+
unsubscribe();
|
|
82073
|
+
const err = reason instanceof Error ? reason : this.reason;
|
|
82074
|
+
controller.abort(err instanceof AxiosError$1 ? err : new CanceledError$1(err instanceof Error ? err.message : err));
|
|
82075
|
+
}
|
|
82076
|
+
};
|
|
82077
|
+
let timer2 = timeout3 && setTimeout(() => {
|
|
82078
|
+
timer2 = null;
|
|
82079
|
+
onabort(new AxiosError$1(`timeout ${timeout3} of ms exceeded`, AxiosError$1.ETIMEDOUT));
|
|
82080
|
+
}, timeout3);
|
|
82081
|
+
const unsubscribe = () => {
|
|
82082
|
+
if (signals) {
|
|
82083
|
+
timer2 && clearTimeout(timer2);
|
|
82084
|
+
timer2 = null;
|
|
82085
|
+
signals.forEach((signal2) => {
|
|
82086
|
+
signal2.unsubscribe ? signal2.unsubscribe(onabort) : signal2.removeEventListener("abort", onabort);
|
|
82087
|
+
});
|
|
82088
|
+
signals = null;
|
|
82089
|
+
}
|
|
82090
|
+
};
|
|
82091
|
+
signals.forEach((signal2) => signal2.addEventListener("abort", onabort));
|
|
82092
|
+
const { signal } = controller;
|
|
82093
|
+
signal.unsubscribe = () => utils$1.asap(unsubscribe);
|
|
82094
|
+
return signal;
|
|
82095
|
+
}
|
|
82096
|
+
};
|
|
82097
|
+
const streamChunk = function* (chunk, chunkSize) {
|
|
82098
|
+
let len = chunk.byteLength;
|
|
82099
|
+
if (len < chunkSize) {
|
|
82100
|
+
yield chunk;
|
|
82101
|
+
return;
|
|
82102
|
+
}
|
|
82103
|
+
let pos = 0;
|
|
82104
|
+
let end2;
|
|
82105
|
+
while (pos < len) {
|
|
82106
|
+
end2 = pos + chunkSize;
|
|
82107
|
+
yield chunk.slice(pos, end2);
|
|
82108
|
+
pos = end2;
|
|
82109
|
+
}
|
|
82110
|
+
};
|
|
82111
|
+
const readBytes = async function* (iterable, chunkSize) {
|
|
82112
|
+
for await (const chunk of readStream(iterable)) {
|
|
82113
|
+
yield* streamChunk(chunk, chunkSize);
|
|
82114
|
+
}
|
|
82115
|
+
};
|
|
82116
|
+
const readStream = async function* (stream) {
|
|
82117
|
+
if (stream[Symbol.asyncIterator]) {
|
|
82118
|
+
yield* stream;
|
|
82119
|
+
return;
|
|
82120
|
+
}
|
|
82121
|
+
const reader = stream.getReader();
|
|
82122
|
+
try {
|
|
82123
|
+
for (; ; ) {
|
|
82124
|
+
const { done, value: value2 } = await reader.read();
|
|
82125
|
+
if (done) {
|
|
82126
|
+
break;
|
|
82127
|
+
}
|
|
82128
|
+
yield value2;
|
|
82129
|
+
}
|
|
82130
|
+
} finally {
|
|
82131
|
+
await reader.cancel();
|
|
82132
|
+
}
|
|
82133
|
+
};
|
|
82134
|
+
const trackStream = (stream, chunkSize, onProgress, onFinish) => {
|
|
82135
|
+
const iterator2 = readBytes(stream, chunkSize);
|
|
82136
|
+
let bytes = 0;
|
|
82137
|
+
let done;
|
|
82138
|
+
let _onFinish = (e) => {
|
|
82139
|
+
if (!done) {
|
|
82140
|
+
done = true;
|
|
82141
|
+
onFinish && onFinish(e);
|
|
82142
|
+
}
|
|
82143
|
+
};
|
|
82144
|
+
return new ReadableStream({
|
|
82145
|
+
async pull(controller) {
|
|
82146
|
+
try {
|
|
82147
|
+
const { done: done2, value: value2 } = await iterator2.next();
|
|
82148
|
+
if (done2) {
|
|
82149
|
+
_onFinish();
|
|
82150
|
+
controller.close();
|
|
82151
|
+
return;
|
|
82152
|
+
}
|
|
82153
|
+
let len = value2.byteLength;
|
|
82154
|
+
if (onProgress) {
|
|
82155
|
+
let loadedBytes = bytes += len;
|
|
82156
|
+
onProgress(loadedBytes);
|
|
82157
|
+
}
|
|
82158
|
+
controller.enqueue(new Uint8Array(value2));
|
|
82159
|
+
} catch (err) {
|
|
82160
|
+
_onFinish(err);
|
|
82161
|
+
throw err;
|
|
82162
|
+
}
|
|
82163
|
+
},
|
|
82164
|
+
cancel(reason) {
|
|
82165
|
+
_onFinish(reason);
|
|
82166
|
+
return iterator2.return();
|
|
82167
|
+
}
|
|
82168
|
+
}, {
|
|
82169
|
+
highWaterMark: 2
|
|
82170
|
+
});
|
|
82171
|
+
};
|
|
82172
|
+
const isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
|
|
82173
|
+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
|
|
82174
|
+
const encodeText = isFetchSupported && (typeof TextEncoder === "function" ? /* @__PURE__ */ ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : async (str) => new Uint8Array(await new Response(str).arrayBuffer()));
|
|
82175
|
+
const test = (fn2, ...args) => {
|
|
82176
|
+
try {
|
|
82177
|
+
return !!fn2(...args);
|
|
82178
|
+
} catch (e) {
|
|
82179
|
+
return false;
|
|
82180
|
+
}
|
|
82181
|
+
};
|
|
82182
|
+
const supportsRequestStream = isReadableStreamSupported && test(() => {
|
|
82183
|
+
let duplexAccessed = false;
|
|
82184
|
+
const hasContentType = new Request(platform.origin, {
|
|
82185
|
+
body: new ReadableStream(),
|
|
82186
|
+
method: "POST",
|
|
82187
|
+
get duplex() {
|
|
82188
|
+
duplexAccessed = true;
|
|
82189
|
+
return "half";
|
|
82190
|
+
}
|
|
82191
|
+
}).headers.has("Content-Type");
|
|
82192
|
+
return duplexAccessed && !hasContentType;
|
|
82193
|
+
});
|
|
82194
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
82195
|
+
const supportsResponseStream = isReadableStreamSupported && test(() => utils$1.isReadableStream(new Response("").body));
|
|
82196
|
+
const resolvers = {
|
|
82197
|
+
stream: supportsResponseStream && ((res) => res.body)
|
|
82198
|
+
};
|
|
82199
|
+
isFetchSupported && ((res) => {
|
|
82200
|
+
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((type) => {
|
|
82201
|
+
!resolvers[type] && (resolvers[type] = utils$1.isFunction(res[type]) ? (res2) => res2[type]() : (_2, config2) => {
|
|
82202
|
+
throw new AxiosError$1(`Response type '${type}' is not supported`, AxiosError$1.ERR_NOT_SUPPORT, config2);
|
|
82203
|
+
});
|
|
82204
|
+
});
|
|
82205
|
+
})(new Response());
|
|
82206
|
+
const getBodyLength = async (body2) => {
|
|
82207
|
+
if (body2 == null) {
|
|
82208
|
+
return 0;
|
|
82209
|
+
}
|
|
82210
|
+
if (utils$1.isBlob(body2)) {
|
|
82211
|
+
return body2.size;
|
|
82212
|
+
}
|
|
82213
|
+
if (utils$1.isSpecCompliantForm(body2)) {
|
|
82214
|
+
const _request = new Request(platform.origin, {
|
|
82215
|
+
method: "POST",
|
|
82216
|
+
body: body2
|
|
82217
|
+
});
|
|
82218
|
+
return (await _request.arrayBuffer()).byteLength;
|
|
82219
|
+
}
|
|
82220
|
+
if (utils$1.isArrayBufferView(body2) || utils$1.isArrayBuffer(body2)) {
|
|
82221
|
+
return body2.byteLength;
|
|
82222
|
+
}
|
|
82223
|
+
if (utils$1.isURLSearchParams(body2)) {
|
|
82224
|
+
body2 = body2 + "";
|
|
82225
|
+
}
|
|
82226
|
+
if (utils$1.isString(body2)) {
|
|
82227
|
+
return (await encodeText(body2)).byteLength;
|
|
82228
|
+
}
|
|
82229
|
+
};
|
|
82230
|
+
const resolveBodyLength = async (headers, body2) => {
|
|
82231
|
+
const length2 = utils$1.toFiniteNumber(headers.getContentLength());
|
|
82232
|
+
return length2 == null ? getBodyLength(body2) : length2;
|
|
82233
|
+
};
|
|
82234
|
+
const fetchAdapter = isFetchSupported && (async (config2) => {
|
|
82235
|
+
let {
|
|
82236
|
+
url,
|
|
82237
|
+
method,
|
|
82238
|
+
data,
|
|
82239
|
+
signal,
|
|
82240
|
+
cancelToken,
|
|
82241
|
+
timeout: timeout3,
|
|
82242
|
+
onDownloadProgress,
|
|
82243
|
+
onUploadProgress,
|
|
82244
|
+
responseType,
|
|
82245
|
+
headers,
|
|
82246
|
+
withCredentials = "same-origin",
|
|
82247
|
+
fetchOptions: fetchOptions2
|
|
82248
|
+
} = resolveConfig(config2);
|
|
82249
|
+
responseType = responseType ? (responseType + "").toLowerCase() : "text";
|
|
82250
|
+
let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout3);
|
|
82251
|
+
let request;
|
|
82252
|
+
const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
|
|
82253
|
+
composedSignal.unsubscribe();
|
|
82254
|
+
});
|
|
82255
|
+
let requestContentLength;
|
|
82256
|
+
try {
|
|
82257
|
+
if (onUploadProgress && supportsRequestStream && method !== "get" && method !== "head" && (requestContentLength = await resolveBodyLength(headers, data)) !== 0) {
|
|
82258
|
+
let _request = new Request(url, {
|
|
82259
|
+
method: "POST",
|
|
82260
|
+
body: data,
|
|
82261
|
+
duplex: "half"
|
|
82262
|
+
});
|
|
82263
|
+
let contentTypeHeader;
|
|
82264
|
+
if (utils$1.isFormData(data) && (contentTypeHeader = _request.headers.get("content-type"))) {
|
|
82265
|
+
headers.setContentType(contentTypeHeader);
|
|
82266
|
+
}
|
|
82267
|
+
if (_request.body) {
|
|
82268
|
+
const [onProgress, flush] = progressEventDecorator(
|
|
82269
|
+
requestContentLength,
|
|
82270
|
+
progressEventReducer(asyncDecorator(onUploadProgress))
|
|
82271
|
+
);
|
|
82272
|
+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
|
82273
|
+
}
|
|
82274
|
+
}
|
|
82275
|
+
if (!utils$1.isString(withCredentials)) {
|
|
82276
|
+
withCredentials = withCredentials ? "include" : "omit";
|
|
82277
|
+
}
|
|
82278
|
+
const isCredentialsSupported = "credentials" in Request.prototype;
|
|
82279
|
+
request = new Request(url, {
|
|
82280
|
+
...fetchOptions2,
|
|
82281
|
+
signal: composedSignal,
|
|
82282
|
+
method: method.toUpperCase(),
|
|
82283
|
+
headers: headers.normalize().toJSON(),
|
|
82284
|
+
body: data,
|
|
82285
|
+
duplex: "half",
|
|
82286
|
+
credentials: isCredentialsSupported ? withCredentials : void 0
|
|
82287
|
+
});
|
|
82288
|
+
let response = await fetch(request, fetchOptions2);
|
|
82289
|
+
const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
|
|
82290
|
+
if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
|
|
82291
|
+
const options = {};
|
|
82292
|
+
["status", "statusText", "headers"].forEach((prop) => {
|
|
82293
|
+
options[prop] = response[prop];
|
|
82294
|
+
});
|
|
82295
|
+
const responseContentLength = utils$1.toFiniteNumber(response.headers.get("content-length"));
|
|
82296
|
+
const [onProgress, flush] = onDownloadProgress && progressEventDecorator(
|
|
82297
|
+
responseContentLength,
|
|
82298
|
+
progressEventReducer(asyncDecorator(onDownloadProgress), true)
|
|
82299
|
+
) || [];
|
|
82300
|
+
response = new Response(
|
|
82301
|
+
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
|
|
82302
|
+
flush && flush();
|
|
82303
|
+
unsubscribe && unsubscribe();
|
|
82304
|
+
}),
|
|
82305
|
+
options
|
|
82306
|
+
);
|
|
82307
|
+
}
|
|
82308
|
+
responseType = responseType || "text";
|
|
82309
|
+
let responseData = await resolvers[utils$1.findKey(resolvers, responseType) || "text"](response, config2);
|
|
82310
|
+
!isStreamResponse && unsubscribe && unsubscribe();
|
|
82311
|
+
return await new Promise((resolve, reject) => {
|
|
82312
|
+
settle(resolve, reject, {
|
|
82313
|
+
data: responseData,
|
|
82314
|
+
headers: AxiosHeaders$1.from(response.headers),
|
|
82315
|
+
status: response.status,
|
|
82316
|
+
statusText: response.statusText,
|
|
82317
|
+
config: config2,
|
|
82318
|
+
request
|
|
82319
|
+
});
|
|
82320
|
+
});
|
|
82321
|
+
} catch (err) {
|
|
82322
|
+
unsubscribe && unsubscribe();
|
|
82323
|
+
if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
|
|
82324
|
+
throw Object.assign(
|
|
82325
|
+
new AxiosError$1("Network Error", AxiosError$1.ERR_NETWORK, config2, request),
|
|
82326
|
+
{
|
|
82327
|
+
cause: err.cause || err
|
|
82328
|
+
}
|
|
82329
|
+
);
|
|
82330
|
+
}
|
|
82331
|
+
throw AxiosError$1.from(err, err && err.code, config2, request);
|
|
82332
|
+
}
|
|
82333
|
+
});
|
|
82334
|
+
const knownAdapters = {
|
|
82335
|
+
http: httpAdapter,
|
|
82336
|
+
xhr: xhrAdapter,
|
|
82337
|
+
fetch: fetchAdapter
|
|
82338
|
+
};
|
|
82339
|
+
utils$1.forEach(knownAdapters, (fn2, value2) => {
|
|
82340
|
+
if (fn2) {
|
|
82341
|
+
try {
|
|
82342
|
+
Object.defineProperty(fn2, "name", { value: value2 });
|
|
82343
|
+
} catch (e) {
|
|
82344
|
+
}
|
|
82345
|
+
Object.defineProperty(fn2, "adapterName", { value: value2 });
|
|
82346
|
+
}
|
|
82347
|
+
});
|
|
82348
|
+
const renderReason = (reason) => `- ${reason}`;
|
|
82349
|
+
const isResolvedHandle = (adapter) => utils$1.isFunction(adapter) || adapter === null || adapter === false;
|
|
82350
|
+
const adapters = {
|
|
82351
|
+
getAdapter: (adapters2) => {
|
|
82352
|
+
adapters2 = utils$1.isArray(adapters2) ? adapters2 : [adapters2];
|
|
82353
|
+
const { length: length2 } = adapters2;
|
|
82354
|
+
let nameOrAdapter;
|
|
82355
|
+
let adapter;
|
|
82356
|
+
const rejectedReasons = {};
|
|
82357
|
+
for (let i = 0; i < length2; i++) {
|
|
82358
|
+
nameOrAdapter = adapters2[i];
|
|
82359
|
+
let id2;
|
|
82360
|
+
adapter = nameOrAdapter;
|
|
82361
|
+
if (!isResolvedHandle(nameOrAdapter)) {
|
|
82362
|
+
adapter = knownAdapters[(id2 = String(nameOrAdapter)).toLowerCase()];
|
|
82363
|
+
if (adapter === void 0) {
|
|
82364
|
+
throw new AxiosError$1(`Unknown adapter '${id2}'`);
|
|
82365
|
+
}
|
|
82366
|
+
}
|
|
82367
|
+
if (adapter) {
|
|
82368
|
+
break;
|
|
82369
|
+
}
|
|
82370
|
+
rejectedReasons[id2 || "#" + i] = adapter;
|
|
82371
|
+
}
|
|
82372
|
+
if (!adapter) {
|
|
82373
|
+
const reasons = Object.entries(rejectedReasons).map(
|
|
82374
|
+
([id2, state]) => `adapter ${id2} ` + (state === false ? "is not supported by the environment" : "is not available in the build")
|
|
82375
|
+
);
|
|
82376
|
+
let s2 = length2 ? reasons.length > 1 ? "since :\n" + reasons.map(renderReason).join("\n") : " " + renderReason(reasons[0]) : "as no adapter specified";
|
|
82377
|
+
throw new AxiosError$1(
|
|
82378
|
+
`There is no suitable adapter to dispatch the request ` + s2,
|
|
82379
|
+
"ERR_NOT_SUPPORT"
|
|
82380
|
+
);
|
|
82381
|
+
}
|
|
82382
|
+
return adapter;
|
|
82383
|
+
},
|
|
82384
|
+
adapters: knownAdapters
|
|
82385
|
+
};
|
|
82386
|
+
function throwIfCancellationRequested(config2) {
|
|
82387
|
+
if (config2.cancelToken) {
|
|
82388
|
+
config2.cancelToken.throwIfRequested();
|
|
82389
|
+
}
|
|
82390
|
+
if (config2.signal && config2.signal.aborted) {
|
|
82391
|
+
throw new CanceledError$1(null, config2);
|
|
82392
|
+
}
|
|
82393
|
+
}
|
|
82394
|
+
function dispatchRequest(config2) {
|
|
82395
|
+
throwIfCancellationRequested(config2);
|
|
82396
|
+
config2.headers = AxiosHeaders$1.from(config2.headers);
|
|
82397
|
+
config2.data = transformData.call(
|
|
82398
|
+
config2,
|
|
82399
|
+
config2.transformRequest
|
|
82400
|
+
);
|
|
82401
|
+
if (["post", "put", "patch"].indexOf(config2.method) !== -1) {
|
|
82402
|
+
config2.headers.setContentType("application/x-www-form-urlencoded", false);
|
|
82403
|
+
}
|
|
82404
|
+
const adapter = adapters.getAdapter(config2.adapter || defaults.adapter);
|
|
82405
|
+
return adapter(config2).then(function onAdapterResolution(response) {
|
|
82406
|
+
throwIfCancellationRequested(config2);
|
|
82407
|
+
response.data = transformData.call(
|
|
82408
|
+
config2,
|
|
82409
|
+
config2.transformResponse,
|
|
82410
|
+
response
|
|
82411
|
+
);
|
|
82412
|
+
response.headers = AxiosHeaders$1.from(response.headers);
|
|
82413
|
+
return response;
|
|
82414
|
+
}, function onAdapterRejection(reason) {
|
|
82415
|
+
if (!isCancel$1(reason)) {
|
|
82416
|
+
throwIfCancellationRequested(config2);
|
|
82417
|
+
if (reason && reason.response) {
|
|
82418
|
+
reason.response.data = transformData.call(
|
|
82419
|
+
config2,
|
|
82420
|
+
config2.transformResponse,
|
|
82421
|
+
reason.response
|
|
82422
|
+
);
|
|
82423
|
+
reason.response.headers = AxiosHeaders$1.from(reason.response.headers);
|
|
82424
|
+
}
|
|
82425
|
+
}
|
|
82426
|
+
return Promise.reject(reason);
|
|
82427
|
+
});
|
|
82428
|
+
}
|
|
82429
|
+
const VERSION$1 = "1.10.0";
|
|
82430
|
+
const validators$1 = {};
|
|
82431
|
+
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
82432
|
+
validators$1[type] = function validator2(thing) {
|
|
82433
|
+
return typeof thing === type || "a" + (i < 1 ? "n " : " ") + type;
|
|
82434
|
+
};
|
|
82435
|
+
});
|
|
82436
|
+
const deprecatedWarnings = {};
|
|
82437
|
+
validators$1.transitional = function transitional(validator2, version, message) {
|
|
82438
|
+
function formatMessage(opt, desc) {
|
|
82439
|
+
return "[Axios v" + VERSION$1 + "] Transitional option '" + opt + "'" + desc + (message ? ". " + message : "");
|
|
82440
|
+
}
|
|
82441
|
+
return (value2, opt, opts) => {
|
|
82442
|
+
if (validator2 === false) {
|
|
82443
|
+
throw new AxiosError$1(
|
|
82444
|
+
formatMessage(opt, " has been removed" + (version ? " in " + version : "")),
|
|
82445
|
+
AxiosError$1.ERR_DEPRECATED
|
|
82446
|
+
);
|
|
82447
|
+
}
|
|
82448
|
+
if (version && !deprecatedWarnings[opt]) {
|
|
82449
|
+
deprecatedWarnings[opt] = true;
|
|
82450
|
+
console.warn(
|
|
82451
|
+
formatMessage(
|
|
82452
|
+
opt,
|
|
82453
|
+
" has been deprecated since v" + version + " and will be removed in the near future"
|
|
82454
|
+
)
|
|
82455
|
+
);
|
|
82456
|
+
}
|
|
82457
|
+
return validator2 ? validator2(value2, opt, opts) : true;
|
|
82458
|
+
};
|
|
82459
|
+
};
|
|
82460
|
+
validators$1.spelling = function spelling(correctSpelling) {
|
|
82461
|
+
return (value2, opt) => {
|
|
82462
|
+
console.warn(`${opt} is likely a misspelling of ${correctSpelling}`);
|
|
82463
|
+
return true;
|
|
82464
|
+
};
|
|
82465
|
+
};
|
|
82466
|
+
function assertOptions(options, schema, allowUnknown) {
|
|
82467
|
+
if (typeof options !== "object") {
|
|
82468
|
+
throw new AxiosError$1("options must be an object", AxiosError$1.ERR_BAD_OPTION_VALUE);
|
|
82469
|
+
}
|
|
82470
|
+
const keys = Object.keys(options);
|
|
82471
|
+
let i = keys.length;
|
|
82472
|
+
while (i-- > 0) {
|
|
82473
|
+
const opt = keys[i];
|
|
82474
|
+
const validator2 = schema[opt];
|
|
82475
|
+
if (validator2) {
|
|
82476
|
+
const value2 = options[opt];
|
|
82477
|
+
const result = value2 === void 0 || validator2(value2, opt, options);
|
|
82478
|
+
if (result !== true) {
|
|
82479
|
+
throw new AxiosError$1("option " + opt + " must be " + result, AxiosError$1.ERR_BAD_OPTION_VALUE);
|
|
82480
|
+
}
|
|
82481
|
+
continue;
|
|
82482
|
+
}
|
|
82483
|
+
if (allowUnknown !== true) {
|
|
82484
|
+
throw new AxiosError$1("Unknown option " + opt, AxiosError$1.ERR_BAD_OPTION);
|
|
82485
|
+
}
|
|
82486
|
+
}
|
|
82487
|
+
}
|
|
82488
|
+
const validator = {
|
|
82489
|
+
assertOptions,
|
|
82490
|
+
validators: validators$1
|
|
82491
|
+
};
|
|
82492
|
+
const validators = validator.validators;
|
|
82493
|
+
let Axios$1 = class Axios {
|
|
82494
|
+
constructor(instanceConfig) {
|
|
82495
|
+
this.defaults = instanceConfig || {};
|
|
82496
|
+
this.interceptors = {
|
|
82497
|
+
request: new InterceptorManager(),
|
|
82498
|
+
response: new InterceptorManager()
|
|
82499
|
+
};
|
|
82500
|
+
}
|
|
82501
|
+
/**
|
|
82502
|
+
* Dispatch a request
|
|
82503
|
+
*
|
|
82504
|
+
* @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
|
|
82505
|
+
* @param {?Object} config
|
|
82506
|
+
*
|
|
82507
|
+
* @returns {Promise} The Promise to be fulfilled
|
|
82508
|
+
*/
|
|
82509
|
+
async request(configOrUrl, config2) {
|
|
82510
|
+
try {
|
|
82511
|
+
return await this._request(configOrUrl, config2);
|
|
82512
|
+
} catch (err) {
|
|
82513
|
+
if (err instanceof Error) {
|
|
82514
|
+
let dummy = {};
|
|
82515
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error();
|
|
82516
|
+
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : "";
|
|
82517
|
+
try {
|
|
82518
|
+
if (!err.stack) {
|
|
82519
|
+
err.stack = stack;
|
|
82520
|
+
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ""))) {
|
|
82521
|
+
err.stack += "\n" + stack;
|
|
82522
|
+
}
|
|
82523
|
+
} catch (e) {
|
|
82524
|
+
}
|
|
82525
|
+
}
|
|
82526
|
+
throw err;
|
|
82527
|
+
}
|
|
82528
|
+
}
|
|
82529
|
+
_request(configOrUrl, config2) {
|
|
82530
|
+
if (typeof configOrUrl === "string") {
|
|
82531
|
+
config2 = config2 || {};
|
|
82532
|
+
config2.url = configOrUrl;
|
|
82533
|
+
} else {
|
|
82534
|
+
config2 = configOrUrl || {};
|
|
82535
|
+
}
|
|
82536
|
+
config2 = mergeConfig$1(this.defaults, config2);
|
|
82537
|
+
const { transitional: transitional2, paramsSerializer, headers } = config2;
|
|
82538
|
+
if (transitional2 !== void 0) {
|
|
82539
|
+
validator.assertOptions(transitional2, {
|
|
82540
|
+
silentJSONParsing: validators.transitional(validators.boolean),
|
|
82541
|
+
forcedJSONParsing: validators.transitional(validators.boolean),
|
|
82542
|
+
clarifyTimeoutError: validators.transitional(validators.boolean)
|
|
82543
|
+
}, false);
|
|
82544
|
+
}
|
|
82545
|
+
if (paramsSerializer != null) {
|
|
82546
|
+
if (utils$1.isFunction(paramsSerializer)) {
|
|
82547
|
+
config2.paramsSerializer = {
|
|
82548
|
+
serialize: paramsSerializer
|
|
82549
|
+
};
|
|
82550
|
+
} else {
|
|
82551
|
+
validator.assertOptions(paramsSerializer, {
|
|
82552
|
+
encode: validators.function,
|
|
82553
|
+
serialize: validators.function
|
|
82554
|
+
}, true);
|
|
82555
|
+
}
|
|
82556
|
+
}
|
|
82557
|
+
if (config2.allowAbsoluteUrls !== void 0) ;
|
|
82558
|
+
else if (this.defaults.allowAbsoluteUrls !== void 0) {
|
|
82559
|
+
config2.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
|
|
82560
|
+
} else {
|
|
82561
|
+
config2.allowAbsoluteUrls = true;
|
|
82562
|
+
}
|
|
82563
|
+
validator.assertOptions(config2, {
|
|
82564
|
+
baseUrl: validators.spelling("baseURL"),
|
|
82565
|
+
withXsrfToken: validators.spelling("withXSRFToken")
|
|
82566
|
+
}, true);
|
|
82567
|
+
config2.method = (config2.method || this.defaults.method || "get").toLowerCase();
|
|
82568
|
+
let contextHeaders = headers && utils$1.merge(
|
|
82569
|
+
headers.common,
|
|
82570
|
+
headers[config2.method]
|
|
82571
|
+
);
|
|
82572
|
+
headers && utils$1.forEach(
|
|
82573
|
+
["delete", "get", "head", "post", "put", "patch", "common"],
|
|
82574
|
+
(method) => {
|
|
82575
|
+
delete headers[method];
|
|
82576
|
+
}
|
|
82577
|
+
);
|
|
82578
|
+
config2.headers = AxiosHeaders$1.concat(contextHeaders, headers);
|
|
82579
|
+
const requestInterceptorChain = [];
|
|
82580
|
+
let synchronousRequestInterceptors = true;
|
|
82581
|
+
this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
|
|
82582
|
+
if (typeof interceptor.runWhen === "function" && interceptor.runWhen(config2) === false) {
|
|
82583
|
+
return;
|
|
82584
|
+
}
|
|
82585
|
+
synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
|
|
82586
|
+
requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
|
|
82587
|
+
});
|
|
82588
|
+
const responseInterceptorChain = [];
|
|
82589
|
+
this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
|
|
82590
|
+
responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
|
|
82591
|
+
});
|
|
82592
|
+
let promise;
|
|
82593
|
+
let i = 0;
|
|
82594
|
+
let len;
|
|
82595
|
+
if (!synchronousRequestInterceptors) {
|
|
82596
|
+
const chain = [dispatchRequest.bind(this), void 0];
|
|
82597
|
+
chain.unshift.apply(chain, requestInterceptorChain);
|
|
82598
|
+
chain.push.apply(chain, responseInterceptorChain);
|
|
82599
|
+
len = chain.length;
|
|
82600
|
+
promise = Promise.resolve(config2);
|
|
82601
|
+
while (i < len) {
|
|
82602
|
+
promise = promise.then(chain[i++], chain[i++]);
|
|
82603
|
+
}
|
|
82604
|
+
return promise;
|
|
82605
|
+
}
|
|
82606
|
+
len = requestInterceptorChain.length;
|
|
82607
|
+
let newConfig = config2;
|
|
82608
|
+
i = 0;
|
|
82609
|
+
while (i < len) {
|
|
82610
|
+
const onFulfilled = requestInterceptorChain[i++];
|
|
82611
|
+
const onRejected = requestInterceptorChain[i++];
|
|
82612
|
+
try {
|
|
82613
|
+
newConfig = onFulfilled(newConfig);
|
|
82614
|
+
} catch (error) {
|
|
82615
|
+
onRejected.call(this, error);
|
|
82616
|
+
break;
|
|
82617
|
+
}
|
|
82618
|
+
}
|
|
82619
|
+
try {
|
|
82620
|
+
promise = dispatchRequest.call(this, newConfig);
|
|
82621
|
+
} catch (error) {
|
|
82622
|
+
return Promise.reject(error);
|
|
82623
|
+
}
|
|
82624
|
+
i = 0;
|
|
82625
|
+
len = responseInterceptorChain.length;
|
|
82626
|
+
while (i < len) {
|
|
82627
|
+
promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);
|
|
82628
|
+
}
|
|
82629
|
+
return promise;
|
|
82630
|
+
}
|
|
82631
|
+
getUri(config2) {
|
|
82632
|
+
config2 = mergeConfig$1(this.defaults, config2);
|
|
82633
|
+
const fullPath = buildFullPath(config2.baseURL, config2.url, config2.allowAbsoluteUrls);
|
|
82634
|
+
return buildURL(fullPath, config2.params, config2.paramsSerializer);
|
|
82635
|
+
}
|
|
82636
|
+
};
|
|
82637
|
+
utils$1.forEach(["delete", "get", "head", "options"], function forEachMethodNoData(method) {
|
|
82638
|
+
Axios$1.prototype[method] = function(url, config2) {
|
|
82639
|
+
return this.request(mergeConfig$1(config2 || {}, {
|
|
82640
|
+
method,
|
|
82641
|
+
url,
|
|
82642
|
+
data: (config2 || {}).data
|
|
82643
|
+
}));
|
|
82644
|
+
};
|
|
82645
|
+
});
|
|
82646
|
+
utils$1.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
|
|
82647
|
+
function generateHTTPMethod(isForm) {
|
|
82648
|
+
return function httpMethod(url, data, config2) {
|
|
82649
|
+
return this.request(mergeConfig$1(config2 || {}, {
|
|
82650
|
+
method,
|
|
82651
|
+
headers: isForm ? {
|
|
82652
|
+
"Content-Type": "multipart/form-data"
|
|
82653
|
+
} : {},
|
|
82654
|
+
url,
|
|
82655
|
+
data
|
|
82656
|
+
}));
|
|
82657
|
+
};
|
|
82658
|
+
}
|
|
82659
|
+
Axios$1.prototype[method] = generateHTTPMethod();
|
|
82660
|
+
Axios$1.prototype[method + "Form"] = generateHTTPMethod(true);
|
|
82661
|
+
});
|
|
82662
|
+
let CancelToken$1 = class CancelToken {
|
|
82663
|
+
constructor(executor) {
|
|
82664
|
+
if (typeof executor !== "function") {
|
|
82665
|
+
throw new TypeError("executor must be a function.");
|
|
82666
|
+
}
|
|
82667
|
+
let resolvePromise;
|
|
82668
|
+
this.promise = new Promise(function promiseExecutor(resolve) {
|
|
82669
|
+
resolvePromise = resolve;
|
|
82670
|
+
});
|
|
82671
|
+
const token2 = this;
|
|
82672
|
+
this.promise.then((cancel) => {
|
|
82673
|
+
if (!token2._listeners) return;
|
|
82674
|
+
let i = token2._listeners.length;
|
|
82675
|
+
while (i-- > 0) {
|
|
82676
|
+
token2._listeners[i](cancel);
|
|
82677
|
+
}
|
|
82678
|
+
token2._listeners = null;
|
|
82679
|
+
});
|
|
82680
|
+
this.promise.then = (onfulfilled) => {
|
|
82681
|
+
let _resolve;
|
|
82682
|
+
const promise = new Promise((resolve) => {
|
|
82683
|
+
token2.subscribe(resolve);
|
|
82684
|
+
_resolve = resolve;
|
|
82685
|
+
}).then(onfulfilled);
|
|
82686
|
+
promise.cancel = function reject() {
|
|
82687
|
+
token2.unsubscribe(_resolve);
|
|
82688
|
+
};
|
|
82689
|
+
return promise;
|
|
82690
|
+
};
|
|
82691
|
+
executor(function cancel(message, config2, request) {
|
|
82692
|
+
if (token2.reason) {
|
|
82693
|
+
return;
|
|
82694
|
+
}
|
|
82695
|
+
token2.reason = new CanceledError$1(message, config2, request);
|
|
82696
|
+
resolvePromise(token2.reason);
|
|
82697
|
+
});
|
|
82698
|
+
}
|
|
82699
|
+
/**
|
|
82700
|
+
* Throws a `CanceledError` if cancellation has been requested.
|
|
82701
|
+
*/
|
|
82702
|
+
throwIfRequested() {
|
|
82703
|
+
if (this.reason) {
|
|
82704
|
+
throw this.reason;
|
|
82705
|
+
}
|
|
82706
|
+
}
|
|
82707
|
+
/**
|
|
82708
|
+
* Subscribe to the cancel signal
|
|
82709
|
+
*/
|
|
82710
|
+
subscribe(listener2) {
|
|
82711
|
+
if (this.reason) {
|
|
82712
|
+
listener2(this.reason);
|
|
82713
|
+
return;
|
|
82714
|
+
}
|
|
82715
|
+
if (this._listeners) {
|
|
82716
|
+
this._listeners.push(listener2);
|
|
82717
|
+
} else {
|
|
82718
|
+
this._listeners = [listener2];
|
|
82719
|
+
}
|
|
82720
|
+
}
|
|
82721
|
+
/**
|
|
82722
|
+
* Unsubscribe from the cancel signal
|
|
82723
|
+
*/
|
|
82724
|
+
unsubscribe(listener2) {
|
|
82725
|
+
if (!this._listeners) {
|
|
82726
|
+
return;
|
|
82727
|
+
}
|
|
82728
|
+
const index = this._listeners.indexOf(listener2);
|
|
82729
|
+
if (index !== -1) {
|
|
82730
|
+
this._listeners.splice(index, 1);
|
|
82731
|
+
}
|
|
82732
|
+
}
|
|
82733
|
+
toAbortSignal() {
|
|
82734
|
+
const controller = new AbortController();
|
|
82735
|
+
const abort = (err) => {
|
|
82736
|
+
controller.abort(err);
|
|
82737
|
+
};
|
|
82738
|
+
this.subscribe(abort);
|
|
82739
|
+
controller.signal.unsubscribe = () => this.unsubscribe(abort);
|
|
82740
|
+
return controller.signal;
|
|
82741
|
+
}
|
|
82742
|
+
/**
|
|
82743
|
+
* Returns an object that contains a new `CancelToken` and a function that, when called,
|
|
82744
|
+
* cancels the `CancelToken`.
|
|
82745
|
+
*/
|
|
82746
|
+
static source() {
|
|
82747
|
+
let cancel;
|
|
82748
|
+
const token2 = new CancelToken(function executor(c) {
|
|
82749
|
+
cancel = c;
|
|
82750
|
+
});
|
|
82751
|
+
return {
|
|
82752
|
+
token: token2,
|
|
82753
|
+
cancel
|
|
82754
|
+
};
|
|
82755
|
+
}
|
|
82756
|
+
};
|
|
82757
|
+
function spread$1(callback) {
|
|
82758
|
+
return function wrap(arr) {
|
|
82759
|
+
return callback.apply(null, arr);
|
|
82760
|
+
};
|
|
82761
|
+
}
|
|
82762
|
+
function isAxiosError$1(payload) {
|
|
82763
|
+
return utils$1.isObject(payload) && payload.isAxiosError === true;
|
|
82764
|
+
}
|
|
82765
|
+
const HttpStatusCode$1 = {
|
|
82766
|
+
Continue: 100,
|
|
82767
|
+
SwitchingProtocols: 101,
|
|
82768
|
+
Processing: 102,
|
|
82769
|
+
EarlyHints: 103,
|
|
82770
|
+
Ok: 200,
|
|
82771
|
+
Created: 201,
|
|
82772
|
+
Accepted: 202,
|
|
82773
|
+
NonAuthoritativeInformation: 203,
|
|
82774
|
+
NoContent: 204,
|
|
82775
|
+
ResetContent: 205,
|
|
82776
|
+
PartialContent: 206,
|
|
82777
|
+
MultiStatus: 207,
|
|
82778
|
+
AlreadyReported: 208,
|
|
82779
|
+
ImUsed: 226,
|
|
82780
|
+
MultipleChoices: 300,
|
|
82781
|
+
MovedPermanently: 301,
|
|
82782
|
+
Found: 302,
|
|
82783
|
+
SeeOther: 303,
|
|
82784
|
+
NotModified: 304,
|
|
82785
|
+
UseProxy: 305,
|
|
82786
|
+
Unused: 306,
|
|
82787
|
+
TemporaryRedirect: 307,
|
|
82788
|
+
PermanentRedirect: 308,
|
|
82789
|
+
BadRequest: 400,
|
|
82790
|
+
Unauthorized: 401,
|
|
82791
|
+
PaymentRequired: 402,
|
|
82792
|
+
Forbidden: 403,
|
|
82793
|
+
NotFound: 404,
|
|
82794
|
+
MethodNotAllowed: 405,
|
|
82795
|
+
NotAcceptable: 406,
|
|
82796
|
+
ProxyAuthenticationRequired: 407,
|
|
82797
|
+
RequestTimeout: 408,
|
|
82798
|
+
Conflict: 409,
|
|
82799
|
+
Gone: 410,
|
|
82800
|
+
LengthRequired: 411,
|
|
82801
|
+
PreconditionFailed: 412,
|
|
82802
|
+
PayloadTooLarge: 413,
|
|
82803
|
+
UriTooLong: 414,
|
|
82804
|
+
UnsupportedMediaType: 415,
|
|
82805
|
+
RangeNotSatisfiable: 416,
|
|
82806
|
+
ExpectationFailed: 417,
|
|
82807
|
+
ImATeapot: 418,
|
|
82808
|
+
MisdirectedRequest: 421,
|
|
82809
|
+
UnprocessableEntity: 422,
|
|
82810
|
+
Locked: 423,
|
|
82811
|
+
FailedDependency: 424,
|
|
82812
|
+
TooEarly: 425,
|
|
82813
|
+
UpgradeRequired: 426,
|
|
82814
|
+
PreconditionRequired: 428,
|
|
82815
|
+
TooManyRequests: 429,
|
|
82816
|
+
RequestHeaderFieldsTooLarge: 431,
|
|
82817
|
+
UnavailableForLegalReasons: 451,
|
|
82818
|
+
InternalServerError: 500,
|
|
82819
|
+
NotImplemented: 501,
|
|
82820
|
+
BadGateway: 502,
|
|
82821
|
+
ServiceUnavailable: 503,
|
|
82822
|
+
GatewayTimeout: 504,
|
|
82823
|
+
HttpVersionNotSupported: 505,
|
|
82824
|
+
VariantAlsoNegotiates: 506,
|
|
82825
|
+
InsufficientStorage: 507,
|
|
82826
|
+
LoopDetected: 508,
|
|
82827
|
+
NotExtended: 510,
|
|
82828
|
+
NetworkAuthenticationRequired: 511
|
|
82829
|
+
};
|
|
82830
|
+
Object.entries(HttpStatusCode$1).forEach(([key, value2]) => {
|
|
82831
|
+
HttpStatusCode$1[value2] = key;
|
|
82832
|
+
});
|
|
82833
|
+
function createInstance(defaultConfig) {
|
|
82834
|
+
const context = new Axios$1(defaultConfig);
|
|
82835
|
+
const instance = bind(Axios$1.prototype.request, context);
|
|
82836
|
+
utils$1.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
|
|
82837
|
+
utils$1.extend(instance, context, null, { allOwnKeys: true });
|
|
82838
|
+
instance.create = function create2(instanceConfig) {
|
|
82839
|
+
return createInstance(mergeConfig$1(defaultConfig, instanceConfig));
|
|
82840
|
+
};
|
|
82841
|
+
return instance;
|
|
82842
|
+
}
|
|
82843
|
+
const axios = createInstance(defaults);
|
|
82844
|
+
axios.Axios = Axios$1;
|
|
82845
|
+
axios.CanceledError = CanceledError$1;
|
|
82846
|
+
axios.CancelToken = CancelToken$1;
|
|
82847
|
+
axios.isCancel = isCancel$1;
|
|
82848
|
+
axios.VERSION = VERSION$1;
|
|
82849
|
+
axios.toFormData = toFormData$1;
|
|
82850
|
+
axios.AxiosError = AxiosError$1;
|
|
82851
|
+
axios.Cancel = axios.CanceledError;
|
|
82852
|
+
axios.all = function all(promises) {
|
|
82853
|
+
return Promise.all(promises);
|
|
82854
|
+
};
|
|
82855
|
+
axios.spread = spread$1;
|
|
82856
|
+
axios.isAxiosError = isAxiosError$1;
|
|
82857
|
+
axios.mergeConfig = mergeConfig$1;
|
|
82858
|
+
axios.AxiosHeaders = AxiosHeaders$1;
|
|
82859
|
+
axios.formToJSON = (thing) => formDataToJSON(utils$1.isHTMLForm(thing) ? new FormData(thing) : thing);
|
|
82860
|
+
axios.getAdapter = adapters.getAdapter;
|
|
82861
|
+
axios.HttpStatusCode = HttpStatusCode$1;
|
|
82862
|
+
axios.default = axios;
|
|
82863
|
+
const {
|
|
82864
|
+
Axios: Axios2,
|
|
82865
|
+
AxiosError,
|
|
82866
|
+
CanceledError,
|
|
82867
|
+
isCancel,
|
|
82868
|
+
CancelToken: CancelToken2,
|
|
82869
|
+
VERSION,
|
|
82870
|
+
all: all2,
|
|
82871
|
+
Cancel,
|
|
82872
|
+
isAxiosError,
|
|
82873
|
+
spread,
|
|
82874
|
+
toFormData,
|
|
82875
|
+
AxiosHeaders: AxiosHeaders2,
|
|
82876
|
+
HttpStatusCode,
|
|
82877
|
+
formToJSON,
|
|
82878
|
+
getAdapter,
|
|
82879
|
+
mergeConfig
|
|
82880
|
+
} = axios;
|
|
82881
|
+
function withSessionHandling(instance, {
|
|
82882
|
+
queryClient: queryClient2,
|
|
82883
|
+
keysToInvalidate = [],
|
|
82884
|
+
broadcastChannel
|
|
82885
|
+
}) {
|
|
82886
|
+
instance.interceptors.response.use((res) => res, (err) => {
|
|
82887
|
+
var _a2;
|
|
82888
|
+
if (((_a2 = err.response) == null ? void 0 : _a2.status) === 401) {
|
|
82889
|
+
if (queryClient2) {
|
|
82890
|
+
keysToInvalidate.forEach((key) => queryClient2.invalidateQueries({
|
|
82891
|
+
queryKey: key,
|
|
82892
|
+
exact: true
|
|
82893
|
+
}));
|
|
82894
|
+
}
|
|
82895
|
+
broadcastChannel == null ? void 0 : broadcastChannel.postMessage("unauthorized");
|
|
82896
|
+
}
|
|
82897
|
+
return Promise.reject(err);
|
|
82898
|
+
});
|
|
82899
|
+
return {
|
|
82900
|
+
instance
|
|
82901
|
+
};
|
|
82902
|
+
}
|
|
82903
|
+
const createApi = (baseURL) => {
|
|
82904
|
+
const instance = axios.create({
|
|
82905
|
+
baseURL
|
|
82906
|
+
});
|
|
82907
|
+
return {
|
|
82908
|
+
instance,
|
|
82909
|
+
withSessionHandling: (config2) => withSessionHandling(instance, config2),
|
|
82910
|
+
build: () => ({
|
|
82911
|
+
instance
|
|
82912
|
+
})
|
|
82913
|
+
};
|
|
82914
|
+
};
|
|
80446
82915
|
const base64Codec = {
|
|
80447
82916
|
param: "safeB64",
|
|
80448
82917
|
encode: (str) => btoa(str),
|
|
@@ -81784,6 +84253,7 @@ export {
|
|
|
81784
84253
|
AppChrome,
|
|
81785
84254
|
AppSwitch,
|
|
81786
84255
|
AppSwitchLibrarySchema,
|
|
84256
|
+
AuthModal,
|
|
81787
84257
|
BinIcon,
|
|
81788
84258
|
Button2 as Button,
|
|
81789
84259
|
Card2 as Card,
|
|
@@ -81911,6 +84381,7 @@ export {
|
|
|
81911
84381
|
WipeConfigSchema,
|
|
81912
84382
|
base64Codec,
|
|
81913
84383
|
checkOntology,
|
|
84384
|
+
createApi,
|
|
81914
84385
|
getCodec,
|
|
81915
84386
|
loggerLevelOrder,
|
|
81916
84387
|
parseOrThrowWithInput,
|