@axos-web-dev/shared-components 0.0.91 → 0.0.92

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.
Files changed (46) hide show
  1. package/dist/ATMLocator/ATMLocator.js +2 -0
  2. package/dist/Calculators/Calculator.js +2 -0
  3. package/dist/CallToActionBar/index.js +47 -30
  4. package/dist/Carousel/index.js +2 -0
  5. package/dist/Chevron/index.js +2 -0
  6. package/dist/Comparison/Comparison.js +3 -1
  7. package/dist/Comparison/ComparisonSet.js +2 -0
  8. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
  9. package/dist/Forms/ContactUsBusiness.js +2 -0
  10. package/dist/Forms/ContactUsNMLSId.js +2 -0
  11. package/dist/Forms/EmailOnly.js +2 -0
  12. package/dist/Forms/SuccesForm.js +2 -0
  13. package/dist/Hyperlink/index.js +2 -0
  14. package/dist/ImageLink/ImageLink.js +2 -0
  15. package/dist/ImageLink/ImageLinkSet.js +2 -0
  16. package/dist/ImageLink/index.js +2 -0
  17. package/dist/Modal/Modal.js +2 -0
  18. package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
  19. package/dist/NavigationMenu/AxosBank/SubNavBar.js +1910 -1737
  20. package/dist/NavigationMenu/AxosBank/index.js +8 -15
  21. package/dist/NavigationMenu/AxosClearing/NavBar.css.d.ts +1 -0
  22. package/dist/NavigationMenu/AxosClearing/NavBar.css.js +5 -0
  23. package/dist/NavigationMenu/AxosClearing/NavBar.module.js +98 -0
  24. package/dist/NavigationMenu/AxosClearing/NavData.d.ts +21 -0
  25. package/dist/NavigationMenu/AxosClearing/NavData.js +63 -0
  26. package/dist/NavigationMenu/AxosClearing/SubNavBar.d.ts +1 -0
  27. package/dist/NavigationMenu/AxosClearing/SubNavBar.js +56 -0
  28. package/dist/NavigationMenu/AxosClearing/index.d.ts +2 -0
  29. package/dist/NavigationMenu/AxosClearing/index.js +470 -0
  30. package/dist/NavigationMenu/index.d.ts +1 -0
  31. package/dist/NavigationMenu/index.js +5 -3
  32. package/dist/SetContainer/SetContainer.js +2 -0
  33. package/dist/Table/Table.d.ts +13 -0
  34. package/dist/TopicalNavSet/TopicalNavSet.js +3 -3
  35. package/dist/assets/CallToActionBar/CallToActionBar.css +3 -1
  36. package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +126 -124
  37. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css +4 -0
  38. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +405 -0
  39. package/dist/assets/globals.css +71 -0
  40. package/dist/icons/Clock/index.d.ts +4 -0
  41. package/dist/icons/Clock/index.js +22 -0
  42. package/dist/icons/index.d.ts +1 -0
  43. package/dist/icons/index.js +14 -12
  44. package/dist/main.js +52 -48
  45. package/dist/utils/allowedAxosDomains.js +1 -0
  46. package/package.json +1 -1
