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