@axos-web-dev/shared-components 0.0.40 → 0.0.42

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 (40) hide show
  1. package/dist/Accordion/Accordion.js +1 -0
  2. package/dist/AlertBanner/index.js +1 -0
  3. package/dist/BulletItem/BulletItem.js +1 -0
  4. package/dist/Carousel/index.js +1 -0
  5. package/dist/Chevron/index.js +1 -0
  6. package/dist/CollectInformationAlert/index.js +1 -0
  7. package/dist/ContentBanner/ContentBanner.css.d.ts +1 -0
  8. package/dist/DownloadTile/index.js +2 -1
  9. package/dist/FaqAccordion/index.js +1 -0
  10. package/dist/Forms/Forms.css.d.ts +4 -0
  11. package/dist/Forms/ScheduleCall.js +1 -0
  12. package/dist/Forms/SuccesForm.js +1 -0
  13. package/dist/HeroBanner/HeroBanner.css.d.ts +4 -0
  14. package/dist/Hyperlink/index.js +1 -0
  15. package/dist/IconBillboard/IconBillboard.css.d.ts +6 -0
  16. package/dist/ImageBillboard/ImageBillboard.css.d.ts +8 -0
  17. package/dist/ImageBillboard/ImageBillboard.js +1 -0
  18. package/dist/ImageBillboard/ImageBillboardSet.js +1 -0
  19. package/dist/Modal/Modal.js +1 -0
  20. package/dist/SetContainer/SetContainer.js +1 -0
  21. package/dist/VideoTile/VideoTile.js +1 -0
  22. package/dist/assets/ApyCalculator/ApyCalculator.css +3 -0
  23. package/dist/assets/ContentBanner/ContentBanner.css +1 -0
  24. package/dist/assets/DownloadTile/DownloadTile.css +20 -6
  25. package/dist/assets/Forms/Forms.css +2 -0
  26. package/dist/assets/HeroBanner/HeroBanner.css +4 -0
  27. package/dist/assets/IconBillboard/IconBillboard.css +4 -0
  28. package/dist/assets/ImageBillboard/ImageBillboard.css +4 -0
  29. package/dist/assets/Modal/Modal.css +1 -0
  30. package/dist/assets/Table/Table.css +16 -0
  31. package/dist/assets/TextBlock/TextBlock.css +1 -0
  32. package/dist/assets/icons/FollowIcon/FollowIcon.css +3 -0
  33. package/dist/icons/FollowIcon/FollowIcon.css.d.ts +1 -0
  34. package/dist/icons/FollowIcon/FollowIcon.css.js +7 -0
  35. package/dist/icons/FollowIcon/index.d.ts +6 -0
  36. package/dist/icons/FollowIcon/index.js +36 -0
  37. package/dist/icons/index.d.ts +1 -0
  38. package/dist/icons/index.js +2 -0
  39. package/dist/main.js +2 -0
  40. package/package.json +1 -1
@@ -9,6 +9,7 @@ import SvgChevronUp from "../icons/ChevronUp.js";
9
9
  /* empty css */
10
10
  /* empty css */
11
11
  /* empty css */
12
+ /* empty css */
12
13
  import { headerAccordion, headerContent, icon, accordion, bodyAccordion, hide, paragraph } from "./Accordion.css.js";