@@ -0,0 +1,470 @@
1
+ "use client";
2
+ import { jsxs, jsx } from "react/jsx-runtime";
3
+ import { Button } from "../../Button/Button.js";
4
+ import "../../Button/Button.css.js";
5
+ import { useState, useRef, useEffect } from "react";
6
+ import "react-use";
7
+ import clsx from "clsx";
8
+ import Image from "next/image.js";
9
+ import Link from "next/link.js";
10
+ import { NavItem } from "../NavItem/index.js";
11
+ import { expand } from "./NavBar.css.js";
12
+ import styles from "./NavBar.module.js";
13
+ import { navItems } from "./NavData.js";
14
+ import SubNavBar from "./SubNavBar.js";
15
+ function NavBar() {
16
+ const [isOpenMobile, setisOpenMobile] = useState(false);
17
+ const [activeIndex, setActiveIndex] = useState();
18
+ const [lastNavItem, setLastNavItem] = useState();
19
+ const ref = useRef(null);
20
+ const mobileToggle = () => setisOpenMobile(!isOpenMobile);
21
+ const handleClick = (index) => setActiveIndex(index);
22
+ const [isOpenProducts1, setisOpenProducts1] = useState(false);
23
+ const [isOpenProducts2, setisOpenProducts2] = useState(false);
24
+ const [isOpenProducts3, setisOpenProducts3] = useState(false);
25
+ const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
26
+ const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
27
+ const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
28
+ const getActiveIndex = () => {
29
+ const pathname = "/" + location.pathname.split("/")[1];
30
+ const index = navItems.findIndex(
31
+ (path) => path.url === pathname
32
+ );
33
+ setActiveIndex(index);
34
+ };
35
+ useEffect(() => {
36
+ getActiveIndex();
37
+ }, [activeIndex]);
38
+ useEffect(() => {
39
+ setLastNavItem(navItems[navItems.length - 1]);
40
+ }, []);
41
+ return /* @__PURE__ */ jsxs("header", { id: "header", children: [
42
+ /* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
43
+ /* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
44
+ /* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos clearing homepage", children: /* @__PURE__ */ jsx(
45
+ Image,
46
+ {
47
+ src: "https://images.axos.com/o9ov1v03uwqk/1KWdk4xENAS8hmQRQWhviO/05df12996a96400c057b0066b4cf250f/axos-clearing-logo.svg",
48
+ alt: "",
49
+ width: 140,
50
+ height: 48,
51
+ priority: true
52
+ }
53
+ ) }) }),
54
+ /* @__PURE__ */ jsx("nav", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
55
+ (item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
56
+ NavItem,
57
+ {
58
+ className: styles.main_nav_link,
59
+ onClick: handleClick,
60
+ index: i,
61
+ name: item.name,
62
+ url: item.url,
63
+ isActive: activeIndex == i
64
+ },
65
+ i
66
+ )
67
+ ) }) })
68
+ ] }) }),
69
+ /* @__PURE__ */ jsx(
70
+ "button",
71
+ {
72
+ className: clsx(styles.mobile_only, styles.hamburger),
73
+ onClick: mobileToggle,
74
+ children: /* @__PURE__ */ jsx(
75
+ "svg",
76
+ {
77
+ width: "24",
78
+ height: "24",
79
+ viewBox: "0 0 24 24",
80
+ fill: "none",
81
+ xmlns: "http://www.w3.org/2000/svg",
82
+ children: /* @__PURE__ */ jsx(
83
+ "path",
84
+ {
85
+ fillRule: "evenodd",
86
+ clipRule: "evenodd",
87
+ d: "M22.5 15.75V17.25H1.5V15.75H22.5ZM22.5 11.25V12.75H1.5V11.25H22.5ZM22.5 6.75V8.25H1.5V6.75H22.5Z",
88
+ fill: "#4A5560"
89
+ }
90
+ )
91
+ }
92
+ )
93
+ }
94
+ ),
95
+ /* @__PURE__ */ jsx("div", { className: `${styles.mobile_only} ${styles.mobile_logo}`, children: /* @__PURE__ */ jsx(Link, { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
96
+ Image,
97
+ {
98
+ src: "https://images.axos.com/o9ov1v03uwqk/1KWdk4xENAS8hmQRQWhviO/05df12996a96400c057b0066b4cf250f/axos-clearing-logo.svg",
99
+ alt: "",
100
+ width: 112,
101
+ height: 40
102
+ }
103
+ ) }) }),
104
+ /* @__PURE__ */ jsx("div", { className: styles.signin_wrap, children: /* @__PURE__ */ jsxs(
105
+ "div",
106
+ {
107
+ className: `${styles.desktop_only} flex_row middle relative`,
108
+ ref,
109
+ children: [
110
+ lastNavItem && /* @__PURE__ */ jsx(
111
+ NavItem,
112
+ {
113
+ url: lastNavItem.url,
114
+ name: lastNavItem.name,
115
+ className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
116
+ isActive: activeIndex == navItems.length,
117
+ onClick: handleClick,
118
+ index: navItems.length
119
+ },
120
+ navItems.length + 1
121
+ ),
122
+ /* @__PURE__ */ jsxs(
123
+ Button,
124
+ {
125
+ className: clsx(
126
+ styles.signin_btn,
127
+ "flex_row",
128
+ "center",
129
+ "middle"
130
+ ),
131
+ as: "button",
132
+ type: "button",
133
+ color: "primary",
134
+ id: "signIn",
135
+ size: "small",
136
+ targetUrl: "/contact-us",
137
+ children: [
138
+ /* @__PURE__ */ jsx("span", { children: "Get in Touch" }),
139
+ /* @__PURE__ */ jsx(
140
+ "svg",
141
+ {
142
+ width: "20",
143
+ height: "12",
144
+ viewBox: "0 0 20 12",
145
+ fill: "none",
146
+ xmlns: "http://www.w3.org/2000/svg",
147
+ children: /* @__PURE__ */ jsx(
148
+ "path",
149
+ {
150
+ d: "M0.46875 1.76574L9.99908 11.2961L19.5294 1.76574L18.4687 0.705078L9.99908 9.17491L1.52941 0.705078L0.46875 1.76574Z",
151
+ fill: "#fff"
152
+ }
153
+ )
154
+ }
155
+ )
156
+ ]
157
+ }
158
+ )
159
+ ]
160
+ }
161
+ ) })
162
+ ] }) }) }),
163
+ /* @__PURE__ */ jsx(SubNavBar, {}),
164
+ /* @__PURE__ */ jsx(
165
+ "div",
166
+ {
167
+ className: clsx(
168
+ styles.mobile_nav,
169
+ styles.mobile_only,
170
+ "relative",
171
+ "bg_white",
172
+ isOpenMobile ? styles.mobile_opened : ""
173
+ ),
174
+ "aria-expanded": isOpenMobile,
175
+ role: "menu",
176
+ children: /* @__PURE__ */ jsxs("div", { className: clsx(styles.inner_wrapper, "bg_white"), children: [
177
+ /* @__PURE__ */ jsxs("div", { className: `${styles.mobile_header} relative text_center`, children: [
178
+ /* @__PURE__ */ jsx("p", { role: "heading", children: "Welcome" }),
179
+ /* @__PURE__ */ jsx("button", { onClick: mobileToggle, "aria-label": "close navigation menu", children: /* @__PURE__ */ jsx(
180
+ "svg",
181
+ {
182
+ xmlns: "http://www.w3.org/2000/svg",
183
+ width: "24",
184
+ height: "24",
185
+ viewBox: "0 0 24 24",
186
+ fill: "none",
187
+ children: /* @__PURE__ */ jsx(
188
+ "path",
189
+ {
190
+ d: "M20.2812 2.65625L21.3419 3.71691L13.0602 11.9982L21.3419 20.2812L20.2812 21.3419L11.9982 13.0602L3.71691 21.3419L2.65625 20.2812L10.9377 11.9982L2.65625 3.71691L3.71691 2.65625L11.9982 10.9377L20.2812 2.65625Z",
191
+ fill: "#4A5560"
192
+ }
193
+ )
194
+ }
195
+ ) })
196
+ ] }),
197
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenMobile, children: [
198
+ /* @__PURE__ */ jsxs(
199
+ "li",
200
+ {
201
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
202
+ id: "dd_1",
203
+ children: [
204
+ /* @__PURE__ */ jsxs(
205
+ "a",
206
+ {
207
+ href: "#",
208
+ onClick: toggleProducts1,
209
+ role: "button",
210
+ className: clsx("flex_row", "between"),
211
+ children: [
212
+ "Who We Serve",
213
+ /* @__PURE__ */ jsx(
214
+ "span",
215
+ {
216
+ className: clsx(
217
+ styles.icon_wrap,
218
+ isOpenProducts1 && styles.open
219
+ ),
220
+ children: /* @__PURE__ */ jsx(
221
+ "svg",
222
+ {
223
+ xmlns: "http://www.w3.org/2000/svg",
224
+ width: "24",
225
+ height: "24",
226
+ viewBox: "0 0 24 24",
227
+ fill: "none",
228
+ children: /* @__PURE__ */ jsx(
229
+ "path",
230
+ {
231
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
232
+ fill: "#4A5560"
233
+ }
234
+ )
235
+ }
236
+ )
237
+ }
238
+ )
239
+ ]
240
+ }
241
+ ),
242
+ /* @__PURE__ */ jsxs(
243
+ "div",
244
+ {
245
+ className: clsx(styles.sub_menu, isOpenProducts1 && expand),
246
+ children: [
247
+ /* @__PURE__ */ jsx(
248
+ Link,
249
+ {
250
+ href: "/who-we-serve",
251
+ className: styles.main,
252
+ role: "heading",
253
+ children: "Who We Serve Home"
254
+ }
255
+ ),
256
+ /* @__PURE__ */ jsx(Link, { href: "/who-we-serve/broker-dealers", role: "menuitem", children: "Broker Dealers" }),
257
+ /* @__PURE__ */ jsx(
258
+ Link,
259
+ {
260
+ href: "/who-we-serve/registered-investment-advisors",
261
+ role: "menuitem",
262
+ children: "Registered Investment Advisors"
263
+ }
264
+ )
265
+ ]
266
+ }
267
+ )
268
+ ]
269
+ }
270
+ ),
271
+ /* @__PURE__ */ jsxs(
272
+ "li",
273
+ {
274
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
275
+ id: "dd_2",
276
+ children: [
277
+ /* @__PURE__ */ jsxs(
278
+ "a",
279
+ {
280
+ href: "#",
281
+ onClick: toggleProducts2,
282
+ role: "button",
283
+ className: clsx("flex_row", "between"),
284
+ children: [
285
+ "Products and Services",
286
+ /* @__PURE__ */ jsx(
287
+ "span",
288
+ {
289
+ className: clsx(
290
+ styles.icon_wrap,
291
+ isOpenProducts2 && styles.open
292
+ ),
293
+ children: /* @__PURE__ */ jsx(
294
+ "svg",
295
+ {
296
+ xmlns: "http://www.w3.org/2000/svg",
297
+ width: "24",
298
+ height: "24",
299
+ viewBox: "0 0 24 24",
300
+ fill: "none",
301
+ children: /* @__PURE__ */ jsx(
302
+ "path",
303
+ {
304
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
305
+ fill: "#4A5560"
306
+ }
307
+ )
308
+ }
309
+ )
310
+ }
311
+ )
312
+ ]
313
+ }
314
+ ),
315
+ /* @__PURE__ */ jsxs(
316
+ "div",
317
+ {
318
+ className: clsx(styles.sub_menu, isOpenProducts2 && expand),
319
+ children: [
320
+ /* @__PURE__ */ jsx(
321
+ Link,
322
+ {
323
+ href: "/products-and-services",
324
+ className: styles.main,
325
+ role: "heading",
326
+ children: "Products and Services Home"
327
+ }
328
+ ),
329
+ /* @__PURE__ */ jsx(
330
+ Link,
331
+ {
332
+ href: "/products-and-services/capital-management",
333
+ role: "menuitem",
334
+ children: "Capital Management"
335
+ }
336
+ ),
337
+ /* @__PURE__ */ jsx(
338
+ Link,
339
+ {
340
+ href: "/products-and-services/value-added-services",
341
+ role: "menuitem",
342
+ children: "Value Added Services"
343
+ }
344
+ ),
345
+ /* @__PURE__ */ jsx(
346
+ Link,
347
+ {
348
+ href: "/products-and-services/securities-services",
349
+ role: "menuitem",
350
+ children: "Securities Services"
351
+ }
352
+ ),
353
+ /* @__PURE__ */ jsx(
354
+ Link,
355
+ {
356
+ href: "/products-and-services/technology-platform",
357
+ role: "menuitem",
358
+ children: "Technology Platform"
359
+ }
360
+ )
361
+ ]
362
+ }
363
+ )
364
+ ]
365
+ }
366
+ ),
367
+ /* @__PURE__ */ jsxs(
368
+ "li",
369
+ {
370
+ className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
371
+ id: "dd_3",
372
+ children: [
373
+ /* @__PURE__ */ jsxs(
374
+ "a",
375
+ {
376
+ href: "#",
377
+ onClick: toggleProducts3,
378
+ role: "button",
379
+ className: clsx("flex_row", "between"),
380
+ children: [
381
+ "Axos Advantage",
382
+ /* @__PURE__ */ jsx(
383
+ "span",
384
+ {
385
+ className: clsx(
386
+ styles.icon_wrap,
387
+ isOpenProducts3 && styles.open
388
+ ),
389
+ children: /* @__PURE__ */ jsx(
390
+ "svg",
391
+ {
392
+ xmlns: "http://www.w3.org/2000/svg",
393
+ width: "24",
394
+ height: "24",
395
+ viewBox: "0 0 24 24",
396
+ fill: "none",
397
+ children: /* @__PURE__ */ jsx(
398
+ "path",
399
+ {
400
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
401
+ fill: "#4A5560"
402
+ }
403
+ )
404
+ }
405
+ )
406
+ }
407
+ )
408
+ ]
409
+ }
410
+ ),
411
+ /* @__PURE__ */ jsxs(
412
+ "div",
413
+ {
414
+ className: clsx(styles.sub_menu, isOpenProducts3 && expand),
415
+ children: [
416
+ /* @__PURE__ */ jsx(
417
+ Link,
418
+ {
419
+ href: "/axos-advantage",
420
+ className: styles.main,
421
+ role: "heading",
422
+ children: "Axos Advantage Home"
423
+ }
424
+ ),
425
+ /* @__PURE__ */ jsx(Link, { href: "/axos-advantage/contact-us", role: "menuitem", children: "Contact Us" }),
426
+ /* @__PURE__ */ jsx(Link, { href: "/axos-advantage/meet-the-team", role: "menuitem", children: "Meet the Team" }),
427
+ /* @__PURE__ */ jsx(
428
+ Link,
429
+ {
430
+ href: "/axos-advantage/meet-the-team/why-choose-axos",
431
+ role: "menuitem",
432
+ children: "Why Choose Axos"
433
+ }
434
+ )
435
+ ]
436
+ }
437
+ )
438
+ ]
439
+ }
440
+ ),
441
+ /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
442
+ Link,
443
+ {
444
+ href: "https://connect.axosclearing.com/",
445
+ className: `flex_row between ${styles.btn}`,
446
+ children: "Sign In"
447
+ }
448
+ ) })
449
+ ] }) }),
450
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_footer, children: /* @__PURE__ */ jsxs("div", { className: "flex_row between", children: [
451
+ /* @__PURE__ */ jsxs(
452
+ "div",
453
+ {
454
+ className: `${styles.mobile_footer_content} flex_col between`,
455
+ children: [
456
+ /* @__PURE__ */ jsx("p", { children: /* @__PURE__ */ jsx("strong", { children: "Get in Touch" }) }),
457
+ /* @__PURE__ */ jsx("div", { className: styles.footer_cta, children: /* @__PURE__ */ jsx(Button, { color: "primary", targetUrl: "/contact-us", children: "Contact Us" }) })
458
+ ]
459
+ }
460
+ ),
461
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_footer_media, children: " " })
462
+ ] }) })
463
+ ] })
464
+ }
465
+ )
466
+ ] });
467
+ }
468
+ export {
469
+ NavBar as default
470
+ };
@@ -1,4 +1,5 @@
1
1
  export { default as NavBarAXA } from './AxosAdvisor';
