@railway/inkwell 1.0.0 → 1.1.0
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/styles.css +1 -1
package/dist/index.cjs
CHANGED
|
@@ -148,7 +148,7 @@ function BubbleMenuWidget({
|
|
|
148
148
|
left: position.left,
|
|
149
149
|
transform: position.placement === "above" ? "translateX(-50%) translateY(-100%)" : "translateX(-50%)",
|
|
150
150
|
marginTop: position.placement === "above" ? -8 : 8,
|
|
151
|
-
zIndex:
|
|
151
|
+
zIndex: 9999
|
|
152
152
|
},
|
|
153
153
|
onMouseDown: (e) => e.preventDefault(),
|
|
154
154
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cls("inner"), children: items.map((item) => /* @__PURE__ */ jsxRuntime.jsx(item.render, { wrapSelection }, item.key)) })
|
package/dist/index.js
CHANGED
|
@@ -133,7 +133,7 @@ function BubbleMenuWidget({
|
|
|
133
133
|
left: position.left,
|
|
134
134
|
transform: position.placement === "above" ? "translateX(-50%) translateY(-100%)" : "translateX(-50%)",
|
|
135
135
|
marginTop: position.placement === "above" ? -8 : 8,
|
|
136
|
-
zIndex:
|
|
136
|
+
zIndex: 9999
|
|
137
137
|
},
|
|
138
138
|
onMouseDown: (e) => e.preventDefault(),
|
|
139
139
|
children: /* @__PURE__ */ jsx("div", { className: cls("inner"), children: items.map((item) => /* @__PURE__ */ jsx(item.render, { wrapSelection }, item.key)) })
|
package/package.json
CHANGED