@carlonicora/nextjs-jsonapi 2.0.1 → 2.0.3

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.
@@ -1836,20 +1836,20 @@ function Command({ className, ...props }) {
1836
1836
  }
1837
1837
  __name(Command, "Command");
1838
1838
  function CommandDialog({
1839
- title = "Command Palette",
1840
- description = "Search for a command to run...",
1839
+ title,
1840
+ description,
1841
1841
  children,
1842
1842
  className,
1843
1843
  showCloseButton = false,
1844
1844
  ...props
1845
1845
  }) {
1846
- return /* @__PURE__ */ jsxs8(Dialog, { ...props, children: [
1847
- /* @__PURE__ */ jsxs8(DialogHeader, { className: "sr-only", children: [
1848
- /* @__PURE__ */ jsx18(DialogTitle, { children: title }),
1849
- /* @__PURE__ */ jsx18(DialogDescription, { children: description })
1846
+ return /* @__PURE__ */ jsx18(Dialog, { ...props, children: /* @__PURE__ */ jsxs8(DialogContent, { className: cn("rounded-xl! p-0 overflow-hidden p-0", className), showCloseButton, children: [
1847
+ (title || description) && /* @__PURE__ */ jsxs8(DialogHeader, { className: "sr-only", children: [
1848
+ title && /* @__PURE__ */ jsx18(DialogTitle, { children: title }),
1849
+ description && /* @__PURE__ */ jsx18(DialogDescription, { children: description })
1850
1850
  ] }),
1851
- /* @__PURE__ */ jsx18(DialogContent, { className: cn("rounded-xl! p-0 overflow-hidden p-0", className), showCloseButton, children })
1852
- ] });
1851
+ children
1852
+ ] }) });
1853
1853
  }
1854
1854
  __name(CommandDialog, "CommandDialog");
1855
1855
  function CommandInput({ className, ...props }) {
@@ -10164,7 +10164,7 @@ import { useRef as useRef17 } from "react";
10164
10164
  import dynamic from "next/dynamic";
10165
10165
  import React17 from "react";
10166
10166
  import { jsx as jsx86 } from "react/jsx-runtime";
10167
- var BlockNoteEditor = dynamic(() => import("./BlockNoteEditor-HMQWM4TQ.mjs"), {
10167
+ var BlockNoteEditor = dynamic(() => import("./BlockNoteEditor-QGEOVS3T.mjs"), {
10168
10168
  ssr: false
10169
10169
  });
10170
10170
  var BlockNoteEditorContainer = React17.memo(/* @__PURE__ */ __name(function EditorContainer(props) {
@@ -12259,21 +12259,21 @@ function TokenStatusIndicator({ className, size = "md", showExtraPages = true })
12259
12259
  ] })
12260
12260
  ] });
12261
12261
  return /* @__PURE__ */ jsxs75(Tooltip2, { children: [
12262
- /* @__PURE__ */ jsx127(TooltipTrigger, { children: /* @__PURE__ */ jsxs75(
12263
- "div",
12262
+ /* @__PURE__ */ jsxs75(
12263
+ TooltipTrigger,
12264
12264
  {
12265
12265
  className: cn("inline-flex items-center gap-1.5 cursor-default", className),
12266
12266
  "aria-label": t("billing.tokens.status", { defaultValue: "Page Status" }),
12267
12267
  children: [
12268
12268
  getBatteryIcon(),
12269
- /* @__PURE__ */ jsx127("span", { className: cn(textSize, "text-muted-foreground font-medium"), children: availableMonthlyCredits }),
12270
- showExtraPages && availableExtraCredits > 0 && /* @__PURE__ */ jsxs75("div", { className: "inline-flex items-center gap-0.5", children: [
12269
+ /* @__PURE__ */ jsx127("span", { className: cn(textSize, "text-muted-foreground font-medium leading-none"), children: availableMonthlyCredits }),
12270
+ showExtraPages && availableExtraCredits > 0 && /* @__PURE__ */ jsxs75("span", { className: "inline-flex items-center gap-0.5", children: [
12271
12271
  /* @__PURE__ */ jsx127(PlusCircle, { className: cn(smallIconSize, "text-blue-500") }),
12272
- /* @__PURE__ */ jsx127("span", { className: cn(textSize, "text-blue-500 font-medium"), children: availableExtraCredits })
12272
+ /* @__PURE__ */ jsx127("span", { className: cn(textSize, "text-blue-500 font-medium leading-none"), children: availableExtraCredits })
12273
12273
  ] })
12274
12274
  ]
12275
12275
  }
12276
- ) }),
12276
+ ),
12277
12277
  /* @__PURE__ */ jsx127(TooltipContent, { side: "top", className: "max-w-xs", children: tooltipContent })
12278
12278
  ] });
12279
12279
  }
@@ -15264,7 +15264,20 @@ function RoundPageContainer({
15264
15264
  // `flex-col` + a separate scroll body below: the header must stay
15265
15265
  // put while the panel content scrolls. Scrolling on this element
15266
15266
  // (as it did before) would carry the header away with the content.
15267
- "flex h-full shrink-0 flex-col overflow-hidden transition-all duration-300 ease-in-out",
15267
+ //
15268
+ // `relative` is load-bearing: the panel content mounts Base UI
15269
+ // dialog headers marked `sr-only`, which are `position: absolute`
15270
+ // with no offsets. Without a positioned ancestor their containing
15271
+ // block is the initial containing block, so when the panel is
15272
+ // collapsed (`w-0`) their static position lands a few px past the
15273
+ // viewport's right edge and adds to the DOCUMENT's scroll area —
15274
+ // `overflow-hidden` here cannot clip them, because it only clips
15275
+ // descendants whose containing block is inside this element. That
15276
+ // produced a page-wide horizontal scrollbar, which in turn stole
15277
+ // 15px of height and made every `100vh`/`100svh` box overflow
15278
+ // vertically too. Making this the containing block lets
15279
+ // `overflow-hidden` clip them again.
15280
+ "relative flex h-full shrink-0 flex-col overflow-hidden transition-all duration-300 ease-in-out",
15268
15281
  showDetails ? "w-96 border-l opacity-100" : "ml-0 w-0 border-l-0 opacity-0"
15269
15282
  ),
15270
15283
  children: [
@@ -23951,4 +23964,4 @@ export {
23951
23964
  useOAuthClients,
23952
23965
  useOAuthClient
23953
23966
  };
23954
- //# sourceMappingURL=chunk-RVGBVVRD.mjs.map
23967
+ //# sourceMappingURL=chunk-QHGSBZCL.mjs.map