@axos-web-dev/shared-components 0.0.12 → 0.0.13
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/Button/Button.d.ts +2 -2
- package/dist/Button/Button.js +18 -2
- package/dist/Chevron/index.js +53 -1
- package/dist/Forms/Forms.css.d.ts +1 -0
- package/dist/Forms/Forms.css.js +2 -0
- package/dist/Forms/ScheduleCall.js +2 -2
- package/dist/Forms/index.js +2 -1
- package/dist/Hyperlink/index.js +58 -1
- package/dist/Input/Input.css.js +0 -5
- package/dist/MainHTML/index.js +1 -1
- package/dist/Modal/Modal.d.ts +3 -0
- package/dist/Modal/Modal.js +95 -0
- package/dist/Modal/contextApi/store.d.ts +10 -0
- package/dist/Modal/contextApi/store.js +55 -0
- package/dist/Modal/index.d.ts +2 -3
- package/dist/Modal/index.js +7 -94
- package/dist/NavigationMenu/AxosAdvisor/NavBar.css.d.ts +1 -0
- package/dist/NavigationMenu/AxosAdvisor/NavBar.css.js +3 -1
- package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +0 -19
- package/dist/NavigationMenu/AxosAdvisor/index.js +102 -74
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
- package/dist/SecondaryFooter/index.js +2 -1
- package/dist/SetContainer/SetContainer.js +29 -1
- package/dist/Table/Table.d.ts +0 -2
- package/dist/assets/FaqAccordion/FaqAccordion.css +2 -2
- package/dist/assets/Forms/Forms.css +10 -4
- package/dist/assets/Input/Input.css +0 -3
- package/dist/assets/Modal/Modal.css +3 -3
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +4 -0
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +82 -82
- package/dist/assets/SecondaryFooter/SecondaryFooter.css +0 -2
- package/dist/assets/Table/Table.css +2 -2
- package/dist/main.js +16 -2
- package/dist/utils/allowedAxosDomains.d.ts +2 -0
- package/dist/utils/allowedAxosDomains.js +40 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +10 -1
- package/dist/utils/validateExternalLinks.d.ts +5 -0
- package/dist/utils/validateExternalLinks.js +32 -0
- package/package.json +4 -2
|
@@ -6,7 +6,7 @@ import { useState, useRef, useEffect } from "react";
|
|
|
6
6
|
import { useClickAway } from "react-use";
|
|
7
7
|
import clsx from "clsx";
|
|
8
8
|
import { NavItem } from "../NavItem/index.js";
|
|
9
|
-
import { Sign_in_btn } from "./NavBar.css.js";
|
|
9
|
+
import { Sign_in_btn, expand } from "./NavBar.css.js";
|
|
10
10
|
import styles from "./NavBar.module.js";
|
|
11
11
|
import { navItems } from "./NavData.js";
|
|
12
12
|
import SubNavBar from "./SubNavBar.js";
|
|
@@ -20,6 +20,8 @@ function NavBar() {
|
|
|
20
20
|
const toggle = () => setisOpenSignIn(!isOpenSignIn);
|
|
21
21
|
const mobileToggle = () => setisOpenMobile(!isOpenMobile);
|
|
22
22
|
const handleClick = (index) => setActiveIndex(index);
|
|
23
|
+
const [isOpenProducts, setisOpenProducts] = useState(false);
|
|
24
|
+
const toggleProducts = () => setisOpenProducts(!isOpenProducts);
|
|
23
25
|
const getActiveIndex = () => {
|
|
24
26
|
const pathname = "/" + location.pathname.split("/")[1];
|
|
25
27
|
const index = navItems.findIndex(
|
|
@@ -113,9 +115,9 @@ function NavBar() {
|
|
|
113
115
|
url: lastNavItem.url,
|
|
114
116
|
name: lastNavItem.name,
|
|
115
117
|
className: `link list_unstyled ${styles.main_nav_link}`,
|
|
116
|
-
isActive: activeIndex == navItems.length
|
|
118
|
+
isActive: activeIndex == navItems.length,
|
|
117
119
|
onClick: handleClick,
|
|
118
|
-
index: navItems.length
|
|
120
|
+
index: navItems.length
|
|
119
121
|
},
|
|
120
122
|
navItems.length + 1
|
|
121
123
|
),
|
|
@@ -269,7 +271,7 @@ function NavBar() {
|
|
|
269
271
|
}
|
|
270
272
|
) })
|
|
271
273
|
] }),
|
|
272
|
-
/* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
|
|
274
|
+
/* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenProducts, children: [
|
|
273
275
|
/* @__PURE__ */ jsxs(
|
|
274
276
|
"li",
|
|
275
277
|
{
|
|
@@ -280,89 +282,105 @@ function NavBar() {
|
|
|
280
282
|
"a",
|
|
281
283
|
{
|
|
282
284
|
href: "#",
|
|
285
|
+
onClick: toggleProducts,
|
|
283
286
|
role: "button",
|
|
284
|
-
className:
|
|
287
|
+
className: clsx("flex_row", "between"),
|
|
285
288
|
children: [
|
|
286
289
|
"Products",
|
|
287
|
-
/* @__PURE__ */ jsx(
|
|
288
|
-
"
|
|
290
|
+
/* @__PURE__ */ jsx(
|
|
291
|
+
"span",
|
|
289
292
|
{
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
fill: "none",
|
|
293
|
+
className: clsx(
|
|
294
|
+
styles.icon_wrap,
|
|
295
|
+
isOpenProducts && styles.open
|
|
296
|
+
),
|
|
295
297
|
children: /* @__PURE__ */ jsx(
|
|
296
|
-
"
|
|
298
|
+
"svg",
|
|
297
299
|
{
|
|
298
|
-
|
|
299
|
-
|
|
300
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
301
|
+
width: "24",
|
|
302
|
+
height: "24",
|
|
303
|
+
viewBox: "0 0 24 24",
|
|
304
|
+
fill: "none",
|
|
305
|
+
children: /* @__PURE__ */ jsx(
|
|
306
|
+
"path",
|
|
307
|
+
{
|
|
308
|
+
d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
|
|
309
|
+
fill: "#4A5560"
|
|
310
|
+
}
|
|
311
|
+
)
|
|
300
312
|
}
|
|
301
313
|
)
|
|
302
314
|
}
|
|
303
|
-
)
|
|
315
|
+
)
|
|
304
316
|
]
|
|
305
317
|
}
|
|
306
318
|
),
|
|
307
|
-
/* @__PURE__ */ jsxs(
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
href: "/products
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
href: "/products/
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
href: "/products/
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
319
|
+
/* @__PURE__ */ jsxs(
|
|
320
|
+
"div",
|
|
321
|
+
{
|
|
322
|
+
className: clsx(styles.sub_menu, isOpenProducts && expand),
|
|
323
|
+
children: [
|
|
324
|
+
/* @__PURE__ */ jsx("a", { href: "/products", className: styles.main, role: "heading", children: "Products Home" }),
|
|
325
|
+
/* @__PURE__ */ jsx(
|
|
326
|
+
"a",
|
|
327
|
+
{
|
|
328
|
+
href: "/products/select-high-yield-money-market",
|
|
329
|
+
role: "menuitem",
|
|
330
|
+
children: "Select High Yield Money Market"
|
|
331
|
+
}
|
|
332
|
+
),
|
|
333
|
+
/* @__PURE__ */ jsx("a", { href: "/products/select-cds", role: "menuitem", children: "Select CDs" }),
|
|
334
|
+
/* @__PURE__ */ jsx("a", { href: "/products/select-checking", role: "menuitem", children: "Select Checking" }),
|
|
335
|
+
/* @__PURE__ */ jsx("a", { href: "/products/select-savings", role: "menuitem", children: "Select Savings" }),
|
|
336
|
+
/* @__PURE__ */ jsx("a", { href: "/products/business-banking", role: "menuitem", children: "Business Banking" }),
|
|
337
|
+
/* @__PURE__ */ jsx("a", { href: "/products/mortgage", role: "menuitem", children: "Mortgage" }),
|
|
338
|
+
/* @__PURE__ */ jsx(
|
|
339
|
+
"a",
|
|
340
|
+
{
|
|
341
|
+
href: "/products/premier-world-checking-and-savings",
|
|
342
|
+
className: styles.main,
|
|
343
|
+
role: "heading",
|
|
344
|
+
children: "Private Client"
|
|
345
|
+
}
|
|
346
|
+
),
|
|
347
|
+
/* @__PURE__ */ jsx(
|
|
348
|
+
"a",
|
|
349
|
+
{
|
|
350
|
+
href: "/products/premier-private-client-banking",
|
|
351
|
+
role: "menuitem",
|
|
352
|
+
children: "Advisor Private Client Banking"
|
|
353
|
+
}
|
|
354
|
+
),
|
|
355
|
+
/* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", role: "menuitem", children: "InsureGuard+" }),
|
|
356
|
+
/* @__PURE__ */ jsx(
|
|
357
|
+
"a",
|
|
358
|
+
{
|
|
359
|
+
href: "/products/premier-world-checking-and-savings",
|
|
360
|
+
role: "menuitem",
|
|
361
|
+
children: "Advisor World Checking and Savings"
|
|
362
|
+
}
|
|
363
|
+
)
|
|
364
|
+
]
|
|
365
|
+
}
|
|
366
|
+
)
|
|
349
367
|
]
|
|
350
368
|
}
|
|
351
369
|
),
|
|
352
370
|
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, id: "dd_2", children: /* @__PURE__ */ jsx(
|
|
353
371
|
"a",
|
|
354
372
|
{
|
|
355
|
-
href: "/
|
|
373
|
+
href: "/find-your-advisor",
|
|
356
374
|
role: "button",
|
|
357
375
|
className: `flex_row between ${styles.btn}`,
|
|
358
376
|
children: "Find Your Advisor"
|
|
359
377
|
}
|
|
360
378
|
) }),
|
|
361
|
-
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx("a", { href: "/
|
|
379
|
+
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx("a", { href: "/rias", role: "button", className: "flex_row between", children: "RIAs" }) }),
|
|
362
380
|
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
|
|
363
381
|
"a",
|
|
364
382
|
{
|
|
365
|
-
href: "/
|
|
383
|
+
href: "/contact-us",
|
|
366
384
|
role: "button",
|
|
367
385
|
className: "flex_row between",
|
|
368
386
|
children: "Contact Us"
|
|
@@ -380,34 +398,44 @@ function NavBar() {
|
|
|
380
398
|
href: "#",
|
|
381
399
|
role: "button",
|
|
382
400
|
className: `flex_row between ${styles.btn}`,
|
|
401
|
+
onClick: toggle,
|
|
383
402
|
children: [
|
|
384
403
|
"Sign In",
|
|
385
|
-
/* @__PURE__ */ jsx(
|
|
386
|
-
"
|
|
404
|
+
/* @__PURE__ */ jsx(
|
|
405
|
+
"span",
|
|
387
406
|
{
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
fill: "none",
|
|
407
|
+
className: clsx(
|
|
408
|
+
styles.icon_wrap,
|
|
409
|
+
isOpenSignIn && styles.open
|
|
410
|
+
),
|
|
393
411
|
children: /* @__PURE__ */ jsx(
|
|
394
|
-
"
|
|
412
|
+
"svg",
|
|
395
413
|
{
|
|
396
|
-
|
|
397
|
-
|
|
414
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
415
|
+
width: "24",
|
|
416
|
+
height: "24",
|
|
417
|
+
viewBox: "0 0 24 24",
|
|
418
|
+
fill: "none",
|
|
419
|
+
children: /* @__PURE__ */ jsx(
|
|
420
|
+
"path",
|
|
421
|
+
{
|
|
422
|
+
d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
|
|
423
|
+
fill: "#4A5560"
|
|
424
|
+
}
|
|
425
|
+
)
|
|
398
426
|
}
|
|
399
427
|
)
|
|
400
428
|
}
|
|
401
|
-
)
|
|
429
|
+
)
|
|
402
430
|
]
|
|
403
431
|
}
|
|
404
432
|
),
|
|
405
|
-
/* @__PURE__ */ jsxs("div", { className: styles.sub_menu, children: [
|
|
433
|
+
/* @__PURE__ */ jsxs("div", { className: clsx(styles.sub_menu, isOpenSignIn && expand), children: [
|
|
406
434
|
/* @__PURE__ */ jsx("span", { className: styles.main, role: "heading", children: "Personal" }),
|
|
407
435
|
/* @__PURE__ */ jsx(
|
|
408
436
|
"a",
|
|
409
437
|
{
|
|
410
|
-
href:
|
|
438
|
+
href: `https://onlinebanking.uat.axsobank.com/auth/login`,
|
|
411
439
|
role: "menuitem",
|
|
412
440
|
children: "Account Login"
|
|
413
441
|
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav = "
|
|
8
|
-
const main_nav_link = "
|
|
9
|
-
const sub_nav_link = "
|
|
10
|
-
const signin_wrap = "
|
|
11
|
-
const signin_btn = "
|
|
12
|
-
const sub_nav = "
|
|
13
|
-
const header_sub_row = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const opacity = "
|
|
16
|
-
const fadeInDown = "
|
|
17
|
-
const footer = "
|
|
18
|
-
const open = "
|
|
19
|
-
const mt_8 = "
|
|
20
|
-
const mt_16 = "
|
|
21
|
-
const ml_8 = "
|
|
22
|
-
const reversed_row = "
|
|
23
|
-
const nav_anchor = "
|
|
24
|
-
const site_lists = "
|
|
25
|
-
const hamburger = "
|
|
26
|
-
const mobile_logo = "
|
|
27
|
-
const mobile_nav = "
|
|
28
|
-
const mobile_opened = "
|
|
29
|
-
const mobile_nav_item = "
|
|
30
|
-
const icon_wrap = "
|
|
31
|
-
const mobile_footer = "
|
|
32
|
-
const mobile_footer_content = "
|
|
33
|
-
const mobile_footer_media = "
|
|
34
|
-
const footer_cta = "
|
|
35
|
-
const inner_wrapper = "
|
|
36
|
-
const btn = "
|
|
37
|
-
const sub_menu = "
|
|
38
|
-
const main = "
|
|
39
|
-
const desktop_only = "
|
|
40
|
-
const mobile_only = "
|
|
1
|
+
const header = "_header_101h6_1";
|
|
2
|
+
const wrapper = "_wrapper_101h6_5";
|
|
3
|
+
const header_main_row = "_header_main_row_101h6_11";
|
|
4
|
+
const mobile_header = "_mobile_header_101h6_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_101h6_18";
|
|
6
|
+
const primary_links = "_primary_links_101h6_22";
|
|
7
|
+
const main_nav = "_main_nav_101h6_26";
|
|
8
|
+
const main_nav_link = "_main_nav_link_101h6_33";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_101h6_55";
|
|
10
|
+
const signin_wrap = "_signin_wrap_101h6_57";
|
|
11
|
+
const signin_btn = "_signin_btn_101h6_58";
|
|
12
|
+
const sub_nav = "_sub_nav_101h6_55";
|
|
13
|
+
const header_sub_row = "_header_sub_row_101h6_99";
|
|
14
|
+
const shadow = "_shadow_101h6_115";
|
|
15
|
+
const opacity = "_opacity_101h6_131";
|
|
16
|
+
const fadeInDown = "_fadeInDown_101h6_1";
|
|
17
|
+
const footer = "_footer_101h6_137";
|
|
18
|
+
const open = "_open_101h6_153";
|
|
19
|
+
const mt_8 = "_mt_8_101h6_161";
|
|
20
|
+
const mt_16 = "_mt_16_101h6_165";
|
|
21
|
+
const ml_8 = "_ml_8_101h6_169";
|
|
22
|
+
const reversed_row = "_reversed_row_101h6_173";
|
|
23
|
+
const nav_anchor = "_nav_anchor_101h6_177";
|
|
24
|
+
const site_lists = "_site_lists_101h6_188";
|
|
25
|
+
const hamburger = "_hamburger_101h6_192";
|
|
26
|
+
const mobile_logo = "_mobile_logo_101h6_206";
|
|
27
|
+
const mobile_nav = "_mobile_nav_101h6_229";
|
|
28
|
+
const mobile_opened = "_mobile_opened_101h6_241";
|
|
29
|
+
const mobile_nav_item = "_mobile_nav_item_101h6_245";
|
|
30
|
+
const icon_wrap = "_icon_wrap_101h6_260";
|
|
31
|
+
const mobile_footer = "_mobile_footer_101h6_265";
|
|
32
|
+
const mobile_footer_content = "_mobile_footer_content_101h6_271";
|
|
33
|
+
const mobile_footer_media = "_mobile_footer_media_101h6_285";
|
|
34
|
+
const footer_cta = "_footer_cta_101h6_292";
|
|
35
|
+
const inner_wrapper = "_inner_wrapper_101h6_324";
|
|
36
|
+
const btn = "_btn_101h6_328";
|
|
37
|
+
const sub_menu = "_sub_menu_101h6_333";
|
|
38
|
+
const main = "_main_101h6_26";
|
|
39
|
+
const desktop_only = "_desktop_only_101h6_362";
|
|
40
|
+
const mobile_only = "_mobile_only_101h6_409";
|
|
41
41
|
const styles = {
|
|
42
42
|
header,
|
|
43
43
|
wrapper,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
2
3
|
import { secondary_footer, footer_items_wrapper, footer_item, footer_link } from "./SecondaryFooter.css.js";
|
|
3
4
|
const SecondaryFooter = (props) => {
|
|
4
5
|
const { items } = props;
|
|
5
|
-
return /* @__PURE__ */ jsx("div", { className:
|
|
6
|
+
return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items == null ? void 0 : items.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx("a", { href: item.targetURL, className: footer_link, "aria-label": "", children: item.displayText }) }, item.id)) }) });
|
|
6
7
|
};
|
|
7
8
|
export {
|
|
8
9
|
SecondaryFooter
|
|
@@ -6,13 +6,41 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
8
|
/* empty css */
|
|
9
|
+
import "../Accordion/Accordion.js";
|
|
10
|
+
import "../Accordion/Accordion.css.js";
|
|
11
|
+
import "../AlertBanner/AlertBanner.css.js";
|
|
12
|
+
import "../Modal/contextApi/store.js";
|
|
9
13
|
import { getVariant } from "../utils/getVariant.js";
|
|
10
|
-
import "../Chevron/Chevron.css.js";
|
|
11
14
|
import "clsx";
|
|
12
15
|
import "react";
|
|
13
16
|
import "../Button/Button.css.js";
|
|
14
17
|
import "react-use";
|
|
18
|
+
/* empty css */
|
|
19
|
+
/* empty css */
|
|
20
|
+
import "../Carousel/index.js";
|
|
21
|
+
/* empty css */
|
|
22
|
+
import "../HeroBanner/HeroBanner.css.js";
|
|
23
|
+
import "../ContentBanner/ContentBanner.css.js";
|
|
24
|
+
/* empty css */
|
|
25
|
+
import "../FaqAccordion/index.js";
|
|
26
|
+
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
27
|
+
import "../Forms/Forms.css.js";
|
|
28
|
+
import "../Forms/SalesforceFieldsForm.js";
|
|
29
|
+
import "@hookform/resolvers/zod";
|
|
30
|
+
import "../Input/index.js";
|
|
31
|
+
import "react-hook-form";
|
|
15
32
|
import { inline_container } from "./SetContainer.css.js";
|
|
33
|
+
import "../ImageBillboard/ImageBillboard.css.js";
|
|
34
|
+
import "../Chevron/Chevron.css.js";
|
|
35
|
+
/* empty css */
|
|
36
|
+
/* empty css */
|
|
37
|
+
/* empty css */
|
|
38
|
+
/* empty css */
|
|
39
|
+
import "../Table/Table.css.js";
|
|
40
|
+
/* empty css */
|
|
41
|
+
import "next/script.js";
|
|
42
|
+
/* empty css */
|
|
43
|
+
/* empty css */
|
|
16
44
|
const SetContainer = ({
|
|
17
45
|
id,
|
|
18
46
|
variant,
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -250,9 +250,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
250
250
|
onPointerCancel?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
251
251
|
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
252
252
|
onPointerEnter?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
253
|
-
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
254
253
|
onPointerLeave?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
255
|
-
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
256
254
|
onPointerOver?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
257
255
|
onPointerOverCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
258
256
|
onPointerOut?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
cursor: pointer;
|
|
27
27
|
}
|
|
28
28
|
details[open] .ph6wj62 {
|
|
29
|
-
background-color: #
|
|
29
|
+
background-color: #F4F4F4;
|
|
30
30
|
}
|
|
31
31
|
.ph6wj63 {
|
|
32
32
|
max-width: 80%;
|
|
@@ -37,5 +37,5 @@ details[open] .ph6wj62 {
|
|
|
37
37
|
}
|
|
38
38
|
.ph6wj64 {
|
|
39
39
|
padding: 24px;
|
|
40
|
-
background-color: #
|
|
40
|
+
background-color: #F4F4F4;
|
|
41
41
|
}
|
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
padding-inline: 120px;
|
|
4
4
|
padding-top: 48px;
|
|
5
5
|
padding-bottom: 48px;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
align-items: center;
|
|
6
9
|
}
|
|
7
10
|
.tfms6a1 {
|
|
8
11
|
background: var(--_1073cm81);
|
|
@@ -23,20 +26,20 @@
|
|
|
23
26
|
margin-bottom: 32px;
|
|
24
27
|
font-family: var(--header-font-family);
|
|
25
28
|
}
|
|
26
|
-
_1073cm80 .tfms6a7 {
|
|
29
|
+
._1073cm80 .tfms6a7 {
|
|
27
30
|
-webkit-background-clip: text;
|
|
28
31
|
background-image: var(--_1073cm84);
|
|
29
32
|
-webkit-text-fill-color: transparent;
|
|
30
33
|
}
|
|
31
|
-
_1es6o1h0 .tfms6a7 {
|
|
34
|
+
._1es6o1h0 .tfms6a7 {
|
|
32
35
|
color: var(--_1073cm83);
|
|
33
36
|
}
|
|
34
|
-
_1073cm80 .tfms6a8 {
|
|
37
|
+
._1073cm80 .tfms6a8 {
|
|
35
38
|
-webkit-background-clip: text;
|
|
36
39
|
background-image: var(--_1073cm8b);
|
|
37
40
|
-webkit-text-fill-color: transparent;
|
|
38
41
|
}
|
|
39
|
-
_1es6o1h0 .tfms6a8 {
|
|
42
|
+
._1es6o1h0 .tfms6a8 {
|
|
40
43
|
color: var(--_1073cm8a);
|
|
41
44
|
}
|
|
42
45
|
.tfms6a9 {
|
|
@@ -82,6 +85,9 @@ _1es6o1h0 .tfms6a8 {
|
|
|
82
85
|
.tfms6al {
|
|
83
86
|
color: var(--_1073cm8n);
|
|
84
87
|
}
|
|
88
|
+
.tfms6am {
|
|
89
|
+
max-width: 860px;
|
|
90
|
+
}
|
|
85
91
|
@media screen and (max-width:1023px) {
|
|
86
92
|
.tfms6a0 {
|
|
87
93
|
padding-inline: 0;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
margin: auto;
|
|
17
17
|
max-width: 800px;
|
|
18
18
|
position: relative;
|
|
19
|
-
top:
|
|
19
|
+
top: 25%;
|
|
20
20
|
width: calc(100% - 3rem);
|
|
21
21
|
background-color: #FFFFFF;
|
|
22
22
|
}
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
color: #4a5560;
|
|
43
43
|
}
|
|
44
44
|
._427id38 {
|
|
45
|
-
min-height:
|
|
45
|
+
min-height: 120px;
|
|
46
46
|
padding: 16px;
|
|
47
47
|
color: #4a5560;
|
|
48
48
|
width: 100%;
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
@media screen and (max-width:600px) {
|
|
67
67
|
._427id33 {
|
|
68
|
-
top:
|
|
68
|
+
top: 15%;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
@media screen and (max-width:767px) {
|