@douglasneuroinformatics/libui 3.4.0 → 3.4.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.
@@ -292,7 +292,7 @@ function ActionDropdown({
292
292
  }) {
293
293
  const optionKeys = options instanceof Array ? options : Object.keys(options);
294
294
  return /* @__PURE__ */ jsx15(DropdownMenu, { children: /* @__PURE__ */ jsxs6("div", { className: cn("w-full", className), ...props, children: [
295
- /* @__PURE__ */ jsx15(DropdownMenu.Trigger, { asChild: true, children: /* @__PURE__ */ jsx15(DropdownButton, { className: triggerClassName, disabled, children: title }) }),
295
+ /* @__PURE__ */ jsx15(DropdownMenu.Trigger, { asChild: true, disabled, children: /* @__PURE__ */ jsx15(DropdownButton, { className: triggerClassName, children: title }) }),
296
296
  /* @__PURE__ */ jsx15(DropdownMenu.Content, { align, className: contentClassName, widthFull, children: /* @__PURE__ */ jsx15(DropdownMenu.Group, { children: optionKeys.map((option) => /* @__PURE__ */ jsx15(
297
297
  DropdownMenu.Item,
298
298
  {
@@ -3200,7 +3200,7 @@ var Form = ({
3200
3200
  ...props,
3201
3201
  children: [
3202
3202
  isGrouped ? content.map((fieldGroup, i) => {
3203
- return /* @__PURE__ */ jsxs43("div", { className: "space-y-6 [&:not(:first-child)]:pt-8", children: [
3203
+ return /* @__PURE__ */ jsxs43("div", { className: "flex flex-col space-y-6 [&:not(:first-child)]:pt-8", children: [
3204
3204
  /* @__PURE__ */ jsxs43("div", { className: "space-y-1", children: [
3205
3205
  fieldGroup.title && /* @__PURE__ */ jsx131(Heading, { className: "text-base", variant: "h4", children: fieldGroup.title }),
3206
3206
  fieldGroup.description && /* @__PURE__ */ jsx131("p", { className: "text-sm italic leading-tight text-muted-foreground", children: fieldGroup.description })