callix-dialer-widget 1.1.2 → 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,25 +54818,32 @@ function ActiveCallSummary({
54818
54818
  ] }) });
54819
54819
  }
54820
54820
  function InlineDialer(props) {
54821
- return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: tw`w-full h-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]:!h-full
54827
- [&>div]:!max-h-full
54828
- [&>div]:!min-h-0
54829
- [&>div]:!left-auto
54830
- [&>div]:!top-auto
54831
- [&>div]:!transform-none
54832
- [&>div>div]:!w-full
54833
- [&>div>div]:!max-w-full
54834
- [&>div>div]:!min-w-0
54835
- [&>div>div]:!h-full
54836
- [&>div>div]:!max-h-full
54837
- [&>div>div]:!min-h-0
54838
- [&>div>div]:!overflow-visible
54839
- `, 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
+ ] });
54840
54847
  }
54841
54848
  class CallixDialerWidget {
54842
54849
  constructor(options) {