@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
36 lines (35 loc) • 1.35 kB
JavaScript
;
{
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "8264876d-953c-4a86-93e0-9c447a47365f", e._sentryDebugIdIdentifier = "sentry-dbid-8264876d-953c-4a86-93e0-9c447a47365f");
} catch (e) {
}
}
;
import "./individual.js";
import { defineComponent, resolveComponent, createBlock, openBlock } from "vue";
import { _ as _export_sfc } from "./_plugin-vue_export-helper-CgYpM5kA.js";
const _sfc_main = defineComponent({
name: "Individual",
props: {
legalEntityId: { type: String, required: true },
view: { type: Object, default: void 0, required: false },
options: {
type: Object,
required: true
}
}
});
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
const _component_adyen_individual = resolveComponent("adyen-individual");
return openBlock(), createBlock(_component_adyen_individual, {
legalEntityId: _ctx.legalEntityId,
view: _ctx.view,
options: _ctx.options
}, null, 8, ["legalEntityId", "view", "options"]);
}
const Individual = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
export {
Individual as default
};