@axos-web-dev/shared-components 0.0.19 → 0.0.21

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/ApyCalculator/index.js +27 -10
  2. package/dist/BulletItem/BulletItem.d.ts +1 -0
  3. package/dist/BulletItem/BulletItem.js +32 -5
  4. package/dist/Carousel/index.js +9 -7
  5. package/dist/Chevron/Chevron.css.d.ts +18 -0
  6. package/dist/ContentBanner/ContentBanner.interface.d.ts +1 -0
  7. package/dist/ContentBanner/index.js +6 -4
  8. package/dist/FooterDisclosure/FooterDisclosure.css.d.ts +0 -1
  9. package/dist/FooterDisclosure/FooterDisclosure.css.js +2 -4
  10. package/dist/FooterDisclosure/FooterDisclosure.js +8 -10
  11. package/dist/FooterDisclosure/index.js +1 -2
  12. package/dist/HeroBanner/index.js +1 -0
  13. package/dist/IconBillboard/IconBillboard.js +1 -1
  14. package/dist/ImageBillboard/ImageBillboard.css.d.ts +1 -0
  15. package/dist/ImageBillboard/ImageBillboard.css.js +2 -0
  16. package/dist/ImageBillboard/ImageBillboardSet.js +16 -11
  17. package/dist/ImageBillboard/index.js +2 -1
  18. package/dist/Modal/Modal.css.d.ts +1 -0
  19. package/dist/Modal/Modal.css.js +3 -1
  20. package/dist/Modal/Modal.js +45 -42
  21. package/dist/NavigationMenu/AxosAdvisor/index.js +202 -182
  22. package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
  23. package/dist/NavigationMenu/AxosFiduciary/index.js +2 -2
  24. package/dist/SecondaryFooter/index.js +2 -1
  25. package/dist/SetContainer/SetContainer.js +3 -3
  26. package/dist/Table/Table.css.d.ts +1 -0
  27. package/dist/Table/Table.css.js +2 -0
  28. package/dist/Table/Table.d.ts +1 -1
  29. package/dist/Table/Table.interface.d.ts +1 -0
  30. package/dist/Table/Table.js +4 -2
  31. package/dist/Table/index.js +2 -1
  32. package/dist/TextBlock/TextBlock.d.ts +1 -0
  33. package/dist/TextBlock/TextBlock.js +1 -1
  34. package/dist/assets/ApyCalculator/ApyCalculator.css +11 -6
  35. package/dist/assets/Chevron/Chevron.css +12 -0
  36. package/dist/assets/FooterDisclosure/FooterDisclosure.css +4 -8
  37. package/dist/assets/HeroBanner/HeroBanner.css +2 -5
  38. package/dist/assets/ImageBillboard/ImageBillboard.css +25 -3
  39. package/dist/assets/Modal/Modal.css +5 -0
  40. package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +81 -82
  41. package/dist/assets/SetContainer/SetContainer.css +4 -1
  42. package/dist/assets/Table/Table.css +10 -0
  43. package/dist/assets/VideoWrapper/VideoWrapper.css +2 -0
  44. package/dist/main.js +5 -4
  45. package/dist/utils/validateExternalLinks.js +2 -3
  46. package/package.json +1 -1
@@ -2,12 +2,13 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
3
  import clsx from "clsx";
4
4
  import { createElement } from "react";