13
14
  const AccordionCtx = createContext({
14
15
  isOpen: false,
@@ -7,6 +7,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  /* empty css */
8
8
  import SvgLockIcon from "../icons/LockIcon/index.js";
9
9
  import { SvgWarningIcon } from "../icons/WarningIcon/index.js";
10
+ /* empty css */
10
11
  import { alertBanner, alertBanner_img_section, alertBanner_body, alertBanner_cta } from "./AlertBanner.css.js";
11
12
  const AlertBanner = ({
12
13
  alertType,
@@ -7,6 +7,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  /* empty css */
10
+ /* empty css */
10
11
  import { vars } from "../themes/axos.css.js";
11
12
  import { bulletIcon } from "./BulletItem.css.js";
12
13
  const BulletItem = (props) => {
@@ -8,6 +8,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
8
8
  import SvgQuoteIconGrey from "../icons/QuoteIconGrey.js";
9
9
  import SvgQuoteIconWhite from "../icons/QuoteIconWhite.js";
10
10
  import SvgQuoteIconYellow from "../icons/QuoteIconYellow.js";
11
+ /* empty css */
11
12
  import clsx from "clsx";
12
13
  import React, { useEffect, Children, cloneElement } from "react";
13
14
  import { icon, slide, authorLocation, author, carousel, slides, dots, dot } from "./Carousel.css.js";
@@ -5,6 +5,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
5
5
  /* empty css */
6
6
  /* empty css */
7
7
  /* empty css */
8
+ /* empty css */
8
9
  import "../Accordion/Accordion.js";
9
10
  import "../Accordion/Accordion.css.js";
10
11
  import "../AlertBanner/AlertBanner.css.js";
@@ -10,6 +10,7 @@ import SvgCloseIcon from "../icons/CloseIcon/index.js";
10
10
  /* empty css */
11
11
  /* empty css */
12
12
  /* empty css */
13
+ /* empty css */
13
14
  import { privacy_prompt, privacy_prompt_content, privacy_prompt_btns, close_btn_optin } from "./CollectInformationAlert.css.js";
14
15
  const CollectInformationAlert = () => {
15
16
  return /* @__PURE__ */ jsxs("div", { className: `${privacy_prompt}`, children: [
@@ -24,6 +24,7 @@ export declare const headline: import('@vanilla-extract/recipes').RuntimeFn<{
24
24
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
25
25
  backgroundClip: "text";
26
26
  WebkitTextFillColor: "transparent";
27
+ textShadow: "0px 0px #00000000";
27
28
  };
28
29
  secondary: {
29
30
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -2,6 +2,7 @@ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
2
  import "../icons/ArrowIcon/ArrowIcon.css.js";
3
3
  import "../icons/CheckIcon/CheckIcon.css.js";
4
4
  import SvgDownloadIcon from "../icons/DownloadIcon/index.js";
5
+ import SvgFollowIcon from "../icons/FollowIcon/index.js";
5
6
  import { table_section, table_section_container, table_header, media__table, download, ico, table_footer } from "./DownloadTile.css.js";
6
7
  const DownloadTile = ({
7
8
  id,
@@ -24,7 +25,7 @@ const DownloadTile = ({
24
25
  /* @__PURE__ */ jsx("tbody", { id: "body-table", children: downloadTiles.map(({ id: id2, url, displayName, action }) => /* @__PURE__ */ jsxs("tr", { children: [
25
26
  /* @__PURE__ */ jsx("td", { "data-label": "", children: displayName }),
26
27
  /* @__PURE__ */ jsx("td", { "data-label": "", children: /* @__PURE__ */ jsxs("a", { href: url, target: "_blank", className: download, children: [
27
- /* @__PURE__ */ jsx(SvgDownloadIcon, { className: ico }),
28
+ action.toLowerCase() === "download" ? /* @__PURE__ */ jsx(SvgDownloadIcon, { className: ico }) : /* @__PURE__ */ jsx(SvgFollowIcon, { className: ico }),
28
29
  /* @__PURE__ */ jsx("span", { children: action })
29
30
  ] }) })
30
31
  ] }, id2)) })
@@ -6,6 +6,7 @@ import SvgChevronUp from "../icons/ChevronUp.js";
6
6
  /* empty css */
7
7
  /* empty css */
8
8
  /* empty css */
9
+ /* empty css */
9
10
  import { create } from "zustand";
10
11
  import { icon } from "../Accordion/Accordion.css.js";
11
12
  import { summary, summaryHeader, content, header, faqAccordion } from "./FaqAccordion.css.js";
@@ -23,12 +23,14 @@ export declare const headerForm: import('@vanilla-extract/recipes').RuntimeFn<{
23
23
  WebkitBackgroundClip: string;
24
24
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
25
25
  WebkitTextFillColor: string;
26
+ textShadow: string;
26
27
  color?: undefined;
27
28
  } | {
28
29
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
29
30
  WebkitBackgroundClip?: undefined;
30
31
  backgroundImage?: undefined;
31
32
  WebkitTextFillColor?: undefined;
33
+ textShadow?: undefined;
32
34
  };
33
35
  };
34
36
  };
@@ -38,12 +40,14 @@ export declare const headerForm: import('@vanilla-extract/recipes').RuntimeFn<{
38
40
  WebkitBackgroundClip: "text";
39
41
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
40
42
  WebkitTextFillColor: "transparent";
43
+ textShadow: "0px 0px #00000000";
41
44
  color?: undefined;
42
45
  } | {
43
46
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
44
47
  WebkitBackgroundClip?: undefined;
45
48
  backgroundImage?: undefined;
46
49
  WebkitTextFillColor?: undefined;
50
+ textShadow?: undefined;
47
51
  };
48
52
  };
49
53
  };
@@ -15,6 +15,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
15
15
  /* empty css */
16
16
  /* empty css */
17
17
  /* empty css */
18
+ /* empty css */
18
19
  import { associatedEmail } from "../utils/EverestValidity.js";
19
20
  import { getVariant } from "../utils/getVariant.js";
20
21
  import clsx from "clsx";
@@ -16,6 +16,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
16
16
  /* empty css */
17
17
  /* empty css */
18
18
  /* empty css */
19
+ /* empty css */
19
20
  import "react-hook-form";
20
21
  function SuccesFormWrapper({
21
22
  children,
@@ -30,11 +30,13 @@ export declare const supertag: import('@vanilla-extract/recipes').RuntimeFn<{
30
30
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
31
31
  backgroundClip: "text";
32
32
  WebkitTextFillColor: "transparent";
33
+ textShadow: "0px 0px #00000000";
33
34
  };
34
35
  secondary: {
35
36
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
36
37
  backgroundClip: "text";
37
38
  WebkitTextFillColor: "transparent";
39
+ textShadow: "0px 0px #00000000";
38
40
  };
39
41
  tertiary: {
40
42
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -50,11 +52,13 @@ export declare const headline_text: import('@vanilla-extract/recipes').RuntimeFn
50
52
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
51
53
  backgroundClip: "text";
52
54
  WebkitTextFillColor: "transparent";
55
+ textShadow: "0px 0px #00000000";
53
56
  };
54
57
  secondary: {
55
58
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
56
59
  backgroundClip: "text";
57
60
  WebkitTextFillColor: "transparent";
61
+ textShadow: "0px 0px #00000000";
58
62
  };
59
63
  tertiary: {
60
64
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -7,6 +7,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  /* empty css */
10
+ /* empty css */
10
11
  import "../Chevron/Chevron.css.js";
11
12
  import "../AlertBanner/AlertBanner.css.js";
12
13
  import { useGlobalContext } from "../Modal/contextApi/store.js";
@@ -36,12 +36,14 @@ export declare const title: import('@vanilla-extract/recipes').RuntimeFn<{
36
36
  WebkitBackgroundClip: "text";
37
37
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
38
38
  WebkitTextFillColor: "transparent";
39
+ textShadow: "0px 0px #00000000";
39
40
  color?: undefined;
40
41
  } | {
41
42
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
42
43
  WebkitBackgroundClip?: undefined;
43
44
  backgroundImage?: undefined;
44
45
  WebkitTextFillColor?: undefined;
46
+ textShadow?: undefined;
45
47
  };
46
48
  };
47
49
  };
@@ -51,12 +53,14 @@ export declare const title: import('@vanilla-extract/recipes').RuntimeFn<{
51
53
  WebkitBackgroundClip: "text";
52
54
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
53
55
  WebkitTextFillColor: "transparent";
56
+ textShadow: "0px 0px #00000000";
54
57
  color?: undefined;
55
58
  } | {
56
59
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
57
60
  WebkitBackgroundClip?: undefined;
58
61
  backgroundImage?: undefined;
59
62
  WebkitTextFillColor?: undefined;
63
+ textShadow?: undefined;
60
64
  };
61
65
  };
62
66
  };
@@ -79,11 +83,13 @@ export declare const header_section: import('@vanilla-extract/recipes').RuntimeF
79
83
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
80
84
  backgroundClip: "text";
81
85
  WebkitTextFillColor: "transparent";
86
+ textShadow: "0px 0px #00000000";
82
87
  };
83
88
  secondary: {
84
89
  background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
85
90
  backgroundClip: "text";
86
91
  WebkitTextFillColor: "transparent";
92
+ textShadow: "0px 0px #00000000";
87
93
  };
88
94
  tertiary: {
89
95
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -45,12 +45,14 @@ export declare const supertag: import('@vanilla-extract/recipes').RuntimeFn<{
45
45
  WebkitBackgroundClip: "text";
46
46
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
47
47
  WebkitTextFillColor: "transparent";
48
+ textShadow: "0px 0px #00000000";
48
49
  color?: undefined;
49
50
  } | {
50
51
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
51
52
  WebkitBackgroundClip?: undefined;
52
53
  backgroundImage?: undefined;
53
54
  WebkitTextFillColor?: undefined;
55
+ textShadow?: undefined;
54
56
  };
55
57
  };
56
58
  };
@@ -60,12 +62,14 @@ export declare const supertag: import('@vanilla-extract/recipes').RuntimeFn<{
60
62
  WebkitBackgroundClip: "text";
61
63
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
62
64
  WebkitTextFillColor: "transparent";
65
+ textShadow: "0px 0px #00000000";
63
66
  color?: undefined;
64
67
  } | {
65
68
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
66
69
  WebkitBackgroundClip?: undefined;
67
70
  backgroundImage?: undefined;
68
71
  WebkitTextFillColor?: undefined;
72
+ textShadow?: undefined;
69
73
  };
70
74
  };
71
75
  };
@@ -85,12 +89,14 @@ export declare const header: import('@vanilla-extract/recipes').RuntimeFn<{
85
89
  WebkitBackgroundClip: "text";
86
90
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
87
91
  WebkitTextFillColor: "transparent";
92
+ textShadow: "0px 0px #00000000";
88
93
  color?: undefined;
89
94
  } | {
90
95
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
91
96
  WebkitBackgroundClip?: undefined;
92
97
  backgroundImage?: undefined;
93
98
  WebkitTextFillColor?: undefined;
99
+ textShadow?: undefined;
94
100
  };
95
101
  };
96
102
  };
@@ -100,12 +106,14 @@ export declare const header: import('@vanilla-extract/recipes').RuntimeFn<{
100
106
  WebkitBackgroundClip: "text";
101
107
  backgroundImage: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
102
108
  WebkitTextFillColor: "transparent";
109
+ textShadow: "0px 0px #00000000";
103
110
  color?: undefined;
104
111
  } | {
105
112
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
106
113
  WebkitBackgroundClip?: undefined;
107
114
  backgroundImage?: undefined;
108
115
  WebkitTextFillColor?: undefined;
116
+ textShadow?: undefined;
109
117
  };
110
118
  };
111
119
  };
@@ -5,6 +5,7 @@ import SvgCheckIcon from "../icons/CheckIcon/index.js";
5
5
  /* empty css */
6
6
  /* empty css */
7
7
  /* empty css */
8
+ /* empty css */
8
9
  import { getVariant } from "../utils/getVariant.js";
9
10
  import { Button } from "../Button/Button.js";
10
11
  import "../Button/Button.css.js";
@@ -9,6 +9,7 @@ import SvgCheckIcon from "../icons/CheckIcon/index.js";
9
9
  /* empty css */
10
10
  /* empty css */
11
11
  /* empty css */
12
+ /* empty css */
12
13
  import { getVariant } from "../utils/getVariant.js";
13
14
  import clsx from "clsx";
14
15
  import { billboard, imagePlacement, billboard_img, image_background, rate_container, rate_pad, up_to, rate_billboard, apy_billboard, body, billboard_body, billboard_header_section, supertag, header, body_copy, sub_bullets, billboard_ctas } from "./ImageBillboard.css.js";
@@ -7,6 +7,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  /* empty css */
10
+ /* empty css */
10
11
  import "../AlertBanner/AlertBanner.css.js";
11
12
  import { Button } from "../Button/Button.js";
12
13
  import "../Button/Button.css.js";
@@ -5,6 +5,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
5
5
  /* empty css */
6
6
  /* empty css */
7
7
  /* empty css */
8
+ /* empty css */
8
9
  /* empty css */
9
10
  /* empty css */
10
11
  import "../Accordion/Accordion.js";
@@ -7,6 +7,7 @@ import SvgChevronUp from "../icons/ChevronUp.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  /* empty css */
10
+ /* empty css */
10
11
  import ReactMarkdown from "react-markdown";
11
12
  import { useToggle } from "react-use";
12
13
  import { VideoInit } from "./VideoInit.js";
@@ -11,6 +11,7 @@
11
11
  background: var(--_1073cm84);
12
12
  background-clip: text;
13
13
  -webkit-text-fill-color: transparent;
14
+ text-shadow: 0px 0px #00000000;
14
15
  }