2
2
  export { default as NavBarAAS } from './AxosAdvisorServices';
3
3
  export { default as NavBarAXB } from './AxosBank';
4
+ export { default as NavBarAXC } from './AxosClearing';
4
5
  export { default as NavBarAFS } from './AxosFiduciary';
@@ -1,10 +1,12 @@
1
1
  import { default as default2 } from "./AxosAdvisor/index.js";
2
2
  import { default as default3 } from "./AxosAdvisorServices/index.js";
3
3
  import { default as default4 } from "./AxosBank/index.js";
4
- import { default as default5 } from "./AxosFiduciary/index.js";
4
+ import { default as default5 } from "./AxosClearing/index.js";
5
+ import { default as default6 } from "./AxosFiduciary/index.js";
5
6
  export {
6
7
  default3 as NavBarAAS,
7
- default5 as NavBarAFS,
8
+ default6 as NavBarAFS,
8
9
  default2 as NavBarAXA,
9
- default4 as NavBarAXB
10
+ default4 as NavBarAXB,
11
+ default5 as NavBarAXC
10
12
  };
@@ -71,7 +71,9 @@ import "../Chevron/Chevron.css.js";
71
71
  /* empty css */
72
72
  import "next/link.js";
73
73
  /* empty css */
74
+ import "next/navigation.js";
74
75
  /* empty css */
