@adyen/kyc-components 2.50.0 → 2.50.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.
|
@@ -38414,7 +38414,7 @@ const loadCountriesDataset = async (locale) => {
|
|
|
38414
38414
|
const importForLocale = countriesImports[`./${locale}.json`];
|
|
38415
38415
|
if (!importForLocale) {
|
|
38416
38416
|
logger$6.warn(`No countries dataset for ${locale}, falling back to en-US`);
|
|
38417
|
-
return import("./en-US-CkdCbOCX.js");
|
|
38417
|
+
return (await import("./en-US-CkdCbOCX.js")).default;
|
|
38418
38418
|
}
|
|
38419
38419
|
return (await importForLocale()).default;
|
|
38420
38420
|
};
|
|
@@ -38725,7 +38725,7 @@ const ConfigurationApiProvider = ({
|
|
|
38725
38725
|
isEmbeddedDropin,
|
|
38726
38726
|
loadingContext
|
|
38727
38727
|
} = authContext;
|
|
38728
|
-
const sdkVersion = "2.50.
|
|
38728
|
+
const sdkVersion = "2.50.1";
|
|
38729
38729
|
useAnalytics({
|
|
38730
38730
|
onUserEvent,
|
|
38731
38731
|
legalEntityId: rootLegalEntityId,
|
|
@@ -39353,7 +39353,7 @@ const DebugModal = ({
|
|
|
39353
39353
|
};
|
|
39354
39354
|
const copyToClipboard = async () => {
|
|
39355
39355
|
const toCopy = {
|
|
39356
|
-
sdkVersion: "2.50.
|
|
39356
|
+
sdkVersion: "2.50.1",
|
|
39357
39357
|
experiments: Object.fromEntries(allExperimentsWithValues),
|
|
39358
39358
|
settings: Object.fromEntries(allSettingsWithValues)
|
|
39359
39359
|
};
|
|
@@ -39383,7 +39383,7 @@ const DebugModal = ({
|
|
|
39383
39383
|
children: [jsxs("div", {
|
|
39384
39384
|
className: "adyen-kyc-debug-modal__meta",
|
|
39385
39385
|
children: [jsxs("span", {
|
|
39386
|
-
children: ["SDK version: ", "2.50.
|
|
39386
|
+
children: ["SDK version: ", "2.50.1"]
|
|
39387
39387
|
}), jsxs("span", {
|
|
39388
39388
|
children: ["rootLegalEntityId: ", rootLegalEntityId]
|
|
39389
39389
|
})]
|