callix-dialer-widget 1.2.4 → 1.2.6

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.
@@ -53416,15 +53416,7 @@ function FloatingDialer({
53416
53416
  }
53417
53417
  );
53418
53418
  if (isMiniMode) {
53419
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
53420
- "div",
53421
- {
53422
- className: ["callix", "mode", "min", tw`w-full`].join(" "),
53423
- "data-callix-variant": "min",
53424
- style: { width: "100%", height: "100%" },
53425
- children: dialerContent
53426
- }
53427
- );
53419
+ return dialerContent;
53428
53420
  }
53429
53421
  const scale = Number.isFinite(contentScale) && contentScale > 0 ? contentScale : 1;
53430
53422
  const scaledWidth = DEFAULT_DIALER_DIMENSIONS.width / scale;
@@ -55183,6 +55175,17 @@ function InlineDialer({ variant = "default", ...props }) {
55183
55175
  {
55184
55176
  dangerouslySetInnerHTML: {
55185
55177
  __html: `
55178
+ /* Container externo do HTML - SEM padding/border para não vazar */
55179
+ #dialer-inline.callix.mode.min {
55180
+ display: block !important;
55181
+ width: 100% !important;
55182
+ max-width: 100% !important;
55183
+ padding: 0 !important;
55184
+ border: none !important;
55185
+ background: transparent !important;
55186
+ box-shadow: none !important;
55187
+ }
55188
+
55186
55189
  /* Estilos para modo mini quando Tailwind CDN não processa classes */
55187
55190
  .callix.mode.min {
55188
55191
  display: flex !important;
@@ -55196,6 +55199,7 @@ function InlineDialer({ variant = "default", ...props }) {
55196
55199
  color: #1e293b !important;
55197
55200
  width: 100% !important;
55198
55201
  max-width: 100% !important;
55202
+ box-sizing: border-box !important;
55199
55203
  }
55200
55204
 
55201
55205
  /* Botões do modo mini */