strapi-plugin-firebase-authentication 1.2.3 → 1.2.4
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/_chunks/{App-D0dXofYU.js → App-Dg_AxJhA.js} +114 -93
- package/dist/_chunks/{App-BwSwStYD.mjs → App-J0Ks5XlI.mjs} +93 -114
- package/dist/_chunks/{api-BPWH3Tkt.js → api-FVfrlu9T.js} +1 -1
- package/dist/_chunks/{api-ApHylTX3.mjs → api-NexSh9zC.mjs} +1 -1
- package/dist/_chunks/{index-BiKfIixL.mjs → index-B9spFspk.mjs} +2 -2
- package/dist/_chunks/{index-CoM6JZZ8.mjs → index-Bdn3O-sg.mjs} +1 -1
- package/dist/_chunks/{index-CwdQ9EjS.js → index-D41v41O3.js} +1 -1
- package/dist/_chunks/{index-CEHB1Gia.js → index-ROJyqJld.js} +2 -2
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ const admin = require("@strapi/strapi/admin");
|
|
|
5
5
|
const reactRouterDom = require("react-router-dom");
|
|
6
6
|
const rt = require("@radix-ui/react-tooltip");
|
|
7
7
|
const m = require("react");
|
|
8
|
-
const api = require("./api-
|
|
8
|
+
const api = require("./api-FVfrlu9T.js");
|
|
9
9
|
const reactIntl = require("react-intl");
|
|
10
|
-
const index = require("./index-
|
|
10
|
+
const index = require("./index-ROJyqJld.js");
|
|
11
11
|
const styled = require("styled-components");
|
|
12
12
|
const rx = require("react-icons/rx");
|
|
13
13
|
const ai = require("react-icons/ai");
|
|
@@ -3003,7 +3003,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
3003
3003
|
var ys = arrObjKeys(obj, inspect2);
|
|
3004
3004
|
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
3005
3005
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
3006
|
-
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr
|
|
3006
|
+
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
3007
3007
|
var constructorTag = isPlainObject || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
3008
3008
|
var tag = constructorTag + (stringTag || protoTag ? "[" + $join.call($concat$1.call([], stringTag || [], protoTag || []), ": ") + "] " : "");
|
|
3009
3009
|
if (ys.length === 0) {
|
|
@@ -3028,25 +3028,25 @@ function canTrustToString(obj) {
|
|
|
3028
3028
|
return !toStringTag || !(typeof obj === "object" && (toStringTag in obj || typeof obj[toStringTag] !== "undefined"));
|
|
3029
3029
|
}
|
|
3030
3030
|
function isArray$3(obj) {
|
|
3031
|
-
return toStr
|
|
3031
|
+
return toStr(obj) === "[object Array]" && canTrustToString(obj);
|
|
3032
3032
|
}
|
|
3033
3033
|
function isDate(obj) {
|
|
3034
|
-
return toStr
|
|
3034
|
+
return toStr(obj) === "[object Date]" && canTrustToString(obj);
|
|
3035
3035
|
}
|
|
3036
3036
|
function isRegExp$1(obj) {
|
|
3037
|
-
return toStr
|
|
3037
|
+
return toStr(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
3038
3038
|
}
|
|
3039
3039
|
function isError(obj) {
|
|
3040
|
-
return toStr
|
|
3040
|
+
return toStr(obj) === "[object Error]" && canTrustToString(obj);
|
|
3041
3041
|
}
|
|
3042
3042
|
function isString(obj) {
|
|
3043
|
-
return toStr
|
|
3043
|
+
return toStr(obj) === "[object String]" && canTrustToString(obj);
|
|
3044
3044
|
}
|
|
3045
3045
|
function isNumber(obj) {
|
|
3046
|
-
return toStr
|
|
3046
|
+
return toStr(obj) === "[object Number]" && canTrustToString(obj);
|
|
3047
3047
|
}
|
|
3048
3048
|
function isBoolean(obj) {
|
|
3049
|
-
return toStr
|
|
3049
|
+
return toStr(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
3050
3050
|
}
|
|
3051
3051
|
function isSymbol(obj) {
|
|
3052
3052
|
if (hasShammedSymbols) {
|
|
@@ -3082,7 +3082,7 @@ var hasOwn$1 = Object.prototype.hasOwnProperty || function(key) {
|
|
|
3082
3082
|
function has$3(obj, key) {
|
|
3083
3083
|
return hasOwn$1.call(obj, key);
|
|
3084
3084
|
}
|
|
3085
|
-
function toStr
|
|
3085
|
+
function toStr(obj) {
|
|
3086
3086
|
return objectToString.call(obj);
|
|
3087
3087
|
}
|
|
3088
3088
|
function nameOf(f) {
|
|
@@ -3391,7 +3391,7 @@ var syntax = SyntaxError;
|
|
|
3391
3391
|
var uri = URIError;
|
|
3392
3392
|
var abs$1 = Math.abs;
|
|
3393
3393
|
var floor$1 = Math.floor;
|
|
3394
|
-
var max$
|
|
3394
|
+
var max$1 = Math.max;
|
|
3395
3395
|
var min$1 = Math.min;
|
|
3396
3396
|
var pow$1 = Math.pow;
|
|
3397
3397
|
var round$1 = Math.round;
|
|
@@ -3520,78 +3520,99 @@ function requireObject_getPrototypeOf() {
|
|
|
3520
3520
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
3521
3521
|
return Object_getPrototypeOf;
|
|
3522
3522
|
}
|
|
3523
|
-
var
|
|
3524
|
-
var
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
var
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
arr
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
}
|
|
3537
|
-
var
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
arr
|
|
3541
|
-
}
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
var
|
|
3545
|
-
|
|
3546
|
-
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
3547
|
-
str += arr[i2];
|
|
3548
|
-
if (i2 + 1 < arr.length) {
|
|
3549
|
-
str += joiner;
|
|
3523
|
+
var implementation;
|
|
3524
|
+
var hasRequiredImplementation;
|
|
3525
|
+
function requireImplementation() {
|
|
3526
|
+
if (hasRequiredImplementation) return implementation;
|
|
3527
|
+
hasRequiredImplementation = 1;
|
|
3528
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
3529
|
+
var toStr2 = Object.prototype.toString;
|
|
3530
|
+
var max2 = Math.max;
|
|
3531
|
+
var funcType = "[object Function]";
|
|
3532
|
+
var concatty = function concatty2(a3, b2) {
|
|
3533
|
+
var arr = [];
|
|
3534
|
+
for (var i2 = 0; i2 < a3.length; i2 += 1) {
|
|
3535
|
+
arr[i2] = a3[i2];
|
|
3536
|
+
}
|
|
3537
|
+
for (var j = 0; j < b2.length; j += 1) {
|
|
3538
|
+
arr[j + a3.length] = b2[j];
|
|
3539
|
+
}
|
|
3540
|
+
return arr;
|
|
3541
|
+
};
|
|
3542
|
+
var slicy = function slicy2(arrLike, offset) {
|
|
3543
|
+
var arr = [];
|
|
3544
|
+
for (var i2 = offset, j = 0; i2 < arrLike.length; i2 += 1, j += 1) {
|
|
3545
|
+
arr[j] = arrLike[i2];
|
|
3550
3546
|
}
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
var
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
var args = slicy(arguments, 1);
|
|
3560
|
-
var bound;
|
|
3561
|
-
var binder = function() {
|
|
3562
|
-
if (this instanceof bound) {
|
|
3563
|
-
var result = target.apply(
|
|
3564
|
-
this,
|
|
3565
|
-
concatty(args, arguments)
|
|
3566
|
-
);
|
|
3567
|
-
if (Object(result) === result) {
|
|
3568
|
-
return result;
|
|
3547
|
+
return arr;
|
|
3548
|
+
};
|
|
3549
|
+
var joiny = function(arr, joiner) {
|
|
3550
|
+
var str = "";
|
|
3551
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
3552
|
+
str += arr[i2];
|
|
3553
|
+
if (i2 + 1 < arr.length) {
|
|
3554
|
+
str += joiner;
|
|
3569
3555
|
}
|
|
3570
|
-
return this;
|
|
3571
3556
|
}
|
|
3572
|
-
return
|
|
3573
|
-
that,
|
|
3574
|
-
concatty(args, arguments)
|
|
3575
|
-
);
|
|
3557
|
+
return str;
|
|
3576
3558
|
};
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
var
|
|
3559
|
+
implementation = function bind2(that) {
|
|
3560
|
+
var target = this;
|
|
3561
|
+
if (typeof target !== "function" || toStr2.apply(target) !== funcType) {
|
|
3562
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
3563
|
+
}
|
|
3564
|
+
var args = slicy(arguments, 1);
|
|
3565
|
+
var bound;
|
|
3566
|
+
var binder = function() {
|
|
3567
|
+
if (this instanceof bound) {
|
|
3568
|
+
var result = target.apply(
|
|
3569
|
+
this,
|
|
3570
|
+
concatty(args, arguments)
|
|
3571
|
+
);
|
|
3572
|
+
if (Object(result) === result) {
|
|
3573
|
+
return result;
|
|
3574
|
+
}
|
|
3575
|
+
return this;
|
|
3576
|
+
}
|
|
3577
|
+
return target.apply(
|
|
3578
|
+
that,
|
|
3579
|
+
concatty(args, arguments)
|
|
3580
|
+
);
|
|
3585
3581
|
};
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
};
|
|
3592
|
-
|
|
3593
|
-
var
|
|
3594
|
-
|
|
3582
|
+
var boundLength = max2(0, target.length - args.length);
|
|
3583
|
+
var boundArgs = [];
|
|
3584
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
3585
|
+
boundArgs[i2] = "$" + i2;
|
|
3586
|
+
}
|
|
3587
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
3588
|
+
if (target.prototype) {
|
|
3589
|
+
var Empty = function Empty2() {
|
|
3590
|
+
};
|
|
3591
|
+
Empty.prototype = target.prototype;
|
|
3592
|
+
bound.prototype = new Empty();
|
|
3593
|
+
Empty.prototype = null;
|
|
3594
|
+
}
|
|
3595
|
+
return bound;
|
|
3596
|
+
};
|
|
3597
|
+
return implementation;
|
|
3598
|
+
}
|
|
3599
|
+
var functionBind;
|
|
3600
|
+
var hasRequiredFunctionBind;
|
|
3601
|
+
function requireFunctionBind() {
|
|
3602
|
+
if (hasRequiredFunctionBind) return functionBind;
|
|
3603
|
+
hasRequiredFunctionBind = 1;
|
|
3604
|
+
var implementation2 = requireImplementation();
|
|
3605
|
+
functionBind = Function.prototype.bind || implementation2;
|
|
3606
|
+
return functionBind;
|
|
3607
|
+
}
|
|
3608
|
+
var functionCall;
|
|
3609
|
+
var hasRequiredFunctionCall;
|
|
3610
|
+
function requireFunctionCall() {
|
|
3611
|
+
if (hasRequiredFunctionCall) return functionCall;
|
|
3612
|
+
hasRequiredFunctionCall = 1;
|
|
3613
|
+
functionCall = Function.prototype.call;
|
|
3614
|
+
return functionCall;
|
|
3615
|
+
}
|
|
3595
3616
|
var functionApply;
|
|
3596
3617
|
var hasRequiredFunctionApply;
|
|
3597
3618
|
function requireFunctionApply() {
|
|
@@ -3601,14 +3622,14 @@ function requireFunctionApply() {
|
|
|
3601
3622
|
return functionApply;
|
|
3602
3623
|
}
|
|
3603
3624
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
3604
|
-
var bind$2 =
|
|
3625
|
+
var bind$2 = requireFunctionBind();
|
|
3605
3626
|
var $apply$1 = requireFunctionApply();
|
|
3606
|
-
var $call$2 =
|
|
3627
|
+
var $call$2 = requireFunctionCall();
|
|
3607
3628
|
var $reflectApply = reflectApply;
|
|
3608
3629
|
var actualApply = $reflectApply || bind$2.call($call$2, $apply$1);
|
|
3609
|
-
var bind$1 =
|
|
3630
|
+
var bind$1 = requireFunctionBind();
|
|
3610
3631
|
var $TypeError$4 = type;
|
|
3611
|
-
var $call$1 =
|
|
3632
|
+
var $call$1 = requireFunctionCall();
|
|
3612
3633
|
var $actualApply = actualApply;
|
|
3613
3634
|
var callBindApplyHelpers = function callBindBasic(args) {
|
|
3614
3635
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -3674,8 +3695,8 @@ function requireHasown() {
|
|
|
3674
3695
|
hasRequiredHasown = 1;
|
|
3675
3696
|
var call = Function.prototype.call;
|
|
3676
3697
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
3677
|
-
var
|
|
3678
|
-
hasown =
|
|
3698
|
+
var bind2 = requireFunctionBind();
|
|
3699
|
+
hasown = bind2.call(call, $hasOwn);
|
|
3679
3700
|
return hasown;
|
|
3680
3701
|
}
|
|
3681
3702
|
var undefined$1;
|
|
@@ -3689,7 +3710,7 @@ var $TypeError$3 = type;
|
|
|
3689
3710
|
var $URIError = uri;
|
|
3690
3711
|
var abs = abs$1;
|
|
3691
3712
|
var floor = floor$1;
|
|
3692
|
-
var max = max$
|
|
3713
|
+
var max = max$1;
|
|
3693
3714
|
var min = min$1;
|
|
3694
3715
|
var pow = pow$1;
|
|
3695
3716
|
var round = round$1;
|
|
@@ -3723,7 +3744,7 @@ var getProto = requireGetProto();
|
|
|
3723
3744
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
3724
3745
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
3725
3746
|
var $apply = requireFunctionApply();
|
|
3726
|
-
var $call =
|
|
3747
|
+
var $call = requireFunctionCall();
|
|
3727
3748
|
var needsEval = {};
|
|
3728
3749
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
3729
3750
|
var INTRINSICS = {
|
|
@@ -3894,13 +3915,13 @@ var LEGACY_ALIASES = {
|
|
|
3894
3915
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
3895
3916
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
3896
3917
|
};
|
|
3897
|
-
var
|
|
3918
|
+
var bind = requireFunctionBind();
|
|
3898
3919
|
var hasOwn = requireHasown();
|
|
3899
|
-
var $concat =
|
|
3900
|
-
var $spliceApply =
|
|
3901
|
-
var $replace =
|
|
3902
|
-
var $strSlice =
|
|
3903
|
-
var $exec =
|
|
3920
|
+
var $concat = bind.call($call, Array.prototype.concat);
|
|
3921
|
+
var $spliceApply = bind.call($apply, Array.prototype.splice);
|
|
3922
|
+
var $replace = bind.call($call, String.prototype.replace);
|
|
3923
|
+
var $strSlice = bind.call($call, String.prototype.slice);
|
|
3924
|
+
var $exec = bind.call($call, RegExp.prototype.exec);
|
|
3904
3925
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
3905
3926
|
var reEscapeChar = /\\(\\)?/g;
|
|
3906
3927
|
var stringToPath = function stringToPath2(string) {
|
|
@@ -3,9 +3,9 @@ import { Layouts, useQueryParams as useQueryParams$1, getFetchClient, Pagination
|
|
|
3
3
|
import { useNavigate, useLocation, useParams, Routes, Route } from "react-router-dom";
|
|
4
4
|
import { Provider } from "@radix-ui/react-tooltip";
|
|
5
5
|
import m__default, { useState, useCallback, useMemo, useEffect, useRef, useLayoutEffect } from "react";
|
|
6
|
-
import { z as zc, T, R, N as Nn, A as Ar, S as S1, k as k1, a as A1, b as Tr, E, t as t1, v as v1, C as C1, $ as $1, c as bo, w as wo, h as h0, d as a0, o as ot, K as Km, x as x1, G as G0, e as vm, g as getFirebaseConfig$1, F as Fm, D as D1, p as pl } from "./api-
|
|
6
|
+
import { z as zc, T, R, N as Nn, A as Ar, S as S1, k as k1, a as A1, b as Tr, E, t as t1, v as v1, C as C1, $ as $1, c as bo, w as wo, h as h0, d as a0, o as ot, K as Km, x as x1, G as G0, e as vm, g as getFirebaseConfig$1, F as Fm, D as D1, p as pl } from "./api-NexSh9zC.mjs";
|
|
7
7
|
import { useIntl } from "react-intl";
|
|
8
|
-
import { i as isArguments_1, a as isBufferExports, b as isTypedArray_1, c as isLength_1, d as isFunction_1, _ as _getTag, e as _Stack, f as _equalArrays, g as _equalByTag, h as isObjectLike_1, j as getDefaultExportFromCjs, U as U2, k as _baseGetTag, l as _MapCache, m as _Symbol, n as m3, o as bn, N as Nn$1, Y as Y2, J as J2, P as PLUGIN_ID, p as getAugmentedNamespace, q as commonjsGlobal, u as un, s as sn, r as _3 } from "./index-
|
|
8
|
+
import { i as isArguments_1, a as isBufferExports, b as isTypedArray_1, c as isLength_1, d as isFunction_1, _ as _getTag, e as _Stack, f as _equalArrays, g as _equalByTag, h as isObjectLike_1, j as getDefaultExportFromCjs, U as U2, k as _baseGetTag, l as _MapCache, m as _Symbol, n as m3, o as bn, N as Nn$1, Y as Y2, J as J2, P as PLUGIN_ID, p as getAugmentedNamespace, q as commonjsGlobal, u as un, s as sn, r as _3 } from "./index-B9spFspk.mjs";
|
|
9
9
|
import styled from "styled-components";
|
|
10
10
|
import { RxCheck, RxCross2 } from "react-icons/rx";
|
|
11
11
|
import { AiOutlineUserAdd, AiFillPhone, AiFillMail, AiFillYahoo, AiFillGithub, AiFillTwitterCircle, AiFillFacebook, AiFillApple, AiFillGoogleCircle } from "react-icons/ai";
|
|
@@ -2979,7 +2979,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
2979
2979
|
var ys = arrObjKeys(obj, inspect2);
|
|
2980
2980
|
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
2981
2981
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
2982
|
-
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
2982
|
+
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr$1(obj), 8, -1) : protoTag ? "Object" : "";
|
|
2983
2983
|
var constructorTag = isPlainObject || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
2984
2984
|
var tag = constructorTag + (stringTag || protoTag ? "[" + $join.call($concat$1.call([], stringTag || [], protoTag || []), ": ") + "] " : "");
|
|
2985
2985
|
if (ys.length === 0) {
|
|
@@ -3004,25 +3004,25 @@ function canTrustToString(obj) {
|
|
|
3004
3004
|
return !toStringTag || !(typeof obj === "object" && (toStringTag in obj || typeof obj[toStringTag] !== "undefined"));
|
|
3005
3005
|
}
|
|
3006
3006
|
function isArray$3(obj) {
|
|
3007
|
-
return toStr(obj) === "[object Array]" && canTrustToString(obj);
|
|
3007
|
+
return toStr$1(obj) === "[object Array]" && canTrustToString(obj);
|
|
3008
3008
|
}
|
|
3009
3009
|
function isDate(obj) {
|
|
3010
|
-
return toStr(obj) === "[object Date]" && canTrustToString(obj);
|
|
3010
|
+
return toStr$1(obj) === "[object Date]" && canTrustToString(obj);
|
|
3011
3011
|
}
|
|
3012
3012
|
function isRegExp$1(obj) {
|
|
3013
|
-
return toStr(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
3013
|
+
return toStr$1(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
3014
3014
|
}
|
|
3015
3015
|
function isError(obj) {
|
|
3016
|
-
return toStr(obj) === "[object Error]" && canTrustToString(obj);
|
|
3016
|
+
return toStr$1(obj) === "[object Error]" && canTrustToString(obj);
|
|
3017
3017
|
}
|
|
3018
3018
|
function isString(obj) {
|
|
3019
|
-
return toStr(obj) === "[object String]" && canTrustToString(obj);
|
|
3019
|
+
return toStr$1(obj) === "[object String]" && canTrustToString(obj);
|
|
3020
3020
|
}
|
|
3021
3021
|
function isNumber(obj) {
|
|
3022
|
-
return toStr(obj) === "[object Number]" && canTrustToString(obj);
|
|
3022
|
+
return toStr$1(obj) === "[object Number]" && canTrustToString(obj);
|
|
3023
3023
|
}
|
|
3024
3024
|
function isBoolean(obj) {
|
|
3025
|
-
return toStr(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
3025
|
+
return toStr$1(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
3026
3026
|
}
|
|
3027
3027
|
function isSymbol(obj) {
|
|
3028
3028
|
if (hasShammedSymbols) {
|
|
@@ -3058,7 +3058,7 @@ var hasOwn$1 = Object.prototype.hasOwnProperty || function(key) {
|
|
|
3058
3058
|
function has$3(obj, key) {
|
|
3059
3059
|
return hasOwn$1.call(obj, key);
|
|
3060
3060
|
}
|
|
3061
|
-
function toStr(obj) {
|
|
3061
|
+
function toStr$1(obj) {
|
|
3062
3062
|
return objectToString.call(obj);
|
|
3063
3063
|
}
|
|
3064
3064
|
function nameOf(f) {
|
|
@@ -3367,7 +3367,7 @@ var syntax = SyntaxError;
|
|
|
3367
3367
|
var uri = URIError;
|
|
3368
3368
|
var abs$1 = Math.abs;
|
|
3369
3369
|
var floor$1 = Math.floor;
|
|
3370
|
-
var max$
|
|
3370
|
+
var max$2 = Math.max;
|
|
3371
3371
|
var min$1 = Math.min;
|
|
3372
3372
|
var pow$1 = Math.pow;
|
|
3373
3373
|
var round$1 = Math.round;
|
|
@@ -3496,99 +3496,78 @@ function requireObject_getPrototypeOf() {
|
|
|
3496
3496
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
3497
3497
|
return Object_getPrototypeOf;
|
|
3498
3498
|
}
|
|
3499
|
-
var
|
|
3500
|
-
var
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
var
|
|
3505
|
-
var
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
var
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
}
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
var str = "";
|
|
3527
|
-
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
3528
|
-
str += arr[i2];
|
|
3529
|
-
if (i2 + 1 < arr.length) {
|
|
3530
|
-
str += joiner;
|
|
3531
|
-
}
|
|
3499
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
3500
|
+
var toStr = Object.prototype.toString;
|
|
3501
|
+
var max$1 = Math.max;
|
|
3502
|
+
var funcType = "[object Function]";
|
|
3503
|
+
var concatty = function concatty2(a3, b2) {
|
|
3504
|
+
var arr = [];
|
|
3505
|
+
for (var i2 = 0; i2 < a3.length; i2 += 1) {
|
|
3506
|
+
arr[i2] = a3[i2];
|
|
3507
|
+
}
|
|
3508
|
+
for (var j = 0; j < b2.length; j += 1) {
|
|
3509
|
+
arr[j + a3.length] = b2[j];
|
|
3510
|
+
}
|
|
3511
|
+
return arr;
|
|
3512
|
+
};
|
|
3513
|
+
var slicy = function slicy2(arrLike, offset) {
|
|
3514
|
+
var arr = [];
|
|
3515
|
+
for (var i2 = offset, j = 0; i2 < arrLike.length; i2 += 1, j += 1) {
|
|
3516
|
+
arr[j] = arrLike[i2];
|
|
3517
|
+
}
|
|
3518
|
+
return arr;
|
|
3519
|
+
};
|
|
3520
|
+
var joiny = function(arr, joiner) {
|
|
3521
|
+
var str = "";
|
|
3522
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
3523
|
+
str += arr[i2];
|
|
3524
|
+
if (i2 + 1 < arr.length) {
|
|
3525
|
+
str += joiner;
|
|
3532
3526
|
}
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
);
|
|
3548
|
-
if (Object(result) === result) {
|
|
3549
|
-
return result;
|
|
3550
|
-
}
|
|
3551
|
-
return this;
|
|
3552
|
-
}
|
|
3553
|
-
return target.apply(
|
|
3554
|
-
that,
|
|
3527
|
+
}
|
|
3528
|
+
return str;
|
|
3529
|
+
};
|
|
3530
|
+
var implementation$1 = function bind(that) {
|
|
3531
|
+
var target = this;
|
|
3532
|
+
if (typeof target !== "function" || toStr.apply(target) !== funcType) {
|
|
3533
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
3534
|
+
}
|
|
3535
|
+
var args = slicy(arguments, 1);
|
|
3536
|
+
var bound;
|
|
3537
|
+
var binder = function() {
|
|
3538
|
+
if (this instanceof bound) {
|
|
3539
|
+
var result = target.apply(
|
|
3540
|
+
this,
|
|
3555
3541
|
concatty(args, arguments)
|
|
3556
3542
|
);
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
boundArgs[i2] = "$" + i2;
|
|
3562
|
-
}
|
|
3563
|
-
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
3564
|
-
if (target.prototype) {
|
|
3565
|
-
var Empty = function Empty2() {
|
|
3566
|
-
};
|
|
3567
|
-
Empty.prototype = target.prototype;
|
|
3568
|
-
bound.prototype = new Empty();
|
|
3569
|
-
Empty.prototype = null;
|
|
3543
|
+
if (Object(result) === result) {
|
|
3544
|
+
return result;
|
|
3545
|
+
}
|
|
3546
|
+
return this;
|
|
3570
3547
|
}
|
|
3571
|
-
return
|
|
3548
|
+
return target.apply(
|
|
3549
|
+
that,
|
|
3550
|
+
concatty(args, arguments)
|
|
3551
|
+
);
|
|
3572
3552
|
};
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
var
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
}
|
|
3553
|
+
var boundLength = max$1(0, target.length - args.length);
|
|
3554
|
+
var boundArgs = [];
|
|
3555
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
3556
|
+
boundArgs[i2] = "$" + i2;
|
|
3557
|
+
}
|
|
3558
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
3559
|
+
if (target.prototype) {
|
|
3560
|
+
var Empty = function Empty2() {
|
|
3561
|
+
};
|
|
3562
|
+
Empty.prototype = target.prototype;
|
|
3563
|
+
bound.prototype = new Empty();
|
|
3564
|
+
Empty.prototype = null;
|
|
3565
|
+
}
|
|
3566
|
+
return bound;
|
|
3567
|
+
};
|
|
3568
|
+
var implementation = implementation$1;
|
|
3569
|
+
var functionBind = Function.prototype.bind || implementation;
|
|
3570
|
+
var functionCall = Function.prototype.call;
|
|
3592
3571
|
var functionApply;
|
|
3593
3572
|
var hasRequiredFunctionApply;
|
|
3594
3573
|
function requireFunctionApply() {
|
|
@@ -3598,14 +3577,14 @@ function requireFunctionApply() {
|
|
|
3598
3577
|
return functionApply;
|
|
3599
3578
|
}
|
|
3600
3579
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
3601
|
-
var bind$2 =
|
|
3580
|
+
var bind$2 = functionBind;
|
|
3602
3581
|
var $apply$1 = requireFunctionApply();
|
|
3603
|
-
var $call$2 =
|
|
3582
|
+
var $call$2 = functionCall;
|
|
3604
3583
|
var $reflectApply = reflectApply;
|
|
3605
3584
|
var actualApply = $reflectApply || bind$2.call($call$2, $apply$1);
|
|
3606
|
-
var bind$1 =
|
|
3585
|
+
var bind$1 = functionBind;
|
|
3607
3586
|
var $TypeError$4 = type;
|
|
3608
|
-
var $call$1 =
|
|
3587
|
+
var $call$1 = functionCall;
|
|
3609
3588
|
var $actualApply = actualApply;
|
|
3610
3589
|
var callBindApplyHelpers = function callBindBasic(args) {
|
|
3611
3590
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -3671,8 +3650,8 @@ function requireHasown() {
|
|
|
3671
3650
|
hasRequiredHasown = 1;
|
|
3672
3651
|
var call = Function.prototype.call;
|
|
3673
3652
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
3674
|
-
var
|
|
3675
|
-
hasown =
|
|
3653
|
+
var bind3 = functionBind;
|
|
3654
|
+
hasown = bind3.call(call, $hasOwn);
|
|
3676
3655
|
return hasown;
|
|
3677
3656
|
}
|
|
3678
3657
|
var undefined$1;
|
|
@@ -3686,7 +3665,7 @@ var $TypeError$3 = type;
|
|
|
3686
3665
|
var $URIError = uri;
|
|
3687
3666
|
var abs = abs$1;
|
|
3688
3667
|
var floor = floor$1;
|
|
3689
|
-
var max = max$
|
|
3668
|
+
var max = max$2;
|
|
3690
3669
|
var min = min$1;
|
|
3691
3670
|
var pow = pow$1;
|
|
3692
3671
|
var round = round$1;
|
|
@@ -3720,7 +3699,7 @@ var getProto = requireGetProto();
|
|
|
3720
3699
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
3721
3700
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
3722
3701
|
var $apply = requireFunctionApply();
|
|
3723
|
-
var $call =
|
|
3702
|
+
var $call = functionCall;
|
|
3724
3703
|
var needsEval = {};
|
|
3725
3704
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
3726
3705
|
var INTRINSICS = {
|
|
@@ -3891,13 +3870,13 @@ var LEGACY_ALIASES = {
|
|
|
3891
3870
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
3892
3871
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
3893
3872
|
};
|
|
3894
|
-
var
|
|
3873
|
+
var bind2 = functionBind;
|
|
3895
3874
|
var hasOwn = requireHasown();
|
|
3896
|
-
var $concat =
|
|
3897
|
-
var $spliceApply =
|
|
3898
|
-
var $replace =
|
|
3899
|
-
var $strSlice =
|
|
3900
|
-
var $exec =
|
|
3875
|
+
var $concat = bind2.call($call, Array.prototype.concat);
|
|
3876
|
+
var $spliceApply = bind2.call($apply, Array.prototype.splice);
|
|
3877
|
+
var $replace = bind2.call($call, String.prototype.replace);
|
|
3878
|
+
var $strSlice = bind2.call($call, String.prototype.slice);
|
|
3879
|
+
var $exec = bind2.call($call, RegExp.prototype.exec);
|
|
3901
3880
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
3902
3881
|
var reEscapeChar = /\\(\\)?/g;
|
|
3903
3882
|
var stringToPath = function stringToPath2(string) {
|
|
@@ -4,7 +4,7 @@ const m = require("react");
|
|
|
4
4
|
const jsxRuntime = require("react/jsx-runtime");
|
|
5
5
|
const rt = require("@radix-ui/react-tooltip");
|
|
6
6
|
const we$1 = require("react-dom");
|
|
7
|
-
const index$2 = require("./index-
|
|
7
|
+
const index$2 = require("./index-ROJyqJld.js");
|
|
8
8
|
const admin = require("@strapi/strapi/admin");
|
|
9
9
|
function _interopNamespace(e) {
|
|
10
10
|
if (e && e.__esModule) return e;
|
|
@@ -5,7 +5,7 @@ import { jsx, jsxs, Fragment as Fragment$1 } from "react/jsx-runtime";
|
|
|
5
5
|
import * as rt from "@radix-ui/react-tooltip";
|
|
6
6
|
import * as we$1 from "react-dom";
|
|
7
7
|
import we__default, { flushSync, createPortal } from "react-dom";
|
|
8
|
-
import { q as commonjsGlobal, J as J2, R as R3, C as C5, t as f5, v as a5, N as Nn$1, w as r3, x as f3, u as un$1, y as w5, z as h5, K as K2, A as o5, P as PLUGIN_ID } from "./index-
|
|
8
|
+
import { q as commonjsGlobal, J as J2, R as R3, C as C5, t as f5, v as a5, N as Nn$1, w as r3, x as f3, u as un$1, y as w5, z as h5, K as K2, A as o5, P as PLUGIN_ID } from "./index-B9spFspk.mjs";
|
|
9
9
|
import { getFetchClient } from "@strapi/strapi/admin";
|
|
10
10
|
function $b1b2314f5f9a1d84$export$25bec8c6f54ee79a(callback) {
|
|
11
11
|
const callbackRef = useRef(callback);
|
|
@@ -2662,7 +2662,7 @@ const index = {
|
|
|
2662
2662
|
id: `${PLUGIN_ID}.page.title`,
|
|
2663
2663
|
defaultMessage: PLUGIN_ID
|
|
2664
2664
|
},
|
|
2665
|
-
Component: () => import("./App-
|
|
2665
|
+
Component: () => import("./App-J0Ks5XlI.mjs").then((mod) => ({
|
|
2666
2666
|
default: mod.App
|
|
2667
2667
|
})),
|
|
2668
2668
|
permissions: PERMISSIONS["menu-link"]
|
|
@@ -2684,7 +2684,7 @@ const index = {
|
|
|
2684
2684
|
id: "settings",
|
|
2685
2685
|
to: `/settings/${PLUGIN_ID}`,
|
|
2686
2686
|
async Component() {
|
|
2687
|
-
const component = await import("./index-
|
|
2687
|
+
const component = await import("./index-Bdn3O-sg.mjs");
|
|
2688
2688
|
return component.default;
|
|
2689
2689
|
},
|
|
2690
2690
|
permissions: PERMISSIONS["menu-link"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useEffect } from "react";
|
|
3
|
-
import { T, R, E, J as Jm, N as Nn, G as G0, I as Is, M as M1, D as D1, i as i1, t as t1, g as getFirebaseConfig, s as saveFirebaseConfig, f as delFirebaseConfig, j as savePasswordSettings } from "./api-
|
|
3
|
+
import { T, R, E, J as Jm, N as Nn, G as G0, I as Is, M as M1, D as D1, i as i1, t as t1, g as getFirebaseConfig, s as saveFirebaseConfig, f as delFirebaseConfig, j as savePasswordSettings } from "./api-NexSh9zC.mjs";
|
|
4
4
|
import { useNotification, Page } from "@strapi/strapi/admin";
|
|
5
5
|
import { useNavigate } from "react-router-dom";
|
|
6
6
|
function SettingsPage() {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const jsxRuntime = require("react/jsx-runtime");
|
|
4
4
|
const m = require("react");
|
|
5
|
-
const api = require("./api-
|
|
5
|
+
const api = require("./api-FVfrlu9T.js");
|
|
6
6
|
const admin = require("@strapi/strapi/admin");
|
|
7
7
|
const reactRouterDom = require("react-router-dom");
|
|
8
8
|
function SettingsPage() {
|
|
@@ -2663,7 +2663,7 @@ const index = {
|
|
|
2663
2663
|
id: `${PLUGIN_ID}.page.title`,
|
|
2664
2664
|
defaultMessage: PLUGIN_ID
|
|
2665
2665
|
},
|
|
2666
|
-
Component: () => Promise.resolve().then(() => require("./App-
|
|
2666
|
+
Component: () => Promise.resolve().then(() => require("./App-Dg_AxJhA.js")).then((mod) => ({
|
|
2667
2667
|
default: mod.App
|
|
2668
2668
|
})),
|
|
2669
2669
|
permissions: PERMISSIONS["menu-link"]
|
|
@@ -2685,7 +2685,7 @@ const index = {
|
|
|
2685
2685
|
id: "settings",
|
|
2686
2686
|
to: `/settings/${PLUGIN_ID}`,
|
|
2687
2687
|
async Component() {
|
|
2688
|
-
const component = await Promise.resolve().then(() => require("./index-
|
|
2688
|
+
const component = await Promise.resolve().then(() => require("./index-D41v41O3.js"));
|
|
2689
2689
|
return component.default;
|
|
2690
2690
|
},
|
|
2691
2691
|
permissions: PERMISSIONS["menu-link"]
|
package/dist/admin/index.js
CHANGED
package/dist/admin/index.mjs
CHANGED
package/package.json
CHANGED