beca-ui 2.0.20-beta.36 → 2.0.20-beta.38
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/beca-ui.js
CHANGED
|
@@ -85161,126 +85161,33 @@ process.env.NODE_ENV !== "production" && (bue.displayName = "Dragger");
|
|
|
85161
85161
|
const B4 = Fz;
|
|
85162
85162
|
B4.Dragger = bue;
|
|
85163
85163
|
B4.LIST_IGNORE = HC;
|
|
85164
|
-
const ar = (e) => {
|
|
85165
|
-
const {
|
|
85166
|
-
children: t,
|
|
85167
|
-
icon: n,
|
|
85168
|
-
htmlType: r = "button",
|
|
85169
|
-
loading: o,
|
|
85170
|
-
disabled: i,
|
|
85171
|
-
...a
|
|
85172
|
-
} = e;
|
|
85173
|
-
return /* @__PURE__ */ mn(
|
|
85174
|
-
"button",
|
|
85175
|
-
{
|
|
85176
|
-
...a,
|
|
85177
|
-
className: YVe(e),
|
|
85178
|
-
type: r,
|
|
85179
|
-
disabled: o || i,
|
|
85180
|
-
children: [
|
|
85181
|
-
o ? /* @__PURE__ */ A("span", { className: "btn-icon spinning-btn-icon ", children: /* @__PURE__ */ A("span", { className: "beca-icon beca-spin-spinning", children: /* @__PURE__ */ A(
|
|
85182
|
-
"svg",
|
|
85183
|
-
{
|
|
85184
|
-
width: "1em",
|
|
85185
|
-
height: "1em",
|
|
85186
|
-
viewBox: "0 0 24 24",
|
|
85187
|
-
fill: "none",
|
|
85188
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
85189
|
-
children: /* @__PURE__ */ A(
|
|
85190
|
-
"path",
|
|
85191
|
-
{
|
|
85192
|
-
d: "M18.8707 19.2902C15.0807 22.8802 8.93069 22.8802 5.13069 19.2902C1.02069 15.4002 0.950688 8.9202 4.93069 4.9502",
|
|
85193
|
-
stroke: "currentcolor",
|
|
85194
|
-
strokeWidth: "1.5",
|
|
85195
|
-
strokeLinecap: "round",
|
|
85196
|
-
strokeLinejoin: "round"
|
|
85197
|
-
}
|
|
85198
|
-
)
|
|
85199
|
-
}
|
|
85200
|
-
) }) }) : /* @__PURE__ */ A("span", { className: "btn-icon", children: n }),
|
|
85201
|
-
n && t && /* @__PURE__ */ A("div", { className: "btn-space" }),
|
|
85202
|
-
/* @__PURE__ */ A("span", { className: "btn-content", children: t })
|
|
85203
|
-
]
|
|
85204
|
-
}
|
|
85205
|
-
);
|
|
85206
|
-
}, YVe = (e) => {
|
|
85207
|
-
const {
|
|
85208
|
-
size: t = "success",
|
|
85209
|
-
secondary: n,
|
|
85210
|
-
status: r = "info",
|
|
85211
|
-
disabled: o = !1,
|
|
85212
|
-
shape: i = "default",
|
|
85213
|
-
type: a = "primary",
|
|
85214
|
-
loading: l,
|
|
85215
|
-
block: s,
|
|
85216
|
-
className: c
|
|
85217
|
-
} = e;
|
|
85218
|
-
let d = "beca-btn";
|
|
85219
|
-
switch (c && (d += " " + c), t === "small" ? d += " small-btn" : t === "large" && (d += " large-btn"), n && (d += " secondary"), (l || o) && (d += " disabled"), s && (d += " block-btn"), r) {
|
|
85220
|
-
case "info":
|
|
85221
|
-
d += " info-button";
|
|
85222
|
-
break;
|
|
85223
|
-
case "success":
|
|
85224
|
-
d += " success-button";
|
|
85225
|
-
break;
|
|
85226
|
-
case "warning":
|
|
85227
|
-
d += " warning-button";
|
|
85228
|
-
break;
|
|
85229
|
-
case "danger":
|
|
85230
|
-
d += " danger-button";
|
|
85231
|
-
break;
|
|
85232
|
-
default:
|
|
85233
|
-
d += " default-button";
|
|
85234
|
-
break;
|
|
85235
|
-
}
|
|
85236
|
-
switch (i) {
|
|
85237
|
-
case "round":
|
|
85238
|
-
d += " round-btn";
|
|
85239
|
-
break;
|
|
85240
|
-
case "circle":
|
|
85241
|
-
d += " circle-btn";
|
|
85242
|
-
break;
|
|
85243
|
-
}
|
|
85244
|
-
switch (a) {
|
|
85245
|
-
case "dashed":
|
|
85246
|
-
d += n ? " dashed-btn" : " secondary dashed-btn";
|
|
85247
|
-
break;
|
|
85248
|
-
case "link":
|
|
85249
|
-
d += " link-btn";
|
|
85250
|
-
break;
|
|
85251
|
-
case "text":
|
|
85252
|
-
d += " text-btn";
|
|
85253
|
-
break;
|
|
85254
|
-
}
|
|
85255
|
-
return d;
|
|
85256
|
-
};
|
|
85257
85164
|
function Sue(e, t) {
|
|
85258
85165
|
return function() {
|
|
85259
85166
|
return e.apply(t, arguments);
|
|
85260
85167
|
};
|
|
85261
85168
|
}
|
|
85262
|
-
const { toString:
|
|
85263
|
-
const n =
|
|
85169
|
+
const { toString: YVe } = Object.prototype, { getPrototypeOf: Bz } = Object, nO = /* @__PURE__ */ ((e) => (t) => {
|
|
85170
|
+
const n = YVe.call(t);
|
|
85264
85171
|
return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
|
|
85265
85172
|
})(/* @__PURE__ */ Object.create(null)), Kf = (e) => (e = e.toLowerCase(), (t) => nO(t) === e), rO = (e) => (t) => typeof t === e, { isArray: j4 } = Array, D9 = rO("undefined");
|
|
85266
|
-
function
|
|
85173
|
+
function ZVe(e) {
|
|
85267
85174
|
return e !== null && !D9(e) && e.constructor !== null && !D9(e.constructor) && yu(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
|
85268
85175
|
}
|
|
85269
85176
|
const wue = Kf("ArrayBuffer");
|
|
85270
|
-
function
|
|
85177
|
+
function JVe(e) {
|
|
85271
85178
|
let t;
|
|
85272
85179
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && wue(e.buffer), t;
|
|
85273
85180
|
}
|
|
85274
|
-
const
|
|
85181
|
+
const QVe = rO("string"), yu = rO("function"), xue = rO("number"), oO = (e) => e !== null && typeof e == "object", eWe = (e) => e === !0 || e === !1, Lw = (e) => {
|
|
85275
85182
|
if (nO(e) !== "object")
|
|
85276
85183
|
return !1;
|
|
85277
85184
|
const t = Bz(e);
|
|
85278
85185
|
return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
|
85279
|
-
},
|
|
85186
|
+
}, tWe = Kf("Date"), nWe = Kf("File"), rWe = Kf("Blob"), oWe = Kf("FileList"), iWe = (e) => oO(e) && yu(e.pipe), aWe = (e) => {
|
|
85280
85187
|
let t;
|
|
85281
85188
|
return e && (typeof FormData == "function" && e instanceof FormData || yu(e.append) && ((t = nO(e)) === "formdata" || // detect form-data instance
|
|
85282
85189
|
t === "object" && yu(e.toString) && e.toString() === "[object FormData]"));
|
|
85283
|
-
},
|
|
85190
|
+
}, lWe = Kf("URLSearchParams"), sWe = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
85284
85191
|
function F6(e, t, { allOwnKeys: n = !1 } = {}) {
|
|
85285
85192
|
if (e === null || typeof e > "u")
|
|
85286
85193
|
return;
|
|
@@ -85314,13 +85221,13 @@ function iL() {
|
|
|
85314
85221
|
arguments[r] && F6(arguments[r], n);
|
|
85315
85222
|
return t;
|
|
85316
85223
|
}
|
|
85317
|
-
const
|
|
85224
|
+
const cWe = (e, t, n, { allOwnKeys: r } = {}) => (F6(t, (o, i) => {
|
|
85318
85225
|
n && yu(o) ? e[i] = Sue(o, n) : e[i] = o;
|
|
85319
|
-
}, { allOwnKeys: r }), e),
|
|
85226
|
+
}, { allOwnKeys: r }), e), uWe = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), dWe = (e, t, n, r) => {
|
|
85320
85227
|
e.prototype = Object.create(t.prototype, r), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
|
85321
85228
|
value: t.prototype
|
|
85322
85229
|
}), n && Object.assign(e.prototype, n);
|
|
85323
|
-
},
|
|
85230
|
+
}, fWe = (e, t, n, r) => {
|
|
85324
85231
|
let o, i, a;
|
|
85325
85232
|
const l = {};
|
|
85326
85233
|
if (t = t || {}, e == null)
|
|
@@ -85331,11 +85238,11 @@ const uWe = (e, t, n, { allOwnKeys: r } = {}) => (F6(t, (o, i) => {
|
|
|
85331
85238
|
e = n !== !1 && Bz(e);
|
|
85332
85239
|
} while (e && (!n || n(e, t)) && e !== Object.prototype);
|
|
85333
85240
|
return t;
|
|
85334
|
-
},
|
|
85241
|
+
}, pWe = (e, t, n) => {
|
|
85335
85242
|
e = String(e), (n === void 0 || n > e.length) && (n = e.length), n -= t.length;
|
|
85336
85243
|
const r = e.indexOf(t, n);
|
|
85337
85244
|
return r !== -1 && r === n;
|
|
85338
|
-
},
|
|
85245
|
+
}, hWe = (e) => {
|
|
85339
85246
|
if (!e)
|
|
85340
85247
|
return null;
|
|
85341
85248
|
if (j4(e))
|
|
@@ -85347,31 +85254,31 @@ const uWe = (e, t, n, { allOwnKeys: r } = {}) => (F6(t, (o, i) => {
|
|
|
85347
85254
|
for (; t-- > 0; )
|
|
85348
85255
|
n[t] = e[t];
|
|
85349
85256
|
return n;
|
|
85350
|
-
},
|
|
85257
|
+
}, mWe = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && Bz(Uint8Array)), gWe = (e, t) => {
|
|
85351
85258
|
const r = (e && e[Symbol.iterator]).call(e);
|
|
85352
85259
|
let o;
|
|
85353
85260
|
for (; (o = r.next()) && !o.done; ) {
|
|
85354
85261
|
const i = o.value;
|
|
85355
85262
|
t.call(e, i[0], i[1]);
|
|
85356
85263
|
}
|
|
85357
|
-
},
|
|
85264
|
+
}, vWe = (e, t) => {
|
|
85358
85265
|
let n;
|
|
85359
85266
|
const r = [];
|
|
85360
85267
|
for (; (n = e.exec(t)) !== null; )
|
|
85361
85268
|
r.push(n);
|
|
85362
85269
|
return r;
|
|
85363
|
-
},
|
|
85270
|
+
}, yWe = Kf("HTMLFormElement"), CWe = (e) => e.toLowerCase().replace(
|
|
85364
85271
|
/[-_\s]([a-z\d])(\w*)/g,
|
|
85365
85272
|
function(n, r, o) {
|
|
85366
85273
|
return r.toUpperCase() + o;
|
|
85367
85274
|
}
|
|
85368
|
-
), $X = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype),
|
|
85275
|
+
), $X = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), bWe = Kf("RegExp"), Nue = (e, t) => {
|
|
85369
85276
|
const n = Object.getOwnPropertyDescriptors(e), r = {};
|
|
85370
85277
|
F6(n, (o, i) => {
|
|
85371
85278
|
let a;
|
|
85372
85279
|
(a = t(o, i, e)) !== !1 && (r[i] = a || o);
|
|
85373
85280
|
}), Object.defineProperties(e, r);
|
|
85374
|
-
},
|
|
85281
|
+
}, SWe = (e) => {
|
|
85375
85282
|
Nue(e, (t, n) => {
|
|
85376
85283
|
if (yu(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
|
|
85377
85284
|
return !1;
|
|
@@ -85386,29 +85293,29 @@ const uWe = (e, t, n, { allOwnKeys: r } = {}) => (F6(t, (o, i) => {
|
|
|
85386
85293
|
});
|
|
85387
85294
|
}
|
|
85388
85295
|
});
|
|
85389
|
-
},
|
|
85296
|
+
}, wWe = (e, t) => {
|
|
85390
85297
|
const n = {}, r = (o) => {
|
|
85391
85298
|
o.forEach((i) => {
|
|
85392
85299
|
n[i] = !0;
|
|
85393
85300
|
});
|
|
85394
85301
|
};
|
|
85395
85302
|
return j4(e) ? r(e) : r(String(e).split(t)), n;
|
|
85396
|
-
},
|
|
85397
|
-
},
|
|
85303
|
+
}, xWe = () => {
|
|
85304
|
+
}, EWe = (e, t) => (e = +e, Number.isFinite(e) ? e : t), F_ = "abcdefghijklmnopqrstuvwxyz", OX = "0123456789", Tue = {
|
|
85398
85305
|
DIGIT: OX,
|
|
85399
85306
|
ALPHA: F_,
|
|
85400
85307
|
ALPHA_DIGIT: F_ + F_.toUpperCase() + OX
|
|
85401
|
-
},
|
|
85308
|
+
}, $We = (e = 16, t = Tue.ALPHA_DIGIT) => {
|
|
85402
85309
|
let n = "";
|
|
85403
85310
|
const { length: r } = t;
|
|
85404
85311
|
for (; e--; )
|
|
85405
85312
|
n += t[Math.random() * r | 0];
|
|
85406
85313
|
return n;
|
|
85407
85314
|
};
|
|
85408
|
-
function
|
|
85315
|
+
function OWe(e) {
|
|
85409
85316
|
return !!(e && yu(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
|
|
85410
85317
|
}
|
|
85411
|
-
const
|
|
85318
|
+
const NWe = (e) => {
|
|
85412
85319
|
const t = new Array(10), n = (r, o) => {
|
|
85413
85320
|
if (oO(r)) {
|
|
85414
85321
|
if (t.indexOf(r) >= 0)
|
|
@@ -85425,59 +85332,59 @@ const TWe = (e) => {
|
|
|
85425
85332
|
return r;
|
|
85426
85333
|
};
|
|
85427
85334
|
return n(e, 0);
|
|
85428
|
-
},
|
|
85335
|
+
}, TWe = Kf("AsyncFunction"), MWe = (e) => e && (oO(e) || yu(e)) && yu(e.then) && yu(e.catch), Ut = {
|
|
85429
85336
|
isArray: j4,
|
|
85430
85337
|
isArrayBuffer: wue,
|
|
85431
|
-
isBuffer:
|
|
85432
|
-
isFormData:
|
|
85433
|
-
isArrayBufferView:
|
|
85434
|
-
isString:
|
|
85338
|
+
isBuffer: ZVe,
|
|
85339
|
+
isFormData: aWe,
|
|
85340
|
+
isArrayBufferView: JVe,
|
|
85341
|
+
isString: QVe,
|
|
85435
85342
|
isNumber: xue,
|
|
85436
|
-
isBoolean:
|
|
85343
|
+
isBoolean: eWe,
|
|
85437
85344
|
isObject: oO,
|
|
85438
85345
|
isPlainObject: Lw,
|
|
85439
85346
|
isUndefined: D9,
|
|
85440
|
-
isDate:
|
|
85441
|
-
isFile:
|
|
85442
|
-
isBlob:
|
|
85443
|
-
isRegExp:
|
|
85347
|
+
isDate: tWe,
|
|
85348
|
+
isFile: nWe,
|
|
85349
|
+
isBlob: rWe,
|
|
85350
|
+
isRegExp: bWe,
|
|
85444
85351
|
isFunction: yu,
|
|
85445
|
-
isStream:
|
|
85446
|
-
isURLSearchParams:
|
|
85447
|
-
isTypedArray:
|
|
85448
|
-
isFileList:
|
|
85352
|
+
isStream: iWe,
|
|
85353
|
+
isURLSearchParams: lWe,
|
|
85354
|
+
isTypedArray: mWe,
|
|
85355
|
+
isFileList: oWe,
|
|
85449
85356
|
forEach: F6,
|
|
85450
85357
|
merge: iL,
|
|
85451
|
-
extend:
|
|
85452
|
-
trim:
|
|
85453
|
-
stripBOM:
|
|
85454
|
-
inherits:
|
|
85455
|
-
toFlatObject:
|
|
85358
|
+
extend: cWe,
|
|
85359
|
+
trim: sWe,
|
|
85360
|
+
stripBOM: uWe,
|
|
85361
|
+
inherits: dWe,
|
|
85362
|
+
toFlatObject: fWe,
|
|
85456
85363
|
kindOf: nO,
|
|
85457
85364
|
kindOfTest: Kf,
|
|
85458
|
-
endsWith:
|
|
85459
|
-
toArray:
|
|
85460
|
-
forEachEntry:
|
|
85461
|
-
matchAll:
|
|
85462
|
-
isHTMLForm:
|
|
85365
|
+
endsWith: pWe,
|
|
85366
|
+
toArray: hWe,
|
|
85367
|
+
forEachEntry: gWe,
|
|
85368
|
+
matchAll: vWe,
|
|
85369
|
+
isHTMLForm: yWe,
|
|
85463
85370
|
hasOwnProperty: $X,
|
|
85464
85371
|
hasOwnProp: $X,
|
|
85465
85372
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
85466
85373
|
reduceDescriptors: Nue,
|
|
85467
|
-
freezeMethods:
|
|
85468
|
-
toObjectSet:
|
|
85469
|
-
toCamelCase:
|
|
85470
|
-
noop:
|
|
85471
|
-
toFiniteNumber:
|
|
85374
|
+
freezeMethods: SWe,
|
|
85375
|
+
toObjectSet: wWe,
|
|
85376
|
+
toCamelCase: CWe,
|
|
85377
|
+
noop: xWe,
|
|
85378
|
+
toFiniteNumber: EWe,
|
|
85472
85379
|
findKey: Eue,
|
|
85473
85380
|
global: $ue,
|
|
85474
85381
|
isContextDefined: Oue,
|
|
85475
85382
|
ALPHABET: Tue,
|
|
85476
|
-
generateString:
|
|
85477
|
-
isSpecCompliantForm:
|
|
85478
|
-
toJSONObject:
|
|
85479
|
-
isAsyncFn:
|
|
85480
|
-
isThenable:
|
|
85383
|
+
generateString: $We,
|
|
85384
|
+
isSpecCompliantForm: OWe,
|
|
85385
|
+
toJSONObject: NWe,
|
|
85386
|
+
isAsyncFn: TWe,
|
|
85387
|
+
isThenable: MWe
|
|
85481
85388
|
};
|
|
85482
85389
|
function uo(e, t, n, r, o) {
|
|
85483
85390
|
Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", t && (this.code = t), n && (this.config = n), r && (this.request = r), o && (this.response = o);
|
|
@@ -85529,7 +85436,7 @@ uo.from = (e, t, n, r, o, i) => {
|
|
|
85529
85436
|
return s !== Error.prototype;
|
|
85530
85437
|
}, (l) => l !== "isAxiosError"), uo.call(a, e.message, t, n, r, o), a.cause = e, a.name = e.name, i && Object.assign(a, i), a;
|
|
85531
85438
|
};
|
|
85532
|
-
const
|
|
85439
|
+
const RWe = null;
|
|
85533
85440
|
function aL(e) {
|
|
85534
85441
|
return Ut.isPlainObject(e) || Ut.isArray(e);
|
|
85535
85442
|
}
|
|
@@ -85541,10 +85448,10 @@ function NX(e, t, n) {
|
|
|
85541
85448
|
return o = _ue(o), !n && i ? "[" + o + "]" : o;
|
|
85542
85449
|
}).join(n ? "." : "") : t;
|
|
85543
85450
|
}
|
|
85544
|
-
function
|
|
85451
|
+
function _We(e) {
|
|
85545
85452
|
return Ut.isArray(e) && !e.some(aL);
|
|
85546
85453
|
}
|
|
85547
|
-
const
|
|
85454
|
+
const IWe = Ut.toFlatObject(Ut, {}, null, function(t) {
|
|
85548
85455
|
return /^is[A-Z]/.test(t);
|
|
85549
85456
|
});
|
|
85550
85457
|
function iO(e, t, n) {
|
|
@@ -85574,7 +85481,7 @@ function iO(e, t, n) {
|
|
|
85574
85481
|
if (y && !C && typeof y == "object") {
|
|
85575
85482
|
if (Ut.endsWith(b, "{}"))
|
|
85576
85483
|
b = r ? b : b.slice(0, -2), y = JSON.stringify(y);
|
|
85577
|
-
else if (Ut.isArray(y) &&
|
|
85484
|
+
else if (Ut.isArray(y) && _We(y) || (Ut.isFileList(y) || Ut.endsWith(b, "[]")) && (w = Ut.toArray(y)))
|
|
85578
85485
|
return b = _ue(b), w.forEach(function(O, T) {
|
|
85579
85486
|
!(Ut.isUndefined(O) || O === null) && t.append(
|
|
85580
85487
|
// eslint-disable-next-line no-nested-ternary
|
|
@@ -85585,7 +85492,7 @@ function iO(e, t, n) {
|
|
|
85585
85492
|
}
|
|
85586
85493
|
return aL(y) ? !0 : (t.append(NX(C, b, i), c(y)), !1);
|
|
85587
85494
|
}
|
|
85588
|
-
const f = [], m = Object.assign(
|
|
85495
|
+
const f = [], m = Object.assign(IWe, {
|
|
85589
85496
|
defaultVisitor: d,
|
|
85590
85497
|
convertValue: c,
|
|
85591
85498
|
isVisitable: aL
|
|
@@ -85638,13 +85545,13 @@ Iue.toString = function(t) {
|
|
|
85638
85545
|
return n(o[0]) + "=" + n(o[1]);
|
|
85639
85546
|
}, "").join("&");
|
|
85640
85547
|
};
|
|
85641
|
-
function
|
|
85548
|
+
function PWe(e) {
|
|
85642
85549
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
85643
85550
|
}
|
|
85644
85551
|
function Pue(e, t, n) {
|
|
85645
85552
|
if (!t)
|
|
85646
85553
|
return e;
|
|
85647
|
-
const r = n && n.encode ||
|
|
85554
|
+
const r = n && n.encode || PWe, o = n && n.serialize;
|
|
85648
85555
|
let i;
|
|
85649
85556
|
if (o ? i = o(t, n) : i = Ut.isURLSearchParams(t) ? t.toString() : new jz(t, n).toString(r), i) {
|
|
85650
85557
|
const a = e.indexOf("#");
|
|
@@ -85710,35 +85617,35 @@ const kue = {
|
|
|
85710
85617
|
silentJSONParsing: !0,
|
|
85711
85618
|
forcedJSONParsing: !0,
|
|
85712
85619
|
clarifyTimeoutError: !1
|
|
85713
|
-
},
|
|
85620
|
+
}, kWe = typeof URLSearchParams < "u" ? URLSearchParams : jz, LWe = typeof FormData < "u" ? FormData : null, DWe = typeof Blob < "u" ? Blob : null, AWe = {
|
|
85714
85621
|
isBrowser: !0,
|
|
85715
85622
|
classes: {
|
|
85716
|
-
URLSearchParams:
|
|
85717
|
-
FormData:
|
|
85718
|
-
Blob:
|
|
85623
|
+
URLSearchParams: kWe,
|
|
85624
|
+
FormData: LWe,
|
|
85625
|
+
Blob: DWe
|
|
85719
85626
|
},
|
|
85720
85627
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
85721
|
-
}, Lue = typeof window < "u" && typeof document < "u",
|
|
85722
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function",
|
|
85628
|
+
}, Lue = typeof window < "u" && typeof document < "u", zWe = ((e) => Lue && ["ReactNative", "NativeScript", "NS"].indexOf(e) < 0)(typeof navigator < "u" && navigator.product), HWe = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
85629
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", FWe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
85723
85630
|
__proto__: null,
|
|
85724
85631
|
hasBrowserEnv: Lue,
|
|
85725
|
-
hasStandardBrowserEnv:
|
|
85726
|
-
hasStandardBrowserWebWorkerEnv:
|
|
85632
|
+
hasStandardBrowserEnv: zWe,
|
|
85633
|
+
hasStandardBrowserWebWorkerEnv: HWe
|
|
85727
85634
|
}, Symbol.toStringTag, { value: "Module" })), Tf = {
|
|
85728
|
-
...
|
|
85729
|
-
...
|
|
85635
|
+
...FWe,
|
|
85636
|
+
...AWe
|
|
85730
85637
|
};
|
|
85731
|
-
function
|
|
85638
|
+
function BWe(e, t) {
|
|
85732
85639
|
return iO(e, new Tf.classes.URLSearchParams(), Object.assign({
|
|
85733
85640
|
visitor: function(n, r, o, i) {
|
|
85734
85641
|
return Tf.isNode && Ut.isBuffer(n) ? (this.append(r, n.toString("base64")), !1) : i.defaultVisitor.apply(this, arguments);
|
|
85735
85642
|
}
|
|
85736
85643
|
}, t));
|
|
85737
85644
|
}
|
|
85738
|
-
function
|
|
85645
|
+
function jWe(e) {
|
|
85739
85646
|
return Ut.matchAll(/\w+|\[(\w*)]/g, e).map((t) => t[0] === "[]" ? "" : t[1] || t[0]);
|
|
85740
85647
|
}
|
|
85741
|
-
function
|
|
85648
|
+
function VWe(e) {
|
|
85742
85649
|
const t = {}, n = Object.keys(e);
|
|
85743
85650
|
let r;
|
|
85744
85651
|
const o = n.length;
|
|
@@ -85753,17 +85660,17 @@ function Due(e) {
|
|
|
85753
85660
|
if (a === "__proto__")
|
|
85754
85661
|
return !0;
|
|
85755
85662
|
const l = Number.isFinite(+a), s = i >= n.length;
|
|
85756
|
-
return a = !a && Ut.isArray(o) ? o.length : a, s ? (Ut.hasOwnProp(o, a) ? o[a] = [o[a], r] : o[a] = r, !l) : ((!o[a] || !Ut.isObject(o[a])) && (o[a] = []), t(n, r, o[a], i) && Ut.isArray(o[a]) && (o[a] =
|
|
85663
|
+
return a = !a && Ut.isArray(o) ? o.length : a, s ? (Ut.hasOwnProp(o, a) ? o[a] = [o[a], r] : o[a] = r, !l) : ((!o[a] || !Ut.isObject(o[a])) && (o[a] = []), t(n, r, o[a], i) && Ut.isArray(o[a]) && (o[a] = VWe(o[a])), !l);
|
|
85757
85664
|
}
|
|
85758
85665
|
if (Ut.isFormData(e) && Ut.isFunction(e.entries)) {
|
|
85759
85666
|
const n = {};
|
|
85760
85667
|
return Ut.forEachEntry(e, (r, o) => {
|
|
85761
|
-
t(
|
|
85668
|
+
t(jWe(r), o, n, 0);
|
|
85762
85669
|
}), n;
|
|
85763
85670
|
}
|
|
85764
85671
|
return null;
|
|
85765
85672
|
}
|
|
85766
|
-
function
|
|
85673
|
+
function WWe(e, t, n) {
|
|
85767
85674
|
if (Ut.isString(e))
|
|
85768
85675
|
try {
|
|
85769
85676
|
return (t || JSON.parse)(e), Ut.trim(e);
|
|
@@ -85789,7 +85696,7 @@ const B6 = {
|
|
|
85789
85696
|
let l;
|
|
85790
85697
|
if (i) {
|
|
85791
85698
|
if (r.indexOf("application/x-www-form-urlencoded") > -1)
|
|
85792
|
-
return
|
|
85699
|
+
return BWe(t, this.formSerializer).toString();
|
|
85793
85700
|
if ((l = Ut.isFileList(t)) || r.indexOf("multipart/form-data") > -1) {
|
|
85794
85701
|
const s = this.env && this.env.FormData;
|
|
85795
85702
|
return iO(
|
|
@@ -85799,7 +85706,7 @@ const B6 = {
|
|
|
85799
85706
|
);
|
|
85800
85707
|
}
|
|
85801
85708
|
}
|
|
85802
|
-
return i || o ? (n.setContentType("application/json", !1),
|
|
85709
|
+
return i || o ? (n.setContentType("application/json", !1), WWe(t)) : t;
|
|
85803
85710
|
}],
|
|
85804
85711
|
transformResponse: [function(t) {
|
|
85805
85712
|
const n = this.transitional || B6.transitional, r = n && n.forcedJSONParsing, o = this.responseType === "json";
|
|
@@ -85840,7 +85747,7 @@ const B6 = {
|
|
|
85840
85747
|
Ut.forEach(["delete", "get", "head", "post", "put", "patch"], (e) => {
|
|
85841
85748
|
B6.headers[e] = {};
|
|
85842
85749
|
});
|
|
85843
|
-
const
|
|
85750
|
+
const UWe = Ut.toObjectSet([
|
|
85844
85751
|
"age",
|
|
85845
85752
|
"authorization",
|
|
85846
85753
|
"content-length",
|
|
@@ -85858,12 +85765,12 @@ const KWe = Ut.toObjectSet([
|
|
|
85858
85765
|
"referer",
|
|
85859
85766
|
"retry-after",
|
|
85860
85767
|
"user-agent"
|
|
85861
|
-
]),
|
|
85768
|
+
]), KWe = (e) => {
|
|
85862
85769
|
const t = {};
|
|
85863
85770
|
let n, r, o;
|
|
85864
85771
|
return e && e.split(`
|
|
85865
85772
|
`).forEach(function(a) {
|
|
85866
|
-
o = a.indexOf(":"), n = a.substring(0, o).trim().toLowerCase(), r = a.substring(o + 1).trim(), !(!n || t[n] &&
|
|
85773
|
+
o = a.indexOf(":"), n = a.substring(0, o).trim().toLowerCase(), r = a.substring(o + 1).trim(), !(!n || t[n] && UWe[n]) && (n === "set-cookie" ? t[n] ? t[n].push(r) : t[n] = [r] : t[n] = t[n] ? t[n] + ", " + r : r);
|
|
85867
85774
|
}), t;
|
|
85868
85775
|
}, RX = Symbol("internals");
|
|
85869
85776
|
function vC(e) {
|
|
@@ -85872,14 +85779,14 @@ function vC(e) {
|
|
|
85872
85779
|
function Dw(e) {
|
|
85873
85780
|
return e === !1 || e == null ? e : Ut.isArray(e) ? e.map(Dw) : String(e);
|
|
85874
85781
|
}
|
|
85875
|
-
function
|
|
85782
|
+
function GWe(e) {
|
|
85876
85783
|
const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
85877
85784
|
let r;
|
|
85878
85785
|
for (; r = n.exec(e); )
|
|
85879
85786
|
t[r[1]] = r[2];
|
|
85880
85787
|
return t;
|
|
85881
85788
|
}
|
|
85882
|
-
const
|
|
85789
|
+
const qWe = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
|
|
85883
85790
|
function B_(e, t, n, r, o) {
|
|
85884
85791
|
if (Ut.isFunction(r))
|
|
85885
85792
|
return r.call(this, t, n);
|
|
@@ -85890,10 +85797,10 @@ function B_(e, t, n, r, o) {
|
|
|
85890
85797
|
return r.test(t);
|
|
85891
85798
|
}
|
|
85892
85799
|
}
|
|
85893
|
-
function
|
|
85800
|
+
function XWe(e) {
|
|
85894
85801
|
return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, n, r) => n.toUpperCase() + r);
|
|
85895
85802
|
}
|
|
85896
|
-
function
|
|
85803
|
+
function YWe(e, t) {
|
|
85897
85804
|
const n = Ut.toCamelCase(" " + t);
|
|
85898
85805
|
["get", "set", "has"].forEach((r) => {
|
|
85899
85806
|
Object.defineProperty(e, r + n, {
|
|
@@ -85918,7 +85825,7 @@ let Cu = class {
|
|
|
85918
85825
|
(!f || o[f] === void 0 || c === !0 || c === void 0 && o[f] !== !1) && (o[f || s] = Dw(l));
|
|
85919
85826
|
}
|
|
85920
85827
|
const a = (l, s) => Ut.forEach(l, (c, d) => i(c, d, s));
|
|
85921
|
-
return Ut.isPlainObject(t) || t instanceof this.constructor ? a(t, n) : Ut.isString(t) && (t = t.trim()) && !
|
|
85828
|
+
return Ut.isPlainObject(t) || t instanceof this.constructor ? a(t, n) : Ut.isString(t) && (t = t.trim()) && !qWe(t) ? a(KWe(t), n) : t != null && i(n, t, r), this;
|
|
85922
85829
|
}
|
|
85923
85830
|
get(t, n) {
|
|
85924
85831
|
if (t = vC(t), t) {
|
|
@@ -85928,7 +85835,7 @@ let Cu = class {
|
|
|
85928
85835
|
if (!n)
|
|
85929
85836
|
return o;
|
|
85930
85837
|
if (n === !0)
|
|
85931
|
-
return
|
|
85838
|
+
return GWe(o);
|
|
85932
85839
|
if (Ut.isFunction(n))
|
|
85933
85840
|
return n.call(this, o, r);
|
|
85934
85841
|
if (Ut.isRegExp(n))
|
|
@@ -85972,7 +85879,7 @@ let Cu = class {
|
|
|
85972
85879
|
n[a] = Dw(o), delete n[i];
|
|
85973
85880
|
return;
|
|
85974
85881
|
}
|
|
85975
|
-
const l = t ?
|
|
85882
|
+
const l = t ? XWe(i) : String(i).trim();
|
|
85976
85883
|
l !== i && delete n[i], n[l] = Dw(o), r[l] = !0;
|
|
85977
85884
|
}), this;
|
|
85978
85885
|
}
|
|
@@ -86008,7 +85915,7 @@ let Cu = class {
|
|
|
86008
85915
|
}).accessors, o = this.prototype;
|
|
86009
85916
|
function i(a) {
|
|
86010
85917
|
const l = vC(a);
|
|
86011
|
-
r[l] || (
|
|
85918
|
+
r[l] || (YWe(o, a), r[l] = !0);
|
|
86012
85919
|
}
|
|
86013
85920
|
return Ut.isArray(t) ? t.forEach(i) : i(t), this;
|
|
86014
85921
|
}
|
|
@@ -86040,7 +85947,7 @@ function j6(e, t, n) {
|
|
|
86040
85947
|
Ut.inherits(j6, uo, {
|
|
86041
85948
|
__CANCEL__: !0
|
|
86042
85949
|
});
|
|
86043
|
-
function
|
|
85950
|
+
function ZWe(e, t, n) {
|
|
86044
85951
|
const r = n.config.validateStatus;
|
|
86045
85952
|
!n.status || !r || r(n.status) ? e(n) : t(new uo(
|
|
86046
85953
|
"Request failed with status code " + n.status,
|
|
@@ -86050,7 +85957,7 @@ function JWe(e, t, n) {
|
|
|
86050
85957
|
n
|
|
86051
85958
|
));
|
|
86052
85959
|
}
|
|
86053
|
-
const
|
|
85960
|
+
const JWe = Tf.hasStandardBrowserEnv ? (
|
|
86054
85961
|
// Standard browser envs support document.cookie
|
|
86055
85962
|
{
|
|
86056
85963
|
write(e, t, n, r, o, i) {
|
|
@@ -86077,16 +85984,16 @@ const QWe = Tf.hasStandardBrowserEnv ? (
|
|
|
86077
85984
|
}
|
|
86078
85985
|
}
|
|
86079
85986
|
);
|
|
86080
|
-
function
|
|
85987
|
+
function QWe(e) {
|
|
86081
85988
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(e);
|
|
86082
85989
|
}
|
|
86083
|
-
function
|
|
85990
|
+
function eUe(e, t) {
|
|
86084
85991
|
return t ? e.replace(/\/?\/$/, "") + "/" + t.replace(/^\/+/, "") : e;
|
|
86085
85992
|
}
|
|
86086
85993
|
function zue(e, t) {
|
|
86087
|
-
return e && !
|
|
85994
|
+
return e && !QWe(t) ? eUe(e, t) : t;
|
|
86088
85995
|
}
|
|
86089
|
-
const
|
|
85996
|
+
const tUe = Tf.hasStandardBrowserEnv ? (
|
|
86090
85997
|
// Standard browser envs have full support of the APIs needed to test
|
|
86091
85998
|
// whether the request URL is of the same origin as current location.
|
|
86092
85999
|
function() {
|
|
@@ -86118,11 +86025,11 @@ const nUe = Tf.hasStandardBrowserEnv ? (
|
|
|
86118
86025
|
};
|
|
86119
86026
|
}()
|
|
86120
86027
|
);
|
|
86121
|
-
function
|
|
86028
|
+
function nUe(e) {
|
|
86122
86029
|
const t = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
|
|
86123
86030
|
return t && t[1] || "";
|
|
86124
86031
|
}
|
|
86125
|
-
function
|
|
86032
|
+
function rUe(e, t) {
|
|
86126
86033
|
e = e || 10;
|
|
86127
86034
|
const n = new Array(e), r = new Array(e);
|
|
86128
86035
|
let o = 0, i = 0, a;
|
|
@@ -86140,7 +86047,7 @@ function oUe(e, t) {
|
|
|
86140
86047
|
}
|
|
86141
86048
|
function _X(e, t) {
|
|
86142
86049
|
let n = 0;
|
|
86143
|
-
const r =
|
|
86050
|
+
const r = rUe(50, 250);
|
|
86144
86051
|
return (o) => {
|
|
86145
86052
|
const i = o.loaded, a = o.lengthComputable ? o.total : void 0, l = i - n, s = r(l), c = i <= a;
|
|
86146
86053
|
n = i;
|
|
@@ -86156,7 +86063,7 @@ function _X(e, t) {
|
|
|
86156
86063
|
d[t ? "download" : "upload"] = !0, e(d);
|
|
86157
86064
|
};
|
|
86158
86065
|
}
|
|
86159
|
-
const
|
|
86066
|
+
const oUe = typeof XMLHttpRequest < "u", iUe = oUe && function(e) {
|
|
86160
86067
|
return new Promise(function(n, r) {
|
|
86161
86068
|
let o = e.data;
|
|
86162
86069
|
const i = Cu.from(e.headers).normalize();
|
|
@@ -86193,7 +86100,7 @@ const iUe = typeof XMLHttpRequest < "u", aUe = iUe && function(e) {
|
|
|
86193
86100
|
config: e,
|
|
86194
86101
|
request: f
|
|
86195
86102
|
};
|
|
86196
|
-
|
|
86103
|
+
ZWe(function(O) {
|
|
86197
86104
|
n(O), c();
|
|
86198
86105
|
}, function(O) {
|
|
86199
86106
|
r(O), c();
|
|
@@ -86214,8 +86121,8 @@ const iUe = typeof XMLHttpRequest < "u", aUe = iUe && function(e) {
|
|
|
86214
86121
|
e,
|
|
86215
86122
|
f
|
|
86216
86123
|
)), f = null;
|
|
86217
|
-
}, Tf.hasStandardBrowserEnv && (l && Ut.isFunction(l) && (l = l(e)), l || l !== !1 &&
|
|
86218
|
-
const b = e.xsrfHeaderName && e.xsrfCookieName &&
|
|
86124
|
+
}, Tf.hasStandardBrowserEnv && (l && Ut.isFunction(l) && (l = l(e)), l || l !== !1 && tUe(m))) {
|
|
86125
|
+
const b = e.xsrfHeaderName && e.xsrfCookieName && JWe.read(e.xsrfCookieName);
|
|
86219
86126
|
b && i.set(e.xsrfHeaderName, b);
|
|
86220
86127
|
}
|
|
86221
86128
|
o === void 0 && i.setContentType(null), "setRequestHeader" in f && Ut.forEach(i.toJSON(), function(C, w) {
|
|
@@ -86223,7 +86130,7 @@ const iUe = typeof XMLHttpRequest < "u", aUe = iUe && function(e) {
|
|
|
86223
86130
|
}), Ut.isUndefined(e.withCredentials) || (f.withCredentials = !!e.withCredentials), a && a !== "json" && (f.responseType = e.responseType), typeof e.onDownloadProgress == "function" && f.addEventListener("progress", _X(e.onDownloadProgress, !0)), typeof e.onUploadProgress == "function" && f.upload && f.upload.addEventListener("progress", _X(e.onUploadProgress)), (e.cancelToken || e.signal) && (s = (b) => {
|
|
86224
86131
|
f && (r(!b || b.type ? new j6(null, e, f) : b), f.abort(), f = null);
|
|
86225
86132
|
}, e.cancelToken && e.cancelToken.subscribe(s), e.signal && (e.signal.aborted ? s() : e.signal.addEventListener("abort", s)));
|
|
86226
|
-
const y =
|
|
86133
|
+
const y = nUe(m);
|
|
86227
86134
|
if (y && Tf.protocols.indexOf(y) === -1) {
|
|
86228
86135
|
r(new uo("Unsupported protocol " + y + ":", uo.ERR_BAD_REQUEST, e));
|
|
86229
86136
|
return;
|
|
@@ -86231,8 +86138,8 @@ const iUe = typeof XMLHttpRequest < "u", aUe = iUe && function(e) {
|
|
|
86231
86138
|
f.send(o || null);
|
|
86232
86139
|
});
|
|
86233
86140
|
}, lL = {
|
|
86234
|
-
http:
|
|
86235
|
-
xhr:
|
|
86141
|
+
http: RWe,
|
|
86142
|
+
xhr: iUe
|
|
86236
86143
|
};
|
|
86237
86144
|
Ut.forEach(lL, (e, t) => {
|
|
86238
86145
|
if (e) {
|
|
@@ -86243,7 +86150,7 @@ Ut.forEach(lL, (e, t) => {
|
|
|
86243
86150
|
Object.defineProperty(e, "adapterName", { value: t });
|
|
86244
86151
|
}
|
|
86245
86152
|
});
|
|
86246
|
-
const IX = (e) => `- ${e}`,
|
|
86153
|
+
const IX = (e) => `- ${e}`, aUe = (e) => Ut.isFunction(e) || e === null || e === !1, Hue = {
|
|
86247
86154
|
getAdapter: (e) => {
|
|
86248
86155
|
e = Ut.isArray(e) ? e : [e];
|
|
86249
86156
|
const { length: t } = e;
|
|
@@ -86252,7 +86159,7 @@ const IX = (e) => `- ${e}`, lUe = (e) => Ut.isFunction(e) || e === null || e ===
|
|
|
86252
86159
|
for (let i = 0; i < t; i++) {
|
|
86253
86160
|
n = e[i];
|
|
86254
86161
|
let a;
|
|
86255
|
-
if (r = n, !
|
|
86162
|
+
if (r = n, !aUe(n) && (r = lL[(a = String(n)).toLowerCase()], r === void 0))
|
|
86256
86163
|
throw new uo(`Unknown adapter '${a}'`);
|
|
86257
86164
|
if (r)
|
|
86258
86165
|
break;
|
|
@@ -86388,7 +86295,7 @@ Vz.transitional = function(t, n, r) {
|
|
|
86388
86295
|
)), t ? t(i, a, l) : !0;
|
|
86389
86296
|
};
|
|
86390
86297
|
};
|
|
86391
|
-
function
|
|
86298
|
+
function lUe(e, t, n) {
|
|
86392
86299
|
if (typeof e != "object")
|
|
86393
86300
|
throw new uo("options must be an object", uo.ERR_BAD_OPTION_VALUE);
|
|
86394
86301
|
const r = Object.keys(e);
|
|
@@ -86406,7 +86313,7 @@ function sUe(e, t, n) {
|
|
|
86406
86313
|
}
|
|
86407
86314
|
}
|
|
86408
86315
|
const sL = {
|
|
86409
|
-
assertOptions:
|
|
86316
|
+
assertOptions: lUe,
|
|
86410
86317
|
validators: Vz
|
|
86411
86318
|
}, vh = sL.validators;
|
|
86412
86319
|
let n2 = class {
|
|
@@ -86527,7 +86434,7 @@ Ut.forEach(["post", "put", "patch"], function(t) {
|
|
|
86527
86434
|
}
|
|
86528
86435
|
n2.prototype[t] = n(), n2.prototype[t + "Form"] = n(!0);
|
|
86529
86436
|
});
|
|
86530
|
-
let
|
|
86437
|
+
let sUe = class Bue {
|
|
86531
86438
|
constructor(t) {
|
|
86532
86439
|
if (typeof t != "function")
|
|
86533
86440
|
throw new TypeError("executor must be a function.");
|
|
@@ -86595,12 +86502,12 @@ let cUe = class Bue {
|
|
|
86595
86502
|
};
|
|
86596
86503
|
}
|
|
86597
86504
|
};
|
|
86598
|
-
function
|
|
86505
|
+
function cUe(e) {
|
|
86599
86506
|
return function(n) {
|
|
86600
86507
|
return e.apply(null, n);
|
|
86601
86508
|
};
|
|
86602
86509
|
}
|
|
86603
|
-
function
|
|
86510
|
+
function uUe(e) {
|
|
86604
86511
|
return Ut.isObject(e) && e.isAxiosError === !0;
|
|
86605
86512
|
}
|
|
86606
86513
|
const cL = {
|
|
@@ -86680,7 +86587,7 @@ function jue(e) {
|
|
|
86680
86587
|
const qi = jue(B6);
|
|
86681
86588
|
qi.Axios = n2;
|
|
86682
86589
|
qi.CanceledError = j6;
|
|
86683
|
-
qi.CancelToken =
|
|
86590
|
+
qi.CancelToken = sUe;
|
|
86684
86591
|
qi.isCancel = Aue;
|
|
86685
86592
|
qi.VERSION = Fue;
|
|
86686
86593
|
qi.toFormData = iO;
|
|
@@ -86689,8 +86596,8 @@ qi.Cancel = qi.CanceledError;
|
|
|
86689
86596
|
qi.all = function(t) {
|
|
86690
86597
|
return Promise.all(t);
|
|
86691
86598
|
};
|
|
86692
|
-
qi.spread =
|
|
86693
|
-
qi.isAxiosError =
|
|
86599
|
+
qi.spread = cUe;
|
|
86600
|
+
qi.isAxiosError = uUe;
|
|
86694
86601
|
qi.mergeConfig = s4;
|
|
86695
86602
|
qi.AxiosHeaders = Cu;
|
|
86696
86603
|
qi.formToJSON = (e) => Due(Ut.isHTMLForm(e) ? new FormData(e) : e);
|
|
@@ -86714,407 +86621,99 @@ const {
|
|
|
86714
86621
|
formToJSON: K8t,
|
|
86715
86622
|
getAdapter: G8t,
|
|
86716
86623
|
mergeConfig: q8t
|
|
86717
|
-
} = qi
|
|
86718
|
-
function Wz(e, t = 500) {
|
|
86719
|
-
const [n, r] = gt(e);
|
|
86720
|
-
return tn(() => {
|
|
86721
|
-
const o = setTimeout(() => {
|
|
86722
|
-
r(e);
|
|
86723
|
-
}, t);
|
|
86724
|
-
return () => {
|
|
86725
|
-
clearTimeout(o);
|
|
86726
|
-
};
|
|
86727
|
-
}, [e, t]), n;
|
|
86728
|
-
}
|
|
86729
|
-
const Vue = {
|
|
86730
|
-
search: "Search",
|
|
86731
|
-
support: "Support",
|
|
86732
|
-
hi: "Hi",
|
|
86733
|
-
language: "Language",
|
|
86734
|
-
application: "Application",
|
|
86735
|
-
notifications: "Notifications",
|
|
86736
|
-
cancel: "Cancel",
|
|
86737
|
-
leftAlignment: "Left alignment",
|
|
86738
|
-
rightAlignment: "Right alignment",
|
|
86739
|
-
centerAlignment: "Center alignment",
|
|
86740
|
-
justify: "Justify",
|
|
86741
|
-
customTheme: "Custom theme",
|
|
86742
|
-
font: "Font",
|
|
86743
|
-
enterLink: "Enter link",
|
|
86744
|
-
enterImageLink: "Enter image link",
|
|
86745
|
-
pasteWithTextStylesConfirm: "Do you want to paste with text styles?",
|
|
86746
|
-
paste: "Paste",
|
|
86747
|
-
format: "Format",
|
|
86748
|
-
add1ColumnToTheLeft: "Add 1 column to the left",
|
|
86749
|
-
add1ColumnToTheRight: "Add 1 column to the right",
|
|
86750
|
-
removeColumn: "Remove column",
|
|
86751
|
-
add1RowAbove: "Add 1 row above",
|
|
86752
|
-
add1RowBelow: "Add 1 row below",
|
|
86753
|
-
removeRow: "Remove row",
|
|
86754
|
-
mergeCells: "Merge cells",
|
|
86755
|
-
splitCells: "Split cells",
|
|
86756
|
-
removeTable: "Remove table",
|
|
86757
|
-
undo: "Undo",
|
|
86758
|
-
redo: "Redo",
|
|
86759
|
-
refresh: "Refresh",
|
|
86760
|
-
table: "Table",
|
|
86761
|
-
darkMode: "Dark mode",
|
|
86762
|
-
lightMode: "Light mode",
|
|
86763
|
-
english: "English",
|
|
86764
|
-
vietnamese: "Vietnamese"
|
|
86765
|
-
}, Wue = {
|
|
86766
|
-
search: "Tìm kiếm",
|
|
86767
|
-
support: "Hỗ trợ",
|
|
86768
|
-
hi: "Xin chào",
|
|
86769
|
-
language: "Ngôn ngữ",
|
|
86770
|
-
application: "Ứng dụng",
|
|
86771
|
-
notifications: "Thông báo",
|
|
86772
|
-
cancel: "Hủy",
|
|
86773
|
-
leftAlignment: "Căn trái",
|
|
86774
|
-
rightAlignment: "Căn phải",
|
|
86775
|
-
centerAlignment: "Căn giữa",
|
|
86776
|
-
justify: "Căn đều",
|
|
86777
|
-
customTheme: "Tùy chỉnh giao diện",
|
|
86778
|
-
font: "Font chữ",
|
|
86779
|
-
enterLink: "Nhập link",
|
|
86780
|
-
enterImageLink: "Nhập link ảnh",
|
|
86781
|
-
pasteWithTextStylesConfirm: "Bạn có muốn dán cùng với kiểu chữ?",
|
|
86782
|
-
paste: "Dán",
|
|
86783
|
-
format: "Định dạng",
|
|
86784
|
-
add1ColumnToTheLeft: "Thêm 1 cột bên trái",
|
|
86785
|
-
add1ColumnToTheRight: "Thêm 1 cột bên phải",
|
|
86786
|
-
removeColumn: "Xóa cột",
|
|
86787
|
-
add1RowAbove: "Thêm 1 hàng bên trên",
|
|
86788
|
-
add1RowBelow: "Thêm 1 hàng bên dưới",
|
|
86789
|
-
removeRow: "Xóa hàng",
|
|
86790
|
-
mergeCells: "Ghép ô",
|
|
86791
|
-
splitCells: "Tách ô",
|
|
86792
|
-
removeTable: "Xóa bảng",
|
|
86793
|
-
undo: "Hoàn tác",
|
|
86794
|
-
redo: "Làm lại",
|
|
86795
|
-
refresh: "Thanh tẩy",
|
|
86796
|
-
table: "Bảng",
|
|
86797
|
-
darkMode: "Giao diện tối",
|
|
86798
|
-
lightMode: "Giao diện sáng",
|
|
86799
|
-
english: "Tiếng Anh",
|
|
86800
|
-
vietnamese: "Tiếng Việt"
|
|
86801
|
-
};
|
|
86802
|
-
function X8t() {
|
|
86803
|
-
const [e, t] = gt();
|
|
86804
|
-
return tn(() => {
|
|
86805
|
-
const n = localStorage.getItem("locale");
|
|
86806
|
-
t(n || "vi");
|
|
86807
|
-
}, []), e;
|
|
86808
|
-
}
|
|
86809
|
-
function aO() {
|
|
86810
|
-
const [e, t] = gt({});
|
|
86811
|
-
return tn(() => {
|
|
86812
|
-
const n = localStorage.getItem("locale");
|
|
86813
|
-
t(n === "en" ? Vue : Wue);
|
|
86814
|
-
}, []), e;
|
|
86815
|
-
}
|
|
86816
|
-
function lO() {
|
|
86817
|
-
const [e, t] = gt(!1);
|
|
86818
|
-
return tn(() => {
|
|
86819
|
-
const r = document.querySelector(".mobile-app");
|
|
86820
|
-
t(r != null);
|
|
86821
|
-
}, []), { os: On(() => {
|
|
86822
|
-
const r = window.navigator.userAgent;
|
|
86823
|
-
return r.indexOf("Chrome") != -1 ? "Chrome" : r.indexOf("Firefox") != -1 ? "Firefox" : "Safari";
|
|
86824
|
-
}, []), isMobileApp: e };
|
|
86825
|
-
}
|
|
86826
|
-
function fUe({ config: e, userConfig: t }) {
|
|
86827
|
-
const n = On(() => {
|
|
86828
|
-
const o = { ...Qz };
|
|
86829
|
-
if (e) {
|
|
86830
|
-
const i = { ...e };
|
|
86831
|
-
Object.keys(i).forEach((a) => {
|
|
86832
|
-
Object.keys(i[a]).forEach((l) => {
|
|
86833
|
-
const s = i[a][l];
|
|
86834
|
-
typeof s == "object" ? Object.keys(s).forEach((c) => {
|
|
86835
|
-
o[a][l][c] = s[c];
|
|
86836
|
-
}) : o[a][l] = i[a][l];
|
|
86837
|
-
});
|
|
86838
|
-
});
|
|
86839
|
-
}
|
|
86840
|
-
return o;
|
|
86841
|
-
}, [JSON.stringify(e)]), r = On(() => {
|
|
86842
|
-
let o = {};
|
|
86843
|
-
const i = { ...xXe };
|
|
86844
|
-
if (t) {
|
|
86845
|
-
const a = { ...t };
|
|
86846
|
-
Object.keys(i).forEach((l) => {
|
|
86847
|
-
a[l] !== void 0 && a[l] !== null ? o[l] = a[l] : o[l] = i[l];
|
|
86848
|
-
});
|
|
86849
|
-
} else
|
|
86850
|
-
o = i;
|
|
86851
|
-
return o;
|
|
86852
|
-
}, [t, n]);
|
|
86853
|
-
return { mainLayoutConfig: n, userConfig: r };
|
|
86854
|
-
}
|
|
86855
|
-
function pUe() {
|
|
86856
|
-
if (console && console.warn) {
|
|
86857
|
-
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
86858
|
-
t[n] = arguments[n];
|
|
86859
|
-
typeof t[0] == "string" && (t[0] = `react-i18next:: ${t[0]}`), console.warn(...t);
|
|
86860
|
-
}
|
|
86861
|
-
}
|
|
86862
|
-
const DX = {};
|
|
86863
|
-
function uL() {
|
|
86864
|
-
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
86865
|
-
t[n] = arguments[n];
|
|
86866
|
-
typeof t[0] == "string" && DX[t[0]] || (typeof t[0] == "string" && (DX[t[0]] = /* @__PURE__ */ new Date()), pUe(...t));
|
|
86867
|
-
}
|
|
86868
|
-
const Uue = (e, t) => () => {
|
|
86869
|
-
if (e.isInitialized)
|
|
86870
|
-
t();
|
|
86871
|
-
else {
|
|
86872
|
-
const n = () => {
|
|
86873
|
-
setTimeout(() => {
|
|
86874
|
-
e.off("initialized", n);
|
|
86875
|
-
}, 0), t();
|
|
86876
|
-
};
|
|
86877
|
-
e.on("initialized", n);
|
|
86878
|
-
}
|
|
86879
|
-
};
|
|
86880
|
-
function AX(e, t, n) {
|
|
86881
|
-
e.loadNamespaces(t, Uue(e, n));
|
|
86882
|
-
}
|
|
86883
|
-
function zX(e, t, n, r) {
|
|
86884
|
-
typeof n == "string" && (n = [n]), n.forEach((o) => {
|
|
86885
|
-
e.options.ns.indexOf(o) < 0 && e.options.ns.push(o);
|
|
86886
|
-
}), e.loadLanguages(t, Uue(e, r));
|
|
86887
|
-
}
|
|
86888
|
-
function hUe(e, t) {
|
|
86889
|
-
let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
86890
|
-
const r = t.languages[0], o = t.options ? t.options.fallbackLng : !1, i = t.languages[t.languages.length - 1];
|
|
86891
|
-
if (r.toLowerCase() === "cimode")
|
|
86892
|
-
return !0;
|
|
86893
|
-
const a = (l, s) => {
|
|
86894
|
-
const c = t.services.backendConnector.state[`${l}|${s}`];
|
|
86895
|
-
return c === -1 || c === 2;
|
|
86896
|
-
};
|
|
86897
|
-
return n.bindI18n && n.bindI18n.indexOf("languageChanging") > -1 && t.services.backendConnector.backend && t.isLanguageChangingTo && !a(t.isLanguageChangingTo, e) ? !1 : !!(t.hasResourceBundle(r, e) || !t.services.backendConnector.backend || t.options.resources && !t.options.partialBundledLanguages || a(r, e) && (!o || a(i, e)));
|
|
86898
|
-
}
|
|
86899
|
-
function mUe(e, t) {
|
|
86900
|
-
let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
86901
|
-
return !t.languages || !t.languages.length ? (uL("i18n.languages were undefined or empty", t.languages), !0) : t.options.ignoreJSONStructure !== void 0 ? t.hasLoadedNamespace(e, {
|
|
86902
|
-
lng: n.lng,
|
|
86903
|
-
precheck: (o, i) => {
|
|
86904
|
-
if (n.bindI18n && n.bindI18n.indexOf("languageChanging") > -1 && o.services.backendConnector.backend && o.isLanguageChangingTo && !i(o.isLanguageChangingTo, e))
|
|
86905
|
-
return !1;
|
|
86906
|
-
}
|
|
86907
|
-
}) : hUe(e, t, n);
|
|
86908
|
-
}
|
|
86909
|
-
const gUe = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g, vUe = {
|
|
86910
|
-
"&": "&",
|
|
86911
|
-
"&": "&",
|
|
86912
|
-
"<": "<",
|
|
86913
|
-
"<": "<",
|
|
86914
|
-
">": ">",
|
|
86915
|
-
">": ">",
|
|
86916
|
-
"'": "'",
|
|
86917
|
-
"'": "'",
|
|
86918
|
-
""": '"',
|
|
86919
|
-
""": '"',
|
|
86920
|
-
" ": " ",
|
|
86921
|
-
" ": " ",
|
|
86922
|
-
"©": "©",
|
|
86923
|
-
"©": "©",
|
|
86924
|
-
"®": "®",
|
|
86925
|
-
"®": "®",
|
|
86926
|
-
"…": "…",
|
|
86927
|
-
"…": "…",
|
|
86928
|
-
"/": "/",
|
|
86929
|
-
"/": "/"
|
|
86930
|
-
}, yUe = (e) => vUe[e], CUe = (e) => e.replace(gUe, yUe);
|
|
86931
|
-
let dL = {
|
|
86932
|
-
bindI18n: "languageChanged",
|
|
86933
|
-
bindI18nStore: "",
|
|
86934
|
-
transEmptyNodeValue: "",
|
|
86935
|
-
transSupportBasicHtmlNodes: !0,
|
|
86936
|
-
transWrapTextNodes: "",
|
|
86937
|
-
transKeepBasicHtmlNodesFor: ["br", "strong", "i", "p"],
|
|
86938
|
-
useSuspense: !0,
|
|
86939
|
-
unescape: CUe
|
|
86940
|
-
};
|
|
86941
|
-
function bUe() {
|
|
86942
|
-
let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
86943
|
-
dL = {
|
|
86944
|
-
...dL,
|
|
86945
|
-
...e
|
|
86946
|
-
};
|
|
86947
|
-
}
|
|
86948
|
-
function SUe() {
|
|
86949
|
-
return dL;
|
|
86950
|
-
}
|
|
86951
|
-
let Kue;
|
|
86952
|
-
function wUe(e) {
|
|
86953
|
-
Kue = e;
|
|
86954
|
-
}
|
|
86955
|
-
function xUe() {
|
|
86956
|
-
return Kue;
|
|
86957
|
-
}
|
|
86958
|
-
const EUe = {
|
|
86959
|
-
type: "3rdParty",
|
|
86960
|
-
init(e) {
|
|
86961
|
-
bUe(e.options.react), wUe(e);
|
|
86962
|
-
}
|
|
86963
|
-
}, Gue = Pd();
|
|
86964
|
-
class $Ue {
|
|
86965
|
-
constructor() {
|
|
86966
|
-
this.usedNamespaces = {};
|
|
86967
|
-
}
|
|
86968
|
-
addUsedNamespaces(t) {
|
|
86969
|
-
t.forEach((n) => {
|
|
86970
|
-
this.usedNamespaces[n] || (this.usedNamespaces[n] = !0);
|
|
86971
|
-
});
|
|
86972
|
-
}
|
|
86973
|
-
getUsedNamespaces() {
|
|
86974
|
-
return Object.keys(this.usedNamespaces);
|
|
86975
|
-
}
|
|
86976
|
-
}
|
|
86977
|
-
const OUe = (e, t) => {
|
|
86978
|
-
const n = bt();
|
|
86979
|
-
return tn(() => {
|
|
86980
|
-
n.current = e;
|
|
86981
|
-
}, [e, t]), n.current;
|
|
86982
|
-
};
|
|
86983
|
-
function NUe(e) {
|
|
86984
|
-
let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
86624
|
+
} = qi, ar = (e) => {
|
|
86985
86625
|
const {
|
|
86986
|
-
|
|
86987
|
-
|
|
86988
|
-
|
|
86989
|
-
|
|
86990
|
-
|
|
86991
|
-
|
|
86992
|
-
uL("You will need to pass in an i18next instance by using initReactI18next");
|
|
86993
|
-
const O = ($, M) => typeof M == "string" ? M : M && typeof M == "object" && typeof M.defaultValue == "string" ? M.defaultValue : Array.isArray($) ? $[$.length - 1] : $, T = [O, {}, !1];
|
|
86994
|
-
return T.t = O, T.i18n = {}, T.ready = !1, T;
|
|
86995
|
-
}
|
|
86996
|
-
i.options.react && i.options.react.wait !== void 0 && uL("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");
|
|
86997
|
-
const a = {
|
|
86998
|
-
...SUe(),
|
|
86999
|
-
...i.options.react,
|
|
87000
|
-
...t
|
|
87001
|
-
}, {
|
|
87002
|
-
useSuspense: l,
|
|
87003
|
-
keyPrefix: s
|
|
87004
|
-
} = a;
|
|
87005
|
-
let c = e || o || i.options && i.options.defaultNS;
|
|
87006
|
-
c = typeof c == "string" ? [c] : c || ["translation"], i.reportNamespaces.addUsedNamespaces && i.reportNamespaces.addUsedNamespaces(c);
|
|
87007
|
-
const d = (i.isInitialized || i.initializedStoreOnce) && c.every((O) => mUe(O, i, a));
|
|
87008
|
-
function f() {
|
|
87009
|
-
return i.getFixedT(t.lng || null, a.nsMode === "fallback" ? c : c[0], s);
|
|
87010
|
-
}
|
|
87011
|
-
const [m, g] = gt(f);
|
|
87012
|
-
let y = c.join();
|
|
87013
|
-
t.lng && (y = `${t.lng}${y}`);
|
|
87014
|
-
const b = OUe(y), C = bt(!0);
|
|
87015
|
-
tn(() => {
|
|
87016
|
-
const {
|
|
87017
|
-
bindI18n: O,
|
|
87018
|
-
bindI18nStore: T
|
|
87019
|
-
} = a;
|
|
87020
|
-
C.current = !0, !d && !l && (t.lng ? zX(i, t.lng, c, () => {
|
|
87021
|
-
C.current && g(f);
|
|
87022
|
-
}) : AX(i, c, () => {
|
|
87023
|
-
C.current && g(f);
|
|
87024
|
-
})), d && b && b !== y && C.current && g(f);
|
|
87025
|
-
function $() {
|
|
87026
|
-
C.current && g(f);
|
|
87027
|
-
}
|
|
87028
|
-
return O && i && i.on(O, $), T && i && i.store.on(T, $), () => {
|
|
87029
|
-
C.current = !1, O && i && O.split(" ").forEach((M) => i.off(M, $)), T && i && T.split(" ").forEach((M) => i.store.off(M, $));
|
|
87030
|
-
};
|
|
87031
|
-
}, [i, y]);
|
|
87032
|
-
const w = bt(!0);
|
|
87033
|
-
tn(() => {
|
|
87034
|
-
C.current && !w.current && g(f), w.current = !1;
|
|
87035
|
-
}, [i, s]);
|
|
87036
|
-
const E = [m, i, d];
|
|
87037
|
-
if (E.t = m, E.i18n = i, E.ready = d, d || !d && !l)
|
|
87038
|
-
return E;
|
|
87039
|
-
throw new Promise((O) => {
|
|
87040
|
-
t.lng ? zX(i, t.lng, c, () => O()) : AX(i, c, () => O());
|
|
87041
|
-
});
|
|
87042
|
-
}
|
|
87043
|
-
function TUe(e) {
|
|
87044
|
-
let {
|
|
87045
|
-
i18n: t,
|
|
87046
|
-
defaultNS: n,
|
|
87047
|
-
children: r
|
|
86626
|
+
children: t,
|
|
86627
|
+
icon: n,
|
|
86628
|
+
htmlType: r = "button",
|
|
86629
|
+
loading: o,
|
|
86630
|
+
disabled: i,
|
|
86631
|
+
...a
|
|
87048
86632
|
} = e;
|
|
87049
|
-
|
|
87050
|
-
|
|
87051
|
-
defaultNS: n
|
|
87052
|
-
}), [t, n]);
|
|
87053
|
-
return Xee(Gue.Provider, {
|
|
87054
|
-
value: o
|
|
87055
|
-
}, r);
|
|
87056
|
-
}
|
|
87057
|
-
const que = () => ({ t: NUe().t }), MUe = (e) => {
|
|
87058
|
-
const t = aO(), { mainTheme: n } = fr(K6), { applicationsCardData: r = [], onClickItem: o, currentApp: i, lang: a } = e, [l, s] = gt(""), c = Wz(l), [d, f] = gt(r), m = On(
|
|
87059
|
-
() => d.sort((g, y) => {
|
|
87060
|
-
const b = g.order ?? 0, C = y.order ?? 0;
|
|
87061
|
-
return b - C;
|
|
87062
|
-
}),
|
|
87063
|
-
[JSON.stringify(d)]
|
|
87064
|
-
);
|
|
87065
|
-
return tn(() => {
|
|
87066
|
-
if (n === "Office" && (r == null ? void 0 : r.length) > 0) {
|
|
87067
|
-
const g = c == null ? void 0 : c.toLowerCase(), y = r.filter(
|
|
87068
|
-
(b) => {
|
|
87069
|
-
var C, w, E;
|
|
87070
|
-
return ((C = b.id) == null ? void 0 : C.toString().toLowerCase().includes(g)) || ((w = b.name) == null ? void 0 : w.toLowerCase().includes(g)) || ((E = b.nameEng) == null ? void 0 : E.toLowerCase().includes(g));
|
|
87071
|
-
}
|
|
87072
|
-
);
|
|
87073
|
-
f(y);
|
|
87074
|
-
}
|
|
87075
|
-
}, [c]), /* @__PURE__ */ mn(
|
|
87076
|
-
"div",
|
|
86633
|
+
return /* @__PURE__ */ mn(
|
|
86634
|
+
"button",
|
|
87077
86635
|
{
|
|
87078
|
-
|
|
87079
|
-
|
|
87080
|
-
|
|
87081
|
-
|
|
86636
|
+
...a,
|
|
86637
|
+
className: dUe(e),
|
|
86638
|
+
type: r,
|
|
86639
|
+
disabled: o || i,
|
|
87082
86640
|
children: [
|
|
87083
|
-
|
|
87084
|
-
|
|
86641
|
+
o ? /* @__PURE__ */ A("span", { className: "btn-icon spinning-btn-icon ", children: /* @__PURE__ */ A("span", { className: "beca-icon beca-spin-spinning", children: /* @__PURE__ */ A(
|
|
86642
|
+
"svg",
|
|
87085
86643
|
{
|
|
87086
|
-
|
|
87087
|
-
|
|
87088
|
-
|
|
86644
|
+
width: "1em",
|
|
86645
|
+
height: "1em",
|
|
86646
|
+
viewBox: "0 0 24 24",
|
|
86647
|
+
fill: "none",
|
|
86648
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
86649
|
+
children: /* @__PURE__ */ A(
|
|
86650
|
+
"path",
|
|
86651
|
+
{
|
|
86652
|
+
d: "M18.8707 19.2902C15.0807 22.8802 8.93069 22.8802 5.13069 19.2902C1.02069 15.4002 0.950688 8.9202 4.93069 4.9502",
|
|
86653
|
+
stroke: "currentcolor",
|
|
86654
|
+
strokeWidth: "1.5",
|
|
86655
|
+
strokeLinecap: "round",
|
|
86656
|
+
strokeLinejoin: "round"
|
|
86657
|
+
}
|
|
86658
|
+
)
|
|
87089
86659
|
}
|
|
87090
|
-
) }),
|
|
87091
|
-
/* @__PURE__ */ A("div", { className: "
|
|
87092
|
-
|
|
87093
|
-
{
|
|
87094
|
-
href: g.href,
|
|
87095
|
-
className: `app-item${i === g.appId ? " active" : ""}`,
|
|
87096
|
-
title: g.name,
|
|
87097
|
-
onClick: o ? () => o(g) : void 0,
|
|
87098
|
-
children: [
|
|
87099
|
-
g.image && (typeof g.image == "string" ? /* @__PURE__ */ A(
|
|
87100
|
-
"div",
|
|
87101
|
-
{
|
|
87102
|
-
className: "app-logo",
|
|
87103
|
-
style: n !== "Office" ? {
|
|
87104
|
-
backgroundColor: g.iconBackgroundColor ?? "var(--primary-color-2)"
|
|
87105
|
-
} : void 0,
|
|
87106
|
-
children: /* @__PURE__ */ A("img", { src: g.image })
|
|
87107
|
-
}
|
|
87108
|
-
) : g.image),
|
|
87109
|
-
/* @__PURE__ */ A("div", { className: "app-name", children: a === "en" && g.nameEng ? g.nameEng : g.name })
|
|
87110
|
-
]
|
|
87111
|
-
},
|
|
87112
|
-
`app-card-${y}`
|
|
87113
|
-
)) })
|
|
86660
|
+
) }) }) : /* @__PURE__ */ A("span", { className: "btn-icon", children: n }),
|
|
86661
|
+
n && t && /* @__PURE__ */ A("div", { className: "btn-space" }),
|
|
86662
|
+
/* @__PURE__ */ A("span", { className: "btn-content", children: t })
|
|
87114
86663
|
]
|
|
87115
86664
|
}
|
|
87116
86665
|
);
|
|
87117
|
-
},
|
|
86666
|
+
}, dUe = (e) => {
|
|
86667
|
+
const {
|
|
86668
|
+
size: t = "success",
|
|
86669
|
+
secondary: n,
|
|
86670
|
+
status: r = "info",
|
|
86671
|
+
disabled: o = !1,
|
|
86672
|
+
shape: i = "default",
|
|
86673
|
+
type: a = "primary",
|
|
86674
|
+
loading: l,
|
|
86675
|
+
block: s,
|
|
86676
|
+
className: c
|
|
86677
|
+
} = e;
|
|
86678
|
+
let d = "beca-btn";
|
|
86679
|
+
switch (c && (d += " " + c), t === "small" ? d += " small-btn" : t === "large" && (d += " large-btn"), n && (d += " secondary"), (l || o) && (d += " disabled"), s && (d += " block-btn"), r) {
|
|
86680
|
+
case "info":
|
|
86681
|
+
d += " info-button";
|
|
86682
|
+
break;
|
|
86683
|
+
case "success":
|
|
86684
|
+
d += " success-button";
|
|
86685
|
+
break;
|
|
86686
|
+
case "warning":
|
|
86687
|
+
d += " warning-button";
|
|
86688
|
+
break;
|
|
86689
|
+
case "danger":
|
|
86690
|
+
d += " danger-button";
|
|
86691
|
+
break;
|
|
86692
|
+
default:
|
|
86693
|
+
d += " default-button";
|
|
86694
|
+
break;
|
|
86695
|
+
}
|
|
86696
|
+
switch (i) {
|
|
86697
|
+
case "round":
|
|
86698
|
+
d += " round-btn";
|
|
86699
|
+
break;
|
|
86700
|
+
case "circle":
|
|
86701
|
+
d += " circle-btn";
|
|
86702
|
+
break;
|
|
86703
|
+
}
|
|
86704
|
+
switch (a) {
|
|
86705
|
+
case "dashed":
|
|
86706
|
+
d += n ? " dashed-btn" : " secondary dashed-btn";
|
|
86707
|
+
break;
|
|
86708
|
+
case "link":
|
|
86709
|
+
d += " link-btn";
|
|
86710
|
+
break;
|
|
86711
|
+
case "text":
|
|
86712
|
+
d += " text-btn";
|
|
86713
|
+
break;
|
|
86714
|
+
}
|
|
86715
|
+
return d;
|
|
86716
|
+
}, fUe = (e) => {
|
|
87118
86717
|
const { className: t } = e;
|
|
87119
86718
|
let n = "beca-dropdown";
|
|
87120
86719
|
return t && (n += " " + t), n;
|
|
@@ -87124,7 +86723,7 @@ const que = () => ({ t: NUe().t }), MUe = (e) => {
|
|
|
87124
86723
|
H$,
|
|
87125
86724
|
{
|
|
87126
86725
|
...e,
|
|
87127
|
-
className:
|
|
86726
|
+
className: fUe(e),
|
|
87128
86727
|
getPopupContainer: t ?? n === "relative" ? (r) => r.parentNode : void 0
|
|
87129
86728
|
}
|
|
87130
86729
|
);
|
|
@@ -87139,7 +86738,7 @@ var De = function() {
|
|
|
87139
86738
|
return t;
|
|
87140
86739
|
}, De.apply(this, arguments);
|
|
87141
86740
|
};
|
|
87142
|
-
var
|
|
86741
|
+
var pUe = function(e) {
|
|
87143
86742
|
var t = e.titleId, n = e.title;
|
|
87144
86743
|
return p.createElement(
|
|
87145
86744
|
"svg",
|
|
@@ -87148,14 +86747,14 @@ var _Ue = function(e) {
|
|
|
87148
86747
|
p.createElement("path", { d: "M19.9 10.5H4.1C2.6 10.5 2 9.822 2 8.139V3.86C2 2.178 2.6 1.5 4.1 1.5h15.8c1.5 0 2.1.678 2.1 2.361V8.14c0 1.683-.6 2.361-2.1 2.361zM19.9 22.5H4.1c-1.5 0-2.1-.678-2.1-2.361V15.86c0-1.683.6-2.361 2.1-2.361h15.8c1.5 0 2.1.678 2.1 2.361v4.278c0 1.683-.6 2.361-2.1 2.361z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87149
86748
|
p.createElement("path", { d: "M12 20v-4M14 18h-4", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87150
86749
|
);
|
|
87151
|
-
},
|
|
86750
|
+
}, Vue = function(e) {
|
|
87152
86751
|
var t, n, r, o, i, a;
|
|
87153
86752
|
return p.createElement(
|
|
87154
86753
|
"span",
|
|
87155
86754
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87156
|
-
p.createElement(
|
|
86755
|
+
p.createElement(pUe, null)
|
|
87157
86756
|
);
|
|
87158
|
-
},
|
|
86757
|
+
}, hUe = function(e) {
|
|
87159
86758
|
var t = e.titleId, n = e.title;
|
|
87160
86759
|
return p.createElement(
|
|
87161
86760
|
"svg",
|
|
@@ -87164,14 +86763,14 @@ var _Ue = function(e) {
|
|
|
87164
86763
|
p.createElement("path", { d: "M13.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1h4.278c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H15.86c-1.683 0-2.361.6-2.361 2.1zM1.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1H8.14c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H3.86C2.178 2 1.5 2.6 1.5 4.1z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87165
86764
|
p.createElement("path", { d: "M8 12H4M6 10v4", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87166
86765
|
);
|
|
87167
|
-
},
|
|
86766
|
+
}, Wue = function(e) {
|
|
87168
86767
|
var t, n, r, o, i, a;
|
|
87169
86768
|
return p.createElement(
|
|
87170
86769
|
"span",
|
|
87171
86770
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87172
|
-
p.createElement(
|
|
86771
|
+
p.createElement(hUe, null)
|
|
87173
86772
|
);
|
|
87174
|
-
},
|
|
86773
|
+
}, mUe = function(e) {
|
|
87175
86774
|
var t = e.titleId, n = e.title;
|
|
87176
86775
|
return p.createElement(
|
|
87177
86776
|
"svg",
|
|
@@ -87179,14 +86778,14 @@ var _Ue = function(e) {
|
|
|
87179
86778
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87180
86779
|
p.createElement("path", { d: "M6 12h12M12 18V6", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87181
86780
|
);
|
|
87182
|
-
},
|
|
86781
|
+
}, DX = function(e) {
|
|
87183
86782
|
var t, n, r, o, i, a;
|
|
87184
86783
|
return p.createElement(
|
|
87185
86784
|
"span",
|
|
87186
86785
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87187
|
-
p.createElement(
|
|
86786
|
+
p.createElement(mUe, null)
|
|
87188
86787
|
);
|
|
87189
|
-
},
|
|
86788
|
+
}, gUe = function(e) {
|
|
87190
86789
|
var t = e.titleId, n = e.title;
|
|
87191
86790
|
return p.createElement(
|
|
87192
86791
|
"svg",
|
|
@@ -87195,14 +86794,14 @@ var _Ue = function(e) {
|
|
|
87195
86794
|
p.createElement("path", { d: "M10.5 19.9V4.1c0-1.5-.678-2.1-2.361-2.1H3.86C2.178 2 1.5 2.6 1.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1H8.14c1.683 0 2.361-.6 2.361-2.1zM22.5 19.9V4.1c0-1.5-.678-2.1-2.361-2.1H15.86c-1.683 0-2.361.6-2.361 2.1v15.8c0 1.5.678 2.1 2.361 2.1h4.278c1.683 0 2.361-.6 2.361-2.1z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87196
86795
|
p.createElement("path", { d: "M16 12h4M18 14v-4", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87197
86796
|
);
|
|
87198
|
-
},
|
|
86797
|
+
}, Uue = function(e) {
|
|
87199
86798
|
var t, n, r, o, i, a;
|
|
87200
86799
|
return p.createElement(
|
|
87201
86800
|
"span",
|
|
87202
86801
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87203
|
-
p.createElement(
|
|
86802
|
+
p.createElement(gUe, null)
|
|
87204
86803
|
);
|
|
87205
|
-
},
|
|
86804
|
+
}, vUe = function(e) {
|
|
87206
86805
|
var t = e.titleId, n = e.title;
|
|
87207
86806
|
return p.createElement(
|
|
87208
86807
|
"svg",
|
|
@@ -87211,14 +86810,14 @@ var _Ue = function(e) {
|
|
|
87211
86810
|
p.createElement("path", { d: "M19.9 13.5H4.1c-1.5 0-2.1.678-2.1 2.361v4.278c0 1.683.6 2.361 2.1 2.361h15.8c1.5 0 2.1-.678 2.1-2.361V15.86c0-1.683-.6-2.361-2.1-2.361zM19.9 1.5H4.1C2.6 1.5 2 2.178 2 3.861V8.14c0 1.683.6 2.361 2.1 2.361h15.8c1.5 0 2.1-.678 2.1-2.361V3.86c0-1.683-.6-2.361-2.1-2.361z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87212
86811
|
p.createElement("path", { d: "M12 4v4M14 6h-4", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87213
86812
|
);
|
|
87214
|
-
},
|
|
86813
|
+
}, Kue = function(e) {
|
|
87215
86814
|
var t, n, r, o, i, a;
|
|
87216
86815
|
return p.createElement(
|
|
87217
86816
|
"span",
|
|
87218
86817
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87219
|
-
p.createElement(
|
|
86818
|
+
p.createElement(vUe, null)
|
|
87220
86819
|
);
|
|
87221
|
-
},
|
|
86820
|
+
}, yUe = function(e) {
|
|
87222
86821
|
var t = e.titleId, n = e.title;
|
|
87223
86822
|
return p.createElement(
|
|
87224
86823
|
"svg",
|
|
@@ -87231,9 +86830,9 @@ var _Ue = function(e) {
|
|
|
87231
86830
|
return p.createElement(
|
|
87232
86831
|
"span",
|
|
87233
86832
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87234
|
-
p.createElement(
|
|
86833
|
+
p.createElement(yUe, null)
|
|
87235
86834
|
);
|
|
87236
|
-
},
|
|
86835
|
+
}, CUe = function(e) {
|
|
87237
86836
|
var t = e.titleId, n = e.title;
|
|
87238
86837
|
return p.createElement(
|
|
87239
86838
|
"svg",
|
|
@@ -87241,14 +86840,14 @@ var _Ue = function(e) {
|
|
|
87241
86840
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87242
86841
|
p.createElement("path", { d: "M15 19.92L8.48 13.4c-.77-.77-.77-2.03 0-2.8L15 4.08", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87243
86842
|
);
|
|
87244
|
-
},
|
|
86843
|
+
}, bUe = function(e) {
|
|
87245
86844
|
var t, n, r, o, i, a;
|
|
87246
86845
|
return p.createElement(
|
|
87247
86846
|
"span",
|
|
87248
86847
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87249
|
-
p.createElement(
|
|
86848
|
+
p.createElement(CUe, null)
|
|
87250
86849
|
);
|
|
87251
|
-
},
|
|
86850
|
+
}, SUe = function(e) {
|
|
87252
86851
|
var t = e.titleId, n = e.title;
|
|
87253
86852
|
return p.createElement(
|
|
87254
86853
|
"svg",
|
|
@@ -87257,14 +86856,14 @@ var _Ue = function(e) {
|
|
|
87257
86856
|
p.createElement("path", { d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM15.5 12h-6", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87258
86857
|
p.createElement("path", { d: "M11.5 9l-3 3 3 3", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87259
86858
|
);
|
|
87260
|
-
},
|
|
86859
|
+
}, wUe = function(e) {
|
|
87261
86860
|
var t, n, r, o, i, a;
|
|
87262
86861
|
return p.createElement(
|
|
87263
86862
|
"span",
|
|
87264
86863
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87265
|
-
p.createElement(
|
|
86864
|
+
p.createElement(SUe, null)
|
|
87266
86865
|
);
|
|
87267
|
-
},
|
|
86866
|
+
}, xUe = function(e) {
|
|
87268
86867
|
var t = e.titleId, n = e.title;
|
|
87269
86868
|
return p.createElement(
|
|
87270
86869
|
"svg",
|
|
@@ -87272,14 +86871,14 @@ var _Ue = function(e) {
|
|
|
87272
86871
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87273
86872
|
p.createElement("path", { d: "M18 12v2.67c0 3.31-2.35 4.67-5.22 3.01l-2.31-1.34L8.16 15c-2.87-1.66-2.87-4.37 0-6.03l2.31-1.34 2.31-1.34C15.65 4.66 18 6.01 18 9.33V12z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87274
86873
|
);
|
|
87275
|
-
},
|
|
86874
|
+
}, Gue = function(e) {
|
|
87276
86875
|
var t, n, r, o, i, a;
|
|
87277
86876
|
return p.createElement(
|
|
87278
86877
|
"span",
|
|
87279
86878
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87280
|
-
p.createElement(
|
|
86879
|
+
p.createElement(xUe, null)
|
|
87281
86880
|
);
|
|
87282
|
-
},
|
|
86881
|
+
}, EUe = function(e) {
|
|
87283
86882
|
var t = e.titleId, n = e.title;
|
|
87284
86883
|
return p.createElement(
|
|
87285
86884
|
"svg",
|
|
@@ -87292,9 +86891,9 @@ var _Ue = function(e) {
|
|
|
87292
86891
|
return p.createElement(
|
|
87293
86892
|
"span",
|
|
87294
86893
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87295
|
-
p.createElement(
|
|
86894
|
+
p.createElement(EUe, null)
|
|
87296
86895
|
);
|
|
87297
|
-
},
|
|
86896
|
+
}, $Ue = function(e) {
|
|
87298
86897
|
var t = e.titleId, n = e.title;
|
|
87299
86898
|
return p.createElement(
|
|
87300
86899
|
"svg",
|
|
@@ -87302,14 +86901,14 @@ var _Ue = function(e) {
|
|
|
87302
86901
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87303
86902
|
p.createElement("path", { d: "M8.91 19.92l6.52-6.52c.77-.77.77-2.03 0-2.8L8.91 4.08", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87304
86903
|
);
|
|
87305
|
-
},
|
|
86904
|
+
}, que = function(e) {
|
|
87306
86905
|
var t, n, r, o, i, a;
|
|
87307
86906
|
return p.createElement(
|
|
87308
86907
|
"span",
|
|
87309
86908
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87310
|
-
p.createElement(
|
|
86909
|
+
p.createElement($Ue, null)
|
|
87311
86910
|
);
|
|
87312
|
-
},
|
|
86911
|
+
}, OUe = function(e) {
|
|
87313
86912
|
var t = e.titleId, n = e.title;
|
|
87314
86913
|
return p.createElement(
|
|
87315
86914
|
"svg",
|
|
@@ -87318,14 +86917,14 @@ var _Ue = function(e) {
|
|
|
87318
86917
|
p.createElement("path", { d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM8.5 12h6", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87319
86918
|
p.createElement("path", { d: "M12.5 15l3-3-3-3", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87320
86919
|
);
|
|
87321
|
-
},
|
|
86920
|
+
}, NUe = function(e) {
|
|
87322
86921
|
var t, n, r, o, i, a;
|
|
87323
86922
|
return p.createElement(
|
|
87324
86923
|
"span",
|
|
87325
86924
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87326
|
-
p.createElement(
|
|
86925
|
+
p.createElement(OUe, null)
|
|
87327
86926
|
);
|
|
87328
|
-
},
|
|
86927
|
+
}, TUe = function(e) {
|
|
87329
86928
|
var t = e.titleId, n = e.title;
|
|
87330
86929
|
return p.createElement(
|
|
87331
86930
|
"svg",
|
|
@@ -87333,14 +86932,14 @@ var _Ue = function(e) {
|
|
|
87333
86932
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87334
86933
|
p.createElement("path", { d: "M6 12V9.33c0-3.31 2.35-4.67 5.22-3.01l2.31 1.34L15.84 9c2.87 1.66 2.87 4.37 0 6.03l-2.31 1.34-2.31 1.34C8.35 19.34 6 17.99 6 14.67V12z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87335
86934
|
);
|
|
87336
|
-
},
|
|
86935
|
+
}, Xue = function(e) {
|
|
87337
86936
|
var t, n, r, o, i, a;
|
|
87338
86937
|
return p.createElement(
|
|
87339
86938
|
"span",
|
|
87340
86939
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87341
|
-
p.createElement(
|
|
86940
|
+
p.createElement(TUe, null)
|
|
87342
86941
|
);
|
|
87343
|
-
},
|
|
86942
|
+
}, MUe = function(e) {
|
|
87344
86943
|
var t = e.titleId, n = e.title;
|
|
87345
86944
|
return p.createElement(
|
|
87346
86945
|
"svg",
|
|
@@ -87348,14 +86947,14 @@ var _Ue = function(e) {
|
|
|
87348
86947
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87349
86948
|
p.createElement("path", { d: "M19.92 15.05L13.4 8.53c-.77-.77-2.03-.77-2.8 0l-6.52 6.52", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87350
86949
|
);
|
|
87351
|
-
},
|
|
86950
|
+
}, RUe = function(e) {
|
|
87352
86951
|
var t, n, r, o, i, a;
|
|
87353
86952
|
return p.createElement(
|
|
87354
86953
|
"span",
|
|
87355
86954
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87356
|
-
p.createElement(
|
|
86955
|
+
p.createElement(MUe, null)
|
|
87357
86956
|
);
|
|
87358
|
-
},
|
|
86957
|
+
}, _Ue = function(e) {
|
|
87359
86958
|
var t = e.titleId, n = e.title;
|
|
87360
86959
|
return p.createElement(
|
|
87361
86960
|
"svg",
|
|
@@ -87364,14 +86963,14 @@ var _Ue = function(e) {
|
|
|
87364
86963
|
p.createElement("path", { d: "M9.5 19.5V18h-5c-.55 0-1.05-.22-1.41-.59-.37-.36-.59-.86-.59-1.41 0-1.03.8-1.89 1.81-1.99.06-.01.12-.01.19-.01h15c.07 0 .13 0 .19.01.48.04.9.25 1.22.58.41.4.63.97.58 1.59-.09 1.05-1.04 1.82-2.1 1.82H14.5v1.5a2.5 2.5 0 01-5 0z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87365
86964
|
p.createElement("path", { d: "M20.17 5.3l-.48 8.71c-.06-.01-.12-.01-.19-.01h-15c-.07 0-.13 0-.19.01L3.83 5.3A2.996 2.996 0 016.81 2h10.38c1.77 0 3.16 1.53 2.98 3.3zM7.99 2v5M12 2v2", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87366
86965
|
);
|
|
87367
|
-
},
|
|
86966
|
+
}, IUe = function(e) {
|
|
87368
86967
|
var t, n, r, o, i, a;
|
|
87369
86968
|
return p.createElement(
|
|
87370
86969
|
"span",
|
|
87371
86970
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87372
|
-
p.createElement(
|
|
86971
|
+
p.createElement(_Ue, null)
|
|
87373
86972
|
);
|
|
87374
|
-
},
|
|
86973
|
+
}, PUe = function(e) {
|
|
87375
86974
|
var t = e.titleId, n = e.title;
|
|
87376
86975
|
return p.createElement(
|
|
87377
86976
|
"svg",
|
|
@@ -87380,14 +86979,14 @@ var _Ue = function(e) {
|
|
|
87380
86979
|
p.createElement("path", { d: "M8 2v3M16 2v3M3.5 9.09h17M21 8.5V17c0 3-1.5 5-5 5H8c-3.5 0-5-2-5-5V8.5c0-3 1.5-5 5-5h8c3.5 0 5 2 5 5z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87381
86980
|
p.createElement("path", { d: "M15.695 13.7h.009M15.695 16.7h.009M11.995 13.7h.01M11.995 16.7h.01M8.294 13.7h.01M8.294 16.7h.01", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87382
86981
|
);
|
|
87383
|
-
},
|
|
86982
|
+
}, Yue = function(e) {
|
|
87384
86983
|
var t, n, r, o, i, a;
|
|
87385
86984
|
return p.createElement(
|
|
87386
86985
|
"span",
|
|
87387
86986
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87388
|
-
p.createElement(
|
|
86987
|
+
p.createElement(PUe, null)
|
|
87389
86988
|
);
|
|
87390
|
-
},
|
|
86989
|
+
}, kUe = function(e) {
|
|
87391
86990
|
var t = e.titleId, n = e.title;
|
|
87392
86991
|
return p.createElement(
|
|
87393
86992
|
"svg",
|
|
@@ -87395,14 +86994,14 @@ var _Ue = function(e) {
|
|
|
87395
86994
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87396
86995
|
p.createElement("path", { d: "M21.97 18.33c0 .36-.08.73-.25 1.09-.17.36-.39.7-.68 1.02-.49.54-1.03.93-1.64 1.18-.6.25-1.25.38-1.95.38-1.02 0-2.11-.24-3.26-.73s-2.3-1.15-3.44-1.98a28.75 28.75 0 01-3.28-2.8 28.414 28.414 0 01-2.79-3.27c-.82-1.14-1.48-2.28-1.96-3.41C2.24 8.67 2 7.58 2 6.54c0-.68.12-1.33.36-1.93.24-.61.62-1.17 1.15-1.67C4.15 2.31 4.85 2 5.59 2c.28 0 .56.06.81.18.26.12.49.3.67.56l2.32 3.27c.18.25.31.48.4.7.09.21.14.42.14.61 0 .24-.07.48-.21.71-.13.23-.32.47-.56.71l-.76.79c-.11.11-.16.24-.16.4 0 .08.01.15.03.23.03.08.06.14.08.2.18.33.49.76.93 1.28.45.52.93 1.05 1.45 1.58.54.53 1.06 1.02 1.59 1.47.52.44.95.74 1.29.92.05.02.11.05.18.08.08.03.16.04.25.04.17 0 .3-.06.41-.17l.76-.75c.25-.25.49-.44.72-.56.23-.14.46-.21.71-.21.19 0 .39.04.61.13.22.09.45.22.7.39l3.31 2.35c.26.18.44.39.55.64.1.25.16.5.16.78z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10 })
|
|
87397
86996
|
);
|
|
87398
|
-
},
|
|
86997
|
+
}, LUe = function(e) {
|
|
87399
86998
|
var t, n, r, o, i, a;
|
|
87400
86999
|
return p.createElement(
|
|
87401
87000
|
"span",
|
|
87402
87001
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87403
|
-
p.createElement(
|
|
87002
|
+
p.createElement(kUe, null)
|
|
87404
87003
|
);
|
|
87405
|
-
},
|
|
87004
|
+
}, DUe = function(e) {
|
|
87406
87005
|
var t = e.titleId, n = e.title;
|
|
87407
87006
|
return p.createElement(
|
|
87408
87007
|
"svg",
|
|
@@ -87410,14 +87009,14 @@ var _Ue = function(e) {
|
|
|
87410
87009
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87411
87010
|
p.createElement("path", { d: "M5 10h2c2 0 3-1 3-3V5c0-2-1-3-3-3H5C3 2 2 3 2 5v2c0 2 1 3 3 3zM17 10h2c2 0 3-1 3-3V5c0-2-1-3-3-3h-2c-2 0-3 1-3 3v2c0 2 1 3 3 3zM17 22h2c2 0 3-1 3-3v-2c0-2-1-3-3-3h-2c-2 0-3 1-3 3v2c0 2 1 3 3 3zM5 22h2c2 0 3-1 3-3v-2c0-2-1-3-3-3H5c-2 0-3 1-3 3v2c0 2 1 3 3 3z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87412
87011
|
);
|
|
87413
|
-
},
|
|
87012
|
+
}, AUe = function(e) {
|
|
87414
87013
|
var t, n, r, o, i, a;
|
|
87415
87014
|
return p.createElement(
|
|
87416
87015
|
"span",
|
|
87417
87016
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87418
|
-
p.createElement(
|
|
87017
|
+
p.createElement(DUe, null)
|
|
87419
87018
|
);
|
|
87420
|
-
},
|
|
87019
|
+
}, zUe = function(e) {
|
|
87421
87020
|
var t = e.titleId, n = e.title;
|
|
87422
87021
|
return p.createElement(
|
|
87423
87022
|
"svg",
|
|
@@ -87426,14 +87025,14 @@ var _Ue = function(e) {
|
|
|
87426
87025
|
p.createElement("path", { d: "M22 12c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87427
87026
|
p.createElement("path", { d: "M15.71 15.18l-3.1-1.85c-.54-.32-.98-1.09-.98-1.72v-4.1", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87428
87027
|
);
|
|
87429
|
-
},
|
|
87028
|
+
}, HUe = function(e) {
|
|
87430
87029
|
var t, n, r, o, i, a;
|
|
87431
87030
|
return p.createElement(
|
|
87432
87031
|
"span",
|
|
87433
87032
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87434
|
-
p.createElement(
|
|
87033
|
+
p.createElement(zUe, null)
|
|
87435
87034
|
);
|
|
87436
|
-
},
|
|
87035
|
+
}, FUe = function(e) {
|
|
87437
87036
|
var t = e.titleId, n = e.title;
|
|
87438
87037
|
return p.createElement(
|
|
87439
87038
|
"svg",
|
|
@@ -87441,14 +87040,14 @@ var _Ue = function(e) {
|
|
|
87441
87040
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87442
87041
|
p.createElement("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm3.36 12.3c.29.29.29.77 0 1.06-.15.15-.34.22-.53.22s-.38-.07-.53-.22l-2.3-2.3-2.3 2.3c-.15.15-.34.22-.53.22s-.38-.07-.53-.22a.754.754 0 010-1.06l2.3-2.3-2.3-2.3a.754.754 0 010-1.06c.29-.29.77-.29 1.06 0l2.3 2.3 2.3-2.3c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-2.3 2.3 2.3 2.3z", fill: "currentcolor" })
|
|
87443
87042
|
);
|
|
87444
|
-
},
|
|
87043
|
+
}, Wz = function(e) {
|
|
87445
87044
|
var t, n, r, o, i, a;
|
|
87446
87045
|
return p.createElement(
|
|
87447
87046
|
"span",
|
|
87448
87047
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87449
|
-
p.createElement(
|
|
87048
|
+
p.createElement(FUe, null)
|
|
87450
87049
|
);
|
|
87451
|
-
},
|
|
87050
|
+
}, BUe = function(e) {
|
|
87452
87051
|
var t = e.titleId, n = e.title;
|
|
87453
87052
|
return p.createElement(
|
|
87454
87053
|
"svg",
|
|
@@ -87461,9 +87060,9 @@ var _Ue = function(e) {
|
|
|
87461
87060
|
return p.createElement(
|
|
87462
87061
|
"span",
|
|
87463
87062
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87464
|
-
p.createElement(
|
|
87063
|
+
p.createElement(BUe, null)
|
|
87465
87064
|
);
|
|
87466
|
-
},
|
|
87065
|
+
}, jUe = function(e) {
|
|
87467
87066
|
var t = e.titleId, n = e.title;
|
|
87468
87067
|
return p.createElement(
|
|
87469
87068
|
"svg",
|
|
@@ -87476,9 +87075,9 @@ var _Ue = function(e) {
|
|
|
87476
87075
|
return p.createElement(
|
|
87477
87076
|
"span",
|
|
87478
87077
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87479
|
-
p.createElement(
|
|
87078
|
+
p.createElement(jUe, null)
|
|
87480
87079
|
);
|
|
87481
|
-
},
|
|
87080
|
+
}, VUe = function(e) {
|
|
87482
87081
|
var t = e.titleId, n = e.title;
|
|
87483
87082
|
return p.createElement(
|
|
87484
87083
|
"svg",
|
|
@@ -87487,14 +87086,14 @@ var _Ue = function(e) {
|
|
|
87487
87086
|
p.createElement("path", { d: "M9 13c-.66.33-1.21.82-1.62 1.43-.23.35-.23.79 0 1.14.41.61.96 1.1 1.62 1.43M15.21 13c.66.33 1.21.82 1.62 1.43.23.35.23.79 0 1.14-.41.61-.96 1.1-1.62 1.43", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87488
87087
|
p.createElement("path", { d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7zM2.23 8.01L21.45 8", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87489
87088
|
);
|
|
87490
|
-
},
|
|
87089
|
+
}, WUe = function(e) {
|
|
87491
87090
|
var t, n, r, o, i, a;
|
|
87492
87091
|
return p.createElement(
|
|
87493
87092
|
"span",
|
|
87494
87093
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87495
|
-
p.createElement(
|
|
87094
|
+
p.createElement(VUe, null)
|
|
87496
87095
|
);
|
|
87497
|
-
},
|
|
87096
|
+
}, UUe = function(e) {
|
|
87498
87097
|
var t = e.titleId, n = e.title;
|
|
87499
87098
|
return p.createElement(
|
|
87500
87099
|
"svg",
|
|
@@ -87504,14 +87103,14 @@ var _Ue = function(e) {
|
|
|
87504
87103
|
p.createElement("path", { d: "M22 16.5v3c0 1.5-1 2.5-2.5 2.5H6c.41 0 .83-.06 1.22-.19.11-.04.22-.08.33-.13.35-.14.69-.34.99-.6.09-.07.19-.16.28-.25l.04-.04 6.8-6.79h3.84c1.5 0 2.5 1 2.5 2.5zM4.81 21.82c-.6-.18-1.17-.51-1.64-.99-.48-.47-.81-1.04-.99-1.64a4.02 4.02 0 002.63 2.63z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87505
87104
|
p.createElement("path", { d: "M18.37 11.29L15.66 14l-6.8 6.79C9.56 20.07 10 19.08 10 18V8.34l2.71-2.71c1.06-1.06 2.48-1.06 3.54 0l2.12 2.12c1.06 1.06 1.06 2.48 0 3.54zM6 19a1 1 0 100-2 1 1 0 000 2z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87506
87105
|
);
|
|
87507
|
-
},
|
|
87106
|
+
}, Zue = function(e) {
|
|
87508
87107
|
var t, n, r, o, i, a;
|
|
87509
87108
|
return p.createElement(
|
|
87510
87109
|
"span",
|
|
87511
87110
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87512
|
-
p.createElement(
|
|
87111
|
+
p.createElement(UUe, null)
|
|
87513
87112
|
);
|
|
87514
|
-
},
|
|
87113
|
+
}, KUe = function(e) {
|
|
87515
87114
|
var t = e.titleId, n = e.title;
|
|
87516
87115
|
return p.createElement(
|
|
87517
87116
|
"svg",
|
|
@@ -87519,14 +87118,14 @@ var _Ue = function(e) {
|
|
|
87519
87118
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87520
87119
|
p.createElement("path", { d: "M5.4 2.1h13.2c1.1 0 2 .9 2 2v2.2c0 .8-.5 1.8-1 2.3l-4.3 3.8c-.6.5-1 1.5-1 2.3V19c0 .6-.4 1.4-.9 1.7l-1.4.9c-1.3.8-3.1-.1-3.1-1.7v-5.3c0-.7-.4-1.6-.8-2.1l-3.8-4c-.5-.5-.9-1.4-.9-2V4.2c0-1.2.9-2.1 2-2.1zM10.93 2.1L6 10", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87521
87120
|
);
|
|
87522
|
-
},
|
|
87121
|
+
}, GUe = function(e) {
|
|
87523
87122
|
var t, n, r, o, i, a;
|
|
87524
87123
|
return p.createElement(
|
|
87525
87124
|
"span",
|
|
87526
87125
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87527
|
-
p.createElement(
|
|
87126
|
+
p.createElement(KUe, null)
|
|
87528
87127
|
);
|
|
87529
|
-
},
|
|
87128
|
+
}, qUe = function(e) {
|
|
87530
87129
|
var t = e.titleId, n = e.title;
|
|
87531
87130
|
return p.createElement(
|
|
87532
87131
|
"svg",
|
|
@@ -87535,14 +87134,14 @@ var _Ue = function(e) {
|
|
|
87535
87134
|
p.createElement("path", { d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87536
87135
|
p.createElement("path", { d: "M9 10a2 2 0 100-4 2 2 0 000 4zM2.67 18.95l4.93-3.31c.79-.53 1.93-.47 2.64.14l.33.29c.78.67 2.04.67 2.82 0l4.16-3.57c.78-.67 2.04-.67 2.82 0L22 13.9", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87537
87136
|
);
|
|
87538
|
-
},
|
|
87137
|
+
}, XUe = function(e) {
|
|
87539
87138
|
var t, n, r, o, i, a;
|
|
87540
87139
|
return p.createElement(
|
|
87541
87140
|
"span",
|
|
87542
87141
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87543
|
-
p.createElement(
|
|
87142
|
+
p.createElement(qUe, null)
|
|
87544
87143
|
);
|
|
87545
|
-
},
|
|
87144
|
+
}, YUe = function(e) {
|
|
87546
87145
|
var t = e.titleId, n = e.title;
|
|
87547
87146
|
return p.createElement(
|
|
87548
87147
|
"svg",
|
|
@@ -87550,14 +87149,14 @@ var _Ue = function(e) {
|
|
|
87550
87149
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87551
87150
|
p.createElement("path", { d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7zM2.03 8.5H22M2.03 15.5H22M8.51 21.99V2.01M15.51 21.99V2.01", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87552
87151
|
);
|
|
87553
|
-
},
|
|
87152
|
+
}, AX = function(e) {
|
|
87554
87153
|
var t, n, r, o, i, a;
|
|
87555
87154
|
return p.createElement(
|
|
87556
87155
|
"span",
|
|
87557
87156
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87558
|
-
p.createElement(
|
|
87157
|
+
p.createElement(YUe, null)
|
|
87559
87158
|
);
|
|
87560
|
-
},
|
|
87159
|
+
}, ZUe = function(e) {
|
|
87561
87160
|
var t = e.titleId, n = e.title;
|
|
87562
87161
|
return p.createElement(
|
|
87563
87162
|
"svg",
|
|
@@ -87567,14 +87166,14 @@ var _Ue = function(e) {
|
|
|
87567
87166
|
p.createElement("path", { d: "M18.8 19.7l-1.9 1.9c-.52.52-1.38.52-1.91 0l-1.58-1.59c-.52-.52-.52-1.38 0-1.91l1.9-1.89 3.49 3.49z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87568
87167
|
p.createElement("path", { d: "M21.61 16.9l-2.81 2.81-3.5-3.5 2.81-2.82c.52-.52 1.39-.52 1.91 0l1.58 1.59c.53.53.53 1.4.01 1.92z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87569
87168
|
);
|
|
87570
|
-
},
|
|
87169
|
+
}, Jue = function(e) {
|
|
87571
87170
|
var t, n, r, o, i, a;
|
|
87572
87171
|
return p.createElement(
|
|
87573
87172
|
"span",
|
|
87574
87173
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87575
|
-
p.createElement(
|
|
87174
|
+
p.createElement(ZUe, null)
|
|
87576
87175
|
);
|
|
87577
|
-
},
|
|
87176
|
+
}, JUe = function(e) {
|
|
87578
87177
|
var t = e.titleId, n = e.title;
|
|
87579
87178
|
return p.createElement(
|
|
87580
87179
|
"svg",
|
|
@@ -87583,14 +87182,14 @@ var _Ue = function(e) {
|
|
|
87583
87182
|
p.createElement("path", { d: "M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10zM12 8v5", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87584
87183
|
p.createElement("path", { d: "M11.995 16h.009", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87585
87184
|
);
|
|
87586
|
-
},
|
|
87185
|
+
}, QUe = function(e) {
|
|
87587
87186
|
var t, n, r, o, i, a;
|
|
87588
87187
|
return p.createElement(
|
|
87589
87188
|
"span",
|
|
87590
87189
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87591
|
-
p.createElement(
|
|
87190
|
+
p.createElement(JUe, null)
|
|
87592
87191
|
);
|
|
87593
|
-
},
|
|
87192
|
+
}, eKe = function(e) {
|
|
87594
87193
|
var t = e.titleId, n = e.title;
|
|
87595
87194
|
return p.createElement(
|
|
87596
87195
|
"svg",
|
|
@@ -87599,14 +87198,14 @@ var _Ue = function(e) {
|
|
|
87599
87198
|
p.createElement("path", { d: "M3.27 12A5.46 5.46 0 012 8.5C2 5.48 4.47 3 7.5 3h5C15.52 3 18 5.48 18 8.5S15.53 14 12.5 14H10", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87600
87199
|
p.createElement("path", { d: "M20.73 12A5.46 5.46 0 0122 15.5c0 3.02-2.47 5.5-5.5 5.5h-5C8.48 21 6 18.52 6 15.5S8.47 10 11.5 10H14", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87601
87200
|
);
|
|
87602
|
-
},
|
|
87201
|
+
}, tKe = function(e) {
|
|
87603
87202
|
var t, n, r, o, i, a;
|
|
87604
87203
|
return p.createElement(
|
|
87605
87204
|
"span",
|
|
87606
87205
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87607
|
-
p.createElement(
|
|
87206
|
+
p.createElement(eKe, null)
|
|
87608
87207
|
);
|
|
87609
|
-
},
|
|
87208
|
+
}, nKe = function(e) {
|
|
87610
87209
|
var t = e.titleId, n = e.title;
|
|
87611
87210
|
return p.createElement(
|
|
87612
87211
|
"svg",
|
|
@@ -87615,14 +87214,14 @@ var _Ue = function(e) {
|
|
|
87615
87214
|
p.createElement("path", { d: "M3.5 20.5c.83.83 2.17.83 3 0l13-13c.83-.83.83-2.17 0-3-.83-.83-2.17-.83-3 0l-13 13c-.83.83-.83 2.17 0 3zM18.01 8.99l-3-3", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87616
87215
|
p.createElement("path", { d: "M8.5 2.44L10 2l-.44 1.5L10 5l-1.5-.44L7 5l.44-1.5L7 2l1.5.44zM4.5 8.44L6 8l-.44 1.5L6 11l-1.5-.44L3 11l.44-1.5L3 8l1.5.44zM19.5 13.44L21 13l-.44 1.5L21 16l-1.5-.44L18 16l.44-1.5L18 13l1.5.44z", stroke: "currentcolor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87617
87216
|
);
|
|
87618
|
-
},
|
|
87217
|
+
}, Que = function(e) {
|
|
87619
87218
|
var t, n, r, o, i, a;
|
|
87620
87219
|
return p.createElement(
|
|
87621
87220
|
"span",
|
|
87622
87221
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87623
|
-
p.createElement(
|
|
87222
|
+
p.createElement(nKe, null)
|
|
87624
87223
|
);
|
|
87625
|
-
},
|
|
87224
|
+
}, rKe = function(e) {
|
|
87626
87225
|
var t = e.titleId, n = e.title;
|
|
87627
87226
|
return p.createElement(
|
|
87628
87227
|
"svg",
|
|
@@ -87631,14 +87230,14 @@ var _Ue = function(e) {
|
|
|
87631
87230
|
p.createElement("path", { d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7zM18 6L6 18", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87632
87231
|
p.createElement("path", { d: "M18 10V6h-4M6 14v4h4", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87633
87232
|
);
|
|
87634
|
-
},
|
|
87233
|
+
}, oKe = function(e) {
|
|
87635
87234
|
var t, n, r, o, i, a;
|
|
87636
87235
|
return p.createElement(
|
|
87637
87236
|
"span",
|
|
87638
87237
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87639
|
-
p.createElement(
|
|
87238
|
+
p.createElement(rKe, null)
|
|
87640
87239
|
);
|
|
87641
|
-
},
|
|
87240
|
+
}, iKe = function(e) {
|
|
87642
87241
|
var t = e.titleId, n = e.title;
|
|
87643
87242
|
return p.createElement(
|
|
87644
87243
|
"svg",
|
|
@@ -87646,14 +87245,14 @@ var _Ue = function(e) {
|
|
|
87646
87245
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87647
87246
|
p.createElement("path", { d: "M3 7h18M3 12h18M3 17h18", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87648
87247
|
);
|
|
87649
|
-
},
|
|
87248
|
+
}, aKe = function(e) {
|
|
87650
87249
|
var t, n, r, o, i, a;
|
|
87651
87250
|
return p.createElement(
|
|
87652
87251
|
"span",
|
|
87653
87252
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87654
|
-
p.createElement(
|
|
87253
|
+
p.createElement(iKe, null)
|
|
87655
87254
|
);
|
|
87656
|
-
},
|
|
87255
|
+
}, lKe = function(e) {
|
|
87657
87256
|
var t = e.titleId, n = e.title;
|
|
87658
87257
|
return p.createElement(
|
|
87659
87258
|
"svg",
|
|
@@ -87662,14 +87261,14 @@ var _Ue = function(e) {
|
|
|
87662
87261
|
p.createElement("path", { d: "M13.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1h4.278c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H15.86c-1.683 0-2.361.6-2.361 2.1zM1.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1H8.14c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H3.86C2.178 2 1.5 2.6 1.5 4.1z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87663
87262
|
p.createElement("path", { d: "M8 12H4M6 10l2 2M6 14l2-2M16 12h4M18 10l-2 2M18 14l-2-2", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87664
87263
|
);
|
|
87665
|
-
},
|
|
87264
|
+
}, ede = function(e) {
|
|
87666
87265
|
var t, n, r, o, i, a;
|
|
87667
87266
|
return p.createElement(
|
|
87668
87267
|
"span",
|
|
87669
87268
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87670
|
-
p.createElement(
|
|
87269
|
+
p.createElement(lKe, null)
|
|
87671
87270
|
);
|
|
87672
|
-
},
|
|
87271
|
+
}, sKe = function(e) {
|
|
87673
87272
|
var t = e.titleId, n = e.title;
|
|
87674
87273
|
return p.createElement(
|
|
87675
87274
|
"svg",
|
|
@@ -87679,14 +87278,14 @@ var _Ue = function(e) {
|
|
|
87679
87278
|
p.createElement("path", { d: "M19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87680
87279
|
p.createElement("path", { d: "M15.996 11h.01M11.995 11h.01M7.995 11h.008", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87681
87280
|
);
|
|
87682
|
-
},
|
|
87281
|
+
}, cKe = function(e) {
|
|
87683
87282
|
var t, n, r, o, i, a;
|
|
87684
87283
|
return p.createElement(
|
|
87685
87284
|
"span",
|
|
87686
87285
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87687
|
-
p.createElement(
|
|
87286
|
+
p.createElement(sKe, null)
|
|
87688
87287
|
);
|
|
87689
|
-
},
|
|
87288
|
+
}, uKe = function(e) {
|
|
87690
87289
|
var t = e.titleId, n = e.title;
|
|
87691
87290
|
return p.createElement(
|
|
87692
87291
|
"svg",
|
|
@@ -87695,14 +87294,14 @@ var _Ue = function(e) {
|
|
|
87695
87294
|
p.createElement("path", { d: "M8.5 19H8c-4 0-6-1-6-6V8c0-4 2-6 6-6h8c4 0 6 2 6 6v5c0 4-2 6-6 6h-.5c-.31 0-.61.15-.8.4l-1.5 2c-.66.88-1.74.88-2.4 0l-1.5-2c-.16-.22-.53-.4-.8-.4z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87696
87295
|
p.createElement("path", { d: "M15.996 11h.01M11.995 11h.01M7.995 11h.008", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87697
87296
|
);
|
|
87698
|
-
},
|
|
87297
|
+
}, dKe = function(e) {
|
|
87699
87298
|
var t, n, r, o, i, a;
|
|
87700
87299
|
return p.createElement(
|
|
87701
87300
|
"span",
|
|
87702
87301
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87703
|
-
p.createElement(
|
|
87302
|
+
p.createElement(uKe, null)
|
|
87704
87303
|
);
|
|
87705
|
-
},
|
|
87304
|
+
}, fKe = function(e) {
|
|
87706
87305
|
var t = e.titleId, n = e.title;
|
|
87707
87306
|
return p.createElement(
|
|
87708
87307
|
"svg",
|
|
@@ -87710,14 +87309,14 @@ var _Ue = function(e) {
|
|
|
87710
87309
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87711
87310
|
p.createElement("path", { d: "M2.03 12.42c.36 5.15 4.73 9.34 9.96 9.57 3.69.16 6.99-1.56 8.97-4.27.82-1.11.38-1.85-.99-1.6-.67.12-1.36.17-2.08.14C13 16.06 9 11.97 8.98 7.14c-.01-1.3.26-2.53.75-3.65.54-1.24-.11-1.83-1.36-1.3C4.41 3.86 1.7 7.85 2.03 12.42z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87712
87311
|
);
|
|
87713
|
-
},
|
|
87312
|
+
}, pKe = function(e) {
|
|
87714
87313
|
var t, n, r, o, i, a;
|
|
87715
87314
|
return p.createElement(
|
|
87716
87315
|
"span",
|
|
87717
87316
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87718
|
-
p.createElement(
|
|
87317
|
+
p.createElement(fKe, null)
|
|
87719
87318
|
);
|
|
87720
|
-
},
|
|
87319
|
+
}, hKe = function(e) {
|
|
87721
87320
|
var t = e.titleId, n = e.title;
|
|
87722
87321
|
return p.createElement(
|
|
87723
87322
|
"svg",
|
|
@@ -87725,14 +87324,14 @@ var _Ue = function(e) {
|
|
|
87725
87324
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87726
87325
|
p.createElement("path", { d: "M3.76 7.22v9.57c0 1.96 2.13 3.19 3.83 2.21l4.15-2.39 4.15-2.4c1.7-.98 1.7-3.43 0-4.41l-4.15-2.4-4.15-2.39c-1.7-.98-3.83.24-3.83 2.21zM20.24 18.18V5.82", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87727
87326
|
);
|
|
87728
|
-
},
|
|
87327
|
+
}, tde = function(e) {
|
|
87729
87328
|
var t, n, r, o, i, a;
|
|
87730
87329
|
return p.createElement(
|
|
87731
87330
|
"span",
|
|
87732
87331
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87733
|
-
p.createElement(
|
|
87332
|
+
p.createElement(hKe, null)
|
|
87734
87333
|
);
|
|
87735
|
-
},
|
|
87334
|
+
}, mKe = function(e) {
|
|
87736
87335
|
var t = e.titleId, n = e.title;
|
|
87737
87336
|
return p.createElement(
|
|
87738
87337
|
"svg",
|
|
@@ -87742,14 +87341,14 @@ var _Ue = function(e) {
|
|
|
87742
87341
|
p.createElement("path", { d: "M13.87 3.2a6.754 6.754 0 00-3.7 0c.29-.74 1.01-1.26 1.85-1.26.84 0 1.56.52 1.85 1.26z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87743
87342
|
p.createElement("path", { d: "M15.02 19.06c0 1.65-1.35 3-3 3-.82 0-1.58-.34-2.12-.88a3.01 3.01 0 01-.88-2.12", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10 })
|
|
87744
87343
|
);
|
|
87745
|
-
},
|
|
87344
|
+
}, gKe = function(e) {
|
|
87746
87345
|
var t, n, r, o, i, a;
|
|
87747
87346
|
return p.createElement(
|
|
87748
87347
|
"span",
|
|
87749
87348
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87750
|
-
p.createElement(
|
|
87349
|
+
p.createElement(mKe, null)
|
|
87751
87350
|
);
|
|
87752
|
-
},
|
|
87351
|
+
}, vKe = function(e) {
|
|
87753
87352
|
var t = e.titleId, n = e.title;
|
|
87754
87353
|
return p.createElement(
|
|
87755
87354
|
"svg",
|
|
@@ -87759,14 +87358,14 @@ var _Ue = function(e) {
|
|
|
87759
87358
|
p.createElement("path", { d: "M6.5 8V6l-.5.5m0 5.037c0-.296.225-.537.5-.537s.5.241.5.537c0 .596-.79.66-.965 1.228a.183.183 0 00.172.235H7m-1 3.5c0-.291.225-.5.5-.5s.5.209.5.5c0 .59-.5.487-.5.487", stroke: "currentcolor", strokeWidth: 0.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87760
87359
|
p.createElement("path", { d: "M6 17.5c0 .291.225.488.5.488s.5-.208.5-.5C7 16.9 6.5 17 6.5 17", stroke: "currentcolor", strokeWidth: 0.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87761
87360
|
);
|
|
87762
|
-
},
|
|
87361
|
+
}, yKe = function(e) {
|
|
87763
87362
|
var t, n, r, o, i, a;
|
|
87764
87363
|
return p.createElement(
|
|
87765
87364
|
"span",
|
|
87766
87365
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87767
|
-
p.createElement(
|
|
87366
|
+
p.createElement(vKe, null)
|
|
87768
87367
|
);
|
|
87769
|
-
},
|
|
87368
|
+
}, CKe = function(e) {
|
|
87770
87369
|
var t = e.titleId, n = e.title;
|
|
87771
87370
|
return p.createElement(
|
|
87772
87371
|
"svg",
|
|
@@ -87774,14 +87373,14 @@ var _Ue = function(e) {
|
|
|
87774
87373
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87775
87374
|
p.createElement("path", { d: "M12.33 12.15l-2.47 2.47a3.495 3.495 0 000 4.95 3.495 3.495 0 004.95 0l3.89-3.89a7.007 7.007 0 000-9.9 7.007 7.007 0 00-9.9 0l-4.24 4.24c-2.34 2.34-2.34 6.14 0 8.49", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87776
87375
|
);
|
|
87777
|
-
},
|
|
87376
|
+
}, bKe = function(e) {
|
|
87778
87377
|
var t, n, r, o, i, a;
|
|
87779
87378
|
return p.createElement(
|
|
87780
87379
|
"span",
|
|
87781
87380
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87782
|
-
p.createElement(
|
|
87381
|
+
p.createElement(CKe, null)
|
|
87783
87382
|
);
|
|
87784
|
-
},
|
|
87383
|
+
}, SKe = function(e) {
|
|
87785
87384
|
var t = e.titleId, n = e.title;
|
|
87786
87385
|
return p.createElement(
|
|
87787
87386
|
"svg",
|
|
@@ -87789,14 +87388,14 @@ var _Ue = function(e) {
|
|
|
87789
87388
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87790
87389
|
p.createElement("path", { d: "M10.65 19.11V4.89c0-1.35-.57-1.89-2.01-1.89H5.01C3.57 3 3 3.54 3 4.89v14.22C3 20.46 3.57 21 5.01 21h3.63c1.44 0 2.01-.54 2.01-1.89zM21 19.11V4.89C21 3.54 20.43 3 18.99 3h-3.63c-1.43 0-2.01.54-2.01 1.89v14.22c0 1.35.57 1.89 2.01 1.89h3.63c1.44 0 2.01-.54 2.01-1.89z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87791
87390
|
);
|
|
87792
|
-
},
|
|
87391
|
+
}, wKe = function(e) {
|
|
87793
87392
|
var t, n, r, o, i, a;
|
|
87794
87393
|
return p.createElement(
|
|
87795
87394
|
"span",
|
|
87796
87395
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87797
|
-
p.createElement(
|
|
87396
|
+
p.createElement(SKe, null)
|
|
87798
87397
|
);
|
|
87799
|
-
},
|
|
87398
|
+
}, xKe = function(e) {
|
|
87800
87399
|
var t = e.titleId, n = e.title;
|
|
87801
87400
|
return p.createElement(
|
|
87802
87401
|
"svg",
|
|
@@ -87804,14 +87403,14 @@ var _Ue = function(e) {
|
|
|
87804
87403
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87805
87404
|
p.createElement("path", { d: "M4 12V8.44c0-4.42 3.13-6.23 6.96-4.02l3.09 1.78 3.09 1.78c3.83 2.21 3.83 5.83 0 8.04l-3.09 1.78-3.09 1.78C7.13 21.79 4 19.98 4 15.56V12z", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87806
87405
|
);
|
|
87807
|
-
},
|
|
87406
|
+
}, EKe = function(e) {
|
|
87808
87407
|
var t, n, r, o, i, a;
|
|
87809
87408
|
return p.createElement(
|
|
87810
87409
|
"span",
|
|
87811
87410
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87812
|
-
p.createElement(
|
|
87411
|
+
p.createElement(xKe, null)
|
|
87813
87412
|
);
|
|
87814
|
-
},
|
|
87413
|
+
}, $Ke = function(e) {
|
|
87815
87414
|
var t = e.titleId, n = e.title;
|
|
87816
87415
|
return p.createElement(
|
|
87817
87416
|
"svg",
|
|
@@ -87819,14 +87418,14 @@ var _Ue = function(e) {
|
|
|
87819
87418
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87820
87419
|
p.createElement("path", { d: "M20.24 7.22v9.57c0 1.96-2.13 3.19-3.83 2.21l-4.15-2.39-4.15-2.4c-1.7-.98-1.7-3.43 0-4.41l4.15-2.4 4.15-2.39c1.7-.98 3.83.24 3.83 2.21zM3.76 18.18V5.82", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87821
87420
|
);
|
|
87822
|
-
},
|
|
87421
|
+
}, nde = function(e) {
|
|
87823
87422
|
var t, n, r, o, i, a;
|
|
87824
87423
|
return p.createElement(
|
|
87825
87424
|
"span",
|
|
87826
87425
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87827
|
-
p.createElement(
|
|
87426
|
+
p.createElement($Ke, null)
|
|
87828
87427
|
);
|
|
87829
|
-
},
|
|
87428
|
+
}, OKe = function(e) {
|
|
87830
87429
|
var t = e.titleId, n = e.title;
|
|
87831
87430
|
return p.createElement(
|
|
87832
87431
|
"svg",
|
|
@@ -87835,14 +87434,14 @@ var _Ue = function(e) {
|
|
|
87835
87434
|
p.createElement("path", { d: "M16.87 18.31h-8c-2.76 0-5-2.24-5-5s2.24-5 5-5h11", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87836
87435
|
p.createElement("path", { d: "M17.57 10.81l2.56-2.56-2.56-2.56", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87837
87436
|
);
|
|
87838
|
-
},
|
|
87437
|
+
}, NKe = function(e) {
|
|
87839
87438
|
var t, n, r, o, i, a;
|
|
87840
87439
|
return p.createElement(
|
|
87841
87440
|
"span",
|
|
87842
87441
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87843
|
-
p.createElement(
|
|
87442
|
+
p.createElement(OKe, null)
|
|
87844
87443
|
);
|
|
87845
|
-
},
|
|
87444
|
+
}, TKe = function(e) {
|
|
87846
87445
|
var t = e.titleId, n = e.title;
|
|
87847
87446
|
return p.createElement(
|
|
87848
87447
|
"svg",
|
|
@@ -87852,14 +87451,14 @@ var _Ue = function(e) {
|
|
|
87852
87451
|
p.createElement("path", { d: "M6 17c0 .62.02 1.17.09 1.66-.14.01-.27.01-.42.01h-.34C2.67 18.67 2 18 2 15.33V8.67C2 6 2.67 5.33 5.33 5.33h.34c.15 0 .28 0 .42.01C6.02 5.83 6 6.38 6 7v10zM22 8.67v6.66c0 2.67-.67 3.34-3.33 3.34h-.34c-.15 0-.28 0-.42-.01.07-.49.09-1.04.09-1.66V7c0-.62-.02-1.17-.09-1.66.14-.01.27-.01.42-.01h.34C21.33 5.33 22 6 22 8.67z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87853
87452
|
p.createElement("path", { d: "M9 12h6", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87854
87453
|
);
|
|
87855
|
-
},
|
|
87454
|
+
}, rde = function(e) {
|
|
87856
87455
|
var t, n, r, o, i, a;
|
|
87857
87456
|
return p.createElement(
|
|
87858
87457
|
"span",
|
|
87859
87458
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87860
|
-
p.createElement(
|
|
87459
|
+
p.createElement(TKe, null)
|
|
87861
87460
|
);
|
|
87862
|
-
},
|
|
87461
|
+
}, MKe = function(e) {
|
|
87863
87462
|
var t = e.titleId, n = e.title;
|
|
87864
87463
|
return p.createElement(
|
|
87865
87464
|
"svg",
|
|
@@ -87869,14 +87468,14 @@ var _Ue = function(e) {
|
|
|
87869
87468
|
p.createElement("path", { d: "M17 18c.62 0 1.17-.02 1.66-.09.01.14.01.27.01.42v.34c0 2.66-.67 3.33-3.34 3.33H8.67c-2.67 0-3.34-.67-3.34-3.33v-.34c0-.15 0-.28.01-.42.49.07 1.04.09 1.66.09h10zM8.67 2h6.66c2.67 0 3.34.67 3.34 3.33v.34c0 .15 0 .28-.01.42C18.17 6.02 17.62 6 17 6H7c-.62 0-1.17.02-1.66.09-.01-.14-.01-.27-.01-.42v-.34C5.33 2.67 6 2 8.67 2z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87870
87469
|
p.createElement("path", { d: "M9 12h6", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87871
87470
|
);
|
|
87872
|
-
},
|
|
87471
|
+
}, ode = function(e) {
|
|
87873
87472
|
var t, n, r, o, i, a;
|
|
87874
87473
|
return p.createElement(
|
|
87875
87474
|
"span",
|
|
87876
87475
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87877
|
-
p.createElement(
|
|
87476
|
+
p.createElement(MKe, null)
|
|
87878
87477
|
);
|
|
87879
|
-
},
|
|
87478
|
+
}, RKe = function(e) {
|
|
87880
87479
|
var t = e.titleId, n = e.title;
|
|
87881
87480
|
return p.createElement(
|
|
87882
87481
|
"svg",
|
|
@@ -87884,14 +87483,14 @@ var _Ue = function(e) {
|
|
|
87884
87483
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87885
87484
|
p.createElement("path", { d: "M11.5 21a9.5 9.5 0 100-19 9.5 9.5 0 000 19zM22 22l-2-2", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87886
87485
|
);
|
|
87887
|
-
},
|
|
87486
|
+
}, _Ke = function(e) {
|
|
87888
87487
|
var t, n, r, o, i, a;
|
|
87889
87488
|
return p.createElement(
|
|
87890
87489
|
"span",
|
|
87891
87490
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87892
|
-
p.createElement(
|
|
87491
|
+
p.createElement(RKe, null)
|
|
87893
87492
|
);
|
|
87894
|
-
},
|
|
87493
|
+
}, IKe = function(e) {
|
|
87895
87494
|
var t = e.titleId, n = e.title;
|
|
87896
87495
|
return p.createElement(
|
|
87897
87496
|
"svg",
|
|
@@ -87900,14 +87499,14 @@ var _Ue = function(e) {
|
|
|
87900
87499
|
p.createElement("path", { d: "M21.97 15V9c0-5-2-7-7-7h-6c-5 0-7 2-7 7v6c0 5 2 7 7 7h6c5 0 7-2 7-7zM7.97 2v20", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87901
87500
|
p.createElement("path", { d: "M14.97 9.44L12.41 12l2.56 2.56", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87902
87501
|
);
|
|
87903
|
-
},
|
|
87502
|
+
}, ide = function(e) {
|
|
87904
87503
|
var t, n, r, o, i, a;
|
|
87905
87504
|
return p.createElement(
|
|
87906
87505
|
"span",
|
|
87907
87506
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87908
|
-
p.createElement(
|
|
87507
|
+
p.createElement(IKe, null)
|
|
87909
87508
|
);
|
|
87910
|
-
},
|
|
87509
|
+
}, PKe = function(e) {
|
|
87911
87510
|
var t = e.titleId, n = e.title;
|
|
87912
87511
|
return p.createElement(
|
|
87913
87512
|
"svg",
|
|
@@ -87916,14 +87515,14 @@ var _Ue = function(e) {
|
|
|
87916
87515
|
p.createElement("path", { d: "M21.97 15V9c0-5-2-7-7-7h-6c-5 0-7 2-7 7v6c0 5 2 7 7 7h6c5 0 7-2 7-7zM14.97 2v20", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87917
87516
|
p.createElement("path", { d: "M7.97 9.44L10.53 12l-2.56 2.56", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87918
87517
|
);
|
|
87919
|
-
},
|
|
87518
|
+
}, ade = function(e) {
|
|
87920
87519
|
var t, n, r, o, i, a;
|
|
87921
87520
|
return p.createElement(
|
|
87922
87521
|
"span",
|
|
87923
87522
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87924
|
-
p.createElement(
|
|
87523
|
+
p.createElement(PKe, null)
|
|
87925
87524
|
);
|
|
87926
|
-
},
|
|
87525
|
+
}, kKe = function(e) {
|
|
87927
87526
|
var t = e.titleId, n = e.title;
|
|
87928
87527
|
return p.createElement(
|
|
87929
87528
|
"svg",
|
|
@@ -87932,14 +87531,14 @@ var _Ue = function(e) {
|
|
|
87932
87531
|
p.createElement("path", { d: "M13.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1h4.278c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H15.86c-1.683 0-2.361.6-2.361 2.1zM1.5 4.1v15.8c0 1.5.678 2.1 2.361 2.1H8.14c1.683 0 2.361-.6 2.361-2.1V4.1c0-1.5-.678-2.1-2.361-2.1H3.86C2.178 2 1.5 2.6 1.5 4.1z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87933
87532
|
p.createElement("path", { d: "M4 12h4M6 10l-2 2M6 14l-2-2M20 12h-4M18 10l2 2M18 14l2-2", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round" })
|
|
87934
87533
|
);
|
|
87935
|
-
},
|
|
87534
|
+
}, lde = function(e) {
|
|
87936
87535
|
var t, n, r, o, i, a;
|
|
87937
87536
|
return p.createElement(
|
|
87938
87537
|
"span",
|
|
87939
87538
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87940
|
-
p.createElement(
|
|
87539
|
+
p.createElement(kKe, null)
|
|
87941
87540
|
);
|
|
87942
|
-
},
|
|
87541
|
+
}, LKe = function(e) {
|
|
87943
87542
|
var t = e.titleId, n = e.title;
|
|
87944
87543
|
return p.createElement(
|
|
87945
87544
|
"svg",
|
|
@@ -87947,14 +87546,14 @@ var _Ue = function(e) {
|
|
|
87947
87546
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87948
87547
|
p.createElement("path", { d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87949
87548
|
);
|
|
87950
|
-
},
|
|
87549
|
+
}, DKe = function(e) {
|
|
87951
87550
|
var t, n, r, o, i, a;
|
|
87952
87551
|
return p.createElement(
|
|
87953
87552
|
"span",
|
|
87954
87553
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87955
|
-
p.createElement(
|
|
87554
|
+
p.createElement(LKe, null)
|
|
87956
87555
|
);
|
|
87957
|
-
},
|
|
87556
|
+
}, AKe = function(e) {
|
|
87958
87557
|
var t = e.titleId, n = e.title;
|
|
87959
87558
|
return p.createElement(
|
|
87960
87559
|
"svg",
|
|
@@ -87963,14 +87562,14 @@ var _Ue = function(e) {
|
|
|
87963
87562
|
p.createElement("path", { d: "M12 18.5a6.5 6.5 0 100-13 6.5 6.5 0 000 13z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
87964
87563
|
p.createElement("path", { d: "M19.14 19.14l-.13-.13m0-14.02l.13-.13-.13.13zM4.86 19.14l.13-.13-.13.13zM12 2.08V2v.08zM12 22v-.08.08zM2.08 12H2h.08zM22 12h-.08.08zM4.99 4.99l-.13-.13.13.13z", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87965
87564
|
);
|
|
87966
|
-
},
|
|
87565
|
+
}, zKe = function(e) {
|
|
87967
87566
|
var t, n, r, o, i, a;
|
|
87968
87567
|
return p.createElement(
|
|
87969
87568
|
"span",
|
|
87970
87569
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87971
|
-
p.createElement(
|
|
87570
|
+
p.createElement(AKe, null)
|
|
87972
87571
|
);
|
|
87973
|
-
},
|
|
87572
|
+
}, HKe = function(e) {
|
|
87974
87573
|
var t = e.titleId, n = e.title;
|
|
87975
87574
|
return p.createElement(
|
|
87976
87575
|
"svg",
|
|
@@ -87978,14 +87577,14 @@ var _Ue = function(e) {
|
|
|
87978
87577
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87979
87578
|
p.createElement("path", { d: "M12 2C6.486 2 2 6.486 2 12v4.143C2 17.167 2.897 18 4 18h1a1 1 0 001-1v-5.143a1 1 0 00-1-1c-.74 0-1.311-.66-1.07-1.36C5.067 6.207 8.457 3.5 12 3.5c3.51 0 6.945 2.657 8.131 5.906.272.743-.34 1.451-1.131 1.451a1 1 0 00-1 1V18c0 1.103-.897 2-2 2h-1.5a.5.5 0 01-.5-.5.5.5 0 00-.5-.5h-2a1.5 1.5 0 000 3H16a3.99 3.99 0 002.905-1.253c1.15-1.215 3.095-2.93 3.095-4.604V12c0-5.514-4.486-10-10-10z", fill: "currentcolor" })
|
|
87980
87579
|
);
|
|
87981
|
-
},
|
|
87580
|
+
}, FKe = function(e) {
|
|
87982
87581
|
var t, n, r, o, i, a;
|
|
87983
87582
|
return p.createElement(
|
|
87984
87583
|
"span",
|
|
87985
87584
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
87986
|
-
p.createElement(
|
|
87585
|
+
p.createElement(HKe, null)
|
|
87987
87586
|
);
|
|
87988
|
-
},
|
|
87587
|
+
}, BKe = function(e) {
|
|
87989
87588
|
var t = e.titleId, n = e.title;
|
|
87990
87589
|
return p.createElement(
|
|
87991
87590
|
"svg",
|
|
@@ -87993,14 +87592,14 @@ var _Ue = function(e) {
|
|
|
87993
87592
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
87994
87593
|
p.createElement("path", { d: "M11 19.5h10M11 12.5h10M11 5.5h10M3 5.5l1 1 3-3M3 12.5l1 1 3-3M3 19.5l1 1 3-3", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
87995
87594
|
);
|
|
87996
|
-
},
|
|
87595
|
+
}, jKe = function(e) {
|
|
87997
87596
|
var t, n, r, o, i, a;
|
|
87998
87597
|
return p.createElement(
|
|
87999
87598
|
"span",
|
|
88000
87599
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88001
|
-
p.createElement(
|
|
87600
|
+
p.createElement(BKe, null)
|
|
88002
87601
|
);
|
|
88003
|
-
},
|
|
87602
|
+
}, VKe = function(e) {
|
|
88004
87603
|
var t = e.titleId, n = e.title;
|
|
88005
87604
|
return p.createElement(
|
|
88006
87605
|
"svg",
|
|
@@ -88008,14 +87607,14 @@ var _Ue = function(e) {
|
|
|
88008
87607
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88009
87608
|
p.createElement("path", { d: "M4.88 4.5c0-1.1.9-2 2-2H12c2.62 0 4.75 2.13 4.75 4.75S14.62 12 12 12H4.88V4.5zM4.88 12h9.5c2.62 0 4.75 2.13 4.75 4.75S17 21.5 14.38 21.5h-7.5c-1.1 0-2-.9-2-2V12v0z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88010
87609
|
);
|
|
88011
|
-
},
|
|
87610
|
+
}, sde = function(e) {
|
|
88012
87611
|
var t, n, r, o, i, a;
|
|
88013
87612
|
return p.createElement(
|
|
88014
87613
|
"span",
|
|
88015
87614
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88016
|
-
p.createElement(
|
|
87615
|
+
p.createElement(VKe, null)
|
|
88017
87616
|
);
|
|
88018
|
-
},
|
|
87617
|
+
}, WKe = function(e) {
|
|
88019
87618
|
var t = e.titleId, n = e.title;
|
|
88020
87619
|
return p.createElement(
|
|
88021
87620
|
"svg",
|
|
@@ -88023,14 +87622,14 @@ var _Ue = function(e) {
|
|
|
88023
87622
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88024
87623
|
p.createElement("path", { d: "M9.62 3h9.25M5.12 21h9.25M14.25 3l-4.5 18", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88025
87624
|
);
|
|
88026
|
-
},
|
|
87625
|
+
}, cde = function(e) {
|
|
88027
87626
|
var t, n, r, o, i, a;
|
|
88028
87627
|
return p.createElement(
|
|
88029
87628
|
"span",
|
|
88030
87629
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88031
|
-
p.createElement(
|
|
87630
|
+
p.createElement(WKe, null)
|
|
88032
87631
|
);
|
|
88033
|
-
},
|
|
87632
|
+
}, UKe = function(e) {
|
|
88034
87633
|
var t = e.titleId, n = e.title;
|
|
88035
87634
|
return p.createElement(
|
|
88036
87635
|
"svg",
|
|
@@ -88038,14 +87637,14 @@ var _Ue = function(e) {
|
|
|
88038
87637
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88039
87638
|
p.createElement("path", { d: "M3 4.5h18M7.26 9.5h9.48M3 14.5h18M7.26 19.5h9.48", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88040
87639
|
);
|
|
88041
|
-
},
|
|
87640
|
+
}, Uz = function(e) {
|
|
88042
87641
|
var t, n, r, o, i, a;
|
|
88043
87642
|
return p.createElement(
|
|
88044
87643
|
"span",
|
|
88045
87644
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88046
|
-
p.createElement(
|
|
87645
|
+
p.createElement(UKe, null)
|
|
88047
87646
|
);
|
|
88048
|
-
},
|
|
87647
|
+
}, KKe = function(e) {
|
|
88049
87648
|
var t = e.titleId, n = e.title;
|
|
88050
87649
|
return p.createElement(
|
|
88051
87650
|
"svg",
|
|
@@ -88053,14 +87652,14 @@ var _Ue = function(e) {
|
|
|
88053
87652
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88054
87653
|
p.createElement("path", { d: "M3 4.5h18M3 9.5h18M3 14.5h18M3 19.5h18", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88055
87654
|
);
|
|
88056
|
-
},
|
|
87655
|
+
}, uL = function(e) {
|
|
88057
87656
|
var t, n, r, o, i, a;
|
|
88058
87657
|
return p.createElement(
|
|
88059
87658
|
"span",
|
|
88060
87659
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88061
|
-
p.createElement(
|
|
87660
|
+
p.createElement(KKe, null)
|
|
88062
87661
|
);
|
|
88063
|
-
},
|
|
87662
|
+
}, GKe = function(e) {
|
|
88064
87663
|
var t = e.titleId, n = e.title;
|
|
88065
87664
|
return p.createElement(
|
|
88066
87665
|
"svg",
|
|
@@ -88068,14 +87667,14 @@ var _Ue = function(e) {
|
|
|
88068
87667
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88069
87668
|
p.createElement("path", { d: "M12 4.5H3M12 9.5H3M21 14.5H3M21 19.5H3", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88070
87669
|
);
|
|
88071
|
-
},
|
|
87670
|
+
}, ude = function(e) {
|
|
88072
87671
|
var t, n, r, o, i, a;
|
|
88073
87672
|
return p.createElement(
|
|
88074
87673
|
"span",
|
|
88075
87674
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88076
|
-
p.createElement(
|
|
87675
|
+
p.createElement(GKe, null)
|
|
88077
87676
|
);
|
|
88078
|
-
},
|
|
87677
|
+
}, qKe = function(e) {
|
|
88079
87678
|
var t = e.titleId, n = e.title;
|
|
88080
87679
|
return p.createElement(
|
|
88081
87680
|
"svg",
|
|
@@ -88083,14 +87682,14 @@ var _Ue = function(e) {
|
|
|
88083
87682
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88084
87683
|
p.createElement("path", { d: "M12 4.5h9M12 9.5h9M3 14.5h18M3 19.5h18", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88085
87684
|
);
|
|
88086
|
-
},
|
|
87685
|
+
}, dde = function(e) {
|
|
88087
87686
|
var t, n, r, o, i, a;
|
|
88088
87687
|
return p.createElement(
|
|
88089
87688
|
"span",
|
|
88090
87689
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88091
|
-
p.createElement(
|
|
87690
|
+
p.createElement(qKe, null)
|
|
88092
87691
|
);
|
|
88093
|
-
},
|
|
87692
|
+
}, XKe = function(e) {
|
|
88094
87693
|
var t = e.titleId, n = e.title;
|
|
88095
87694
|
return p.createElement(
|
|
88096
87695
|
"svg",
|
|
@@ -88098,14 +87697,14 @@ var _Ue = function(e) {
|
|
|
88098
87697
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88099
87698
|
p.createElement("path", { d: "M3 4.5h18M3 9.5h9.47M3 14.5h18M3 19.5h9.47", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88100
87699
|
);
|
|
88101
|
-
},
|
|
87700
|
+
}, YKe = function(e) {
|
|
88102
87701
|
var t, n, r, o, i, a;
|
|
88103
87702
|
return p.createElement(
|
|
88104
87703
|
"span",
|
|
88105
87704
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88106
|
-
p.createElement(
|
|
87705
|
+
p.createElement(XKe, null)
|
|
88107
87706
|
);
|
|
88108
|
-
},
|
|
87707
|
+
}, ZKe = function(e) {
|
|
88109
87708
|
var t = e.titleId, n = e.title;
|
|
88110
87709
|
return p.createElement(
|
|
88111
87710
|
"svg",
|
|
@@ -88113,14 +87712,14 @@ var _Ue = function(e) {
|
|
|
88113
87712
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88114
87713
|
p.createElement("path", { d: "M3 4.5h18M11.53 9.5H21M3 14.5h18M11.53 19.5H21", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88115
87714
|
);
|
|
88116
|
-
},
|
|
87715
|
+
}, JKe = function(e) {
|
|
88117
87716
|
var t, n, r, o, i, a;
|
|
88118
87717
|
return p.createElement(
|
|
88119
87718
|
"span",
|
|
88120
87719
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88121
|
-
p.createElement(
|
|
87720
|
+
p.createElement(ZKe, null)
|
|
88122
87721
|
);
|
|
88123
|
-
},
|
|
87722
|
+
}, QKe = function(e) {
|
|
88124
87723
|
var t = e.titleId, n = e.title;
|
|
88125
87724
|
return p.createElement(
|
|
88126
87725
|
"svg",
|
|
@@ -88129,14 +87728,14 @@ var _Ue = function(e) {
|
|
|
88129
87728
|
p.createElement("path", { d: "M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
88130
87729
|
p.createElement("path", { d: "M7.75 12l2.83 2.83 5.67-5.66", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88131
87730
|
);
|
|
88132
|
-
},
|
|
87731
|
+
}, fde = function(e) {
|
|
88133
87732
|
var t, n, r, o, i, a;
|
|
88134
87733
|
return p.createElement(
|
|
88135
87734
|
"span",
|
|
88136
87735
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88137
|
-
p.createElement(
|
|
87736
|
+
p.createElement(QKe, null)
|
|
88138
87737
|
);
|
|
88139
|
-
},
|
|
87738
|
+
}, eGe = function(e) {
|
|
88140
87739
|
var t = e.titleId, n = e.title;
|
|
88141
87740
|
return p.createElement(
|
|
88142
87741
|
"svg",
|
|
@@ -88144,14 +87743,14 @@ var _Ue = function(e) {
|
|
|
88144
87743
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88145
87744
|
p.createElement("path", { d: "M3.667 12l5.549 5.833L20.333 6.167", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88146
87745
|
);
|
|
88147
|
-
},
|
|
87746
|
+
}, tGe = function(e) {
|
|
88148
87747
|
var t, n, r, o, i, a;
|
|
88149
87748
|
return p.createElement(
|
|
88150
87749
|
"span",
|
|
88151
87750
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88152
|
-
p.createElement(
|
|
87751
|
+
p.createElement(eGe, null)
|
|
88153
87752
|
);
|
|
88154
|
-
},
|
|
87753
|
+
}, nGe = function(e) {
|
|
88155
87754
|
var t = e.titleId, n = e.title;
|
|
88156
87755
|
return p.createElement(
|
|
88157
87756
|
"svg",
|
|
@@ -88159,14 +87758,14 @@ var _Ue = function(e) {
|
|
|
88159
87758
|
n ? p.createElement("title", { id: t }, n) : null,
|
|
88160
87759
|
p.createElement("path", { d: "M21 5.98c-3.33-.33-6.68-.5-10.02-.5-1.98 0-3.96.1-5.94.3L3 5.98M8.5 4.97l.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3M18.85 9.14l-.65 10.07C18.09 20.78 18 22 15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14M10.33 16.5h3.33M9.5 12.5h5", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88161
87760
|
);
|
|
88162
|
-
},
|
|
87761
|
+
}, pde = function(e) {
|
|
88163
87762
|
var t, n, r, o, i, a;
|
|
88164
87763
|
return p.createElement(
|
|
88165
87764
|
"span",
|
|
88166
87765
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88167
|
-
p.createElement(
|
|
87766
|
+
p.createElement(nGe, null)
|
|
88168
87767
|
);
|
|
88169
|
-
},
|
|
87768
|
+
}, rGe = function(e) {
|
|
88170
87769
|
var t = e.titleId, n = e.title;
|
|
88171
87770
|
return p.createElement(
|
|
88172
87771
|
"svg",
|
|
@@ -88175,14 +87774,14 @@ var _Ue = function(e) {
|
|
|
88175
87774
|
p.createElement("path", { d: "M7.13 18.31h8c2.76 0 5-2.24 5-5s-2.24-5-5-5h-11", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
88176
87775
|
p.createElement("path", { d: "M6.43 10.81L3.87 8.25l2.56-2.56", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88177
87776
|
);
|
|
88178
|
-
},
|
|
87777
|
+
}, oGe = function(e) {
|
|
88179
87778
|
var t, n, r, o, i, a;
|
|
88180
87779
|
return p.createElement(
|
|
88181
87780
|
"span",
|
|
88182
87781
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88183
|
-
p.createElement(
|
|
87782
|
+
p.createElement(rGe, null)
|
|
88184
87783
|
);
|
|
88185
|
-
},
|
|
87784
|
+
}, iGe = function(e) {
|
|
88186
87785
|
var t = e.titleId, n = e.title;
|
|
88187
87786
|
return p.createElement(
|
|
88188
87787
|
"svg",
|
|
@@ -88191,14 +87790,14 @@ var _Ue = function(e) {
|
|
|
88191
87790
|
p.createElement("path", { d: "M10 12h8m-8-5h8m-8 10h8m-9 5h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
88192
87791
|
p.createElement("path", { d: "M5.995 7h.008m-.008 5h.008m-.008 5h.008", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88193
87792
|
);
|
|
88194
|
-
},
|
|
87793
|
+
}, aGe = function(e) {
|
|
88195
87794
|
var t, n, r, o, i, a;
|
|
88196
87795
|
return p.createElement(
|
|
88197
87796
|
"span",
|
|
88198
87797
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88199
|
-
p.createElement(
|
|
87798
|
+
p.createElement(iGe, null)
|
|
88200
87799
|
);
|
|
88201
|
-
},
|
|
87800
|
+
}, lGe = function(e) {
|
|
88202
87801
|
var t = e.titleId, n = e.title;
|
|
88203
87802
|
return p.createElement(
|
|
88204
87803
|
"svg",
|
|
@@ -88207,14 +87806,14 @@ var _Ue = function(e) {
|
|
|
88207
87806
|
p.createElement("path", { d: "M2 10.16v4c0 2 1 3 3 3h1.43c.37 0 .74.11 1.06.3l2.92 1.83c2.52 1.58 4.59.43 4.59-2.54V7.57c0-2.98-2.07-4.12-4.59-2.54L7.49 6.86c-.32.19-.69.3-1.06.3H5c-2 0-3 1-3 3z", stroke: "currentcolor", strokeWidth: 1.5 }),
|
|
88208
87807
|
p.createElement("path", { d: "M22 14.12l-3.96-3.96M21.96 10.2L18 14.16", stroke: "currentcolor", strokeWidth: 1.5, strokeMiterlimit: 10, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88209
87808
|
);
|
|
88210
|
-
},
|
|
87809
|
+
}, hde = function(e) {
|
|
88211
87810
|
var t, n, r, o, i, a;
|
|
88212
87811
|
return p.createElement(
|
|
88213
87812
|
"span",
|
|
88214
87813
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88215
|
-
p.createElement(
|
|
87814
|
+
p.createElement(lGe, null)
|
|
88216
87815
|
);
|
|
88217
|
-
},
|
|
87816
|
+
}, sGe = function(e) {
|
|
88218
87817
|
var t = e.titleId, n = e.title;
|
|
88219
87818
|
return p.createElement(
|
|
88220
87819
|
"svg",
|
|
@@ -88223,14 +87822,217 @@ var _Ue = function(e) {
|
|
|
88223
87822
|
p.createElement("path", { d: "M12 7.75V13M21.08 8.58v6.84c0 1.12-.6 2.16-1.57 2.73l-5.94 3.43c-.97.56-2.17.56-3.15 0l-5.94-3.43a3.15 3.15 0 01-1.57-2.73V8.58c0-1.12.6-2.16 1.57-2.73l5.94-3.43c.97-.56 2.17-.56 3.15 0l5.94 3.43c.97.57 1.57 1.6 1.57 2.73z", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
88224
87823
|
p.createElement("path", { d: "M12 16.2v.1", stroke: "currentcolor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" })
|
|
88225
87824
|
);
|
|
88226
|
-
},
|
|
87825
|
+
}, Kz = function(e) {
|
|
88227
87826
|
var t, n, r, o, i, a;
|
|
88228
87827
|
return p.createElement(
|
|
88229
87828
|
"span",
|
|
88230
87829
|
De({}, e, { className: "beca-icon" + (e.className ? " " + e.className : ""), style: De(De({}, e.style), { color: (r = (t = e.color) !== null && t !== void 0 ? t : (n = e.style) === null || n === void 0 ? void 0 : n.color) !== null && r !== void 0 ? r : "", fontSize: (a = (o = e.size) !== null && o !== void 0 ? o : (i = e.style) === null || i === void 0 ? void 0 : i.fontSize) !== null && a !== void 0 ? a : "" }) }),
|
|
88231
|
-
p.createElement(
|
|
87830
|
+
p.createElement(sGe, null)
|
|
88232
87831
|
);
|
|
88233
87832
|
};
|
|
87833
|
+
function cGe() {
|
|
87834
|
+
if (console && console.warn) {
|
|
87835
|
+
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
87836
|
+
t[n] = arguments[n];
|
|
87837
|
+
typeof t[0] == "string" && (t[0] = `react-i18next:: ${t[0]}`), console.warn(...t);
|
|
87838
|
+
}
|
|
87839
|
+
}
|
|
87840
|
+
const zX = {};
|
|
87841
|
+
function dL() {
|
|
87842
|
+
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
87843
|
+
t[n] = arguments[n];
|
|
87844
|
+
typeof t[0] == "string" && zX[t[0]] || (typeof t[0] == "string" && (zX[t[0]] = /* @__PURE__ */ new Date()), cGe(...t));
|
|
87845
|
+
}
|
|
87846
|
+
const mde = (e, t) => () => {
|
|
87847
|
+
if (e.isInitialized)
|
|
87848
|
+
t();
|
|
87849
|
+
else {
|
|
87850
|
+
const n = () => {
|
|
87851
|
+
setTimeout(() => {
|
|
87852
|
+
e.off("initialized", n);
|
|
87853
|
+
}, 0), t();
|
|
87854
|
+
};
|
|
87855
|
+
e.on("initialized", n);
|
|
87856
|
+
}
|
|
87857
|
+
};
|
|
87858
|
+
function HX(e, t, n) {
|
|
87859
|
+
e.loadNamespaces(t, mde(e, n));
|
|
87860
|
+
}
|
|
87861
|
+
function FX(e, t, n, r) {
|
|
87862
|
+
typeof n == "string" && (n = [n]), n.forEach((o) => {
|
|
87863
|
+
e.options.ns.indexOf(o) < 0 && e.options.ns.push(o);
|
|
87864
|
+
}), e.loadLanguages(t, mde(e, r));
|
|
87865
|
+
}
|
|
87866
|
+
function uGe(e, t) {
|
|
87867
|
+
let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
87868
|
+
const r = t.languages[0], o = t.options ? t.options.fallbackLng : !1, i = t.languages[t.languages.length - 1];
|
|
87869
|
+
if (r.toLowerCase() === "cimode")
|
|
87870
|
+
return !0;
|
|
87871
|
+
const a = (l, s) => {
|
|
87872
|
+
const c = t.services.backendConnector.state[`${l}|${s}`];
|
|
87873
|
+
return c === -1 || c === 2;
|
|
87874
|
+
};
|
|
87875
|
+
return n.bindI18n && n.bindI18n.indexOf("languageChanging") > -1 && t.services.backendConnector.backend && t.isLanguageChangingTo && !a(t.isLanguageChangingTo, e) ? !1 : !!(t.hasResourceBundle(r, e) || !t.services.backendConnector.backend || t.options.resources && !t.options.partialBundledLanguages || a(r, e) && (!o || a(i, e)));
|
|
87876
|
+
}
|
|
87877
|
+
function dGe(e, t) {
|
|
87878
|
+
let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
|
|
87879
|
+
return !t.languages || !t.languages.length ? (dL("i18n.languages were undefined or empty", t.languages), !0) : t.options.ignoreJSONStructure !== void 0 ? t.hasLoadedNamespace(e, {
|
|
87880
|
+
lng: n.lng,
|
|
87881
|
+
precheck: (o, i) => {
|
|
87882
|
+
if (n.bindI18n && n.bindI18n.indexOf("languageChanging") > -1 && o.services.backendConnector.backend && o.isLanguageChangingTo && !i(o.isLanguageChangingTo, e))
|
|
87883
|
+
return !1;
|
|
87884
|
+
}
|
|
87885
|
+
}) : uGe(e, t, n);
|
|
87886
|
+
}
|
|
87887
|
+
const fGe = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g, pGe = {
|
|
87888
|
+
"&": "&",
|
|
87889
|
+
"&": "&",
|
|
87890
|
+
"<": "<",
|
|
87891
|
+
"<": "<",
|
|
87892
|
+
">": ">",
|
|
87893
|
+
">": ">",
|
|
87894
|
+
"'": "'",
|
|
87895
|
+
"'": "'",
|
|
87896
|
+
""": '"',
|
|
87897
|
+
""": '"',
|
|
87898
|
+
" ": " ",
|
|
87899
|
+
" ": " ",
|
|
87900
|
+
"©": "©",
|
|
87901
|
+
"©": "©",
|
|
87902
|
+
"®": "®",
|
|
87903
|
+
"®": "®",
|
|
87904
|
+
"…": "…",
|
|
87905
|
+
"…": "…",
|
|
87906
|
+
"/": "/",
|
|
87907
|
+
"/": "/"
|
|
87908
|
+
}, hGe = (e) => pGe[e], mGe = (e) => e.replace(fGe, hGe);
|
|
87909
|
+
let fL = {
|
|
87910
|
+
bindI18n: "languageChanged",
|
|
87911
|
+
bindI18nStore: "",
|
|
87912
|
+
transEmptyNodeValue: "",
|
|
87913
|
+
transSupportBasicHtmlNodes: !0,
|
|
87914
|
+
transWrapTextNodes: "",
|
|
87915
|
+
transKeepBasicHtmlNodesFor: ["br", "strong", "i", "p"],
|
|
87916
|
+
useSuspense: !0,
|
|
87917
|
+
unescape: mGe
|
|
87918
|
+
};
|
|
87919
|
+
function gGe() {
|
|
87920
|
+
let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
87921
|
+
fL = {
|
|
87922
|
+
...fL,
|
|
87923
|
+
...e
|
|
87924
|
+
};
|
|
87925
|
+
}
|
|
87926
|
+
function vGe() {
|
|
87927
|
+
return fL;
|
|
87928
|
+
}
|
|
87929
|
+
let gde;
|
|
87930
|
+
function yGe(e) {
|
|
87931
|
+
gde = e;
|
|
87932
|
+
}
|
|
87933
|
+
function CGe() {
|
|
87934
|
+
return gde;
|
|
87935
|
+
}
|
|
87936
|
+
const bGe = {
|
|
87937
|
+
type: "3rdParty",
|
|
87938
|
+
init(e) {
|
|
87939
|
+
gGe(e.options.react), yGe(e);
|
|
87940
|
+
}
|
|
87941
|
+
}, vde = Pd();
|
|
87942
|
+
class SGe {
|
|
87943
|
+
constructor() {
|
|
87944
|
+
this.usedNamespaces = {};
|
|
87945
|
+
}
|
|
87946
|
+
addUsedNamespaces(t) {
|
|
87947
|
+
t.forEach((n) => {
|
|
87948
|
+
this.usedNamespaces[n] || (this.usedNamespaces[n] = !0);
|
|
87949
|
+
});
|
|
87950
|
+
}
|
|
87951
|
+
getUsedNamespaces() {
|
|
87952
|
+
return Object.keys(this.usedNamespaces);
|
|
87953
|
+
}
|
|
87954
|
+
}
|
|
87955
|
+
const wGe = (e, t) => {
|
|
87956
|
+
const n = bt();
|
|
87957
|
+
return tn(() => {
|
|
87958
|
+
n.current = e;
|
|
87959
|
+
}, [e, t]), n.current;
|
|
87960
|
+
};
|
|
87961
|
+
function xGe(e) {
|
|
87962
|
+
let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
87963
|
+
const {
|
|
87964
|
+
i18n: n
|
|
87965
|
+
} = t, {
|
|
87966
|
+
i18n: r,
|
|
87967
|
+
defaultNS: o
|
|
87968
|
+
} = fr(vde) || {}, i = n || r || CGe();
|
|
87969
|
+
if (i && !i.reportNamespaces && (i.reportNamespaces = new SGe()), !i) {
|
|
87970
|
+
dL("You will need to pass in an i18next instance by using initReactI18next");
|
|
87971
|
+
const O = ($, M) => typeof M == "string" ? M : M && typeof M == "object" && typeof M.defaultValue == "string" ? M.defaultValue : Array.isArray($) ? $[$.length - 1] : $, T = [O, {}, !1];
|
|
87972
|
+
return T.t = O, T.i18n = {}, T.ready = !1, T;
|
|
87973
|
+
}
|
|
87974
|
+
i.options.react && i.options.react.wait !== void 0 && dL("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");
|
|
87975
|
+
const a = {
|
|
87976
|
+
...vGe(),
|
|
87977
|
+
...i.options.react,
|
|
87978
|
+
...t
|
|
87979
|
+
}, {
|
|
87980
|
+
useSuspense: l,
|
|
87981
|
+
keyPrefix: s
|
|
87982
|
+
} = a;
|
|
87983
|
+
let c = e || o || i.options && i.options.defaultNS;
|
|
87984
|
+
c = typeof c == "string" ? [c] : c || ["translation"], i.reportNamespaces.addUsedNamespaces && i.reportNamespaces.addUsedNamespaces(c);
|
|
87985
|
+
const d = (i.isInitialized || i.initializedStoreOnce) && c.every((O) => dGe(O, i, a));
|
|
87986
|
+
function f() {
|
|
87987
|
+
return i.getFixedT(t.lng || null, a.nsMode === "fallback" ? c : c[0], s);
|
|
87988
|
+
}
|
|
87989
|
+
const [m, g] = gt(f);
|
|
87990
|
+
let y = c.join();
|
|
87991
|
+
t.lng && (y = `${t.lng}${y}`);
|
|
87992
|
+
const b = wGe(y), C = bt(!0);
|
|
87993
|
+
tn(() => {
|
|
87994
|
+
const {
|
|
87995
|
+
bindI18n: O,
|
|
87996
|
+
bindI18nStore: T
|
|
87997
|
+
} = a;
|
|
87998
|
+
C.current = !0, !d && !l && (t.lng ? FX(i, t.lng, c, () => {
|
|
87999
|
+
C.current && g(f);
|
|
88000
|
+
}) : HX(i, c, () => {
|
|
88001
|
+
C.current && g(f);
|
|
88002
|
+
})), d && b && b !== y && C.current && g(f);
|
|
88003
|
+
function $() {
|
|
88004
|
+
C.current && g(f);
|
|
88005
|
+
}
|
|
88006
|
+
return O && i && i.on(O, $), T && i && i.store.on(T, $), () => {
|
|
88007
|
+
C.current = !1, O && i && O.split(" ").forEach((M) => i.off(M, $)), T && i && T.split(" ").forEach((M) => i.store.off(M, $));
|
|
88008
|
+
};
|
|
88009
|
+
}, [i, y]);
|
|
88010
|
+
const w = bt(!0);
|
|
88011
|
+
tn(() => {
|
|
88012
|
+
C.current && !w.current && g(f), w.current = !1;
|
|
88013
|
+
}, [i, s]);
|
|
88014
|
+
const E = [m, i, d];
|
|
88015
|
+
if (E.t = m, E.i18n = i, E.ready = d, d || !d && !l)
|
|
88016
|
+
return E;
|
|
88017
|
+
throw new Promise((O) => {
|
|
88018
|
+
t.lng ? FX(i, t.lng, c, () => O()) : HX(i, c, () => O());
|
|
88019
|
+
});
|
|
88020
|
+
}
|
|
88021
|
+
function EGe(e) {
|
|
88022
|
+
let {
|
|
88023
|
+
i18n: t,
|
|
88024
|
+
defaultNS: n,
|
|
88025
|
+
children: r
|
|
88026
|
+
} = e;
|
|
88027
|
+
const o = On(() => ({
|
|
88028
|
+
i18n: t,
|
|
88029
|
+
defaultNS: n
|
|
88030
|
+
}), [t, n]);
|
|
88031
|
+
return Xee(vde.Provider, {
|
|
88032
|
+
value: o
|
|
88033
|
+
}, r);
|
|
88034
|
+
}
|
|
88035
|
+
const yde = () => ({ t: xGe().t });
|
|
88234
88036
|
/*! *****************************************************************************
|
|
88235
88037
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
88236
88038
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
@@ -88253,7 +88055,7 @@ var pL = function(e, t) {
|
|
|
88253
88055
|
r.hasOwnProperty(o) && (n[o] = r[o]);
|
|
88254
88056
|
}, pL(e, t);
|
|
88255
88057
|
};
|
|
88256
|
-
function
|
|
88058
|
+
function $Ge(e, t) {
|
|
88257
88059
|
pL(e, t);
|
|
88258
88060
|
function n() {
|
|
88259
88061
|
this.constructor = e;
|
|
@@ -88270,7 +88072,7 @@ var n9 = function() {
|
|
|
88270
88072
|
return t;
|
|
88271
88073
|
}, n9.apply(this, arguments);
|
|
88272
88074
|
};
|
|
88273
|
-
function
|
|
88075
|
+
function OGe(e, t, n, r) {
|
|
88274
88076
|
var o, i = !1, a = 0;
|
|
88275
88077
|
function l() {
|
|
88276
88078
|
o && clearTimeout(o);
|
|
@@ -88315,7 +88117,7 @@ function jX(e) {
|
|
|
88315
88117
|
var VX = (
|
|
88316
88118
|
/** @class */
|
|
88317
88119
|
function(e) {
|
|
88318
|
-
|
|
88120
|
+
$Ge(t, e);
|
|
88319
88121
|
function t(n) {
|
|
88320
88122
|
var r = e.call(this, n) || this;
|
|
88321
88123
|
return r.lastScrollTop = 0, r.actionTriggered = !1, r.startY = 0, r.currentY = 0, r.dragging = !1, r.maxPullDownDistance = 0, r.getScrollableTarget = function() {
|
|
@@ -88348,7 +88150,7 @@ var VX = (
|
|
|
88348
88150
|
showLoader: !1,
|
|
88349
88151
|
pullToRefreshThresholdBreached: !1,
|
|
88350
88152
|
prevDataLength: n.dataLength
|
|
88351
|
-
}, r.throttledOnScrollListener =
|
|
88153
|
+
}, r.throttledOnScrollListener = OGe(150, r.onScrollListener).bind(r), r.onStart = r.onStart.bind(r), r.onMove = r.onMove.bind(r), r.onEnd = r.onEnd.bind(r), r;
|
|
88352
88154
|
}
|
|
88353
88155
|
return t.prototype.componentDidMount = function() {
|
|
88354
88156
|
if (typeof this.props.dataLength > "u")
|
|
@@ -88405,8 +88207,8 @@ var VX = (
|
|
|
88405
88207
|
}, t;
|
|
88406
88208
|
}(rm)
|
|
88407
88209
|
);
|
|
88408
|
-
const BS = 10,
|
|
88409
|
-
const { t: n } =
|
|
88210
|
+
const BS = 10, NGe = (e, t) => {
|
|
88211
|
+
const { t: n } = yde(), {
|
|
88410
88212
|
applicationsCardData: r,
|
|
88411
88213
|
notifications: o = [],
|
|
88412
88214
|
unseenNotifications: i = [],
|
|
@@ -88528,7 +88330,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88528
88330
|
label: /* @__PURE__ */ mn("div", { children: [
|
|
88529
88331
|
n("Unread"),
|
|
88530
88332
|
" ",
|
|
88531
|
-
/* @__PURE__ */ A(
|
|
88333
|
+
/* @__PURE__ */ A(Gz, { count: m })
|
|
88532
88334
|
] }),
|
|
88533
88335
|
children: /* @__PURE__ */ A("div", { className: "notification-popup-body", id: "scrollableDiv", children: /* @__PURE__ */ A(
|
|
88534
88336
|
VX,
|
|
@@ -88596,7 +88398,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88596
88398
|
children: /* @__PURE__ */ A(
|
|
88597
88399
|
ar,
|
|
88598
88400
|
{
|
|
88599
|
-
icon: /* @__PURE__ */ A(
|
|
88401
|
+
icon: /* @__PURE__ */ A(jKe, {}),
|
|
88600
88402
|
size: "small",
|
|
88601
88403
|
type: "text",
|
|
88602
88404
|
title: n("Mark all as read"),
|
|
@@ -88634,7 +88436,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88634
88436
|
] });
|
|
88635
88437
|
}, WX = (e) => {
|
|
88636
88438
|
var m, g;
|
|
88637
|
-
const { t } =
|
|
88439
|
+
const { t } = yde(), {
|
|
88638
88440
|
applicationsCardData: n = [],
|
|
88639
88441
|
item: r,
|
|
88640
88442
|
onClickNotificationItem: o,
|
|
@@ -88647,7 +88449,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88647
88449
|
{
|
|
88648
88450
|
label: t(a ? "Unselectable" : "Selectable"),
|
|
88649
88451
|
key: "select",
|
|
88650
|
-
icon: /* @__PURE__ */ A(
|
|
88452
|
+
icon: /* @__PURE__ */ A(fde, {}),
|
|
88651
88453
|
onClick: () => {
|
|
88652
88454
|
l(!a);
|
|
88653
88455
|
}
|
|
@@ -88655,7 +88457,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88655
88457
|
{
|
|
88656
88458
|
label: t("Mark as read"),
|
|
88657
88459
|
key: "unread",
|
|
88658
|
-
icon: /* @__PURE__ */ A(
|
|
88460
|
+
icon: /* @__PURE__ */ A(dKe, {}),
|
|
88659
88461
|
onClick: () => {
|
|
88660
88462
|
i && (i([r.id], "Read"), r9("Read", [r.id]));
|
|
88661
88463
|
}
|
|
@@ -88663,7 +88465,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88663
88465
|
{
|
|
88664
88466
|
label: t("Mark as unread"),
|
|
88665
88467
|
key: "read",
|
|
88666
|
-
icon: /* @__PURE__ */ A(
|
|
88468
|
+
icon: /* @__PURE__ */ A(cKe, {}),
|
|
88667
88469
|
onClick: () => {
|
|
88668
88470
|
i && (i([r.id], "Unread"), r9("Unread", [r.id]));
|
|
88669
88471
|
}
|
|
@@ -88751,13 +88553,100 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88751
88553
|
let i = [];
|
|
88752
88554
|
r && (i = JSON.parse(r)), i.push(o), localStorage.setItem("logNoti", JSON.stringify(i));
|
|
88753
88555
|
}
|
|
88754
|
-
},
|
|
88556
|
+
}, TGe = go(NGe), Cde = {
|
|
88557
|
+
search: "Search",
|
|
88558
|
+
support: "Support",
|
|
88559
|
+
hi: "Hi",
|
|
88560
|
+
language: "Language",
|
|
88561
|
+
application: "Application",
|
|
88562
|
+
notifications: "Notifications",
|
|
88563
|
+
cancel: "Cancel",
|
|
88564
|
+
leftAlignment: "Left alignment",
|
|
88565
|
+
rightAlignment: "Right alignment",
|
|
88566
|
+
centerAlignment: "Center alignment",
|
|
88567
|
+
justify: "Justify",
|
|
88568
|
+
customTheme: "Custom theme",
|
|
88569
|
+
font: "Font",
|
|
88570
|
+
enterLink: "Enter link",
|
|
88571
|
+
enterImageLink: "Enter image link",
|
|
88572
|
+
pasteWithTextStylesConfirm: "Do you want to paste with text styles?",
|
|
88573
|
+
paste: "Paste",
|
|
88574
|
+
format: "Format",
|
|
88575
|
+
add1ColumnToTheLeft: "Add 1 column to the left",
|
|
88576
|
+
add1ColumnToTheRight: "Add 1 column to the right",
|
|
88577
|
+
removeColumn: "Remove column",
|
|
88578
|
+
add1RowAbove: "Add 1 row above",
|
|
88579
|
+
add1RowBelow: "Add 1 row below",
|
|
88580
|
+
removeRow: "Remove row",
|
|
88581
|
+
mergeCells: "Merge cells",
|
|
88582
|
+
splitCells: "Split cells",
|
|
88583
|
+
removeTable: "Remove table",
|
|
88584
|
+
undo: "Undo",
|
|
88585
|
+
redo: "Redo",
|
|
88586
|
+
refresh: "Refresh",
|
|
88587
|
+
table: "Table",
|
|
88588
|
+
darkMode: "Dark mode",
|
|
88589
|
+
lightMode: "Light mode",
|
|
88590
|
+
english: "English",
|
|
88591
|
+
vietnamese: "Vietnamese"
|
|
88592
|
+
}, bde = {
|
|
88593
|
+
search: "Tìm kiếm",
|
|
88594
|
+
support: "Hỗ trợ",
|
|
88595
|
+
hi: "Xin chào",
|
|
88596
|
+
language: "Ngôn ngữ",
|
|
88597
|
+
application: "Ứng dụng",
|
|
88598
|
+
notifications: "Thông báo",
|
|
88599
|
+
cancel: "Hủy",
|
|
88600
|
+
leftAlignment: "Căn trái",
|
|
88601
|
+
rightAlignment: "Căn phải",
|
|
88602
|
+
centerAlignment: "Căn giữa",
|
|
88603
|
+
justify: "Căn đều",
|
|
88604
|
+
customTheme: "Tùy chỉnh giao diện",
|
|
88605
|
+
font: "Font chữ",
|
|
88606
|
+
enterLink: "Nhập link",
|
|
88607
|
+
enterImageLink: "Nhập link ảnh",
|
|
88608
|
+
pasteWithTextStylesConfirm: "Bạn có muốn dán cùng với kiểu chữ?",
|
|
88609
|
+
paste: "Dán",
|
|
88610
|
+
format: "Định dạng",
|
|
88611
|
+
add1ColumnToTheLeft: "Thêm 1 cột bên trái",
|
|
88612
|
+
add1ColumnToTheRight: "Thêm 1 cột bên phải",
|
|
88613
|
+
removeColumn: "Xóa cột",
|
|
88614
|
+
add1RowAbove: "Thêm 1 hàng bên trên",
|
|
88615
|
+
add1RowBelow: "Thêm 1 hàng bên dưới",
|
|
88616
|
+
removeRow: "Xóa hàng",
|
|
88617
|
+
mergeCells: "Ghép ô",
|
|
88618
|
+
splitCells: "Tách ô",
|
|
88619
|
+
removeTable: "Xóa bảng",
|
|
88620
|
+
undo: "Hoàn tác",
|
|
88621
|
+
redo: "Làm lại",
|
|
88622
|
+
refresh: "Thanh tẩy",
|
|
88623
|
+
table: "Bảng",
|
|
88624
|
+
darkMode: "Giao diện tối",
|
|
88625
|
+
lightMode: "Giao diện sáng",
|
|
88626
|
+
english: "Tiếng Anh",
|
|
88627
|
+
vietnamese: "Tiếng Việt"
|
|
88628
|
+
};
|
|
88629
|
+
function X8t() {
|
|
88630
|
+
const [e, t] = gt();
|
|
88631
|
+
return tn(() => {
|
|
88632
|
+
const n = localStorage.getItem("locale");
|
|
88633
|
+
t(n || "vi");
|
|
88634
|
+
}, []), e;
|
|
88635
|
+
}
|
|
88636
|
+
function aO() {
|
|
88637
|
+
const [e, t] = gt({});
|
|
88638
|
+
return tn(() => {
|
|
88639
|
+
const n = localStorage.getItem("locale");
|
|
88640
|
+
t(n === "en" ? Cde : bde);
|
|
88641
|
+
}, []), e;
|
|
88642
|
+
}
|
|
88643
|
+
const $x = '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', MGe = '"Inter", sans-serif;', Y8t = '"BeVietnamPro", sans-serif;', Aw = 992, od = {
|
|
88755
88644
|
colorPrimary: "#2174cd",
|
|
88756
88645
|
colorSuccess: "var(--success-color-5)",
|
|
88757
88646
|
colorWarning: "var(--warning-color-5)",
|
|
88758
88647
|
colorError: "var(--danger-color-5)",
|
|
88759
88648
|
colorInfo: "var(--info-color-5)"
|
|
88760
|
-
},
|
|
88649
|
+
}, RGe = {
|
|
88761
88650
|
colorTextPlaceholder: " var(--input-placeholder-color)",
|
|
88762
88651
|
colorBorder: "var(--input-border-color)"
|
|
88763
88652
|
// colorFillTertiary: "var(--fill-form-control-bg-color)",
|
|
@@ -88773,7 +88662,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88773
88662
|
colorErrorHover: "var(--danger-color-3)"
|
|
88774
88663
|
}, k0 = {
|
|
88775
88664
|
...od,
|
|
88776
|
-
...
|
|
88665
|
+
...RGe,
|
|
88777
88666
|
...Sde
|
|
88778
88667
|
}, A9 = {
|
|
88779
88668
|
token: {
|
|
@@ -88913,7 +88802,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88913
88802
|
headerBg: "var(--table-bg)"
|
|
88914
88803
|
}
|
|
88915
88804
|
}
|
|
88916
|
-
}, UX = "https://library.becawork.vn/api/PublicLibrary/ViewFile/gfregdblvwd7l9bqxedwh1sjg29xbmzer0olhsbydl782byvn1", KX = "https://library.becawork.vn/api/PublicLibrary/ViewFile/awi0eoxh8neoki78qvv0iecos64urednjjld61v9x9uxuzbya3", { Header:
|
|
88805
|
+
}, UX = "https://library.becawork.vn/api/PublicLibrary/ViewFile/gfregdblvwd7l9bqxedwh1sjg29xbmzer0olhsbydl782byvn1", KX = "https://library.becawork.vn/api/PublicLibrary/ViewFile/awi0eoxh8neoki78qvv0iecos64urednjjld61v9x9uxuzbya3", { Header: _Ge } = H2, IGe = (e, t) => {
|
|
88917
88806
|
var _e, Ee, Te, Re, Pe, ze;
|
|
88918
88807
|
const {
|
|
88919
88808
|
collapsed: n,
|
|
@@ -88970,7 +88859,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
88970
88859
|
const Ke = [
|
|
88971
88860
|
{
|
|
88972
88861
|
key: "customize-theme",
|
|
88973
|
-
icon: /* @__PURE__ */ A(
|
|
88862
|
+
icon: /* @__PURE__ */ A(Que, {}),
|
|
88974
88863
|
label: L.customTheme,
|
|
88975
88864
|
onClick: () => {
|
|
88976
88865
|
Z(!0);
|
|
@@ -89077,7 +88966,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89077
88966
|
href: "tel:" + Ke.trim(),
|
|
89078
88967
|
className: "menu-support-item__phone",
|
|
89079
88968
|
children: [
|
|
89080
|
-
/* @__PURE__ */ A(
|
|
88969
|
+
/* @__PURE__ */ A(LUe, { color: "var(--info-color-5)" }),
|
|
89081
88970
|
" ",
|
|
89082
88971
|
/* @__PURE__ */ A("span", { className: "menu-support-item__phone-number", children: Ke.trim() })
|
|
89083
88972
|
]
|
|
@@ -89127,7 +89016,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89127
89016
|
dd,
|
|
89128
89017
|
{
|
|
89129
89018
|
popupRender: () => /* @__PURE__ */ A(
|
|
89130
|
-
|
|
89019
|
+
xXe,
|
|
89131
89020
|
{
|
|
89132
89021
|
applicationsCardData: l,
|
|
89133
89022
|
currentApp: s,
|
|
@@ -89141,7 +89030,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89141
89030
|
{
|
|
89142
89031
|
title: L.application,
|
|
89143
89032
|
status: "info",
|
|
89144
|
-
icon: /* @__PURE__ */ A(
|
|
89033
|
+
icon: /* @__PURE__ */ A(AUe, {}),
|
|
89145
89034
|
shape: "circle",
|
|
89146
89035
|
type: xe,
|
|
89147
89036
|
size: Me
|
|
@@ -89160,7 +89049,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89160
89049
|
let Fe = "text", Xe = "medium";
|
|
89161
89050
|
return j === "SHE" && (Fe = "primary"), { buttonType: Fe, buttonSize: Xe };
|
|
89162
89051
|
}, [j]);
|
|
89163
|
-
return /* @__PURE__ */ mn(
|
|
89052
|
+
return /* @__PURE__ */ mn(_Ge, { className: ve("header", _ && "scrolled"), children: [
|
|
89164
89053
|
/* @__PURE__ */ mn("div", { className: "header-wrap", children: [
|
|
89165
89054
|
/* @__PURE__ */ mn("div", { className: "header-section-1", children: [
|
|
89166
89055
|
/* @__PURE__ */ mn("div", { className: "header-btw", children: [
|
|
@@ -89171,7 +89060,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89171
89060
|
type: xe,
|
|
89172
89061
|
status: "default",
|
|
89173
89062
|
className: ve(c && "mobile-collapse-button"),
|
|
89174
|
-
icon: n ? /* @__PURE__ */ A(
|
|
89063
|
+
icon: n ? /* @__PURE__ */ A(ade, {}) : /* @__PURE__ */ A(ide, {}),
|
|
89175
89064
|
onClick: r
|
|
89176
89065
|
}
|
|
89177
89066
|
),
|
|
@@ -89189,7 +89078,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89189
89078
|
q && "dark-theme"
|
|
89190
89079
|
),
|
|
89191
89080
|
type: xe,
|
|
89192
|
-
icon: q ? /* @__PURE__ */ A(
|
|
89081
|
+
icon: q ? /* @__PURE__ */ A(zKe, {}) : /* @__PURE__ */ A(pKe, {}),
|
|
89193
89082
|
onClick: ne,
|
|
89194
89083
|
shape: "circle",
|
|
89195
89084
|
status: "info",
|
|
@@ -89200,7 +89089,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89200
89089
|
dd,
|
|
89201
89090
|
{
|
|
89202
89091
|
popupRender: () => /* @__PURE__ */ A(
|
|
89203
|
-
|
|
89092
|
+
TGe,
|
|
89204
89093
|
{
|
|
89205
89094
|
...C,
|
|
89206
89095
|
ref: V,
|
|
@@ -89218,7 +89107,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89218
89107
|
},
|
|
89219
89108
|
placement: "bottomCenter",
|
|
89220
89109
|
children: /* @__PURE__ */ A(
|
|
89221
|
-
|
|
89110
|
+
Gz,
|
|
89222
89111
|
{
|
|
89223
89112
|
count: C.number,
|
|
89224
89113
|
size: "small",
|
|
@@ -89230,7 +89119,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89230
89119
|
title: C.title,
|
|
89231
89120
|
type: xe,
|
|
89232
89121
|
status: "info",
|
|
89233
|
-
icon: /* @__PURE__ */ A(
|
|
89122
|
+
icon: /* @__PURE__ */ A(gKe, {}),
|
|
89234
89123
|
onClick: C.onClick,
|
|
89235
89124
|
shape: "circle",
|
|
89236
89125
|
size: Me
|
|
@@ -89253,7 +89142,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89253
89142
|
title: L.support,
|
|
89254
89143
|
type: xe,
|
|
89255
89144
|
status: "info",
|
|
89256
|
-
icon: /* @__PURE__ */ A(
|
|
89145
|
+
icon: /* @__PURE__ */ A(FKe, {}),
|
|
89257
89146
|
shape: "circle",
|
|
89258
89147
|
size: Me
|
|
89259
89148
|
}
|
|
@@ -89333,7 +89222,7 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89333
89222
|
},
|
|
89334
89223
|
preserve: !1,
|
|
89335
89224
|
children: /* @__PURE__ */ A(bu.Item, { label: L.font, name: "fontFamily", children: /* @__PURE__ */ mn(Ec, { children: [
|
|
89336
|
-
/* @__PURE__ */ A(Ec.Option, { value:
|
|
89225
|
+
/* @__PURE__ */ A(Ec.Option, { value: MGe, children: "Inter" }),
|
|
89337
89226
|
/* @__PURE__ */ A(Ec.Option, { value: $x, children: "Apple System" })
|
|
89338
89227
|
] }) })
|
|
89339
89228
|
}
|
|
@@ -89341,11 +89230,61 @@ const BS = 10, MGe = (e, t) => {
|
|
|
89341
89230
|
}
|
|
89342
89231
|
)
|
|
89343
89232
|
] });
|
|
89344
|
-
},
|
|
89233
|
+
}, PGe = go(IGe), kGe = (e) => {
|
|
89345
89234
|
const { className: t } = e;
|
|
89346
89235
|
let n = "beca-badge";
|
|
89347
89236
|
return t && (n += " " + t), n;
|
|
89348
|
-
},
|
|
89237
|
+
}, Gz = (e) => /* @__PURE__ */ A(h$, { ...e, className: kGe(e) });
|
|
89238
|
+
function qz(e, t = 500) {
|
|
89239
|
+
const [n, r] = gt(e);
|
|
89240
|
+
return tn(() => {
|
|
89241
|
+
const o = setTimeout(() => {
|
|
89242
|
+
r(e);
|
|
89243
|
+
}, t);
|
|
89244
|
+
return () => {
|
|
89245
|
+
clearTimeout(o);
|
|
89246
|
+
};
|
|
89247
|
+
}, [e, t]), n;
|
|
89248
|
+
}
|
|
89249
|
+
function lO() {
|
|
89250
|
+
const [e, t] = gt(!1);
|
|
89251
|
+
return tn(() => {
|
|
89252
|
+
const r = document.querySelector(".mobile-app");
|
|
89253
|
+
t(r != null);
|
|
89254
|
+
}, []), { os: On(() => {
|
|
89255
|
+
const r = window.navigator.userAgent;
|
|
89256
|
+
return r.indexOf("Chrome") != -1 ? "Chrome" : r.indexOf("Firefox") != -1 ? "Firefox" : "Safari";
|
|
89257
|
+
}, []), isMobileApp: e };
|
|
89258
|
+
}
|
|
89259
|
+
function LGe({ config: e, userConfig: t }) {
|
|
89260
|
+
const n = On(() => {
|
|
89261
|
+
const o = { ...Qz };
|
|
89262
|
+
if (e) {
|
|
89263
|
+
const i = { ...e };
|
|
89264
|
+
Object.keys(i).forEach((a) => {
|
|
89265
|
+
Object.keys(i[a]).forEach((l) => {
|
|
89266
|
+
const s = i[a][l];
|
|
89267
|
+
typeof s == "object" ? Object.keys(s).forEach((c) => {
|
|
89268
|
+
o[a][l][c] = s[c];
|
|
89269
|
+
}) : o[a][l] = i[a][l];
|
|
89270
|
+
});
|
|
89271
|
+
});
|
|
89272
|
+
}
|
|
89273
|
+
return o;
|
|
89274
|
+
}, [JSON.stringify(e)]), r = On(() => {
|
|
89275
|
+
let o = {};
|
|
89276
|
+
const i = { ...wXe };
|
|
89277
|
+
if (t) {
|
|
89278
|
+
const a = { ...t };
|
|
89279
|
+
Object.keys(i).forEach((l) => {
|
|
89280
|
+
a[l] !== void 0 && a[l] !== null ? o[l] = a[l] : o[l] = i[l];
|
|
89281
|
+
});
|
|
89282
|
+
} else
|
|
89283
|
+
o = i;
|
|
89284
|
+
return o;
|
|
89285
|
+
}, [t, n]);
|
|
89286
|
+
return { mainLayoutConfig: n, userConfig: r };
|
|
89287
|
+
}
|
|
89349
89288
|
class Ox {
|
|
89350
89289
|
}
|
|
89351
89290
|
R0(Ox, "getMenus", (t) => {
|
|
@@ -89390,7 +89329,7 @@ class pd extends Error {
|
|
|
89390
89329
|
super(t), this.__proto__ = n;
|
|
89391
89330
|
}
|
|
89392
89331
|
}
|
|
89393
|
-
class
|
|
89332
|
+
class DGe extends Error {
|
|
89394
89333
|
/** Constructs a new instance of {@link @microsoft/signalr.UnsupportedTransportError}.
|
|
89395
89334
|
*
|
|
89396
89335
|
* @param {string} message A descriptive error message.
|
|
@@ -89401,7 +89340,7 @@ class AGe extends Error {
|
|
|
89401
89340
|
super(t), this.transport = n, this.errorType = "UnsupportedTransportError", this.__proto__ = r;
|
|
89402
89341
|
}
|
|
89403
89342
|
}
|
|
89404
|
-
class
|
|
89343
|
+
class AGe extends Error {
|
|
89405
89344
|
/** Constructs a new instance of {@link @microsoft/signalr.DisabledTransportError}.
|
|
89406
89345
|
*
|
|
89407
89346
|
* @param {string} message A descriptive error message.
|
|
@@ -89412,7 +89351,7 @@ class zGe extends Error {
|
|
|
89412
89351
|
super(t), this.transport = n, this.errorType = "DisabledTransportError", this.__proto__ = r;
|
|
89413
89352
|
}
|
|
89414
89353
|
}
|
|
89415
|
-
class
|
|
89354
|
+
class zGe extends Error {
|
|
89416
89355
|
/** Constructs a new instance of {@link @microsoft/signalr.FailedToStartTransportError}.
|
|
89417
89356
|
*
|
|
89418
89357
|
* @param {string} message A descriptive error message.
|
|
@@ -89423,7 +89362,7 @@ class HGe extends Error {
|
|
|
89423
89362
|
super(t), this.transport = n, this.errorType = "FailedToStartTransportError", this.__proto__ = r;
|
|
89424
89363
|
}
|
|
89425
89364
|
}
|
|
89426
|
-
class
|
|
89365
|
+
class HGe extends Error {
|
|
89427
89366
|
/** Constructs a new instance of {@link @microsoft/signalr.FailedToNegotiateWithServerError}.
|
|
89428
89367
|
*
|
|
89429
89368
|
* @param {string} message A descriptive error message.
|
|
@@ -89433,7 +89372,7 @@ class FGe extends Error {
|
|
|
89433
89372
|
super(t), this.errorType = "FailedToNegotiateWithServerError", this.__proto__ = n;
|
|
89434
89373
|
}
|
|
89435
89374
|
}
|
|
89436
|
-
class
|
|
89375
|
+
class FGe extends Error {
|
|
89437
89376
|
/** Constructs a new instance of {@link @microsoft/signalr.AggregateErrors}.
|
|
89438
89377
|
*
|
|
89439
89378
|
* @param {string} message A descriptive error message.
|
|
@@ -89494,7 +89433,7 @@ class z9 {
|
|
|
89494
89433
|
}
|
|
89495
89434
|
}
|
|
89496
89435
|
z9.instance = new z9();
|
|
89497
|
-
const
|
|
89436
|
+
const BGe = "7.0.3";
|
|
89498
89437
|
class Va {
|
|
89499
89438
|
static isRequired(t, n) {
|
|
89500
89439
|
if (t == null)
|
|
@@ -89530,9 +89469,9 @@ class Ba {
|
|
|
89530
89469
|
}
|
|
89531
89470
|
function H9(e, t) {
|
|
89532
89471
|
let n = "";
|
|
89533
|
-
return U6(e) ? (n = `Binary data of length ${e.byteLength}`, t && (n += `. Content: '${
|
|
89472
|
+
return U6(e) ? (n = `Binary data of length ${e.byteLength}`, t && (n += `. Content: '${jGe(e)}'`)) : typeof e == "string" && (n = `String data of length ${e.length}`, t && (n += `. Content: '${e}'`)), n;
|
|
89534
89473
|
}
|
|
89535
|
-
function
|
|
89474
|
+
function jGe(e) {
|
|
89536
89475
|
const t = new Uint8Array(e);
|
|
89537
89476
|
let n = "";
|
|
89538
89477
|
return t.forEach((r) => {
|
|
@@ -89556,10 +89495,10 @@ async function xde(e, t, n, r, o, i) {
|
|
|
89556
89495
|
});
|
|
89557
89496
|
e.log(Wt.Trace, `(${t} transport) request complete. Response status: ${d.statusCode}.`);
|
|
89558
89497
|
}
|
|
89559
|
-
function
|
|
89498
|
+
function VGe(e) {
|
|
89560
89499
|
return e === void 0 ? new Nx(Wt.Information) : e === null ? z9.instance : e.log !== void 0 ? e : new Nx(e);
|
|
89561
89500
|
}
|
|
89562
|
-
class
|
|
89501
|
+
class WGe {
|
|
89563
89502
|
constructor(t, n) {
|
|
89564
89503
|
this._subject = t, this._observer = n;
|
|
89565
89504
|
}
|
|
@@ -89596,14 +89535,14 @@ class Nx {
|
|
|
89596
89535
|
}
|
|
89597
89536
|
function u4() {
|
|
89598
89537
|
let e = "X-SignalR-User-Agent";
|
|
89599
|
-
return Ba.isNode && (e = "User-Agent"), [e,
|
|
89538
|
+
return Ba.isNode && (e = "User-Agent"), [e, UGe(BGe, KGe(), qGe(), GGe())];
|
|
89600
89539
|
}
|
|
89601
|
-
function
|
|
89540
|
+
function UGe(e, t, n, r) {
|
|
89602
89541
|
let o = "Microsoft SignalR/";
|
|
89603
89542
|
const i = e.split(".");
|
|
89604
89543
|
return o += `${i[0]}.${i[1]}`, o += ` (${e}; `, t && t !== "" ? o += `${t}; ` : o += "Unknown OS; ", o += `${n}`, r ? o += `; ${r}` : o += "; Unknown Runtime Version", o += ")", o;
|
|
89605
89544
|
}
|
|
89606
|
-
function
|
|
89545
|
+
function KGe() {
|
|
89607
89546
|
if (Ba.isNode)
|
|
89608
89547
|
switch (process.platform) {
|
|
89609
89548
|
case "win32":
|
|
@@ -89618,17 +89557,17 @@ function GGe() {
|
|
|
89618
89557
|
else
|
|
89619
89558
|
return "";
|
|
89620
89559
|
}
|
|
89621
|
-
function
|
|
89560
|
+
function GGe() {
|
|
89622
89561
|
if (Ba.isNode)
|
|
89623
89562
|
return process.versions.node;
|
|
89624
89563
|
}
|
|
89625
|
-
function
|
|
89564
|
+
function qGe() {
|
|
89626
89565
|
return Ba.isNode ? "NodeJS" : "Browser";
|
|
89627
89566
|
}
|
|
89628
89567
|
function GX(e) {
|
|
89629
89568
|
return e.stack ? e.stack : e.message ? e.message : `${e}`;
|
|
89630
89569
|
}
|
|
89631
|
-
function
|
|
89570
|
+
function XGe() {
|
|
89632
89571
|
if (typeof globalThis < "u")
|
|
89633
89572
|
return globalThis;
|
|
89634
89573
|
if (typeof self < "u")
|
|
@@ -89639,13 +89578,13 @@ function YGe() {
|
|
|
89639
89578
|
return global;
|
|
89640
89579
|
throw new Error("could not find global");
|
|
89641
89580
|
}
|
|
89642
|
-
class
|
|
89581
|
+
class YGe extends sO {
|
|
89643
89582
|
constructor(t) {
|
|
89644
89583
|
if (super(), this._logger = t, typeof fetch > "u") {
|
|
89645
89584
|
const n = typeof __webpack_require__ == "function" ? __non_webpack_require__ : require;
|
|
89646
89585
|
this._jar = new (n("tough-cookie")).CookieJar(), this._fetchType = n("node-fetch"), this._fetchType = n("fetch-cookie")(this._fetchType, this._jar);
|
|
89647
89586
|
} else
|
|
89648
|
-
this._fetchType = fetch.bind(
|
|
89587
|
+
this._fetchType = fetch.bind(XGe());
|
|
89649
89588
|
if (typeof AbortController > "u") {
|
|
89650
89589
|
const n = typeof __webpack_require__ == "function" ? __non_webpack_require__ : require;
|
|
89651
89590
|
this._abortControllerType = n("abort-controller");
|
|
@@ -89724,7 +89663,7 @@ function qX(e, t) {
|
|
|
89724
89663
|
}
|
|
89725
89664
|
return n;
|
|
89726
89665
|
}
|
|
89727
|
-
class
|
|
89666
|
+
class ZGe extends sO {
|
|
89728
89667
|
constructor(t) {
|
|
89729
89668
|
super(), this._logger = t;
|
|
89730
89669
|
}
|
|
@@ -89748,13 +89687,13 @@ class JGe extends sO {
|
|
|
89748
89687
|
}) : Promise.reject(new Error("No url defined.")) : Promise.reject(new Error("No method defined."));
|
|
89749
89688
|
}
|
|
89750
89689
|
}
|
|
89751
|
-
class
|
|
89690
|
+
class JGe extends sO {
|
|
89752
89691
|
/** Creates a new instance of the {@link @microsoft/signalr.DefaultHttpClient}, using the provided {@link @microsoft/signalr.ILogger} to log messages. */
|
|
89753
89692
|
constructor(t) {
|
|
89754
89693
|
if (super(), typeof fetch < "u" || Ba.isNode)
|
|
89755
|
-
this._httpClient = new
|
|
89694
|
+
this._httpClient = new YGe(t);
|
|
89756
89695
|
else if (typeof XMLHttpRequest < "u")
|
|
89757
|
-
this._httpClient = new
|
|
89696
|
+
this._httpClient = new ZGe(t);
|
|
89758
89697
|
else
|
|
89759
89698
|
throw new Error("No usable HttpClient found.");
|
|
89760
89699
|
}
|
|
@@ -89779,7 +89718,7 @@ class xc {
|
|
|
89779
89718
|
}
|
|
89780
89719
|
xc.RecordSeparatorCode = 30;
|
|
89781
89720
|
xc.RecordSeparator = String.fromCharCode(xc.RecordSeparatorCode);
|
|
89782
|
-
class
|
|
89721
|
+
class QGe {
|
|
89783
89722
|
// Handshake request is always JSON
|
|
89784
89723
|
writeHandshakeRequest(t) {
|
|
89785
89724
|
return xc.write(JSON.stringify(t));
|
|
@@ -89809,7 +89748,7 @@ var oi;
|
|
|
89809
89748
|
(function(e) {
|
|
89810
89749
|
e[e.Invocation = 1] = "Invocation", e[e.StreamItem = 2] = "StreamItem", e[e.Completion = 3] = "Completion", e[e.StreamInvocation = 4] = "StreamInvocation", e[e.CancelInvocation = 5] = "CancelInvocation", e[e.Ping = 6] = "Ping", e[e.Close = 7] = "Close";
|
|
89811
89750
|
})(oi || (oi = {}));
|
|
89812
|
-
class
|
|
89751
|
+
class eqe {
|
|
89813
89752
|
constructor() {
|
|
89814
89753
|
this.observers = [];
|
|
89815
89754
|
}
|
|
@@ -89826,10 +89765,10 @@ class tqe {
|
|
|
89826
89765
|
t.complete && t.complete();
|
|
89827
89766
|
}
|
|
89828
89767
|
subscribe(t) {
|
|
89829
|
-
return this.observers.push(t), new
|
|
89768
|
+
return this.observers.push(t), new WGe(this, t);
|
|
89830
89769
|
}
|
|
89831
89770
|
}
|
|
89832
|
-
const
|
|
89771
|
+
const tqe = 30 * 1e3, nqe = 15 * 1e3;
|
|
89833
89772
|
var _i;
|
|
89834
89773
|
(function(e) {
|
|
89835
89774
|
e.Disconnected = "Disconnected", e.Connecting = "Connecting", e.Connected = "Connected", e.Disconnecting = "Disconnecting", e.Reconnecting = "Reconnecting";
|
|
@@ -89838,7 +89777,7 @@ class Yz {
|
|
|
89838
89777
|
constructor(t, n, r, o) {
|
|
89839
89778
|
this._nextKeepAlive = 0, this._freezeEventListener = () => {
|
|
89840
89779
|
this._logger.log(Wt.Warning, "The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://docs.microsoft.com/aspnet/core/signalr/javascript-client#bsleep");
|
|
89841
|
-
}, Va.isRequired(t, "connection"), Va.isRequired(n, "logger"), Va.isRequired(r, "protocol"), this.serverTimeoutInMilliseconds =
|
|
89780
|
+
}, Va.isRequired(t, "connection"), Va.isRequired(n, "logger"), Va.isRequired(r, "protocol"), this.serverTimeoutInMilliseconds = tqe, this.keepAliveIntervalInMilliseconds = nqe, this._logger = n, this._protocol = r, this.connection = t, this._reconnectPolicy = o, this._handshakeProtocol = new QGe(), this.connection.onreceive = (i) => this._processIncomingData(i), this.connection.onclose = (i) => this._connectionClosed(i), this._callbacks = {}, this._methods = {}, this._closedCallbacks = [], this._reconnectingCallbacks = [], this._reconnectedCallbacks = [], this._invocationId = 0, this._receivedHandshakeResponse = !1, this._connectionState = _i.Disconnected, this._connectionStarted = !1, this._cachedPingMessage = this._protocol.writeMessage({ type: oi.Ping });
|
|
89842
89781
|
}
|
|
89843
89782
|
/** @internal */
|
|
89844
89783
|
// Using a public static factory method means we can have a private constructor and an _internal_
|
|
@@ -89934,7 +89873,7 @@ class Yz {
|
|
|
89934
89873
|
stream(t, ...n) {
|
|
89935
89874
|
const [r, o] = this._replaceStreamingParams(n), i = this._createStreamInvocation(t, n, o);
|
|
89936
89875
|
let a;
|
|
89937
|
-
const l = new
|
|
89876
|
+
const l = new eqe();
|
|
89938
89877
|
return l.cancelCallback = () => {
|
|
89939
89878
|
const s = this._createCancelInvocation(i.invocationId);
|
|
89940
89879
|
return delete this._callbacks[i.invocationId], a.then(() => this._sendWithProtocol(s));
|
|
@@ -90310,10 +90249,10 @@ class Yz {
|
|
|
90310
90249
|
};
|
|
90311
90250
|
}
|
|
90312
90251
|
}
|
|
90313
|
-
const
|
|
90252
|
+
const rqe = [0, 2e3, 1e4, 3e4, null];
|
|
90314
90253
|
class XX {
|
|
90315
90254
|
constructor(t) {
|
|
90316
|
-
this._retryDelays = t !== void 0 ? [...t, null] :
|
|
90255
|
+
this._retryDelays = t !== void 0 ? [...t, null] : rqe;
|
|
90317
90256
|
}
|
|
90318
90257
|
nextRetryDelayInMilliseconds(t) {
|
|
90319
90258
|
return this._retryDelays[t.previousRetryCount];
|
|
@@ -90323,7 +90262,7 @@ class r2 {
|
|
|
90323
90262
|
}
|
|
90324
90263
|
r2.Authorization = "Authorization";
|
|
90325
90264
|
r2.Cookie = "Cookie";
|
|
90326
|
-
class
|
|
90265
|
+
class oqe extends sO {
|
|
90327
90266
|
constructor(t, n) {
|
|
90328
90267
|
super(), this._innerClient = t, this._accessTokenFactory = n;
|
|
90329
90268
|
}
|
|
@@ -90348,7 +90287,7 @@ var zl;
|
|
|
90348
90287
|
(function(e) {
|
|
90349
90288
|
e[e.Text = 1] = "Text", e[e.Binary = 2] = "Binary";
|
|
90350
90289
|
})(zl || (zl = {}));
|
|
90351
|
-
let
|
|
90290
|
+
let iqe = class {
|
|
90352
90291
|
constructor() {
|
|
90353
90292
|
this._isAborted = !1, this.onabort = null;
|
|
90354
90293
|
}
|
|
@@ -90364,7 +90303,7 @@ let aqe = class {
|
|
|
90364
90303
|
};
|
|
90365
90304
|
class YX {
|
|
90366
90305
|
constructor(t, n, r) {
|
|
90367
|
-
this._httpClient = t, this._logger = n, this._pollAbort = new
|
|
90306
|
+
this._httpClient = t, this._logger = n, this._pollAbort = new iqe(), this._options = r, this._running = !1, this.onreceive = null, this.onclose = null;
|
|
90368
90307
|
}
|
|
90369
90308
|
// This is an internal type, not exported from 'index' so this is really just internal.
|
|
90370
90309
|
get pollAborted() {
|
|
@@ -90426,7 +90365,7 @@ class YX {
|
|
|
90426
90365
|
}
|
|
90427
90366
|
}
|
|
90428
90367
|
}
|
|
90429
|
-
class
|
|
90368
|
+
class aqe {
|
|
90430
90369
|
constructor(t, n, r, o) {
|
|
90431
90370
|
this._httpClient = t, this._accessToken = n, this._logger = r, this._options = o, this.onreceive = null, this.onclose = null;
|
|
90432
90371
|
}
|
|
@@ -90476,7 +90415,7 @@ class lqe {
|
|
|
90476
90415
|
this._eventSource && (this._eventSource.close(), this._eventSource = void 0, this.onclose && this.onclose(t));
|
|
90477
90416
|
}
|
|
90478
90417
|
}
|
|
90479
|
-
class
|
|
90418
|
+
class lqe {
|
|
90480
90419
|
constructor(t, n, r, o, i, a) {
|
|
90481
90420
|
this._logger = r, this._accessTokenFactory = n, this._logMessageContent = o, this._webSocketConstructor = i, this._httpClient = t, this.onreceive = null, this.onclose = null, this._headers = a;
|
|
90482
90421
|
}
|
|
@@ -90535,10 +90474,10 @@ class sqe {
|
|
|
90535
90474
|
}
|
|
90536
90475
|
}
|
|
90537
90476
|
const ZX = 100;
|
|
90538
|
-
class
|
|
90477
|
+
class sqe {
|
|
90539
90478
|
constructor(t, n = {}) {
|
|
90540
90479
|
if (this._stopPromiseResolver = () => {
|
|
90541
|
-
}, this.features = {}, this._negotiateVersion = 1, Va.isRequired(t, "url"), this._logger =
|
|
90480
|
+
}, this.features = {}, this._negotiateVersion = 1, Va.isRequired(t, "url"), this._logger = VGe(n.logger), this.baseUrl = this._resolveUrl(t), n = n || {}, n.logMessageContent = n.logMessageContent === void 0 ? !1 : n.logMessageContent, typeof n.withCredentials == "boolean" || n.withCredentials === void 0)
|
|
90542
90481
|
n.withCredentials = n.withCredentials === void 0 ? !0 : n.withCredentials;
|
|
90543
90482
|
else
|
|
90544
90483
|
throw new Error("withCredentials option was not a 'boolean' or 'undefined' value");
|
|
@@ -90548,7 +90487,7 @@ class cqe {
|
|
|
90548
90487
|
const i = typeof __webpack_require__ == "function" ? __non_webpack_require__ : require;
|
|
90549
90488
|
r = i("ws"), o = i("eventsource");
|
|
90550
90489
|
}
|
|
90551
|
-
!Ba.isNode && typeof WebSocket < "u" && !n.WebSocket ? n.WebSocket = WebSocket : Ba.isNode && !n.WebSocket && r && (n.WebSocket = r), !Ba.isNode && typeof EventSource < "u" && !n.EventSource ? n.EventSource = EventSource : Ba.isNode && !n.EventSource && typeof o < "u" && (n.EventSource = o), this._httpClient = new
|
|
90490
|
+
!Ba.isNode && typeof WebSocket < "u" && !n.WebSocket ? n.WebSocket = WebSocket : Ba.isNode && !n.WebSocket && r && (n.WebSocket = r), !Ba.isNode && typeof EventSource < "u" && !n.EventSource ? n.EventSource = EventSource : Ba.isNode && !n.EventSource && typeof o < "u" && (n.EventSource = o), this._httpClient = new oqe(n.httpClient || new JGe(this._logger), n.accessTokenFactory), this._connectionState = "Disconnected", this._connectionStarted = !1, this._options = n, this.onreceive = null, this.onclose = null;
|
|
90552
90491
|
}
|
|
90553
90492
|
async start(t) {
|
|
90554
90493
|
if (t = t || zl.Binary, Va.isIn(t, zl, "transferFormat"), this._logger.log(Wt.Debug, `Starting connection with transfer format '${zl[t]}'.`), this._connectionState !== "Disconnected")
|
|
@@ -90641,7 +90580,7 @@ class cqe {
|
|
|
90641
90580
|
return (!l.negotiateVersion || l.negotiateVersion < 1) && (l.connectionToken = l.connectionId), l;
|
|
90642
90581
|
} catch (a) {
|
|
90643
90582
|
let l = "Failed to complete negotiation with the server: " + a;
|
|
90644
|
-
return a instanceof c4 && a.statusCode === 404 && (l = l + " Either this is not a SignalR endpoint or there is a proxy blocking the connection."), this._logger.log(Wt.Error, l), Promise.reject(new
|
|
90583
|
+
return a instanceof c4 && a.statusCode === 404 && (l = l + " Either this is not a SignalR endpoint or there is a proxy blocking the connection."), this._logger.log(Wt.Error, l), Promise.reject(new HGe(l));
|
|
90645
90584
|
}
|
|
90646
90585
|
}
|
|
90647
90586
|
_createConnectUrl(t, n) {
|
|
@@ -90672,25 +90611,25 @@ class cqe {
|
|
|
90672
90611
|
await this._startTransport(i, o), this.connectionId = s.connectionId;
|
|
90673
90612
|
return;
|
|
90674
90613
|
} catch (f) {
|
|
90675
|
-
if (this._logger.log(Wt.Error, `Failed to start the transport '${c.transport}': ${f}`), s = void 0, a.push(new
|
|
90614
|
+
if (this._logger.log(Wt.Error, `Failed to start the transport '${c.transport}': ${f}`), s = void 0, a.push(new zGe(`${c.transport} failed: ${f}`, Ta[c.transport])), this._connectionState !== "Connecting") {
|
|
90676
90615
|
const m = "Failed to select transport before stop() was called.";
|
|
90677
90616
|
return this._logger.log(Wt.Debug, m), Promise.reject(new pd(m));
|
|
90678
90617
|
}
|
|
90679
90618
|
}
|
|
90680
90619
|
}
|
|
90681
90620
|
}
|
|
90682
|
-
return a.length > 0 ? Promise.reject(new
|
|
90621
|
+
return a.length > 0 ? Promise.reject(new FGe(`Unable to connect to the server with any of the available transports. ${a.join(" ")}`, a)) : Promise.reject(new Error("None of the transports supported by the client are supported by the server."));
|
|
90683
90622
|
}
|
|
90684
90623
|
_constructTransport(t) {
|
|
90685
90624
|
switch (t) {
|
|
90686
90625
|
case Ta.WebSockets:
|
|
90687
90626
|
if (!this._options.WebSocket)
|
|
90688
90627
|
throw new Error("'WebSocket' is not supported in your environment.");
|
|
90689
|
-
return new
|
|
90628
|
+
return new lqe(this._httpClient, this._accessTokenFactory, this._logger, this._options.logMessageContent, this._options.WebSocket, this._options.headers || {});
|
|
90690
90629
|
case Ta.ServerSentEvents:
|
|
90691
90630
|
if (!this._options.EventSource)
|
|
90692
90631
|
throw new Error("'EventSource' is not supported in your environment.");
|
|
90693
|
-
return new
|
|
90632
|
+
return new aqe(this._httpClient, this._httpClient._accessToken, this._logger, this._options);
|
|
90694
90633
|
case Ta.LongPolling:
|
|
90695
90634
|
return new YX(this._httpClient, this._logger, this._options);
|
|
90696
90635
|
default:
|
|
@@ -90704,10 +90643,10 @@ class cqe {
|
|
|
90704
90643
|
const o = Ta[t.transport];
|
|
90705
90644
|
if (o == null)
|
|
90706
90645
|
return this._logger.log(Wt.Debug, `Skipping transport '${t.transport}' because it is not supported by this client.`), new Error(`Skipping transport '${t.transport}' because it is not supported by this client.`);
|
|
90707
|
-
if (
|
|
90646
|
+
if (cqe(n, o))
|
|
90708
90647
|
if (t.transferFormats.map((a) => zl[a]).indexOf(r) >= 0) {
|
|
90709
90648
|
if (o === Ta.WebSockets && !this._options.WebSocket || o === Ta.ServerSentEvents && !this._options.EventSource)
|
|
90710
|
-
return this._logger.log(Wt.Debug, `Skipping transport '${Ta[o]}' because it is not supported in your environment.'`), new
|
|
90649
|
+
return this._logger.log(Wt.Debug, `Skipping transport '${Ta[o]}' because it is not supported in your environment.'`), new DGe(`'${Ta[o]}' is not supported in your environment.`, o);
|
|
90711
90650
|
this._logger.log(Wt.Debug, `Selecting transport '${Ta[o]}'.`);
|
|
90712
90651
|
try {
|
|
90713
90652
|
return this._constructTransport(o);
|
|
@@ -90717,7 +90656,7 @@ class cqe {
|
|
|
90717
90656
|
} else
|
|
90718
90657
|
return this._logger.log(Wt.Debug, `Skipping transport '${Ta[o]}' because it does not support the requested transfer format '${zl[r]}'.`), new Error(`'${Ta[o]}' does not support ${zl[r]}.`);
|
|
90719
90658
|
else
|
|
90720
|
-
return this._logger.log(Wt.Debug, `Skipping transport '${Ta[o]}' because it was disabled by the client.`), new
|
|
90659
|
+
return this._logger.log(Wt.Debug, `Skipping transport '${Ta[o]}' because it was disabled by the client.`), new AGe(`'${Ta[o]}' is disabled by the client.`, o);
|
|
90721
90660
|
}
|
|
90722
90661
|
_isITransport(t) {
|
|
90723
90662
|
return t && typeof t == "object" && "connect" in t;
|
|
@@ -90754,7 +90693,7 @@ class cqe {
|
|
|
90754
90693
|
return r[r.length - 1] !== "/" && (r += "/"), r += "negotiate", r += n === -1 ? "" : t.substring(n), r.indexOf("negotiateVersion") === -1 && (r += n === -1 ? "?" : "&", r += "negotiateVersion=" + this._negotiateVersion), r;
|
|
90755
90694
|
}
|
|
90756
90695
|
}
|
|
90757
|
-
function
|
|
90696
|
+
function cqe(e, t) {
|
|
90758
90697
|
return !e || (t & e) !== 0;
|
|
90759
90698
|
}
|
|
90760
90699
|
class Zz {
|
|
@@ -90809,10 +90748,10 @@ class jS {
|
|
|
90809
90748
|
this._rejecter(t);
|
|
90810
90749
|
}
|
|
90811
90750
|
}
|
|
90812
|
-
const
|
|
90813
|
-
class
|
|
90751
|
+
const uqe = "json";
|
|
90752
|
+
class dqe {
|
|
90814
90753
|
constructor() {
|
|
90815
|
-
this.name =
|
|
90754
|
+
this.name = uqe, this.version = 1, this.transferFormat = zl.Text;
|
|
90816
90755
|
}
|
|
90817
90756
|
/** Creates an array of {@link @microsoft/signalr.HubMessage} objects from the specified serialized representation.
|
|
90818
90757
|
*
|
|
@@ -90877,7 +90816,7 @@ class fqe {
|
|
|
90877
90816
|
throw new Error(n);
|
|
90878
90817
|
}
|
|
90879
90818
|
}
|
|
90880
|
-
const
|
|
90819
|
+
const fqe = {
|
|
90881
90820
|
trace: Wt.Trace,
|
|
90882
90821
|
debug: Wt.Debug,
|
|
90883
90822
|
info: Wt.Information,
|
|
@@ -90888,18 +90827,18 @@ const pqe = {
|
|
|
90888
90827
|
critical: Wt.Critical,
|
|
90889
90828
|
none: Wt.None
|
|
90890
90829
|
};
|
|
90891
|
-
function
|
|
90892
|
-
const t =
|
|
90830
|
+
function pqe(e) {
|
|
90831
|
+
const t = fqe[e.toLowerCase()];
|
|
90893
90832
|
if (typeof t < "u")
|
|
90894
90833
|
return t;
|
|
90895
90834
|
throw new Error(`Unknown log level: ${e}`);
|
|
90896
90835
|
}
|
|
90897
90836
|
class JX {
|
|
90898
90837
|
configureLogging(t) {
|
|
90899
|
-
if (Va.isRequired(t, "logging"),
|
|
90838
|
+
if (Va.isRequired(t, "logging"), hqe(t))
|
|
90900
90839
|
this.logger = t;
|
|
90901
90840
|
else if (typeof t == "string") {
|
|
90902
|
-
const n =
|
|
90841
|
+
const n = pqe(t);
|
|
90903
90842
|
this.logger = new Nx(n);
|
|
90904
90843
|
} else
|
|
90905
90844
|
this.logger = new Nx(t);
|
|
@@ -90931,16 +90870,16 @@ class JX {
|
|
|
90931
90870
|
const t = this.httpConnectionOptions || {};
|
|
90932
90871
|
if (t.logger === void 0 && (t.logger = this.logger), !this.url)
|
|
90933
90872
|
throw new Error("The 'HubConnectionBuilder.withUrl' method must be called before building the connection.");
|
|
90934
|
-
const n = new
|
|
90935
|
-
return Yz.create(n, this.logger || z9.instance, this.protocol || new
|
|
90873
|
+
const n = new sqe(this.url, t);
|
|
90874
|
+
return Yz.create(n, this.logger || z9.instance, this.protocol || new dqe(), this.reconnectPolicy);
|
|
90936
90875
|
}
|
|
90937
90876
|
}
|
|
90938
|
-
function
|
|
90877
|
+
function hqe(e) {
|
|
90939
90878
|
return e.log !== void 0;
|
|
90940
90879
|
}
|
|
90941
|
-
class
|
|
90880
|
+
class mqe {
|
|
90942
90881
|
}
|
|
90943
|
-
R0(
|
|
90882
|
+
R0(mqe, "Register", async (t) => {
|
|
90944
90883
|
const {
|
|
90945
90884
|
keepAliveIntervalInMilliseconds: n = 3e6,
|
|
90946
90885
|
serverTimeoutInMilliseconds: r = 3e6,
|
|
@@ -90987,7 +90926,7 @@ R0(gqe, "Register", async (t) => {
|
|
|
90987
90926
|
});
|
|
90988
90927
|
class If {
|
|
90989
90928
|
static getText(t) {
|
|
90990
|
-
return (localStorage.getItem("locale") === "en" ?
|
|
90929
|
+
return (localStorage.getItem("locale") === "en" ? Cde : bde)[t];
|
|
90991
90930
|
}
|
|
90992
90931
|
}
|
|
90993
90932
|
R0(If, "removeVietnameseTones", (t) => (t = t.replace(/à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ/g, "a"), t = t.replace(/è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ/g, "e"), t = t.replace(/ì|í|ị|ỉ|ĩ/g, "i"), t = t.replace(/ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ/g, "o"), t = t.replace(/ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ/g, "u"), t = t.replace(/ỳ|ý|ỵ|ỷ|ỹ/g, "y"), t = t.replace(/đ/g, "d"), t = t.replace(/À|Á|Ạ|Ả|Ã|Â|Ầ|Ấ|Ậ|Ẩ|Ẫ|Ă|Ằ|Ắ|Ặ|Ẳ|Ẵ/g, "A"), t = t.replace(/È|É|Ẹ|Ẻ|Ẽ|Ê|Ề|Ế|Ệ|Ể|Ễ/g, "E"), t = t.replace(/Ì|Í|Ị|Ỉ|Ĩ/g, "I"), t = t.replace(/Ò|Ó|Ọ|Ỏ|Õ|Ô|Ồ|Ố|Ộ|Ổ|Ỗ|Ơ|Ờ|Ớ|Ợ|Ở|Ỡ/g, "O"), t = t.replace(/Ù|Ú|Ụ|Ủ|Ũ|Ư|Ừ|Ứ|Ự|Ử|Ữ/g, "U"), t = t.replace(/Ỳ|Ý|Ỵ|Ỷ|Ỹ/g, "Y"), t = t.replace(/Đ/g, "D"), t = t.replace(/\u0300|\u0301|\u0303|\u0309|\u0323/g, ""), t = t.replace(/\u02C6|\u0306|\u031B/g, ""), t = t.replace(/ + /g, " "), t = t.trim(), t = t.replace(
|
|
@@ -90997,7 +90936,7 @@ R0(If, "removeVietnameseTones", (t) => (t = t.replace(/à|á|ạ|ả|ã|â|ầ|
|
|
|
90997
90936
|
const Q8t = (e) => {
|
|
90998
90937
|
if (e)
|
|
90999
90938
|
return e.toLowerCase().replace(/\b\w/g, (t) => t.toUpperCase());
|
|
91000
|
-
},
|
|
90939
|
+
}, gqe = 12;
|
|
91001
90940
|
function U_(e) {
|
|
91002
90941
|
if (e)
|
|
91003
90942
|
return typeof e == "string" ? /* @__PURE__ */ A("span", { dangerouslySetInnerHTML: { __html: e } }) : e;
|
|
@@ -91022,7 +90961,7 @@ function K_({
|
|
|
91022
90961
|
onClick: a
|
|
91023
90962
|
};
|
|
91024
90963
|
}
|
|
91025
|
-
const
|
|
90964
|
+
const vqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ = (e, t, n) => {
|
|
91026
90965
|
const {
|
|
91027
90966
|
id: r,
|
|
91028
90967
|
title: o,
|
|
@@ -91033,7 +90972,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91033
90972
|
isChild: c,
|
|
91034
90973
|
icon: d
|
|
91035
90974
|
} = e, f = typeof o == "string" && o.length > 0 ? o[0] : "", m = i !== void 0 && (typeof i != "number" || typeof i == "number" && i > 0) && /* @__PURE__ */ A(
|
|
91036
|
-
|
|
90975
|
+
Gz,
|
|
91037
90976
|
{
|
|
91038
90977
|
className: "beca-menu-count",
|
|
91039
90978
|
count: typeof i == "number" ? i : i(e),
|
|
@@ -91054,14 +90993,14 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91054
90993
|
) : l ? /* @__PURE__ */ mn("a", { href: a, children: [
|
|
91055
90994
|
/* @__PURE__ */ A("div", { className: "beca-menu-title", children: o }),
|
|
91056
90995
|
m
|
|
91057
|
-
] }, r) : /* @__PURE__ */ mn(
|
|
90996
|
+
] }, r) : /* @__PURE__ */ mn(yqe, { to: a, LinkComponent: n, children: [
|
|
91058
90997
|
/* @__PURE__ */ A("div", { className: "beca-menu-title", children: o }),
|
|
91059
90998
|
m
|
|
91060
90999
|
] }, r);
|
|
91061
|
-
},
|
|
91000
|
+
}, yqe = (e) => {
|
|
91062
91001
|
const { LinkComponent: t, to: n, children: r } = e;
|
|
91063
91002
|
return t ? /* @__PURE__ */ A(t, { to: n, children: r }) : /* @__PURE__ */ A("a", { href: n, children: r });
|
|
91064
|
-
},
|
|
91003
|
+
}, Cqe = (e) => {
|
|
91065
91004
|
const {
|
|
91066
91005
|
isAdmin: t = !1,
|
|
91067
91006
|
sideBarMenus: n,
|
|
@@ -91076,7 +91015,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91076
91015
|
logoUrl: f,
|
|
91077
91016
|
toggleCollapse: m,
|
|
91078
91017
|
customSideBar: g
|
|
91079
|
-
} = e, y = aO(), { mainLayoutConfig: b, userConfig: C, mainTheme: w, isHomeApp: E } = fr(K6), [O, T] = gt([]), [$, M] = gt([]), [_, k] = gt(), [I, L] = gt(!1), [D, V] = gt(""), j =
|
|
91018
|
+
} = e, y = aO(), { mainLayoutConfig: b, userConfig: C, mainTheme: w, isHomeApp: E } = fr(K6), [O, T] = gt([]), [$, M] = gt([]), [_, k] = gt(), [I, L] = gt(!1), [D, V] = gt(""), j = qz(D), [z, H] = gt([]), [F, W] = gt([]), K = On(() => {
|
|
91080
91019
|
var ne;
|
|
91081
91020
|
return !(((ne = b == null ? void 0 : b.layout) == null ? void 0 : ne.showEventTheme) === !1 || (C == null ? void 0 : C.showEventTheme) === !1);
|
|
91082
91021
|
}, [b, C]), X = () => {
|
|
@@ -91095,7 +91034,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91095
91034
|
ie > 1 && "child-item",
|
|
91096
91035
|
oe && "active"
|
|
91097
91036
|
),
|
|
91098
|
-
style: { marginLeft:
|
|
91037
|
+
style: { marginLeft: gqe * ie },
|
|
91099
91038
|
children: [
|
|
91100
91039
|
/* @__PURE__ */ A("div", { className: "drawer-menu-item__label", children: te.label }),
|
|
91101
91040
|
te.children && te.children.length > 0 && Y(te.children, ie + 1)
|
|
@@ -91200,7 +91139,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91200
91139
|
}
|
|
91201
91140
|
}
|
|
91202
91141
|
}, [n, _, i]);
|
|
91203
|
-
const Z = On(() => `${
|
|
91142
|
+
const Z = On(() => `${vqe}?${(/* @__PURE__ */ new Date()).toString()}`, []);
|
|
91204
91143
|
return On(() => w === "Office" || w === "SHE" ? !l && i : l && !i && !E, [l, i, w, E]), /* @__PURE__ */ mn(
|
|
91205
91144
|
"div",
|
|
91206
91145
|
{
|
|
@@ -91215,7 +91154,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91215
91154
|
{
|
|
91216
91155
|
onClick: X,
|
|
91217
91156
|
style: { left: 10, bottom: 10 },
|
|
91218
|
-
icon: /* @__PURE__ */ A(
|
|
91157
|
+
icon: /* @__PURE__ */ A(aKe, {}),
|
|
91219
91158
|
type: "primary"
|
|
91220
91159
|
}
|
|
91221
91160
|
),
|
|
@@ -91227,7 +91166,7 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91227
91166
|
secondary: !0,
|
|
91228
91167
|
type: "text",
|
|
91229
91168
|
status: "default",
|
|
91230
|
-
icon: i ? /* @__PURE__ */ A(
|
|
91169
|
+
icon: i ? /* @__PURE__ */ A(ade, {}) : /* @__PURE__ */ A(ide, {}),
|
|
91231
91170
|
onClick: m,
|
|
91232
91171
|
className: "sidebar-collapse-button"
|
|
91233
91172
|
}
|
|
@@ -91290,10 +91229,10 @@ const yqe = "https://share.becawork.vn/files/theme/web/sidebar-bg-img.png", G_ =
|
|
|
91290
91229
|
]
|
|
91291
91230
|
}
|
|
91292
91231
|
);
|
|
91293
|
-
},
|
|
91232
|
+
}, bqe = (e) => {
|
|
91294
91233
|
const { children: t, ...n } = e;
|
|
91295
91234
|
return /* @__PURE__ */ A("div", { ...n, children: /* @__PURE__ */ A("div", { className: "content-wrap", children: /* @__PURE__ */ A("div", { className: "content", children: t }) }) });
|
|
91296
|
-
},
|
|
91235
|
+
}, Sqe = {
|
|
91297
91236
|
type: "logger",
|
|
91298
91237
|
log(e) {
|
|
91299
91238
|
this.output("log", e);
|
|
@@ -91315,7 +91254,7 @@ class Tx {
|
|
|
91315
91254
|
}
|
|
91316
91255
|
init(t) {
|
|
91317
91256
|
let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
91318
|
-
this.prefix = n.prefix || "i18next:", this.logger = t ||
|
|
91257
|
+
this.prefix = n.prefix || "i18next:", this.logger = t || Sqe, this.options = n, this.debug = n.debug;
|
|
91319
91258
|
}
|
|
91320
91259
|
log() {
|
|
91321
91260
|
for (var t = arguments.length, n = new Array(t), r = 0; r < t; r++)
|
|
@@ -91389,7 +91328,7 @@ function yC() {
|
|
|
91389
91328
|
function QX(e) {
|
|
91390
91329
|
return e == null ? "" : "" + e;
|
|
91391
91330
|
}
|
|
91392
|
-
function
|
|
91331
|
+
function wqe(e, t, n) {
|
|
91393
91332
|
e.forEach((r) => {
|
|
91394
91333
|
t[r] && (n[r] = t[r]);
|
|
91395
91334
|
});
|
|
@@ -91420,7 +91359,7 @@ function eY(e, t, n) {
|
|
|
91420
91359
|
} = Jz(e, t, Object);
|
|
91421
91360
|
r[o] = n;
|
|
91422
91361
|
}
|
|
91423
|
-
function
|
|
91362
|
+
function xqe(e, t, n, r) {
|
|
91424
91363
|
const {
|
|
91425
91364
|
obj: o,
|
|
91426
91365
|
k: i
|
|
@@ -91435,7 +91374,7 @@ function Mx(e, t) {
|
|
|
91435
91374
|
if (n)
|
|
91436
91375
|
return n[r];
|
|
91437
91376
|
}
|
|
91438
|
-
function
|
|
91377
|
+
function Eqe(e, t, n) {
|
|
91439
91378
|
const r = Mx(e, n);
|
|
91440
91379
|
return r !== void 0 ? r : Mx(t, n);
|
|
91441
91380
|
}
|
|
@@ -91447,7 +91386,7 @@ function Ede(e, t, n) {
|
|
|
91447
91386
|
function t3(e) {
|
|
91448
91387
|
return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
|
91449
91388
|
}
|
|
91450
|
-
var
|
|
91389
|
+
var $qe = {
|
|
91451
91390
|
"&": "&",
|
|
91452
91391
|
"<": "<",
|
|
91453
91392
|
">": ">",
|
|
@@ -91455,13 +91394,13 @@ var Oqe = {
|
|
|
91455
91394
|
"'": "'",
|
|
91456
91395
|
"/": "/"
|
|
91457
91396
|
};
|
|
91458
|
-
function
|
|
91459
|
-
return typeof e == "string" ? e.replace(/[&<>"'\/]/g, (t) =>
|
|
91397
|
+
function Oqe(e) {
|
|
91398
|
+
return typeof e == "string" ? e.replace(/[&<>"'\/]/g, (t) => $qe[t]) : e;
|
|
91460
91399
|
}
|
|
91461
|
-
const
|
|
91462
|
-
function
|
|
91400
|
+
const Nqe = [" ", ",", "?", "!", ";"];
|
|
91401
|
+
function Tqe(e, t, n) {
|
|
91463
91402
|
t = t || "", n = n || "";
|
|
91464
|
-
const r =
|
|
91403
|
+
const r = Nqe.filter((a) => t.indexOf(a) < 0 && n.indexOf(a) < 0);
|
|
91465
91404
|
if (r.length === 0)
|
|
91466
91405
|
return !0;
|
|
91467
91406
|
const o = new RegExp(`(${r.map((a) => a === "?" ? "\\?" : a).join("|")})`);
|
|
@@ -91596,7 +91535,7 @@ const nY = {};
|
|
|
91596
91535
|
class Ix extends cO {
|
|
91597
91536
|
constructor(t) {
|
|
91598
91537
|
let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
91599
|
-
super(),
|
|
91538
|
+
super(), wqe(["resourceStore", "languageUtils", "pluralResolver", "interpolator", "backendConnector", "i18nFormat", "utils"], t, this), this.options = n, this.options.keySeparator === void 0 && (this.options.keySeparator = "."), this.logger = Mf.create("translator");
|
|
91600
91539
|
}
|
|
91601
91540
|
changeLanguage(t) {
|
|
91602
91541
|
t && (this.language = t);
|
|
@@ -91615,7 +91554,7 @@ class Ix extends cO {
|
|
|
91615
91554
|
r === void 0 && (r = ":");
|
|
91616
91555
|
const o = n.keySeparator !== void 0 ? n.keySeparator : this.options.keySeparator;
|
|
91617
91556
|
let i = n.ns || this.options.defaultNS || [];
|
|
91618
|
-
const a = r && t.indexOf(r) > -1, l = !this.options.userDefinedKeySeparator && !n.keySeparator && !this.options.userDefinedNsSeparator && !n.nsSeparator && !
|
|
91557
|
+
const a = r && t.indexOf(r) > -1, l = !this.options.userDefinedKeySeparator && !n.keySeparator && !this.options.userDefinedNsSeparator && !n.nsSeparator && !Tqe(t, r, o);
|
|
91619
91558
|
if (a && !l) {
|
|
91620
91559
|
const s = t.match(this.interpolator.nestingRegexp);
|
|
91621
91560
|
if (s && s.length > 0)
|
|
@@ -91893,7 +91832,7 @@ class rY {
|
|
|
91893
91832
|
}), o;
|
|
91894
91833
|
}
|
|
91895
91834
|
}
|
|
91896
|
-
let
|
|
91835
|
+
let Mqe = [{
|
|
91897
91836
|
lngs: ["ach", "ak", "am", "arn", "br", "fil", "gun", "ln", "mfe", "mg", "mi", "oc", "pt", "pt-BR", "tg", "tl", "ti", "tr", "uz", "wa"],
|
|
91898
91837
|
nr: [1, 2],
|
|
91899
91838
|
fc: 1
|
|
@@ -91985,7 +91924,7 @@ let Rqe = [{
|
|
|
91985
91924
|
lngs: ["he", "iw"],
|
|
91986
91925
|
nr: [1, 2, 20, 21],
|
|
91987
91926
|
fc: 22
|
|
91988
|
-
}],
|
|
91927
|
+
}], Rqe = {
|
|
91989
91928
|
1: function(e) {
|
|
91990
91929
|
return +(e > 1);
|
|
91991
91930
|
},
|
|
@@ -92053,7 +91992,7 @@ let Rqe = [{
|
|
|
92053
91992
|
return e == 1 ? 0 : e == 2 ? 1 : (e < 0 || e > 10) && e % 10 == 0 ? 2 : 3;
|
|
92054
91993
|
}
|
|
92055
91994
|
};
|
|
92056
|
-
const
|
|
91995
|
+
const _qe = ["v1", "v2", "v3"], Iqe = ["v4"], oY = {
|
|
92057
91996
|
zero: 0,
|
|
92058
91997
|
one: 1,
|
|
92059
91998
|
two: 2,
|
|
@@ -92061,21 +92000,21 @@ const Iqe = ["v1", "v2", "v3"], Pqe = ["v4"], oY = {
|
|
|
92061
92000
|
many: 4,
|
|
92062
92001
|
other: 5
|
|
92063
92002
|
};
|
|
92064
|
-
function
|
|
92003
|
+
function Pqe() {
|
|
92065
92004
|
const e = {};
|
|
92066
|
-
return
|
|
92005
|
+
return Mqe.forEach((t) => {
|
|
92067
92006
|
t.lngs.forEach((n) => {
|
|
92068
92007
|
e[n] = {
|
|
92069
92008
|
numbers: t.nr,
|
|
92070
|
-
plurals:
|
|
92009
|
+
plurals: Rqe[t.fc]
|
|
92071
92010
|
};
|
|
92072
92011
|
});
|
|
92073
92012
|
}), e;
|
|
92074
92013
|
}
|
|
92075
|
-
class
|
|
92014
|
+
class kqe {
|
|
92076
92015
|
constructor(t) {
|
|
92077
92016
|
let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
92078
|
-
this.languageUtils = t, this.options = n, this.logger = Mf.create("pluralResolver"), (!this.options.compatibilityJSON ||
|
|
92017
|
+
this.languageUtils = t, this.options = n, this.logger = Mf.create("pluralResolver"), (!this.options.compatibilityJSON || Iqe.includes(this.options.compatibilityJSON)) && (typeof Intl > "u" || !Intl.PluralRules) && (this.options.compatibilityJSON = "v3", this.logger.error("Your environment seems not to be Intl API compatible, use an Intl.PluralRules polyfill. Will fallback to the compatibilityJSON v3 format handling.")), this.rules = Pqe();
|
|
92079
92018
|
}
|
|
92080
92019
|
addRule(t, n) {
|
|
92081
92020
|
this.rules[t] = n;
|
|
@@ -92119,14 +92058,14 @@ class Lqe {
|
|
|
92119
92058
|
return this.options.compatibilityJSON === "v1" ? o === 1 ? "" : typeof o == "number" ? `_plural_${o.toString()}` : i() : this.options.compatibilityJSON === "v2" || this.options.simplifyPluralSuffix && t.numbers.length === 2 && t.numbers[0] === 1 ? i() : this.options.prepend && r.toString() ? this.options.prepend + r.toString() : r.toString();
|
|
92120
92059
|
}
|
|
92121
92060
|
shouldUseIntlApi() {
|
|
92122
|
-
return !
|
|
92061
|
+
return !_qe.includes(this.options.compatibilityJSON);
|
|
92123
92062
|
}
|
|
92124
92063
|
}
|
|
92125
92064
|
function iY(e, t, n) {
|
|
92126
|
-
let r = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : ".", o = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : !0, i =
|
|
92065
|
+
let r = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : ".", o = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : !0, i = Eqe(e, t, n);
|
|
92127
92066
|
return !i && o && typeof n == "string" && (i = Rx(e, n, r), i === void 0 && (i = Rx(t, n, r))), i;
|
|
92128
92067
|
}
|
|
92129
|
-
class
|
|
92068
|
+
class Lqe {
|
|
92130
92069
|
constructor() {
|
|
92131
92070
|
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
92132
92071
|
this.logger = Mf.create("interpolator"), this.options = t, this.format = t.interpolation && t.interpolation.format || ((n) => n), this.init(t);
|
|
@@ -92137,7 +92076,7 @@ class Dqe {
|
|
|
92137
92076
|
escapeValue: !0
|
|
92138
92077
|
});
|
|
92139
92078
|
const n = t.interpolation;
|
|
92140
|
-
this.escape = n.escape !== void 0 ? n.escape :
|
|
92079
|
+
this.escape = n.escape !== void 0 ? n.escape : Oqe, this.escapeValue = n.escapeValue !== void 0 ? n.escapeValue : !0, this.useRawValueToEscape = n.useRawValueToEscape !== void 0 ? n.useRawValueToEscape : !1, this.prefix = n.prefix ? t3(n.prefix) : n.prefixEscaped || "{{", this.suffix = n.suffix ? t3(n.suffix) : n.suffixEscaped || "}}", this.formatSeparator = n.formatSeparator ? n.formatSeparator : n.formatSeparator || ",", this.unescapePrefix = n.unescapeSuffix ? "" : n.unescapePrefix || "-", this.unescapeSuffix = this.unescapePrefix ? "" : n.unescapeSuffix || "", this.nestingPrefix = n.nestingPrefix ? t3(n.nestingPrefix) : n.nestingPrefixEscaped || t3("$t("), this.nestingSuffix = n.nestingSuffix ? t3(n.nestingSuffix) : n.nestingSuffixEscaped || t3(")"), this.nestingOptionsSeparator = n.nestingOptionsSeparator ? n.nestingOptionsSeparator : n.nestingOptionsSeparator || ",", this.maxReplaces = n.maxReplaces ? n.maxReplaces : 1e3, this.alwaysFormat = n.alwaysFormat !== void 0 ? n.alwaysFormat : !1, this.resetRegExp();
|
|
92141
92080
|
}
|
|
92142
92081
|
reset() {
|
|
92143
92082
|
this.options && this.init(this.options);
|
|
@@ -92243,7 +92182,7 @@ class Dqe {
|
|
|
92243
92182
|
return t;
|
|
92244
92183
|
}
|
|
92245
92184
|
}
|
|
92246
|
-
function
|
|
92185
|
+
function Dqe(e) {
|
|
92247
92186
|
let t = e.toLowerCase().trim();
|
|
92248
92187
|
const n = {};
|
|
92249
92188
|
if (e.indexOf("(") > -1) {
|
|
@@ -92270,7 +92209,7 @@ function n3(e) {
|
|
|
92270
92209
|
return l || (l = e(_x(o), i), t[a] = l), l(r);
|
|
92271
92210
|
};
|
|
92272
92211
|
}
|
|
92273
|
-
class
|
|
92212
|
+
class Aqe {
|
|
92274
92213
|
constructor() {
|
|
92275
92214
|
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
92276
92215
|
this.logger = Mf.create("formatter"), this.options = t, this.formats = {
|
|
@@ -92325,7 +92264,7 @@ class zqe {
|
|
|
92325
92264
|
const {
|
|
92326
92265
|
formatName: c,
|
|
92327
92266
|
formatOptions: d
|
|
92328
|
-
} =
|
|
92267
|
+
} = Dqe(s);
|
|
92329
92268
|
if (this.formats[c]) {
|
|
92330
92269
|
let f = l;
|
|
92331
92270
|
try {
|
|
@@ -92345,10 +92284,10 @@ class zqe {
|
|
|
92345
92284
|
}, t);
|
|
92346
92285
|
}
|
|
92347
92286
|
}
|
|
92348
|
-
function
|
|
92287
|
+
function zqe(e, t) {
|
|
92349
92288
|
e.pending[t] !== void 0 && (delete e.pending[t], e.pendingCount--);
|
|
92350
92289
|
}
|
|
92351
|
-
class
|
|
92290
|
+
class Hqe extends cO {
|
|
92352
92291
|
constructor(t, n, r) {
|
|
92353
92292
|
let o = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : {};
|
|
92354
92293
|
super(), this.backend = t, this.store = n, this.services = r, this.languageUtils = r.languageUtils, this.options = o, this.logger = Mf.create("backendConnector"), this.waitingReads = [], this.maxParallelReads = o.maxParallelReads || 10, this.readingCalls = 0, this.maxRetries = o.maxRetries >= 0 ? o.maxRetries : 5, this.retryTimeout = o.retryTimeout >= 1 ? o.retryTimeout : 350, this.state = {}, this.queue = [], this.backend && this.backend.init && this.backend.init(r, o.backend, o);
|
|
@@ -92379,7 +92318,7 @@ class Fqe extends cO {
|
|
|
92379
92318
|
n && this.emit("failedLoading", i, a, n), r && this.store.addResourceBundle(i, a, r), this.state[t] = n ? -1 : 2;
|
|
92380
92319
|
const l = {};
|
|
92381
92320
|
this.queue.forEach((s) => {
|
|
92382
|
-
|
|
92321
|
+
xqe(s.loaded, [i], a), zqe(s, t), n && s.errors.push(n), s.pendingCount === 0 && !s.done && (Object.keys(s.loaded).forEach((c) => {
|
|
92383
92322
|
l[c] || (l[c] = {});
|
|
92384
92323
|
const d = s.loaded[c];
|
|
92385
92324
|
d.length && d.forEach((f) => {
|
|
@@ -92546,7 +92485,7 @@ function lY(e) {
|
|
|
92546
92485
|
}
|
|
92547
92486
|
function VS() {
|
|
92548
92487
|
}
|
|
92549
|
-
function
|
|
92488
|
+
function Fqe(e) {
|
|
92550
92489
|
Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach((n) => {
|
|
92551
92490
|
typeof e[n] == "function" && (e[n] = e[n].bind(e));
|
|
92552
92491
|
});
|
|
@@ -92556,7 +92495,7 @@ class F9 extends cO {
|
|
|
92556
92495
|
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 ? arguments[1] : void 0;
|
|
92557
92496
|
if (super(), this.options = lY(t), this.services = {}, this.logger = Mf, this.modules = {
|
|
92558
92497
|
external: []
|
|
92559
|
-
},
|
|
92498
|
+
}, Fqe(this), n && !this.isInitialized && !t.isClone) {
|
|
92560
92499
|
if (!this.options.initImmediate)
|
|
92561
92500
|
return this.init(t, n), this;
|
|
92562
92501
|
setTimeout(() => {
|
|
@@ -92583,17 +92522,17 @@ class F9 extends cO {
|
|
|
92583
92522
|
if (!this.options.isClone) {
|
|
92584
92523
|
this.modules.logger ? Mf.init(i(this.modules.logger), this.options) : Mf.init(null, this.options);
|
|
92585
92524
|
let d;
|
|
92586
|
-
this.modules.formatter ? d = this.modules.formatter : typeof Intl < "u" && (d =
|
|
92525
|
+
this.modules.formatter ? d = this.modules.formatter : typeof Intl < "u" && (d = Aqe);
|
|
92587
92526
|
const f = new rY(this.options);
|
|
92588
92527
|
this.store = new tY(this.options.resources, this.options);
|
|
92589
92528
|
const m = this.services;
|
|
92590
|
-
m.logger = Mf, m.resourceStore = this.store, m.languageUtils = f, m.pluralResolver = new
|
|
92529
|
+
m.logger = Mf, m.resourceStore = this.store, m.languageUtils = f, m.pluralResolver = new kqe(f, {
|
|
92591
92530
|
prepend: this.options.pluralSeparator,
|
|
92592
92531
|
compatibilityJSON: this.options.compatibilityJSON,
|
|
92593
92532
|
simplifyPluralSuffix: this.options.simplifyPluralSuffix
|
|
92594
|
-
}), d && (!this.options.interpolation.format || this.options.interpolation.format === o.interpolation.format) && (m.formatter = i(d), m.formatter.init(m, this.options), this.options.interpolation.format = m.formatter.format.bind(m.formatter)), m.interpolator = new
|
|
92533
|
+
}), d && (!this.options.interpolation.format || this.options.interpolation.format === o.interpolation.format) && (m.formatter = i(d), m.formatter.init(m, this.options), this.options.interpolation.format = m.formatter.format.bind(m.formatter)), m.interpolator = new Lqe(this.options), m.utils = {
|
|
92595
92534
|
hasLoadedNamespace: this.hasLoadedNamespace.bind(this)
|
|
92596
|
-
}, m.backendConnector = new
|
|
92535
|
+
}, m.backendConnector = new Hqe(i(this.modules.backend), m.resourceStore, m, this.options), m.backendConnector.on("*", function(g) {
|
|
92597
92536
|
for (var y = arguments.length, b = new Array(y > 1 ? y - 1 : 0), C = 1; C < y; C++)
|
|
92598
92537
|
b[C - 1] = arguments[C];
|
|
92599
92538
|
t.emit(g, ...b);
|
|
@@ -92815,63 +92754,63 @@ Gl.setDefaultNamespace;
|
|
|
92815
92754
|
Gl.hasLoadedNamespace;
|
|
92816
92755
|
Gl.loadNamespaces;
|
|
92817
92756
|
Gl.loadLanguages;
|
|
92818
|
-
const
|
|
92819
|
-
Hi:
|
|
92820
|
-
Hello:
|
|
92821
|
-
Cancel:
|
|
92822
|
-
Notifications:
|
|
92823
|
-
Unread:
|
|
92824
|
-
All:
|
|
92825
|
-
Discuss:
|
|
92757
|
+
const Bqe = "Hi", jqe = "Hello", Vqe = "Cancel", Wqe = "Notifications", Uqe = "Unread", Kqe = "All", Gqe = "Discuss", qqe = "All notifications", Xqe = "Selectable", Yqe = "Unselectable", Zqe = "Yes", Jqe = "No", Qqe = "Please enter {{label}}", eXe = "Please choose {{label}}", tXe = "Please select {{label}}", nXe = "Select {{label}}", rXe = {
|
|
92758
|
+
Hi: Bqe,
|
|
92759
|
+
Hello: jqe,
|
|
92760
|
+
Cancel: Vqe,
|
|
92761
|
+
Notifications: Wqe,
|
|
92762
|
+
Unread: Uqe,
|
|
92763
|
+
All: Kqe,
|
|
92764
|
+
Discuss: Gqe,
|
|
92826
92765
|
"Mark all as read": "Mark all as read",
|
|
92827
|
-
AllNotifications:
|
|
92766
|
+
AllNotifications: qqe,
|
|
92828
92767
|
"Mark as unread": "Mark as unread",
|
|
92829
92768
|
"Mark as read": "Mark as read",
|
|
92830
92769
|
"This is bottom": "This is bottom",
|
|
92831
92770
|
"Please select at least one notification": "Please select at least one notification",
|
|
92832
|
-
Selectable:
|
|
92833
|
-
Unselectable:
|
|
92771
|
+
Selectable: Xqe,
|
|
92772
|
+
Unselectable: Yqe,
|
|
92834
92773
|
"Are you sure to mark all as read?": "Are you sure to mark all as read?",
|
|
92835
|
-
Yes:
|
|
92836
|
-
No:
|
|
92837
|
-
_pleaseEnter:
|
|
92838
|
-
_pleaseChoose:
|
|
92839
|
-
_pleaseSelect:
|
|
92840
|
-
_select:
|
|
92841
|
-
},
|
|
92842
|
-
Hi:
|
|
92843
|
-
Hello:
|
|
92844
|
-
Cancel:
|
|
92845
|
-
Notifications:
|
|
92846
|
-
Unread:
|
|
92847
|
-
All:
|
|
92848
|
-
Discuss:
|
|
92774
|
+
Yes: Zqe,
|
|
92775
|
+
No: Jqe,
|
|
92776
|
+
_pleaseEnter: Qqe,
|
|
92777
|
+
_pleaseChoose: eXe,
|
|
92778
|
+
_pleaseSelect: tXe,
|
|
92779
|
+
_select: nXe
|
|
92780
|
+
}, oXe = "Xin chào", iXe = "Xin chào", aXe = "Hủy", lXe = "Thông báo", sXe = "Chưa đọc", cXe = "Tất cả", uXe = "Thảo luận", dXe = "Tất cả thông báo", fXe = "Cho phép chọn", pXe = "Hủy chọn", hXe = "Có", mXe = "Không", gXe = "Vui lòng điền {{label}}", vXe = "Vui chọn chọn {{label}}", yXe = "Vui lòng chọn {{label}}", CXe = "Chọn {{label}}", bXe = {
|
|
92781
|
+
Hi: oXe,
|
|
92782
|
+
Hello: iXe,
|
|
92783
|
+
Cancel: aXe,
|
|
92784
|
+
Notifications: lXe,
|
|
92785
|
+
Unread: sXe,
|
|
92786
|
+
All: cXe,
|
|
92787
|
+
Discuss: uXe,
|
|
92849
92788
|
"Mark all as read": "Đánh dấu tất cả là đã đọc",
|
|
92850
|
-
AllNotifications:
|
|
92789
|
+
AllNotifications: dXe,
|
|
92851
92790
|
"Mark as unread": "Đánh dấu là chưa đọc",
|
|
92852
92791
|
"Mark as read": "Đánh dấu là đã đọc",
|
|
92853
92792
|
"This is bottom": "Đây là cuối trang",
|
|
92854
92793
|
"Please select at least one notification": "Vui lòng chọn ít nhất một thông báo",
|
|
92855
|
-
Selectable:
|
|
92856
|
-
Unselectable:
|
|
92794
|
+
Selectable: fXe,
|
|
92795
|
+
Unselectable: pXe,
|
|
92857
92796
|
"Are you sure to mark all as read?": "Bạn chắc chắn muốn đánh dấu tất cả là đã đọc?",
|
|
92858
|
-
Yes:
|
|
92859
|
-
No:
|
|
92860
|
-
_pleaseEnter:
|
|
92861
|
-
_pleaseChoose:
|
|
92862
|
-
_pleaseSelect:
|
|
92863
|
-
_select:
|
|
92797
|
+
Yes: hXe,
|
|
92798
|
+
No: mXe,
|
|
92799
|
+
_pleaseEnter: gXe,
|
|
92800
|
+
_pleaseChoose: vXe,
|
|
92801
|
+
_pleaseSelect: yXe,
|
|
92802
|
+
_select: CXe
|
|
92864
92803
|
}, U3 = Gl;
|
|
92865
|
-
U3 == null || U3.use(
|
|
92804
|
+
U3 == null || U3.use(bGe).init({
|
|
92866
92805
|
// the translations
|
|
92867
92806
|
// (tip move them in a JSON file and import them,
|
|
92868
92807
|
// or even better, manage them via a UI: https://react.i18next.com/guides/multiple-translation-files#manage-your-translations-with-a-management-gui)
|
|
92869
92808
|
resources: {
|
|
92870
92809
|
vi: {
|
|
92871
|
-
translation:
|
|
92810
|
+
translation: bXe
|
|
92872
92811
|
},
|
|
92873
92812
|
en: {
|
|
92874
|
-
translation:
|
|
92813
|
+
translation: rXe
|
|
92875
92814
|
}
|
|
92876
92815
|
},
|
|
92877
92816
|
lng: "vi",
|
|
@@ -92885,7 +92824,7 @@ U3 == null || U3.use(EUe).init({
|
|
|
92885
92824
|
const K6 = Pd({
|
|
92886
92825
|
mainLayoutConfig: {},
|
|
92887
92826
|
userConfig: {}
|
|
92888
|
-
}),
|
|
92827
|
+
}), SXe = (e, t) => {
|
|
92889
92828
|
const {
|
|
92890
92829
|
children: n,
|
|
92891
92830
|
activeMenu: r,
|
|
@@ -92919,7 +92858,7 @@ const K6 = Pd({
|
|
|
92919
92858
|
userConfig: H,
|
|
92920
92859
|
mainTheme: F,
|
|
92921
92860
|
isHomeApp: W
|
|
92922
|
-
} = e, K = bt(null), { mainLayoutConfig: X, userConfig: q } =
|
|
92861
|
+
} = e, K = bt(null), { mainLayoutConfig: X, userConfig: q } = LGe({
|
|
92923
92862
|
config: z,
|
|
92924
92863
|
userConfig: H
|
|
92925
92864
|
}), [Y, Q] = gt(0), [Z, ne] = gt(0), [ie, J] = gt(!1), [te, oe] = gt({
|
|
@@ -92981,7 +92920,7 @@ const K6 = Pd({
|
|
|
92981
92920
|
userConfig: q,
|
|
92982
92921
|
isHomeApp: W
|
|
92983
92922
|
},
|
|
92984
|
-
children: /* @__PURE__ */ A(
|
|
92923
|
+
children: /* @__PURE__ */ A(EGe, { i18n: U3, children: /* @__PURE__ */ mn(
|
|
92985
92924
|
"div",
|
|
92986
92925
|
{
|
|
92987
92926
|
className: ve(
|
|
@@ -92993,7 +92932,7 @@ const K6 = Pd({
|
|
|
92993
92932
|
),
|
|
92994
92933
|
children: [
|
|
92995
92934
|
/* @__PURE__ */ A(
|
|
92996
|
-
|
|
92935
|
+
Cqe,
|
|
92997
92936
|
{
|
|
92998
92937
|
collapsed: w,
|
|
92999
92938
|
toggleCollapse: de,
|
|
@@ -93029,7 +92968,7 @@ const K6 = Pd({
|
|
|
93029
92968
|
},
|
|
93030
92969
|
children: [
|
|
93031
92970
|
/* @__PURE__ */ A(
|
|
93032
|
-
|
|
92971
|
+
PGe,
|
|
93033
92972
|
{
|
|
93034
92973
|
ref: K,
|
|
93035
92974
|
notification: $,
|
|
@@ -93060,7 +92999,7 @@ const K6 = Pd({
|
|
|
93060
92999
|
}
|
|
93061
93000
|
),
|
|
93062
93001
|
/* @__PURE__ */ A(
|
|
93063
|
-
|
|
93002
|
+
bqe,
|
|
93064
93003
|
{
|
|
93065
93004
|
className: `beca-main-content${w ? " collapsed" : ""}`,
|
|
93066
93005
|
children: n
|
|
@@ -93078,7 +93017,7 @@ const K6 = Pd({
|
|
|
93078
93017
|
)
|
|
93079
93018
|
}
|
|
93080
93019
|
);
|
|
93081
|
-
}, tSt = go(
|
|
93020
|
+
}, tSt = go(SXe), Qz = {
|
|
93082
93021
|
header: {
|
|
93083
93022
|
theme: {
|
|
93084
93023
|
visible: !0
|
|
@@ -93107,8 +93046,68 @@ const K6 = Pd({
|
|
|
93107
93046
|
}
|
|
93108
93047
|
};
|
|
93109
93048
|
var Gee;
|
|
93110
|
-
const
|
|
93049
|
+
const wXe = {
|
|
93111
93050
|
showEventTheme: (Gee = Qz.layout) == null ? void 0 : Gee.showEventTheme
|
|
93051
|
+
}, xXe = (e) => {
|
|
93052
|
+
const t = aO(), { mainTheme: n } = fr(K6), { applicationsCardData: r = [], onClickItem: o, currentApp: i, lang: a } = e, [l, s] = gt(""), c = qz(l), [d, f] = gt(r), m = On(
|
|
93053
|
+
() => d.sort((g, y) => {
|
|
93054
|
+
const b = g.order ?? 0, C = y.order ?? 0;
|
|
93055
|
+
return b - C;
|
|
93056
|
+
}),
|
|
93057
|
+
[JSON.stringify(d)]
|
|
93058
|
+
);
|
|
93059
|
+
return tn(() => {
|
|
93060
|
+
if (n === "Office" && (r == null ? void 0 : r.length) > 0) {
|
|
93061
|
+
const g = c == null ? void 0 : c.toLowerCase(), y = r.filter(
|
|
93062
|
+
(b) => {
|
|
93063
|
+
var C, w, E;
|
|
93064
|
+
return ((C = b.id) == null ? void 0 : C.toString().toLowerCase().includes(g)) || ((w = b.name) == null ? void 0 : w.toLowerCase().includes(g)) || ((E = b.nameEng) == null ? void 0 : E.toLowerCase().includes(g));
|
|
93065
|
+
}
|
|
93066
|
+
);
|
|
93067
|
+
f(y);
|
|
93068
|
+
}
|
|
93069
|
+
}, [c]), /* @__PURE__ */ mn(
|
|
93070
|
+
"div",
|
|
93071
|
+
{
|
|
93072
|
+
className: ve(
|
|
93073
|
+
"applications-card",
|
|
93074
|
+
n === "Office" && "office-apps-card"
|
|
93075
|
+
),
|
|
93076
|
+
children: [
|
|
93077
|
+
n === "Office" && /* @__PURE__ */ A("div", { className: "apps-card-search", children: /* @__PURE__ */ A(
|
|
93078
|
+
np.Search,
|
|
93079
|
+
{
|
|
93080
|
+
variant: "filled",
|
|
93081
|
+
placeholder: t.search,
|
|
93082
|
+
onChange: (g) => s(g.target.value)
|
|
93083
|
+
}
|
|
93084
|
+
) }),
|
|
93085
|
+
/* @__PURE__ */ A("div", { className: "app-row", children: m == null ? void 0 : m.map((g, y) => /* @__PURE__ */ mn(
|
|
93086
|
+
"a",
|
|
93087
|
+
{
|
|
93088
|
+
href: g.href,
|
|
93089
|
+
className: `app-item${i === g.appId ? " active" : ""}`,
|
|
93090
|
+
title: g.name,
|
|
93091
|
+
onClick: o ? () => o(g) : void 0,
|
|
93092
|
+
children: [
|
|
93093
|
+
g.image && (typeof g.image == "string" ? /* @__PURE__ */ A(
|
|
93094
|
+
"div",
|
|
93095
|
+
{
|
|
93096
|
+
className: "app-logo",
|
|
93097
|
+
style: n !== "Office" ? {
|
|
93098
|
+
backgroundColor: g.iconBackgroundColor ?? "var(--primary-color-2)"
|
|
93099
|
+
} : void 0,
|
|
93100
|
+
children: /* @__PURE__ */ A("img", { src: g.image })
|
|
93101
|
+
}
|
|
93102
|
+
) : g.image),
|
|
93103
|
+
/* @__PURE__ */ A("div", { className: "app-name", children: a === "en" && g.nameEng ? g.nameEng : g.name })
|
|
93104
|
+
]
|
|
93105
|
+
},
|
|
93106
|
+
`app-card-${y}`
|
|
93107
|
+
)) })
|
|
93108
|
+
]
|
|
93109
|
+
}
|
|
93110
|
+
);
|
|
93112
93111
|
}, EXe = (e) => {
|
|
93113
93112
|
const { className: t, scrollable: n = !0 } = e;
|
|
93114
93113
|
let r = "beca-content";
|
|
@@ -93748,7 +93747,7 @@ const YXe = (e) => {
|
|
|
93748
93747
|
ar,
|
|
93749
93748
|
{
|
|
93750
93749
|
type: "text",
|
|
93751
|
-
icon: /* @__PURE__ */ A(
|
|
93750
|
+
icon: /* @__PURE__ */ A(bUe, {}),
|
|
93752
93751
|
className: "pagination-btn",
|
|
93753
93752
|
size: o
|
|
93754
93753
|
}
|
|
@@ -93758,7 +93757,7 @@ const YXe = (e) => {
|
|
|
93758
93757
|
ar,
|
|
93759
93758
|
{
|
|
93760
93759
|
type: "text",
|
|
93761
|
-
icon: /* @__PURE__ */ A(
|
|
93760
|
+
icon: /* @__PURE__ */ A(que, {}),
|
|
93762
93761
|
className: "pagination-btn",
|
|
93763
93762
|
size: o
|
|
93764
93763
|
}
|
|
@@ -93768,7 +93767,7 @@ const YXe = (e) => {
|
|
|
93768
93767
|
ar,
|
|
93769
93768
|
{
|
|
93770
93769
|
type: "text",
|
|
93771
|
-
icon: /* @__PURE__ */ A(
|
|
93770
|
+
icon: /* @__PURE__ */ A(wUe, {}),
|
|
93772
93771
|
className: "pagination-btn",
|
|
93773
93772
|
size: o
|
|
93774
93773
|
}
|
|
@@ -93778,7 +93777,7 @@ const YXe = (e) => {
|
|
|
93778
93777
|
ar,
|
|
93779
93778
|
{
|
|
93780
93779
|
type: "text",
|
|
93781
|
-
icon: /* @__PURE__ */ A(
|
|
93780
|
+
icon: /* @__PURE__ */ A(NUe, {}),
|
|
93782
93781
|
className: "pagination-btn",
|
|
93783
93782
|
size: o
|
|
93784
93783
|
}
|
|
@@ -93817,14 +93816,14 @@ const YXe = (e) => {
|
|
|
93817
93816
|
return /* @__PURE__ */ mn(cp, { ...e, className: QXe(e), style: n, children: [
|
|
93818
93817
|
/* @__PURE__ */ mn("span", { className: "beca-checkbox-icon", children: [
|
|
93819
93818
|
/* @__PURE__ */ A(
|
|
93820
|
-
|
|
93819
|
+
DKe,
|
|
93821
93820
|
{
|
|
93822
93821
|
color: r,
|
|
93823
93822
|
style: { fill: i === "fill" ? r : void 0 }
|
|
93824
93823
|
}
|
|
93825
93824
|
),
|
|
93826
93825
|
/* @__PURE__ */ A(
|
|
93827
|
-
|
|
93826
|
+
tGe,
|
|
93828
93827
|
{
|
|
93829
93828
|
color: o,
|
|
93830
93829
|
style: { fill: i === "fill" ? r : void 0 },
|
|
@@ -99701,7 +99700,7 @@ const OZe = $Ze, NZe = (e) => {
|
|
|
99701
99700
|
tn(() => {
|
|
99702
99701
|
const de = [...i].map((pe) => {
|
|
99703
99702
|
const ye = { ...pe };
|
|
99704
|
-
return pe.filterDropdown && pe.filterIcon === void 0 && (ye.filterIcon = /* @__PURE__ */ A(
|
|
99703
|
+
return pe.filterDropdown && pe.filterIcon === void 0 && (ye.filterIcon = /* @__PURE__ */ A(GUe, { size: 16 })), ye;
|
|
99705
99704
|
});
|
|
99706
99705
|
T(de);
|
|
99707
99706
|
}, [i]), tn(() => {
|
|
@@ -100000,7 +99999,7 @@ const iSt = Dd.Summary, RZe = (e) => {
|
|
|
100000
99999
|
return ka.confirm({
|
|
100001
100000
|
...e,
|
|
100002
100001
|
className: "beca-modal-confirm" + (t ? " " + t : ""),
|
|
100003
|
-
icon: /* @__PURE__ */ A("span", { className: "beca-modal-confirm__icon", children: n ?? /* @__PURE__ */ A(
|
|
100002
|
+
icon: /* @__PURE__ */ A("span", { className: "beca-modal-confirm__icon", children: n ?? /* @__PURE__ */ A(Kz, { color: "var(--warning-color-5)" }) }),
|
|
100004
100003
|
okText: i,
|
|
100005
100004
|
cancelText: o,
|
|
100006
100005
|
okButtonProps: {
|
|
@@ -100050,7 +100049,7 @@ const iSt = Dd.Summary, RZe = (e) => {
|
|
|
100050
100049
|
return ka.error({
|
|
100051
100050
|
...e,
|
|
100052
100051
|
className: "beca-modal-confirm" + (t ? " " + t : ""),
|
|
100053
|
-
icon: /* @__PURE__ */ A("span", { className: "beca-modal-confirm__icon", children: n ?? /* @__PURE__ */ A(
|
|
100052
|
+
icon: /* @__PURE__ */ A("span", { className: "beca-modal-confirm__icon", children: n ?? /* @__PURE__ */ A(QUe, { size: 22, color: "var(--info-color-5)" }) }),
|
|
100054
100053
|
okText: i,
|
|
100055
100054
|
cancelText: o,
|
|
100056
100055
|
okButtonProps: {
|
|
@@ -100144,9 +100143,9 @@ const aSt = (e) => {
|
|
|
100144
100143
|
ref: t,
|
|
100145
100144
|
...e,
|
|
100146
100145
|
className: gO(e),
|
|
100147
|
-
enterButton: n ?? /* @__PURE__ */ A(
|
|
100146
|
+
enterButton: n ?? /* @__PURE__ */ A(_Ke, { color: "#fff", size: 12 }),
|
|
100148
100147
|
allowClear: r === !0 ? {
|
|
100149
|
-
clearIcon: /* @__PURE__ */ A(
|
|
100148
|
+
clearIcon: /* @__PURE__ */ A(Wz, { color: "var(--gray-text-color)", size: 12 })
|
|
100150
100149
|
} : !1
|
|
100151
100150
|
}
|
|
100152
100151
|
);
|
|
@@ -100158,7 +100157,7 @@ const aSt = (e) => {
|
|
|
100158
100157
|
...e,
|
|
100159
100158
|
className: gO(e),
|
|
100160
100159
|
allowClear: t === !0 ? {
|
|
100161
|
-
clearIcon: /* @__PURE__ */ A(
|
|
100160
|
+
clearIcon: /* @__PURE__ */ A(Wz, { color: "var(--gray-text-color)", size: 12 })
|
|
100162
100161
|
} : !1
|
|
100163
100162
|
}
|
|
100164
100163
|
);
|
|
@@ -100170,7 +100169,7 @@ const aSt = (e) => {
|
|
|
100170
100169
|
...e,
|
|
100171
100170
|
className: gO(e),
|
|
100172
100171
|
allowClear: t === !0 ? {
|
|
100173
|
-
clearIcon: /* @__PURE__ */ A(
|
|
100172
|
+
clearIcon: /* @__PURE__ */ A(Wz, { color: "var(--gray-text-color)", size: 12 })
|
|
100174
100173
|
} : !1,
|
|
100175
100174
|
prefix: r || (n ? /* @__PURE__ */ A("input", { name: e.name, type: "color" }) : void 0)
|
|
100176
100175
|
}
|
|
@@ -100188,7 +100187,7 @@ const lSt = (e) => {
|
|
|
100188
100187
|
...e,
|
|
100189
100188
|
className: "beca-input-number" + (t ? ` ${t}` : ""),
|
|
100190
100189
|
controls: n === !0 || n === void 0 || n === null ? {
|
|
100191
|
-
upIcon: /* @__PURE__ */ A(
|
|
100190
|
+
upIcon: /* @__PURE__ */ A(RUe, { size: 12 }),
|
|
100192
100191
|
downIcon: /* @__PURE__ */ A(C2, { size: 12 })
|
|
100193
100192
|
} : n
|
|
100194
100193
|
}
|
|
@@ -100263,7 +100262,7 @@ const lSt = (e) => {
|
|
|
100263
100262
|
}
|
|
100264
100263
|
),
|
|
100265
100264
|
listHeight: c && !f ? 220 : void 0,
|
|
100266
|
-
menuItemSelectedIcon: l ?? /* @__PURE__ */ A(
|
|
100265
|
+
menuItemSelectedIcon: l ?? /* @__PURE__ */ A(fde, { style: { color: "#fff" } }),
|
|
100267
100266
|
removeIcon: /* @__PURE__ */ A(W6, { style: { color: "var(--picker-suffix-icon-color)" } }),
|
|
100268
100267
|
getPopupContainer: o ?? e.position === "relative" ? (g) => g.parentNode : void 0,
|
|
100269
100268
|
showSearch: e.showSearch || i || a,
|
|
@@ -118169,7 +118168,7 @@ const hat = (e) => {
|
|
|
118169
118168
|
/* @__PURE__ */ A(
|
|
118170
118169
|
ar,
|
|
118171
118170
|
{
|
|
118172
|
-
icon: /* @__PURE__ */ A(
|
|
118171
|
+
icon: /* @__PURE__ */ A(YKe, {}),
|
|
118173
118172
|
onClick: () => {
|
|
118174
118173
|
E.chain().setMediaAlign("left").run();
|
|
118175
118174
|
},
|
|
@@ -118179,7 +118178,7 @@ const hat = (e) => {
|
|
|
118179
118178
|
/* @__PURE__ */ A(
|
|
118180
118179
|
ar,
|
|
118181
118180
|
{
|
|
118182
|
-
icon: /* @__PURE__ */ A(
|
|
118181
|
+
icon: /* @__PURE__ */ A(Uz, {}),
|
|
118183
118182
|
onClick: () => {
|
|
118184
118183
|
E.chain().setMediaAlign("center").run();
|
|
118185
118184
|
},
|
|
@@ -118189,7 +118188,7 @@ const hat = (e) => {
|
|
|
118189
118188
|
/* @__PURE__ */ A(
|
|
118190
118189
|
ar,
|
|
118191
118190
|
{
|
|
118192
|
-
icon: /* @__PURE__ */ A(
|
|
118191
|
+
icon: /* @__PURE__ */ A(JKe, {}),
|
|
118193
118192
|
onClick: () => {
|
|
118194
118193
|
E.chain().setMediaAlign("right").run();
|
|
118195
118194
|
},
|
|
@@ -119069,19 +119068,19 @@ const Wat = (e) => {
|
|
|
119069
119068
|
{
|
|
119070
119069
|
subItems: [
|
|
119071
119070
|
{
|
|
119072
|
-
icon: /* @__PURE__ */ A(
|
|
119071
|
+
icon: /* @__PURE__ */ A(Wue, {}),
|
|
119073
119072
|
onClick: () => e == null ? void 0 : e.chain().focus().addColumnBefore().run(),
|
|
119074
119073
|
disabled: !(e != null && e.can().addColumnBefore()),
|
|
119075
119074
|
title: "Thêm 1 cột bên trái"
|
|
119076
119075
|
},
|
|
119077
119076
|
{
|
|
119078
|
-
icon: /* @__PURE__ */ A(
|
|
119077
|
+
icon: /* @__PURE__ */ A(Uue, {}),
|
|
119079
119078
|
onClick: () => e == null ? void 0 : e.chain().focus().addColumnAfter().run(),
|
|
119080
119079
|
disabled: !(e != null && e.can().addColumnAfter()),
|
|
119081
119080
|
title: "Thêm 1 cột bên phải"
|
|
119082
119081
|
},
|
|
119083
119082
|
{
|
|
119084
|
-
icon: /* @__PURE__ */ A(
|
|
119083
|
+
icon: /* @__PURE__ */ A(rde, {}),
|
|
119085
119084
|
onClick: () => e == null ? void 0 : e.chain().focus().deleteColumn().run(),
|
|
119086
119085
|
disabled: !(e != null && e.can().deleteColumn()),
|
|
119087
119086
|
title: "Xóa cột"
|
|
@@ -119091,19 +119090,19 @@ const Wat = (e) => {
|
|
|
119091
119090
|
{
|
|
119092
119091
|
subItems: [
|
|
119093
119092
|
{
|
|
119094
|
-
icon: /* @__PURE__ */ A(
|
|
119093
|
+
icon: /* @__PURE__ */ A(Kue, {}),
|
|
119095
119094
|
onClick: () => e == null ? void 0 : e.chain().focus().addRowBefore().run(),
|
|
119096
119095
|
disabled: !(e != null && e.can().addRowBefore()),
|
|
119097
119096
|
title: "Thêm 1 hàng bên trên"
|
|
119098
119097
|
},
|
|
119099
119098
|
{
|
|
119100
|
-
icon: /* @__PURE__ */ A(
|
|
119099
|
+
icon: /* @__PURE__ */ A(Vue, {}),
|
|
119101
119100
|
onClick: () => e == null ? void 0 : e.chain().focus().addRowAfter().run(),
|
|
119102
119101
|
disabled: !(e != null && e.can().addRowAfter()),
|
|
119103
119102
|
title: "Thêm 1 hàng bên dưới"
|
|
119104
119103
|
},
|
|
119105
119104
|
{
|
|
119106
|
-
icon: /* @__PURE__ */ A(
|
|
119105
|
+
icon: /* @__PURE__ */ A(ode, {}),
|
|
119107
119106
|
onClick: () => e == null ? void 0 : e.chain().focus().deleteRow().run(),
|
|
119108
119107
|
disabled: !(e != null && e.can().deleteRow()),
|
|
119109
119108
|
title: "Xóa hàng"
|
|
@@ -119113,13 +119112,13 @@ const Wat = (e) => {
|
|
|
119113
119112
|
{
|
|
119114
119113
|
subItems: [
|
|
119115
119114
|
{
|
|
119116
|
-
icon: /* @__PURE__ */ A(
|
|
119115
|
+
icon: /* @__PURE__ */ A(ede, {}),
|
|
119117
119116
|
onClick: () => e == null ? void 0 : e.chain().focus().mergeCells().run(),
|
|
119118
119117
|
disabled: !(e != null && e.can().mergeCells()),
|
|
119119
119118
|
title: "Ghép ô"
|
|
119120
119119
|
},
|
|
119121
119120
|
{
|
|
119122
|
-
icon: /* @__PURE__ */ A(
|
|
119121
|
+
icon: /* @__PURE__ */ A(lde, {}),
|
|
119123
119122
|
onClick: () => e == null ? void 0 : e.chain().focus().splitCell().run(),
|
|
119124
119123
|
disabled: !(e != null && e.can().splitCell()),
|
|
119125
119124
|
title: "Tách ô"
|
|
@@ -119144,7 +119143,7 @@ const Wat = (e) => {
|
|
|
119144
119143
|
// title: "Tô màu ô",
|
|
119145
119144
|
// },
|
|
119146
119145
|
{
|
|
119147
|
-
icon: /* @__PURE__ */ A(
|
|
119146
|
+
icon: /* @__PURE__ */ A(Jue, {}),
|
|
119148
119147
|
onClick: () => e == null ? void 0 : e.chain().focus().deleteTable().run(),
|
|
119149
119148
|
disabled: !(e != null && e.can().deleteTable()),
|
|
119150
119149
|
title: "Xóa bảng"
|
|
@@ -120749,7 +120748,7 @@ const Vlt = [
|
|
|
120749
120748
|
{
|
|
120750
120749
|
onClick: () => e.chain().focus().toggleMark("bold").run(),
|
|
120751
120750
|
className: e.isActive("bold") ? "is-active" : "",
|
|
120752
|
-
icon: /* @__PURE__ */ A(
|
|
120751
|
+
icon: /* @__PURE__ */ A(sde, {}),
|
|
120753
120752
|
size: "small",
|
|
120754
120753
|
type: "text"
|
|
120755
120754
|
}
|
|
@@ -120759,7 +120758,7 @@ const Vlt = [
|
|
|
120759
120758
|
{
|
|
120760
120759
|
onClick: () => e.chain().focus().toggleMark("italic").run(),
|
|
120761
120760
|
className: e.isActive("italic") ? "is-active" : "",
|
|
120762
|
-
icon: /* @__PURE__ */ A(
|
|
120761
|
+
icon: /* @__PURE__ */ A(cde, {}),
|
|
120763
120762
|
size: "small",
|
|
120764
120763
|
type: "text"
|
|
120765
120764
|
}
|
|
@@ -120769,7 +120768,7 @@ const Vlt = [
|
|
|
120769
120768
|
{
|
|
120770
120769
|
popupRender: () => /* @__PURE__ */ A(Che, { editor: e }),
|
|
120771
120770
|
trigger: ["click"],
|
|
120772
|
-
children: /* @__PURE__ */ A(ar, { icon: /* @__PURE__ */ A(
|
|
120771
|
+
children: /* @__PURE__ */ A(ar, { icon: /* @__PURE__ */ A(Zue, {}), size: "small", type: "text" })
|
|
120773
120772
|
}
|
|
120774
120773
|
)
|
|
120775
120774
|
] }),
|
|
@@ -120782,7 +120781,7 @@ const Vlt = [
|
|
|
120782
120781
|
{
|
|
120783
120782
|
onClick: () => e.chain().focus().setTextAlign("left").run(),
|
|
120784
120783
|
className: e.isActive({ textAlign: "left" }) ? "is-active" : "default",
|
|
120785
|
-
icon: /* @__PURE__ */ A(
|
|
120784
|
+
icon: /* @__PURE__ */ A(ude, {}),
|
|
120786
120785
|
size: "small",
|
|
120787
120786
|
type: "text"
|
|
120788
120787
|
}
|
|
@@ -120792,7 +120791,7 @@ const Vlt = [
|
|
|
120792
120791
|
{
|
|
120793
120792
|
onClick: () => e.chain().focus().setTextAlign("center").run(),
|
|
120794
120793
|
className: e.isActive({ textAlign: "center" }) ? "is-active" : "",
|
|
120795
|
-
icon: /* @__PURE__ */ A(
|
|
120794
|
+
icon: /* @__PURE__ */ A(Uz, {}),
|
|
120796
120795
|
size: "small",
|
|
120797
120796
|
type: "text"
|
|
120798
120797
|
}
|
|
@@ -120802,7 +120801,7 @@ const Vlt = [
|
|
|
120802
120801
|
{
|
|
120803
120802
|
onClick: () => e.chain().focus().setTextAlign("right").run(),
|
|
120804
120803
|
className: e.isActive({ textAlign: "right" }) ? "is-active" : "",
|
|
120805
|
-
icon: /* @__PURE__ */ A(
|
|
120804
|
+
icon: /* @__PURE__ */ A(dde, {}),
|
|
120806
120805
|
size: "small",
|
|
120807
120806
|
type: "text"
|
|
120808
120807
|
}
|
|
@@ -120812,7 +120811,7 @@ const Vlt = [
|
|
|
120812
120811
|
{
|
|
120813
120812
|
onClick: () => e.chain().focus().setTextAlign("justify").run(),
|
|
120814
120813
|
className: e.isActive({ textAlign: "justify" }) ? "is-active" : "",
|
|
120815
|
-
icon: /* @__PURE__ */ A(
|
|
120814
|
+
icon: /* @__PURE__ */ A(uL, {}),
|
|
120816
120815
|
size: "small",
|
|
120817
120816
|
type: "text"
|
|
120818
120817
|
}
|
|
@@ -120822,7 +120821,7 @@ const Vlt = [
|
|
|
120822
120821
|
children: /* @__PURE__ */ A(
|
|
120823
120822
|
ar,
|
|
120824
120823
|
{
|
|
120825
|
-
icon: /* @__PURE__ */ A(
|
|
120824
|
+
icon: /* @__PURE__ */ A(uL, {}),
|
|
120826
120825
|
size: "small",
|
|
120827
120826
|
type: "text"
|
|
120828
120827
|
}
|
|
@@ -120909,7 +120908,7 @@ const Vlt = [
|
|
|
120909
120908
|
isMobile: l = !0,
|
|
120910
120909
|
addImage: s,
|
|
120911
120910
|
fontSizeUnit: c
|
|
120912
|
-
} = e, d = aO(), [f, m] = gt(""), g =
|
|
120911
|
+
} = e, d = aO(), [f, m] = gt(""), g = qz(f), [y, b] = gt(), [C, w] = gt(!1), [E, O] = gt(!1);
|
|
120913
120912
|
ra(t, () => ({
|
|
120914
120913
|
importImage: (Y) => {
|
|
120915
120914
|
I(Y);
|
|
@@ -120946,7 +120945,7 @@ const Vlt = [
|
|
|
120946
120945
|
{
|
|
120947
120946
|
status: "default",
|
|
120948
120947
|
onClick: () => n.chain().focus().insertTable({ rows: 3, cols: 3, withHeaderRow: !0 }).run(),
|
|
120949
|
-
icon: /* @__PURE__ */ A(
|
|
120948
|
+
icon: /* @__PURE__ */ A(AX, {}),
|
|
120950
120949
|
title: "Thêm bảng"
|
|
120951
120950
|
}
|
|
120952
120951
|
) }, "0"),
|
|
@@ -120957,7 +120956,7 @@ const Vlt = [
|
|
|
120957
120956
|
status: "default",
|
|
120958
120957
|
onClick: () => M.chain().focus().addColumnBefore().run(),
|
|
120959
120958
|
disabled: !M.can().addColumnBefore(),
|
|
120960
|
-
icon: /* @__PURE__ */ A(
|
|
120959
|
+
icon: /* @__PURE__ */ A(Wue, {}),
|
|
120961
120960
|
title: d.add1ColumnToTheLeft
|
|
120962
120961
|
}
|
|
120963
120962
|
),
|
|
@@ -120967,7 +120966,7 @@ const Vlt = [
|
|
|
120967
120966
|
status: "default",
|
|
120968
120967
|
onClick: () => M.chain().focus().addColumnAfter().run(),
|
|
120969
120968
|
disabled: !M.can().addColumnAfter(),
|
|
120970
|
-
icon: /* @__PURE__ */ A(
|
|
120969
|
+
icon: /* @__PURE__ */ A(Uue, {}),
|
|
120971
120970
|
title: d.add1ColumnToTheRight
|
|
120972
120971
|
}
|
|
120973
120972
|
),
|
|
@@ -120977,7 +120976,7 @@ const Vlt = [
|
|
|
120977
120976
|
status: "default",
|
|
120978
120977
|
onClick: () => M.chain().focus().deleteColumn().run(),
|
|
120979
120978
|
disabled: !M.can().deleteColumn(),
|
|
120980
|
-
icon: /* @__PURE__ */ A(
|
|
120979
|
+
icon: /* @__PURE__ */ A(rde, {}),
|
|
120981
120980
|
title: d.removeColumn
|
|
120982
120981
|
}
|
|
120983
120982
|
)
|
|
@@ -120989,7 +120988,7 @@ const Vlt = [
|
|
|
120989
120988
|
status: "default",
|
|
120990
120989
|
onClick: () => M.chain().focus().addRowBefore().run(),
|
|
120991
120990
|
disabled: !M.can().addRowBefore(),
|
|
120992
|
-
icon: /* @__PURE__ */ A(
|
|
120991
|
+
icon: /* @__PURE__ */ A(Kue, {}),
|
|
120993
120992
|
title: d.add1RowAbove
|
|
120994
120993
|
}
|
|
120995
120994
|
),
|
|
@@ -120999,7 +120998,7 @@ const Vlt = [
|
|
|
120999
120998
|
status: "default",
|
|
121000
120999
|
onClick: () => M.chain().focus().addRowAfter().run(),
|
|
121001
121000
|
disabled: !M.can().addRowAfter(),
|
|
121002
|
-
icon: /* @__PURE__ */ A(
|
|
121001
|
+
icon: /* @__PURE__ */ A(Vue, {}),
|
|
121003
121002
|
title: d.add1RowBelow
|
|
121004
121003
|
}
|
|
121005
121004
|
),
|
|
@@ -121009,7 +121008,7 @@ const Vlt = [
|
|
|
121009
121008
|
status: "default",
|
|
121010
121009
|
onClick: () => M.chain().focus().deleteRow().run(),
|
|
121011
121010
|
disabled: !M.can().deleteRow(),
|
|
121012
|
-
icon: /* @__PURE__ */ A(
|
|
121011
|
+
icon: /* @__PURE__ */ A(ode, {}),
|
|
121013
121012
|
title: d.removeRow
|
|
121014
121013
|
}
|
|
121015
121014
|
)
|
|
@@ -121021,7 +121020,7 @@ const Vlt = [
|
|
|
121021
121020
|
status: "default",
|
|
121022
121021
|
onClick: () => M.chain().focus().mergeCells().run(),
|
|
121023
121022
|
disabled: !M.can().mergeCells(),
|
|
121024
|
-
icon: /* @__PURE__ */ A(
|
|
121023
|
+
icon: /* @__PURE__ */ A(ede, {}),
|
|
121025
121024
|
title: d.mergeCells
|
|
121026
121025
|
}
|
|
121027
121026
|
),
|
|
@@ -121031,7 +121030,7 @@ const Vlt = [
|
|
|
121031
121030
|
status: "default",
|
|
121032
121031
|
onClick: () => M.chain().focus().splitCell().run(),
|
|
121033
121032
|
disabled: !M.can().splitCell(),
|
|
121034
|
-
icon: /* @__PURE__ */ A(
|
|
121033
|
+
icon: /* @__PURE__ */ A(lde, {}),
|
|
121035
121034
|
title: d.splitCells
|
|
121036
121035
|
}
|
|
121037
121036
|
),
|
|
@@ -121041,7 +121040,7 @@ const Vlt = [
|
|
|
121041
121040
|
status: "default",
|
|
121042
121041
|
onClick: () => M.chain().focus().deleteTable().run(),
|
|
121043
121042
|
disabled: !M.can().deleteTable(),
|
|
121044
|
-
icon: /* @__PURE__ */ A(
|
|
121043
|
+
icon: /* @__PURE__ */ A(Jue, {}),
|
|
121045
121044
|
title: d.removeTable
|
|
121046
121045
|
}
|
|
121047
121046
|
)
|
|
@@ -121057,7 +121056,7 @@ const Vlt = [
|
|
|
121057
121056
|
placeholder: d.enterLink,
|
|
121058
121057
|
onSearch: Y,
|
|
121059
121058
|
style: { width: 300 },
|
|
121060
|
-
enterButton: /* @__PURE__ */ A(
|
|
121059
|
+
enterButton: /* @__PURE__ */ A(DX, {}),
|
|
121061
121060
|
value: f,
|
|
121062
121061
|
onChange: (Q) => m(Q.target.value)
|
|
121063
121062
|
}
|
|
@@ -121070,7 +121069,7 @@ const Vlt = [
|
|
|
121070
121069
|
M.chain().focus().unsetLink().run();
|
|
121071
121070
|
},
|
|
121072
121071
|
style: { marginLeft: 10 },
|
|
121073
|
-
icon: /* @__PURE__ */ A(
|
|
121072
|
+
icon: /* @__PURE__ */ A(pde, {})
|
|
121074
121073
|
}
|
|
121075
121074
|
)
|
|
121076
121075
|
] });
|
|
@@ -121094,7 +121093,7 @@ const Vlt = [
|
|
|
121094
121093
|
placeholder: d.enterImageLink,
|
|
121095
121094
|
onSearch: y ? V : void 0,
|
|
121096
121095
|
style: { width: 300 },
|
|
121097
|
-
enterButton: /* @__PURE__ */ A(
|
|
121096
|
+
enterButton: /* @__PURE__ */ A(DX, {}),
|
|
121098
121097
|
loading: C,
|
|
121099
121098
|
enterKeyHint: "enter",
|
|
121100
121099
|
value: f,
|
|
@@ -121166,7 +121165,7 @@ const Vlt = [
|
|
|
121166
121165
|
onClick: () => M.chain().focus().toggleBold().run(),
|
|
121167
121166
|
type: "text",
|
|
121168
121167
|
status: M.isActive("bold") ? "info" : "default",
|
|
121169
|
-
icon: /* @__PURE__ */ A(
|
|
121168
|
+
icon: /* @__PURE__ */ A(sde, {}),
|
|
121170
121169
|
title: "In đậm"
|
|
121171
121170
|
}
|
|
121172
121171
|
),
|
|
@@ -121176,7 +121175,7 @@ const Vlt = [
|
|
|
121176
121175
|
onClick: () => M.chain().focus().toggleItalic().run(),
|
|
121177
121176
|
type: "text",
|
|
121178
121177
|
status: M.isActive("italic") ? "info" : "default",
|
|
121179
|
-
icon: /* @__PURE__ */ A(
|
|
121178
|
+
icon: /* @__PURE__ */ A(cde, {}),
|
|
121180
121179
|
title: "In nghiêng"
|
|
121181
121180
|
}
|
|
121182
121181
|
),
|
|
@@ -121186,7 +121185,7 @@ const Vlt = [
|
|
|
121186
121185
|
onClick: () => M.chain().focus().toggleHighlight().run(),
|
|
121187
121186
|
type: "text",
|
|
121188
121187
|
status: M.isActive("highlight") ? "info" : "default",
|
|
121189
|
-
icon: /* @__PURE__ */ A(
|
|
121188
|
+
icon: /* @__PURE__ */ A(Que, {}),
|
|
121190
121189
|
title: "Highlight"
|
|
121191
121190
|
}
|
|
121192
121191
|
)
|
|
@@ -121244,7 +121243,7 @@ const Vlt = [
|
|
|
121244
121243
|
{
|
|
121245
121244
|
type: "text",
|
|
121246
121245
|
status: "default",
|
|
121247
|
-
icon: /* @__PURE__ */ A(
|
|
121246
|
+
icon: /* @__PURE__ */ A(Zue, {})
|
|
121248
121247
|
}
|
|
121249
121248
|
)
|
|
121250
121249
|
}
|
|
@@ -121308,7 +121307,7 @@ const Vlt = [
|
|
|
121308
121307
|
onClick: () => M.chain().focus().setTextAlign("left").run(),
|
|
121309
121308
|
type: "text",
|
|
121310
121309
|
status: M.isActive({ textAlign: "left" }) ? "info" : "default",
|
|
121311
|
-
icon: /* @__PURE__ */ A(
|
|
121310
|
+
icon: /* @__PURE__ */ A(ude, {}),
|
|
121312
121311
|
title: d.leftAlignment,
|
|
121313
121312
|
name: "text-align-left"
|
|
121314
121313
|
}
|
|
@@ -121319,7 +121318,7 @@ const Vlt = [
|
|
|
121319
121318
|
onClick: () => M.chain().focus().setTextAlign("center").run(),
|
|
121320
121319
|
type: "text",
|
|
121321
121320
|
status: M.isActive({ textAlign: "center" }) ? "info" : "default",
|
|
121322
|
-
icon: /* @__PURE__ */ A(
|
|
121321
|
+
icon: /* @__PURE__ */ A(Uz, {}),
|
|
121323
121322
|
title: d.centerAlignment
|
|
121324
121323
|
}
|
|
121325
121324
|
),
|
|
@@ -121329,7 +121328,7 @@ const Vlt = [
|
|
|
121329
121328
|
onClick: () => M.chain().focus().setTextAlign("right").run(),
|
|
121330
121329
|
type: "text",
|
|
121331
121330
|
status: M.isActive({ textAlign: "right" }) ? "info" : "default",
|
|
121332
|
-
icon: /* @__PURE__ */ A(
|
|
121331
|
+
icon: /* @__PURE__ */ A(dde, {}),
|
|
121333
121332
|
title: d.rightAlignment
|
|
121334
121333
|
}
|
|
121335
121334
|
),
|
|
@@ -121339,7 +121338,7 @@ const Vlt = [
|
|
|
121339
121338
|
onClick: () => M.chain().focus().setTextAlign("justify").run(),
|
|
121340
121339
|
type: "text",
|
|
121341
121340
|
status: M.isActive({ textAlign: "justify" }) ? "info" : "default",
|
|
121342
|
-
icon: /* @__PURE__ */ A(
|
|
121341
|
+
icon: /* @__PURE__ */ A(uL, {}),
|
|
121343
121342
|
title: d.justify
|
|
121344
121343
|
}
|
|
121345
121344
|
)
|
|
@@ -121356,7 +121355,7 @@ const Vlt = [
|
|
|
121356
121355
|
type: "text",
|
|
121357
121356
|
status: "default",
|
|
121358
121357
|
title: d.table,
|
|
121359
|
-
icon: /* @__PURE__ */ A(
|
|
121358
|
+
icon: /* @__PURE__ */ A(AX, {})
|
|
121360
121359
|
}
|
|
121361
121360
|
)
|
|
121362
121361
|
}
|
|
@@ -121369,7 +121368,7 @@ const Vlt = [
|
|
|
121369
121368
|
type: "text",
|
|
121370
121369
|
onClick: () => M.chain().focus().toggleBulletList().run(),
|
|
121371
121370
|
status: M.isActive("bulletList") ? "info" : "default",
|
|
121372
|
-
icon: /* @__PURE__ */ A(
|
|
121371
|
+
icon: /* @__PURE__ */ A(aGe, {})
|
|
121373
121372
|
}
|
|
121374
121373
|
),
|
|
121375
121374
|
/* @__PURE__ */ A(
|
|
@@ -121378,7 +121377,7 @@ const Vlt = [
|
|
|
121378
121377
|
type: "text",
|
|
121379
121378
|
onClick: () => M.chain().focus().toggleOrderedList().run(),
|
|
121380
121379
|
status: M.isActive("orderedList") ? "info" : "default",
|
|
121381
|
-
icon: /* @__PURE__ */ A(
|
|
121380
|
+
icon: /* @__PURE__ */ A(yKe, {})
|
|
121382
121381
|
}
|
|
121383
121382
|
)
|
|
121384
121383
|
] }),
|
|
@@ -121394,7 +121393,7 @@ const Vlt = [
|
|
|
121394
121393
|
{
|
|
121395
121394
|
type: "text",
|
|
121396
121395
|
status: "default",
|
|
121397
|
-
icon: /* @__PURE__ */ A(
|
|
121396
|
+
icon: /* @__PURE__ */ A(XUe, {}),
|
|
121398
121397
|
title: "Link"
|
|
121399
121398
|
}
|
|
121400
121399
|
)
|
|
@@ -121410,7 +121409,7 @@ const Vlt = [
|
|
|
121410
121409
|
ar,
|
|
121411
121410
|
{
|
|
121412
121411
|
status: M.isActive("link") ? "info" : "default",
|
|
121413
|
-
icon: /* @__PURE__ */ A(
|
|
121412
|
+
icon: /* @__PURE__ */ A(tKe, {}),
|
|
121414
121413
|
title: "Link",
|
|
121415
121414
|
type: "text"
|
|
121416
121415
|
}
|
|
@@ -121423,7 +121422,7 @@ const Vlt = [
|
|
|
121423
121422
|
type: "text",
|
|
121424
121423
|
onClick: () => M.chain().focus().toggleCodeBlock().run(),
|
|
121425
121424
|
status: M.isActive("codeBlock") ? "info" : "default",
|
|
121426
|
-
icon: /* @__PURE__ */ A(
|
|
121425
|
+
icon: /* @__PURE__ */ A(WUe, {}),
|
|
121427
121426
|
title: "Code"
|
|
121428
121427
|
}
|
|
121429
121428
|
),
|
|
@@ -121433,7 +121432,7 @@ const Vlt = [
|
|
|
121433
121432
|
type: "text",
|
|
121434
121433
|
status: "default",
|
|
121435
121434
|
onClick: () => M.chain().focus().unsetAllMarks().run(),
|
|
121436
|
-
icon: /* @__PURE__ */ A(
|
|
121435
|
+
icon: /* @__PURE__ */ A(IUe, {}),
|
|
121437
121436
|
title: d.refresh
|
|
121438
121437
|
}
|
|
121439
121438
|
),
|
|
@@ -121443,7 +121442,7 @@ const Vlt = [
|
|
|
121443
121442
|
type: "text",
|
|
121444
121443
|
status: "default",
|
|
121445
121444
|
onClick: () => M.chain().focus().undo().run(),
|
|
121446
|
-
icon: /* @__PURE__ */ A(
|
|
121445
|
+
icon: /* @__PURE__ */ A(oGe, {}),
|
|
121447
121446
|
title: d.undo,
|
|
121448
121447
|
disabled: !M.can().undo()
|
|
121449
121448
|
}
|
|
@@ -121454,7 +121453,7 @@ const Vlt = [
|
|
|
121454
121453
|
type: "text",
|
|
121455
121454
|
status: "default",
|
|
121456
121455
|
onClick: () => M.chain().focus().redo().run(),
|
|
121457
|
-
icon: /* @__PURE__ */ A(
|
|
121456
|
+
icon: /* @__PURE__ */ A(NKe, {}),
|
|
121458
121457
|
title: d.redo,
|
|
121459
121458
|
disabled: !M.can().redo()
|
|
121460
121459
|
}
|
|
@@ -122637,7 +122636,7 @@ const Tst = (e) => {
|
|
|
122637
122636
|
},
|
|
122638
122637
|
getPopupContainer: o ?? i === "relative" ? (a) => a.parentNode : void 0,
|
|
122639
122638
|
icon: r ?? /* @__PURE__ */ A(
|
|
122640
|
-
|
|
122639
|
+
Kz,
|
|
122641
122640
|
{
|
|
122642
122641
|
className: "beca-popover-icon",
|
|
122643
122642
|
color: "var(--warning-color-5)"
|
|
@@ -122711,23 +122710,23 @@ const Tst = (e) => {
|
|
|
122711
122710
|
root: xhe(e, c)
|
|
122712
122711
|
}
|
|
122713
122712
|
},
|
|
122714
|
-
superPrevIcon: n ?? /* @__PURE__ */ A(
|
|
122715
|
-
superNextIcon: r ?? /* @__PURE__ */ A(
|
|
122713
|
+
superPrevIcon: n ?? /* @__PURE__ */ A(nde, { size: 20, color: "var(--picker-suffix-icon-color)" }),
|
|
122714
|
+
superNextIcon: r ?? /* @__PURE__ */ A(tde, { size: 20, color: "var(--picker-suffix-icon-color)" }),
|
|
122716
122715
|
prevIcon: o ?? /* @__PURE__ */ A(
|
|
122717
|
-
|
|
122716
|
+
Gue,
|
|
122718
122717
|
{
|
|
122719
122718
|
size: 20,
|
|
122720
122719
|
color: "var(--picker-suffix-icon-color)"
|
|
122721
122720
|
}
|
|
122722
122721
|
),
|
|
122723
122722
|
nextIcon: i ?? /* @__PURE__ */ A(
|
|
122724
|
-
|
|
122723
|
+
Xue,
|
|
122725
122724
|
{
|
|
122726
122725
|
size: 20,
|
|
122727
122726
|
color: "var(--picker-suffix-icon-color)"
|
|
122728
122727
|
}
|
|
122729
122728
|
),
|
|
122730
|
-
suffixIcon: a ?? /* @__PURE__ */ A(
|
|
122729
|
+
suffixIcon: a ?? /* @__PURE__ */ A(Yue, { size: 18, color: "var(--picker-suffix-icon-color)" }),
|
|
122731
122730
|
getPopupContainer: l ?? s === "relative" ? (g) => g.parentNode : void 0,
|
|
122732
122731
|
allowClear: t === !0 ? {
|
|
122733
122732
|
clearIcon: /* @__PURE__ */ A(
|
|
@@ -122793,23 +122792,23 @@ const Tst = (e) => {
|
|
|
122793
122792
|
root: xhe(e, l)
|
|
122794
122793
|
}
|
|
122795
122794
|
},
|
|
122796
|
-
superPrevIcon: n ?? /* @__PURE__ */ A(
|
|
122797
|
-
superNextIcon: r ?? /* @__PURE__ */ A(
|
|
122795
|
+
superPrevIcon: n ?? /* @__PURE__ */ A(nde, { size: 20, color: "var(--picker-suffix-icon-color)" }),
|
|
122796
|
+
superNextIcon: r ?? /* @__PURE__ */ A(tde, { size: 20, color: "var(--picker-suffix-icon-color)" }),
|
|
122798
122797
|
prevIcon: o ?? /* @__PURE__ */ A(
|
|
122799
|
-
|
|
122798
|
+
Gue,
|
|
122800
122799
|
{
|
|
122801
122800
|
size: 20,
|
|
122802
122801
|
color: "var(--picker-suffix-icon-color)"
|
|
122803
122802
|
}
|
|
122804
122803
|
),
|
|
122805
122804
|
nextIcon: i ?? /* @__PURE__ */ A(
|
|
122806
|
-
|
|
122805
|
+
Xue,
|
|
122807
122806
|
{
|
|
122808
122807
|
size: 20,
|
|
122809
122808
|
color: "var(--picker-suffix-icon-color)"
|
|
122810
122809
|
}
|
|
122811
122810
|
),
|
|
122812
|
-
suffixIcon: a ?? /* @__PURE__ */ A(
|
|
122811
|
+
suffixIcon: a ?? /* @__PURE__ */ A(Yue, { size: 18, color: "var(--picker-suffix-icon-color)" }),
|
|
122813
122812
|
allowClear: t === !0 ? {
|
|
122814
122813
|
clearIcon: /* @__PURE__ */ A(
|
|
122815
122814
|
V6,
|
|
@@ -122845,7 +122844,7 @@ const Dst = (e) => {
|
|
|
122845
122844
|
ref: i,
|
|
122846
122845
|
className: Dst(e),
|
|
122847
122846
|
popupClassName: Ast(e),
|
|
122848
|
-
suffixIcon: n ?? /* @__PURE__ */ A(
|
|
122847
|
+
suffixIcon: n ?? /* @__PURE__ */ A(HUe, { size: 18 }),
|
|
122849
122848
|
getPopupContainer: r ?? o === "relative" ? (a) => a.parentNode : void 0,
|
|
122850
122849
|
allowClear: t === !0 ? { clearIcon: /* @__PURE__ */ A(V6, { size: 16 }) } : !1
|
|
122851
122850
|
}
|
|
@@ -122867,10 +122866,10 @@ const Hst = (e) => {
|
|
|
122867
122866
|
className: `beca-upload-item${n.error ? " beca-upload-file-error" : ""}`,
|
|
122868
122867
|
children: [
|
|
122869
122868
|
/* @__PURE__ */ mn("div", { className: "upload-file-info", children: [
|
|
122870
|
-
/* @__PURE__ */ A("div", { className: "upload-file-icon", children: /* @__PURE__ */ A(
|
|
122869
|
+
/* @__PURE__ */ A("div", { className: "upload-file-icon", children: /* @__PURE__ */ A(bKe, {}) }),
|
|
122871
122870
|
/* @__PURE__ */ A("div", { className: "upload-file-name", children: n.name })
|
|
122872
122871
|
] }),
|
|
122873
|
-
/* @__PURE__ */ A("div", { className: "upload-file-actions", children: /* @__PURE__ */ A(
|
|
122872
|
+
/* @__PURE__ */ A("div", { className: "upload-file-actions", children: /* @__PURE__ */ A(pde, { className: "remove-icon", onClick: o.remove }) })
|
|
122874
122873
|
]
|
|
122875
122874
|
}
|
|
122876
122875
|
)
|
|
@@ -122902,7 +122901,7 @@ const Vst = (e) => {
|
|
|
122902
122901
|
{
|
|
122903
122902
|
...e,
|
|
122904
122903
|
className: Vst(e),
|
|
122905
|
-
expandIcon: e.expandIcon ? e.expandIcon : (t) => t.isActive ? /* @__PURE__ */ A(C2, {}) : /* @__PURE__ */ A(
|
|
122904
|
+
expandIcon: e.expandIcon ? e.expandIcon : (t) => t.isActive ? /* @__PURE__ */ A(C2, {}) : /* @__PURE__ */ A(que, {})
|
|
122906
122905
|
}
|
|
122907
122906
|
), Kst = (e) => oA.Panel({ ...e, className: Wst(e) });
|
|
122908
122907
|
Ust.Panel = Kst;
|
|
@@ -123728,7 +123727,7 @@ const yct = (e) => {
|
|
|
123728
123727
|
},
|
|
123729
123728
|
children: [
|
|
123730
123729
|
k === 0 || T === !0 ? /* @__PURE__ */ A(
|
|
123731
|
-
|
|
123730
|
+
hde,
|
|
123732
123731
|
{
|
|
123733
123732
|
onClick: () => W("unmute")
|
|
123734
123733
|
}
|
|
@@ -123885,7 +123884,7 @@ const yct = (e) => {
|
|
|
123885
123884
|
return /* @__PURE__ */ mn("div", { className: K(e, V), children: [
|
|
123886
123885
|
d && /* @__PURE__ */ A("div", { className: "beca-player__loading", children: /* @__PURE__ */ A(nH, { size: "large" }) }),
|
|
123887
123886
|
l ? /* @__PURE__ */ mn("div", { className: "player-error", children: [
|
|
123888
|
-
/* @__PURE__ */ A(
|
|
123887
|
+
/* @__PURE__ */ A(Kz, {}),
|
|
123889
123888
|
" ",
|
|
123890
123889
|
l
|
|
123891
123890
|
] }) : /* @__PURE__ */ A(Ic, { children: J ? /* @__PURE__ */ A(
|
|
@@ -123963,7 +123962,7 @@ const yct = (e) => {
|
|
|
123963
123962
|
onClick: (te) => {
|
|
123964
123963
|
te.preventDefault(), te.stopPropagation(), X("pause"), ne();
|
|
123965
123964
|
},
|
|
123966
|
-
children: /* @__PURE__ */ A(
|
|
123965
|
+
children: /* @__PURE__ */ A(wKe, {})
|
|
123967
123966
|
}
|
|
123968
123967
|
) : /* @__PURE__ */ A(
|
|
123969
123968
|
"div",
|
|
@@ -123971,7 +123970,7 @@ const yct = (e) => {
|
|
|
123971
123970
|
onClick: (te) => {
|
|
123972
123971
|
te.preventDefault(), te.stopPropagation(), X("play"), ne();
|
|
123973
123972
|
},
|
|
123974
|
-
children: /* @__PURE__ */ A(
|
|
123973
|
+
children: /* @__PURE__ */ A(EKe, {})
|
|
123975
123974
|
}
|
|
123976
123975
|
) }) }),
|
|
123977
123976
|
/* @__PURE__ */ A("div", { className: "time-controls", children: /* @__PURE__ */ mn("p", { className: "controls-time", children: [
|
|
@@ -123986,7 +123985,7 @@ const yct = (e) => {
|
|
|
123986
123985
|
onClick: (te) => {
|
|
123987
123986
|
te.preventDefault(), te.stopPropagation(), Z();
|
|
123988
123987
|
},
|
|
123989
|
-
children: /* @__PURE__ */ A(
|
|
123988
|
+
children: /* @__PURE__ */ A(oKe, { title: "Fullscreen" })
|
|
123990
123989
|
}
|
|
123991
123990
|
),
|
|
123992
123991
|
/* @__PURE__ */ mn(
|
|
@@ -124006,7 +124005,7 @@ const yct = (e) => {
|
|
|
124006
124005
|
onClick: (te) => {
|
|
124007
124006
|
te.preventDefault(), te.stopPropagation(), q("unmute");
|
|
124008
124007
|
},
|
|
124009
|
-
children: /* @__PURE__ */ A(
|
|
124008
|
+
children: /* @__PURE__ */ A(hde, {})
|
|
124010
124009
|
}
|
|
124011
124010
|
) : /* @__PURE__ */ A(
|
|
124012
124011
|
"span",
|
|
@@ -134667,11 +134666,12 @@ export {
|
|
|
134667
134666
|
DSt as Anchor,
|
|
134668
134667
|
ooe as App,
|
|
134669
134668
|
K6 as AppContext,
|
|
134669
|
+
xXe as ApplicationsCard,
|
|
134670
134670
|
ySt as AudioPlayer,
|
|
134671
134671
|
ux as AutoComplete,
|
|
134672
134672
|
Nst as Avatar,
|
|
134673
134673
|
Y8t as BVP_FONT,
|
|
134674
|
-
|
|
134674
|
+
Gz as Badge,
|
|
134675
134675
|
ESt as BlockPicker,
|
|
134676
134676
|
JXe as BodyCard,
|
|
134677
134677
|
oct as Breadcrumb,
|
|
@@ -134688,7 +134688,7 @@ export {
|
|
|
134688
134688
|
nct as ConfigProvider,
|
|
134689
134689
|
nSt as Content,
|
|
134690
134690
|
Qz as DEFAULT_MAIN_LAYOUT_CONFIG,
|
|
134691
|
-
|
|
134691
|
+
wXe as DEFAULT_USER_CONFIG,
|
|
134692
134692
|
If as DataService,
|
|
134693
134693
|
kst as DatePicker,
|
|
134694
134694
|
pct as Descriptions,
|
|
@@ -134703,7 +134703,7 @@ export {
|
|
|
134703
134703
|
bu as Form,
|
|
134704
134704
|
TSt as GithubPicker,
|
|
134705
134705
|
MSt as HuePicker,
|
|
134706
|
-
|
|
134706
|
+
MGe as INTER_FONT,
|
|
134707
134707
|
$he as Image,
|
|
134708
134708
|
wSt as ImgCrop,
|
|
134709
134709
|
np as Input,
|
|
@@ -134716,7 +134716,7 @@ export {
|
|
|
134716
134716
|
L6 as Mentions,
|
|
134717
134717
|
cl as Menu,
|
|
134718
134718
|
V2 as Modal,
|
|
134719
|
-
|
|
134719
|
+
mqe as NotificationService,
|
|
134720
134720
|
rSt as Pagination,
|
|
134721
134721
|
jst as Paragraph,
|
|
134722
134722
|
_St as PhotoshopPicker,
|
|
@@ -134768,9 +134768,9 @@ export {
|
|
|
134768
134768
|
Dde as paginationItemRender,
|
|
134769
134769
|
A9 as themeConfig,
|
|
134770
134770
|
lO as useBecaDevice,
|
|
134771
|
-
|
|
134772
|
-
|
|
134771
|
+
LGe as useConfig,
|
|
134772
|
+
qz as useDebouncedValue,
|
|
134773
134773
|
X8t as useLocale,
|
|
134774
|
-
|
|
134774
|
+
yde as useTrans,
|
|
134775
134775
|
aO as useTranslation
|
|
134776
134776
|
};
|