@richard.fadiora/liveness-detection 4.2.11 → 4.2.12
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/index.cjs.js +5 -5
- package/dist/index.d.ts +0 -3
- package/dist/index.es.js +437 -455
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var a = (n, e, t) =>
|
|
4
|
-
import { FilesetResolver as
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
var vr = Object.defineProperty;
|
|
2
|
+
var br = (n, e, t) => e in n ? vr(n, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[e] = t;
|
|
3
|
+
var a = (n, e, t) => br(n, typeof e != "symbol" ? e + "" : e, t);
|
|
4
|
+
import { FilesetResolver as Ar, FaceLandmarker as _r, HandLandmarker as wr } from "@mediapipe/tasks-vision";
|
|
5
|
+
import Sr, { useState as Tr, useRef as _n, useEffect as wn, useCallback as Sn } from "react";
|
|
6
|
+
import Ir from "react-webcam";
|
|
7
7
|
import * as s from "@angular/core";
|
|
8
|
-
import { Injectable as $, inject as Z, DOCUMENT as
|
|
9
|
-
const
|
|
8
|
+
import { Injectable as $, inject as Z, DOCUMENT as Wn, InjectionToken as Vt, Optional as $e, Inject as Y, ɵɵinject as Or, ɵstringify as un, createNgModule as Br, ɵRuntimeError as R, Injector as Rr, RendererStyleFlags2 as kr, ɵINTERNAL_APPLICATION_ERROR_HANDLER as Mr, ɵisPromise as Vr, ɵisSubscribable as xr, LOCALE_ID as j, DEFAULT_CURRENCY_CODE as Xn, NgModuleRef as Pr, untracked as Tn, isSignal as Lr, ɵfindLocaleData as M, ɵLocaleDataIndex as b, ɵformatRuntimeError as jr, ɵgetLocalePluralCase as Nr, Input as m, Directive as G, Host as cn, Attribute as Ur, Pipe as V, NgModule as $r, ViewChild as Gr, Output as Jn, Component as Hr, EventEmitter as In } from "@angular/core";
|
|
9
|
+
const Yr = async (n, e, t) => {
|
|
10
10
|
const r = new FormData();
|
|
11
11
|
e.forEach((u, c) => {
|
|
12
12
|
r.append("files", u, `frame_${c}.jpg`);
|
|
@@ -18,11 +18,11 @@ const zr = async (n, e, t) => {
|
|
|
18
18
|
if (!i.ok)
|
|
19
19
|
throw new Error("Network response was not ok");
|
|
20
20
|
return await i.json();
|
|
21
|
-
},
|
|
21
|
+
}, zr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22
22
|
__proto__: null,
|
|
23
|
-
verifyLiveness:
|
|
23
|
+
verifyLiveness: Yr
|
|
24
24
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
25
|
-
class
|
|
25
|
+
class Qn {
|
|
26
26
|
constructor(e) {
|
|
27
27
|
this.models = { face: null, hand: null }, this.webcam = null, this.currentStepRef = 0, this.isStepTransitioningRef = !1, this.timerId = null, this.requestId = null, this.offscreenCanvas = document.createElement("canvas"), this.CHALLENGE_POOL = ["Smile", "Blink", "Turn_Head", "Thumbs_Up"], this.attachVideo = (t) => {
|
|
28
28
|
this.webcam = t, console.log("[LivenessEngine] Video stream attached.");
|
|
@@ -84,17 +84,17 @@ class tr {
|
|
|
84
84
|
async loadModels() {
|
|
85
85
|
console.log("[LivenessEngine] Loading AI Models...");
|
|
86
86
|
try {
|
|
87
|
-
const e = await
|
|
87
|
+
const e = await Ar.forVisionTasks(
|
|
88
88
|
"https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision@0.10.3/wasm"
|
|
89
89
|
);
|
|
90
|
-
this.models.face = await
|
|
90
|
+
this.models.face = await _r.createFromOptions(e, {
|
|
91
91
|
baseOptions: {
|
|
92
92
|
modelAssetPath: "https://storage.googleapis.com/mediapipe-models/face_landmarker/face_landmarker/float16/1/face_landmarker.task",
|
|
93
93
|
delegate: "GPU"
|
|
94
94
|
},
|
|
95
95
|
outputFaceBlendshapes: !0,
|
|
96
96
|
runningMode: "VIDEO"
|
|
97
|
-
}), this.models.hand = await
|
|
97
|
+
}), this.models.hand = await wr.createFromOptions(e, {
|
|
98
98
|
baseOptions: {
|
|
99
99
|
modelAssetPath: "https://storage.googleapis.com/mediapipe-models/hand_landmarker/hand_landmarker/float16/1/hand_landmarker.task",
|
|
100
100
|
delegate: "GPU"
|
|
@@ -164,7 +164,7 @@ class tr {
|
|
|
164
164
|
}
|
|
165
165
|
await new Promise((D) => setTimeout(D, 100));
|
|
166
166
|
}
|
|
167
|
-
const { verifyLiveness: o } = await Promise.resolve().then(() =>
|
|
167
|
+
const { verifyLiveness: o } = await Promise.resolve().then(() => zr), u = await o(this.config.apiUrl, r, this.state.sequence);
|
|
168
168
|
if (u.is_live)
|
|
169
169
|
this.updateState({ status: "success" }), this.config.onComplete({ success: !0, image: i, skinConfidence: u.skin_confidence });
|
|
170
170
|
else {
|
|
@@ -190,22 +190,22 @@ class tr {
|
|
|
190
190
|
), this.offscreenCanvas;
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
|
-
const
|
|
194
|
-
const [e, t] =
|
|
193
|
+
const Zr = (n) => {
|
|
194
|
+
const [e, t] = Tr({
|
|
195
195
|
status: "loading",
|
|
196
196
|
sequence: [],
|
|
197
197
|
currentStep: 0,
|
|
198
198
|
timeLeft: n.duration || 60,
|
|
199
199
|
isStepTransitioning: !1,
|
|
200
200
|
errorMsg: ""
|
|
201
|
-
}), r =
|
|
202
|
-
|
|
203
|
-
const c = new
|
|
201
|
+
}), r = _n(null), i = _n(null);
|
|
202
|
+
wn(() => {
|
|
203
|
+
const c = new Qn({
|
|
204
204
|
...n,
|
|
205
205
|
onStateChange: (d) => t({ ...d })
|
|
206
206
|
});
|
|
207
207
|
return r.current = c, c.loadModels(), () => c.stop();
|
|
208
|
-
}, []),
|
|
208
|
+
}, []), wn(() => {
|
|
209
209
|
var c, d;
|
|
210
210
|
if (e.status !== "loading" && e.status !== "error") {
|
|
211
211
|
const D = (c = i.current) == null ? void 0 : c.video;
|
|
@@ -221,10 +221,10 @@ const Kr = (n) => {
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
}, [e.status]);
|
|
224
|
-
const o =
|
|
224
|
+
const o = Sn(() => {
|
|
225
225
|
var c;
|
|
226
226
|
console.log("[Hook] Start Clicked"), (c = r.current) == null || c.start();
|
|
227
|
-
}, []), u =
|
|
227
|
+
}, []), u = Sn(() => {
|
|
228
228
|
var c;
|
|
229
229
|
console.log("[Hook] Reset Clicked"), (c = r.current) == null || c.reset();
|
|
230
230
|
}, []);
|
|
@@ -245,10 +245,10 @@ var Xt = { exports: {} }, pt = {};
|
|
|
245
245
|
* This source code is licensed under the MIT license found in the
|
|
246
246
|
* LICENSE file in the root directory of this source tree.
|
|
247
247
|
*/
|
|
248
|
-
var
|
|
249
|
-
function
|
|
250
|
-
if (
|
|
251
|
-
|
|
248
|
+
var On;
|
|
249
|
+
function Kr() {
|
|
250
|
+
if (On) return pt;
|
|
251
|
+
On = 1;
|
|
252
252
|
var n = Symbol.for("react.transitional.element"), e = Symbol.for("react.fragment");
|
|
253
253
|
function t(r, i, o) {
|
|
254
254
|
var u = null;
|
|
@@ -277,13 +277,13 @@ var Dt = {};
|
|
|
277
277
|
* This source code is licensed under the MIT license found in the
|
|
278
278
|
* LICENSE file in the root directory of this source tree.
|
|
279
279
|
*/
|
|
280
|
-
var
|
|
281
|
-
function
|
|
282
|
-
return
|
|
280
|
+
var Bn;
|
|
281
|
+
function qr() {
|
|
282
|
+
return Bn || (Bn = 1, process.env.NODE_ENV !== "production" && function() {
|
|
283
283
|
function n(l) {
|
|
284
284
|
if (l == null) return null;
|
|
285
285
|
if (typeof l == "function")
|
|
286
|
-
return l.$$typeof ===
|
|
286
|
+
return l.$$typeof === Cr ? null : l.displayName || l.name || null;
|
|
287
287
|
if (typeof l == "string") return l;
|
|
288
288
|
switch (l) {
|
|
289
289
|
case N:
|
|
@@ -292,11 +292,11 @@ function Wr() {
|
|
|
292
292
|
return "Profiler";
|
|
293
293
|
case Ce:
|
|
294
294
|
return "StrictMode";
|
|
295
|
-
case
|
|
295
|
+
case hr:
|
|
296
296
|
return "Suspense";
|
|
297
|
-
case
|
|
297
|
+
case gr:
|
|
298
298
|
return "SuspenseList";
|
|
299
|
-
case
|
|
299
|
+
case yr:
|
|
300
300
|
return "Activity";
|
|
301
301
|
}
|
|
302
302
|
if (typeof l == "object")
|
|
@@ -307,12 +307,12 @@ function Wr() {
|
|
|
307
307
|
return "Portal";
|
|
308
308
|
case dt:
|
|
309
309
|
return l.displayName || "Context";
|
|
310
|
-
case
|
|
310
|
+
case Ct:
|
|
311
311
|
return (l._context.displayName || "Context") + ".Consumer";
|
|
312
|
-
case
|
|
312
|
+
case Ft:
|
|
313
313
|
var g = l.render;
|
|
314
314
|
return l = l.displayName, l || (l = g.displayName || g.name || "", l = l !== "" ? "ForwardRef(" + l + ")" : "ForwardRef"), l;
|
|
315
|
-
case
|
|
315
|
+
case mr:
|
|
316
316
|
return g = l.displayName || null, g !== null ? g : n(l.type) || "Memo";
|
|
317
317
|
case Lt:
|
|
318
318
|
g = l._payload, l = l._init;
|
|
@@ -335,8 +335,8 @@ function Wr() {
|
|
|
335
335
|
}
|
|
336
336
|
if (g) {
|
|
337
337
|
g = console;
|
|
338
|
-
var
|
|
339
|
-
return
|
|
338
|
+
var E = g.error, I = typeof Symbol == "function" && Symbol.toStringTag && l[Symbol.toStringTag] || l.constructor.name || "Object";
|
|
339
|
+
return E.call(
|
|
340
340
|
g,
|
|
341
341
|
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
342
342
|
I
|
|
@@ -362,37 +362,37 @@ function Wr() {
|
|
|
362
362
|
return Error("react-stack-top-frame");
|
|
363
363
|
}
|
|
364
364
|
function u(l) {
|
|
365
|
-
if (
|
|
365
|
+
if (Cn.call(l, "key")) {
|
|
366
366
|
var g = Object.getOwnPropertyDescriptor(l, "key").get;
|
|
367
367
|
if (g && g.isReactWarning) return !1;
|
|
368
368
|
}
|
|
369
369
|
return l.key !== void 0;
|
|
370
370
|
}
|
|
371
371
|
function c(l, g) {
|
|
372
|
-
function
|
|
373
|
-
|
|
372
|
+
function E() {
|
|
373
|
+
Fn || (Fn = !0, console.error(
|
|
374
374
|
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
375
375
|
g
|
|
376
376
|
));
|
|
377
377
|
}
|
|
378
|
-
|
|
379
|
-
get:
|
|
378
|
+
E.isReactWarning = !0, Object.defineProperty(l, "key", {
|
|
379
|
+
get: E,
|
|
380
380
|
configurable: !0
|
|
381
381
|
});
|
|
382
382
|
}
|
|
383
383
|
function d() {
|
|
384
384
|
var l = n(this.type);
|
|
385
|
-
return
|
|
385
|
+
return En[l] || (En[l] = !0, console.error(
|
|
386
386
|
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
387
387
|
)), l = this.props.ref, l !== void 0 ? l : null;
|
|
388
388
|
}
|
|
389
|
-
function D(l, g,
|
|
390
|
-
var O =
|
|
389
|
+
function D(l, g, E, I, Et, Ut) {
|
|
390
|
+
var O = E.ref;
|
|
391
391
|
return l = {
|
|
392
392
|
$$typeof: _,
|
|
393
393
|
type: l,
|
|
394
394
|
key: g,
|
|
395
|
-
props:
|
|
395
|
+
props: E,
|
|
396
396
|
_owner: I
|
|
397
397
|
}, (O !== void 0 ? O : null) !== null ? Object.defineProperty(l, "ref", {
|
|
398
398
|
enumerable: !1,
|
|
@@ -411,7 +411,7 @@ function Wr() {
|
|
|
411
411
|
configurable: !1,
|
|
412
412
|
enumerable: !1,
|
|
413
413
|
writable: !0,
|
|
414
|
-
value:
|
|
414
|
+
value: Et
|
|
415
415
|
}), Object.defineProperty(l, "_debugTask", {
|
|
416
416
|
configurable: !1,
|
|
417
417
|
enumerable: !1,
|
|
@@ -419,11 +419,11 @@ function Wr() {
|
|
|
419
419
|
value: Ut
|
|
420
420
|
}), Object.freeze && (Object.freeze(l.props), Object.freeze(l)), l;
|
|
421
421
|
}
|
|
422
|
-
function f(l, g,
|
|
422
|
+
function f(l, g, E, I, Et, Ut) {
|
|
423
423
|
var O = g.children;
|
|
424
424
|
if (O !== void 0)
|
|
425
425
|
if (I)
|
|
426
|
-
if (
|
|
426
|
+
if (Fr(O)) {
|
|
427
427
|
for (I = 0; I < O.length; I++)
|
|
428
428
|
p(O[I]);
|
|
429
429
|
Object.freeze && Object.freeze(O);
|
|
@@ -432,12 +432,12 @@ function Wr() {
|
|
|
432
432
|
"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
|
|
433
433
|
);
|
|
434
434
|
else p(O);
|
|
435
|
-
if (
|
|
435
|
+
if (Cn.call(g, "key")) {
|
|
436
436
|
O = n(l);
|
|
437
|
-
var Fe = Object.keys(g).filter(function(
|
|
438
|
-
return
|
|
437
|
+
var Fe = Object.keys(g).filter(function(Er) {
|
|
438
|
+
return Er !== "key";
|
|
439
439
|
});
|
|
440
|
-
I = 0 < Fe.length ? "{key: someKey, " + Fe.join(": ..., ") + ": ...}" : "{key: someKey}",
|
|
440
|
+
I = 0 < Fe.length ? "{key: someKey, " + Fe.join(": ..., ") + ": ...}" : "{key: someKey}", An[O + I] || (Fe = 0 < Fe.length ? "{" + Fe.join(": ..., ") + ": ...}" : "{}", console.error(
|
|
441
441
|
`A props object containing a "key" prop is being spread into JSX:
|
|
442
442
|
let props = %s;
|
|
443
443
|
<%s {...props} />
|
|
@@ -448,22 +448,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
448
448
|
O,
|
|
449
449
|
Fe,
|
|
450
450
|
O
|
|
451
|
-
),
|
|
451
|
+
), An[O + I] = !0);
|
|
452
452
|
}
|
|
453
|
-
if (O = null,
|
|
454
|
-
|
|
453
|
+
if (O = null, E !== void 0 && (t(E), O = "" + E), u(g) && (t(g.key), O = "" + g.key), "key" in g) {
|
|
454
|
+
E = {};
|
|
455
455
|
for (var $t in g)
|
|
456
|
-
$t !== "key" && (
|
|
457
|
-
} else
|
|
456
|
+
$t !== "key" && (E[$t] = g[$t]);
|
|
457
|
+
} else E = g;
|
|
458
458
|
return O && c(
|
|
459
|
-
|
|
459
|
+
E,
|
|
460
460
|
typeof l == "function" ? l.displayName || l.name || "Unknown" : l
|
|
461
461
|
), D(
|
|
462
462
|
l,
|
|
463
463
|
O,
|
|
464
|
-
|
|
464
|
+
E,
|
|
465
465
|
i(),
|
|
466
|
-
|
|
466
|
+
Et,
|
|
467
467
|
Ut
|
|
468
468
|
);
|
|
469
469
|
}
|
|
@@ -473,7 +473,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
473
473
|
function y(l) {
|
|
474
474
|
return typeof l == "object" && l !== null && l.$$typeof === _;
|
|
475
475
|
}
|
|
476
|
-
var h =
|
|
476
|
+
var h = Sr, _ = Symbol.for("react.transitional.element"), T = Symbol.for("react.portal"), N = Symbol.for("react.fragment"), Ce = Symbol.for("react.strict_mode"), J = Symbol.for("react.profiler"), Ct = Symbol.for("react.consumer"), dt = Symbol.for("react.context"), Ft = Symbol.for("react.forward_ref"), hr = Symbol.for("react.suspense"), gr = Symbol.for("react.suspense_list"), mr = Symbol.for("react.memo"), Lt = Symbol.for("react.lazy"), yr = Symbol.for("react.activity"), Cr = Symbol.for("react.client.reference"), jt = h.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, Cn = Object.prototype.hasOwnProperty, Fr = Array.isArray, Nt = console.createTask ? console.createTask : function() {
|
|
477
477
|
return null;
|
|
478
478
|
};
|
|
479
479
|
h = {
|
|
@@ -481,36 +481,36 @@ React keys must be passed directly to JSX without using spread:
|
|
|
481
481
|
return l();
|
|
482
482
|
}
|
|
483
483
|
};
|
|
484
|
-
var
|
|
484
|
+
var Fn, En = {}, vn = h.react_stack_bottom_frame.bind(
|
|
485
485
|
h,
|
|
486
486
|
o
|
|
487
|
-
)(),
|
|
488
|
-
Dt.Fragment = N, Dt.jsx = function(l, g,
|
|
487
|
+
)(), bn = Nt(r(o)), An = {};
|
|
488
|
+
Dt.Fragment = N, Dt.jsx = function(l, g, E) {
|
|
489
489
|
var I = 1e4 > jt.recentlyCreatedOwnerStacks++;
|
|
490
490
|
return f(
|
|
491
491
|
l,
|
|
492
492
|
g,
|
|
493
|
-
|
|
493
|
+
E,
|
|
494
494
|
!1,
|
|
495
|
-
I ? Error("react-stack-top-frame") :
|
|
496
|
-
I ? Nt(r(l)) :
|
|
495
|
+
I ? Error("react-stack-top-frame") : vn,
|
|
496
|
+
I ? Nt(r(l)) : bn
|
|
497
497
|
);
|
|
498
|
-
}, Dt.jsxs = function(l, g,
|
|
498
|
+
}, Dt.jsxs = function(l, g, E) {
|
|
499
499
|
var I = 1e4 > jt.recentlyCreatedOwnerStacks++;
|
|
500
500
|
return f(
|
|
501
501
|
l,
|
|
502
502
|
g,
|
|
503
|
-
|
|
503
|
+
E,
|
|
504
504
|
!0,
|
|
505
|
-
I ? Error("react-stack-top-frame") :
|
|
506
|
-
I ? Nt(r(l)) :
|
|
505
|
+
I ? Error("react-stack-top-frame") : vn,
|
|
506
|
+
I ? Nt(r(l)) : bn
|
|
507
507
|
);
|
|
508
508
|
};
|
|
509
509
|
}()), Dt;
|
|
510
510
|
}
|
|
511
|
-
process.env.NODE_ENV === "production" ? Xt.exports =
|
|
512
|
-
var
|
|
513
|
-
const
|
|
511
|
+
process.env.NODE_ENV === "production" ? Xt.exports = Kr() : Xt.exports = qr();
|
|
512
|
+
var x = Xt.exports;
|
|
513
|
+
const hi = ({
|
|
514
514
|
apiUrl: n,
|
|
515
515
|
duration: e,
|
|
516
516
|
onComplete: t,
|
|
@@ -523,12 +523,12 @@ const yi = ({
|
|
|
523
523
|
maxturnHeadThreshold: D
|
|
524
524
|
}) => {
|
|
525
525
|
var p;
|
|
526
|
-
const f =
|
|
527
|
-
return o ? o(f) : /* @__PURE__ */
|
|
528
|
-
f.status === "loading" && /* @__PURE__ */
|
|
529
|
-
["ready", "capturing", "verifying"].includes(f.status) && /* @__PURE__ */
|
|
530
|
-
/* @__PURE__ */
|
|
531
|
-
|
|
526
|
+
const f = Zr({ apiUrl: n, duration: e, smileThreshold: u, blinkThreshold: c, minturnHeadThreshold: d, maxturnHeadThreshold: D, onComplete: t, onError: r });
|
|
527
|
+
return o ? o(f) : /* @__PURE__ */ x.jsxs("div", { className: i.container, children: [
|
|
528
|
+
f.status === "loading" && /* @__PURE__ */ x.jsx("div", { children: "Initializing..." }),
|
|
529
|
+
["ready", "capturing", "verifying"].includes(f.status) && /* @__PURE__ */ x.jsxs(x.Fragment, { children: [
|
|
530
|
+
/* @__PURE__ */ x.jsx(
|
|
531
|
+
Ir,
|
|
532
532
|
{
|
|
533
533
|
ref: f.webcamRef,
|
|
534
534
|
mirrored: !0,
|
|
@@ -536,19 +536,19 @@ const yi = ({
|
|
|
536
536
|
className: i.webcam
|
|
537
537
|
}
|
|
538
538
|
),
|
|
539
|
-
f.status === "capturing" && /* @__PURE__ */
|
|
540
|
-
["capturing", "ready"].includes(f.status) && /* @__PURE__ */
|
|
539
|
+
f.status === "capturing" && /* @__PURE__ */ x.jsx("div", { className: "liveness-challenge", children: f.isStepTransitioning ? "Step verified! Get ready for the next..." : `Do this: ${(p = f.sequence[f.currentStep]) == null ? void 0 : p.replace("_", " ")}` }),
|
|
540
|
+
["capturing", "ready"].includes(f.status) && /* @__PURE__ */ x.jsxs("div", { className: i.timer, children: [
|
|
541
541
|
f.timeLeft,
|
|
542
542
|
"s"
|
|
543
543
|
] }),
|
|
544
|
-
f.status === "ready" && /* @__PURE__ */
|
|
545
|
-
f.status === "verifying" && /* @__PURE__ */
|
|
544
|
+
f.status === "ready" && /* @__PURE__ */ x.jsx("button", { onClick: f.start, className: i.button, children: "Start Challenge" }),
|
|
545
|
+
f.status === "verifying" && /* @__PURE__ */ x.jsx("div", { children: "Analyzing..." })
|
|
546
546
|
] }),
|
|
547
|
-
f.status === "error" && /* @__PURE__ */
|
|
547
|
+
f.status === "error" && /* @__PURE__ */ x.jsxs("div", { className: i.error, children: [
|
|
548
548
|
f.errorMsg,
|
|
549
|
-
/* @__PURE__ */
|
|
549
|
+
/* @__PURE__ */ x.jsx("button", { onClick: f.reset, className: i.button, children: "Retry" })
|
|
550
550
|
] }),
|
|
551
|
-
f.status === "success" && /* @__PURE__ */
|
|
551
|
+
f.status === "success" && /* @__PURE__ */ x.jsx("div", { className: i.success, children: "Verification Complete" })
|
|
552
552
|
] });
|
|
553
553
|
};
|
|
554
554
|
var Jt = function(n, e) {
|
|
@@ -558,7 +558,7 @@ var Jt = function(n, e) {
|
|
|
558
558
|
for (var i in r) Object.prototype.hasOwnProperty.call(r, i) && (t[i] = r[i]);
|
|
559
559
|
}, Jt(n, e);
|
|
560
560
|
};
|
|
561
|
-
function
|
|
561
|
+
function yt(n, e) {
|
|
562
562
|
if (typeof e != "function" && e !== null)
|
|
563
563
|
throw new TypeError("Class extends value " + String(e) + " is not a constructor or null");
|
|
564
564
|
Jt(n, e);
|
|
@@ -602,13 +602,13 @@ function tn(n, e, t) {
|
|
|
602
602
|
function W(n) {
|
|
603
603
|
return typeof n == "function";
|
|
604
604
|
}
|
|
605
|
-
function
|
|
605
|
+
function er(n) {
|
|
606
606
|
var e = function(r) {
|
|
607
607
|
Error.call(r), r.stack = new Error().stack;
|
|
608
608
|
}, t = n(e);
|
|
609
609
|
return t.prototype = Object.create(Error.prototype), t.prototype.constructor = t, t;
|
|
610
610
|
}
|
|
611
|
-
var Gt =
|
|
611
|
+
var Gt = er(function(n) {
|
|
612
612
|
return function(t) {
|
|
613
613
|
n(this), this.message = t ? t.length + ` errors occurred during unsubscription:
|
|
614
614
|
` + t.map(function(r, i) {
|
|
@@ -623,7 +623,7 @@ function nn(n, e) {
|
|
|
623
623
|
0 <= t && n.splice(t, 1);
|
|
624
624
|
}
|
|
625
625
|
}
|
|
626
|
-
var
|
|
626
|
+
var xt = function() {
|
|
627
627
|
function n(e) {
|
|
628
628
|
this.initialTeardown = e, this.closed = !1, this._parentage = null, this._finalizers = null;
|
|
629
629
|
}
|
|
@@ -664,7 +664,7 @@ var Vt = function() {
|
|
|
664
664
|
for (var y = Qt(p), h = y.next(); !h.done; h = y.next()) {
|
|
665
665
|
var _ = h.value;
|
|
666
666
|
try {
|
|
667
|
-
|
|
667
|
+
Rn(_);
|
|
668
668
|
} catch (T) {
|
|
669
669
|
o = o ?? [], T instanceof Gt ? o = tn(tn([], en(o)), en(T.errors)) : o.push(T);
|
|
670
670
|
}
|
|
@@ -686,7 +686,7 @@ var Vt = function() {
|
|
|
686
686
|
var t;
|
|
687
687
|
if (e && e !== this)
|
|
688
688
|
if (this.closed)
|
|
689
|
-
|
|
689
|
+
Rn(e);
|
|
690
690
|
else {
|
|
691
691
|
if (e instanceof n) {
|
|
692
692
|
if (e.closed || e._hasParent(this))
|
|
@@ -711,16 +711,16 @@ var Vt = function() {
|
|
|
711
711
|
var e = new n();
|
|
712
712
|
return e.closed = !0, e;
|
|
713
713
|
}(), n;
|
|
714
|
-
}(),
|
|
715
|
-
function
|
|
716
|
-
return n instanceof
|
|
714
|
+
}(), tr = xt.EMPTY;
|
|
715
|
+
function nr(n) {
|
|
716
|
+
return n instanceof xt || n && "closed" in n && W(n.remove) && W(n.add) && W(n.unsubscribe);
|
|
717
717
|
}
|
|
718
|
-
function
|
|
718
|
+
function Rn(n) {
|
|
719
719
|
W(n) ? n() : n.unsubscribe();
|
|
720
720
|
}
|
|
721
|
-
var
|
|
721
|
+
var Wr = {
|
|
722
722
|
Promise: void 0
|
|
723
|
-
},
|
|
723
|
+
}, Xr = {
|
|
724
724
|
setTimeout: function(n, e) {
|
|
725
725
|
for (var t = [], r = 2; r < arguments.length; r++)
|
|
726
726
|
t[r - 2] = arguments[r];
|
|
@@ -731,21 +731,21 @@ var Xr = {
|
|
|
731
731
|
},
|
|
732
732
|
delegate: void 0
|
|
733
733
|
};
|
|
734
|
-
function
|
|
735
|
-
|
|
734
|
+
function Jr(n) {
|
|
735
|
+
Xr.setTimeout(function() {
|
|
736
736
|
throw n;
|
|
737
737
|
});
|
|
738
738
|
}
|
|
739
|
-
function
|
|
739
|
+
function kn() {
|
|
740
740
|
}
|
|
741
|
-
function
|
|
741
|
+
function It(n) {
|
|
742
742
|
n();
|
|
743
743
|
}
|
|
744
|
-
var
|
|
745
|
-
|
|
744
|
+
var rr = function(n) {
|
|
745
|
+
yt(e, n);
|
|
746
746
|
function e(t) {
|
|
747
747
|
var r = n.call(this) || this;
|
|
748
|
-
return r.isStopped = !1, t ? (r.destination = t,
|
|
748
|
+
return r.isStopped = !1, t ? (r.destination = t, nr(t) && t.add(r)) : r.destination = ts, r;
|
|
749
749
|
}
|
|
750
750
|
return e.create = function(t, r, i) {
|
|
751
751
|
return new rn(t, r, i);
|
|
@@ -772,7 +772,7 @@ var ir = function(n) {
|
|
|
772
772
|
this.unsubscribe();
|
|
773
773
|
}
|
|
774
774
|
}, e;
|
|
775
|
-
}(
|
|
775
|
+
}(xt), Qr = function() {
|
|
776
776
|
function n(e) {
|
|
777
777
|
this.partialObserver = e;
|
|
778
778
|
}
|
|
@@ -782,7 +782,7 @@ var ir = function(n) {
|
|
|
782
782
|
try {
|
|
783
783
|
t.next(e);
|
|
784
784
|
} catch (r) {
|
|
785
|
-
|
|
785
|
+
vt(r);
|
|
786
786
|
}
|
|
787
787
|
}, n.prototype.error = function(e) {
|
|
788
788
|
var t = this.partialObserver;
|
|
@@ -790,56 +790,56 @@ var ir = function(n) {
|
|
|
790
790
|
try {
|
|
791
791
|
t.error(e);
|
|
792
792
|
} catch (r) {
|
|
793
|
-
|
|
793
|
+
vt(r);
|
|
794
794
|
}
|
|
795
795
|
else
|
|
796
|
-
|
|
796
|
+
vt(e);
|
|
797
797
|
}, n.prototype.complete = function() {
|
|
798
798
|
var e = this.partialObserver;
|
|
799
799
|
if (e.complete)
|
|
800
800
|
try {
|
|
801
801
|
e.complete();
|
|
802
802
|
} catch (t) {
|
|
803
|
-
|
|
803
|
+
vt(t);
|
|
804
804
|
}
|
|
805
805
|
}, n;
|
|
806
806
|
}(), rn = function(n) {
|
|
807
|
-
|
|
807
|
+
yt(e, n);
|
|
808
808
|
function e(t, r, i) {
|
|
809
809
|
var o = n.call(this) || this, u;
|
|
810
810
|
return W(t) || !t ? u = {
|
|
811
811
|
next: t ?? void 0,
|
|
812
812
|
error: r ?? void 0,
|
|
813
813
|
complete: i ?? void 0
|
|
814
|
-
} : u = t, o.destination = new
|
|
814
|
+
} : u = t, o.destination = new Qr(u), o;
|
|
815
815
|
}
|
|
816
816
|
return e;
|
|
817
|
-
}(
|
|
818
|
-
function
|
|
819
|
-
|
|
817
|
+
}(rr);
|
|
818
|
+
function vt(n) {
|
|
819
|
+
Jr(n);
|
|
820
820
|
}
|
|
821
|
-
function
|
|
821
|
+
function es(n) {
|
|
822
822
|
throw n;
|
|
823
823
|
}
|
|
824
|
-
var
|
|
824
|
+
var ts = {
|
|
825
825
|
closed: !0,
|
|
826
|
-
next:
|
|
827
|
-
error:
|
|
828
|
-
complete:
|
|
829
|
-
},
|
|
826
|
+
next: kn,
|
|
827
|
+
error: es,
|
|
828
|
+
complete: kn
|
|
829
|
+
}, ns = function() {
|
|
830
830
|
return typeof Symbol == "function" && Symbol.observable || "@@observable";
|
|
831
831
|
}();
|
|
832
|
-
function
|
|
832
|
+
function rs(n) {
|
|
833
833
|
return n;
|
|
834
834
|
}
|
|
835
|
-
function
|
|
836
|
-
return n.length === 0 ?
|
|
835
|
+
function ss(n) {
|
|
836
|
+
return n.length === 0 ? rs : n.length === 1 ? n[0] : function(t) {
|
|
837
837
|
return n.reduce(function(r, i) {
|
|
838
838
|
return i(r);
|
|
839
839
|
}, t);
|
|
840
840
|
};
|
|
841
841
|
}
|
|
842
|
-
var
|
|
842
|
+
var Mn = function() {
|
|
843
843
|
function n(e) {
|
|
844
844
|
e && (this._subscribe = e);
|
|
845
845
|
}
|
|
@@ -847,8 +847,8 @@ var xn = function() {
|
|
|
847
847
|
var t = new n();
|
|
848
848
|
return t.source = this, t.operator = e, t;
|
|
849
849
|
}, n.prototype.subscribe = function(e, t, r) {
|
|
850
|
-
var i = this, o =
|
|
851
|
-
return
|
|
850
|
+
var i = this, o = os(e) ? e : new rn(e, t, r);
|
|
851
|
+
return It(function() {
|
|
852
852
|
var u = i, c = u.operator, d = u.source;
|
|
853
853
|
o.add(c ? c.call(o, d) : d ? i._subscribe(o) : i._trySubscribe(o));
|
|
854
854
|
}), o;
|
|
@@ -877,12 +877,12 @@ var xn = function() {
|
|
|
877
877
|
}, n.prototype._subscribe = function(e) {
|
|
878
878
|
var t;
|
|
879
879
|
return (t = this.source) === null || t === void 0 ? void 0 : t.subscribe(e);
|
|
880
|
-
}, n.prototype[
|
|
880
|
+
}, n.prototype[ns] = function() {
|
|
881
881
|
return this;
|
|
882
882
|
}, n.prototype.pipe = function() {
|
|
883
883
|
for (var e = [], t = 0; t < arguments.length; t++)
|
|
884
884
|
e[t] = arguments[t];
|
|
885
|
-
return
|
|
885
|
+
return ss(e)(this);
|
|
886
886
|
}, n.prototype.toPromise = function(e) {
|
|
887
887
|
var t = this;
|
|
888
888
|
return e = Vn(e), new e(function(r, i) {
|
|
@@ -901,33 +901,33 @@ var xn = function() {
|
|
|
901
901
|
}();
|
|
902
902
|
function Vn(n) {
|
|
903
903
|
var e;
|
|
904
|
-
return (e = n ??
|
|
904
|
+
return (e = n ?? Wr.Promise) !== null && e !== void 0 ? e : Promise;
|
|
905
905
|
}
|
|
906
|
-
function
|
|
906
|
+
function is(n) {
|
|
907
907
|
return n && W(n.next) && W(n.error) && W(n.complete);
|
|
908
908
|
}
|
|
909
|
-
function
|
|
910
|
-
return n && n instanceof
|
|
909
|
+
function os(n) {
|
|
910
|
+
return n && n instanceof rr || is(n) && nr(n);
|
|
911
911
|
}
|
|
912
|
-
var
|
|
912
|
+
var as = er(function(n) {
|
|
913
913
|
return function() {
|
|
914
914
|
n(this), this.name = "ObjectUnsubscribedError", this.message = "object unsubscribed";
|
|
915
915
|
};
|
|
916
|
-
}),
|
|
917
|
-
|
|
916
|
+
}), ln = function(n) {
|
|
917
|
+
yt(e, n);
|
|
918
918
|
function e() {
|
|
919
919
|
var t = n.call(this) || this;
|
|
920
920
|
return t.closed = !1, t.currentObservers = null, t.observers = [], t.isStopped = !1, t.hasError = !1, t.thrownError = null, t;
|
|
921
921
|
}
|
|
922
922
|
return e.prototype.lift = function(t) {
|
|
923
|
-
var r = new
|
|
923
|
+
var r = new xn(this, this);
|
|
924
924
|
return r.operator = t, r;
|
|
925
925
|
}, e.prototype._throwIfClosed = function() {
|
|
926
926
|
if (this.closed)
|
|
927
|
-
throw new
|
|
927
|
+
throw new as();
|
|
928
928
|
}, e.prototype.next = function(t) {
|
|
929
929
|
var r = this;
|
|
930
|
-
|
|
930
|
+
It(function() {
|
|
931
931
|
var i, o;
|
|
932
932
|
if (r._throwIfClosed(), !r.isStopped) {
|
|
933
933
|
r.currentObservers || (r.currentObservers = Array.from(r.observers));
|
|
@@ -949,7 +949,7 @@ var us = nr(function(n) {
|
|
|
949
949
|
});
|
|
950
950
|
}, e.prototype.error = function(t) {
|
|
951
951
|
var r = this;
|
|
952
|
-
|
|
952
|
+
It(function() {
|
|
953
953
|
if (r._throwIfClosed(), !r.isStopped) {
|
|
954
954
|
r.hasError = r.isStopped = !0, r.thrownError = t;
|
|
955
955
|
for (var i = r.observers; i.length; )
|
|
@@ -958,7 +958,7 @@ var us = nr(function(n) {
|
|
|
958
958
|
});
|
|
959
959
|
}, e.prototype.complete = function() {
|
|
960
960
|
var t = this;
|
|
961
|
-
|
|
961
|
+
It(function() {
|
|
962
962
|
if (t._throwIfClosed(), !t.isStopped) {
|
|
963
963
|
t.isStopped = !0;
|
|
964
964
|
for (var r = t.observers; r.length; )
|
|
@@ -980,20 +980,20 @@ var us = nr(function(n) {
|
|
|
980
980
|
return this._throwIfClosed(), this._checkFinalizedStatuses(t), this._innerSubscribe(t);
|
|
981
981
|
}, e.prototype._innerSubscribe = function(t) {
|
|
982
982
|
var r = this, i = this, o = i.hasError, u = i.isStopped, c = i.observers;
|
|
983
|
-
return o || u ?
|
|
983
|
+
return o || u ? tr : (this.currentObservers = null, c.push(t), new xt(function() {
|
|
984
984
|
r.currentObservers = null, nn(c, t);
|
|
985
985
|
}));
|
|
986
986
|
}, e.prototype._checkFinalizedStatuses = function(t) {
|
|
987
987
|
var r = this, i = r.hasError, o = r.thrownError, u = r.isStopped;
|
|
988
988
|
i ? t.error(o) : u && t.complete();
|
|
989
989
|
}, e.prototype.asObservable = function() {
|
|
990
|
-
var t = new
|
|
990
|
+
var t = new Mn();
|
|
991
991
|
return t.source = this, t;
|
|
992
992
|
}, e.create = function(t, r) {
|
|
993
|
-
return new
|
|
993
|
+
return new xn(t, r);
|
|
994
994
|
}, e;
|
|
995
|
-
}(
|
|
996
|
-
|
|
995
|
+
}(Mn), xn = function(n) {
|
|
996
|
+
yt(e, n);
|
|
997
997
|
function e(t, r) {
|
|
998
998
|
var i = n.call(this) || this;
|
|
999
999
|
return i.destination = t, i.source = r, i;
|
|
@@ -1009,10 +1009,10 @@ var us = nr(function(n) {
|
|
|
1009
1009
|
(r = (t = this.destination) === null || t === void 0 ? void 0 : t.complete) === null || r === void 0 || r.call(t);
|
|
1010
1010
|
}, e.prototype._subscribe = function(t) {
|
|
1011
1011
|
var r, i;
|
|
1012
|
-
return (i = (r = this.source) === null || r === void 0 ? void 0 : r.subscribe(t)) !== null && i !== void 0 ? i :
|
|
1012
|
+
return (i = (r = this.source) === null || r === void 0 ? void 0 : r.subscribe(t)) !== null && i !== void 0 ? i : tr;
|
|
1013
1013
|
}, e;
|
|
1014
|
-
}(
|
|
1015
|
-
|
|
1014
|
+
}(ln), us = function(n) {
|
|
1015
|
+
yt(e, n);
|
|
1016
1016
|
function e(t) {
|
|
1017
1017
|
var r = n.call(this) || this;
|
|
1018
1018
|
return r._value = t, r;
|
|
@@ -1034,18 +1034,18 @@ var us = nr(function(n) {
|
|
|
1034
1034
|
}, e.prototype.next = function(t) {
|
|
1035
1035
|
n.prototype.next.call(this, this._value = t);
|
|
1036
1036
|
}, e;
|
|
1037
|
-
}(
|
|
1038
|
-
for (var i = r > 1 ? void 0 : r ?
|
|
1037
|
+
}(ln), cs = Object.getOwnPropertyDescriptor, ls = (n, e, t, r) => {
|
|
1038
|
+
for (var i = r > 1 ? void 0 : r ? cs(e, t) : e, o = n.length - 1, u; o >= 0; o--)
|
|
1039
1039
|
(u = n[o]) && (i = u(i) || i);
|
|
1040
1040
|
return i;
|
|
1041
1041
|
};
|
|
1042
|
-
let
|
|
1042
|
+
let Pn = class {
|
|
1043
1043
|
constructor(n) {
|
|
1044
|
-
this.ngZone = n, this.stateSubject = new
|
|
1044
|
+
this.ngZone = n, this.stateSubject = new us(null), this.state$ = this.stateSubject.asObservable();
|
|
1045
1045
|
}
|
|
1046
1046
|
init(n) {
|
|
1047
1047
|
this.ngZone.runOutsideAngular(() => {
|
|
1048
|
-
this.engine = new
|
|
1048
|
+
this.engine = new Qn({
|
|
1049
1049
|
...n,
|
|
1050
1050
|
onStateChange: (e) => {
|
|
1051
1051
|
this.ngZone.run(() => this.stateSubject.next(e));
|
|
@@ -1070,17 +1070,17 @@ let sn = class {
|
|
|
1070
1070
|
(n = this.engine) == null || n.stop();
|
|
1071
1071
|
}
|
|
1072
1072
|
};
|
|
1073
|
-
|
|
1073
|
+
Pn = ls([
|
|
1074
1074
|
$({ providedIn: "root" })
|
|
1075
|
-
],
|
|
1075
|
+
], Pn);
|
|
1076
1076
|
/**
|
|
1077
1077
|
* @license Angular v21.2.3
|
|
1078
1078
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
1079
1079
|
* License: MIT
|
|
1080
1080
|
*/
|
|
1081
|
-
let
|
|
1081
|
+
let fs = null;
|
|
1082
1082
|
function Ht() {
|
|
1083
|
-
return
|
|
1083
|
+
return fs;
|
|
1084
1084
|
}
|
|
1085
1085
|
const ve = class ve {
|
|
1086
1086
|
historyGo(e) {
|
|
@@ -1116,13 +1116,13 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1116
1116
|
}]
|
|
1117
1117
|
}]
|
|
1118
1118
|
});
|
|
1119
|
-
new
|
|
1119
|
+
new Vt(typeof ngDevMode < "u" && ngDevMode ? "Location Initialized" : "");
|
|
1120
1120
|
const oe = class oe extends te {
|
|
1121
1121
|
constructor() {
|
|
1122
1122
|
super();
|
|
1123
1123
|
a(this, "_location");
|
|
1124
1124
|
a(this, "_history");
|
|
1125
|
-
a(this, "_doc", Z(
|
|
1125
|
+
a(this, "_doc", Z(Wn));
|
|
1126
1126
|
this._location = window.location, this._history = window.history;
|
|
1127
1127
|
}
|
|
1128
1128
|
getBaseHrefFromDOM() {
|
|
@@ -1214,7 +1214,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1214
1214
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
1215
1215
|
* License: MIT
|
|
1216
1216
|
*/
|
|
1217
|
-
function
|
|
1217
|
+
function fn(n, e) {
|
|
1218
1218
|
return n ? e ? n.endsWith("/") ? e.startsWith("/") ? n + e.slice(1) : n + e : e.startsWith("/") ? n + e : `${n}/${e}` : n : e;
|
|
1219
1219
|
}
|
|
1220
1220
|
function Ln(n) {
|
|
@@ -1258,14 +1258,14 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1258
1258
|
}]
|
|
1259
1259
|
}]
|
|
1260
1260
|
});
|
|
1261
|
-
const Pt = new
|
|
1261
|
+
const Pt = new Vt(typeof ngDevMode < "u" && ngDevMode ? "appBaseHref" : ""), Ae = class Ae extends ne {
|
|
1262
1262
|
constructor(t, r) {
|
|
1263
1263
|
var i;
|
|
1264
1264
|
super();
|
|
1265
1265
|
a(this, "_platformLocation");
|
|
1266
1266
|
a(this, "_baseHref");
|
|
1267
1267
|
a(this, "_removeListenerFns", []);
|
|
1268
|
-
this._platformLocation = t, this._baseHref = r ?? this._platformLocation.getBaseHrefFromDOM() ?? ((i = Z(
|
|
1268
|
+
this._platformLocation = t, this._baseHref = r ?? this._platformLocation.getBaseHrefFromDOM() ?? ((i = Z(Wn).location) == null ? void 0 : i.origin) ?? "";
|
|
1269
1269
|
}
|
|
1270
1270
|
ngOnDestroy() {
|
|
1271
1271
|
for (; this._removeListenerFns.length; )
|
|
@@ -1278,7 +1278,7 @@ const Pt = new xt(typeof ngDevMode < "u" && ngDevMode ? "appBaseHref" : ""), Ae
|
|
|
1278
1278
|
return this._baseHref;
|
|
1279
1279
|
}
|
|
1280
1280
|
prepareExternalUrl(t) {
|
|
1281
|
-
return
|
|
1281
|
+
return fn(this._baseHref, t);
|
|
1282
1282
|
}
|
|
1283
1283
|
path(t = !1) {
|
|
1284
1284
|
const r = this._platformLocation.pathname + q(this._platformLocation.search), i = this._platformLocation.hash;
|
|
@@ -1351,7 +1351,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1351
1351
|
});
|
|
1352
1352
|
const _e = class _e extends ye {
|
|
1353
1353
|
prepareExternalUrl(e) {
|
|
1354
|
-
const t =
|
|
1354
|
+
const t = sr(e);
|
|
1355
1355
|
return t.endsWith("/") && t.length > 1 && (e = t.slice(0, -1) + e.slice(t.length)), super.prepareExternalUrl(e);
|
|
1356
1356
|
}
|
|
1357
1357
|
};
|
|
@@ -1369,12 +1369,12 @@ a(_e, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
1369
1369
|
type: _e,
|
|
1370
1370
|
providedIn: "root"
|
|
1371
1371
|
}));
|
|
1372
|
-
let
|
|
1372
|
+
let sn = _e;
|
|
1373
1373
|
s.ɵɵngDeclareClassMetadata({
|
|
1374
1374
|
minVersion: "12.0.0",
|
|
1375
1375
|
version: "21.2.3",
|
|
1376
1376
|
ngImport: s,
|
|
1377
|
-
type:
|
|
1377
|
+
type: sn,
|
|
1378
1378
|
decorators: [{
|
|
1379
1379
|
type: $,
|
|
1380
1380
|
args: [{
|
|
@@ -1384,7 +1384,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1384
1384
|
});
|
|
1385
1385
|
const we = class we extends ye {
|
|
1386
1386
|
prepareExternalUrl(e) {
|
|
1387
|
-
const t =
|
|
1387
|
+
const t = sr(e);
|
|
1388
1388
|
return t.endsWith("/") || (e = t + "/" + e.slice(t.length)), super.prepareExternalUrl(e);
|
|
1389
1389
|
}
|
|
1390
1390
|
};
|
|
@@ -1402,12 +1402,12 @@ a(we, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
1402
1402
|
type: we,
|
|
1403
1403
|
providedIn: "root"
|
|
1404
1404
|
}));
|
|
1405
|
-
let
|
|
1405
|
+
let on = we;
|
|
1406
1406
|
s.ɵɵngDeclareClassMetadata({
|
|
1407
1407
|
minVersion: "12.0.0",
|
|
1408
1408
|
version: "21.2.3",
|
|
1409
1409
|
ngImport: s,
|
|
1410
|
-
type:
|
|
1410
|
+
type: on,
|
|
1411
1411
|
decorators: [{
|
|
1412
1412
|
type: $,
|
|
1413
1413
|
args: [{
|
|
@@ -1415,20 +1415,20 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1415
1415
|
}]
|
|
1416
1416
|
}]
|
|
1417
1417
|
});
|
|
1418
|
-
function
|
|
1418
|
+
function sr(n) {
|
|
1419
1419
|
const e = n.search(/[?#]/), t = e > -1 ? e : n.length;
|
|
1420
1420
|
return n.slice(0, t);
|
|
1421
1421
|
}
|
|
1422
1422
|
const H = class H {
|
|
1423
1423
|
constructor(e) {
|
|
1424
|
-
a(this, "_subject", new
|
|
1424
|
+
a(this, "_subject", new ln());
|
|
1425
1425
|
a(this, "_basePath");
|
|
1426
1426
|
a(this, "_locationStrategy");
|
|
1427
1427
|
a(this, "_urlChangeListeners", []);
|
|
1428
1428
|
a(this, "_urlChangeSubscription", null);
|
|
1429
1429
|
this._locationStrategy = e;
|
|
1430
1430
|
const t = this._locationStrategy.getBaseHref();
|
|
1431
|
-
this._basePath =
|
|
1431
|
+
this._basePath = ps(Ln(jn(t))), this._locationStrategy.onPopState((r) => {
|
|
1432
1432
|
this._subject.next({
|
|
1433
1433
|
url: this.path(!0),
|
|
1434
1434
|
pop: !0,
|
|
@@ -1451,7 +1451,7 @@ const H = class H {
|
|
|
1451
1451
|
return this.path() == this.normalize(e + q(t));
|
|
1452
1452
|
}
|
|
1453
1453
|
normalize(e) {
|
|
1454
|
-
return H.stripTrailingSlash(
|
|
1454
|
+
return H.stripTrailingSlash(ds(this._basePath, jn(e)));
|
|
1455
1455
|
}
|
|
1456
1456
|
prepareExternalUrl(e) {
|
|
1457
1457
|
return e && e[0] !== "/" && (e = "/" + e), this._locationStrategy.prepareExternalUrl(e);
|
|
@@ -1492,7 +1492,7 @@ const H = class H {
|
|
|
1492
1492
|
});
|
|
1493
1493
|
}
|
|
1494
1494
|
};
|
|
1495
|
-
a(H, "normalizeQueryParams", q), a(H, "joinWithSlash",
|
|
1495
|
+
a(H, "normalizeQueryParams", q), a(H, "joinWithSlash", fn), a(H, "stripTrailingSlash", Ln), a(H, "ɵfac", s.ɵɵngDeclareFactory({
|
|
1496
1496
|
minVersion: "12.0.0",
|
|
1497
1497
|
version: "21.2.3",
|
|
1498
1498
|
ngImport: s,
|
|
@@ -1507,29 +1507,29 @@ a(H, "normalizeQueryParams", q), a(H, "joinWithSlash", dn), a(H, "stripTrailingS
|
|
|
1507
1507
|
ngImport: s,
|
|
1508
1508
|
type: H,
|
|
1509
1509
|
providedIn: "root",
|
|
1510
|
-
useFactory:
|
|
1510
|
+
useFactory: ir
|
|
1511
1511
|
}));
|
|
1512
|
-
let
|
|
1512
|
+
let Bt = H;
|
|
1513
1513
|
s.ɵɵngDeclareClassMetadata({
|
|
1514
1514
|
minVersion: "12.0.0",
|
|
1515
1515
|
version: "21.2.3",
|
|
1516
1516
|
ngImport: s,
|
|
1517
|
-
type:
|
|
1517
|
+
type: Bt,
|
|
1518
1518
|
decorators: [{
|
|
1519
1519
|
type: $,
|
|
1520
1520
|
args: [{
|
|
1521
1521
|
providedIn: "root",
|
|
1522
|
-
useFactory:
|
|
1522
|
+
useFactory: ir
|
|
1523
1523
|
}]
|
|
1524
1524
|
}],
|
|
1525
1525
|
ctorParameters: () => [{
|
|
1526
1526
|
type: ne
|
|
1527
1527
|
}]
|
|
1528
1528
|
});
|
|
1529
|
-
function
|
|
1530
|
-
return new
|
|
1529
|
+
function ir() {
|
|
1530
|
+
return new Bt(Or(ne));
|
|
1531
1531
|
}
|
|
1532
|
-
function
|
|
1532
|
+
function ds(n, e) {
|
|
1533
1533
|
if (!n || !e.startsWith(n))
|
|
1534
1534
|
return e;
|
|
1535
1535
|
const t = e.substring(n.length);
|
|
@@ -1538,7 +1538,7 @@ function ps(n, e) {
|
|
|
1538
1538
|
function jn(n) {
|
|
1539
1539
|
return n.replace(/\/index.html$/, "");
|
|
1540
1540
|
}
|
|
1541
|
-
function
|
|
1541
|
+
function ps(n) {
|
|
1542
1542
|
if (new RegExp("^(https?:)?//").test(n)) {
|
|
1543
1543
|
const [, t] = n.split(/\/\/[^\/]+/);
|
|
1544
1544
|
return t;
|
|
@@ -1573,7 +1573,7 @@ const Se = class Se extends ne {
|
|
|
1573
1573
|
return r.length > 0 ? r.substring(1) : r;
|
|
1574
1574
|
}
|
|
1575
1575
|
prepareExternalUrl(t) {
|
|
1576
|
-
const r =
|
|
1576
|
+
const r = fn(this._baseHref, t);
|
|
1577
1577
|
return r.length > 0 ? "#" + r : r;
|
|
1578
1578
|
}
|
|
1579
1579
|
pushState(t, r, i, o) {
|
|
@@ -1616,12 +1616,12 @@ a(Se, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
1616
1616
|
ngImport: s,
|
|
1617
1617
|
type: Se
|
|
1618
1618
|
}));
|
|
1619
|
-
let
|
|
1619
|
+
let an = Se;
|
|
1620
1620
|
s.ɵɵngDeclareClassMetadata({
|
|
1621
1621
|
minVersion: "12.0.0",
|
|
1622
1622
|
version: "21.2.3",
|
|
1623
1623
|
ngImport: s,
|
|
1624
|
-
type:
|
|
1624
|
+
type: an,
|
|
1625
1625
|
decorators: [{
|
|
1626
1626
|
type: $
|
|
1627
1627
|
}],
|
|
@@ -1637,7 +1637,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
1637
1637
|
}]
|
|
1638
1638
|
}]
|
|
1639
1639
|
});
|
|
1640
|
-
const
|
|
1640
|
+
const or = {
|
|
1641
1641
|
ADP: [void 0, void 0, 0],
|
|
1642
1642
|
AFN: [void 0, "؋", 0],
|
|
1643
1643
|
ALL: [void 0, void 0, 0],
|
|
@@ -1815,34 +1815,34 @@ var Nn;
|
|
|
1815
1815
|
(function(n) {
|
|
1816
1816
|
n[n.Sunday = 0] = "Sunday", n[n.Monday = 1] = "Monday", n[n.Tuesday = 2] = "Tuesday", n[n.Wednesday = 3] = "Wednesday", n[n.Thursday = 4] = "Thursday", n[n.Friday = 5] = "Friday", n[n.Saturday = 6] = "Saturday";
|
|
1817
1817
|
})(Nn || (Nn = {}));
|
|
1818
|
-
function
|
|
1818
|
+
function Ds(n) {
|
|
1819
1819
|
return M(n)[b.LocaleId];
|
|
1820
1820
|
}
|
|
1821
|
-
function
|
|
1821
|
+
function hs(n, e, t) {
|
|
1822
1822
|
const r = M(n), i = [r[b.DayPeriodsFormat], r[b.DayPeriodsStandalone]], o = L(i, e);
|
|
1823
1823
|
return L(o, t);
|
|
1824
1824
|
}
|
|
1825
|
-
function
|
|
1825
|
+
function gs(n, e, t) {
|
|
1826
1826
|
const r = M(n), i = [r[b.DaysFormat], r[b.DaysStandalone]], o = L(i, e);
|
|
1827
1827
|
return L(o, t);
|
|
1828
1828
|
}
|
|
1829
|
-
function
|
|
1829
|
+
function ms(n, e, t) {
|
|
1830
1830
|
const r = M(n), i = [r[b.MonthsFormat], r[b.MonthsStandalone]], o = L(i, e);
|
|
1831
1831
|
return L(o, t);
|
|
1832
1832
|
}
|
|
1833
|
-
function
|
|
1833
|
+
function ys(n, e) {
|
|
1834
1834
|
const r = M(n)[b.Eras];
|
|
1835
1835
|
return L(r, e);
|
|
1836
1836
|
}
|
|
1837
|
-
function
|
|
1837
|
+
function bt(n, e) {
|
|
1838
1838
|
const t = M(n);
|
|
1839
1839
|
return L(t[b.DateFormat], e);
|
|
1840
1840
|
}
|
|
1841
|
-
function
|
|
1841
|
+
function At(n, e) {
|
|
1842
1842
|
const t = M(n);
|
|
1843
1843
|
return L(t[b.TimeFormat], e);
|
|
1844
1844
|
}
|
|
1845
|
-
function
|
|
1845
|
+
function _t(n, e) {
|
|
1846
1846
|
const r = M(n)[b.DateTimeFormat];
|
|
1847
1847
|
return L(r, e);
|
|
1848
1848
|
}
|
|
@@ -1856,24 +1856,24 @@ function P(n, e) {
|
|
|
1856
1856
|
}
|
|
1857
1857
|
return r;
|
|
1858
1858
|
}
|
|
1859
|
-
function
|
|
1859
|
+
function dn(n, e) {
|
|
1860
1860
|
return M(n)[b.NumberFormats][e];
|
|
1861
1861
|
}
|
|
1862
|
-
function
|
|
1862
|
+
function Cs(n) {
|
|
1863
1863
|
return M(n)[b.Currencies];
|
|
1864
1864
|
}
|
|
1865
|
-
const
|
|
1866
|
-
function
|
|
1865
|
+
const Fs = Nr;
|
|
1866
|
+
function ar(n) {
|
|
1867
1867
|
if (!n[b.ExtraData])
|
|
1868
1868
|
throw new R(2303, ngDevMode && `Missing extra locale data for the locale "${n[b.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`);
|
|
1869
1869
|
}
|
|
1870
|
-
function
|
|
1870
|
+
function Es(n) {
|
|
1871
1871
|
const e = M(n);
|
|
1872
|
-
return
|
|
1872
|
+
return ar(e), (e[b.ExtraData][2] || []).map((r) => typeof r == "string" ? Yt(r) : [Yt(r[0]), Yt(r[1])]);
|
|
1873
1873
|
}
|
|
1874
|
-
function
|
|
1874
|
+
function vs(n, e, t) {
|
|
1875
1875
|
const r = M(n);
|
|
1876
|
-
|
|
1876
|
+
ar(r);
|
|
1877
1877
|
const i = [r[b.ExtraData][0], r[b.ExtraData][1]], o = L(i, e) || [];
|
|
1878
1878
|
return L(o, t) || [];
|
|
1879
1879
|
}
|
|
@@ -1890,23 +1890,23 @@ function Yt(n) {
|
|
|
1890
1890
|
minutes: +t
|
|
1891
1891
|
};
|
|
1892
1892
|
}
|
|
1893
|
-
function
|
|
1894
|
-
const r =
|
|
1893
|
+
function bs(n, e, t = "en") {
|
|
1894
|
+
const r = Cs(t)[n] || or[n] || [], i = r[1];
|
|
1895
1895
|
return e === "narrow" && typeof i == "string" ? i : r[0] || n;
|
|
1896
1896
|
}
|
|
1897
|
-
const
|
|
1898
|
-
function
|
|
1897
|
+
const As = 2;
|
|
1898
|
+
function _s(n) {
|
|
1899
1899
|
let e;
|
|
1900
|
-
const t =
|
|
1901
|
-
return t && (e = t[2]), typeof e == "number" ? e :
|
|
1900
|
+
const t = or[n];
|
|
1901
|
+
return t && (e = t[2]), typeof e == "number" ? e : As;
|
|
1902
1902
|
}
|
|
1903
|
-
const
|
|
1904
|
-
function
|
|
1905
|
-
let i =
|
|
1903
|
+
const ws = /^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/, Ee = {}, Ss = /((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;
|
|
1904
|
+
function Ts(n, e, t, r) {
|
|
1905
|
+
let i = Ls(n);
|
|
1906
1906
|
e = K(t, e) || e;
|
|
1907
1907
|
let u = [], c;
|
|
1908
1908
|
for (; e; )
|
|
1909
|
-
if (c =
|
|
1909
|
+
if (c = Ss.exec(e), c) {
|
|
1910
1910
|
u = u.concat(c.slice(1));
|
|
1911
1911
|
const f = u.pop();
|
|
1912
1912
|
if (!f)
|
|
@@ -1916,78 +1916,78 @@ function Is(n, e, t, r) {
|
|
|
1916
1916
|
u.push(e);
|
|
1917
1917
|
break;
|
|
1918
1918
|
}
|
|
1919
|
-
(typeof ngDevMode > "u" || ngDevMode) &&
|
|
1919
|
+
(typeof ngDevMode > "u" || ngDevMode) && Is(u);
|
|
1920
1920
|
let d = i.getTimezoneOffset();
|
|
1921
|
-
r && (d =
|
|
1921
|
+
r && (d = cr(r, d), i = Ps(i, r));
|
|
1922
1922
|
let D = "";
|
|
1923
1923
|
return u.forEach((f) => {
|
|
1924
1924
|
const p = Vs(f);
|
|
1925
1925
|
D += p ? p(i, t, d) : f === "''" ? "'" : f.replace(/(^'|'$)/g, "").replace(/''/g, "'");
|
|
1926
1926
|
}), D;
|
|
1927
1927
|
}
|
|
1928
|
-
function
|
|
1928
|
+
function Is(n) {
|
|
1929
1929
|
if (n.some((e) => /^Y+$/.test(e)) && !n.some((e) => /^w+$/.test(e))) {
|
|
1930
1930
|
const e = `Suspicious use of week-based year "Y" in date pattern "${n.join("")}". Did you mean to use calendar year "y" instead?`;
|
|
1931
1931
|
if (n.length === 1)
|
|
1932
|
-
console.error(
|
|
1932
|
+
console.error(jr(2300, e));
|
|
1933
1933
|
else
|
|
1934
1934
|
throw new R(2300, e);
|
|
1935
1935
|
}
|
|
1936
1936
|
}
|
|
1937
|
-
function
|
|
1937
|
+
function Rt(n, e, t) {
|
|
1938
1938
|
const r = /* @__PURE__ */ new Date(0);
|
|
1939
1939
|
return r.setFullYear(n, e, t), r.setHours(0, 0, 0), r;
|
|
1940
1940
|
}
|
|
1941
1941
|
function K(n, e) {
|
|
1942
|
-
const t =
|
|
1942
|
+
const t = Ds(n);
|
|
1943
1943
|
if (Ee[t] ?? (Ee[t] = {}), Ee[t][e])
|
|
1944
1944
|
return Ee[t][e];
|
|
1945
1945
|
let r = "";
|
|
1946
1946
|
switch (e) {
|
|
1947
1947
|
case "shortDate":
|
|
1948
|
-
r =
|
|
1948
|
+
r = bt(n, k.Short);
|
|
1949
1949
|
break;
|
|
1950
1950
|
case "mediumDate":
|
|
1951
|
-
r =
|
|
1951
|
+
r = bt(n, k.Medium);
|
|
1952
1952
|
break;
|
|
1953
1953
|
case "longDate":
|
|
1954
|
-
r =
|
|
1954
|
+
r = bt(n, k.Long);
|
|
1955
1955
|
break;
|
|
1956
1956
|
case "fullDate":
|
|
1957
|
-
r =
|
|
1957
|
+
r = bt(n, k.Full);
|
|
1958
1958
|
break;
|
|
1959
1959
|
case "shortTime":
|
|
1960
|
-
r =
|
|
1960
|
+
r = At(n, k.Short);
|
|
1961
1961
|
break;
|
|
1962
1962
|
case "mediumTime":
|
|
1963
|
-
r =
|
|
1963
|
+
r = At(n, k.Medium);
|
|
1964
1964
|
break;
|
|
1965
1965
|
case "longTime":
|
|
1966
|
-
r =
|
|
1966
|
+
r = At(n, k.Long);
|
|
1967
1967
|
break;
|
|
1968
1968
|
case "fullTime":
|
|
1969
|
-
r =
|
|
1969
|
+
r = At(n, k.Full);
|
|
1970
1970
|
break;
|
|
1971
1971
|
case "short":
|
|
1972
1972
|
const i = K(n, "shortTime"), o = K(n, "shortDate");
|
|
1973
|
-
r =
|
|
1973
|
+
r = wt(_t(n, k.Short), [i, o]);
|
|
1974
1974
|
break;
|
|
1975
1975
|
case "medium":
|
|
1976
1976
|
const u = K(n, "mediumTime"), c = K(n, "mediumDate");
|
|
1977
|
-
r =
|
|
1977
|
+
r = wt(_t(n, k.Medium), [u, c]);
|
|
1978
1978
|
break;
|
|
1979
1979
|
case "long":
|
|
1980
1980
|
const d = K(n, "longTime"), D = K(n, "longDate");
|
|
1981
|
-
r =
|
|
1981
|
+
r = wt(_t(n, k.Long), [d, D]);
|
|
1982
1982
|
break;
|
|
1983
1983
|
case "full":
|
|
1984
1984
|
const f = K(n, "fullTime"), p = K(n, "fullDate");
|
|
1985
|
-
r =
|
|
1985
|
+
r = wt(_t(n, k.Full), [f, p]);
|
|
1986
1986
|
break;
|
|
1987
1987
|
}
|
|
1988
1988
|
return r && (Ee[t][e] = r), r;
|
|
1989
1989
|
}
|
|
1990
|
-
function
|
|
1990
|
+
function wt(n, e) {
|
|
1991
1991
|
return e && (n = n.replace(/\{([^}]+)}/g, function(t, r) {
|
|
1992
1992
|
return e != null && r in e ? e[r] : t;
|
|
1993
1993
|
})), n;
|
|
@@ -2000,21 +2000,21 @@ function U(n, e, t = "-", r, i) {
|
|
|
2000
2000
|
u = "0" + u;
|
|
2001
2001
|
return r && (u = u.slice(u.length - e)), o + u;
|
|
2002
2002
|
}
|
|
2003
|
-
function
|
|
2003
|
+
function Os(n, e) {
|
|
2004
2004
|
return U(n, 3).substring(0, e);
|
|
2005
2005
|
}
|
|
2006
2006
|
function w(n, e, t = 0, r = !1, i = !1) {
|
|
2007
2007
|
return function(o, u) {
|
|
2008
|
-
let c =
|
|
2008
|
+
let c = Bs(n, o);
|
|
2009
2009
|
if ((t > 0 || c > -t) && (c += t), n === 3)
|
|
2010
2010
|
c === 0 && t === -12 && (c = 12);
|
|
2011
2011
|
else if (n === 6)
|
|
2012
|
-
return
|
|
2012
|
+
return Os(c, e);
|
|
2013
2013
|
const d = P(u, S.MinusSign);
|
|
2014
2014
|
return U(c, e, d, r, i);
|
|
2015
2015
|
};
|
|
2016
2016
|
}
|
|
2017
|
-
function
|
|
2017
|
+
function Bs(n, e) {
|
|
2018
2018
|
switch (n) {
|
|
2019
2019
|
case 0:
|
|
2020
2020
|
return e.getFullYear();
|
|
@@ -2038,19 +2038,19 @@ function Rs(n, e) {
|
|
|
2038
2038
|
}
|
|
2039
2039
|
function F(n, e, t = B.Format, r = !1) {
|
|
2040
2040
|
return function(i, o) {
|
|
2041
|
-
return
|
|
2041
|
+
return Rs(i, o, n, e, t, r);
|
|
2042
2042
|
};
|
|
2043
2043
|
}
|
|
2044
|
-
function
|
|
2044
|
+
function Rs(n, e, t, r, i, o) {
|
|
2045
2045
|
switch (t) {
|
|
2046
2046
|
case 2:
|
|
2047
|
-
return
|
|
2047
|
+
return ms(e, i, r)[n.getMonth()];
|
|
2048
2048
|
case 1:
|
|
2049
|
-
return
|
|
2049
|
+
return gs(e, i, r)[n.getDay()];
|
|
2050
2050
|
case 0:
|
|
2051
2051
|
const u = n.getHours(), c = n.getMinutes();
|
|
2052
2052
|
if (o) {
|
|
2053
|
-
const D =
|
|
2053
|
+
const D = Es(e), f = vs(e, i, r), p = D.findIndex((y) => {
|
|
2054
2054
|
if (Array.isArray(y)) {
|
|
2055
2055
|
const [h, _] = y, T = u >= h.hours && c >= h.minutes, N = u < _.hours || u === _.hours && c < _.minutes;
|
|
2056
2056
|
if (h.hours < _.hours) {
|
|
@@ -2065,15 +2065,15 @@ function ks(n, e, t, r, i, o) {
|
|
|
2065
2065
|
if (p !== -1)
|
|
2066
2066
|
return f[p];
|
|
2067
2067
|
}
|
|
2068
|
-
return
|
|
2068
|
+
return hs(e, i, r)[u < 12 ? 0 : 1];
|
|
2069
2069
|
case 3:
|
|
2070
|
-
return
|
|
2070
|
+
return ys(e, r)[n.getFullYear() <= 0 ? 0 : 1];
|
|
2071
2071
|
default:
|
|
2072
2072
|
const d = t;
|
|
2073
2073
|
throw new R(2302, ngDevMode && `unexpected translation type ${d}`);
|
|
2074
2074
|
}
|
|
2075
2075
|
}
|
|
2076
|
-
function
|
|
2076
|
+
function St(n) {
|
|
2077
2077
|
return function(e, t, r) {
|
|
2078
2078
|
const i = -1 * r, o = P(t, S.MinusSign), u = i > 0 ? Math.floor(i / 60) : Math.ceil(i / 60);
|
|
2079
2079
|
switch (n) {
|
|
@@ -2090,14 +2090,14 @@ function Tt(n) {
|
|
|
2090
2090
|
}
|
|
2091
2091
|
};
|
|
2092
2092
|
}
|
|
2093
|
-
const
|
|
2094
|
-
function
|
|
2095
|
-
const e =
|
|
2096
|
-
return
|
|
2093
|
+
const ks = 0, Ot = 4;
|
|
2094
|
+
function Ms(n) {
|
|
2095
|
+
const e = Rt(n, ks, 1).getDay();
|
|
2096
|
+
return Rt(n, 0, 1 + (e <= Ot ? Ot : Ot + 7) - e);
|
|
2097
2097
|
}
|
|
2098
|
-
function
|
|
2099
|
-
const e = n.getDay(), t = e === 0 ? -3 :
|
|
2100
|
-
return
|
|
2098
|
+
function ur(n) {
|
|
2099
|
+
const e = n.getDay(), t = e === 0 ? -3 : Ot - e;
|
|
2100
|
+
return Rt(n.getFullYear(), n.getMonth(), n.getDate() + t);
|
|
2101
2101
|
}
|
|
2102
2102
|
function zt(n, e = !1) {
|
|
2103
2103
|
return function(t, r) {
|
|
@@ -2106,15 +2106,15 @@ function zt(n, e = !1) {
|
|
|
2106
2106
|
const o = new Date(t.getFullYear(), t.getMonth(), 1).getDay() - 1, u = t.getDate();
|
|
2107
2107
|
i = 1 + Math.floor((u + o) / 7);
|
|
2108
2108
|
} else {
|
|
2109
|
-
const o =
|
|
2109
|
+
const o = ur(t), u = Ms(o.getFullYear()), c = o.getTime() - u.getTime();
|
|
2110
2110
|
i = 1 + Math.round(c / 6048e5);
|
|
2111
2111
|
}
|
|
2112
2112
|
return U(i, n, P(r, S.MinusSign));
|
|
2113
2113
|
};
|
|
2114
2114
|
}
|
|
2115
|
-
function
|
|
2115
|
+
function Tt(n, e = !1) {
|
|
2116
2116
|
return function(t, r) {
|
|
2117
|
-
const o =
|
|
2117
|
+
const o = ur(t).getFullYear();
|
|
2118
2118
|
return U(o, n, P(r, S.MinusSign), e);
|
|
2119
2119
|
};
|
|
2120
2120
|
}
|
|
@@ -2148,16 +2148,16 @@ function Vs(n) {
|
|
|
2148
2148
|
e = w(0, 4, 0, !1, !0);
|
|
2149
2149
|
break;
|
|
2150
2150
|
case "Y":
|
|
2151
|
-
e =
|
|
2151
|
+
e = Tt(1);
|
|
2152
2152
|
break;
|
|
2153
2153
|
case "YY":
|
|
2154
|
-
e =
|
|
2154
|
+
e = Tt(2, !0);
|
|
2155
2155
|
break;
|
|
2156
2156
|
case "YYY":
|
|
2157
|
-
e =
|
|
2157
|
+
e = Tt(3);
|
|
2158
2158
|
break;
|
|
2159
2159
|
case "YYYY":
|
|
2160
|
-
e =
|
|
2160
|
+
e = Tt(4);
|
|
2161
2161
|
break;
|
|
2162
2162
|
case "M":
|
|
2163
2163
|
case "L":
|
|
@@ -2299,10 +2299,10 @@ function Vs(n) {
|
|
|
2299
2299
|
case "Z":
|
|
2300
2300
|
case "ZZ":
|
|
2301
2301
|
case "ZZZ":
|
|
2302
|
-
e =
|
|
2302
|
+
e = St(0);
|
|
2303
2303
|
break;
|
|
2304
2304
|
case "ZZZZZ":
|
|
2305
|
-
e =
|
|
2305
|
+
e = St(3);
|
|
2306
2306
|
break;
|
|
2307
2307
|
case "O":
|
|
2308
2308
|
case "OO":
|
|
@@ -2310,31 +2310,31 @@ function Vs(n) {
|
|
|
2310
2310
|
case "z":
|
|
2311
2311
|
case "zz":
|
|
2312
2312
|
case "zzz":
|
|
2313
|
-
e =
|
|
2313
|
+
e = St(1);
|
|
2314
2314
|
break;
|
|
2315
2315
|
case "OOOO":
|
|
2316
2316
|
case "ZZZZ":
|
|
2317
2317
|
case "zzzz":
|
|
2318
|
-
e =
|
|
2318
|
+
e = St(2);
|
|
2319
2319
|
break;
|
|
2320
2320
|
default:
|
|
2321
2321
|
return null;
|
|
2322
2322
|
}
|
|
2323
2323
|
return Zt[n] = e, e;
|
|
2324
2324
|
}
|
|
2325
|
-
function
|
|
2325
|
+
function cr(n, e) {
|
|
2326
2326
|
n = n.replace(/:/g, "");
|
|
2327
2327
|
const t = Date.parse("Jan 01, 1970 00:00:00 " + n) / 6e4;
|
|
2328
2328
|
return isNaN(t) ? e : t;
|
|
2329
2329
|
}
|
|
2330
|
-
function
|
|
2330
|
+
function xs(n, e) {
|
|
2331
2331
|
return n = new Date(n.getTime()), n.setMinutes(n.getMinutes() + e), n;
|
|
2332
2332
|
}
|
|
2333
|
-
function
|
|
2334
|
-
const i = n.getTimezoneOffset(), o =
|
|
2335
|
-
return
|
|
2333
|
+
function Ps(n, e, t) {
|
|
2334
|
+
const i = n.getTimezoneOffset(), o = cr(e, i);
|
|
2335
|
+
return xs(n, -1 * (o - i));
|
|
2336
2336
|
}
|
|
2337
|
-
function
|
|
2337
|
+
function Ls(n) {
|
|
2338
2338
|
if (Un(n))
|
|
2339
2339
|
return n;
|
|
2340
2340
|
if (typeof n == "number" && !isNaN(n))
|
|
@@ -2342,21 +2342,21 @@ function js(n) {
|
|
|
2342
2342
|
if (typeof n == "string") {
|
|
2343
2343
|
if (n = n.trim(), /^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(n)) {
|
|
2344
2344
|
const [i, o = 1, u = 1] = n.split("-").map((c) => +c);
|
|
2345
|
-
return
|
|
2345
|
+
return Rt(i, o - 1, u);
|
|
2346
2346
|
}
|
|
2347
2347
|
const t = parseFloat(n);
|
|
2348
2348
|
if (!isNaN(n - t))
|
|
2349
2349
|
return new Date(t);
|
|
2350
2350
|
let r;
|
|
2351
|
-
if (r = n.match(
|
|
2352
|
-
return
|
|
2351
|
+
if (r = n.match(ws))
|
|
2352
|
+
return js(r);
|
|
2353
2353
|
}
|
|
2354
2354
|
const e = new Date(n);
|
|
2355
2355
|
if (!Un(e))
|
|
2356
2356
|
throw new R(2311, ngDevMode && `Unable to convert "${n}" into a date`);
|
|
2357
2357
|
return e;
|
|
2358
2358
|
}
|
|
2359
|
-
function
|
|
2359
|
+
function js(n) {
|
|
2360
2360
|
const e = /* @__PURE__ */ new Date(0);
|
|
2361
2361
|
let t = 0, r = 0;
|
|
2362
2362
|
const i = n[8] ? e.setUTCFullYear : e.setFullYear, o = n[8] ? e.setUTCHours : e.setHours;
|
|
@@ -2367,23 +2367,23 @@ function Ns(n) {
|
|
|
2367
2367
|
function Un(n) {
|
|
2368
2368
|
return n instanceof Date && !isNaN(n.valueOf());
|
|
2369
2369
|
}
|
|
2370
|
-
const
|
|
2371
|
-
function
|
|
2370
|
+
const Ns = /^(\d+)?\.((\d+)(-(\d+))?)?$/, $n = 22, kt = ".", ht = "0", Us = ";", $s = ",", Kt = "#", Gn = "¤", Gs = "%";
|
|
2371
|
+
function pn(n, e, t, r, i, o, u = !1) {
|
|
2372
2372
|
let c = "", d = !1;
|
|
2373
2373
|
if (!isFinite(n))
|
|
2374
2374
|
c = P(t, S.Infinity);
|
|
2375
2375
|
else {
|
|
2376
|
-
let D =
|
|
2377
|
-
u && (D =
|
|
2376
|
+
let D = Ks(n);
|
|
2377
|
+
u && (D = Zs(D));
|
|
2378
2378
|
let f = e.minInt, p = e.minFrac, y = e.maxFrac;
|
|
2379
2379
|
if (o) {
|
|
2380
|
-
const J = o.match(
|
|
2380
|
+
const J = o.match(Ns);
|
|
2381
2381
|
if (J === null)
|
|
2382
2382
|
throw new R(2306, ngDevMode && `${o} is not a valid digit info`);
|
|
2383
|
-
const
|
|
2384
|
-
|
|
2383
|
+
const Ct = J[1], dt = J[3], Ft = J[5];
|
|
2384
|
+
Ct != null && (f = qt(Ct)), dt != null && (p = qt(dt)), Ft != null ? y = qt(Ft) : dt != null && p > y && (y = p);
|
|
2385
2385
|
}
|
|
2386
|
-
|
|
2386
|
+
qs(D, p, y);
|
|
2387
2387
|
let h = D.digits, _ = D.integerLen;
|
|
2388
2388
|
const T = D.exponent;
|
|
2389
2389
|
let N = [];
|
|
@@ -2399,19 +2399,19 @@ function Dn(n, e, t, r, i, o, u = !1) {
|
|
|
2399
2399
|
}
|
|
2400
2400
|
return n < 0 && !d ? c = e.negPre + c + e.negSuf : c = e.posPre + c + e.posSuf, c;
|
|
2401
2401
|
}
|
|
2402
|
-
function
|
|
2403
|
-
const o =
|
|
2404
|
-
return u.minFrac =
|
|
2402
|
+
function Hs(n, e, t, r, i) {
|
|
2403
|
+
const o = dn(e, gt.Currency), u = Dn(o, P(e, S.MinusSign));
|
|
2404
|
+
return u.minFrac = _s(r), u.maxFrac = u.minFrac, pn(n, u, e, S.CurrencyGroup, S.CurrencyDecimal, i).replace(Gn, t).replace(Gn, "").trim();
|
|
2405
2405
|
}
|
|
2406
|
-
function
|
|
2407
|
-
const r =
|
|
2408
|
-
return
|
|
2406
|
+
function Ys(n, e, t) {
|
|
2407
|
+
const r = dn(e, gt.Percent), i = Dn(r, P(e, S.MinusSign));
|
|
2408
|
+
return pn(n, i, e, S.Group, S.Decimal, t, !0).replace(new RegExp(Gs, "g"), P(e, S.PercentSign));
|
|
2409
2409
|
}
|
|
2410
|
-
function
|
|
2411
|
-
const r =
|
|
2412
|
-
return
|
|
2410
|
+
function zs(n, e, t) {
|
|
2411
|
+
const r = dn(e, gt.Decimal), i = Dn(r, P(e, S.MinusSign));
|
|
2412
|
+
return pn(n, i, e, S.Group, S.Decimal, t);
|
|
2413
2413
|
}
|
|
2414
|
-
function
|
|
2414
|
+
function Dn(n, e = "-") {
|
|
2415
2415
|
const t = {
|
|
2416
2416
|
minInt: 1,
|
|
2417
2417
|
minFrac: 0,
|
|
@@ -2422,13 +2422,13 @@ function hn(n, e = "-") {
|
|
|
2422
2422
|
negSuf: "",
|
|
2423
2423
|
gSize: 0,
|
|
2424
2424
|
lgSize: 0
|
|
2425
|
-
}, r = n.split(
|
|
2425
|
+
}, r = n.split(Us), i = r[0], o = r[1], u = i.indexOf(kt) !== -1 ? i.split(kt) : [i.substring(0, i.lastIndexOf(ht) + 1), i.substring(i.lastIndexOf(ht) + 1)], c = u[0], d = u[1] || "";
|
|
2426
2426
|
t.posPre = c.substring(0, c.indexOf(Kt));
|
|
2427
2427
|
for (let f = 0; f < d.length; f++) {
|
|
2428
2428
|
const p = d.charAt(f);
|
|
2429
2429
|
p === ht ? t.minFrac = t.maxFrac = f + 1 : p === Kt ? t.maxFrac = f + 1 : t.posSuf += p;
|
|
2430
2430
|
}
|
|
2431
|
-
const D = c.split(
|
|
2431
|
+
const D = c.split($s);
|
|
2432
2432
|
if (t.gSize = D[1] ? D[1].length : 0, t.lgSize = D[2] || D[1] ? (D[2] || D[1]).length : 0, o) {
|
|
2433
2433
|
const f = i.length - t.posPre.length - t.posSuf.length, p = o.indexOf(Kt);
|
|
2434
2434
|
t.negPre = o.substring(0, p).replace(/'/g, ""), t.negSuf = o.slice(p + f).replace(/'/g, "");
|
|
@@ -2436,15 +2436,15 @@ function hn(n, e = "-") {
|
|
|
2436
2436
|
t.negPre = e + t.posPre, t.negSuf = t.posSuf;
|
|
2437
2437
|
return t;
|
|
2438
2438
|
}
|
|
2439
|
-
function
|
|
2439
|
+
function Zs(n) {
|
|
2440
2440
|
if (n.digits[0] === 0)
|
|
2441
2441
|
return n;
|
|
2442
2442
|
const e = n.digits.length - n.integerLen;
|
|
2443
2443
|
return n.exponent ? n.exponent += 2 : (e === 0 ? n.digits.push(0, 0) : e === 1 && n.digits.push(0), n.integerLen += 2), n;
|
|
2444
2444
|
}
|
|
2445
|
-
function
|
|
2445
|
+
function Ks(n) {
|
|
2446
2446
|
let e = Math.abs(n) + "", t = 0, r, i, o, u, c;
|
|
2447
|
-
for ((i = e.indexOf(
|
|
2447
|
+
for ((i = e.indexOf(kt)) > -1 && (e = e.replace(kt, "")), (o = e.search(/e/i)) > 0 ? (i < 0 && (i = o), i += +e.slice(o + 1), e = e.substring(0, o)) : i < 0 && (i = e.length), o = 0; e.charAt(o) === ht; o++)
|
|
2448
2448
|
;
|
|
2449
2449
|
if (o === (c = e.length))
|
|
2450
2450
|
r = [0], i = 1;
|
|
@@ -2459,7 +2459,7 @@ function qs(n) {
|
|
|
2459
2459
|
integerLen: i
|
|
2460
2460
|
};
|
|
2461
2461
|
}
|
|
2462
|
-
function
|
|
2462
|
+
function qs(n, e, t) {
|
|
2463
2463
|
if (e > t)
|
|
2464
2464
|
throw new R(2307, ngDevMode && `The minimum number of digits after fraction (${e}) is higher than the maximum (${t}).`);
|
|
2465
2465
|
let r = n.digits, i = r.length - n.integerLen;
|
|
@@ -2524,7 +2524,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
2524
2524
|
}]
|
|
2525
2525
|
}]
|
|
2526
2526
|
});
|
|
2527
|
-
function
|
|
2527
|
+
function lr(n, e, t, r) {
|
|
2528
2528
|
let i = `=${n}`;
|
|
2529
2529
|
if (e.indexOf(i) > -1 || (i = t.getPluralCategory(n, r), e.indexOf(i) > -1))
|
|
2530
2530
|
return i;
|
|
@@ -2539,7 +2539,7 @@ const Ie = class Ie extends re {
|
|
|
2539
2539
|
this.locale = t;
|
|
2540
2540
|
}
|
|
2541
2541
|
getPluralCategory(t, r) {
|
|
2542
|
-
switch (
|
|
2542
|
+
switch (Fs(r || this.locale)(t)) {
|
|
2543
2543
|
case ie.Zero:
|
|
2544
2544
|
return "zero";
|
|
2545
2545
|
case ie.One:
|
|
@@ -2630,7 +2630,7 @@ const Wt = /\s+/, Hn = [], Oe = class Oe {
|
|
|
2630
2630
|
}
|
|
2631
2631
|
_toggleClass(e, t) {
|
|
2632
2632
|
if (ngDevMode && typeof e != "string")
|
|
2633
|
-
throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${
|
|
2633
|
+
throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${un(e)}`);
|
|
2634
2634
|
e = e.trim(), e.length > 0 && e.split(Wt).forEach((r) => {
|
|
2635
2635
|
t ? this._renderer.addClass(this._ngEl.nativeElement, r) : this._renderer.removeClass(this._ngEl.nativeElement, r);
|
|
2636
2636
|
});
|
|
@@ -2715,7 +2715,7 @@ const Be = class Be {
|
|
|
2715
2715
|
var t;
|
|
2716
2716
|
if (this._needToReCreateComponentInstance(e) && (this._viewContainerRef.clear(), this._inputsUsed.clear(), this._componentRef = void 0, this.ngComponentOutlet)) {
|
|
2717
2717
|
const r = this.ngComponentOutletInjector || this._viewContainerRef.parentInjector;
|
|
2718
|
-
this._needToReCreateNgModuleInstance(e) && ((t = this._moduleRef) == null || t.destroy(), this.ngComponentOutletNgModule ? this._moduleRef =
|
|
2718
|
+
this._needToReCreateNgModuleInstance(e) && ((t = this._moduleRef) == null || t.destroy(), this.ngComponentOutletNgModule ? this._moduleRef = Br(this.ngComponentOutletNgModule, Ws(r)) : this._moduleRef = void 0), this._componentRef = this._viewContainerRef.createComponent(this.ngComponentOutlet, {
|
|
2719
2719
|
injector: r,
|
|
2720
2720
|
ngModuleRef: this._moduleRef,
|
|
2721
2721
|
projectableNodes: this.ngComponentOutletContent,
|
|
@@ -2804,10 +2804,10 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
2804
2804
|
}]
|
|
2805
2805
|
}
|
|
2806
2806
|
});
|
|
2807
|
-
function
|
|
2808
|
-
return n.get(
|
|
2807
|
+
function Ws(n) {
|
|
2808
|
+
return n.get(Pr).injector;
|
|
2809
2809
|
}
|
|
2810
|
-
class
|
|
2810
|
+
class Xs {
|
|
2811
2811
|
constructor(e, t, r, i) {
|
|
2812
2812
|
a(this, "$implicit");
|
|
2813
2813
|
a(this, "ngForOf");
|
|
@@ -2860,7 +2860,7 @@ const Re = class Re {
|
|
|
2860
2860
|
try {
|
|
2861
2861
|
this._differ = this._differs.find(e).create(this.ngForTrackBy);
|
|
2862
2862
|
} catch {
|
|
2863
|
-
let t = `Cannot find a differ supporting object '${e}' of type '${
|
|
2863
|
+
let t = `Cannot find a differ supporting object '${e}' of type '${Js(e)}'. NgFor only supports binding to Iterables, such as Arrays.`;
|
|
2864
2864
|
throw typeof e == "object" && (t += " Did you mean to use the keyvalue pipe?"), new R(-2200, t);
|
|
2865
2865
|
}
|
|
2866
2866
|
else
|
|
@@ -2875,7 +2875,7 @@ const Re = class Re {
|
|
|
2875
2875
|
const t = this._viewContainer;
|
|
2876
2876
|
e.forEachOperation((r, i, o) => {
|
|
2877
2877
|
if (r.previousIndex == null)
|
|
2878
|
-
t.createEmbeddedView(this._template, new
|
|
2878
|
+
t.createEmbeddedView(this._template, new Xs(r.item, this._ngForOf, -1, -1), o === null ? void 0 : o);
|
|
2879
2879
|
else if (o == null)
|
|
2880
2880
|
t.remove(i === null ? void 0 : i);
|
|
2881
2881
|
else if (i !== null) {
|
|
@@ -2956,13 +2956,13 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
2956
2956
|
function Yn(n, e) {
|
|
2957
2957
|
n.context.$implicit = e.item;
|
|
2958
2958
|
}
|
|
2959
|
-
function
|
|
2959
|
+
function Js(n) {
|
|
2960
2960
|
return n.name || typeof n;
|
|
2961
2961
|
}
|
|
2962
2962
|
const Q = class Q {
|
|
2963
2963
|
constructor(e, t) {
|
|
2964
2964
|
a(this, "_viewContainer");
|
|
2965
|
-
a(this, "_context", new
|
|
2965
|
+
a(this, "_context", new Qs());
|
|
2966
2966
|
a(this, "_thenTemplateRef", null);
|
|
2967
2967
|
a(this, "_elseTemplateRef", null);
|
|
2968
2968
|
a(this, "_thenViewRef", null);
|
|
@@ -3038,7 +3038,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3038
3038
|
}]
|
|
3039
3039
|
}
|
|
3040
3040
|
});
|
|
3041
|
-
class
|
|
3041
|
+
class Qs {
|
|
3042
3042
|
constructor() {
|
|
3043
3043
|
a(this, "$implicit", null);
|
|
3044
3044
|
a(this, "ngIf", null);
|
|
@@ -3046,9 +3046,9 @@ class ei {
|
|
|
3046
3046
|
}
|
|
3047
3047
|
function zn(n, e) {
|
|
3048
3048
|
if (n && !n.createEmbeddedView)
|
|
3049
|
-
throw new R(2020, (typeof ngDevMode > "u" || ngDevMode) && `${e} must be a TemplateRef, but received '${
|
|
3049
|
+
throw new R(2020, (typeof ngDevMode > "u" || ngDevMode) && `${e} must be a TemplateRef, but received '${un(n)}'.`);
|
|
3050
3050
|
}
|
|
3051
|
-
class
|
|
3051
|
+
class hn {
|
|
3052
3052
|
constructor(e, t) {
|
|
3053
3053
|
a(this, "_viewContainerRef");
|
|
3054
3054
|
a(this, "_templateRef");
|
|
@@ -3136,7 +3136,7 @@ const Me = class Me {
|
|
|
3136
3136
|
a(this, "ngSwitch");
|
|
3137
3137
|
a(this, "_view");
|
|
3138
3138
|
a(this, "ngSwitchCase");
|
|
3139
|
-
this.ngSwitch = r, (typeof ngDevMode > "u" || ngDevMode) && !r &&
|
|
3139
|
+
this.ngSwitch = r, (typeof ngDevMode > "u" || ngDevMode) && !r && fr("ngSwitchCase", "NgSwitchCase"), r._addCase(), this._view = new hn(e, t);
|
|
3140
3140
|
}
|
|
3141
3141
|
ngDoCheck() {
|
|
3142
3142
|
this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase));
|
|
@@ -3189,7 +3189,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3189
3189
|
decorators: [{
|
|
3190
3190
|
type: $e
|
|
3191
3191
|
}, {
|
|
3192
|
-
type:
|
|
3192
|
+
type: cn
|
|
3193
3193
|
}]
|
|
3194
3194
|
}],
|
|
3195
3195
|
propDecorators: {
|
|
@@ -3198,16 +3198,16 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3198
3198
|
}]
|
|
3199
3199
|
}
|
|
3200
3200
|
});
|
|
3201
|
-
const
|
|
3201
|
+
const Ve = class Ve {
|
|
3202
3202
|
constructor(e, t, r) {
|
|
3203
|
-
(typeof ngDevMode > "u" || ngDevMode) && !r &&
|
|
3203
|
+
(typeof ngDevMode > "u" || ngDevMode) && !r && fr("ngSwitchDefault", "NgSwitchDefault"), r._addDefault(new hn(e, t));
|
|
3204
3204
|
}
|
|
3205
3205
|
};
|
|
3206
|
-
a(
|
|
3206
|
+
a(Ve, "ɵfac", s.ɵɵngDeclareFactory({
|
|
3207
3207
|
minVersion: "12.0.0",
|
|
3208
3208
|
version: "21.2.3",
|
|
3209
3209
|
ngImport: s,
|
|
3210
|
-
type:
|
|
3210
|
+
type: Ve,
|
|
3211
3211
|
deps: [{
|
|
3212
3212
|
token: s.ViewContainerRef
|
|
3213
3213
|
}, {
|
|
@@ -3218,15 +3218,15 @@ a(xe, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
3218
3218
|
optional: !0
|
|
3219
3219
|
}],
|
|
3220
3220
|
target: s.ɵɵFactoryTarget.Directive
|
|
3221
|
-
})), a(
|
|
3221
|
+
})), a(Ve, "ɵdir", s.ɵɵngDeclareDirective({
|
|
3222
3222
|
minVersion: "14.0.0",
|
|
3223
3223
|
version: "21.2.3",
|
|
3224
|
-
type:
|
|
3224
|
+
type: Ve,
|
|
3225
3225
|
isStandalone: !0,
|
|
3226
3226
|
selector: "[ngSwitchDefault]",
|
|
3227
3227
|
ngImport: s
|
|
3228
3228
|
}));
|
|
3229
|
-
let qe =
|
|
3229
|
+
let qe = Ve;
|
|
3230
3230
|
s.ɵɵngDeclareClassMetadata({
|
|
3231
3231
|
minVersion: "12.0.0",
|
|
3232
3232
|
version: "21.2.3",
|
|
@@ -3247,14 +3247,14 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3247
3247
|
decorators: [{
|
|
3248
3248
|
type: $e
|
|
3249
3249
|
}, {
|
|
3250
|
-
type:
|
|
3250
|
+
type: cn
|
|
3251
3251
|
}]
|
|
3252
3252
|
}]
|
|
3253
3253
|
});
|
|
3254
|
-
function
|
|
3254
|
+
function fr(n, e) {
|
|
3255
3255
|
throw new R(2e3, `An element with the "${n}" attribute (matching the "${e}" directive) must be located inside an element with the "ngSwitch" attribute (matching "NgSwitch" directive)`);
|
|
3256
3256
|
}
|
|
3257
|
-
const
|
|
3257
|
+
const xe = class xe {
|
|
3258
3258
|
constructor(e) {
|
|
3259
3259
|
a(this, "_localization");
|
|
3260
3260
|
a(this, "_activeView");
|
|
@@ -3269,7 +3269,7 @@ const Ve = class Ve {
|
|
|
3269
3269
|
}
|
|
3270
3270
|
_updateView(e) {
|
|
3271
3271
|
this._clearViews();
|
|
3272
|
-
const t = Object.keys(this._caseViews), r =
|
|
3272
|
+
const t = Object.keys(this._caseViews), r = lr(e, t, this._localization);
|
|
3273
3273
|
this._activateView(this._caseViews[r]);
|
|
3274
3274
|
}
|
|
3275
3275
|
_clearViews() {
|
|
@@ -3279,19 +3279,19 @@ const Ve = class Ve {
|
|
|
3279
3279
|
e && (this._activeView = e, this._activeView.create());
|
|
3280
3280
|
}
|
|
3281
3281
|
};
|
|
3282
|
-
a(
|
|
3282
|
+
a(xe, "ɵfac", s.ɵɵngDeclareFactory({
|
|
3283
3283
|
minVersion: "12.0.0",
|
|
3284
3284
|
version: "21.2.3",
|
|
3285
3285
|
ngImport: s,
|
|
3286
|
-
type:
|
|
3286
|
+
type: xe,
|
|
3287
3287
|
deps: [{
|
|
3288
3288
|
token: re
|
|
3289
3289
|
}],
|
|
3290
3290
|
target: s.ɵɵFactoryTarget.Directive
|
|
3291
|
-
})), a(
|
|
3291
|
+
})), a(xe, "ɵdir", s.ɵɵngDeclareDirective({
|
|
3292
3292
|
minVersion: "14.0.0",
|
|
3293
3293
|
version: "21.2.3",
|
|
3294
|
-
type:
|
|
3294
|
+
type: xe,
|
|
3295
3295
|
isStandalone: !0,
|
|
3296
3296
|
selector: "[ngPlural]",
|
|
3297
3297
|
inputs: {
|
|
@@ -3299,7 +3299,7 @@ a(Ve, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
3299
3299
|
},
|
|
3300
3300
|
ngImport: s
|
|
3301
3301
|
}));
|
|
3302
|
-
let se =
|
|
3302
|
+
let se = xe;
|
|
3303
3303
|
s.ɵɵngDeclareClassMetadata({
|
|
3304
3304
|
minVersion: "12.0.0",
|
|
3305
3305
|
version: "21.2.3",
|
|
@@ -3325,7 +3325,7 @@ const Pe = class Pe {
|
|
|
3325
3325
|
a(this, "value");
|
|
3326
3326
|
this.value = e;
|
|
3327
3327
|
const o = !isNaN(Number(e));
|
|
3328
|
-
i.addCase(o ? `=${e}` : e, new
|
|
3328
|
+
i.addCase(o ? `=${e}` : e, new hn(r, t));
|
|
3329
3329
|
}
|
|
3330
3330
|
};
|
|
3331
3331
|
a(Pe, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3368,7 +3368,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3368
3368
|
ctorParameters: () => [{
|
|
3369
3369
|
type: void 0,
|
|
3370
3370
|
decorators: [{
|
|
3371
|
-
type:
|
|
3371
|
+
type: Ur,
|
|
3372
3372
|
args: ["ngPluralCase"]
|
|
3373
3373
|
}]
|
|
3374
3374
|
}, {
|
|
@@ -3378,7 +3378,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3378
3378
|
}, {
|
|
3379
3379
|
type: se,
|
|
3380
3380
|
decorators: [{
|
|
3381
|
-
type:
|
|
3381
|
+
type: cn
|
|
3382
3382
|
}]
|
|
3383
3383
|
}]
|
|
3384
3384
|
});
|
|
@@ -3401,7 +3401,7 @@ const Le = class Le {
|
|
|
3401
3401
|
}
|
|
3402
3402
|
}
|
|
3403
3403
|
_setStyle(e, t) {
|
|
3404
|
-
const [r, i] = e.split("."), o = r.indexOf("-") === -1 ? void 0 :
|
|
3404
|
+
const [r, i] = e.split("."), o = r.indexOf("-") === -1 ? void 0 : kr.DashCase;
|
|
3405
3405
|
t != null ? this._renderer.setStyle(this._ngEl.nativeElement, r, i ? `${t}${i}` : t, o) : this._renderer.removeStyle(this._ngEl.nativeElement, r, o);
|
|
3406
3406
|
}
|
|
3407
3407
|
_applyChanges(e) {
|
|
@@ -3465,7 +3465,7 @@ const je = class je {
|
|
|
3465
3465
|
a(this, "ngTemplateOutletContext", null);
|
|
3466
3466
|
a(this, "ngTemplateOutlet", null);
|
|
3467
3467
|
a(this, "ngTemplateOutletInjector", null);
|
|
3468
|
-
a(this, "injector", Z(
|
|
3468
|
+
a(this, "injector", Z(Rr));
|
|
3469
3469
|
this._viewContainerRef = e;
|
|
3470
3470
|
}
|
|
3471
3471
|
ngOnChanges(e) {
|
|
@@ -3549,23 +3549,23 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3549
3549
|
});
|
|
3550
3550
|
const Zn = [He, Ye, ze, Ze, Je, Xe, z, Ke, qe, se, We];
|
|
3551
3551
|
function X(n, e) {
|
|
3552
|
-
return new R(2100, ngDevMode && `InvalidPipeArgument: '${e}' for pipe '${
|
|
3552
|
+
return new R(2100, ngDevMode && `InvalidPipeArgument: '${e}' for pipe '${un(n)}'`);
|
|
3553
3553
|
}
|
|
3554
|
-
function
|
|
3555
|
-
|
|
3554
|
+
function dr(n, e) {
|
|
3555
|
+
Lr(e) && console.warn(`The ${n} does not unwrap signals. Received a signal with value:`, e());
|
|
3556
3556
|
}
|
|
3557
|
-
class
|
|
3557
|
+
class ei {
|
|
3558
3558
|
createSubscription(e, t, r) {
|
|
3559
|
-
return
|
|
3559
|
+
return Tn(() => e.subscribe({
|
|
3560
3560
|
next: t,
|
|
3561
3561
|
error: r
|
|
3562
3562
|
}));
|
|
3563
3563
|
}
|
|
3564
3564
|
dispose(e) {
|
|
3565
|
-
|
|
3565
|
+
Tn(() => e.unsubscribe());
|
|
3566
3566
|
}
|
|
3567
3567
|
}
|
|
3568
|
-
class
|
|
3568
|
+
class ti {
|
|
3569
3569
|
createSubscription(e, t, r) {
|
|
3570
3570
|
return e.then((i) => t == null ? void 0 : t(i), (i) => r == null ? void 0 : r(i)), {
|
|
3571
3571
|
unsubscribe: () => {
|
|
@@ -3577,7 +3577,7 @@ class ni {
|
|
|
3577
3577
|
e.unsubscribe();
|
|
3578
3578
|
}
|
|
3579
3579
|
}
|
|
3580
|
-
const
|
|
3580
|
+
const ni = new ti(), ri = new ei(), ae = class ae {
|
|
3581
3581
|
constructor(e) {
|
|
3582
3582
|
a(this, "_ref");
|
|
3583
3583
|
a(this, "_latestValue", null);
|
|
@@ -3585,7 +3585,7 @@ const ri = new ni(), si = new ti(), ae = class ae {
|
|
|
3585
3585
|
a(this, "_subscription", null);
|
|
3586
3586
|
a(this, "_obj", null);
|
|
3587
3587
|
a(this, "_strategy", null);
|
|
3588
|
-
a(this, "applicationErrorHandler", Z(
|
|
3588
|
+
a(this, "applicationErrorHandler", Z(Mr));
|
|
3589
3589
|
this._ref = e;
|
|
3590
3590
|
}
|
|
3591
3591
|
ngOnDestroy() {
|
|
@@ -3607,10 +3607,10 @@ const ri = new ni(), si = new ti(), ae = class ae {
|
|
|
3607
3607
|
this._obj = e, this._strategy = this._selectStrategy(e), this._subscription = this._strategy.createSubscription(e, (t) => this._updateLatestValue(e, t), (t) => this.applicationErrorHandler(t));
|
|
3608
3608
|
}
|
|
3609
3609
|
_selectStrategy(e) {
|
|
3610
|
-
if (
|
|
3610
|
+
if (Vr(e))
|
|
3611
|
+
return ni;
|
|
3612
|
+
if (xr(e))
|
|
3611
3613
|
return ri;
|
|
3612
|
-
if (Lr(e))
|
|
3613
|
-
return si;
|
|
3614
3614
|
throw X(ae, e);
|
|
3615
3615
|
}
|
|
3616
3616
|
_dispose() {
|
|
@@ -3646,7 +3646,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3646
3646
|
ngImport: s,
|
|
3647
3647
|
type: Qe,
|
|
3648
3648
|
decorators: [{
|
|
3649
|
-
type:
|
|
3649
|
+
type: V,
|
|
3650
3650
|
args: [{
|
|
3651
3651
|
name: "async",
|
|
3652
3652
|
pure: !1
|
|
@@ -3658,7 +3658,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3658
3658
|
});
|
|
3659
3659
|
const ue = class ue {
|
|
3660
3660
|
transform(e) {
|
|
3661
|
-
return e == null ? null : (
|
|
3661
|
+
return e == null ? null : (gn(ue, e), e.toLowerCase());
|
|
3662
3662
|
}
|
|
3663
3663
|
};
|
|
3664
3664
|
a(ue, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3683,15 +3683,15 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3683
3683
|
ngImport: s,
|
|
3684
3684
|
type: et,
|
|
3685
3685
|
decorators: [{
|
|
3686
|
-
type:
|
|
3686
|
+
type: V,
|
|
3687
3687
|
args: [{
|
|
3688
3688
|
name: "lowercase"
|
|
3689
3689
|
}]
|
|
3690
3690
|
}]
|
|
3691
3691
|
});
|
|
3692
|
-
const
|
|
3692
|
+
const si = /(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g, ce = class ce {
|
|
3693
3693
|
transform(e) {
|
|
3694
|
-
return e == null ? null : (
|
|
3694
|
+
return e == null ? null : (gn(ce, e), e.replace(si, (t) => t[0].toUpperCase() + t.slice(1).toLowerCase()));
|
|
3695
3695
|
}
|
|
3696
3696
|
};
|
|
3697
3697
|
a(ce, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3716,7 +3716,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3716
3716
|
ngImport: s,
|
|
3717
3717
|
type: tt,
|
|
3718
3718
|
decorators: [{
|
|
3719
|
-
type:
|
|
3719
|
+
type: V,
|
|
3720
3720
|
args: [{
|
|
3721
3721
|
name: "titlecase"
|
|
3722
3722
|
}]
|
|
@@ -3724,7 +3724,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3724
3724
|
});
|
|
3725
3725
|
const le = class le {
|
|
3726
3726
|
transform(e) {
|
|
3727
|
-
return e == null ? null : (
|
|
3727
|
+
return e == null ? null : (gn(le, e), e.toUpperCase());
|
|
3728
3728
|
}
|
|
3729
3729
|
};
|
|
3730
3730
|
a(le, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3749,17 +3749,17 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3749
3749
|
ngImport: s,
|
|
3750
3750
|
type: nt,
|
|
3751
3751
|
decorators: [{
|
|
3752
|
-
type:
|
|
3752
|
+
type: V,
|
|
3753
3753
|
args: [{
|
|
3754
3754
|
name: "uppercase"
|
|
3755
3755
|
}]
|
|
3756
3756
|
}]
|
|
3757
3757
|
});
|
|
3758
|
-
function
|
|
3758
|
+
function gn(n, e) {
|
|
3759
3759
|
if (typeof e != "string")
|
|
3760
3760
|
throw X(n, e);
|
|
3761
3761
|
}
|
|
3762
|
-
const
|
|
3762
|
+
const ii = "mediumDate", pr = new Vt(typeof ngDevMode < "u" && ngDevMode ? "DATE_PIPE_DEFAULT_TIMEZONE" : ""), Dr = new Vt(typeof ngDevMode < "u" && ngDevMode ? "DATE_PIPE_DEFAULT_OPTIONS" : ""), fe = class fe {
|
|
3763
3763
|
constructor(e, t, r) {
|
|
3764
3764
|
a(this, "locale");
|
|
3765
3765
|
a(this, "defaultTimezone");
|
|
@@ -3770,8 +3770,8 @@ const oi = "mediumDate", hr = new xt(typeof ngDevMode < "u" && ngDevMode ? "DATE
|
|
|
3770
3770
|
var o, u;
|
|
3771
3771
|
if (e == null || e === "" || e !== e) return null;
|
|
3772
3772
|
try {
|
|
3773
|
-
const c = t ?? ((o = this.defaultOptions) == null ? void 0 : o.dateFormat) ??
|
|
3774
|
-
return
|
|
3773
|
+
const c = t ?? ((o = this.defaultOptions) == null ? void 0 : o.dateFormat) ?? ii, d = r ?? ((u = this.defaultOptions) == null ? void 0 : u.timezone) ?? this.defaultTimezone ?? void 0;
|
|
3774
|
+
return Ts(e, c, i || this.locale, d);
|
|
3775
3775
|
} catch (c) {
|
|
3776
3776
|
throw X(fe, c.message);
|
|
3777
3777
|
}
|
|
@@ -3785,10 +3785,10 @@ a(fe, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
3785
3785
|
deps: [{
|
|
3786
3786
|
token: j
|
|
3787
3787
|
}, {
|
|
3788
|
-
token:
|
|
3788
|
+
token: pr,
|
|
3789
3789
|
optional: !0
|
|
3790
3790
|
}, {
|
|
3791
|
-
token:
|
|
3791
|
+
token: Dr,
|
|
3792
3792
|
optional: !0
|
|
3793
3793
|
}],
|
|
3794
3794
|
target: s.ɵɵFactoryTarget.Pipe
|
|
@@ -3807,7 +3807,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3807
3807
|
ngImport: s,
|
|
3808
3808
|
type: rt,
|
|
3809
3809
|
decorators: [{
|
|
3810
|
-
type:
|
|
3810
|
+
type: V,
|
|
3811
3811
|
args: [{
|
|
3812
3812
|
name: "date"
|
|
3813
3813
|
}]
|
|
@@ -3822,7 +3822,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3822
3822
|
type: void 0,
|
|
3823
3823
|
decorators: [{
|
|
3824
3824
|
type: Y,
|
|
3825
|
-
args: [
|
|
3825
|
+
args: [pr]
|
|
3826
3826
|
}, {
|
|
3827
3827
|
type: $e
|
|
3828
3828
|
}]
|
|
@@ -3830,13 +3830,13 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3830
3830
|
type: void 0,
|
|
3831
3831
|
decorators: [{
|
|
3832
3832
|
type: Y,
|
|
3833
|
-
args: [
|
|
3833
|
+
args: [Dr]
|
|
3834
3834
|
}, {
|
|
3835
3835
|
type: $e
|
|
3836
3836
|
}]
|
|
3837
3837
|
}]
|
|
3838
3838
|
});
|
|
3839
|
-
const
|
|
3839
|
+
const oi = /#/g, de = class de {
|
|
3840
3840
|
constructor(e) {
|
|
3841
3841
|
a(this, "_localization");
|
|
3842
3842
|
this._localization = e;
|
|
@@ -3845,8 +3845,8 @@ const ai = /#/g, de = class de {
|
|
|
3845
3845
|
if (e == null) return "";
|
|
3846
3846
|
if (typeof t != "object" || t === null)
|
|
3847
3847
|
throw X(de, t);
|
|
3848
|
-
const i =
|
|
3849
|
-
return t[i].replace(
|
|
3848
|
+
const i = lr(e, Object.keys(t), this._localization, r);
|
|
3849
|
+
return t[i].replace(oi, e.toString());
|
|
3850
3850
|
}
|
|
3851
3851
|
};
|
|
3852
3852
|
a(de, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3873,7 +3873,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3873
3873
|
ngImport: s,
|
|
3874
3874
|
type: st,
|
|
3875
3875
|
decorators: [{
|
|
3876
|
-
type:
|
|
3876
|
+
type: V,
|
|
3877
3877
|
args: [{
|
|
3878
3878
|
name: "i18nPlural"
|
|
3879
3879
|
}]
|
|
@@ -3912,7 +3912,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3912
3912
|
ngImport: s,
|
|
3913
3913
|
type: it,
|
|
3914
3914
|
decorators: [{
|
|
3915
|
-
type:
|
|
3915
|
+
type: V,
|
|
3916
3916
|
args: [{
|
|
3917
3917
|
name: "i18nSelect"
|
|
3918
3918
|
}]
|
|
@@ -3920,7 +3920,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3920
3920
|
});
|
|
3921
3921
|
const Ne = class Ne {
|
|
3922
3922
|
transform(e) {
|
|
3923
|
-
return ngDevMode &&
|
|
3923
|
+
return ngDevMode && dr("JsonPipe", e), JSON.stringify(e, null, 2);
|
|
3924
3924
|
}
|
|
3925
3925
|
};
|
|
3926
3926
|
a(Ne, "ɵfac", s.ɵɵngDeclareFactory({
|
|
@@ -3946,14 +3946,14 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
3946
3946
|
ngImport: s,
|
|
3947
3947
|
type: ot,
|
|
3948
3948
|
decorators: [{
|
|
3949
|
-
type:
|
|
3949
|
+
type: V,
|
|
3950
3950
|
args: [{
|
|
3951
3951
|
name: "json",
|
|
3952
3952
|
pure: !1
|
|
3953
3953
|
}]
|
|
3954
3954
|
}]
|
|
3955
3955
|
});
|
|
3956
|
-
function
|
|
3956
|
+
function ai(n, e) {
|
|
3957
3957
|
return {
|
|
3958
3958
|
key: n,
|
|
3959
3959
|
value: e
|
|
@@ -3968,12 +3968,12 @@ const Ue = class Ue {
|
|
|
3968
3968
|
this.differs = e;
|
|
3969
3969
|
}
|
|
3970
3970
|
transform(e, t = Kn) {
|
|
3971
|
-
if (ngDevMode &&
|
|
3971
|
+
if (ngDevMode && dr("KeyValuePipe", e), !e || !(e instanceof Map) && typeof e != "object")
|
|
3972
3972
|
return null;
|
|
3973
3973
|
this.differ ?? (this.differ = this.differs.find(e).create());
|
|
3974
3974
|
const r = this.differ.diff(e), i = t !== this.compareFn;
|
|
3975
3975
|
return r && (this.keyValues = [], r.forEachItem((o) => {
|
|
3976
|
-
this.keyValues.push(
|
|
3976
|
+
this.keyValues.push(ai(o.key, o.currentValue));
|
|
3977
3977
|
})), (r || i) && (t && this.keyValues.sort(t), this.compareFn = t), this.keyValues;
|
|
3978
3978
|
}
|
|
3979
3979
|
};
|
|
@@ -4002,7 +4002,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4002
4002
|
ngImport: s,
|
|
4003
4003
|
type: at,
|
|
4004
4004
|
decorators: [{
|
|
4005
|
-
type:
|
|
4005
|
+
type: V,
|
|
4006
4006
|
args: [{
|
|
4007
4007
|
name: "keyvalue",
|
|
4008
4008
|
pure: !1
|
|
@@ -4032,11 +4032,11 @@ const De = class De {
|
|
|
4032
4032
|
this._locale = e;
|
|
4033
4033
|
}
|
|
4034
4034
|
transform(e, t, r) {
|
|
4035
|
-
if (!
|
|
4035
|
+
if (!mn(e)) return null;
|
|
4036
4036
|
r || (r = this._locale);
|
|
4037
4037
|
try {
|
|
4038
|
-
const i =
|
|
4039
|
-
return
|
|
4038
|
+
const i = yn(e);
|
|
4039
|
+
return zs(i, r, t);
|
|
4040
4040
|
} catch (i) {
|
|
4041
4041
|
throw X(De, i.message);
|
|
4042
4042
|
}
|
|
@@ -4066,7 +4066,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4066
4066
|
ngImport: s,
|
|
4067
4067
|
type: ut,
|
|
4068
4068
|
decorators: [{
|
|
4069
|
-
type:
|
|
4069
|
+
type: V,
|
|
4070
4070
|
args: [{
|
|
4071
4071
|
name: "number"
|
|
4072
4072
|
}]
|
|
@@ -4085,11 +4085,11 @@ const he = class he {
|
|
|
4085
4085
|
this._locale = e;
|
|
4086
4086
|
}
|
|
4087
4087
|
transform(e, t, r) {
|
|
4088
|
-
if (!
|
|
4088
|
+
if (!mn(e)) return null;
|
|
4089
4089
|
r || (r = this._locale);
|
|
4090
4090
|
try {
|
|
4091
|
-
const i =
|
|
4092
|
-
return
|
|
4091
|
+
const i = yn(e);
|
|
4092
|
+
return Ys(i, r, t);
|
|
4093
4093
|
} catch (i) {
|
|
4094
4094
|
throw X(he, i.message);
|
|
4095
4095
|
}
|
|
@@ -4119,7 +4119,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4119
4119
|
ngImport: s,
|
|
4120
4120
|
type: ct,
|
|
4121
4121
|
decorators: [{
|
|
4122
|
-
type:
|
|
4122
|
+
type: V,
|
|
4123
4123
|
args: [{
|
|
4124
4124
|
name: "percent"
|
|
4125
4125
|
}]
|
|
@@ -4139,13 +4139,13 @@ const ge = class ge {
|
|
|
4139
4139
|
this._locale = e, this._defaultCurrencyCode = t;
|
|
4140
4140
|
}
|
|
4141
4141
|
transform(e, t = this._defaultCurrencyCode, r = "symbol", i, o) {
|
|
4142
|
-
if (!
|
|
4142
|
+
if (!mn(e)) return null;
|
|
4143
4143
|
o || (o = this._locale), typeof r == "boolean" && ((typeof ngDevMode > "u" || ngDevMode) && console.warn('Warning: the currency pipe has been changed in Angular v5. The symbolDisplay option (third parameter) is now a string instead of a boolean. The accepted values are "code", "symbol" or "symbol-narrow".'), r = r ? "symbol" : "code");
|
|
4144
4144
|
let u = t || this._defaultCurrencyCode;
|
|
4145
|
-
r !== "code" && (r === "symbol" || r === "symbol-narrow" ? u =
|
|
4145
|
+
r !== "code" && (r === "symbol" || r === "symbol-narrow" ? u = bs(u, r === "symbol" ? "wide" : "narrow", o) : u = r);
|
|
4146
4146
|
try {
|
|
4147
|
-
const c =
|
|
4148
|
-
return
|
|
4147
|
+
const c = yn(e);
|
|
4148
|
+
return Hs(c, o, u, t, i);
|
|
4149
4149
|
} catch (c) {
|
|
4150
4150
|
throw X(ge, c.message);
|
|
4151
4151
|
}
|
|
@@ -4159,7 +4159,7 @@ a(ge, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
4159
4159
|
deps: [{
|
|
4160
4160
|
token: j
|
|
4161
4161
|
}, {
|
|
4162
|
-
token:
|
|
4162
|
+
token: Xn
|
|
4163
4163
|
}],
|
|
4164
4164
|
target: s.ɵɵFactoryTarget.Pipe
|
|
4165
4165
|
})), a(ge, "ɵpipe", s.ɵɵngDeclarePipe({
|
|
@@ -4177,7 +4177,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4177
4177
|
ngImport: s,
|
|
4178
4178
|
type: lt,
|
|
4179
4179
|
decorators: [{
|
|
4180
|
-
type:
|
|
4180
|
+
type: V,
|
|
4181
4181
|
args: [{
|
|
4182
4182
|
name: "currency"
|
|
4183
4183
|
}]
|
|
@@ -4192,14 +4192,14 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4192
4192
|
type: void 0,
|
|
4193
4193
|
decorators: [{
|
|
4194
4194
|
type: Y,
|
|
4195
|
-
args: [
|
|
4195
|
+
args: [Xn]
|
|
4196
4196
|
}]
|
|
4197
4197
|
}]
|
|
4198
4198
|
});
|
|
4199
|
-
function
|
|
4199
|
+
function mn(n) {
|
|
4200
4200
|
return !(n == null || n === "" || n !== n);
|
|
4201
4201
|
}
|
|
4202
|
-
function
|
|
4202
|
+
function yn(n) {
|
|
4203
4203
|
if (typeof n == "string" && !isNaN(Number(n) - parseFloat(n)))
|
|
4204
4204
|
return Number(n);
|
|
4205
4205
|
if (typeof n != "number")
|
|
@@ -4237,7 +4237,7 @@ s.ɵɵngDeclareClassMetadata({
|
|
|
4237
4237
|
ngImport: s,
|
|
4238
4238
|
type: ft,
|
|
4239
4239
|
decorators: [{
|
|
4240
|
-
type:
|
|
4240
|
+
type: V,
|
|
4241
4241
|
args: [{
|
|
4242
4242
|
name: "slice",
|
|
4243
4243
|
pure: !1
|
|
@@ -4266,28 +4266,28 @@ a(ee, "ɵfac", s.ɵɵngDeclareFactory({
|
|
|
4266
4266
|
ngImport: s,
|
|
4267
4267
|
type: ee
|
|
4268
4268
|
}));
|
|
4269
|
-
let
|
|
4269
|
+
let Mt = ee;
|
|
4270
4270
|
s.ɵɵngDeclareClassMetadata({
|
|
4271
4271
|
minVersion: "12.0.0",
|
|
4272
4272
|
version: "21.2.3",
|
|
4273
4273
|
ngImport: s,
|
|
4274
|
-
type:
|
|
4274
|
+
type: Mt,
|
|
4275
4275
|
decorators: [{
|
|
4276
|
-
type:
|
|
4276
|
+
type: $r,
|
|
4277
4277
|
args: [{
|
|
4278
4278
|
imports: [Zn, qn],
|
|
4279
4279
|
exports: [Zn, qn]
|
|
4280
4280
|
}]
|
|
4281
4281
|
}]
|
|
4282
4282
|
});
|
|
4283
|
-
var
|
|
4284
|
-
for (var i = r > 1 ? void 0 : r ?
|
|
4283
|
+
var ui = Object.defineProperty, ci = Object.getOwnPropertyDescriptor, A = (n, e, t, r) => {
|
|
4284
|
+
for (var i = r > 1 ? void 0 : r ? ci(e, t) : e, o = n.length - 1, u; o >= 0; o--)
|
|
4285
4285
|
(u = n[o]) && (i = (r ? u(e, t, i) : u(i)) || i);
|
|
4286
|
-
return r && i &&
|
|
4286
|
+
return r && i && ui(e, t, i), i;
|
|
4287
4287
|
};
|
|
4288
|
-
let
|
|
4288
|
+
let v = class {
|
|
4289
4289
|
constructor(n) {
|
|
4290
|
-
this.liveness = n, this.duration = 60, this.containerClass = "", this.videoWrapperClass = "", this.videoClass = "", this.timerClass = "", this.challengeTextClass = "", this.buttonClass = "", this.retryButtonClass = "", this.statusOverlayClass = "", this.successMessageClass = "", this.errorMessageClass = "", this.instructionBoxClass = "", this.onComplete = new
|
|
4290
|
+
this.liveness = n, this.duration = 60, this.containerClass = "", this.videoWrapperClass = "", this.videoClass = "", this.timerClass = "", this.challengeTextClass = "", this.buttonClass = "", this.retryButtonClass = "", this.statusOverlayClass = "", this.successMessageClass = "", this.errorMessageClass = "", this.instructionBoxClass = "", this.onComplete = new In(), this.onError = new In();
|
|
4291
4291
|
}
|
|
4292
4292
|
ngOnInit() {
|
|
4293
4293
|
this.liveness.init({
|
|
@@ -4320,99 +4320,81 @@ let E = class {
|
|
|
4320
4320
|
}
|
|
4321
4321
|
};
|
|
4322
4322
|
A([
|
|
4323
|
-
|
|
4324
|
-
],
|
|
4323
|
+
Gr("webcam")
|
|
4324
|
+
], v.prototype, "webcamRef", 2);
|
|
4325
4325
|
A([
|
|
4326
4326
|
m()
|
|
4327
|
-
],
|
|
4327
|
+
], v.prototype, "apiUrl", 2);
|
|
4328
4328
|
A([
|
|
4329
4329
|
m()
|
|
4330
|
-
],
|
|
4330
|
+
], v.prototype, "duration", 2);
|
|
4331
4331
|
A([
|
|
4332
4332
|
m()
|
|
4333
|
-
],
|
|
4333
|
+
], v.prototype, "smileThreshold", 2);
|
|
4334
4334
|
A([
|
|
4335
4335
|
m()
|
|
4336
|
-
],
|
|
4336
|
+
], v.prototype, "blinkThreshold", 2);
|
|
4337
4337
|
A([
|
|
4338
4338
|
m()
|
|
4339
|
-
],
|
|
4339
|
+
], v.prototype, "minturnHeadThreshold", 2);
|
|
4340
4340
|
A([
|
|
4341
4341
|
m()
|
|
4342
|
-
],
|
|
4342
|
+
], v.prototype, "maxturnHeadThreshold", 2);
|
|
4343
4343
|
A([
|
|
4344
4344
|
m()
|
|
4345
|
-
],
|
|
4345
|
+
], v.prototype, "containerClass", 2);
|
|
4346
4346
|
A([
|
|
4347
4347
|
m()
|
|
4348
|
-
],
|
|
4348
|
+
], v.prototype, "videoWrapperClass", 2);
|
|
4349
4349
|
A([
|
|
4350
4350
|
m()
|
|
4351
|
-
],
|
|
4351
|
+
], v.prototype, "videoClass", 2);
|
|
4352
4352
|
A([
|
|
4353
4353
|
m()
|
|
4354
|
-
],
|
|
4354
|
+
], v.prototype, "timerClass", 2);
|
|
4355
4355
|
A([
|
|
4356
4356
|
m()
|
|
4357
|
-
],
|
|
4357
|
+
], v.prototype, "challengeTextClass", 2);
|
|
4358
4358
|
A([
|
|
4359
4359
|
m()
|
|
4360
|
-
],
|
|
4360
|
+
], v.prototype, "buttonClass", 2);
|
|
4361
4361
|
A([
|
|
4362
4362
|
m()
|
|
4363
|
-
],
|
|
4363
|
+
], v.prototype, "retryButtonClass", 2);
|
|
4364
4364
|
A([
|
|
4365
4365
|
m()
|
|
4366
|
-
],
|
|
4366
|
+
], v.prototype, "statusOverlayClass", 2);
|
|
4367
4367
|
A([
|
|
4368
4368
|
m()
|
|
4369
|
-
],
|
|
4369
|
+
], v.prototype, "successMessageClass", 2);
|
|
4370
4370
|
A([
|
|
4371
4371
|
m()
|
|
4372
|
-
],
|
|
4372
|
+
], v.prototype, "errorMessageClass", 2);
|
|
4373
4373
|
A([
|
|
4374
4374
|
m()
|
|
4375
|
-
],
|
|
4375
|
+
], v.prototype, "instructionBoxClass", 2);
|
|
4376
4376
|
A([
|
|
4377
|
-
|
|
4378
|
-
],
|
|
4377
|
+
Jn()
|
|
4378
|
+
], v.prototype, "onComplete", 2);
|
|
4379
4379
|
A([
|
|
4380
|
-
|
|
4381
|
-
],
|
|
4382
|
-
|
|
4383
|
-
|
|
4380
|
+
Jn()
|
|
4381
|
+
], v.prototype, "onError", 2);
|
|
4382
|
+
v = A([
|
|
4383
|
+
Hr({
|
|
4384
4384
|
selector: "LivenessCheck",
|
|
4385
|
-
standalone: !
|
|
4385
|
+
standalone: !0,
|
|
4386
4386
|
// Make it standalone
|
|
4387
|
-
imports: [
|
|
4387
|
+
imports: [Mt],
|
|
4388
4388
|
// Add CommonModule here to fix NG8002
|
|
4389
4389
|
templateUrl: "./liveness.component.html",
|
|
4390
4390
|
styleUrls: ["./liveness.component.css"]
|
|
4391
4391
|
})
|
|
4392
|
-
],
|
|
4393
|
-
var fi = Object.getOwnPropertyDescriptor, di = (n, e, t, r) => {
|
|
4394
|
-
for (var i = r > 1 ? void 0 : r ? fi(e, t) : e, o = n.length - 1, u; o >= 0; o--)
|
|
4395
|
-
(u = n[o]) && (i = u(i) || i);
|
|
4396
|
-
return i;
|
|
4397
|
-
};
|
|
4398
|
-
let Wn = class {
|
|
4399
|
-
};
|
|
4400
|
-
Wn = di([
|
|
4401
|
-
Qn({
|
|
4402
|
-
declarations: [E],
|
|
4403
|
-
imports: [yt],
|
|
4404
|
-
providers: [sn],
|
|
4405
|
-
// This makes the service available
|
|
4406
|
-
exports: [E]
|
|
4407
|
-
// This allows <lib-liveness> to be used
|
|
4408
|
-
})
|
|
4409
|
-
], Wn);
|
|
4392
|
+
], v);
|
|
4410
4393
|
export {
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
zr as verifyLiveness
|
|
4394
|
+
v as LivenessComponent,
|
|
4395
|
+
Qn as LivenessEngine,
|
|
4396
|
+
hi as LivenessSDK,
|
|
4397
|
+
Pn as LivenessService,
|
|
4398
|
+
Zr as useLiveness,
|
|
4399
|
+
Yr as verifyLiveness
|
|
4418
4400
|
};
|