76
+ /* empty css */
75
77
  /* empty css */
76
78
  /* empty css */
77
79
  import "../StepItem/StepItem.css.js";
@@ -9,6 +9,7 @@ export declare const TableBody: ({ children }: PropsWithChildren) => import("rea
9
9
  export declare const TableCell: ({ children, as, variant, highlighted, ...props }: CellProps) => import('react').DetailedReactHTMLElement<{
10
10
  className: string;
11
11
  manifest?: string | undefined;
12
+ amp?: string | undefined;
12
13
  defaultChecked?: boolean | undefined;
13
14
  defaultValue?: string | number | readonly string[] | undefined;
14
15
  suppressContentEditableWarning?: boolean | undefined;
@@ -56,6 +57,12 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
56
57
  unselectable?: "on" | "off" | undefined;
57
58
  inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
58
59
  is?: string | undefined;
60
+ popover?: "" | "auto" | "manual" | undefined;
61
+ popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
62
+ popoverTarget?: string | undefined;
63
+ onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
64
+ onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
65
+ inert?: boolean | undefined;
59
66
  "aria-activedescendant"?: string | undefined;
60
67
  "aria-atomic"?: (boolean | "false" | "true") | undefined;
61
68
  "aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
@@ -272,4 +279,10 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
272
279
  onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLTableCellElement> | undefined;
273
280
  onTransitionEnd?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
274
281
  onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
282
+ onTransitionCancel?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
283
+ onTransitionCancelCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
284
+ onTransitionRun?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
285
+ onTransitionRunCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
286
+ onTransitionStart?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
287
+ onTransitionStartCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
275
288
  }, HTMLElement>;
@@ -5,15 +5,15 @@ const TopicalNavSet = ({
5
5
  id,
6
6
  topicalNavigationItems
7
7
  }) => {
8
- return /* @__PURE__ */ jsx("nav", { className: picker_section, children: /* @__PURE__ */ jsx("div", { className: picker_container, children: /* @__PURE__ */ jsx("div", { className: `${picker_orient} flex`, children: topicalNavigationItems?.map((nav) => /* @__PURE__ */ jsx(
8
+ return /* @__PURE__ */ jsx("nav", { id: `id_${id}`, className: picker_section, children: /* @__PURE__ */ jsx("div", { className: picker_container, children: /* @__PURE__ */ jsx("div", { className: `${picker_orient} flex`, children: topicalNavigationItems?.map((nav) => /* @__PURE__ */ jsx(
9
9
  TopicalNavItem,
10
10
  {
11
- id: `id_${id}`,
11
+ id: `id_${nav?.id}`,
12
12
  icon: { src: nav?.icon?.src || "" },
13
13
  displayText: nav?.displayText,
14
14
  targetUrl: nav?.targetUrl
15
15
  },
16
- `id_${id}`
16
+ `id_${nav?.id}`
17
17
  )) }) }) });
18
18
  };
19
19
  export {
@@ -42,7 +42,6 @@
42
42
  max-height: 200px;
43
43
  }
44
44
  ._1tdyl74a {
45
- width: 100%;
46
45
  justify-content: space-between;
47
46
  }
48
47
  ._1tdyl74b {
@@ -75,6 +74,9 @@
75
74
  ._1tdyl74f {
76
75
  max-height: 315px;
77
76
  }
77
+ ._1tdyl740 p {
78
+ margin-bottom: 0;
79
+ }
78
80
  @media screen and (max-width:1127px) {
79
81
  [class*=cta_section_lg] {
80
82
  max-height: 256px;