@lendi/navbar 7.14.4 → 7.14.6
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.
|
@@ -4,4 +4,4 @@ export interface PrimaryCTAProps {
|
|
|
4
4
|
handleApplyNowClick: () => void;
|
|
5
5
|
application?: Application;
|
|
6
6
|
}
|
|
7
|
-
export declare const PrimaryCTA: ({ application, handleApplyNowClick }: PrimaryCTAProps) =>
|
|
7
|
+
export declare const PrimaryCTA: ({ application, handleApplyNowClick }: PrimaryCTAProps) => JSX.Element;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TalkToExpertProps } from './TalkToExpert';
|
|
3
|
+
import { NavProps } from '../Nav';
|
|
3
4
|
import { PrimaryCTAProps } from '../PrimaryCTA';
|
|
4
5
|
import { AuthenticationProps, RestrictionProps } from './AccountMenu';
|
|
5
6
|
declare type HamburgerMenuProps = PrimaryCTAProps & TalkToExpertProps & AuthenticationProps;
|
|
6
|
-
export declare const HamburgerMenu: ({ isRestricted, ...props }: HamburgerMenuProps & RestrictionProps) => JSX.Element;
|
|
7
|
+
export declare const HamburgerMenu: ({ isRestricted, navOptions, ...props }: HamburgerMenuProps & RestrictionProps & NavProps) => JSX.Element;
|
|
7
8
|
export {};
|
package/dist/navbar.cjs.dev.js
CHANGED
|
@@ -2501,53 +2501,6 @@ var MenuButton = _ref5 => {
|
|
|
2501
2501
|
};
|
|
2502
2502
|
|
|
2503
2503
|
var _excluded$2 = ["navOptions", "isSlideout", "isRestricted"];
|
|
2504
|
-
var NAV_MENU_ITEMS = [{
|
|
2505
|
-
label: 'Home Loans',
|
|
2506
|
-
children: [{
|
|
2507
|
-
label: 'Buy a new home loan',
|
|
2508
|
-
link: '/home-loans/first-home-buyer',
|
|
2509
|
-
isActive: true
|
|
2510
|
-
}, {
|
|
2511
|
-
label: 'Refinance my home loan',
|
|
2512
|
-
link: '/home-loans/refinance'
|
|
2513
|
-
}, {
|
|
2514
|
-
label: 'Renovate my home',
|
|
2515
|
-
link: '/home-loans/next-home'
|
|
2516
|
-
}, {
|
|
2517
|
-
label: 'Buy an investment property',
|
|
2518
|
-
link: '/home-loans/investment-property'
|
|
2519
|
-
}, {
|
|
2520
|
-
label: 'Aussie Home Loans',
|
|
2521
|
-
link: '/home-loans/aussie-own-home-loans'
|
|
2522
|
-
}, {
|
|
2523
|
-
label: 'Compare rates',
|
|
2524
|
-
link: '/home-loans/compare-rates'
|
|
2525
|
-
}]
|
|
2526
|
-
}, {
|
|
2527
|
-
label: "Calculators & Tools",
|
|
2528
|
-
children: [{
|
|
2529
|
-
label: 'Borrowing Power',
|
|
2530
|
-
link: '/calculators/borrowing-power'
|
|
2531
|
-
}, {
|
|
2532
|
-
label: 'Mortgage Repayments',
|
|
2533
|
-
link: '/calculators/mortgage-repayments'
|
|
2534
|
-
}, {
|
|
2535
|
-
label: 'Stamp Duty',
|
|
2536
|
-
link: '/calculators/stamp-duty-calculator'
|
|
2537
|
-
}, {
|
|
2538
|
-
label: 'Savings Calculator',
|
|
2539
|
-
link: '/calculators/savings-calculator'
|
|
2540
|
-
}, {
|
|
2541
|
-
label: 'Extra Repayments',
|
|
2542
|
-
link: '/calculators/mortgage-extra-repayment-calculator'
|
|
2543
|
-
}, {
|
|
2544
|
-
label: 'Property Reports',
|
|
2545
|
-
link: '/property-report'
|
|
2546
|
-
}]
|
|
2547
|
-
}, {
|
|
2548
|
-
label: 'Locate Us',
|
|
2549
|
-
link: '/mortgage-broker'
|
|
2550
|
-
}];
|
|
2551
2504
|
var NavMobileStyled = styled.css(["ul{", "}"], listReset);
|
|
2552
2505
|
var NavDesktopStyled = styled.css(["ul{", ";display:flex;align-items:center;}"], listReset);
|
|
2553
2506
|
var NavElement = styled__default["default"].nav.withConfig({
|
|
@@ -2885,7 +2838,7 @@ var PrimaryCTA = _ref => {
|
|
|
2885
2838
|
return !(application !== null && application !== void 0 && application.id) ? /*#__PURE__*/jsxRuntime.jsx(ApplyNowButton, {
|
|
2886
2839
|
onClick: handleApplyNowClick,
|
|
2887
2840
|
width: "100%"
|
|
2888
|
-
}) : !isRestricted
|
|
2841
|
+
}) : !isRestricted ? /*#__PURE__*/jsxRuntime.jsx(Button.AnchorButton, {
|
|
2889
2842
|
onPress: () => {
|
|
2890
2843
|
var event = {
|
|
2891
2844
|
event_name: 'Button Clicked',
|
|
@@ -2902,10 +2855,10 @@ var PrimaryCTA = _ref => {
|
|
|
2902
2855
|
isInverse: true,
|
|
2903
2856
|
width: "100%",
|
|
2904
2857
|
children: "Continue Application"
|
|
2905
|
-
});
|
|
2858
|
+
}) : /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
2906
2859
|
};
|
|
2907
2860
|
|
|
2908
|
-
var _excluded = ["isRestricted"];
|
|
2861
|
+
var _excluded = ["isRestricted", "navOptions"];
|
|
2909
2862
|
|
|
2910
2863
|
var _templateObject;
|
|
2911
2864
|
|
|
@@ -2936,7 +2889,8 @@ var StyledWrapperForButtonHack = styled__default["default"].div.withConfig({
|
|
|
2936
2889
|
})(["button{padding:0;margin-left:0.75rem;", "}"], breakpoint.gte('sm')(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n margin-left: .25rem; // Make sure focus outline doesn't get cut off by preceding links with bg colour\n "]))));
|
|
2937
2890
|
var HamburgerMenu = _ref2 => {
|
|
2938
2891
|
var {
|
|
2939
|
-
isRestricted
|
|
2892
|
+
isRestricted,
|
|
2893
|
+
navOptions
|
|
2940
2894
|
} = _ref2,
|
|
2941
2895
|
props = _objectWithoutProperties(_ref2, _excluded);
|
|
2942
2896
|
|
|
@@ -2981,7 +2935,7 @@ var HamburgerMenu = _ref2 => {
|
|
|
2981
2935
|
handleClose: toggleMenu,
|
|
2982
2936
|
title: "Menu",
|
|
2983
2937
|
children: [/*#__PURE__*/jsxRuntime.jsx(HamburgerCtaBlock, _objectSpread2({}, props)), /*#__PURE__*/jsxRuntime.jsx(Nav, {
|
|
2984
|
-
navOptions:
|
|
2938
|
+
navOptions: navOptions,
|
|
2985
2939
|
isSlideout: true,
|
|
2986
2940
|
isRestricted: isRestricted
|
|
2987
2941
|
})]
|
|
@@ -3043,7 +2997,6 @@ var LoggedInContent = _ref2 => {
|
|
|
3043
2997
|
},
|
|
3044
2998
|
children: [!isRestricted && /*#__PURE__*/jsxRuntime.jsx(MenuLink, {
|
|
3045
2999
|
href: "/dashboard/applications",
|
|
3046
|
-
isExternal: true,
|
|
3047
3000
|
onClick: () => {
|
|
3048
3001
|
var event = {
|
|
3049
3002
|
event_name: 'Link Clicked',
|
|
@@ -3058,7 +3011,6 @@ var LoggedInContent = _ref2 => {
|
|
|
3058
3011
|
children: "My Applications"
|
|
3059
3012
|
}), /*#__PURE__*/jsxRuntime.jsx(MenuLink, {
|
|
3060
3013
|
href: "/property-report/my-properties",
|
|
3061
|
-
isExternal: true,
|
|
3062
3014
|
onClick: () => {
|
|
3063
3015
|
var event = {
|
|
3064
3016
|
event_name: 'Link Clicked',
|
|
@@ -3370,6 +3322,7 @@ var HeaderWithContext = _ref => {
|
|
|
3370
3322
|
handleApplyNowClick: handleApplyNow,
|
|
3371
3323
|
application: application,
|
|
3372
3324
|
teamMember: latestTeamMember,
|
|
3325
|
+
navOptions: navOptions,
|
|
3373
3326
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
3374
3327
|
isRestricted: isRestricted
|
|
3375
3328
|
})
|
package/dist/navbar.cjs.prod.js
CHANGED
|
@@ -1574,53 +1574,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1574
1574
|
}, globalProps), {}, {
|
|
1575
1575
|
children: children
|
|
1576
1576
|
}));
|
|
1577
|
-
}, _excluded$2 = [ "navOptions", "isSlideout", "isRestricted" ],
|
|
1578
|
-
label: "Home Loans",
|
|
1579
|
-
children: [ {
|
|
1580
|
-
label: "Buy a new home loan",
|
|
1581
|
-
link: "/home-loans/first-home-buyer",
|
|
1582
|
-
isActive: !0
|
|
1583
|
-
}, {
|
|
1584
|
-
label: "Refinance my home loan",
|
|
1585
|
-
link: "/home-loans/refinance"
|
|
1586
|
-
}, {
|
|
1587
|
-
label: "Renovate my home",
|
|
1588
|
-
link: "/home-loans/next-home"
|
|
1589
|
-
}, {
|
|
1590
|
-
label: "Buy an investment property",
|
|
1591
|
-
link: "/home-loans/investment-property"
|
|
1592
|
-
}, {
|
|
1593
|
-
label: "Aussie Home Loans",
|
|
1594
|
-
link: "/home-loans/aussie-own-home-loans"
|
|
1595
|
-
}, {
|
|
1596
|
-
label: "Compare rates",
|
|
1597
|
-
link: "/home-loans/compare-rates"
|
|
1598
|
-
} ]
|
|
1599
|
-
}, {
|
|
1600
|
-
label: "Calculators & Tools",
|
|
1601
|
-
children: [ {
|
|
1602
|
-
label: "Borrowing Power",
|
|
1603
|
-
link: "/calculators/borrowing-power"
|
|
1604
|
-
}, {
|
|
1605
|
-
label: "Mortgage Repayments",
|
|
1606
|
-
link: "/calculators/mortgage-repayments"
|
|
1607
|
-
}, {
|
|
1608
|
-
label: "Stamp Duty",
|
|
1609
|
-
link: "/calculators/stamp-duty-calculator"
|
|
1610
|
-
}, {
|
|
1611
|
-
label: "Savings Calculator",
|
|
1612
|
-
link: "/calculators/savings-calculator"
|
|
1613
|
-
}, {
|
|
1614
|
-
label: "Extra Repayments",
|
|
1615
|
-
link: "/calculators/mortgage-extra-repayment-calculator"
|
|
1616
|
-
}, {
|
|
1617
|
-
label: "Property Reports",
|
|
1618
|
-
link: "/property-report"
|
|
1619
|
-
} ]
|
|
1620
|
-
}, {
|
|
1621
|
-
label: "Locate Us",
|
|
1622
|
-
link: "/mortgage-broker"
|
|
1623
|
-
} ], NavMobileStyled = styled.css([ "ul{", "}" ], listReset), NavDesktopStyled = styled.css([ "ul{", ";display:flex;align-items:center;}" ], listReset), NavElement = styled__default.default.nav.withConfig({
|
|
1577
|
+
}, _excluded$2 = [ "navOptions", "isSlideout", "isRestricted" ], NavMobileStyled = styled.css([ "ul{", "}" ], listReset), NavDesktopStyled = styled.css([ "ul{", ";display:flex;align-items:center;}" ], listReset), NavElement = styled__default.default.nav.withConfig({
|
|
1624
1578
|
displayName: "Nav__NavElement",
|
|
1625
1579
|
componentId: "lui__sc-zq7yzs-0"
|
|
1626
1580
|
})([ "", "" ], (_ref => {
|
|
@@ -1850,7 +1804,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1850
1804
|
});
|
|
1851
1805
|
}, PrimaryCTA = _ref => {
|
|
1852
1806
|
var {application: application, handleApplyNowClick: handleApplyNowClick} = _ref, {isRestricted: isRestricted} = useRestriction();
|
|
1853
|
-
return null != application && application.id ?
|
|
1807
|
+
return null != application && application.id ? isRestricted ? jsxRuntime.jsx(jsxRuntime.Fragment, {}) : jsxRuntime.jsx(Button.AnchorButton, {
|
|
1854
1808
|
onPress: () => {
|
|
1855
1809
|
var event = {
|
|
1856
1810
|
event_name: "Button Clicked",
|
|
@@ -1871,7 +1825,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1871
1825
|
onClick: handleApplyNowClick,
|
|
1872
1826
|
width: "100%"
|
|
1873
1827
|
});
|
|
1874
|
-
}, _excluded = [ "isRestricted" ], HamburgerCtaBlock = _ref => {
|
|
1828
|
+
}, _excluded = [ "isRestricted", "navOptions" ], HamburgerCtaBlock = _ref => {
|
|
1875
1829
|
var {handleApplyNowClick: handleApplyNowClick, teamMember: teamMember, application: application, openCommPanel: openCommPanel} = _ref;
|
|
1876
1830
|
return jsxRuntime.jsx(MenuPadding, {
|
|
1877
1831
|
children: jsxRuntime.jsxs(Layout.Spacer, {
|
|
@@ -1889,7 +1843,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1889
1843
|
displayName: "HamburgerMenu__StyledWrapperForButtonHack",
|
|
1890
1844
|
componentId: "lui__sc-302min-0"
|
|
1891
1845
|
})([ "button{padding:0;margin-left:0.75rem;", "}" ], breakpoint.gte("sm")(_templateObject || (_templateObject = _taggedTemplateLiteral([ "\n margin-left: .25rem; // Make sure focus outline doesn't get cut off by preceding links with bg colour\n " ])))), HamburgerMenu = _ref2 => {
|
|
1892
|
-
var {isRestricted: isRestricted} = _ref2, props = _objectWithoutProperties(_ref2, _excluded), {showMenu: showMenu, toggleMenu: toggleMenu} = useSlideoutMenu(), theme = Theme.useTheme();
|
|
1846
|
+
var {isRestricted: isRestricted, navOptions: navOptions} = _ref2, props = _objectWithoutProperties(_ref2, _excluded), {showMenu: showMenu, toggleMenu: toggleMenu} = useSlideoutMenu(), theme = Theme.useTheme();
|
|
1893
1847
|
return jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1894
1848
|
children: [ jsxRuntime.jsx(StyledWrapperForButtonHack, {
|
|
1895
1849
|
children: jsxRuntime.jsxs(Button.Button, {
|
|
@@ -1923,7 +1877,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1923
1877
|
handleClose: toggleMenu,
|
|
1924
1878
|
title: "Menu",
|
|
1925
1879
|
children: [ jsxRuntime.jsx(HamburgerCtaBlock, _objectSpread2({}, props)), jsxRuntime.jsx(Nav, {
|
|
1926
|
-
navOptions:
|
|
1880
|
+
navOptions: navOptions,
|
|
1927
1881
|
isSlideout: !0,
|
|
1928
1882
|
isRestricted: isRestricted
|
|
1929
1883
|
}) ]
|
|
@@ -1967,7 +1921,6 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1967
1921
|
},
|
|
1968
1922
|
children: [ !isRestricted && jsxRuntime.jsx(MenuLink, {
|
|
1969
1923
|
href: "/dashboard/applications",
|
|
1970
|
-
isExternal: !0,
|
|
1971
1924
|
onClick: () => {
|
|
1972
1925
|
var event = {
|
|
1973
1926
|
event_name: "Link Clicked",
|
|
@@ -1982,7 +1935,6 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
1982
1935
|
children: "My Applications"
|
|
1983
1936
|
}), jsxRuntime.jsx(MenuLink, {
|
|
1984
1937
|
href: "/property-report/my-properties",
|
|
1985
|
-
isExternal: !0,
|
|
1986
1938
|
onClick: () => {
|
|
1987
1939
|
var event = {
|
|
1988
1940
|
event_name: "Link Clicked",
|
|
@@ -2214,6 +2166,7 @@ var _templateObject$3, _templateObject2$1, _templateObject$2, _templateObject$1,
|
|
|
2214
2166
|
handleApplyNowClick: handleApplyNow,
|
|
2215
2167
|
application: application,
|
|
2216
2168
|
teamMember: latestTeamMember,
|
|
2169
|
+
navOptions: navOptions,
|
|
2217
2170
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
2218
2171
|
isRestricted: isRestricted
|
|
2219
2172
|
})
|
package/dist/navbar.esm.js
CHANGED
|
@@ -2474,53 +2474,6 @@ var MenuButton = _ref5 => {
|
|
|
2474
2474
|
};
|
|
2475
2475
|
|
|
2476
2476
|
var _excluded$2 = ["navOptions", "isSlideout", "isRestricted"];
|
|
2477
|
-
var NAV_MENU_ITEMS = [{
|
|
2478
|
-
label: 'Home Loans',
|
|
2479
|
-
children: [{
|
|
2480
|
-
label: 'Buy a new home loan',
|
|
2481
|
-
link: '/home-loans/first-home-buyer',
|
|
2482
|
-
isActive: true
|
|
2483
|
-
}, {
|
|
2484
|
-
label: 'Refinance my home loan',
|
|
2485
|
-
link: '/home-loans/refinance'
|
|
2486
|
-
}, {
|
|
2487
|
-
label: 'Renovate my home',
|
|
2488
|
-
link: '/home-loans/next-home'
|
|
2489
|
-
}, {
|
|
2490
|
-
label: 'Buy an investment property',
|
|
2491
|
-
link: '/home-loans/investment-property'
|
|
2492
|
-
}, {
|
|
2493
|
-
label: 'Aussie Home Loans',
|
|
2494
|
-
link: '/home-loans/aussie-own-home-loans'
|
|
2495
|
-
}, {
|
|
2496
|
-
label: 'Compare rates',
|
|
2497
|
-
link: '/home-loans/compare-rates'
|
|
2498
|
-
}]
|
|
2499
|
-
}, {
|
|
2500
|
-
label: "Calculators & Tools",
|
|
2501
|
-
children: [{
|
|
2502
|
-
label: 'Borrowing Power',
|
|
2503
|
-
link: '/calculators/borrowing-power'
|
|
2504
|
-
}, {
|
|
2505
|
-
label: 'Mortgage Repayments',
|
|
2506
|
-
link: '/calculators/mortgage-repayments'
|
|
2507
|
-
}, {
|
|
2508
|
-
label: 'Stamp Duty',
|
|
2509
|
-
link: '/calculators/stamp-duty-calculator'
|
|
2510
|
-
}, {
|
|
2511
|
-
label: 'Savings Calculator',
|
|
2512
|
-
link: '/calculators/savings-calculator'
|
|
2513
|
-
}, {
|
|
2514
|
-
label: 'Extra Repayments',
|
|
2515
|
-
link: '/calculators/mortgage-extra-repayment-calculator'
|
|
2516
|
-
}, {
|
|
2517
|
-
label: 'Property Reports',
|
|
2518
|
-
link: '/property-report'
|
|
2519
|
-
}]
|
|
2520
|
-
}, {
|
|
2521
|
-
label: 'Locate Us',
|
|
2522
|
-
link: '/mortgage-broker'
|
|
2523
|
-
}];
|
|
2524
2477
|
var NavMobileStyled = css(["ul{", "}"], listReset);
|
|
2525
2478
|
var NavDesktopStyled = css(["ul{", ";display:flex;align-items:center;}"], listReset);
|
|
2526
2479
|
var NavElement = styled.nav.withConfig({
|
|
@@ -2858,7 +2811,7 @@ var PrimaryCTA = _ref => {
|
|
|
2858
2811
|
return !(application !== null && application !== void 0 && application.id) ? /*#__PURE__*/jsx(ApplyNowButton, {
|
|
2859
2812
|
onClick: handleApplyNowClick,
|
|
2860
2813
|
width: "100%"
|
|
2861
|
-
}) : !isRestricted
|
|
2814
|
+
}) : !isRestricted ? /*#__PURE__*/jsx(AnchorButton, {
|
|
2862
2815
|
onPress: () => {
|
|
2863
2816
|
var event = {
|
|
2864
2817
|
event_name: 'Button Clicked',
|
|
@@ -2875,10 +2828,10 @@ var PrimaryCTA = _ref => {
|
|
|
2875
2828
|
isInverse: true,
|
|
2876
2829
|
width: "100%",
|
|
2877
2830
|
children: "Continue Application"
|
|
2878
|
-
});
|
|
2831
|
+
}) : /*#__PURE__*/jsx(Fragment, {});
|
|
2879
2832
|
};
|
|
2880
2833
|
|
|
2881
|
-
var _excluded = ["isRestricted"];
|
|
2834
|
+
var _excluded = ["isRestricted", "navOptions"];
|
|
2882
2835
|
|
|
2883
2836
|
var _templateObject;
|
|
2884
2837
|
|
|
@@ -2909,7 +2862,8 @@ var StyledWrapperForButtonHack = styled.div.withConfig({
|
|
|
2909
2862
|
})(["button{padding:0;margin-left:0.75rem;", "}"], gte('sm')(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n margin-left: .25rem; // Make sure focus outline doesn't get cut off by preceding links with bg colour\n "]))));
|
|
2910
2863
|
var HamburgerMenu = _ref2 => {
|
|
2911
2864
|
var {
|
|
2912
|
-
isRestricted
|
|
2865
|
+
isRestricted,
|
|
2866
|
+
navOptions
|
|
2913
2867
|
} = _ref2,
|
|
2914
2868
|
props = _objectWithoutProperties(_ref2, _excluded);
|
|
2915
2869
|
|
|
@@ -2954,7 +2908,7 @@ var HamburgerMenu = _ref2 => {
|
|
|
2954
2908
|
handleClose: toggleMenu,
|
|
2955
2909
|
title: "Menu",
|
|
2956
2910
|
children: [/*#__PURE__*/jsx(HamburgerCtaBlock, _objectSpread2({}, props)), /*#__PURE__*/jsx(Nav, {
|
|
2957
|
-
navOptions:
|
|
2911
|
+
navOptions: navOptions,
|
|
2958
2912
|
isSlideout: true,
|
|
2959
2913
|
isRestricted: isRestricted
|
|
2960
2914
|
})]
|
|
@@ -3016,7 +2970,6 @@ var LoggedInContent = _ref2 => {
|
|
|
3016
2970
|
},
|
|
3017
2971
|
children: [!isRestricted && /*#__PURE__*/jsx(MenuLink, {
|
|
3018
2972
|
href: "/dashboard/applications",
|
|
3019
|
-
isExternal: true,
|
|
3020
2973
|
onClick: () => {
|
|
3021
2974
|
var event = {
|
|
3022
2975
|
event_name: 'Link Clicked',
|
|
@@ -3031,7 +2984,6 @@ var LoggedInContent = _ref2 => {
|
|
|
3031
2984
|
children: "My Applications"
|
|
3032
2985
|
}), /*#__PURE__*/jsx(MenuLink, {
|
|
3033
2986
|
href: "/property-report/my-properties",
|
|
3034
|
-
isExternal: true,
|
|
3035
2987
|
onClick: () => {
|
|
3036
2988
|
var event = {
|
|
3037
2989
|
event_name: 'Link Clicked',
|
|
@@ -3343,6 +3295,7 @@ var HeaderWithContext = _ref => {
|
|
|
3343
3295
|
handleApplyNowClick: handleApplyNow,
|
|
3344
3296
|
application: application,
|
|
3345
3297
|
teamMember: latestTeamMember,
|
|
3298
|
+
navOptions: navOptions,
|
|
3346
3299
|
openCommPanel: () => isCommPanelOpen ? closeCommPanel() : _openCommPanel(),
|
|
3347
3300
|
isRestricted: isRestricted
|
|
3348
3301
|
})
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lendi/navbar",
|
|
3
3
|
"access": "restricted",
|
|
4
|
-
"version": "7.14.
|
|
4
|
+
"version": "7.14.6",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"source": "src/index.tsx",
|
|
7
7
|
"main": "dist/navbar.cjs.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"author": "Lendi Devs",
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@lendi/lala-react": "^
|
|
16
|
+
"@lendi/lala-react": "^11.0.0",
|
|
17
17
|
"@types/react": "^16.8 || ^17.0.34",
|
|
18
18
|
"@types/styled-components": "^4.1.18",
|
|
19
19
|
"react": "^16.8 || ^17.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@lendi-ui/typography": "^5.13.4-beta.0",
|
|
41
41
|
"@lendi-ui/utils": "^6.0.2-beta.1",
|
|
42
42
|
"@lendi/analytics": "^4.0.0",
|
|
43
|
-
"@lendi/comm-panel": "^11.2.
|
|
44
|
-
"@lendi/lala-utils": "^9.
|
|
43
|
+
"@lendi/comm-panel": "^11.2.1",
|
|
44
|
+
"@lendi/lala-utils": "^9.15.1",
|
|
45
45
|
"@lendi/launchdarkly": "0.1.4",
|
|
46
46
|
"@lendi/ui": "^0.2.7-beta.0",
|
|
47
47
|
"axios": "^0.24.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"react-focus-lock": "^2.9.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@lendi/lala-react": "^
|
|
52
|
+
"@lendi/lala-react": "^11.0.0",
|
|
53
53
|
"@types/react": "^17.0.34",
|
|
54
54
|
"@types/styled-components": "^4.1.18",
|
|
55
55
|
"react": "^17.0.2",
|