@webbycrown/strapi-advanced-sitemap 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/_chunks/{Settings-O4TWg_hE.mjs → Settings-C2T_ZvMe.mjs} +90 -111
- package/dist/_chunks/{Settings-BA3_-WUh.js → Settings-CDmtmOAh.js} +111 -90
- package/dist/_chunks/{index-DYdeQf3Q.js → index-D0n235aN.js} +1 -1
- package/dist/_chunks/{index-lDBXYK9v.mjs → index-Dl67SY4J.mjs} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ SEO-ready XML sitemaps for Strapi CMS. Create manual URL sets or sitemap indexes
|
|
|
13
13
|
|
|
14
14
|
A short introduction and quick overview of **Strapi Advanced Sitemap**, showcasing how to build manual or dynamic XML sitemaps, publish sitemap indexes, and control access per role inside the Strapi admin panel.
|
|
15
15
|
|
|
16
|
-
[](https://www.youtube.com/watch?v=4HBuf8fhNCQ)
|
|
17
17
|
|
|
18
18
|
▶️ **[Watch Full Video on YouTube](https://www.youtube.com/watch?v=4HBuf8fhNCQ)**
|
|
19
19
|
|
|
@@ -178,6 +178,10 @@ When submitting to the Strapi Marketplace include:
|
|
|
178
178
|
|
|
179
179
|
## 📣 Changelog
|
|
180
180
|
|
|
181
|
+
|
|
182
|
+
### v1.0.5
|
|
183
|
+
- 📝 Updated README to include Youtube Image
|
|
184
|
+
|
|
181
185
|
### v1.0.4
|
|
182
186
|
|
|
183
187
|
- 📝 Updated README to include Demo Video section
|
|
@@ -8,7 +8,7 @@ import ReactDOM, { unstable_batchedUpdates as unstable_batchedUpdates$1 } from "
|
|
|
8
8
|
import { useIntl, FormattedMessage } from "react-intl";
|
|
9
9
|
import "@strapi/icons/symbols";
|
|
10
10
|
import { styled, createGlobalStyle } from "styled-components";
|
|
11
|
-
import { P as PLUGIN_ID } from "./index-
|
|
11
|
+
import { P as PLUGIN_ID } from "./index-Dl67SY4J.mjs";
|
|
12
12
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
13
13
|
function getDefaultExportFromCjs(x2) {
|
|
14
14
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
@@ -9984,7 +9984,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
9984
9984
|
var ys = arrObjKeys(obj, inspect2);
|
|
9985
9985
|
var isPlainObject2 = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
9986
9986
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
9987
|
-
var stringTag2 = !isPlainObject2 && toStringTag$1 && Object(obj) === obj && toStringTag$1 in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
9987
|
+
var stringTag2 = !isPlainObject2 && toStringTag$1 && Object(obj) === obj && toStringTag$1 in obj ? $slice.call(toStr$1(obj), 8, -1) : protoTag ? "Object" : "";
|
|
9988
9988
|
var constructorTag = isPlainObject2 || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
9989
9989
|
var tag = constructorTag + (stringTag2 || protoTag ? "[" + $join.call($concat$1.call([], stringTag2 || [], protoTag || []), ": ") + "] " : "");
|
|
9990
9990
|
if (ys.length === 0) {
|
|
@@ -10009,25 +10009,25 @@ function canTrustToString(obj) {
|
|
|
10009
10009
|
return !toStringTag$1 || !(typeof obj === "object" && (toStringTag$1 in obj || typeof obj[toStringTag$1] !== "undefined"));
|
|
10010
10010
|
}
|
|
10011
10011
|
function isArray$4(obj) {
|
|
10012
|
-
return toStr(obj) === "[object Array]" && canTrustToString(obj);
|
|
10012
|
+
return toStr$1(obj) === "[object Array]" && canTrustToString(obj);
|
|
10013
10013
|
}
|
|
10014
10014
|
function isDate$2(obj) {
|
|
10015
|
-
return toStr(obj) === "[object Date]" && canTrustToString(obj);
|
|
10015
|
+
return toStr$1(obj) === "[object Date]" && canTrustToString(obj);
|
|
10016
10016
|
}
|
|
10017
10017
|
function isRegExp$2(obj) {
|
|
10018
|
-
return toStr(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
10018
|
+
return toStr$1(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
10019
10019
|
}
|
|
10020
10020
|
function isError(obj) {
|
|
10021
|
-
return toStr(obj) === "[object Error]" && canTrustToString(obj);
|
|
10021
|
+
return toStr$1(obj) === "[object Error]" && canTrustToString(obj);
|
|
10022
10022
|
}
|
|
10023
10023
|
function isString$1(obj) {
|
|
10024
|
-
return toStr(obj) === "[object String]" && canTrustToString(obj);
|
|
10024
|
+
return toStr$1(obj) === "[object String]" && canTrustToString(obj);
|
|
10025
10025
|
}
|
|
10026
10026
|
function isNumber$1(obj) {
|
|
10027
|
-
return toStr(obj) === "[object Number]" && canTrustToString(obj);
|
|
10027
|
+
return toStr$1(obj) === "[object Number]" && canTrustToString(obj);
|
|
10028
10028
|
}
|
|
10029
10029
|
function isBoolean$1(obj) {
|
|
10030
|
-
return toStr(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
10030
|
+
return toStr$1(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
10031
10031
|
}
|
|
10032
10032
|
function isSymbol(obj) {
|
|
10033
10033
|
if (hasShammedSymbols) {
|
|
@@ -10063,7 +10063,7 @@ var hasOwn$1 = Object.prototype.hasOwnProperty || function(key) {
|
|
|
10063
10063
|
function has$5(obj, key) {
|
|
10064
10064
|
return hasOwn$1.call(obj, key);
|
|
10065
10065
|
}
|
|
10066
|
-
function toStr(obj) {
|
|
10066
|
+
function toStr$1(obj) {
|
|
10067
10067
|
return objectToString.call(obj);
|
|
10068
10068
|
}
|
|
10069
10069
|
function nameOf(f2) {
|
|
@@ -10372,7 +10372,7 @@ var syntax = SyntaxError;
|
|
|
10372
10372
|
var uri = URIError;
|
|
10373
10373
|
var abs$1 = Math.abs;
|
|
10374
10374
|
var floor$1 = Math.floor;
|
|
10375
|
-
var max$
|
|
10375
|
+
var max$2 = Math.max;
|
|
10376
10376
|
var min$1 = Math.min;
|
|
10377
10377
|
var pow$1 = Math.pow;
|
|
10378
10378
|
var round$1 = Math.round;
|
|
@@ -10501,99 +10501,78 @@ function requireObject_getPrototypeOf() {
|
|
|
10501
10501
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
10502
10502
|
return Object_getPrototypeOf;
|
|
10503
10503
|
}
|
|
10504
|
-
var
|
|
10505
|
-
var
|
|
10506
|
-
|
|
10507
|
-
|
|
10508
|
-
|
|
10509
|
-
var
|
|
10510
|
-
var
|
|
10511
|
-
|
|
10512
|
-
|
|
10513
|
-
var
|
|
10514
|
-
|
|
10515
|
-
|
|
10516
|
-
|
|
10517
|
-
|
|
10518
|
-
|
|
10519
|
-
|
|
10520
|
-
|
|
10521
|
-
|
|
10522
|
-
}
|
|
10523
|
-
|
|
10524
|
-
|
|
10525
|
-
|
|
10526
|
-
|
|
10504
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
10505
|
+
var toStr = Object.prototype.toString;
|
|
10506
|
+
var max$1 = Math.max;
|
|
10507
|
+
var funcType = "[object Function]";
|
|
10508
|
+
var concatty = function concatty2(a2, b2) {
|
|
10509
|
+
var arr = [];
|
|
10510
|
+
for (var i2 = 0; i2 < a2.length; i2 += 1) {
|
|
10511
|
+
arr[i2] = a2[i2];
|
|
10512
|
+
}
|
|
10513
|
+
for (var j2 = 0; j2 < b2.length; j2 += 1) {
|
|
10514
|
+
arr[j2 + a2.length] = b2[j2];
|
|
10515
|
+
}
|
|
10516
|
+
return arr;
|
|
10517
|
+
};
|
|
10518
|
+
var slicy = function slicy2(arrLike, offset) {
|
|
10519
|
+
var arr = [];
|
|
10520
|
+
for (var i2 = offset, j2 = 0; i2 < arrLike.length; i2 += 1, j2 += 1) {
|
|
10521
|
+
arr[j2] = arrLike[i2];
|
|
10522
|
+
}
|
|
10523
|
+
return arr;
|
|
10524
|
+
};
|
|
10525
|
+
var joiny = function(arr, joiner) {
|
|
10526
|
+
var str = "";
|
|
10527
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
10528
|
+
str += arr[i2];
|
|
10529
|
+
if (i2 + 1 < arr.length) {
|
|
10530
|
+
str += joiner;
|
|
10527
10531
|
}
|
|
10528
|
-
|
|
10529
|
-
|
|
10530
|
-
|
|
10531
|
-
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
|
|
10532
|
+
}
|
|
10533
|
+
return str;
|
|
10534
|
+
};
|
|
10535
|
+
var implementation$1 = function bind(that) {
|
|
10536
|
+
var target = this;
|
|
10537
|
+
if (typeof target !== "function" || toStr.apply(target) !== funcType) {
|
|
10538
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
10539
|
+
}
|
|
10540
|
+
var args = slicy(arguments, 1);
|
|
10541
|
+
var bound;
|
|
10542
|
+
var binder = function() {
|
|
10543
|
+
if (this instanceof bound) {
|
|
10544
|
+
var result = target.apply(
|
|
10545
|
+
this,
|
|
10546
|
+
concatty(args, arguments)
|
|
10547
|
+
);
|
|
10548
|
+
if (Object(result) === result) {
|
|
10549
|
+
return result;
|
|
10536
10550
|
}
|
|
10551
|
+
return this;
|
|
10537
10552
|
}
|
|
10538
|
-
return
|
|
10553
|
+
return target.apply(
|
|
10554
|
+
that,
|
|
10555
|
+
concatty(args, arguments)
|
|
10556
|
+
);
|
|
10539
10557
|
};
|
|
10540
|
-
|
|
10541
|
-
|
|
10542
|
-
|
|
10543
|
-
|
|
10544
|
-
|
|
10545
|
-
|
|
10546
|
-
|
|
10547
|
-
var
|
|
10548
|
-
if (this instanceof bound) {
|
|
10549
|
-
var result = target.apply(
|
|
10550
|
-
this,
|
|
10551
|
-
concatty(args, arguments)
|
|
10552
|
-
);
|
|
10553
|
-
if (Object(result) === result) {
|
|
10554
|
-
return result;
|
|
10555
|
-
}
|
|
10556
|
-
return this;
|
|
10557
|
-
}
|
|
10558
|
-
return target.apply(
|
|
10559
|
-
that,
|
|
10560
|
-
concatty(args, arguments)
|
|
10561
|
-
);
|
|
10558
|
+
var boundLength = max$1(0, target.length - args.length);
|
|
10559
|
+
var boundArgs = [];
|
|
10560
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
10561
|
+
boundArgs[i2] = "$" + i2;
|
|
10562
|
+
}
|
|
10563
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
10564
|
+
if (target.prototype) {
|
|
10565
|
+
var Empty = function Empty2() {
|
|
10562
10566
|
};
|
|
10563
|
-
|
|
10564
|
-
|
|
10565
|
-
|
|
10566
|
-
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
10572
|
-
Empty.prototype = target.prototype;
|
|
10573
|
-
bound.prototype = new Empty();
|
|
10574
|
-
Empty.prototype = null;
|
|
10575
|
-
}
|
|
10576
|
-
return bound;
|
|
10577
|
-
};
|
|
10578
|
-
return implementation;
|
|
10579
|
-
}
|
|
10580
|
-
var functionBind;
|
|
10581
|
-
var hasRequiredFunctionBind;
|
|
10582
|
-
function requireFunctionBind() {
|
|
10583
|
-
if (hasRequiredFunctionBind) return functionBind;
|
|
10584
|
-
hasRequiredFunctionBind = 1;
|
|
10585
|
-
var implementation2 = requireImplementation();
|
|
10586
|
-
functionBind = Function.prototype.bind || implementation2;
|
|
10587
|
-
return functionBind;
|
|
10588
|
-
}
|
|
10589
|
-
var functionCall;
|
|
10590
|
-
var hasRequiredFunctionCall;
|
|
10591
|
-
function requireFunctionCall() {
|
|
10592
|
-
if (hasRequiredFunctionCall) return functionCall;
|
|
10593
|
-
hasRequiredFunctionCall = 1;
|
|
10594
|
-
functionCall = Function.prototype.call;
|
|
10595
|
-
return functionCall;
|
|
10596
|
-
}
|
|
10567
|
+
Empty.prototype = target.prototype;
|
|
10568
|
+
bound.prototype = new Empty();
|
|
10569
|
+
Empty.prototype = null;
|
|
10570
|
+
}
|
|
10571
|
+
return bound;
|
|
10572
|
+
};
|
|
10573
|
+
var implementation = implementation$1;
|
|
10574
|
+
var functionBind = Function.prototype.bind || implementation;
|
|
10575
|
+
var functionCall = Function.prototype.call;
|
|
10597
10576
|
var functionApply;
|
|
10598
10577
|
var hasRequiredFunctionApply;
|
|
10599
10578
|
function requireFunctionApply() {
|
|
@@ -10603,14 +10582,14 @@ function requireFunctionApply() {
|
|
|
10603
10582
|
return functionApply;
|
|
10604
10583
|
}
|
|
10605
10584
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
10606
|
-
var bind$3 =
|
|
10585
|
+
var bind$3 = functionBind;
|
|
10607
10586
|
var $apply$1 = requireFunctionApply();
|
|
10608
|
-
var $call$2 =
|
|
10587
|
+
var $call$2 = functionCall;
|
|
10609
10588
|
var $reflectApply = reflectApply;
|
|
10610
10589
|
var actualApply = $reflectApply || bind$3.call($call$2, $apply$1);
|
|
10611
|
-
var bind$2 =
|
|
10590
|
+
var bind$2 = functionBind;
|
|
10612
10591
|
var $TypeError$4 = type;
|
|
10613
|
-
var $call$1 =
|
|
10592
|
+
var $call$1 = functionCall;
|
|
10614
10593
|
var $actualApply = actualApply;
|
|
10615
10594
|
var callBindApplyHelpers = function callBindBasic(args) {
|
|
10616
10595
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -10676,8 +10655,8 @@ function requireHasown() {
|
|
|
10676
10655
|
hasRequiredHasown = 1;
|
|
10677
10656
|
var call = Function.prototype.call;
|
|
10678
10657
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
10679
|
-
var
|
|
10680
|
-
hasown =
|
|
10658
|
+
var bind3 = functionBind;
|
|
10659
|
+
hasown = bind3.call(call, $hasOwn);
|
|
10681
10660
|
return hasown;
|
|
10682
10661
|
}
|
|
10683
10662
|
var undefined$1;
|
|
@@ -10691,7 +10670,7 @@ var $TypeError$3 = type;
|
|
|
10691
10670
|
var $URIError = uri;
|
|
10692
10671
|
var abs = abs$1;
|
|
10693
10672
|
var floor = floor$1;
|
|
10694
|
-
var max = max$
|
|
10673
|
+
var max = max$2;
|
|
10695
10674
|
var min = min$1;
|
|
10696
10675
|
var pow = pow$1;
|
|
10697
10676
|
var round = round$1;
|
|
@@ -10725,7 +10704,7 @@ var getProto = requireGetProto();
|
|
|
10725
10704
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
10726
10705
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
10727
10706
|
var $apply = requireFunctionApply();
|
|
10728
|
-
var $call =
|
|
10707
|
+
var $call = functionCall;
|
|
10729
10708
|
var needsEval = {};
|
|
10730
10709
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
10731
10710
|
var INTRINSICS = {
|
|
@@ -10896,7 +10875,7 @@ var LEGACY_ALIASES = {
|
|
|
10896
10875
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
10897
10876
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
10898
10877
|
};
|
|
10899
|
-
var bind$1 =
|
|
10878
|
+
var bind$1 = functionBind;
|
|
10900
10879
|
var hasOwn = requireHasown();
|
|
10901
10880
|
var $concat = bind$1.call($call, Array.prototype.concat);
|
|
10902
10881
|
var $spliceApply = bind$1.call($apply, Array.prototype.splice);
|
|
@@ -15008,7 +14987,7 @@ const admin = adminApi.enhanceEndpoints({
|
|
|
15008
14987
|
overrideExisting: false
|
|
15009
14988
|
});
|
|
15010
14989
|
const { useInitQuery, useTelemetryPropertiesQuery, useInformationQuery, useProjectSettingsQuery, useUpdateProjectSettingsMutation, useGetPluginsQuery, useGetLicenseLimitsQuery, useGetLicenseTrialTimeLeftQuery, useGetGuidedTourMetaQuery } = admin;
|
|
15011
|
-
function
|
|
14990
|
+
function bind2(fn2, thisArg) {
|
|
15012
14991
|
return function wrap() {
|
|
15013
14992
|
return fn2.apply(thisArg, arguments);
|
|
15014
14993
|
};
|
|
@@ -15145,7 +15124,7 @@ function merge2() {
|
|
|
15145
15124
|
const extend = (a2, b2, thisArg, { allOwnKeys } = {}) => {
|
|
15146
15125
|
forEach$1(b2, (val, key) => {
|
|
15147
15126
|
if (thisArg && isFunction$1(val)) {
|
|
15148
|
-
a2[key] =
|
|
15127
|
+
a2[key] = bind2(val, thisArg);
|
|
15149
15128
|
} else {
|
|
15150
15129
|
a2[key] = val;
|
|
15151
15130
|
}
|
|
@@ -17425,7 +17404,7 @@ Object.entries(HttpStatusCode$1).forEach(([key, value]) => {
|
|
|
17425
17404
|
});
|
|
17426
17405
|
function createInstance(defaultConfig) {
|
|
17427
17406
|
const context = new Axios$1(defaultConfig);
|
|
17428
|
-
const instance =
|
|
17407
|
+
const instance = bind2(Axios$1.prototype.request, context);
|
|
17429
17408
|
utils$1.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
|
|
17430
17409
|
utils$1.extend(instance, context, null, { allOwnKeys: true });
|
|
17431
17410
|
instance.create = function create2(instanceConfig) {
|
|
@@ -9,7 +9,7 @@ const ReactDOM = require("react-dom");
|
|
|
9
9
|
const reactIntl = require("react-intl");
|
|
10
10
|
require("@strapi/icons/symbols");
|
|
11
11
|
const styled = require("styled-components");
|
|
12
|
-
const index = require("./index-
|
|
12
|
+
const index = require("./index-D0n235aN.js");
|
|
13
13
|
const _interopDefault = (e2) => e2 && e2.__esModule ? e2 : { default: e2 };
|
|
14
14
|
function _interopNamespace(e2) {
|
|
15
15
|
if (e2 && e2.__esModule) return e2;
|
|
@@ -10005,7 +10005,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
10005
10005
|
var ys = arrObjKeys(obj, inspect2);
|
|
10006
10006
|
var isPlainObject2 = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
10007
10007
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
10008
|
-
var stringTag2 = !isPlainObject2 && toStringTag$1 && Object(obj) === obj && toStringTag$1 in obj ? $slice.call(toStr
|
|
10008
|
+
var stringTag2 = !isPlainObject2 && toStringTag$1 && Object(obj) === obj && toStringTag$1 in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
10009
10009
|
var constructorTag = isPlainObject2 || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
10010
10010
|
var tag = constructorTag + (stringTag2 || protoTag ? "[" + $join.call($concat$1.call([], stringTag2 || [], protoTag || []), ": ") + "] " : "");
|
|
10011
10011
|
if (ys.length === 0) {
|
|
@@ -10030,25 +10030,25 @@ function canTrustToString(obj) {
|
|
|
10030
10030
|
return !toStringTag$1 || !(typeof obj === "object" && (toStringTag$1 in obj || typeof obj[toStringTag$1] !== "undefined"));
|
|
10031
10031
|
}
|
|
10032
10032
|
function isArray$4(obj) {
|
|
10033
|
-
return toStr
|
|
10033
|
+
return toStr(obj) === "[object Array]" && canTrustToString(obj);
|
|
10034
10034
|
}
|
|
10035
10035
|
function isDate$2(obj) {
|
|
10036
|
-
return toStr
|
|
10036
|
+
return toStr(obj) === "[object Date]" && canTrustToString(obj);
|
|
10037
10037
|
}
|
|
10038
10038
|
function isRegExp$2(obj) {
|
|
10039
|
-
return toStr
|
|
10039
|
+
return toStr(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
10040
10040
|
}
|
|
10041
10041
|
function isError(obj) {
|
|
10042
|
-
return toStr
|
|
10042
|
+
return toStr(obj) === "[object Error]" && canTrustToString(obj);
|
|
10043
10043
|
}
|
|
10044
10044
|
function isString$1(obj) {
|
|
10045
|
-
return toStr
|
|
10045
|
+
return toStr(obj) === "[object String]" && canTrustToString(obj);
|
|
10046
10046
|
}
|
|
10047
10047
|
function isNumber$1(obj) {
|
|
10048
|
-
return toStr
|
|
10048
|
+
return toStr(obj) === "[object Number]" && canTrustToString(obj);
|
|
10049
10049
|
}
|
|
10050
10050
|
function isBoolean$1(obj) {
|
|
10051
|
-
return toStr
|
|
10051
|
+
return toStr(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
10052
10052
|
}
|
|
10053
10053
|
function isSymbol(obj) {
|
|
10054
10054
|
if (hasShammedSymbols) {
|
|
@@ -10084,7 +10084,7 @@ var hasOwn$1 = Object.prototype.hasOwnProperty || function(key) {
|
|
|
10084
10084
|
function has$5(obj, key) {
|
|
10085
10085
|
return hasOwn$1.call(obj, key);
|
|
10086
10086
|
}
|
|
10087
|
-
function toStr
|
|
10087
|
+
function toStr(obj) {
|
|
10088
10088
|
return objectToString.call(obj);
|
|
10089
10089
|
}
|
|
10090
10090
|
function nameOf(f2) {
|
|
@@ -10393,7 +10393,7 @@ var syntax = SyntaxError;
|
|
|
10393
10393
|
var uri = URIError;
|
|
10394
10394
|
var abs$1 = Math.abs;
|
|
10395
10395
|
var floor$1 = Math.floor;
|
|
10396
|
-
var max$
|
|
10396
|
+
var max$1 = Math.max;
|
|
10397
10397
|
var min$1 = Math.min;
|
|
10398
10398
|
var pow$1 = Math.pow;
|
|
10399
10399
|
var round$1 = Math.round;
|
|
@@ -10522,78 +10522,99 @@ function requireObject_getPrototypeOf() {
|
|
|
10522
10522
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
10523
10523
|
return Object_getPrototypeOf;
|
|
10524
10524
|
}
|
|
10525
|
-
var
|
|
10526
|
-
var
|
|
10527
|
-
|
|
10528
|
-
|
|
10529
|
-
|
|
10530
|
-
var
|
|
10531
|
-
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
arr
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
};
|
|
10539
|
-
var slicy = function slicy2(arrLike, offset) {
|
|
10540
|
-
var arr = [];
|
|
10541
|
-
for (var i2 = offset, j2 = 0; i2 < arrLike.length; i2 += 1, j2 += 1) {
|
|
10542
|
-
arr[j2] = arrLike[i2];
|
|
10543
|
-
}
|
|
10544
|
-
return arr;
|
|
10545
|
-
};
|
|
10546
|
-
var joiny = function(arr, joiner) {
|
|
10547
|
-
var str = "";
|
|
10548
|
-
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
10549
|
-
str += arr[i2];
|
|
10550
|
-
if (i2 + 1 < arr.length) {
|
|
10551
|
-
str += joiner;
|
|
10525
|
+
var implementation;
|
|
10526
|
+
var hasRequiredImplementation;
|
|
10527
|
+
function requireImplementation() {
|
|
10528
|
+
if (hasRequiredImplementation) return implementation;
|
|
10529
|
+
hasRequiredImplementation = 1;
|
|
10530
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
10531
|
+
var toStr2 = Object.prototype.toString;
|
|
10532
|
+
var max2 = Math.max;
|
|
10533
|
+
var funcType = "[object Function]";
|
|
10534
|
+
var concatty = function concatty2(a2, b2) {
|
|
10535
|
+
var arr = [];
|
|
10536
|
+
for (var i2 = 0; i2 < a2.length; i2 += 1) {
|
|
10537
|
+
arr[i2] = a2[i2];
|
|
10552
10538
|
}
|
|
10553
|
-
|
|
10554
|
-
|
|
10555
|
-
}
|
|
10556
|
-
|
|
10557
|
-
|
|
10558
|
-
|
|
10559
|
-
|
|
10560
|
-
|
|
10561
|
-
|
|
10562
|
-
|
|
10563
|
-
|
|
10564
|
-
|
|
10565
|
-
|
|
10566
|
-
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
if (
|
|
10570
|
-
|
|
10539
|
+
for (var j2 = 0; j2 < b2.length; j2 += 1) {
|
|
10540
|
+
arr[j2 + a2.length] = b2[j2];
|
|
10541
|
+
}
|
|
10542
|
+
return arr;
|
|
10543
|
+
};
|
|
10544
|
+
var slicy = function slicy2(arrLike, offset) {
|
|
10545
|
+
var arr = [];
|
|
10546
|
+
for (var i2 = offset, j2 = 0; i2 < arrLike.length; i2 += 1, j2 += 1) {
|
|
10547
|
+
arr[j2] = arrLike[i2];
|
|
10548
|
+
}
|
|
10549
|
+
return arr;
|
|
10550
|
+
};
|
|
10551
|
+
var joiny = function(arr, joiner) {
|
|
10552
|
+
var str = "";
|
|
10553
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
10554
|
+
str += arr[i2];
|
|
10555
|
+
if (i2 + 1 < arr.length) {
|
|
10556
|
+
str += joiner;
|
|
10571
10557
|
}
|
|
10572
|
-
return this;
|
|
10573
10558
|
}
|
|
10574
|
-
return
|
|
10575
|
-
that,
|
|
10576
|
-
concatty(args, arguments)
|
|
10577
|
-
);
|
|
10559
|
+
return str;
|
|
10578
10560
|
};
|
|
10579
|
-
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
|
|
10585
|
-
|
|
10586
|
-
var
|
|
10561
|
+
implementation = function bind2(that) {
|
|
10562
|
+
var target = this;
|
|
10563
|
+
if (typeof target !== "function" || toStr2.apply(target) !== funcType) {
|
|
10564
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
10565
|
+
}
|
|
10566
|
+
var args = slicy(arguments, 1);
|
|
10567
|
+
var bound;
|
|
10568
|
+
var binder = function() {
|
|
10569
|
+
if (this instanceof bound) {
|
|
10570
|
+
var result = target.apply(
|
|
10571
|
+
this,
|
|
10572
|
+
concatty(args, arguments)
|
|
10573
|
+
);
|
|
10574
|
+
if (Object(result) === result) {
|
|
10575
|
+
return result;
|
|
10576
|
+
}
|
|
10577
|
+
return this;
|
|
10578
|
+
}
|
|
10579
|
+
return target.apply(
|
|
10580
|
+
that,
|
|
10581
|
+
concatty(args, arguments)
|
|
10582
|
+
);
|
|
10587
10583
|
};
|
|
10588
|
-
|
|
10589
|
-
|
|
10590
|
-
|
|
10591
|
-
|
|
10592
|
-
|
|
10593
|
-
};
|
|
10594
|
-
|
|
10595
|
-
var
|
|
10596
|
-
|
|
10584
|
+
var boundLength = max2(0, target.length - args.length);
|
|
10585
|
+
var boundArgs = [];
|
|
10586
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
10587
|
+
boundArgs[i2] = "$" + i2;
|
|
10588
|
+
}
|
|
10589
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
10590
|
+
if (target.prototype) {
|
|
10591
|
+
var Empty = function Empty2() {
|
|
10592
|
+
};
|
|
10593
|
+
Empty.prototype = target.prototype;
|
|
10594
|
+
bound.prototype = new Empty();
|
|
10595
|
+
Empty.prototype = null;
|
|
10596
|
+
}
|
|
10597
|
+
return bound;
|
|
10598
|
+
};
|
|
10599
|
+
return implementation;
|
|
10600
|
+
}
|
|
10601
|
+
var functionBind;
|
|
10602
|
+
var hasRequiredFunctionBind;
|
|
10603
|
+
function requireFunctionBind() {
|
|
10604
|
+
if (hasRequiredFunctionBind) return functionBind;
|
|
10605
|
+
hasRequiredFunctionBind = 1;
|
|
10606
|
+
var implementation2 = requireImplementation();
|
|
10607
|
+
functionBind = Function.prototype.bind || implementation2;
|
|
10608
|
+
return functionBind;
|
|
10609
|
+
}
|
|
10610
|
+
var functionCall;
|
|
10611
|
+
var hasRequiredFunctionCall;
|
|
10612
|
+
function requireFunctionCall() {
|
|
10613
|
+
if (hasRequiredFunctionCall) return functionCall;
|
|
10614
|
+
hasRequiredFunctionCall = 1;
|
|
10615
|
+
functionCall = Function.prototype.call;
|
|
10616
|
+
return functionCall;
|
|
10617
|
+
}
|
|
10597
10618
|
var functionApply;
|
|
10598
10619
|
var hasRequiredFunctionApply;
|
|
10599
10620
|
function requireFunctionApply() {
|
|
@@ -10603,14 +10624,14 @@ function requireFunctionApply() {
|
|
|
10603
10624
|
return functionApply;
|
|
10604
10625
|
}
|
|
10605
10626
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
10606
|
-
var bind$3 =
|
|
10627
|
+
var bind$3 = requireFunctionBind();
|
|
10607
10628
|
var $apply$1 = requireFunctionApply();
|
|
10608
|
-
var $call$2 =
|
|
10629
|
+
var $call$2 = requireFunctionCall();
|
|
10609
10630
|
var $reflectApply = reflectApply;
|
|
10610
10631
|
var actualApply = $reflectApply || bind$3.call($call$2, $apply$1);
|
|
10611
|
-
var bind$2 =
|
|
10632
|
+
var bind$2 = requireFunctionBind();
|
|
10612
10633
|
var $TypeError$4 = type;
|
|
10613
|
-
var $call$1 =
|
|
10634
|
+
var $call$1 = requireFunctionCall();
|
|
10614
10635
|
var $actualApply = actualApply;
|
|
10615
10636
|
var callBindApplyHelpers = function callBindBasic(args) {
|
|
10616
10637
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -10676,8 +10697,8 @@ function requireHasown() {
|
|
|
10676
10697
|
hasRequiredHasown = 1;
|
|
10677
10698
|
var call = Function.prototype.call;
|
|
10678
10699
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
10679
|
-
var
|
|
10680
|
-
hasown =
|
|
10700
|
+
var bind2 = requireFunctionBind();
|
|
10701
|
+
hasown = bind2.call(call, $hasOwn);
|
|
10681
10702
|
return hasown;
|
|
10682
10703
|
}
|
|
10683
10704
|
var undefined$1;
|
|
@@ -10691,7 +10712,7 @@ var $TypeError$3 = type;
|
|
|
10691
10712
|
var $URIError = uri;
|
|
10692
10713
|
var abs = abs$1;
|
|
10693
10714
|
var floor = floor$1;
|
|
10694
|
-
var max = max$
|
|
10715
|
+
var max = max$1;
|
|
10695
10716
|
var min = min$1;
|
|
10696
10717
|
var pow = pow$1;
|
|
10697
10718
|
var round = round$1;
|
|
@@ -10725,7 +10746,7 @@ var getProto = requireGetProto();
|
|
|
10725
10746
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
10726
10747
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
10727
10748
|
var $apply = requireFunctionApply();
|
|
10728
|
-
var $call =
|
|
10749
|
+
var $call = requireFunctionCall();
|
|
10729
10750
|
var needsEval = {};
|
|
10730
10751
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
10731
10752
|
var INTRINSICS = {
|
|
@@ -10896,7 +10917,7 @@ var LEGACY_ALIASES = {
|
|
|
10896
10917
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
10897
10918
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
10898
10919
|
};
|
|
10899
|
-
var bind$1 =
|
|
10920
|
+
var bind$1 = requireFunctionBind();
|
|
10900
10921
|
var hasOwn = requireHasown();
|
|
10901
10922
|
var $concat = bind$1.call($call, Array.prototype.concat);
|
|
10902
10923
|
var $spliceApply = bind$1.call($apply, Array.prototype.splice);
|
|
@@ -15008,7 +15029,7 @@ const admin = adminApi.enhanceEndpoints({
|
|
|
15008
15029
|
overrideExisting: false
|
|
15009
15030
|
});
|
|
15010
15031
|
const { useInitQuery, useTelemetryPropertiesQuery, useInformationQuery, useProjectSettingsQuery, useUpdateProjectSettingsMutation, useGetPluginsQuery, useGetLicenseLimitsQuery, useGetLicenseTrialTimeLeftQuery, useGetGuidedTourMetaQuery } = admin;
|
|
15011
|
-
function
|
|
15032
|
+
function bind(fn2, thisArg) {
|
|
15012
15033
|
return function wrap() {
|
|
15013
15034
|
return fn2.apply(thisArg, arguments);
|
|
15014
15035
|
};
|
|
@@ -15145,7 +15166,7 @@ function merge2() {
|
|
|
15145
15166
|
const extend = (a2, b2, thisArg, { allOwnKeys } = {}) => {
|
|
15146
15167
|
forEach$1(b2, (val, key) => {
|
|
15147
15168
|
if (thisArg && isFunction$1(val)) {
|
|
15148
|
-
a2[key] =
|
|
15169
|
+
a2[key] = bind(val, thisArg);
|
|
15149
15170
|
} else {
|
|
15150
15171
|
a2[key] = val;
|
|
15151
15172
|
}
|
|
@@ -17425,7 +17446,7 @@ Object.entries(HttpStatusCode$1).forEach(([key, value]) => {
|
|
|
17425
17446
|
});
|
|
17426
17447
|
function createInstance(defaultConfig) {
|
|
17427
17448
|
const context = new Axios$1(defaultConfig);
|
|
17428
|
-
const instance =
|
|
17449
|
+
const instance = bind(Axios$1.prototype.request, context);
|
|
17429
17450
|
utils$1.extend(instance, Axios$1.prototype, context, { allOwnKeys: true });
|
|
17430
17451
|
utils$1.extend(instance, context, null, { allOwnKeys: true });
|
|
17431
17452
|
instance.create = function create2(instanceConfig) {
|
|
@@ -52,7 +52,7 @@ const index = {
|
|
|
52
52
|
defaultMessage: "Configuration"
|
|
53
53
|
},
|
|
54
54
|
to: `${PLUGIN_ID}`,
|
|
55
|
-
Component: () => Promise.resolve().then(() => require("./Settings-
|
|
55
|
+
Component: () => Promise.resolve().then(() => require("./Settings-CDmtmOAh.js"))
|
|
56
56
|
}
|
|
57
57
|
);
|
|
58
58
|
},
|
package/dist/admin/index.js
CHANGED
package/dist/admin/index.mjs
CHANGED