callix-dialer-widget 1.1.1 → 1.1.3
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,20 +54818,32 @@ function ActiveCallSummary({
|
|
|
54818
54818
|
] }) });
|
|
54819
54819
|
}
|
|
54820
54820
|
function InlineDialer(props) {
|
|
54821
|
-
return /* @__PURE__ */ jsxRuntimeExports.
|
|
54822
|
-
|
|
54823
|
-
|
|
54824
|
-
|
|
54825
|
-
|
|
54826
|
-
|
|
54827
|
-
|
|
54828
|
-
|
|
54829
|
-
|
|
54830
|
-
|
|
54831
|
-
|
|
54832
|
-
|
|
54833
|
-
|
|
54834
|
-
|
|
54821
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: { width: "100%", height: "100%" }, children: [
|
|
54822
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("style", { dangerouslySetInnerHTML: { __html: `
|
|
54823
|
+
.callix-inline-wrapper > div {
|
|
54824
|
+
position: static !important;
|
|
54825
|
+
width: 100% !important;
|
|
54826
|
+
max-width: 100% !important;
|
|
54827
|
+
min-width: 0 !important;
|
|
54828
|
+
height: 100% !important;
|
|
54829
|
+
max-height: 100% !important;
|
|
54830
|
+
min-height: 0 !important;
|
|
54831
|
+
left: auto !important;
|
|
54832
|
+
top: auto !important;
|
|
54833
|
+
transform: none !important;
|
|
54834
|
+
}
|
|
54835
|
+
.callix-inline-wrapper > div > div {
|
|
54836
|
+
width: 100% !important;
|
|
54837
|
+
max-width: 100% !important;
|
|
54838
|
+
min-width: 0 !important;
|
|
54839
|
+
height: auto !important;
|
|
54840
|
+
max-height: none !important;
|
|
54841
|
+
min-height: 0 !important;
|
|
54842
|
+
overflow: visible !important;
|
|
54843
|
+
}
|
|
54844
|
+
` } }),
|
|
54845
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "callix-inline-wrapper", children: /* @__PURE__ */ jsxRuntimeExports.jsx(FloatingDialer, { ...props }) })
|
|
54846
|
+
] });
|
|
54835
54847
|
}
|
|
54836
54848
|
class CallixDialerWidget {
|
|
54837
54849
|
constructor(options) {
|