15
16
  ._74vxga4 {
16
17
  text-align: center;
@@ -45,6 +46,7 @@
45
46
  background: var(--_1073cm84);
46
47
  background-clip: text;
47
48
  -webkit-text-fill-color: transparent;
49
+ text-shadow: 0px 0px #00000000;
48
50
  }
49
51
  ._74vxga7 {
50
52
  position: relative;
@@ -84,6 +86,7 @@
84
86
  background: var(--_1073cm84);
85
87
  background-clip: text;
86
88
  -webkit-text-fill-color: transparent;
89
+ text-shadow: 0px 0px #00000000;
87
90
  }
88
91
  ._74vxgah {
89
92
  display: flex;
@@ -18,6 +18,7 @@
18
18
  background: var(--_1073cm84);
19
19
  background-clip: text;
20
20
  -webkit-text-fill-color: transparent;
21
+ text-shadow: 0px 0px #00000000;
21
22
  }
22
23
  ._1bwl51g7 {
23
24
  color: var(--_1073cm8a);
@@ -53,8 +53,11 @@
53
53
  display: flex;
54
54
  color: var(--_1073cm86);
55
55
  }
56
+ ._14gexxj2 tbody td:last-child {
57
+ min-width: 148px;
58
+ }
56
59
  ._14gexxj2 ._14gexxj3 ._14gexxj4 {
57
- margin: 2px 5px;
60
+ margin: 0 8px 0 0;
58
61
  }
