@luscii-healthtech/web-ui 2.36.0 → 2.36.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.
@@ -4720,7 +4720,7 @@ var NavMenuItem = function NavMenuItem(props) {
4720
4720
  }
4721
4721
 
4722
4722
  event.preventDefault();
4723
- props.track && props.gtmEvent && props.track(props.gtmEvent);
4723
+ props.trackEvent == null ? void 0 : props.trackEvent();
4724
4724
 
4725
4725
  if (props.isExternal) {
4726
4726
  window.open(props.href, "_blank");
@@ -4784,11 +4784,13 @@ var NavMenuContent = function NavMenuContent(_ref) {
4784
4784
  }));
4785
4785
  }), /*#__PURE__*/React__default.createElement(Divider, {
4786
4786
  dark: true
4787
- }), publicItems.map(function (item) {
4787
+ }), /*#__PURE__*/React__default.createElement("div", {
4788
+ className: "mt-1"
4789
+ }, publicItems.map(function (item) {
4788
4790
  return /*#__PURE__*/React__default.createElement(NavMenuItem, _extends({}, item, {
4789
4791
  key: item.title || item.dataTestId
4790
4792
  }));
4791
- }), /*#__PURE__*/React__default.createElement("div", {
4793
+ })), /*#__PURE__*/React__default.createElement("div", {
4792
4794
  className: "mt-auto"
4793
4795
  }, isUserAuthenticated && /*#__PURE__*/React__default.createElement(NavMenuItem, _extends({}, authenticationItems.logout, {
4794
4796
  key: authenticationItems.logout.title