@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 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: 1100
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: 1100
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@railway/inkwell",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Inkwell is a Markdown editor and renderer for React with an extensible plugin system.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
package/src/styles.css CHANGED
@@ -226,7 +226,7 @@
226
226
 
227
227
  .inkwell-plugin-bubble-menu-container {
228
228
  position: absolute;
229
- z-index: 1100;
229
+ z-index: 9999;
230
230
  }
231
231
  .inkwell-plugin-bubble-menu-inner {
232
232
  display: flex;