5
- import { table_container, table_container_text, table_headline, tableWrapper, table, highlight_first_row, highlight_last_row, alternate_color_rows, apy_table, td, th } from "./Table.css.js";
5
+ import { table_container, table_container_text, table_headline, table_description_text, tableWrapper, table, highlight_first_row, highlight_last_row, alternate_color_rows, apy_table, td, th } from "./Table.css.js";
6
6
  const TableContainer = ({
7
7
  tableTitle,
8
8
  tableBody,
9
9
  tableFooter,
10
- tableType = "Standard"
10
+ tableType = "Standard",
11
+ tableDescription
11
12
  }) => {
12
13
  return /* @__PURE__ */ jsxs(
13
14
  "div",
@@ -18,6 +19,7 @@ const TableContainer = ({
18
19
  ),
19
20
  children: [
20
21
  tableTitle && /* @__PURE__ */ jsx("div", { className: table_container_text, children: /* @__PURE__ */ jsx("h1", { className: clsx("header_1", table_headline), children: tableTitle }) }),
22
+ tableDescription && /* @__PURE__ */ jsx("div", { className: table_description_text, children: tableDescription }),
21
23
  tableBody,
22
24
  tableFooter && /* @__PURE__ */ jsx("div", { className: clsx(table_container_text, "push_up_24"), children: tableFooter })
23
25
  ]
@@ -1,5 +1,5 @@
1
1
  import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "./Table.js";
2
- import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_headline, td, th } from "./Table.css.js";
2
+ import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, td, th } from "./Table.css.js";
3
3
  export {
4
4
  Table,
5
5
  TableBody,
@@ -18,6 +18,7 @@ export {
18
18
  tableWrapper,
19
19
  table_container,
20
20
  table_container_text,
21
+ table_description_text,
21
22
  table_headline,
22
23
  td,
23
24
  th
@@ -3,5 +3,6 @@ import { ReactNode } from 'react';
3
3
  export interface TextBlockProps {
4
4
  bodyCopy: ReactNode | string;
5
5
  headline: ReactNode | string;
6
+ id?: string;
6
7
  }
7
8
  export declare const TextBlock: (props: TextBlockProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { textBlockHeader } from "./TextBlock.css.js";
3
3
  const TextBlock = (props) => {
4
- return /* @__PURE__ */ jsxs("div", { className: "containment section_spacer", children: [
4
+ return /* @__PURE__ */ jsxs("div", { id: `id_${props.id}`, className: "containment section_spacer", children: [
5
5
  /* @__PURE__ */ jsx("h2", { className: `header_2 text_center ${textBlockHeader}`, children: props.headline }),
6
6
  /* @__PURE__ */ jsx("div", { children: props.bodyCopy })
7
7
  ] });
@@ -58,7 +58,7 @@
58
58
  }
59
59
  ._74vxga9 {
60
60
  left: 21px;
61
- top: 47px;
61
+ top: 44px;
62
62
  }
63
63
  ._74vxgaa {
64
64
  top: 47px;
@@ -104,6 +104,11 @@
104
104
  text-align: left;
105
105
  padding: 20px 20px 22px;
106
106
  }
107
+ ._74vxgai tr {
108
+ display: flex;
109
+ flex-wrap: nowrap;
110
+ align-items: center;
111
+ }
107
112
  ._74vxgai td {
108
113
  padding: 20px 20px 22px;
109
114
  flex: 1 1;
@@ -140,6 +145,11 @@
140
145
  margin-top: 1rem;
141
146
  }
142
147
  }
148
+ @media screen and (max-width: 468px) {
149
+ ._74vxgah {
150
+ flex-direction: column;
151
+ }
152
+ }
143
153
  @media screen and (max-width:992px) {
144
154
  ._74vxgai {
145
155
  margin-top: 25px;
@@ -152,11 +162,6 @@
152
162
  ._74vxgai th:first-child, ._74vxgai td:first-child {
153
163
  flex: 2 2;
154
164
  }
155
- ._74vxgai tr {
156
- display: flex;
157
- flex-wrap: nowrap;
158
- align-items: center;
159
- }
160
165
  ._74vxgai td {
161
166
  padding: 20px;
162
167
  font-size: 18px;
@@ -10,12 +10,24 @@
10
10
  ._1gp5vfo1 {
11
11
  color: var(--_1073cm86);
12
12
  }
13
+ ._1gp5vfo1:hover {
14
+ text-decoration: underline;
15
+ text-decoration-color: var(--_1073cm86);
16
+ }
13
17
  ._1gp5vfo2 {
14
18
  color: var(--_1073cm8k);
15
19
  }
20
+ ._1gp5vfo2:hover {
21
+ text-decoration: underline;
22
+ text-decoration-color: var(--_1073cm8k);
23
+ }
16
24
  ._1gp5vfo3 {
17
25
  color: var(--_1073cm8g);
18
26
  }
27
+ ._1gp5vfo3:hover {
28
+ text-decoration: underline;
29
+ text-decoration-color: var(--_1073cm8g);
30
+ }
19
31
  ._1gp5vfo4 .arrow {
20
32
  margin-left: 15px;
21
33
  }
@@ -5,22 +5,18 @@
5
5
  width: 100%;
6
6
  }
7
7
  ._1a6b3vu1 {
8
- margin-bottom: 16px;
9
8
  line-height: 24px;
10
9
  letter-spacing: 0.2px;
11
10
  }
12
11
  ._1a6b3vu2 {
13
- margin-bottom: 32px;
14
- }
15
- ._1a6b3vu3 {
16
12
  max-height: 40px;
17
13
  display: flex;
18
14
  gap: 40px;
19
15
  }
20
- ._1a6b3vu4 {
16
+ ._1a6b3vu3 {
21
17
  color: #ffffff;
22
18
  }
23
- ._1a6b3vu4:hover {
19
+ ._1a6b3vu3:hover {
24
20
  opacity: 0.8;
25
21
  }
26
22
  @media screen and (min-width: 1920px) {
@@ -29,8 +25,8 @@
29
25
  padding-bottom: 32px;
30
26
  }
31
27
  }
32
- @media screen and (max-width: 1280px) {
33
- ._1a6b3vu3 {
28
+ @media screen and (max-width: 1024px) {
29
+ ._1a6b3vu2 {
34
30
  justify-content: center;
35
31
  }
36
32
  }
@@ -34,7 +34,7 @@
34
34
  }
35
35
  ._1ye8k3fa img {
36
36
  max-width: 604px;
37
- max-height: 510px;
37
+ max-height: 515px;
38
38
  object-fit: cover;
39
39
  }
40
40
  ._1ye8k3fb {
@@ -91,10 +91,6 @@
91
91
  ._1ye8k3fl:empty {
92
92
  display: none;
93
93
  }
94
- ._1ye8k3f0 ._1ye8k3fl > *:nth-child(2) {
95
- margin-top: 1.5rem;
96
- margin-left: 0;
97
- }
98
94
  @media screen and (max-width:1280px) {
99
95
  ._1ye8k3fl {
100
96
  margin-top: 2.5rem;
@@ -141,6 +137,7 @@
141
137
  gap: 1.5rem;
142
138
  }
143
139
  ._1ye8k3fa {
140
+ min-height: 510px;
144
141
  _1ye8k3f0 & {
145
142
  max-width: 708px;
146
143
  }
@@ -142,7 +142,7 @@
142
142
  background-position: center center;
143
143
  }
144
144
  ._18ygy9m0 ._1m7m2au {
145
- min-height: 380px;
145
+ min-height: 330px;
146
146
  }
147
147
  ._1m7m2av {
148
148
  background: var(--_1073cm8f);
@@ -173,9 +173,12 @@
173
173
  letter-spacing: 0.3px;
174
174
  line-height: 1;
175
175
  }
176
+ ._1m7m2a10 > p {
177
+ white-space: break-spaces;
178
+ }
176
179
  @media screen and (max-width:1023px) {
177
180
  ._1m7m2a0 {
178
- flex-direction: column;
181
+ flex-direction: column-reverse;
179
182
  }
180
183
  .reversed {
181
184
  flex-direction: column-reverse;
@@ -200,7 +203,10 @@
200
203
  }
201
204
  @media screen and (max-width: 1023px) {
202
205
  ._1m7m2au {
203
- min-height: 380px;
206
+ min-height: 275px;
207
+ }
208
+ ._18ygy9m0 ._1m7m2au {
209
+ min-height: 275px;
204
210
  }
205
211
  ._1m7m2ax {
206
212
  font-size: 30px;
@@ -211,4 +217,20 @@
211
217
  ._1m7m2az {
212
218
  font-size: 20px;
213
219
  }
220
+ }
221
+ @media screen and (max-width: 768px) {
222
+ ._1m7m2au {
223
+ min-height: 200px;
224
+ }
225
+ ._18ygy9m0 ._1m7m2au {
226
+ min-height: 200px;
227
+ }
228
+ }
229
+ @media screen and (max-width: 327px) {
230
+ ._1m7m2au {
231
+ min-height: 160px;
232
+ }
233
+ ._18ygy9m0 ._1m7m2au {
234
+ min-height: 160px;
235
+ }
214
236
  }
@@ -63,6 +63,11 @@
63
63
  word-break: break-all;
64
64
  word-wrap: break-word;
65
65
  }
66
+ ._427id3b {
67
+ height: 100%;
68
+ position: fixed;
69
+ width: 100%;
70
+ }
66
71
  @media screen and (max-width:600px) {
67
72
  ._427id33 {
68
73
  top: 15%;