@adyen/kyc-components 3.24.0 → 3.24.1
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.
|
@@ -39385,7 +39385,7 @@ const loadCountriesDataset = async (locale) => {
|
|
|
39385
39385
|
const importForLocale = countriesImports[`./${locale}.json`];
|
|
39386
39386
|
if (!importForLocale) {
|
|
39387
39387
|
logger$6.warn(`No countries dataset for ${locale}, falling back to en-US`);
|
|
39388
|
-
return import("./en-US-CkdCbOCX.js");
|
|
39388
|
+
return (await import("./en-US-CkdCbOCX.js")).default;
|
|
39389
39389
|
}
|
|
39390
39390
|
return (await importForLocale()).default;
|
|
39391
39391
|
};
|
|
@@ -39736,7 +39736,7 @@ const ConfigurationApiProvider = ({
|
|
|
39736
39736
|
isEmbeddedDropin,
|
|
39737
39737
|
loadingContext
|
|
39738
39738
|
} = authContext;
|
|
39739
|
-
const sdkVersion = "3.24.
|
|
39739
|
+
const sdkVersion = "3.24.1";
|
|
39740
39740
|
useAnalytics({
|
|
39741
39741
|
onUserEvent,
|
|
39742
39742
|
legalEntityId: rootLegalEntityId,
|
|
@@ -40368,7 +40368,7 @@ const DebugModal = ({
|
|
|
40368
40368
|
};
|
|
40369
40369
|
const copyToClipboard = async () => {
|
|
40370
40370
|
const toCopy = {
|
|
40371
|
-
sdkVersion: "3.24.
|
|
40371
|
+
sdkVersion: "3.24.1",
|
|
40372
40372
|
experiments: Object.fromEntries(allExperimentsWithValues),
|
|
40373
40373
|
settings: Object.fromEntries(allSettingsWithValues)
|
|
40374
40374
|
};
|
|
@@ -40398,7 +40398,7 @@ const DebugModal = ({
|
|
|
40398
40398
|
children: [jsxs("div", {
|
|
40399
40399
|
className: "adyen-kyc-debug-modal__meta",
|
|
40400
40400
|
children: [jsxs("span", {
|
|
40401
|
-
children: ["SDK version: ", "3.24.
|
|
40401
|
+
children: ["SDK version: ", "3.24.1"]
|
|
40402
40402
|
}), jsxs("span", {
|
|
40403
40403
|
children: ["rootLegalEntityId: ", rootLegalEntityId]
|
|
40404
40404
|
})]
|