coinley-test 0.0.34 → 0.0.35
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.
- package/dist/index.esm.js +5 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/vanilla/coinley-vanilla.umd.js +1 -1
- package/dist/vanilla/coinley-vanilla.umd.js.map +1 -1
- package/dist/vanilla/style.css +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2094,15 +2094,17 @@ const ModernDropdown = ({
|
|
|
2094
2094
|
"div",
|
|
2095
2095
|
{
|
|
2096
2096
|
ref: dropdownRef,
|
|
2097
|
-
className: "fixed
|
|
2097
|
+
className: "fixed bg-white border-2 border-gray-200 rounded-2xl shadow-2xl overflow-hidden",
|
|
2098
2098
|
style: {
|
|
2099
2099
|
top: dropdownPosition.top,
|
|
2100
2100
|
left: dropdownPosition.left,
|
|
2101
2101
|
width: dropdownPosition.width,
|
|
2102
2102
|
maxHeight: "400px",
|
|
2103
2103
|
// Increased max height
|
|
2104
|
-
minWidth: "300px"
|
|
2104
|
+
minWidth: "300px",
|
|
2105
2105
|
// Ensure minimum width
|
|
2106
|
+
zIndex: 999999
|
|
2107
|
+
// Very high z-index to appear above modal
|
|
2106
2108
|
},
|
|
2107
2109
|
children: [
|
|
2108
2110
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "p-3 border-b border-gray-200 bg-gray-50", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -2756,7 +2758,7 @@ const EnhancedSimpleCoinleyPayment = ({
|
|
|
2756
2758
|
if (!isOpen) return null;
|
|
2757
2759
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "fixed inset-0 z-50", children: [
|
|
2758
2760
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "fixed inset-0 bg-black bg-opacity-50 transition-opacity", onClick: onClose, "aria-hidden": "true" }),
|
|
2759
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "fixed inset-0 overflow-y-auto", children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "flex min-h-screen items-center justify-center p-4", children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "relative pt-6 w-full max-w-md mx-auto shadow-xl bg-gray-100 rounded-3xl overflow-hidden", children: [
|
|
2761
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "fixed inset-0 overflow-y-auto", style: { zIndex: 51 }, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "flex min-h-screen items-center justify-center p-4", children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "relative pt-6 w-full max-w-md mx-auto shadow-xl bg-gray-100 rounded-3xl overflow-hidden", style: { zIndex: 52 }, children: [
|
|
2760
2762
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "bg-white flex justify-between items-center mb-6 mr-3 ml-3 py-4 px-2 rounded-full", children: [
|
|
2761
2763
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex-1 flex items-center gap-2 px-4", children: [
|
|
2762
2764
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "w-8 h-8 bg-purple-600 rounded-full flex items-center justify-center", children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "text-white font-bold text-sm", children: "C" }) }),
|