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.js CHANGED
@@ -4453,7 +4453,7 @@ function SlashMenu({ items, command, selectedIndex }) {
4453
4453
  return null;
4454
4454
  }
4455
4455
  let globalIndex = -1;
4456
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-80 rounded-4xl tippy-content border bg-white shadow-2xl", children: /* @__PURE__ */ jsxRuntime.jsx(
4456
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-80 rounded-lg tippy-content border bg-white shadow-2xl", children: /* @__PURE__ */ jsxRuntime.jsx(
4457
4457
  "div",
4458
4458
  {
4459
4459
  ref: containerRef,
@@ -5191,6 +5191,9 @@ function SelectionToolbar({
5191
5191
  onMouseDownCapture: () => onInteractionStart(),
5192
5192
  onMouseUp: () => onInteractionEnd(),
5193
5193
  className: "flex items-center gap-1 rounded-lg border border-gray-200 bg-white p-1 shadow-xl",
5194
+ style: {
5195
+ backgroundColor: "white"
5196
+ },
5194
5197
  children: [
5195
5198
  /* @__PURE__ */ jsxRuntime.jsx(
5196
5199
  "button",
@@ -5787,7 +5790,7 @@ var StructiqEditor = ({
5787
5790
  return /* @__PURE__ */ jsxRuntime.jsxs(
5788
5791
  "div",
5789
5792
  {
5790
- className: `relative rounded-4xl border border-gray-300 bg-white ${customHeight ? "customHeight scrollable-y-auto" : ""}`,
5793
+ className: `relative rounded-lg border border-gray-300 bg-white ${customHeight ? "customHeight scrollable-y-auto" : ""}`,
5791
5794
  children: [
5792
5795
  /* @__PURE__ */ jsxRuntime.jsx(SelectionToolbarTippy, { editor }),
5793
5796
  hoveredRow && /* @__PURE__ */ jsxRuntime.jsx(RowAddButton, { editor, row: hoveredRow }),