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.jsx("div", { className: tw`w-full`, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: tw`
54822
- [&>div]:!static
54823
- [&>div]:!w-full
54824
- [&>div]:!max-w-full
54825
- [&>div]:!min-w-0
54826
- [&>div]:!left-auto
54827
- [&>div]:!top-auto
54828
- [&>div]:!transform-none
54829
- [&>div>div]:!w-full
54830
- [&>div>div]:!max-w-full
54831
- [&>div>div]:!min-w-0
54832
- [&>div>div]:!max-h-none
54833
- [&>div>div]:!overflow-visible
54834
- `, children: /* @__PURE__ */ jsxRuntimeExports.jsx(FloatingDialer, { ...props }) }) });
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) {