@biggive/components 202411281608.0.0 → 202412101644.0.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.
@@ -994,7 +994,9 @@ const BiggiveMainMenu = class {
994
994
  // this body padding workaround, we need a safe maximum value, currently 130px, beyond which
995
995
  // we will never further displace the main content.
996
996
  // (Possibly scrollHeight could have the same issue, not tested.)
997
- const scrollHeight = isNaN(this.host.scrollHeight) ? 60 : this.host.scrollHeight;
997
+ // We have also seen intermittent scrolling scenarios where `scrollHeight` is spuriously less than 60px,
998
+ // maybe related to browsers / OSes with "overscroll" features. So we also now set a fixed minimum of 60px.
999
+ const scrollHeight = isNaN(this.host.scrollHeight) ? 60 : Math.max(60, this.host.scrollHeight);
998
1000
  document.body.style.paddingTop = Math.min(130, scrollHeight).toString() + 'px';
999
1001
  }
1000
1002
  componentDidLoad() {
@@ -1050,7 +1052,7 @@ const BiggiveMainMenu = class {
1050
1052
  // see https://stenciljs.com/docs/templating-jsx#avoid-shared-jsx-nodes
1051
1053
  const secondaryNavLinksA = this.getSecondaryNavLinks();
1052
1054
  const secondaryNavLinksB = this.getSecondaryNavLinks();
1053
- return (index.h(index.Host, { key: 'bc700082c2704fd0997c6e19d03de330bc516a6f' }, index.h("div", { key: 'dcc28a480a2a621014b98a6e0c8e2e9db78ceed1', class: "row row-top" }, index.h("div", { key: 'd2775a8e0a65705b55fd15e94adf0a73bc3dd7ca', class: "social-icon-wrap" }, index.h("biggive-social-icon", { key: '5da1888189ce9034f966846d88142b1a117f2e17', service: "Facebook", url: "https://www.facebook.com/BigGive.org", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '97e4269a0c2150dccf1989637134fadcb50a71cd', service: "Twitter", url: "https://x.com/BigGive", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '456654248e582e0c22c8902d164baebdcaf36f46', service: "LinkedIn", url: "https://uk.linkedin.com/company/big-give", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '43ce9805be77252aeb59ffc4b1e9b1f23170b1d5', service: "YouTube", url: "https://www.youtube.com/channel/UC9_wH1aaTuZurJ-F9R8GDcA", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '06ed92bc183735789809f5f9f6f1f2537a081f26', service: "Instagram", url: "https://www.instagram.com/biggiveorg", "background-colour": "tertiary", "icon-colour": "black" })), index.h("div", { key: '160a9b2143d89964c1290cb892ac6a843c20d92e', class: "nav-secondary" }, secondaryNavLinksA)), index.h("nav", { key: '7667b41ec205607c9b454b08828151881e79703c', role: "navigation", "aria-label": "Main Menu" }, index.h("div", { key: 'c99a73965c9a276fe5c21df4ab3acec6b86d43fb', class: "navbar" }, index.h("div", { key: 'fcd3aa93427f7c75a57742c247ae760e9a91d7b9', class: "logo" }, index.h("a", { key: '7c51c4dd84db9ef7756d1e905c240e88b5f9c3f5', href: this.donateUrlPrefix + homePageLink, "aria-label": "Home" }, index.h("svg", { key: '8fe59dc057310613754ab9c88e2c56bba1017643', version: "1.1", x: "0px", y: "0px", viewBox: "0 0 140.9 30" }, index.h("path", { key: 'fa194af9a2279479f16ec4f81bd2a60499ac7593', d: "M51.9,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3C53.6,0,55,1.4,55,3S53.6,6.1,51.9,6.1z M49.3,23.8h5V7.7h-5V23.8z M68.5,7.7v1 c-0.8-0.7-2.3-1.4-4.1-1.4c-4.5,0-8.2,3.2-8.2,7.9c0,4.7,3.7,7.9,8.2,7.9c1.8,0,3.4-0.5,4.1-1.4v0.9c0,2.1-1.9,3.1-4.4,3.1 c-2.2,0-4-0.5-5.8-1.4V29c2.1,0.7,4.4,1,6,1c5,0,9.2-2,9.2-7.3v-15L68.5,7.7L68.5,7.7z M68.5,17.2c-0.7,1-1.9,1.4-3.2,1.4 c-2.1,0-3.8-1.2-3.8-3.4c0-2.2,1.7-3.4,3.8-3.4c1.3,0,2.5,0.6,3.2,1.5V17.2z M88.1,24.2c4,0,6.4-0.7,8.5-2V10h-11v4.7h5.8v4.1 c-0.8,0.2-1.8,0.4-3.2,0.4c-4.9,0-7.3-3.2-7.3-6.8c0-3.7,2.8-6.8,8-6.8c2.2,0,4.3,0.6,5.8,1.4V1.7c-1.5-0.6-3.4-1.1-6.1-1.1 c-7.6,0-13,5.3-13,11.8C75.5,19.1,80.4,24.2,88.1,24.2z M101.4,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3c1.8,0,3.2,1.4,3.2,3 S103.1,6.1,101.4,6.1z M98.8,23.8h5V7.7h-5V23.8z M115.1,15l-4.3-7.2H105l10.1,16.4l10.1-16.4h-5.8L115.1,15z M129.3,16.9h11.6 c0.1-7-4.2-9.5-8.4-9.5c-4.5,0-8.5,2.6-8.6,8.4c0,5.6,4.1,8.4,9.1,8.4c2.2,0,4.4-0.3,6.4-1.3v-4.4c-2.5,1.4-4.1,1.4-5.6,1.4 C131.7,19.8,129.5,19.2,129.3,16.9z M132.5,11.1c1.5,0,2.8,0.7,3,2.7h-6.2C129.6,11.9,131,11.1,132.5,11.1z M43.5,11.4 c1.2-1,1.8-2.4,1.8-4c0-3.1-3-6.3-7.3-6.3h-8v22.8h10.4c4.1,0,7.2-3,7.2-6.8C47.5,14.8,46.5,12.3,43.5,11.4z M35.2,5.7h2.4 C39,5.7,40,6.8,40,8c0,1.2-1,2.2-2.5,2.2h-2.4V5.7z M39.9,19.2h-4.7v-4.6h4.7c1.4,0,2.5,1,2.5,2.3C42.4,18.1,41.3,19.2,39.9,19.2z" }), index.h("path", { key: 'f6503a97b60c74756c9b335ac723cfbe5d36b46c', d: "M13.5,1l13.5,23H0L13.5,1z" })))), index.h("biggive-misc-icon", { key: '1557f6ef4a8d808e382ec13259a2ba100dffd484', class: "bx bx-menu", "background-colour": "white", "icon-colour": "black", icon: "MenuOpen", onClick: this.openMobileMenu }), index.h("div", { key: 'e315dba3061f239b496110531418a4b0949501b9', class: "nav-links" }, index.h("div", { key: '3e31fe6650e4d6ed993cfd20841c603b6b8107cd', class: "sidebar-logo" }, index.h("a", { key: 'c0b4dd408ce151114d7871b998a882e5b5546cd6', href: this.donateUrlPrefix + homePageLink, "aria-label": "Home" }, index.h("svg", { key: '4ec560038f6497567fdd2bf6b82040986cd5c07d', version: "1.1", x: "0px", y: "0px", viewBox: "0 0 140.9 30", id: "mobileLogo" }, index.h("path", { key: '55ffb287163ab8ad7a402e15f4bb84481dbe3beb', d: "M51.9,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3C53.6,0,55,1.4,55,3S53.6,6.1,51.9,6.1z M49.3,23.8h5V7.7h-5V23.8z M68.5,7.7v1 c-0.8-0.7-2.3-1.4-4.1-1.4c-4.5,0-8.2,3.2-8.2,7.9c0,4.7,3.7,7.9,8.2,7.9c1.8,0,3.4-0.5,4.1-1.4v0.9c0,2.1-1.9,3.1-4.4,3.1 c-2.2,0-4-0.5-5.8-1.4V29c2.1,0.7,4.4,1,6,1c5,0,9.2-2,9.2-7.3v-15L68.5,7.7L68.5,7.7z M68.5,17.2c-0.7,1-1.9,1.4-3.2,1.4 c-2.1,0-3.8-1.2-3.8-3.4c0-2.2,1.7-3.4,3.8-3.4c1.3,0,2.5,0.6,3.2,1.5V17.2z M88.1,24.2c4,0,6.4-0.7,8.5-2V10h-11v4.7h5.8v4.1 c-0.8,0.2-1.8,0.4-3.2,0.4c-4.9,0-7.3-3.2-7.3-6.8c0-3.7,2.8-6.8,8-6.8c2.2,0,4.3,0.6,5.8,1.4V1.7c-1.5-0.6-3.4-1.1-6.1-1.1 c-7.6,0-13,5.3-13,11.8C75.5,19.1,80.4,24.2,88.1,24.2z M101.4,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3c1.8,0,3.2,1.4,3.2,3 S103.1,6.1,101.4,6.1z M98.8,23.8h5V7.7h-5V23.8z M115.1,15l-4.3-7.2H105l10.1,16.4l10.1-16.4h-5.8L115.1,15z M129.3,16.9h11.6 c0.1-7-4.2-9.5-8.4-9.5c-4.5,0-8.5,2.6-8.6,8.4c0,5.6,4.1,8.4,9.1,8.4c2.2,0,4.4-0.3,6.4-1.3v-4.4c-2.5,1.4-4.1,1.4-5.6,1.4 C131.7,19.8,129.5,19.2,129.3,16.9z M132.5,11.1c1.5,0,2.8,0.7,3,2.7h-6.2C129.6,11.9,131,11.1,132.5,11.1z M43.5,11.4 c1.2-1,1.8-2.4,1.8-4c0-3.1-3-6.3-7.3-6.3h-8v22.8h10.4c4.1,0,7.2-3,7.2-6.8C47.5,14.8,46.5,12.3,43.5,11.4z M35.2,5.7h2.4 C39,5.7,40,6.8,40,8c0,1.2-1,2.2-2.5,2.2h-2.4V5.7z M39.9,19.2h-4.7v-4.6h4.7c1.4,0,2.5,1,2.5,2.3C42.4,18.1,41.3,19.2,39.9,19.2z" }), index.h("path", { key: 'a8c0756ab6aa99827fbb34c0dcb6a946fe72b4b1', d: "M13.5,1l13.5,23H0L13.5,1z" }))), index.h("biggive-misc-icon", { key: 'e63d24d1e9a9a75da451dc65df6501fbe0057953', class: "bx bx-x", "background-colour": "transparent", "icon-colour": "black", icon: "MenuClose", onClick: this.closeMobileMenu })), index.h("div", { key: '336d98952f0d1007f0802d647d610694e967e384', id: "nav-primary" }, index.h("ul", { key: '84d09332fdbe90bcb0a21f9fea30560e503a0b6c', class: "links", slot: "nav-primary" }, index.h("li", { key: 'f5d3a968c7d796427e2d39f8e1e4b856ba4583ea' }, index.h("a", { key: 'c1d9a891ee6a000d1a21846646434969044f20b9', href: makeURL('Donate', this.donateUrlPrefix, 'explore') }, "Explore Campaigns")), index.h("li", { key: '9e1ffcf96fbcd06cee445e214ac9dec784375f23' }, index.h("a", { key: '84ce6cb38b082cb98d1570e70895f6d247ee2db8', href: makeURL('Blog', this.blogUrlPrefix, 'charities') }, "For Charities")), index.h("li", { key: 'f1f47aa90d3ede1ff565348e1dbc0adb2b2016ac' }, index.h("a", { key: 'ae629f0968c497f999a2249447b23ee2c7d7fad6', href: makeURL('Blog', this.blogUrlPrefix, 'funders') }, "For Funders")), index.h("li", { key: 'c795140b49597d5384a7ed763b8332d62dd5cfbe' }, index.h("a", { key: '087b1c668ae1c205688c7f9e027f105aaa9d7e54', onClick: this.noNav }, "Match Funding", index.h("biggive-misc-icon", { key: '70c393f8f7414b2821ebaf6346cf9031f8eb1196', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '51587feb795800b4728cf2b973963f9b6329ab75', class: "sub-menu" }, index.h("li", { key: '506ccb8499fca77932866282d5adfd24ebe605db' }, index.h("a", { key: 'b572b778391258b3213baceade9f07f26253d4c5', href: makeURL('Blog', this.blogUrlPrefix, 'match-funding-explained') }, "Match Funding Explained")), index.h("li", { key: '80f37dd25108db36a355a154bba7ccbb80c65021' }, index.h("a", { key: 'df8ee8650f1409cbf5b7af27167218a0566d0f95', href: makeURL('Blog', this.blogUrlPrefix, 'impact') }, "Match Funding Impact")), index.h("li", { key: 'fe3fa96f95eeab47714b5f1d38b689c968cf200c', class: "more" }, index.h("a", { key: '2a8dcb0b336f8cd0ce0941282496a4946cfbde7e', onClick: this.noNav }, "Match Funding Opportunities", index.h("biggive-misc-icon", { key: 'a421cb5f8293bc3d403fa040316281ade1f45257', class: "bx bxs-chevron-down sub-sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '20a2d3b70fcce2396d42cc56cb059b8e41ba9910', class: "sub-sub-menu" }, index.h("li", { key: 'a5acbcc72bf2e18093e20ddd40f91aaa2bc62fb8' }, index.h("a", { key: 'd30fda8e6fc20870b18d50dd8c719e819d07a669', href: makeURL('Blog', this.blogUrlPrefix, 'christmas-challenge'), class: "icon-christmas" }, "Christmas Challenge")), index.h("li", { key: '08e9c3cd2f45aef18f0d2ff0d701d4460abaf628' }, index.h("a", { key: '25807ca9e4ef87ede47d0e7797886e88efdc14fb', href: makeURL('Blog', this.blogUrlPrefix, 'champions-for-children'), class: "icon-children" }, "Champions for Children")), index.h("li", { key: '8dd1977ae688bd84fdcdab713a2978a08d5a9881' }, index.h("a", { key: 'b101077d4d374417ce66b63360d63648cb6fd0e3', href: makeURL('Blog', this.blogUrlPrefix, 'green-match-fund'), class: "icon-green-match" }, "Green Match Fund")), index.h("li", { key: '437f6efb0b7dd2ab430867fd451c9f8f8202a5d2' }, index.h("a", { key: '48e5e9591633e5ca816110129fd89559a91a120e', href: makeURL('Blog', this.blogUrlPrefix, 'women-girls-match-fund'), class: "icon-women-girls" }, "Women & Girls Match Fund")), index.h("li", { key: 'adb75d672753c057a19c68b750ca1cc7cafa28c2' }, index.h("a", { key: '7346c433deb7e55ff2f1d60458fb277d1ef1b678', href: makeURL('Blog', this.blogUrlPrefix, 'kind2mind/'), class: "icon-mental-health" }, "Kind\u00B2Mind")), index.h("li", { key: '85debfd9ebe938ed343d5a47a4c6db491c15ef07' }, index.h("a", { key: 'c854bde25dad03c8080c668b71cb62d404c8a0c3', href: makeURL('Blog', this.blogUrlPrefix, 'artsforimpact/'), class: "icon-arts-impact" }, "Arts for Impact")), index.h("li", { key: '72fa84c51052aefd1af6f0b4c168dfd1124307b1' }, index.h("a", { key: '260f089ac5cb43eaf4b7bd5356947e82aa3fb4fb', href: makeURL('Blog', this.blogUrlPrefix, 'anchor-match-fund/'), class: "icon-anchor-match" }, "Anchor Match Fund")), index.h("li", { key: '10500c7f99f22a1162f55a850ffbb07173ec0b40' }, index.h("a", { key: '3e0d98337f109b4312ac2deb24f5558f19e47e70', href: makeURL('Blog', this.blogUrlPrefix, 'emergency-campaigns/'), class: "icon-emergency" }, "Emergency Match Fund")))), index.h("li", { key: 'ad0015e8a2eba8b4f3cc9718277c5f92a4eba373' }, index.h("a", { key: 'b1a1919e5322563b9bace018dc9334159a1f3eb4', href: makeURL('Blog', this.blogUrlPrefix, 'run-your-own-campaign/)') }, "Run your match funding campaign")))), index.h("li", { key: '5d607cf50943c68cd102a08928515eb6d34f9487' }, index.h("a", { key: 'b28e9beac1156a1e5d2fb250989752fe6c48e3bf', onClick: this.noNav }, "About Us", index.h("biggive-misc-icon", { key: '2156c5eb05ff1c9e295356ff6d89cc614f6f2a62', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: 'b64907b540804ff69753a102b903347a114e81e3', class: "sub-menu" }, index.h("li", { key: '66715b56544e37b7dd044edcf170b2d299abd303' }, index.h("a", { key: '71868234e7576ef197604beeb6a64e3956daa57c', href: makeURL('Blog', this.blogUrlPrefix, 'our-people') }, "Our People")), index.h("li", { key: 'f2e2ea9647693a493305a08cd50c1afe81b37ed4' }, index.h("a", { key: '1f80194959d1e23d435c2c4ff7595e6d9fc945d7', href: makeURL('Blog', this.blogUrlPrefix, 'our-story') }, "Our Story")), index.h("li", { key: 'cdf09968c01a21ecb694907d9c16c88db27cb131' }, index.h("a", { key: 'ce297be3859121f52a6c48929ba57a7f20cd4b9c', href: makeURL('Blog', this.blogUrlPrefix, 'donation-funds') }, "Donate by Bank Transfer")), index.h("li", { key: 'e6034f0e78f80f2c2fa215bb46c4d0cf749e0747' }, index.h("a", { key: 'ff4910cf455264d033dda335b3a91250bbeb3170', href: makeURL('Blog', this.blogUrlPrefix, 'our-fees') }, "Our Fees")), index.h("li", { key: 'b6ff54da1f845cdfd042a89fb5d664e1d2fa0221' }, index.h("a", { key: '10a1c57c4a9fd0280a8db76d2e49389f6117f342', href: makeURL('Blog', this.blogUrlPrefix, 'faqs') }, "FAQs")))), index.h("li", { key: 'f3a505a1f253e260f8e072616002e9d47af2a0d2' }, index.h("a", { key: '3c45d42c981926fb00af4f3e70104b1a143b6068', onClick: this.noNav }, "Resources", index.h("biggive-misc-icon", { key: '24fe966c97b16d6567b57031861da1d78feb4b1b', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '9200cc4220d63e70c52db83a0c7fc15e77d1474b', class: "sub-menu" }, index.h("li", { key: 'd216ff27f31c1dc7a072247608374454f62aaf61' }, index.h("a", { key: 'f1218b502a17f267b0636a1455bbacf0b3346114', href: makeURL('Blog', this.blogUrlPrefix, 'case-studies') }, "Case Studies")), index.h("li", { key: '5138f1664036fcd859d1a0d9011393a30ac5926d' }, index.h("a", { key: '7d288faa0c91a008074dca8d817ed0956542133a', href: makeURL('Blog', this.blogUrlPrefix, 'blog') }, "Blog")), index.h("li", { key: 'ae3f294e1d0d5e4a3122635dba7f251771f580cb' }, index.h("a", { key: 'ffa93e728696217a596b71d5f29f6a1c2f95d038', href: makeURL('Blog', this.blogUrlPrefix, 'reports-insights') }, "Reports & Insights")), index.h("li", { key: 'cc14f409ecf0a54ab1cfeea86b129052fe42409e' }, index.h("a", { key: 'abb2007e4e94d558a27d5594e83323a2507e06d8', href: makeURL('Blog', this.blogUrlPrefix, 'press') }, "Press"))))), index.h("div", { key: '46b783cde582218da890611d45c8378f6538fdec', class: "mobile-only" }, secondaryNavLinksB)), index.h("div", { key: 'e9f14a59ac2e0eac52fbcfa655e7f3ae1268b14d', class: "mobile-social-icon-wrap mobile-only" }, index.h("biggive-social-icon", { key: 'aa49a334d88d8a3e7b28e1f9fdea59a1686e0588', service: "Facebook", url: "https://www.facebook.com/BigGive.org", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '2db1fe7dafc3d7a19415f0a23b249cb047592b26', service: "Twitter", url: "https://x.com/BigGive", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: 'e4cab6161d57879bc494e5d2564e67a1bc13c2ae', service: "LinkedIn", url: "https://uk.linkedin.com/company/big-give", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '0f097e3f5696062fd994944cfabb65c813690cd1', service: "YouTube", url: "https://www.youtube.com/channel/UC9_wH1aaTuZurJ-F9R8GDcA", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: 'ea593ac8e09def96fcef439e4ca88ca35c6a0dd6', service: "Instagram", url: "https://www.instagram.com/biggiveorg", "background-colour": "tertiary", "icon-colour": "black" })))))));
1055
+ return (index.h(index.Host, { key: '97ac21fcc3df3f5c0dbd686ae73aff26e06755ff' }, index.h("div", { key: '65432652066234c5ab162a28b0ef4a3be7b75054', class: "row row-top" }, index.h("div", { key: '4905493c5662f9996f4d07f6b5f6554371d45cd1', class: "social-icon-wrap" }, index.h("biggive-social-icon", { key: '20be159818ce8711be456316da1cbbdc769a8ab1', service: "Facebook", url: "https://www.facebook.com/BigGive.org", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: 'ba09ed03d53bf58409588ee1a17826b479ccc542', service: "Twitter", url: "https://x.com/BigGive", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '5053d2f66ca73275aac908b435b49eec3a6e2b5b', service: "LinkedIn", url: "https://uk.linkedin.com/company/big-give", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '13ca59e6f0496929b7767309584285d5439d37b5', service: "YouTube", url: "https://www.youtube.com/channel/UC9_wH1aaTuZurJ-F9R8GDcA", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '1b583d0741daffcf2ae7cc54df450db07b8282a6', service: "Instagram", url: "https://www.instagram.com/biggiveorg", "background-colour": "tertiary", "icon-colour": "black" })), index.h("div", { key: '3f262139b138e590d04949fb6dbdeb392a9828b4', class: "nav-secondary" }, secondaryNavLinksA)), index.h("nav", { key: 'a2fbcd042c20608e23ad8ff9f21aff08870d4ce5', role: "navigation", "aria-label": "Main Menu" }, index.h("div", { key: 'fde3cca40e76c864c8b4b44c1f01e9ff56f5dbad', class: "navbar" }, index.h("div", { key: '08b1968b838c62e42aa4d539b3555be98d0c2917', class: "logo" }, index.h("a", { key: 'be9113dcdc568bad3797976cea446aa75fa6827c', href: this.donateUrlPrefix + homePageLink, "aria-label": "Home" }, index.h("svg", { key: 'd638a2695676e06bb4ac8dbc2799dd2952e8db02', version: "1.1", x: "0px", y: "0px", viewBox: "0 0 140.9 30" }, index.h("path", { key: '69fd51a1d7885f9a8644ca88134a12a53dc79590', d: "M51.9,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3C53.6,0,55,1.4,55,3S53.6,6.1,51.9,6.1z M49.3,23.8h5V7.7h-5V23.8z M68.5,7.7v1 c-0.8-0.7-2.3-1.4-4.1-1.4c-4.5,0-8.2,3.2-8.2,7.9c0,4.7,3.7,7.9,8.2,7.9c1.8,0,3.4-0.5,4.1-1.4v0.9c0,2.1-1.9,3.1-4.4,3.1 c-2.2,0-4-0.5-5.8-1.4V29c2.1,0.7,4.4,1,6,1c5,0,9.2-2,9.2-7.3v-15L68.5,7.7L68.5,7.7z M68.5,17.2c-0.7,1-1.9,1.4-3.2,1.4 c-2.1,0-3.8-1.2-3.8-3.4c0-2.2,1.7-3.4,3.8-3.4c1.3,0,2.5,0.6,3.2,1.5V17.2z M88.1,24.2c4,0,6.4-0.7,8.5-2V10h-11v4.7h5.8v4.1 c-0.8,0.2-1.8,0.4-3.2,0.4c-4.9,0-7.3-3.2-7.3-6.8c0-3.7,2.8-6.8,8-6.8c2.2,0,4.3,0.6,5.8,1.4V1.7c-1.5-0.6-3.4-1.1-6.1-1.1 c-7.6,0-13,5.3-13,11.8C75.5,19.1,80.4,24.2,88.1,24.2z M101.4,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3c1.8,0,3.2,1.4,3.2,3 S103.1,6.1,101.4,6.1z M98.8,23.8h5V7.7h-5V23.8z M115.1,15l-4.3-7.2H105l10.1,16.4l10.1-16.4h-5.8L115.1,15z M129.3,16.9h11.6 c0.1-7-4.2-9.5-8.4-9.5c-4.5,0-8.5,2.6-8.6,8.4c0,5.6,4.1,8.4,9.1,8.4c2.2,0,4.4-0.3,6.4-1.3v-4.4c-2.5,1.4-4.1,1.4-5.6,1.4 C131.7,19.8,129.5,19.2,129.3,16.9z M132.5,11.1c1.5,0,2.8,0.7,3,2.7h-6.2C129.6,11.9,131,11.1,132.5,11.1z M43.5,11.4 c1.2-1,1.8-2.4,1.8-4c0-3.1-3-6.3-7.3-6.3h-8v22.8h10.4c4.1,0,7.2-3,7.2-6.8C47.5,14.8,46.5,12.3,43.5,11.4z M35.2,5.7h2.4 C39,5.7,40,6.8,40,8c0,1.2-1,2.2-2.5,2.2h-2.4V5.7z M39.9,19.2h-4.7v-4.6h4.7c1.4,0,2.5,1,2.5,2.3C42.4,18.1,41.3,19.2,39.9,19.2z" }), index.h("path", { key: 'adc99e502002dd7506cad81debd461607e1ac069', d: "M13.5,1l13.5,23H0L13.5,1z" })))), index.h("biggive-misc-icon", { key: 'e5a281eddbcb4f965773607699d58ea4719f26c8', class: "bx bx-menu", "background-colour": "white", "icon-colour": "black", icon: "MenuOpen", onClick: this.openMobileMenu }), index.h("div", { key: '1871639e69d2244a770790d8d3870adf84b69c1f', class: "nav-links" }, index.h("div", { key: '25cf617fe44e6a085bf2dfd3a333098650fff0f1', class: "sidebar-logo" }, index.h("a", { key: '9321740211c1166973d8da7e90bde99ff12d2a1a', href: this.donateUrlPrefix + homePageLink, "aria-label": "Home" }, index.h("svg", { key: 'e5eda1c87eb96c0700ad603d4cec0fa7a9683761', version: "1.1", x: "0px", y: "0px", viewBox: "0 0 140.9 30", id: "mobileLogo" }, index.h("path", { key: 'cf85f8b91835ff654aeae6fd6cc8faa6422d3fe5', d: "M51.9,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3C53.6,0,55,1.4,55,3S53.6,6.1,51.9,6.1z M49.3,23.8h5V7.7h-5V23.8z M68.5,7.7v1 c-0.8-0.7-2.3-1.4-4.1-1.4c-4.5,0-8.2,3.2-8.2,7.9c0,4.7,3.7,7.9,8.2,7.9c1.8,0,3.4-0.5,4.1-1.4v0.9c0,2.1-1.9,3.1-4.4,3.1 c-2.2,0-4-0.5-5.8-1.4V29c2.1,0.7,4.4,1,6,1c5,0,9.2-2,9.2-7.3v-15L68.5,7.7L68.5,7.7z M68.5,17.2c-0.7,1-1.9,1.4-3.2,1.4 c-2.1,0-3.8-1.2-3.8-3.4c0-2.2,1.7-3.4,3.8-3.4c1.3,0,2.5,0.6,3.2,1.5V17.2z M88.1,24.2c4,0,6.4-0.7,8.5-2V10h-11v4.7h5.8v4.1 c-0.8,0.2-1.8,0.4-3.2,0.4c-4.9,0-7.3-3.2-7.3-6.8c0-3.7,2.8-6.8,8-6.8c2.2,0,4.3,0.6,5.8,1.4V1.7c-1.5-0.6-3.4-1.1-6.1-1.1 c-7.6,0-13,5.3-13,11.8C75.5,19.1,80.4,24.2,88.1,24.2z M101.4,6.1c-1.7,0-3.1-1.4-3.1-3s1.4-3,3.1-3c1.8,0,3.2,1.4,3.2,3 S103.1,6.1,101.4,6.1z M98.8,23.8h5V7.7h-5V23.8z M115.1,15l-4.3-7.2H105l10.1,16.4l10.1-16.4h-5.8L115.1,15z M129.3,16.9h11.6 c0.1-7-4.2-9.5-8.4-9.5c-4.5,0-8.5,2.6-8.6,8.4c0,5.6,4.1,8.4,9.1,8.4c2.2,0,4.4-0.3,6.4-1.3v-4.4c-2.5,1.4-4.1,1.4-5.6,1.4 C131.7,19.8,129.5,19.2,129.3,16.9z M132.5,11.1c1.5,0,2.8,0.7,3,2.7h-6.2C129.6,11.9,131,11.1,132.5,11.1z M43.5,11.4 c1.2-1,1.8-2.4,1.8-4c0-3.1-3-6.3-7.3-6.3h-8v22.8h10.4c4.1,0,7.2-3,7.2-6.8C47.5,14.8,46.5,12.3,43.5,11.4z M35.2,5.7h2.4 C39,5.7,40,6.8,40,8c0,1.2-1,2.2-2.5,2.2h-2.4V5.7z M39.9,19.2h-4.7v-4.6h4.7c1.4,0,2.5,1,2.5,2.3C42.4,18.1,41.3,19.2,39.9,19.2z" }), index.h("path", { key: '5eafdce6e3df36f4ff0658bcdf1a0dd7896014c7', d: "M13.5,1l13.5,23H0L13.5,1z" }))), index.h("biggive-misc-icon", { key: '0f3f96d6e950627e6946a22ccda47c4d1cf0160b', class: "bx bx-x", "background-colour": "transparent", "icon-colour": "black", icon: "MenuClose", onClick: this.closeMobileMenu })), index.h("div", { key: '9e4ed5519e9dd8628414d4b74f41600e8f091c8a', id: "nav-primary" }, index.h("ul", { key: '8b15c56a009beb86a1c22dee0004b73d564ffbe6', class: "links", slot: "nav-primary" }, index.h("li", { key: 'fd4807dc040e13dfab37514b6d27bd646a4b91fb' }, index.h("a", { key: 'f5032471867e8df5dd598e9cadbb6fb0f020ca0c', href: makeURL('Donate', this.donateUrlPrefix, 'explore') }, "Explore Campaigns")), index.h("li", { key: '8a898247cb953353422adc0b4ac50cc5aba27028' }, index.h("a", { key: '4ced489490a59b9b7ea7fe03cfcd7872d7d7fb73', href: makeURL('Blog', this.blogUrlPrefix, 'charities') }, "For Charities")), index.h("li", { key: '51daab569d3d5f1b7a8f1b671cba37d35c76ce87' }, index.h("a", { key: 'fa7324ec513c299e0c814d3376c07cd64a183bb7', href: makeURL('Blog', this.blogUrlPrefix, 'funders') }, "For Funders")), index.h("li", { key: '708ad9f91b06ff3fa45ea7516bef37fc8c19feba' }, index.h("a", { key: 'd6fdd6528f65ac9d0855273da69b2915b0836eb0', onClick: this.noNav }, "Match Funding", index.h("biggive-misc-icon", { key: '79d6ac442b88d15a39224f7bf53d3dff9a293386', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '0a4d3e369bba6f535001d7aa23e69efbe36649e9', class: "sub-menu" }, index.h("li", { key: '0ba75300ff4668d12490854ccd99ea348e402fba' }, index.h("a", { key: '52f0cb88422b41295c8c751f2f6e097e077e7e87', href: makeURL('Blog', this.blogUrlPrefix, 'match-funding-explained') }, "Match Funding Explained")), index.h("li", { key: '7af91804e464e5fcee70f3352005f0d7ec7a6be3' }, index.h("a", { key: 'e595f8670cabb6ca0ead99fb3bdbe77fbc2a6fe0', href: makeURL('Blog', this.blogUrlPrefix, 'impact') }, "Match Funding Impact")), index.h("li", { key: '8a0266ffea10dc8822df7a7534b3a89439f1599f', class: "more" }, index.h("a", { key: '2f8466bfc042c2387420a3ccaf9505e865fc2a13', onClick: this.noNav }, "Match Funding Opportunities", index.h("biggive-misc-icon", { key: '9d5d049e9989d97e2fcb87f728d03203ee1de28c', class: "bx bxs-chevron-down sub-sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '5556d60d0b23b76a8f78373aa08fe852ae14ac24', class: "sub-sub-menu" }, index.h("li", { key: 'c815d5dc8803372d3b5206348d4a0fb3c22b3170' }, index.h("a", { key: '3d9ac5a817b4ed5d259b678850033771e354bf4b', href: makeURL('Blog', this.blogUrlPrefix, 'christmas-challenge'), class: "icon-christmas" }, "Christmas Challenge")), index.h("li", { key: '1fd2ba71e396cf54aa5def7a7267fa22543a583a' }, index.h("a", { key: '3ba083e5538c9e4126df6e5e96223b5b1452d271', href: makeURL('Blog', this.blogUrlPrefix, 'champions-for-children'), class: "icon-children" }, "Champions for Children")), index.h("li", { key: '77ac78d1454f125f2b0007f0fc7615103444dfe1' }, index.h("a", { key: '73a0aa3a956d1a07de7a3f12190badd802b3bcd5', href: makeURL('Blog', this.blogUrlPrefix, 'green-match-fund'), class: "icon-green-match" }, "Green Match Fund")), index.h("li", { key: 'fd97f32610578ac18f9f045c9c6110345c2251fc' }, index.h("a", { key: '34f5d3648fe223d4c4b0d15f41cc9dcd64ad6c19', href: makeURL('Blog', this.blogUrlPrefix, 'women-girls-match-fund'), class: "icon-women-girls" }, "Women & Girls Match Fund")), index.h("li", { key: '74f9025678cd14b615d7d882312211060a683af4' }, index.h("a", { key: '684f326f8d1bbef280a5ee5568ec10f1138ef05f', href: makeURL('Blog', this.blogUrlPrefix, 'kind2mind/'), class: "icon-mental-health" }, "Kind\u00B2Mind")), index.h("li", { key: '33aee411c616d5d4b4cfd93fc1f0c57e287b26a1' }, index.h("a", { key: 'cb6d75ad743979137c1a7c19314d9455a6f443f8', href: makeURL('Blog', this.blogUrlPrefix, 'artsforimpact/'), class: "icon-arts-impact" }, "Arts for Impact")), index.h("li", { key: '765707d2ad1e1c354c020d65bda923b5944271d0' }, index.h("a", { key: 'b0d76f83b577b711003bc9e5c12c2de6ea3a1d16', href: makeURL('Blog', this.blogUrlPrefix, 'anchor-match-fund/'), class: "icon-anchor-match" }, "Anchor Match Fund")), index.h("li", { key: '8ba9089664d7bbc1a2890202b02efe98508f4177' }, index.h("a", { key: 'fa42f4dc7494c076bde3a25feb741374320970c3', href: makeURL('Blog', this.blogUrlPrefix, 'emergency-campaigns/'), class: "icon-emergency" }, "Emergency Match Fund")))), index.h("li", { key: '4b83d39f69ea5faa3328c6bb509f2d78bee0d354' }, index.h("a", { key: 'dbbdd4b6d0d002160c1ccf86ac26607eac8ff0eb', href: makeURL('Blog', this.blogUrlPrefix, 'run-your-own-campaign/)') }, "Run your match funding campaign")))), index.h("li", { key: '0c42e00944a44a4c06bbf72c347a249b59a4e96b' }, index.h("a", { key: '3a69959166c95687d0bdd973c84eeaeee85f3672', onClick: this.noNav }, "About Us", index.h("biggive-misc-icon", { key: '6593a0785da87e4a694145674637c931a9af0ef1', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: 'e6de97772b79b03fd296cafcfae91259a8ae234c', class: "sub-menu" }, index.h("li", { key: '66eb7601c50dfc77522117b580d1d19ed0883341' }, index.h("a", { key: '4f0d1808f9f3d347b0bd330c56d03d2bc63be8e8', href: makeURL('Blog', this.blogUrlPrefix, 'our-people') }, "Our People")), index.h("li", { key: '12fa94d5df3288587e0f46db38466582ac24175c' }, index.h("a", { key: '0cbb3cc07bf1e9d289857d7cf0c50e263f1269fd', href: makeURL('Blog', this.blogUrlPrefix, 'our-story') }, "Our Story")), index.h("li", { key: 'e957e179db076c742f07bd3595fcbb6dc5a34725' }, index.h("a", { key: '23a7397768439b99eaf3efd62d1afa12dec94eb9', href: makeURL('Blog', this.blogUrlPrefix, 'donation-funds') }, "Donate by Bank Transfer")), index.h("li", { key: 'c818d5e3e75d07c05274f0780611281b1f06ed1b' }, index.h("a", { key: '63c31ab749055ed0a3f41747a912c6210b98350c', href: makeURL('Blog', this.blogUrlPrefix, 'our-fees') }, "Our Fees")), index.h("li", { key: '459701e286d82f95a6f3bd7bcd5a09eb57174c61' }, index.h("a", { key: 'aee6be6cbac7d85c258aaaa4a498680cf0f26efd', href: makeURL('Blog', this.blogUrlPrefix, 'faqs') }, "FAQs")))), index.h("li", { key: '2f57bd003b53c234e90afd5df47bc69f902be413' }, index.h("a", { key: 'd8fcb913cc5ecd1368c79ad113cb3c43646d28b0', onClick: this.noNav }, "Resources", index.h("biggive-misc-icon", { key: '9ec79c9f296c66c3e3ad78754aaf9c7d46ca2074', class: "bx bxs-chevron-down sub-menu-arrow arrow", "background-colour": "white", "icon-colour": "black", icon: "CaretRight" })), index.h("ul", { key: '2ba67d0f687cf257577a29e008163d89bf29f40c', class: "sub-menu" }, index.h("li", { key: 'e9365b0f57d09890d8eaf338e94b72a7fd52257b' }, index.h("a", { key: 'ed62f2e5e6312d4a6d7f47b49957954ff25f53e7', href: makeURL('Blog', this.blogUrlPrefix, 'case-studies') }, "Case Studies")), index.h("li", { key: '01a44a62d27c6cb9ca457a95d5293c47c10b6e8c' }, index.h("a", { key: '143d38f2f4c99502e1f9778782971d5025f950fe', href: makeURL('Blog', this.blogUrlPrefix, 'blog') }, "Blog")), index.h("li", { key: '11c8bf0cefd0f4503370c8b130e6d783468798d2' }, index.h("a", { key: 'f4d19eecd0d66a14ec7d577466ebce15ec0cd607', href: makeURL('Blog', this.blogUrlPrefix, 'reports-insights') }, "Reports & Insights")), index.h("li", { key: 'bf4d7626dbcc65e9214dd4a2a9a6356bf7c4df0b' }, index.h("a", { key: '4f857f00e95f6de503faaa66f18d30833b0b86fc', href: makeURL('Blog', this.blogUrlPrefix, 'press') }, "Press"))))), index.h("div", { key: '1d8e8b778e7873adb8168a330d3f94795942aa37', class: "mobile-only" }, secondaryNavLinksB)), index.h("div", { key: '97f62ec98b90635de645a93164eb3084fb91b4d0', class: "mobile-social-icon-wrap mobile-only" }, index.h("biggive-social-icon", { key: '411bdc3bbe72d54c616cb4278fdec07a57d38d13', service: "Facebook", url: "https://www.facebook.com/BigGive.org", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '922342c088eebb06035ebabfafe0e1f98b367ab9', service: "Twitter", url: "https://x.com/BigGive", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: 'd7a784a98057c3a9c914cf8ef2acc7209f4722f3', service: "LinkedIn", url: "https://uk.linkedin.com/company/big-give", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '8214734705acc8cf687d39bfe37704bfeedf8040', service: "YouTube", url: "https://www.youtube.com/channel/UC9_wH1aaTuZurJ-F9R8GDcA", "background-colour": "tertiary", "icon-colour": "black" }), index.h("biggive-social-icon", { key: '8921b7e31fcfa7ae1b5ac1be8c1d4aa3c7fc11b2', service: "Instagram", url: "https://www.instagram.com/biggiveorg", "background-colour": "tertiary", "icon-colour": "black" })))))));
1054
1056
  }
1055
1057
  get host() { return index.getElement(this); }
1056
1058
  };