59
62
  ._14gexxj5 h2 {
60
63
  font-weight: 600;
@@ -63,6 +66,7 @@
63
66
  background: var(--_1073cm84);
64
67
  background-clip: text;
65
68
  -webkit-text-fill-color: transparent;
69
+ text-shadow: 0px 0px #00000000;
66
70
  }
67
71
  ._14gexxj6 {
68
72
  margin-inline: auto;
@@ -70,19 +74,29 @@
70
74
  max-width: 49.5rem;
71
75
  text-align: center;
72
76
  }
77
+ @media screen and (max-width:1023px) {
78
+ ._14gexxj0 {
79
+ width: 100%;
80
+ }
81
+ }
73
82
  @media screen and (max-width:767px) {
74
83
  ._14gexxj2 tbody td {
75
84
  padding: 16px;
76
85
  }
77
86
  }
87
+ @media screen and (max-width:768px) {
88
+ ._14gexxj2 tbody td:first-child {
89
+ font-size: 12px;
90
+ line-height: 1.33;
91
+ align-self: center;
92
+ }
93
+ ._14gexxj6 {
94
+ margin-bottom: 1.5rem;
95
+ }
96
+ }
78
97
  @media screen and (max-width:500px) {
79
98
  ._14gexxj5 h2 {
80
99
  font-size: 20px;
81
100
  line-height: 1.2;
82
101
  }
83
- }
84
- @media screen and (max-width:768px) {
85
- ._14gexxj6 {
86
- margin-bottom: 1.5rem;
87
- }
88
102
  }
