sales-frontend-components 0.0.83 → 0.0.85
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/index.cjs.js +13 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +6 -6
package/dist/index.cjs.js
CHANGED
|
@@ -2725,7 +2725,19 @@ const useRemoteIdentityVerificationIframe = (config) => {
|
|
|
2725
2725
|
const isLoading = isCreatingUrl || !!remoteIdentityVerificationUrl && !isIframeLoaded;
|
|
2726
2726
|
return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsxs(salesFrontendDesignSystem.Modal.Root, { isOpen, children: [
|
|
2727
2727
|
isLoading && (loadingComponent || /* @__PURE__ */ jsxRuntime.jsx(salesFrontendDesignSystem.Loading.Wait, { bodyText: "\uBD88\uB7EC\uC624\uB294 \uC911" })),
|
|
2728
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2728
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2729
|
+
RivIframe,
|
|
2730
|
+
{
|
|
2731
|
+
width,
|
|
2732
|
+
height,
|
|
2733
|
+
allow: "camera *;",
|
|
2734
|
+
...iframeProps,
|
|
2735
|
+
style: {
|
|
2736
|
+
background: "var(--sales-color-background-100, #ffffff)",
|
|
2737
|
+
...iframeProps?.style
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
)
|
|
2729
2741
|
] }) });
|
|
2730
2742
|
};
|
|
2731
2743
|
return {
|