@proveanything/smartlinks-utils-ui 0.12.17 → 0.12.18

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.
@@ -8845,7 +8845,7 @@ function PreviewReopenPill({
8845
8845
  useLayoutEffect(() => {
8846
8846
  const el = anchorRef.current;
8847
8847
  if (typeof window === "undefined") return;
8848
- const TOP_INSET = 14;
8848
+ const TOP_INSET = 0;
8849
8849
  const fallbackTop = () => vAlign === "top" ? TOP_INSET : vAlign === "bottom" ? Math.max(0, window.innerHeight - TOP_INSET) : window.innerHeight / 2;
8850
8850
  if (!el) {
8851
8851
  setPos({ top: fallbackTop(), right: 8, left: 8 });
@@ -11123,13 +11123,13 @@ function RecordsAdminShellInner(props) {
11123
11123
  /* @__PURE__ */ jsxs(
11124
11124
  "div",
11125
11125
  {
11126
- className: "flex-1 grid border-t overflow-hidden",
11126
+ className: "flex-1 grid border-t overflow-visible relative",
11127
11127
  style: {
11128
11128
  gridTemplateColumns: railHidden || !railOpen ? "1fr" : "minmax(260px, 320px) 1fr",
11129
11129
  borderColor: "hsl(var(--ra-border))"
11130
11130
  },
11131
11131
  children: [
11132
- !railHidden && railOpen && /* @__PURE__ */ jsxs("aside", { className: "border-r overflow-hidden flex flex-col relative", style: { borderColor: "hsl(var(--ra-border))", background: "hsl(var(--ra-surface))" }, children: [
11132
+ !railHidden && railOpen && /* @__PURE__ */ jsxs("aside", { className: "border-r overflow-hidden flex flex-col relative h-full", style: { borderColor: "hsl(var(--ra-border))", background: "hsl(var(--ra-surface))" }, children: [
11133
11133
  /* @__PURE__ */ jsx(
11134
11134
  "button",
11135
11135
  {
@@ -11137,8 +11137,8 @@ function RecordsAdminShellInner(props) {
11137
11137
  onClick: () => setRailOpen(false),
11138
11138
  "aria-label": i18n.closeList,
11139
11139
  title: i18n.closeList,
11140
- className: "absolute top-1.5 right-1.5 z-10 p-1 rounded hover:bg-[hsl(var(--ra-muted))]",
11141
- style: { color: "hsl(var(--ra-muted-text))" },
11140
+ className: "absolute top-0 right-0 z-20 leading-none hover:bg-[hsl(var(--ra-muted))]",
11141
+ style: { color: "hsl(var(--ra-muted-text))", padding: 2 },
11142
11142
  children: /* @__PURE__ */ jsx(PanelLeftClose, { className: "w-3.5 h-3.5" })
11143
11143
  }
11144
11144
  ),
@@ -11459,7 +11459,6 @@ function RecordsAdminShellInner(props) {
11459
11459
  {
11460
11460
  anchorRef: railReopenAnchorRef,
11461
11461
  side: "left",
11462
- vAlign: "top",
11463
11462
  onClick: () => setRailOpen(true),
11464
11463
  ariaLabel: i18n.openList,
11465
11464
  title: i18n.openList,