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.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(RivIframe, { width, height, allow: "camera *;", ...iframeProps })
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 {