callix-dialer-widget 1.0.8 → 1.0.9
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.
|
@@ -54818,29 +54818,30 @@ function ActiveCallSummary({
|
|
|
54818
54818
|
] }) });
|
|
54819
54819
|
}
|
|
54820
54820
|
function InlineDialer(props) {
|
|
54821
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: tw`w-full
|
|
54822
|
-
|
|
54823
|
-
|
|
54824
|
-
|
|
54825
|
-
|
|
54826
|
-
|
|
54827
|
-
|
|
54828
|
-
|
|
54829
|
-
|
|
54830
|
-
|
|
54831
|
-
|
|
54832
|
-
|
|
54833
|
-
|
|
54834
|
-
|
|
54835
|
-
|
|
54836
|
-
|
|
54837
|
-
|
|
54838
|
-
|
|
54839
|
-
|
|
54840
|
-
|
|
54841
|
-
|
|
54842
|
-
|
|
54843
|
-
|
|
54821
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: tw`w-full overflow-hidden`, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
54822
|
+
"div",
|
|
54823
|
+
{
|
|
54824
|
+
className: tw`
|
|
54825
|
+
[&>div]:!static
|
|
54826
|
+
[&>div]:!left-auto
|
|
54827
|
+
[&>div]:!top-auto
|
|
54828
|
+
[&>div]:!transform-none
|
|
54829
|
+
[&>div]:!w-full
|
|
54830
|
+
[&>div]:!max-w-full
|
|
54831
|
+
[&>div]:!min-w-0
|
|
54832
|
+
[&>div]:!overflow-visible
|
|
54833
|
+
`,
|
|
54834
|
+
style: {
|
|
54835
|
+
transform: "scale(0.7)",
|
|
54836
|
+
transformOrigin: "top center",
|
|
54837
|
+
width: "142.857%",
|
|
54838
|
+
// 100% / 0.7 = espaço real necessário
|
|
54839
|
+
marginLeft: "-21.4285%"
|
|
54840
|
+
// Centraliza: (142.857% - 100%) / 2
|
|
54841
|
+
},
|
|
54842
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(FloatingDialer, { ...props })
|
|
54843
|
+
}
|
|
54844
|
+
) });
|
|
54844
54845
|
}
|
|
54845
54846
|
class CallixDialerWidget {
|
|
54846
54847
|
constructor(options) {
|