@axos-web-dev/shared-components 1.0.34 → 1.0.36

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.
@@ -2053,7 +2053,7 @@ function SubNavBar() {
2053
2053
  /* @__PURE__ */ jsx(
2054
2054
  Link,
2055
2055
  {
2056
- href: `https://www.small-business-enrollment.axosbank.com`,
2056
+ href: `https://small-business-enrollment.axosbank.com`,
2057
2057
  children: "Check Application Status"
2058
2058
  }
2059
2059
  )
@@ -1,5 +1,5 @@
1
1
  declare function NavBar({ project, withSession, }: {
2
2
  project?: string;
3
- withSession: boolean;
3
+ withSession?: boolean;
4
4
  }): import("react/jsx-runtime").JSX.Element;
5
5
  export default NavBar;
@@ -179,7 +179,9 @@ function NavBar({
179
179
  }
180
180
  }
181
181
  };
182
- console.log("session", withSession);
182
+ if (withSession) {
183
+ console.log("withSession");
184
+ }
183
185
  return /* @__PURE__ */ jsxs("header", { id: "header", children: [
184
186
  /* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsxs("div", { className: styles.wrapper, children: [
185
187
  /* @__PURE__ */ jsx("a", { href: "#main-body", id: "skip_content", className: styles.skip_btn, children: "Skip to main content" }),
@@ -223,6 +223,7 @@ a {
223
223
  }
224
224
  sup {
225
225
  font-size: 75%;
226
+ line-height: 1;
226
227
  }
227
228
  .list_item sup {
228
229
  vertical-align: top;
@@ -25,7 +25,7 @@ const moreDomains = {
25
25
  "{AXSEC}": process.env.AXOS_SECURE_URL || "https://secure.axosbank.com",
26
26
  "{SECURE}": process.env.AXOS_SECURE_URL || "https://secure.axosbank.com",
27
27
  "{DOWNLOADAXOS}": process.env.AXOS_DOWNLOAD_URL || "https://downloads.axos.com",
28
- "{SBAAX}": process.env.SMALL_BUSINESS_ACCOUNTS || "https://small-business-accounts.axosbank.com",
28
+ "{SBEAX}": process.env.SMALL_BUSINESS_ENROLLMENT || "https://small-business-enrollment.axosbank.com",
29
29
  "{CPDS}": process.env.CP_DECISIONLENDER || "https://cp.decisionlender.solutions",
30
30
  "{JHALOAN}": process.env.JHA_LOANSPQ || "https://jha.loanspq.com",
31
31
  "{AXSECURITIES}": process.env.AXOS_SECURITIES_URL ?? "https://www.axossecurities.com",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "1.0.34",
4
+ "version": "1.0.36",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",