@@ -45,6 +45,7 @@
45
45
  -webkit-background-clip: text;
46
46
  background-image: var(--_1073cm84);
47
47
  -webkit-text-fill-color: transparent;
48
+ text-shadow: 0px 0px #00000000;
48
49
  }
49
50
  ._1es6o1h0 .tfms6a7 {
50
51
  color: var(--_1073cm83);
@@ -53,6 +54,7 @@
53
54
  -webkit-background-clip: text;
54
55
  background-image: var(--_1073cm8b);
55
56
  -webkit-text-fill-color: transparent;
57
+ text-shadow: 0px 0px #00000000;
56
58
  }
57
59
  ._1es6o1h0 .tfms6a8 {
58
60
  color: var(--_1073cm8a);
@@ -47,11 +47,13 @@
47
47
  background: var(--_1073cm84);
48
48
  background-clip: text;
49
49
  -webkit-text-fill-color: transparent;
50
+ text-shadow: 0px 0px #00000000;
50
51
  }
51
52
  ._1ye8k3fd {
52
53
  background: var(--_1073cm8b);
53
54
  background-clip: text;
54
55
  -webkit-text-fill-color: transparent;
56
+ text-shadow: 0px 0px #00000000;
55
57
  }
56
58
  ._1ye8k3fe {
57
59
  color: var(--_1073cm8k);
@@ -66,11 +68,13 @@
66
68
  background: var(--_1073cm84);
67
69
  background-clip: text;
68
70
  -webkit-text-fill-color: transparent;
71
+ text-shadow: 0px 0px #00000000;
69
72
  }
