structiq 1.0.0 → 1.0.2

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.mjs CHANGED
@@ -4436,7 +4436,7 @@ function SlashMenu({ items, command, selectedIndex }) {
4436
4436
  return null;
4437
4437
  }
4438
4438
  let globalIndex = -1;
4439
- return /* @__PURE__ */ jsx("div", { className: "w-80 rounded-4xl tippy-content border bg-white shadow-2xl", children: /* @__PURE__ */ jsx(
4439
+ return /* @__PURE__ */ jsx("div", { className: "w-80 rounded-lg tippy-content border bg-white shadow-2xl", children: /* @__PURE__ */ jsx(
4440
4440
  "div",
4441
4441
  {
4442
4442
  ref: containerRef,
@@ -5174,6 +5174,9 @@ function SelectionToolbar({
5174
5174
  onMouseDownCapture: () => onInteractionStart(),
5175
5175
  onMouseUp: () => onInteractionEnd(),
5176
5176
  className: "flex items-center gap-1 rounded-lg border border-gray-200 bg-white p-1 shadow-xl",
5177
+ style: {
5178
+ backgroundColor: "white"
5179
+ },
5177
5180
  children: [
5178
5181
  /* @__PURE__ */ jsx(
5179
5182
  "button",
@@ -5770,7 +5773,7 @@ var StructiqEditor = ({
5770
5773
  return /* @__PURE__ */ jsxs(
5771
5774
  "div",
5772
5775
  {
5773
- className: `relative rounded-4xl border border-gray-300 bg-white ${customHeight ? "customHeight scrollable-y-auto" : ""}`,
5776
+ className: `relative rounded-lg border border-gray-300 bg-white ${customHeight ? "customHeight scrollable-y-auto" : ""}`,
5774
5777
  children: [
5775
5778
  /* @__PURE__ */ jsx(SelectionToolbarTippy, { editor }),
5776
5779
  hoveredRow && /* @__PURE__ */ jsx(RowAddButton, { editor, row: hoveredRow }),