@hexure/ui 1.13.41 → 1.13.42

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/cjs/index.js CHANGED
@@ -2327,7 +2327,7 @@ const Actions = styled.div `
2327
2327
  gap: 8px;
2328
2328
  `;
2329
2329
  const PageHeader = ({ title = '', breadcrumbs, actions, buttonMenu, tag, id, }) => {
2330
- const { format = 'primary', menuItems = [], label = '', enableHover = true, enableClick = false, show = false, } = buttonMenu || {};
2330
+ const { format = 'primary', menuItems = [], label = '', enableHover = true, enableClick = false, show = false, maxHeight = '', } = buttonMenu || {};
2331
2331
  const baseId = id || 'page-header';
2332
2332
  return (React.createElement(Wrapper$4, { id: `${baseId}-wrapper` },
2333
2333
  React.createElement(Info, { id: `${baseId}-info` },
@@ -2346,7 +2346,7 @@ const PageHeader = ({ title = '', breadcrumbs, actions, buttonMenu, tag, id, })
2346
2346
  const actionId = `${baseId}-action-${i}`;
2347
2347
  return (React.createElement(Button, Object.assign({}, buttonProps, { id: `${actionId}-button`, key: i, small: true }), label));
2348
2348
  }),
2349
- menuItems.length ? (React.createElement(ButtonMenu, { enableClick: enableClick, enableHover: enableHover, format: format, id: `${baseId}-button-menu`, label: label, menuItems: menuItems, show: show, small: true })) : null)) : null));
2349
+ menuItems.length ? (React.createElement(ButtonMenu, { enableClick: enableClick, enableHover: enableHover, format: format, id: `${baseId}-button-menu`, label: label, maxHeight: maxHeight, menuItems: menuItems, show: show, small: true })) : null)) : null));
2350
2350
  };
2351
2351
 
2352
2352
  const Wrapper$3 = styled.nav `