70
73
  ._1ye8k3fi {
71
74
  background: var(--_1073cm8b);
72
75
  background-clip: text;
73
76
  -webkit-text-fill-color: transparent;
77
+ text-shadow: 0px 0px #00000000;
74
78
  }
75
79
  ._1ye8k3fj {
76
80
  color: var(--_1073cm8h);
@@ -51,6 +51,7 @@
51
51
  -webkit-background-clip: text;
52
52
  background-image: var(--_1073cm84);
53
53
  -webkit-text-fill-color: transparent;
54
+ text-shadow: 0px 0px #00000000;
54
55
  }
55
56
  ._1es6o1h0 ._1r4ovbua {
56
57
  color: var(--_1073cm83);
@@ -59,6 +60,7 @@
59
60
  -webkit-background-clip: text;
60
61
  background-image: var(--_1073cm8b);
61
62
  -webkit-text-fill-color: transparent;
63
+ text-shadow: 0px 0px #00000000;
62
64
  }
63
65
  ._1es6o1h0 ._1r4ovbub {
64
66
  color: var(--_1073cm8a);
@@ -106,11 +108,13 @@
106
108
  background: var(--_1073cm84);
107
109
  background-clip: text;
108
110
  -webkit-text-fill-color: transparent;
111
+ text-shadow: 0px 0px #00000000;
109
112
  }
110
113
  ._1r4ovbul {
111
114
  background: var(--_1073cm8b);
112
115
  background-clip: text;
113
116
  -webkit-text-fill-color: transparent;
117
+ text-shadow: 0px 0px #00000000;
114
118
  }
115
119
  ._1r4ovbum {
116
120
  color: var(--_1073cm8h);
@@ -41,6 +41,7 @@
41
41
  -webkit-background-clip: text;
42
42
  background-image: var(--_1073cm84);
43
43
  -webkit-text-fill-color: transparent;
44
+ text-shadow: 0px 0px #00000000;
44
45
  }
