@homebound/beam 3.99.0 → 3.99.1

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.d.cts CHANGED
@@ -9086,8 +9086,6 @@ interface HbSpinnerProviderProps {
9086
9086
  }
9087
9087
  declare function HbSpinnerProvider({ quips, children }: HbSpinnerProviderProps): JSX.Element;
9088
9088
 
9089
- /** Overflow `ButtonMenu` props; the trigger is always a `verticalDots` IconButton. */
9090
- type HeaderMenuAction = Omit<ButtonMenuProps, "trigger">;
9091
9089
  /**
9092
9090
  * A single action rendered by `HeaderActions` — a `Button`, an icon-only `IconButton`, or a
9093
9091
  * `ButtonMenu` (typically the overflow / more-actions menu).
@@ -9104,7 +9102,7 @@ type HeaderAction = ({
9104
9102
  kind: "icon";
9105
9103
  } & Omit<IconButtonProps, "variant">) | ({
9106
9104
  kind: "menu";
9107
- } & HeaderMenuAction);
9105
+ } & ButtonMenuProps);
9108
9106
 
9109
9107
  type ContentHeaderXss = Xss<Padding>;
9110
9108
  type ContentHeaderLevel = 2 | 3 | 4;
package/dist/index.d.ts CHANGED
@@ -9086,8 +9086,6 @@ interface HbSpinnerProviderProps {
9086
9086
  }
9087
9087
  declare function HbSpinnerProvider({ quips, children }: HbSpinnerProviderProps): JSX.Element;
9088
9088
 
9089
- /** Overflow `ButtonMenu` props; the trigger is always a `verticalDots` IconButton. */
9090
- type HeaderMenuAction = Omit<ButtonMenuProps, "trigger">;
9091
9089
  /**
9092
9090
  * A single action rendered by `HeaderActions` — a `Button`, an icon-only `IconButton`, or a
9093
9091
  * `ButtonMenu` (typically the overflow / more-actions menu).
@@ -9104,7 +9102,7 @@ type HeaderAction = ({
9104
9102
  kind: "icon";
9105
9103
  } & Omit<IconButtonProps, "variant">) | ({
9106
9104
  kind: "menu";
9107
- } & HeaderMenuAction);
9105
+ } & ButtonMenuProps);
9108
9106
 
9109
9107
  type ContentHeaderXss = Xss<Padding>;
9110
9108
  type ContentHeaderLevel = 2 | 3 | 4;
package/dist/index.js CHANGED
@@ -21471,9 +21471,7 @@ function HeaderActions(props) {
21471
21471
  ...menuProps
21472
21472
  } = action;
21473
21473
  void kind;
21474
- return /* @__PURE__ */ jsx149(ButtonMenu, { ...menuProps, trigger: {
21475
- icon: "verticalDots"
21476
- } }, key);
21474
+ return /* @__PURE__ */ jsx149(ButtonMenu, { ...menuProps }, key);
21477
21475
  }
21478
21476
  return /* @__PURE__ */ jsx149(Button, { ...action }, key);
21479
21477
  }) });