@lendi/navbar 7.20.0 → 7.21.0
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/declarations/src/SimpleNavbar/components/DesktopAction/index.d.ts +1 -1
- package/dist/declarations/src/SimpleNavbar/components/MobileAction/index.d.ts +1 -1
- package/dist/declarations/src/shared/components/CTA/index.d.ts +0 -1
- package/dist/navbar.cjs.dev.js +8 -13
- package/dist/navbar.cjs.prod.js +9 -10
- package/dist/navbar.esm.js +8 -13
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CTAProps } from '../../../shared/components/CTA';
|
|
2
2
|
import { UnReadProp } from '../CTA';
|
|
3
|
-
declare const RenderDesktopAction: ({ dashboardVariant, isAuthenticated, continueURL, showContinueAction, showTalkToExpertCta, showBookanAppointmentCta, openCommPanel, customerOwner, hasUnreadMessages,
|
|
3
|
+
declare const RenderDesktopAction: ({ dashboardVariant, isAuthenticated, continueURL, showContinueAction, showTalkToExpertCta, showBookanAppointmentCta, openCommPanel, customerOwner, hasUnreadMessages, }: CTAProps & UnReadProp) => JSX.Element;
|
|
4
4
|
export default RenderDesktopAction;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CTAProps } from '../../../shared/components/CTA';
|
|
2
2
|
import { UnReadProp } from '../CTA';
|
|
3
|
-
declare const RenderMobileAction: ({ isAuthenticated, continueURL, customerOwner, openCommPanel, showContinueAction, showTalkToExpertCta, hasUnreadMessages,
|
|
3
|
+
declare const RenderMobileAction: ({ isAuthenticated, continueURL, customerOwner, openCommPanel, showContinueAction, showTalkToExpertCta, hasUnreadMessages, }: CTAProps & UnReadProp) => JSX.Element;
|
|
4
4
|
export default RenderMobileAction;
|
|
@@ -8,7 +8,6 @@ export interface CTAProps {
|
|
|
8
8
|
showContinueAction?: boolean;
|
|
9
9
|
showTalkToExpertCta?: boolean;
|
|
10
10
|
showBookanAppointmentCta?: boolean;
|
|
11
|
-
utmCampaign?: string | null;
|
|
12
11
|
openCommPanel?: () => void;
|
|
13
12
|
teamMember?: TeamMember;
|
|
14
13
|
customerOwner?: CustomerChatState['customerOwner'];
|
package/dist/navbar.cjs.dev.js
CHANGED
|
@@ -621,17 +621,16 @@ var RenderDesktopAction = _ref2 => {
|
|
|
621
621
|
showBookanAppointmentCta = true,
|
|
622
622
|
openCommPanel = () => {},
|
|
623
623
|
customerOwner,
|
|
624
|
-
hasUnreadMessages
|
|
625
|
-
utmCampaign
|
|
624
|
+
hasUnreadMessages
|
|
626
625
|
} = _ref2;
|
|
627
626
|
var brand = lalaUtils.getBrandFromHostname();
|
|
628
627
|
var env = getEnvFromHostname((_window = window) === null || _window === void 0 ? void 0 : (_window$location = _window.location) === null || _window$location === void 0 ? void 0 : _window$location.hostname);
|
|
629
628
|
var signInURL = getSignInURL(brand, env, (_window2 = window) === null || _window2 === void 0 ? void 0 : (_window2$location = _window2.location) === null || _window2$location === void 0 ? void 0 : _window2$location.href);
|
|
630
629
|
var isDomain = brand === lalaUtils.Brand.Domain;
|
|
631
630
|
var path = isDomain ? PATH_DOMAIN : PATH_LENDI;
|
|
632
|
-
var renderSecondaryBtn = (
|
|
631
|
+
var renderSecondaryBtn = (isAuthenticated, showBookanAppointmentCta, showContinueAction) => {
|
|
633
632
|
return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
634
|
-
children: [
|
|
633
|
+
children: [showContinueAction && isAuthenticated && /*#__PURE__*/jsxRuntime.jsx(SecondaryAction, {
|
|
635
634
|
size: "sm",
|
|
636
635
|
variant: 'emphasis',
|
|
637
636
|
href: continueURL,
|
|
@@ -646,7 +645,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
646
645
|
},
|
|
647
646
|
"aria-label": continueURL,
|
|
648
647
|
children: LABEL_CONTINUE
|
|
649
|
-
}),
|
|
648
|
+
}), showContinueAction && !isAuthenticated && /*#__PURE__*/jsxRuntime.jsx(SecondaryAction, {
|
|
650
649
|
size: "sm",
|
|
651
650
|
variant: 'primary',
|
|
652
651
|
href: signInURL,
|
|
@@ -661,7 +660,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
661
660
|
},
|
|
662
661
|
"aria-label": signInURL,
|
|
663
662
|
children: LABEL_SIGN_IN
|
|
664
|
-
}), !
|
|
663
|
+
}), !showContinueAction && showBookanAppointmentCta && /*#__PURE__*/jsxRuntime.jsx(SecondaryAction, {
|
|
665
664
|
size: "sm",
|
|
666
665
|
variant: 'primary',
|
|
667
666
|
href: "".concat(path).concat(ROUTE_BOOK_APPOINTMENT),
|
|
@@ -685,7 +684,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
685
684
|
customerOwner: customerOwner,
|
|
686
685
|
dashboardVariant: dashboardVariant,
|
|
687
686
|
hasUnreadMessages: hasUnreadMessages
|
|
688
|
-
}), renderSecondaryBtn(
|
|
687
|
+
}), renderSecondaryBtn(isAuthenticated, showBookanAppointmentCta, showContinueAction), isAuthenticated && /*#__PURE__*/jsxRuntime.jsx(LogoutComponent, {})]
|
|
689
688
|
});
|
|
690
689
|
};
|
|
691
690
|
var RenderDesktopAction$1 = RenderDesktopAction;
|
|
@@ -705,14 +704,13 @@ var RenderMobileAction = _ref => {
|
|
|
705
704
|
openCommPanel = () => {},
|
|
706
705
|
showContinueAction = false,
|
|
707
706
|
showTalkToExpertCta = true,
|
|
708
|
-
hasUnreadMessages
|
|
709
|
-
utmCampaign
|
|
707
|
+
hasUnreadMessages
|
|
710
708
|
} = _ref;
|
|
711
709
|
var {
|
|
712
710
|
isTransparent
|
|
713
711
|
} = NavbarBase.useNavbarBaseContext();
|
|
714
712
|
var needToContinue = () => isAuthenticated && showContinueAction;
|
|
715
|
-
var needToSignIn = () => !isAuthenticated
|
|
713
|
+
var needToSignIn = () => !isAuthenticated;
|
|
716
714
|
var brand = lalaUtils.getBrandFromHostname();
|
|
717
715
|
var env = getEnvFromHostname((_window = window) === null || _window === void 0 ? void 0 : (_window$location = _window.location) === null || _window$location === void 0 ? void 0 : _window$location.hostname);
|
|
718
716
|
var signInURL = getSignInURL(brand, env, (_window2 = window) === null || _window2 === void 0 ? void 0 : (_window2$location = _window2.location) === null || _window2$location === void 0 ? void 0 : _window2$location.href);
|
|
@@ -1637,8 +1635,6 @@ var SimpleNavbarComponent = _ref => {
|
|
|
1637
1635
|
} = _ref;
|
|
1638
1636
|
var session = lalaReact.useSession();
|
|
1639
1637
|
var isAuthenticated = session.status === lalaReact.Status.Authenticated;
|
|
1640
|
-
var hasWindow = typeof window !== 'undefined';
|
|
1641
|
-
var utmCampaign = hasWindow ? new URLSearchParams(window.location.search).get('utm_campaign') : null;
|
|
1642
1638
|
return /*#__PURE__*/jsxRuntime.jsxs(NavbarWrapper, {
|
|
1643
1639
|
isTransparent: useTransparent,
|
|
1644
1640
|
isAuthenticated: isAuthenticated,
|
|
@@ -1659,7 +1655,6 @@ var SimpleNavbarComponent = _ref => {
|
|
|
1659
1655
|
showBookanAppointmentCta: showBookanAppointmentCta,
|
|
1660
1656
|
isAuthenticated: isAuthenticated,
|
|
1661
1657
|
continueURL: continueURL,
|
|
1662
|
-
utmCampaign: utmCampaign,
|
|
1663
1658
|
showContinueAction: showContinueAction,
|
|
1664
1659
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
1665
1660
|
customerOwner: customerOwner,
|
package/dist/navbar.cjs.prod.js
CHANGED
|
@@ -364,15 +364,15 @@ var _templateObject$c, _templateObject$b, _templateObject$a, _templateObject$9,
|
|
|
364
364
|
})
|
|
365
365
|
});
|
|
366
366
|
}, RenderDesktopAction = _ref2 => {
|
|
367
|
-
var _window, _window$location, _window2, _window2$location, {dashboardVariant: dashboardVariant, isAuthenticated: isAuthenticated, continueURL: continueURL, showContinueAction: showContinueAction = !1, showTalkToExpertCta: showTalkToExpertCta = !0, showBookanAppointmentCta: showBookanAppointmentCta = !0, openCommPanel: openCommPanel = (() => {}), customerOwner: customerOwner, hasUnreadMessages: hasUnreadMessages
|
|
367
|
+
var _window, _window$location, _window2, _window2$location, {dashboardVariant: dashboardVariant, isAuthenticated: isAuthenticated, continueURL: continueURL, showContinueAction: showContinueAction = !1, showTalkToExpertCta: showTalkToExpertCta = !0, showBookanAppointmentCta: showBookanAppointmentCta = !0, openCommPanel: openCommPanel = (() => {}), customerOwner: customerOwner, hasUnreadMessages: hasUnreadMessages} = _ref2, brand = lalaUtils.getBrandFromHostname(), env = getEnvFromHostname(null === (_window = window) || void 0 === _window || null === (_window$location = _window.location) || void 0 === _window$location ? void 0 : _window$location.hostname), signInURL = getSignInURL(brand, env, null === (_window2 = window) || void 0 === _window2 || null === (_window2$location = _window2.location) || void 0 === _window2$location ? void 0 : _window2$location.href), path = brand === lalaUtils.Brand.Domain ? PATH_DOMAIN : PATH_LENDI;
|
|
368
368
|
return jsxRuntime.jsxs(DesktopActionsWrapper, {
|
|
369
369
|
children: [ showTalkToExpertCta && jsxRuntime.jsx(RenderChatOrSideBar, {
|
|
370
370
|
openCommPanel: openCommPanel,
|
|
371
371
|
customerOwner: customerOwner,
|
|
372
372
|
dashboardVariant: dashboardVariant,
|
|
373
373
|
hasUnreadMessages: hasUnreadMessages
|
|
374
|
-
}), ((
|
|
375
|
-
children: [
|
|
374
|
+
}), ((isAuthenticated, showBookanAppointmentCta, showContinueAction) => jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
375
|
+
children: [ showContinueAction && isAuthenticated && jsxRuntime.jsx(SecondaryAction, {
|
|
376
376
|
size: "sm",
|
|
377
377
|
variant: "emphasis",
|
|
378
378
|
href: continueURL,
|
|
@@ -387,7 +387,7 @@ var _templateObject$c, _templateObject$b, _templateObject$a, _templateObject$9,
|
|
|
387
387
|
},
|
|
388
388
|
"aria-label": continueURL,
|
|
389
389
|
children: LABEL_CONTINUE
|
|
390
|
-
}),
|
|
390
|
+
}), showContinueAction && !isAuthenticated && jsxRuntime.jsx(SecondaryAction, {
|
|
391
391
|
size: "sm",
|
|
392
392
|
variant: "primary",
|
|
393
393
|
href: signInURL,
|
|
@@ -402,7 +402,7 @@ var _templateObject$c, _templateObject$b, _templateObject$a, _templateObject$9,
|
|
|
402
402
|
},
|
|
403
403
|
"aria-label": signInURL,
|
|
404
404
|
children: LABEL_SIGN_IN
|
|
405
|
-
}), !
|
|
405
|
+
}), !showContinueAction && showBookanAppointmentCta && jsxRuntime.jsx(SecondaryAction, {
|
|
406
406
|
size: "sm",
|
|
407
407
|
variant: "primary",
|
|
408
408
|
href: "".concat(path).concat(ROUTE_BOOK_APPOINTMENT),
|
|
@@ -418,13 +418,13 @@ var _templateObject$c, _templateObject$b, _templateObject$a, _templateObject$9,
|
|
|
418
418
|
"aria-label": "".concat(path).concat(ROUTE_BOOK_APPOINTMENT),
|
|
419
419
|
children: BOOK_AN_APPOINTMENT
|
|
420
420
|
}) ]
|
|
421
|
-
}))(
|
|
421
|
+
}))(isAuthenticated, showBookanAppointmentCta, showContinueAction), isAuthenticated && jsxRuntime.jsx(LogoutComponent, {}) ]
|
|
422
422
|
});
|
|
423
423
|
}, RenderDesktopAction$1 = RenderDesktopAction, MobileActionsWrapper = styled__default.default.div.withConfig({
|
|
424
424
|
displayName: "style__MobileActionsWrapper",
|
|
425
425
|
componentId: "lui__sc-jzhj4e-0"
|
|
426
426
|
})([ "display:flex;", ";.noHover{", ";:hover{box-shadow:none;}}" ], breakpoint.gte("desktop")(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteral([ "\n display: none;\n " ]))), spacing.mr("nil")), RenderMobileAction = _ref => {
|
|
427
|
-
var _window, _window$location, _window2, _window2$location, {isAuthenticated: isAuthenticated, continueURL: continueURL, customerOwner: customerOwner, openCommPanel: openCommPanel = (() => {}), showContinueAction: showContinueAction = !1, showTalkToExpertCta: showTalkToExpertCta = !0, hasUnreadMessages: hasUnreadMessages
|
|
427
|
+
var _window, _window$location, _window2, _window2$location, {isAuthenticated: isAuthenticated, continueURL: continueURL, customerOwner: customerOwner, openCommPanel: openCommPanel = (() => {}), showContinueAction: showContinueAction = !1, showTalkToExpertCta: showTalkToExpertCta = !0, hasUnreadMessages: hasUnreadMessages} = _ref, {isTransparent: isTransparent} = NavbarBase.useNavbarBaseContext(), needToContinue = () => isAuthenticated && showContinueAction, brand = lalaUtils.getBrandFromHostname(), env = getEnvFromHostname(null === (_window = window) || void 0 === _window || null === (_window$location = _window.location) || void 0 === _window$location ? void 0 : _window$location.hostname), signInURL = getSignInURL(brand, env, null === (_window2 = window) || void 0 === _window2 || null === (_window2$location = _window2.location) || void 0 === _window2$location ? void 0 : _window2$location.href), primaryLabel = null != customerOwner && customerOwner.firstName ? "Talk to ".concat(customerOwner.firstName) : needToContinue() ? CONTACT_US : "aussie" === brand ? LABEL_TALK_TO_A_BROKER : LABEL_TALK_TO_EXPERT;
|
|
428
428
|
return jsxRuntime.jsxs(MobileActionsWrapper, {
|
|
429
429
|
children: [ showTalkToExpertCta && jsxRuntime.jsx(TalkExpertAction, {
|
|
430
430
|
size: "sm",
|
|
@@ -451,7 +451,7 @@ var _templateObject$c, _templateObject$b, _templateObject$a, _templateObject$9,
|
|
|
451
451
|
}) : jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
452
452
|
children: primaryLabel
|
|
453
453
|
})
|
|
454
|
-
}), !isAuthenticated &&
|
|
454
|
+
}), !isAuthenticated && jsxRuntime.jsx(SecondaryActionMobile, {
|
|
455
455
|
size: "sm",
|
|
456
456
|
variant: isAuthenticated ? "emphasis" : "primary",
|
|
457
457
|
href: signInURL,
|
|
@@ -1023,7 +1023,7 @@ var _templateObject$8, _templateObject2$3, _templateObject$7, _templateObject$6,
|
|
|
1023
1023
|
})) ]
|
|
1024
1024
|
});
|
|
1025
1025
|
}, withCommPanel = Component => chat.withCustomerChatProvider(withCommPanelWrapper(Component)), SimpleNavbarComponent = _ref => {
|
|
1026
|
-
var {useTransparent: useTransparent = !1, showBookanAppointmentCta: showBookanAppointmentCta = !0, showTalkToExpertCta: showTalkToExpertCta = !0, homeURL: homeURL, params: params = "", continueURL: continueURL = "/", onLogout: onLogout, showContinueAction: showContinueAction = !1, hideDashboardItem: hideDashboardItem, hideManageApplicationsItem: hideManageApplicationsItem, isCommPanelOpen: isCommPanelOpen, hasUnread: hasUnread, closeCommPanel: closeCommPanel, openCommPanel: _openCommPanel, customerOwner: customerOwner} = _ref, isAuthenticated = lalaReact.useSession().status === lalaReact.Status.Authenticated
|
|
1026
|
+
var {useTransparent: useTransparent = !1, showBookanAppointmentCta: showBookanAppointmentCta = !0, showTalkToExpertCta: showTalkToExpertCta = !0, homeURL: homeURL, params: params = "", continueURL: continueURL = "/", onLogout: onLogout, showContinueAction: showContinueAction = !1, hideDashboardItem: hideDashboardItem, hideManageApplicationsItem: hideManageApplicationsItem, isCommPanelOpen: isCommPanelOpen, hasUnread: hasUnread, closeCommPanel: closeCommPanel, openCommPanel: _openCommPanel, customerOwner: customerOwner} = _ref, isAuthenticated = lalaReact.useSession().status === lalaReact.Status.Authenticated;
|
|
1027
1027
|
return jsxRuntime.jsxs(NavbarWrapper, {
|
|
1028
1028
|
isTransparent: useTransparent,
|
|
1029
1029
|
isAuthenticated: isAuthenticated,
|
|
@@ -1044,7 +1044,6 @@ var _templateObject$8, _templateObject2$3, _templateObject$7, _templateObject$6,
|
|
|
1044
1044
|
showBookanAppointmentCta: showBookanAppointmentCta,
|
|
1045
1045
|
isAuthenticated: isAuthenticated,
|
|
1046
1046
|
continueURL: continueURL,
|
|
1047
|
-
utmCampaign: utmCampaign,
|
|
1048
1047
|
showContinueAction: showContinueAction,
|
|
1049
1048
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
1050
1049
|
customerOwner: customerOwner,
|
package/dist/navbar.esm.js
CHANGED
|
@@ -588,17 +588,16 @@ var RenderDesktopAction = _ref2 => {
|
|
|
588
588
|
showBookanAppointmentCta = true,
|
|
589
589
|
openCommPanel = () => {},
|
|
590
590
|
customerOwner,
|
|
591
|
-
hasUnreadMessages
|
|
592
|
-
utmCampaign
|
|
591
|
+
hasUnreadMessages
|
|
593
592
|
} = _ref2;
|
|
594
593
|
var brand = getBrandFromHostname();
|
|
595
594
|
var env = getEnvFromHostname((_window = window) === null || _window === void 0 ? void 0 : (_window$location = _window.location) === null || _window$location === void 0 ? void 0 : _window$location.hostname);
|
|
596
595
|
var signInURL = getSignInURL(brand, env, (_window2 = window) === null || _window2 === void 0 ? void 0 : (_window2$location = _window2.location) === null || _window2$location === void 0 ? void 0 : _window2$location.href);
|
|
597
596
|
var isDomain = brand === Brand.Domain;
|
|
598
597
|
var path = isDomain ? PATH_DOMAIN : PATH_LENDI;
|
|
599
|
-
var renderSecondaryBtn = (
|
|
598
|
+
var renderSecondaryBtn = (isAuthenticated, showBookanAppointmentCta, showContinueAction) => {
|
|
600
599
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
601
|
-
children: [
|
|
600
|
+
children: [showContinueAction && isAuthenticated && /*#__PURE__*/jsx(SecondaryAction, {
|
|
602
601
|
size: "sm",
|
|
603
602
|
variant: 'emphasis',
|
|
604
603
|
href: continueURL,
|
|
@@ -613,7 +612,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
613
612
|
},
|
|
614
613
|
"aria-label": continueURL,
|
|
615
614
|
children: LABEL_CONTINUE
|
|
616
|
-
}),
|
|
615
|
+
}), showContinueAction && !isAuthenticated && /*#__PURE__*/jsx(SecondaryAction, {
|
|
617
616
|
size: "sm",
|
|
618
617
|
variant: 'primary',
|
|
619
618
|
href: signInURL,
|
|
@@ -628,7 +627,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
628
627
|
},
|
|
629
628
|
"aria-label": signInURL,
|
|
630
629
|
children: LABEL_SIGN_IN
|
|
631
|
-
}), !
|
|
630
|
+
}), !showContinueAction && showBookanAppointmentCta && /*#__PURE__*/jsx(SecondaryAction, {
|
|
632
631
|
size: "sm",
|
|
633
632
|
variant: 'primary',
|
|
634
633
|
href: "".concat(path).concat(ROUTE_BOOK_APPOINTMENT),
|
|
@@ -652,7 +651,7 @@ var RenderDesktopAction = _ref2 => {
|
|
|
652
651
|
customerOwner: customerOwner,
|
|
653
652
|
dashboardVariant: dashboardVariant,
|
|
654
653
|
hasUnreadMessages: hasUnreadMessages
|
|
655
|
-
}), renderSecondaryBtn(
|
|
654
|
+
}), renderSecondaryBtn(isAuthenticated, showBookanAppointmentCta, showContinueAction), isAuthenticated && /*#__PURE__*/jsx(LogoutComponent, {})]
|
|
656
655
|
});
|
|
657
656
|
};
|
|
658
657
|
var RenderDesktopAction$1 = RenderDesktopAction;
|
|
@@ -672,14 +671,13 @@ var RenderMobileAction = _ref => {
|
|
|
672
671
|
openCommPanel = () => {},
|
|
673
672
|
showContinueAction = false,
|
|
674
673
|
showTalkToExpertCta = true,
|
|
675
|
-
hasUnreadMessages
|
|
676
|
-
utmCampaign
|
|
674
|
+
hasUnreadMessages
|
|
677
675
|
} = _ref;
|
|
678
676
|
var {
|
|
679
677
|
isTransparent
|
|
680
678
|
} = useNavbarBaseContext();
|
|
681
679
|
var needToContinue = () => isAuthenticated && showContinueAction;
|
|
682
|
-
var needToSignIn = () => !isAuthenticated
|
|
680
|
+
var needToSignIn = () => !isAuthenticated;
|
|
683
681
|
var brand = getBrandFromHostname();
|
|
684
682
|
var env = getEnvFromHostname((_window = window) === null || _window === void 0 ? void 0 : (_window$location = _window.location) === null || _window$location === void 0 ? void 0 : _window$location.hostname);
|
|
685
683
|
var signInURL = getSignInURL(brand, env, (_window2 = window) === null || _window2 === void 0 ? void 0 : (_window2$location = _window2.location) === null || _window2$location === void 0 ? void 0 : _window2$location.href);
|
|
@@ -1604,8 +1602,6 @@ var SimpleNavbarComponent = _ref => {
|
|
|
1604
1602
|
} = _ref;
|
|
1605
1603
|
var session = useSession();
|
|
1606
1604
|
var isAuthenticated = session.status === Status.Authenticated;
|
|
1607
|
-
var hasWindow = typeof window !== 'undefined';
|
|
1608
|
-
var utmCampaign = hasWindow ? new URLSearchParams(window.location.search).get('utm_campaign') : null;
|
|
1609
1605
|
return /*#__PURE__*/jsxs(NavbarWrapper, {
|
|
1610
1606
|
isTransparent: useTransparent,
|
|
1611
1607
|
isAuthenticated: isAuthenticated,
|
|
@@ -1626,7 +1622,6 @@ var SimpleNavbarComponent = _ref => {
|
|
|
1626
1622
|
showBookanAppointmentCta: showBookanAppointmentCta,
|
|
1627
1623
|
isAuthenticated: isAuthenticated,
|
|
1628
1624
|
continueURL: continueURL,
|
|
1629
|
-
utmCampaign: utmCampaign,
|
|
1630
1625
|
showContinueAction: showContinueAction,
|
|
1631
1626
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
1632
1627
|
customerOwner: customerOwner,
|