45
46
  ._1es6o1h0 ._1m7m2a9 {
46
47
  color: var(--_1073cm83);
@@ -49,6 +50,7 @@
49
50
  -webkit-background-clip: text;
50
51
  background-image: var(--_1073cm8b);
51
52
  -webkit-text-fill-color: transparent;
53
+ text-shadow: 0px 0px #00000000;
52
54
  }
53
55
  ._1es6o1h0 ._1m7m2aa {
54
56
  color: var(--_1073cm8a);
@@ -63,6 +65,7 @@
63
65
  -webkit-background-clip: text;
64
66
  background-image: var(--_1073cm84);
65
67
  -webkit-text-fill-color: transparent;
68
+ text-shadow: 0px 0px #00000000;
66
69
  }
67
70
  ._1es6o1h0 ._1m7m2ae {
68
71
  color: var(--_1073cm83);
@@ -71,6 +74,7 @@
71
74
  -webkit-background-clip: text;
72
75
  background-image: var(--_1073cm8b);
73
76
  -webkit-text-fill-color: transparent;
77
+ text-shadow: 0px 0px #00000000;
74
78
  }
75
79
  ._1es6o1h0 ._1m7m2af {
76
80
  color: var(--_1073cm8a);
@@ -36,6 +36,7 @@
36
36
  background: var(--_1073cm84);
37
37
  background-clip: text;
38
38
  -webkit-text-fill-color: transparent;
39
+ text-shadow: 0px 0px #00000000;
39
40
  }
40
41
  ._427id37 {
41
42
  letter-spacing: .2px;
@@ -19,6 +19,7 @@
19
19
  background: var(--_1073cm84);
20
20
  background-clip: text;
21
21
  -webkit-text-fill-color: transparent;
22
+ text-shadow: 0px 0px #00000000;
22
23
  }
23
24
  ._1nivbwe5 tbody tr:first-child td {
24
25
  background-color: #DEF4FF !important;
@@ -39,6 +40,11 @@
39
40
  letter-spacing: 0.2px;
40
41
  margin-bottom: 8px;
41
42
  }
43
+ ._1nivbwe7 p sup {
44
+ vertical-align: top;
45
+ position: relative;
46
+ top: -0.5em;
47
+ }
42
48
  ._1nivbwe8 {
43
49
  color: var(--_1073cm82);
44
50
  }
@@ -225,6 +231,13 @@ th .flex.middle.center {
225
231
  text-align: center;
226
232
  width: 90%;
227
233
  }
