@homebound/beam 3.99.0 → 3.99.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.cjs +2 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
} &
|
|
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
|
-
} &
|
|
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,
|
|
21475
|
-
icon: "verticalDots"
|
|
21476
|
-
} }, key);
|
|
21474
|
+
return /* @__PURE__ */ jsx149(ButtonMenu, { ...menuProps }, key);
|
|
21477
21475
|
}
|
|
21478
21476
|
return /* @__PURE__ */ jsx149(Button, { ...action }, key);
|
|
21479
21477
|
}) });
|
|
@@ -26133,7 +26131,7 @@ function NavbarMobileDrawer({
|
|
|
26133
26131
|
},
|
|
26134
26132
|
...tid.mobileMenuPanel,
|
|
26135
26133
|
children: [
|
|
26136
|
-
showSubLevel && mobileSubNav
|
|
26134
|
+
showSubLevel && mobileSubNav.top && /* @__PURE__ */ jsx212("div", { className: "fs0 pl1 pr1 pb2", ...tid.top, children: mobileSubNav.top }),
|
|
26137
26135
|
/* @__PURE__ */ jsx212(AppNavItems, { items: showSubLevel && mobileSubNav ? mobileSubNav.items : items, panelCollapsed: false, ...tid }),
|
|
26138
26136
|
showSubLevel && mobileSubNav?.footer
|
|
26139
26137
|
]
|