@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
42 lines (41 loc) • 1.81 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] = "c036085b-21d8-4093-a968-34964e615779", e._sentryDebugIdIdentifier = "sentry-dbid-c036085b-21d8-4093-a968-34964e615779");
} catch (e) {
}
}
;
import "./transfer-instrument.js";
import { defineComponent, resolveComponent, createBlock, openBlock } from "vue";
import { _ as _export_sfc } from "./_plugin-vue_export-helper-CgYpM5kA.js";
const _sfc_main = defineComponent({
name: "TransferInstrument",
props: {
legalEntityId: { type: String, required: true },
transferInstrumentId: { type: String, required: false },
openBankingPartnerConfigId: { type: String, required: false },
settings: { type: Object, required: false },
modal: { type: Boolean, default: false, required: false },
options: {
type: Object,
required: true
}
}
});
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
const _component_adyen_transfer_instrument = resolveComponent("adyen-transfer-instrument");
return openBlock(), createBlock(_component_adyen_transfer_instrument, {
legalEntityId: _ctx.legalEntityId,
transferInstrumentId: _ctx.transferInstrumentId,
openBankingPartnerConfigId: _ctx.openBankingPartnerConfigId,
settings: _ctx.settings,
modal: _ctx.modal,
options: _ctx.options
}, null, 8, ["legalEntityId", "transferInstrumentId", "openBankingPartnerConfigId", "settings", "modal", "options"]);
}
const TransferInstrument = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
export {
TransferInstrument as default
};