aesirx-analytics 2.2.19 → 2.2.21
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/{Consent-TGYEV2XV.js → Consent-OHFGKDZJ.js} +15 -12
- package/dist/{ConsentCustom-IBIHKHPV.js → ConsentCustom-UTTNESFI.js} +65 -62
- package/dist/analytics.js +96 -96
- package/dist/{chunk-ZC2ONV6W.js → chunk-AS3MN6ER.js} +430 -121
- package/dist/{chunk-EL2DBQXP.js → chunk-NTEWP6UQ.js} +467 -17
- package/dist/chunk-YOHHSMUP.js +182 -0
- package/dist/index.js +37 -26
- package/package.json +1 -1
- package/dist/chunk-UJTYOAT7.js +0 -464
@@ -4,7 +4,7 @@ import {
|
|
4
4
|
getConsents,
|
5
5
|
privacy_default,
|
6
6
|
useTranslation
|
7
|
-
} from "./chunk-
|
7
|
+
} from "./chunk-NTEWP6UQ.js";
|
8
8
|
|
9
9
|
// src/Hooks/config.ts
|
10
10
|
import {
|
@@ -46,9 +46,29 @@ var useConsentStatus = (endpoint, layout, props) => {
|
|
46
46
|
const [web3ID, setWeb3ID] = useState();
|
47
47
|
const analyticsContext = useContext(AnalyticsContext);
|
48
48
|
const { activeConnector, network, connectedAccounts, genesisHashes, setActiveConnectorType } = props;
|
49
|
+
const observerModal = () => {
|
50
|
+
const callback = (mutationList) => {
|
51
|
+
for (const mutation of mutationList) {
|
52
|
+
if (mutation.type === "attributes" && mutation.attributeName === "class") {
|
53
|
+
if (!mutation.target.classList?.contains("minimize")) {
|
54
|
+
const firstElement = mutation.target.querySelector("a, button, input");
|
55
|
+
if (firstElement) {
|
56
|
+
firstElement.focus();
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
};
|
62
|
+
const targetNode = document.querySelector("#consent-modal > div");
|
63
|
+
if (targetNode) {
|
64
|
+
const observer = new MutationObserver(callback);
|
65
|
+
observer.observe(targetNode, { attributes: true });
|
66
|
+
}
|
67
|
+
};
|
49
68
|
useEffect(() => {
|
50
69
|
const allow = sessionStorage.getItem("aesirx-analytics-allow");
|
51
70
|
const currentUuid = sessionStorage.getItem("aesirx-analytics-uuid");
|
71
|
+
observerModal();
|
52
72
|
if (analyticsContext.visitor_uuid && (allow === null || analyticsContext.visitor_uuid !== currentUuid)) {
|
53
73
|
(async () => {
|
54
74
|
const consentList = await getConsents(endpoint, analyticsContext.visitor_uuid);
|
@@ -10346,7 +10366,7 @@ var TermsComponent = ({
|
|
10346
10366
|
}
|
10347
10367
|
}
|
10348
10368
|
},
|
10349
|
-
/* @__PURE__ */ React.createElement("div", { className: "text-primary text-nowrap" }, isCustom ? t("txt_tracking_data_privacy") : t(term.name)),
|
10369
|
+
/* @__PURE__ */ React.createElement("div", { className: "text-primary text-nowrap" }, isCustom ? window?.aesirx_analytics_translate?.txt_tracking_data_privacy ?? t("txt_tracking_data_privacy") : t(term.name)),
|
10350
10370
|
/* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center fs-14 text-primary" }, isCustom ? /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
10351
10371
|
"a",
|
10352
10372
|
{
|
@@ -10359,10 +10379,11 @@ var TermsComponent = ({
|
|
10359
10379
|
"img",
|
10360
10380
|
{
|
10361
10381
|
className: "cover-img position-absolute h-100 w-100 object-fit-cover z-1",
|
10362
|
-
src: bg_default
|
10382
|
+
src: bg_default,
|
10383
|
+
alt: "Background Image"
|
10363
10384
|
}
|
10364
10385
|
),
|
10365
|
-
/* @__PURE__ */ React.createElement("div", { className: "minimize-shield position-relative z-2 py-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt: "
|
10386
|
+
/* @__PURE__ */ React.createElement("div", { className: "minimize-shield position-relative z-2 py-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt: "SoP Icon" }), window?.aesirx_analytics_translate?.txt_shield_of_privacy ?? t("txt_shield_of_privacy"))
|
10366
10387
|
)) : /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: `status-tier tier-${term.level} rounded-circle` }), /* @__PURE__ */ React.createElement("div", { className: "status-tier-text" }, t(term.tier), " - ", t(term.levelname))))
|
10367
10388
|
), /* @__PURE__ */ React.createElement("div", { className: `pb-1 pb-lg-3 ${isCustom ? "pt-0" : "p-3"} bg-white` }, isCustom ? /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
10368
10389
|
Tabs,
|
@@ -10376,10 +10397,25 @@ var TermsComponent = ({
|
|
10376
10397
|
Tab,
|
10377
10398
|
{
|
10378
10399
|
eventKey: "consent",
|
10379
|
-
title: t("txt_consent_nanagement"),
|
10400
|
+
title: window?.aesirx_analytics_translate?.txt_consent_nanagement ?? t("txt_consent_nanagement"),
|
10380
10401
|
className: "w-auto px-2 px-lg-4"
|
10381
10402
|
},
|
10382
|
-
isRejectedLayout ? /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("p", { className: "mt-0 pt-4 mb-2" }, t("txt_you_have_chosen")), /* @__PURE__ */ React.createElement("p", { className: "mt-2 mb-3" }, t("txt_only_anonymized")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10403
|
+
isRejectedLayout ? /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("p", { className: "mt-0 pt-4 mb-2" }, window?.aesirx_analytics_translate?.txt_you_have_chosen ?? t("txt_you_have_chosen")), /* @__PURE__ */ React.createElement("p", { className: "mt-2 mb-3" }, window?.aesirx_analytics_translate?.txt_only_anonymized ?? t("txt_only_anonymized")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10404
|
+
"img",
|
10405
|
+
{
|
10406
|
+
src: check_circle_default,
|
10407
|
+
width: "14px",
|
10408
|
+
height: "15px",
|
10409
|
+
alt: "Check Icon"
|
10410
|
+
}
|
10411
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_consent_allow_data ? /* @__PURE__ */ React.createElement(
|
10412
|
+
"div",
|
10413
|
+
{
|
10414
|
+
dangerouslySetInnerHTML: {
|
10415
|
+
__html: window?.aesirx_analytics_translate?.txt_consent_allow_data
|
10416
|
+
}
|
10417
|
+
}
|
10418
|
+
) : /* @__PURE__ */ React.createElement(
|
10383
10419
|
"div",
|
10384
10420
|
{
|
10385
10421
|
dangerouslySetInnerHTML: {
|
@@ -10388,7 +10424,22 @@ var TermsComponent = ({
|
|
10388
10424
|
})
|
10389
10425
|
}
|
10390
10426
|
}
|
10391
|
-
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10427
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10428
|
+
"img",
|
10429
|
+
{
|
10430
|
+
src: check_circle_default,
|
10431
|
+
width: "14px",
|
10432
|
+
height: "15px",
|
10433
|
+
alt: "Check Icon"
|
10434
|
+
}
|
10435
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_decentralized_consent_allow_data ? /* @__PURE__ */ React.createElement(
|
10436
|
+
"div",
|
10437
|
+
{
|
10438
|
+
dangerouslySetInnerHTML: {
|
10439
|
+
__html: window?.aesirx_analytics_translate?.txt_decentralized_consent_allow_data
|
10440
|
+
}
|
10441
|
+
}
|
10442
|
+
) : /* @__PURE__ */ React.createElement(
|
10392
10443
|
"div",
|
10393
10444
|
{
|
10394
10445
|
dangerouslySetInnerHTML: {
|
@@ -10404,7 +10455,54 @@ var TermsComponent = ({
|
|
10404
10455
|
__html: customConsentText
|
10405
10456
|
}
|
10406
10457
|
}
|
10407
|
-
)) : /* @__PURE__ */ React.createElement(React.Fragment, null, " ", /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-2 text-black fw-semibold" }, t("txt_manage_your_consent")), /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-3" }, layout === "simple-consent-mode" ? t("txt_choose_how_we_use_simple") : t("txt_choose_how_we_use")), /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black" },
|
10458
|
+
)) : /* @__PURE__ */ React.createElement(React.Fragment, null, " ", /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-2 text-black fw-semibold" }, window?.aesirx_analytics_translate?.txt_manage_your_consent ?? t("txt_manage_your_consent")), /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-3" }, layout === "simple-consent-mode" ? window?.aesirx_analytics_translate?.txt_choose_how_we_use_simple ?? t("txt_choose_how_we_use_simple") : window?.aesirx_analytics_translate?.txt_choose_how_we_use ?? t("txt_choose_how_we_use")), /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black" }, window?.aesirx_analytics_translate?.txt_by_consenting ?? t("txt_by_consenting")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10459
|
+
"img",
|
10460
|
+
{
|
10461
|
+
src: check_circle_default,
|
10462
|
+
width: "14px",
|
10463
|
+
height: "15px",
|
10464
|
+
alt: "Check Icon"
|
10465
|
+
}
|
10466
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, /* @__PURE__ */ React.createElement("div", null, window?.aesirx_analytics_translate?.txt_analytics_behavioral ?? t("txt_analytics_behavioral")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10467
|
+
"img",
|
10468
|
+
{
|
10469
|
+
src: check_circle_default,
|
10470
|
+
width: "14px",
|
10471
|
+
height: "15px",
|
10472
|
+
alt: "Check Icon"
|
10473
|
+
}
|
10474
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, /* @__PURE__ */ React.createElement("div", null, window?.aesirx_analytics_translate?.txt_form_data ?? t("txt_form_data"))))), /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black" }, t("txt_please_note")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10475
|
+
"img",
|
10476
|
+
{
|
10477
|
+
src: check_circle_default,
|
10478
|
+
width: "14px",
|
10479
|
+
height: "15px",
|
10480
|
+
alt: "Check Icon"
|
10481
|
+
}
|
10482
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, /* @__PURE__ */ React.createElement("div", null, window?.aesirx_analytics_translate?.txt_we_do_not_share ?? t("txt_we_do_not_share")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10483
|
+
"img",
|
10484
|
+
{
|
10485
|
+
src: check_circle_default,
|
10486
|
+
width: "14px",
|
10487
|
+
height: "15px",
|
10488
|
+
alt: "Check Icon"
|
10489
|
+
}
|
10490
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, /* @__PURE__ */ React.createElement("div", null, window?.aesirx_analytics_translate?.txt_you_can_opt_in ?? t("txt_you_can_opt_in")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10491
|
+
"img",
|
10492
|
+
{
|
10493
|
+
src: check_circle_default,
|
10494
|
+
width: "14px",
|
10495
|
+
height: "15px",
|
10496
|
+
alt: "Check Icon"
|
10497
|
+
}
|
10498
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_for_more_details ? /* @__PURE__ */ React.createElement(
|
10499
|
+
"div",
|
10500
|
+
{
|
10501
|
+
dangerouslySetInnerHTML: {
|
10502
|
+
__html: window?.aesirx_analytics_translate?.txt_for_more_details
|
10503
|
+
}
|
10504
|
+
}
|
10505
|
+
) : /* @__PURE__ */ React.createElement(
|
10408
10506
|
"div",
|
10409
10507
|
{
|
10410
10508
|
dangerouslySetInnerHTML: {
|
@@ -10415,125 +10513,321 @@ var TermsComponent = ({
|
|
10415
10513
|
}
|
10416
10514
|
))))))
|
10417
10515
|
),
|
10418
|
-
/* @__PURE__ */ React.createElement(
|
10419
|
-
|
10516
|
+
/* @__PURE__ */ React.createElement(
|
10517
|
+
Tab,
|
10420
10518
|
{
|
10421
|
-
|
10422
|
-
|
10423
|
-
|
10424
|
-
|
10519
|
+
eventKey: "detail",
|
10520
|
+
title: window?.aesirx_analytics_translate?.txt_details ?? t("txt_details"),
|
10521
|
+
className: "px-2 px-lg-4"
|
10522
|
+
},
|
10523
|
+
/* @__PURE__ */ React.createElement("div", { className: `about_section` }, /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-2 text-black fw-semibold" }, window?.aesirx_analytics_translate?.txt_manage_your_consent ?? t("txt_manage_your_consent")), /* @__PURE__ */ React.createElement("p", { className: "mt-0 mb-1 mb-lg-3" }, layout === "simple-consent-mode" ? window?.aesirx_analytics_translate?.txt_choose_how_we_use_simple ?? t("txt_choose_how_we_use_simple") : window?.aesirx_analytics_translate?.txt_choose_how_we_use ?? t("txt_choose_how_we_use")), /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black fw-semibold" }, window?.aesirx_analytics_translate?.txt_benefit ?? t("txt_benefit")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10524
|
+
"img",
|
10525
|
+
{
|
10526
|
+
src: check_circle_default,
|
10527
|
+
width: "14px",
|
10528
|
+
height: "15px",
|
10529
|
+
alt: "Check Icon"
|
10425
10530
|
}
|
10426
|
-
}
|
10427
|
-
|
10428
|
-
|
10429
|
-
|
10430
|
-
|
10431
|
-
|
10432
|
-
interpolation: { escapeValue: false }
|
10433
|
-
})
|
10531
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_control_your_data ? /* @__PURE__ */ React.createElement(
|
10532
|
+
"div",
|
10533
|
+
{
|
10534
|
+
dangerouslySetInnerHTML: {
|
10535
|
+
__html: window?.aesirx_analytics_translate?.txt_control_your_data
|
10536
|
+
}
|
10434
10537
|
}
|
10435
|
-
|
10436
|
-
|
10437
|
-
|
10438
|
-
|
10439
|
-
|
10440
|
-
|
10441
|
-
|
10442
|
-
}
|
10538
|
+
) : /* @__PURE__ */ React.createElement(
|
10539
|
+
"div",
|
10540
|
+
{
|
10541
|
+
dangerouslySetInnerHTML: {
|
10542
|
+
__html: t("txt_control_your_data", {
|
10543
|
+
interpolation: { escapeValue: false }
|
10544
|
+
})
|
10545
|
+
}
|
10443
10546
|
}
|
10444
|
-
}
|
10445
|
-
|
10446
|
-
|
10447
|
-
|
10448
|
-
|
10449
|
-
|
10450
|
-
|
10451
|
-
})
|
10547
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10548
|
+
"img",
|
10549
|
+
{
|
10550
|
+
src: check_circle_default,
|
10551
|
+
width: "14px",
|
10552
|
+
height: "15px",
|
10553
|
+
alt: "Check Icon"
|
10452
10554
|
}
|
10453
|
-
}
|
10454
|
-
|
10455
|
-
|
10456
|
-
|
10457
|
-
|
10458
|
-
|
10459
|
-
interpolation: { escapeValue: false }
|
10460
|
-
})
|
10555
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_earn_rewards ? /* @__PURE__ */ React.createElement(
|
10556
|
+
"div",
|
10557
|
+
{
|
10558
|
+
dangerouslySetInnerHTML: {
|
10559
|
+
__html: window?.aesirx_analytics_translate?.txt_earn_rewards
|
10560
|
+
}
|
10461
10561
|
}
|
10462
|
-
|
10463
|
-
|
10464
|
-
|
10465
|
-
|
10466
|
-
|
10467
|
-
|
10468
|
-
|
10469
|
-
}
|
10562
|
+
) : /* @__PURE__ */ React.createElement(
|
10563
|
+
"div",
|
10564
|
+
{
|
10565
|
+
dangerouslySetInnerHTML: {
|
10566
|
+
__html: t("txt_earn_rewards", {
|
10567
|
+
interpolation: { escapeValue: false }
|
10568
|
+
})
|
10569
|
+
}
|
10470
10570
|
}
|
10471
|
-
}
|
10472
|
-
|
10473
|
-
|
10474
|
-
|
10475
|
-
|
10476
|
-
|
10477
|
-
|
10478
|
-
interpolation: { escapeValue: false }
|
10479
|
-
})
|
10571
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10572
|
+
"img",
|
10573
|
+
{
|
10574
|
+
src: check_circle_default,
|
10575
|
+
width: "14px",
|
10576
|
+
height: "15px",
|
10577
|
+
alt: "Check Icon"
|
10480
10578
|
}
|
10481
|
-
}
|
10482
|
-
|
10483
|
-
|
10484
|
-
|
10485
|
-
|
10486
|
-
|
10487
|
-
interpolation: { escapeValue: false }
|
10488
|
-
})
|
10579
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_transparent_data ? /* @__PURE__ */ React.createElement(
|
10580
|
+
"div",
|
10581
|
+
{
|
10582
|
+
dangerouslySetInnerHTML: {
|
10583
|
+
__html: window?.aesirx_analytics_translate?.txt_transparent_data
|
10584
|
+
}
|
10489
10585
|
}
|
10490
|
-
|
10491
|
-
|
10492
|
-
|
10493
|
-
|
10494
|
-
|
10495
|
-
|
10496
|
-
|
10497
|
-
}
|
10586
|
+
) : /* @__PURE__ */ React.createElement(
|
10587
|
+
"div",
|
10588
|
+
{
|
10589
|
+
dangerouslySetInnerHTML: {
|
10590
|
+
__html: t("txt_transparent_data", {
|
10591
|
+
interpolation: { escapeValue: false }
|
10592
|
+
})
|
10593
|
+
}
|
10498
10594
|
}
|
10499
|
-
}
|
10500
|
-
|
10501
|
-
|
10502
|
-
|
10503
|
-
|
10504
|
-
|
10505
|
-
|
10506
|
-
})
|
10595
|
+
)))), /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black fw-semibold" }, window?.aesirx_analytics_translate?.txt_understanding_your_privacy ?? t("txt_understanding_your_privacy")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10596
|
+
"img",
|
10597
|
+
{
|
10598
|
+
src: check_circle_default,
|
10599
|
+
width: "14px",
|
10600
|
+
height: "15px",
|
10601
|
+
alt: "Check Icon"
|
10507
10602
|
}
|
10508
|
-
}
|
10509
|
-
|
10510
|
-
|
10511
|
-
|
10512
|
-
|
10513
|
-
|
10514
|
-
interpolation: { escapeValue: false }
|
10515
|
-
})
|
10603
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_reject_no_data ? /* @__PURE__ */ React.createElement(
|
10604
|
+
"div",
|
10605
|
+
{
|
10606
|
+
dangerouslySetInnerHTML: {
|
10607
|
+
__html: window?.aesirx_analytics_translate?.txt_reject_no_data
|
10608
|
+
}
|
10516
10609
|
}
|
10517
|
-
|
10518
|
-
|
10519
|
-
|
10520
|
-
|
10521
|
-
|
10522
|
-
|
10523
|
-
|
10524
|
-
}
|
10610
|
+
) : /* @__PURE__ */ React.createElement(
|
10611
|
+
"div",
|
10612
|
+
{
|
10613
|
+
dangerouslySetInnerHTML: {
|
10614
|
+
__html: t("txt_reject_no_data", {
|
10615
|
+
interpolation: { escapeValue: false }
|
10616
|
+
})
|
10617
|
+
}
|
10525
10618
|
}
|
10526
|
-
}
|
10527
|
-
|
10528
|
-
|
10619
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10620
|
+
"img",
|
10621
|
+
{
|
10622
|
+
src: check_circle_default,
|
10623
|
+
width: "14px",
|
10624
|
+
height: "15px",
|
10625
|
+
alt: "Check Icon"
|
10626
|
+
}
|
10627
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_consent_first_third_party ? /* @__PURE__ */ React.createElement(
|
10628
|
+
"div",
|
10629
|
+
{
|
10630
|
+
dangerouslySetInnerHTML: {
|
10631
|
+
__html: window?.aesirx_analytics_translate?.txt_consent_first_third_party
|
10632
|
+
}
|
10633
|
+
}
|
10634
|
+
) : /* @__PURE__ */ React.createElement(
|
10635
|
+
"div",
|
10636
|
+
{
|
10637
|
+
dangerouslySetInnerHTML: {
|
10638
|
+
__html: t("txt_consent_first_third_party", {
|
10639
|
+
interpolation: { escapeValue: false }
|
10640
|
+
})
|
10641
|
+
}
|
10642
|
+
}
|
10643
|
+
))), layout === "simple-consent-mode" ? /* @__PURE__ */ React.createElement(React.Fragment, null) : /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10644
|
+
"img",
|
10645
|
+
{
|
10646
|
+
src: check_circle_default,
|
10647
|
+
width: "14px",
|
10648
|
+
height: "15px",
|
10649
|
+
alt: "Check Icon"
|
10650
|
+
}
|
10651
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_decentralizered_consent_choose ? /* @__PURE__ */ React.createElement(
|
10652
|
+
"div",
|
10653
|
+
{
|
10654
|
+
dangerouslySetInnerHTML: {
|
10655
|
+
__html: window?.aesirx_analytics_translate?.txt_decentralizered_consent_choose
|
10656
|
+
}
|
10657
|
+
}
|
10658
|
+
) : /* @__PURE__ */ React.createElement(
|
10659
|
+
"div",
|
10660
|
+
{
|
10661
|
+
dangerouslySetInnerHTML: {
|
10662
|
+
__html: t("txt_decentralizered_consent_choose", {
|
10663
|
+
interpolation: { escapeValue: false }
|
10664
|
+
})
|
10665
|
+
}
|
10666
|
+
}
|
10667
|
+
)))))
|
10668
|
+
),
|
10669
|
+
/* @__PURE__ */ React.createElement(
|
10670
|
+
Tab,
|
10529
10671
|
{
|
10530
|
-
|
10531
|
-
|
10532
|
-
|
10533
|
-
|
10672
|
+
eventKey: "about",
|
10673
|
+
title: window?.aesirx_analytics_translate?.txt_about ?? t("txt_about"),
|
10674
|
+
className: "px-2 px-lg-4"
|
10675
|
+
},
|
10676
|
+
/* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, /* @__PURE__ */ React.createElement("p", { className: "mb-1 mb-lg-2 text-black fw-semibold" }, window?.aesirx_analytics_translate?.txt_our_commitment_in_action ?? t("txt_our_commitment_in_action")), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10677
|
+
"img",
|
10678
|
+
{
|
10679
|
+
src: check_circle_default,
|
10680
|
+
width: "14px",
|
10681
|
+
height: "15px",
|
10682
|
+
alt: "Check Icon"
|
10534
10683
|
}
|
10535
|
-
}
|
10536
|
-
|
10684
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_private_protection ? /* @__PURE__ */ React.createElement(
|
10685
|
+
"div",
|
10686
|
+
{
|
10687
|
+
dangerouslySetInnerHTML: {
|
10688
|
+
__html: window?.aesirx_analytics_translate?.txt_private_protection
|
10689
|
+
}
|
10690
|
+
}
|
10691
|
+
) : /* @__PURE__ */ React.createElement(
|
10692
|
+
"div",
|
10693
|
+
{
|
10694
|
+
dangerouslySetInnerHTML: {
|
10695
|
+
__html: t("txt_private_protection", {
|
10696
|
+
interpolation: { escapeValue: false }
|
10697
|
+
})
|
10698
|
+
}
|
10699
|
+
}
|
10700
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10701
|
+
"img",
|
10702
|
+
{
|
10703
|
+
src: check_circle_default,
|
10704
|
+
width: "14px",
|
10705
|
+
height: "15px",
|
10706
|
+
alt: "Check Icon"
|
10707
|
+
}
|
10708
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_enables_compliance ? /* @__PURE__ */ React.createElement(
|
10709
|
+
"div",
|
10710
|
+
{
|
10711
|
+
dangerouslySetInnerHTML: {
|
10712
|
+
__html: window?.aesirx_analytics_translate?.txt_enables_compliance
|
10713
|
+
}
|
10714
|
+
}
|
10715
|
+
) : /* @__PURE__ */ React.createElement(
|
10716
|
+
"div",
|
10717
|
+
{
|
10718
|
+
dangerouslySetInnerHTML: {
|
10719
|
+
__html: t("txt_enables_compliance", {
|
10720
|
+
interpolation: { escapeValue: false }
|
10721
|
+
})
|
10722
|
+
}
|
10723
|
+
}
|
10724
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10725
|
+
"img",
|
10726
|
+
{
|
10727
|
+
src: check_circle_default,
|
10728
|
+
width: "14px",
|
10729
|
+
height: "15px",
|
10730
|
+
alt: "Check Icon"
|
10731
|
+
}
|
10732
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_proactive_protection ? /* @__PURE__ */ React.createElement(
|
10733
|
+
"div",
|
10734
|
+
{
|
10735
|
+
dangerouslySetInnerHTML: {
|
10736
|
+
__html: window?.aesirx_analytics_translate?.txt_proactive_protection
|
10737
|
+
}
|
10738
|
+
}
|
10739
|
+
) : /* @__PURE__ */ React.createElement(
|
10740
|
+
"div",
|
10741
|
+
{
|
10742
|
+
dangerouslySetInnerHTML: {
|
10743
|
+
__html: t("txt_proactive_protection", {
|
10744
|
+
interpolation: { escapeValue: false }
|
10745
|
+
})
|
10746
|
+
}
|
10747
|
+
}
|
10748
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10749
|
+
"img",
|
10750
|
+
{
|
10751
|
+
src: check_circle_default,
|
10752
|
+
width: "14px",
|
10753
|
+
height: "15px",
|
10754
|
+
alt: "Check Icon"
|
10755
|
+
}
|
10756
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, /* @__PURE__ */ React.createElement(
|
10757
|
+
"div",
|
10758
|
+
{
|
10759
|
+
dangerouslySetInnerHTML: {
|
10760
|
+
__html: t("txt_flexible_consent", {
|
10761
|
+
interpolation: { escapeValue: false }
|
10762
|
+
})
|
10763
|
+
}
|
10764
|
+
}
|
10765
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10766
|
+
"img",
|
10767
|
+
{
|
10768
|
+
src: check_circle_default,
|
10769
|
+
width: "14px",
|
10770
|
+
height: "15px",
|
10771
|
+
alt: "Check Icon"
|
10772
|
+
}
|
10773
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_learn_more ? /* @__PURE__ */ React.createElement(
|
10774
|
+
"div",
|
10775
|
+
{
|
10776
|
+
dangerouslySetInnerHTML: {
|
10777
|
+
__html: window?.aesirx_analytics_translate?.txt_learn_more
|
10778
|
+
}
|
10779
|
+
}
|
10780
|
+
) : /* @__PURE__ */ React.createElement(
|
10781
|
+
"div",
|
10782
|
+
{
|
10783
|
+
dangerouslySetInnerHTML: {
|
10784
|
+
__html: t("txt_learn_more", {
|
10785
|
+
interpolation: { escapeValue: false }
|
10786
|
+
})
|
10787
|
+
}
|
10788
|
+
}
|
10789
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-start check-line" }, /* @__PURE__ */ React.createElement("span", null, /* @__PURE__ */ React.createElement(
|
10790
|
+
"img",
|
10791
|
+
{
|
10792
|
+
src: check_circle_default,
|
10793
|
+
width: "14px",
|
10794
|
+
height: "15px",
|
10795
|
+
alt: "Check Icon"
|
10796
|
+
}
|
10797
|
+
)), /* @__PURE__ */ React.createElement("div", { className: "ms-10px" }, window?.aesirx_analytics_translate?.txt_for_business ? /* @__PURE__ */ React.createElement(
|
10798
|
+
"div",
|
10799
|
+
{
|
10800
|
+
dangerouslySetInnerHTML: {
|
10801
|
+
__html: window?.aesirx_analytics_translate?.txt_for_business
|
10802
|
+
}
|
10803
|
+
}
|
10804
|
+
) : /* @__PURE__ */ React.createElement(
|
10805
|
+
"div",
|
10806
|
+
{
|
10807
|
+
dangerouslySetInnerHTML: {
|
10808
|
+
__html: t("txt_for_business", {
|
10809
|
+
interpolation: { escapeValue: false }
|
10810
|
+
})
|
10811
|
+
}
|
10812
|
+
}
|
10813
|
+
))), /* @__PURE__ */ React.createElement("div", { className: "ms-4" }, window?.aesirx_analytics_translate?.txt_more_info_at ? /* @__PURE__ */ React.createElement(
|
10814
|
+
"div",
|
10815
|
+
{
|
10816
|
+
dangerouslySetInnerHTML: {
|
10817
|
+
__html: window?.aesirx_analytics_translate?.txt_more_info_at
|
10818
|
+
}
|
10819
|
+
}
|
10820
|
+
) : /* @__PURE__ */ React.createElement(
|
10821
|
+
"div",
|
10822
|
+
{
|
10823
|
+
dangerouslySetInnerHTML: {
|
10824
|
+
__html: t("txt_more_info_at", {
|
10825
|
+
interpolation: { escapeValue: false }
|
10826
|
+
})
|
10827
|
+
}
|
10828
|
+
}
|
10829
|
+
)))
|
10830
|
+
)
|
10537
10831
|
)) : /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("span", { className: "text-dark fw-medium" }, t(term.content)), " ", /* @__PURE__ */ React.createElement("span", { className: "" }, t(term.term)), /* @__PURE__ */ React.createElement("div", { className: "read-more d-flex justify-content-between align-items-center flex-wrap" }, term.upgrade && /* @__PURE__ */ React.createElement(
|
10538
10832
|
"a",
|
10539
10833
|
{
|
@@ -10552,14 +10846,29 @@ var TermsComponent = ({
|
|
10552
10846
|
},
|
10553
10847
|
!showReadmore ? t("txt_show_details") : t("txt_hide_details"),
|
10554
10848
|
" ",
|
10555
|
-
/* @__PURE__ */ React.createElement(
|
10556
|
-
|
10849
|
+
/* @__PURE__ */ React.createElement(
|
10850
|
+
"img",
|
10851
|
+
{
|
10852
|
+
src: arrow_default,
|
10853
|
+
className: `ms-1 ${showReadmore ? "revert" : ""}`,
|
10854
|
+
alt: "Arrow Icon"
|
10855
|
+
}
|
10856
|
+
)
|
10857
|
+
)))), isCustom ? /* @__PURE__ */ React.createElement("div", { className: "rounded-bottom position-relative overflow-hidden text-white bg-white" }, /* @__PURE__ */ React.createElement("div", { className: "position-relative pt-2 pt-lg-3 p-3" }, /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, children))) : /* @__PURE__ */ React.createElement("div", { className: "rounded-bottom position-relative overflow-hidden text-white" }, /* @__PURE__ */ React.createElement(
|
10858
|
+
"img",
|
10859
|
+
{
|
10860
|
+
className: "position-absolute h-100 w-100 object-fit-cover",
|
10861
|
+
src: bg_default,
|
10862
|
+
alt: "Background Image"
|
10863
|
+
}
|
10864
|
+
), /* @__PURE__ */ React.createElement(
|
10557
10865
|
"img",
|
10558
10866
|
{
|
10559
10867
|
className: "position-absolute h-100 w-100 object-fit-cover lightning flash-effect",
|
10560
|
-
src: bg_default
|
10868
|
+
src: bg_default,
|
10869
|
+
alt: "Background Image"
|
10561
10870
|
}
|
10562
|
-
), /* @__PURE__ */ React.createElement("div", { className: "position-relative pt-2 pt-lg-3 p-3" }, showReadmore && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, term.upgrade && t(term.upgrade), t(term.upgradetext), /* @__PURE__ */ React.createElement("div", { className: "fs-14 fst-italic" }, "* ", t("txt_no_collect")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React.createElement("div", { className: "me-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt:
|
10871
|
+
), /* @__PURE__ */ React.createElement("div", { className: "position-relative pt-2 pt-lg-3 p-3" }, showReadmore && /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("div", { className: "mb-1 mb-lg-3" }, term.upgrade && t(term.upgrade), t(term.upgradetext), /* @__PURE__ */ React.createElement("div", { className: "fs-14 fst-italic" }, "* ", t("txt_no_collect")))), /* @__PURE__ */ React.createElement("div", { className: "d-flex align-items-center justify-content-between flex-wrap" }, /* @__PURE__ */ React.createElement("div", { className: "me-2" }, /* @__PURE__ */ React.createElement("img", { src: privacy_default, alt: "SoP Icon" }), " ", window?.aesirx_analytics_translate?.txt_shield_of_privacy ?? t("txt_shield_of_privacy")), children))))
|
10563
10872
|
));
|
10564
10873
|
};
|
10565
10874
|
|
@@ -10583,7 +10892,7 @@ var LoadingStatus = ({ loading }) => {
|
|
10583
10892
|
"aria-hidden": "true"
|
10584
10893
|
}
|
10585
10894
|
),
|
10586
|
-
/* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_please_connect"))
|
10895
|
+
/* @__PURE__ */ React2.createElement("span", { className: "text" }, window?.aesirx_analytics_translate?.txt_please_connect ?? t("txt_please_connect"))
|
10587
10896
|
)) : loading === "sign" ? /* @__PURE__ */ React2.createElement("div", { className: "loading-status" }, /* @__PURE__ */ React2.createElement(
|
10588
10897
|
Button,
|
10589
10898
|
{
|
@@ -10599,7 +10908,7 @@ var LoadingStatus = ({ loading }) => {
|
|
10599
10908
|
"aria-hidden": "true"
|
10600
10909
|
}
|
10601
10910
|
),
|
10602
|
-
/* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_please_sign"))
|
10911
|
+
/* @__PURE__ */ React2.createElement("span", { className: "text" }, window?.aesirx_analytics_translate?.txt_please_sign ?? t("txt_please_sign"))
|
10603
10912
|
)) : loading === "saving" ? /* @__PURE__ */ React2.createElement("div", { className: "loading-status" }, /* @__PURE__ */ React2.createElement(
|
10604
10913
|
Button,
|
10605
10914
|
{
|
@@ -10615,7 +10924,7 @@ var LoadingStatus = ({ loading }) => {
|
|
10615
10924
|
"aria-hidden": "true"
|
10616
10925
|
}
|
10617
10926
|
),
|
10618
|
-
/* @__PURE__ */ React2.createElement("span", { className: "text" }, t("txt_saving"))
|
10927
|
+
/* @__PURE__ */ React2.createElement("span", { className: "text" }, window?.aesirx_analytics_translate?.txt_saving ?? t("txt_saving"))
|
10619
10928
|
)) : /* @__PURE__ */ React2.createElement(React2.Fragment, null));
|
10620
10929
|
};
|
10621
10930
|
|
@@ -10682,7 +10991,7 @@ var ConnectModal = ({
|
|
10682
10991
|
onHide: handleClose,
|
10683
10992
|
centered: true
|
10684
10993
|
},
|
10685
|
-
/* @__PURE__ */ React4.createElement(Modal.Body, { className: "aesirxconsent" }, /* @__PURE__ */ React4.createElement("div", { className: "p-4 block-wallet rounded-top" }, /* @__PURE__ */ React4.createElement("div", { className: "px-3 text-center" }, /* @__PURE__ */ React4.createElement("h3", { className: "fs-3 fw-semibold mt-2 mb-4 text-primary" }, t("txt_please_connect_your_wallet")), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement(Suspense, { fallback: /* @__PURE__ */ React4.createElement(React4.Fragment, null, "Loading...") }, /* @__PURE__ */ React4.createElement(SSOEthereumApp, { handleOnConnect }))), /* @__PURE__ */ React4.createElement("div", { className: "d-flex flex-row flex-wrap" }, isDesktop2 && /* @__PURE__ */ React4.createElement(
|
10994
|
+
/* @__PURE__ */ React4.createElement(Modal.Body, { className: "aesirxconsent" }, /* @__PURE__ */ React4.createElement("div", { className: "p-4 block-wallet rounded-top" }, /* @__PURE__ */ React4.createElement("div", { className: "px-3 text-center" }, /* @__PURE__ */ React4.createElement("h3", { className: "fs-3 fw-semibold mt-2 mb-4 text-primary" }, window?.aesirx_analytics_translate?.txt_please_connect_your_wallet ?? t("txt_please_connect_your_wallet")), /* @__PURE__ */ React4.createElement("div", { className: "mb-3" }, /* @__PURE__ */ React4.createElement(Suspense, { fallback: /* @__PURE__ */ React4.createElement(React4.Fragment, null, "Loading...") }, /* @__PURE__ */ React4.createElement(SSOEthereumApp, { handleOnConnect }))), /* @__PURE__ */ React4.createElement("div", { className: "d-flex flex-row flex-wrap" }, isDesktop2 && /* @__PURE__ */ React4.createElement(
|
10686
10995
|
"button",
|
10687
10996
|
{
|
10688
10997
|
disabled: isConnecting,
|
@@ -10696,7 +11005,7 @@ var ConnectModal = ({
|
|
10696
11005
|
role: "status",
|
10697
11006
|
"aria-hidden": "true"
|
10698
11007
|
}
|
10699
|
-
), t("txt_connecting")) : /* @__PURE__ */ React4.createElement(React4.Fragment, null, " ", /* @__PURE__ */ React4.createElement(
|
11008
|
+
), window?.aesirx_analytics_translate?.txt_connecting ?? t("txt_connecting")) : /* @__PURE__ */ React4.createElement(React4.Fragment, null, " ", /* @__PURE__ */ React4.createElement(
|
10700
11009
|
"img",
|
10701
11010
|
{
|
10702
11011
|
src: concordium_logo_default,
|