234
+ td:has(.flex.middle span.img_fluid) .flex.middle {
235
+ flex-wrap: nowrap;
236
+ align-items: flex-start;
237
+ }
238
+ td:has(.flex.middle span.img_fluid) .img_fluid {
239
+ min-width: 24px;
240
+ }
228
241
  @media screen and (max-width: 768px) {
229
242
  ._1nivbwed:first-child {
230
243
  box-shadow: 0 15px 20px 0px rgb(0 0 0 / 0.3);
@@ -269,6 +282,9 @@ th .flex.middle.center {
269
282
  th .flex.middle.center {
270
283
  overflow-wrap: normal;
271
284
  }
285
+ td:has(.flex.middle span.img_fluid) .flex.middle {
286
+ overflow-wrap: normal;
287
+ }
272
288
  }
273
289
  @media screen and (max-width: 327px) {
274
290
  ._1nivbwe0 {
@@ -6,6 +6,7 @@
6
6
  background: var(--_1073cm84);
7
7
  background-clip: text;
8
8
  -webkit-text-fill-color: transparent;
9
+ text-shadow: 0px 0px #00000000;
9
10
  }
10
11
  ._16g7rvn2 {
11
12
  margin: 1em 0;
@@ -0,0 +1,3 @@
1
+ ._1wjdwci0 {
2
+ fill: var(--_1073cm86);
3
+ }
@@ -0,0 +1 @@
1
+ export declare const FollowColor: string;
@@ -0,0 +1,7 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ /* empty css */
4
+ var FollowColor = "_1wjdwci0";
5
+ export {
6
+ FollowColor
7
+ };
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+
3
+ declare const SvgFollowIcon: FC<{
4
+ className?: string;
5
+ }>;
6
+ export default SvgFollowIcon;
@@ -0,0 +1,36 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { FollowColor } from "./FollowIcon.css.js";
3
+ const SvgFollowIcon = ({ className }) => {
4
+ return /* @__PURE__ */ jsxs(
5
+ "svg",
6
+ {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ width: 18,
9
+ height: 18,
10
+ viewBox: "0 0 18 18",
11
+ fill: "none",
12
+ className,
13
+ children: [
14
+ /* @__PURE__ */ jsx(
15
+ "path",
16
+ {
17
+ className: FollowColor,
18
+ d: "M15.4388 1.50034H10.8844V0H18V7.11558H16.4997V2.56124L8.79946 10.2614L7.73856 9.20054L15.4388 1.50034Z",
19
+ fill: "#2F5B88"
20
+ }
21
+ ),
22
+ /* @__PURE__ */ jsx(
23
+ "path",
24
+ {
25
+ className: FollowColor,
26
+ d: "M3 3H9V1.5H3C1.34315 1.5 0 2.84315 0 4.5V15C0 16.6569 1.34315 18 3 18H13.5C15.1569 18 16.5 16.6569 16.5 15V9H15V15C15 15.8284 14.3284 16.5 13.5 16.5H3C2.17157 16.5 1.5 15.8284 1.5 15V4.5C1.5 3.67157 2.17157 3 3 3Z",
27
+ fill: "#2F5B88"
28
+ }
29
+ )
30
+ ]
31
+ }
32
+ );
33
+ };
34
+ export {
35
+ SvgFollowIcon as default
36
+ };
@@ -15,3 +15,4 @@ export { default as QuoteIconGrey } from './QuoteIconGrey';
15
15
  export { default as QuoteIconWhite } from './QuoteIconWhite';
16
16
  export { default as QuoteIconYellow } from './QuoteIconYellow';
17
17
  export { default as WarningIcon } from './WarningIcon';
18
+ export { default as FollowIcon } from './FollowIcon';
@@ -15,6 +15,7 @@ import { default as default15 } from "./QuoteIconGrey.js";
15
15
  import { default as default16 } from "./QuoteIconWhite.js";
16
16
  import { default as default17 } from "./QuoteIconYellow.js";
17
17
  import { SvgWarningIcon } from "./WarningIcon/index.js";
18
+ import { default as default18 } from "./FollowIcon/index.js";
18
19
  export {
19
20
  default2 as ArrowIcon,
20
21
  default3 as AxosX,
@@ -27,6 +28,7 @@ export {
27
28
  default10 as CloseIcon,
28
29
  default11 as DownloadIcon,
29
30
  default12 as EqualHousingLender,
31
+ default18 as FollowIcon,
30
32
  default13 as LockIcon,
31
33
  default14 as MemberFdicLogo,
32
34
  default15 as QuoteIconGrey,
package/dist/main.js CHANGED
@@ -78,6 +78,7 @@ import { default as default17 } from "./icons/QuoteIconGrey.js";
78
78
  import { default as default18 } from "./icons/QuoteIconWhite.js";
79
79
  import { default as default19 } from "./icons/QuoteIconYellow.js";
80
80
  import { SvgWarningIcon } from "./icons/WarningIcon/index.js";
81
+ import { default as default20 } from "./icons/FollowIcon/index.js";
81
82
  import { axosTheme, vars } from "./themes/axos.css.js";
82
83
  import { premierTheme } from "./themes/premier.css.js";
83
84
  export {
@@ -113,6 +114,7 @@ export {
113
114
  ExecutiveBio,
114
115
  ExecutiveBioSet,
115
116
  FaqAccordion,
117
+ default20 as FollowIcon,
116
118
  FooterContent,
117
119
  FooterDisclosure,
118
120
  FooterIcons,
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": "0.0.40",
4
+ "version": "0.0.42",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",