callix-dialer-widget 1.3.12 → 1.3.13

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.
@@ -56025,6 +56025,9 @@ function DraggableQualificationModal({
56025
56025
  }
56026
56026
  function InlineDialer({ variant = "default", isAuthenticated, ...props }) {
56027
56027
  const isMiniMode = variant === "min";
56028
+ if (!isAuthenticated || !isMiniMode) {
56029
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(FloatingDialer, { variant, isAuthenticated, ...props });
56030
+ }
56028
56031
  const operatorState = clientSdkReactExports.useCallOperatorState();
56029
56032
  const currentCall = clientSdkReactExports.useCallOperatorCurrentCall();
56030
56033
  const currentCallInfo = clientSdkReactExports.useCallOperatorCurrentCallInfo();