@axos-web-dev/shared-components 1.0.19 → 1.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 (53) hide show
  1. package/dist/ATMLocator/ATMLocator.js +15 -13
  2. package/dist/Button/Button.js +2 -0
  3. package/dist/Calculators/BuyDownCalculator/BuyDownCalculator.css.d.ts +101 -0
  4. package/dist/Calculators/BuyDownCalculator/BuyDownCalculator.css.js +56 -0
  5. package/dist/Calculators/BuyDownCalculator/index.d.ts +25 -0
  6. package/dist/Calculators/BuyDownCalculator/index.js +868 -0
  7. package/dist/Calculators/Calculator.js +11 -0
  8. package/dist/Calculators/index.d.ts +1 -0
  9. package/dist/Calculators/index.js +2 -0
  10. package/dist/Carousel/index.js +2 -0
  11. package/dist/Chevron/index.js +2 -0
  12. package/dist/Comparison/Comparison.js +2 -0
  13. package/dist/ExecutiveBio/ExecutiveBio.js +2 -0
  14. package/dist/FaqAccordion/index.js +2 -0
  15. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
  16. package/dist/Forms/ApplyNow.js +2 -0
  17. package/dist/Forms/ContactUsBusiness.js +2 -0
  18. package/dist/Forms/ContactUsNMLSId.js +2 -0
  19. package/dist/Forms/CraPublicFile.js +2 -0
  20. package/dist/Forms/EmailOnly.js +2 -0
  21. package/dist/Forms/FormEnums.d.ts +21 -0
  22. package/dist/Forms/FormEnums.js +251 -0
  23. package/dist/Forms/MortgageRate/MortgageRateForm.js +2 -0
  24. package/dist/Forms/MortgageRate/MortgageRateWatch.js +2 -0
  25. package/dist/Forms/SuccesForm.js +14 -12
  26. package/dist/Hyperlink/index.js +2 -0
  27. package/dist/ImageLink/ImageLink.js +2 -0
  28. package/dist/ImageLink/ImageLinkSet.js +2 -0
  29. package/dist/ImageLink/index.js +2 -0
  30. package/dist/Input/Checkbox.js +2 -1
  31. package/dist/Input/Input.js +2 -1
  32. package/dist/Input/PercentageInput.d.ts +3 -0
  33. package/dist/Input/PercentageInput.js +32 -0
  34. package/dist/Input/RadioButton.js +12 -3
  35. package/dist/Insight/Featured/CategorySelector.js +2 -0
  36. package/dist/Insight/Featured/Featured.js +2 -0
  37. package/dist/Insight/Featured/Header.js +2 -0
  38. package/dist/Modal/Modal.js +2 -0
  39. package/dist/NavigationMenu/AxosALTS/NavData.js +2 -0
  40. package/dist/NavigationMenu/AxosALTS/index.js +2 -0
  41. package/dist/NavigationMenu/AxosBank/NavData.js +2 -0
  42. package/dist/NavigationMenu/AxosBank/SubNavBar.js +2 -0
  43. package/dist/NavigationMenu/AxosBank/index.js +2 -0
  44. package/dist/NavigationMenu/LaVictoire/NavData.js +2 -0
  45. package/dist/NavigationMenu/LaVictoire/index.js +2 -0
  46. package/dist/SetContainer/SetContainer.js +2 -0
  47. package/dist/SocialMediaBar/iconsRepository.js +2 -0
  48. package/dist/VideoWrapper/index.js +2 -0
  49. package/dist/assets/Calculators/BuyDownCalculator/BuyDownCalculator.css +197 -0
  50. package/dist/assets/Insight/Insight.css +12 -0
  51. package/dist/main.d.ts +1 -0
  52. package/dist/main.js +2 -0
  53. package/package.json +130 -130
@@ -2,6 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from "react";
3
3
  import { labelClassName, helperText } from "./Input.css.js";
4
4
  import { fieldset_wrapper, fieldset_container, fieldset } from "./RadioButton.css.js";
5
+ import clsx from "clsx";
5
6
  const RadioButtonSet = (props) => {
6
7
  const {
7
8
  disabled,
@@ -10,19 +11,27 @@ const RadioButtonSet = (props) => {
10
11
  variant,
11
12
  helperText: helper,
12
13
  children,
13
- direction = "row"
14
+ direction = "row",
15
+ className
14
16
  // id,
15
17
  } = props;
16
18
  return /* @__PURE__ */ jsxs("div", { className: fieldset_wrapper, children: [
17
19
  label && /* @__PURE__ */ jsx(
18
20
  "label",
19
21
  {
20
- className: labelClassName({ error, variant }),
22
+ className: clsx(labelClassName({ error, variant }), className),
21
23
  htmlFor: props.name,
22
24
  children: label
23
25
  }
24
26
  ),
25
- /* @__PURE__ */ jsx("div", { className: fieldset_container, children: /* @__PURE__ */ jsx("fieldset", { className: fieldset({ direction }), children }) }),
27
+ /* @__PURE__ */ jsx("div", { className: fieldset_container, children: /* @__PURE__ */ jsx(
28
+ "fieldset",
29
+ {
30
+ className: fieldset({ direction }),
31
+ disabled: disabled ?? false,
32
+ children
33
+ }
34
+ ) }),
26
35
  /* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
27
36
  ] });
28
37
  };
@@ -57,6 +57,8 @@ import "iframe-resizer";
57
57
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
60
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
61
+ import "../../Input/PercentageInput.js";
60
62
  /* empty css */
61
63
  /* empty css */
62
64
  /* empty css */
@@ -58,6 +58,8 @@ import "iframe-resizer";
58
58
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
60
60
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
61
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
62
+ import "../../Input/PercentageInput.js";
61
63
  /* empty css */
62
64
  /* empty css */
63
65
  /* empty css */
@@ -56,6 +56,8 @@ import "iframe-resizer";
56
56
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
59
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
60
+ import "../../Input/PercentageInput.js";
59
61
  /* empty css */
60
62
  /* empty css */
61
63
  /* empty css */
@@ -55,6 +55,8 @@ import "iframe-resizer";
55
55
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
56
56
  import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
58
+ import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
59
+ import "../Input/PercentageInput.js";
58
60
  /* empty css */
59
61
  /* empty css */
60
62
  /* empty css */
@@ -56,6 +56,8 @@ import "iframe-resizer";
56
56
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
59
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
60
+ import "../../Input/PercentageInput.js";
59
61
  /* empty css */
60
62
  /* empty css */
61
63
  /* empty css */
@@ -57,6 +57,8 @@ import "iframe-resizer";
57
57
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
60
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
61
+ import "../../Input/PercentageInput.js";
60
62
  /* empty css */
61
63
  /* empty css */
62
64
  /* empty css */
@@ -56,6 +56,8 @@ import "iframe-resizer";
56
56
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
59
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
60
+ import "../../Input/PercentageInput.js";
59
61
  /* empty css */
60
62
  /* empty css */
61
63
  /* empty css */
@@ -58,6 +58,8 @@ import "iframe-resizer";
58
58
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
60
60
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
61
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
62
+ import "../../Input/PercentageInput.js";
61
63
  /* empty css */
62
64
  /* empty css */
63
65
  /* empty css */
@@ -57,6 +57,8 @@ import "iframe-resizer";
57
57
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
60
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
61
+ import "../../Input/PercentageInput.js";
60
62
  /* empty css */
61
63
  /* empty css */
62
64
  /* empty css */
@@ -56,6 +56,8 @@ import "iframe-resizer";
56
56
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
59
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
60
+ import "../../Input/PercentageInput.js";
59
61
  /* empty css */
60
62
  /* empty css */
61
63
  /* empty css */
@@ -57,6 +57,8 @@ import "iframe-resizer";
57
57
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
60
+ import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
61
+ import "../../Input/PercentageInput.js";
60
62
  /* empty css */
61
63
  /* empty css */
62
64
  /* empty css */
@@ -58,6 +58,8 @@ import "iframe-resizer";
58
58
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
60
60
  import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
61
+ import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
62
+ import "../Input/PercentageInput.js";
61
63
  /* empty css */
62
64
  /* empty css */
63
65
  /* empty css */
@@ -56,6 +56,8 @@ import "iframe-resizer";
56
56
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
57
57
  import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
59
+ import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
60
+ import "../Input/PercentageInput.js";
59
61
  /* empty css */
60
62
  /* empty css */
61
63
  /* empty css */
@@ -57,6 +57,8 @@ import "iframe-resizer";
57
57
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
58
58
  import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
59
59
  import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
60
+ import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
61
+ import "../Input/PercentageInput.js";
60
62
  /* empty css */
61
63
  /* empty css */
62
64
  /* empty css */
@@ -0,0 +1,197 @@
1
+ .n9fzuw0 {
2
+ padding-inline: 120px;
3
+ padding-top: 48px;
4
+ padding-bottom: 48px;
5
+ display: flex;
6
+ flex-direction: column;
7
+ align-items: center;
8
+ }
9
+ .n9fzuw1 {
10
+ background: var(--_1073cm81);
11
+ color: var(--_1073cm82);
12
+ }
13
+ .n9fzuw2 {
14
+ background: var(--_1073cm88);
15
+ color: var(--_1073cm89);
16
+ }
17
+ .n9fzuw3 {
18
+ background: var(--_1073cm8f);
19
+ color: var(--_1073cm8g);
20
+ }
21
+ .n9fzuw4 {
22
+ background: var(--_1073cm8m);
23
+ color: var(--_1073cm8n);
24
+ }
25
+ .n9fzuw5 {
26
+ padding: 2.5rem 0;
27
+ display: flex;
28
+ }
29
+ .n9fzuw6 {
30
+ width: 100%;
31
+ }
32
+ .n9fzuw7 {
33
+ margin-bottom: 2.5rem;
34
+ max-width: 49.5rem;
35
+ text-align: center;
36
+ margin-inline: auto;
37
+ }
38
+ .n9fzuw8 {
39
+ margin-inline: auto;
40
+ }
41
+ .n9fzuw9 {
42
+ color: red;
43
+ font-size: larger;
44
+ list-style: none;
45
+ }
46
+ .n9fzuwa {
47
+ font-family: var(--main-font-family);
48
+ display: flex;
49
+ flex-direction: column;
50
+ gap: 1.5rem;
51
+ }
52
+ .n9fzuwb {
53
+ color: var(--_1073cm82);
54
+ }
55
+ .n9fzuwc {
56
+ color: var(--_1073cm89);
57
+ }
58
+ .n9fzuwd {
59
+ color: var(--_1073cm8g);
60
+ }
61
+ .n9fzuwe {
62
+ color: var(--_1073cm8n);
63
+ }
64
+ .n9fzuwf {
65
+ max-width: 792px;
66
+ margin: 0 auto;
67
+ }
68
+ .n9fzuwg {
69
+ display: flex;
70
+ flex-direction: row;
71
+ width: 100%;
72
+ gap: 15px;
73
+ }
74
+ .n9fzuwh {
75
+ display: flex;
76
+ flex-direction: row;
77
+ }
78
+ .n9fzuwg > div {
79
+ flex-grow: 1;
80
+ width: 100%;
81
+ }
82
+ .n9fzuwi {
83
+ margin-top: 1.5rem;
84
+ text-align: center;
85
+ margin-inline: auto;
86
+ margin-bottom: 1.5rem;
87
+ }
88
+ .n9fzuwg .input_label {
89
+ color: inherit;
90
+ }
91
+ .n9fzuwj {
92
+ position: relative;
93
+ }
94
+ .n9fzuwk {
95
+ position: absolute;
96
+ color: #323339;
97
+ font-size: 18px;
98
+ font-weight: 500!important;
99
+ margin-bottom: 0;
100
+ }
101
+ .n9fzuwl {
102
+ left: 21px;
103
+ top: 46px;
104
+ }
105
+ .n9fzuwm {
106
+ top: 47px;
107
+ right: 10px;
108
+ }
109
+ .n9fzuwn {
110
+ padding-left: 2rem;
111
+ }
112
+ .n9fzuwp {
113
+ width: 100%;
114
+ }
115
+ .n9fzuwq > p {
116
+ font-size: 14px;
117
+ line-height: 1.3;
118
+ margin-bottom: 10px;
119
+ letter-spacing: .2px;
120
+ }
121
+ .n9fzuwr {
122
+ margin-bottom: 1rem;
123
+ }
124
+ ._1073cm80 .n9fzuwt {
125
+ -webkit-background-clip: text;
126
+ background-image: var(--_1073cm84);
127
+ -webkit-text-fill-color: transparent;
128
+ text-shadow: 0px 0px #00000000;
129
+ }
130
+ ._1es6o1h0 .n9fzuwt {
131
+ color: var(--_1073cm83);
132
+ }
133
+ ._1073cm80 .n9fzuwu {
134
+ -webkit-background-clip: text;
135
+ background-image: var(--_1073cm8b);
136
+ -webkit-text-fill-color: transparent;
137
+ text-shadow: 0px 0px #00000000;
138
+ }
139
+ ._1es6o1h0 .n9fzuwu {
140
+ color: var(--_1073cm8a);
141
+ }
142
+ .n9fzuwv {
143
+ color: var(--_1073cm8h);
144
+ }
145
+ .n9fzuww {
146
+ color: var(--_1073cm8o);
147
+ }
148
+ .n9fzuwx {
149
+ margin-top: 0.5rem;
150
+ }
151
+ .n9fzuwy {
152
+ padding-inline-start: 0;
153
+ }
154
+ .n9fzuwz {
155
+ font-weight: 400;
156
+ color: #344a53;
157
+ margin-bottom: 8px;
158
+ }
159
+ .n9fzuw8 label:not(.n9fzuwz) {
160
+ font-weight: 700;
161
+ color: #28587d;
162
+ }
163
+ @media screen and (max-width:1023px) {
164
+ .n9fzuw0 {
165
+ padding-inline: 0;
166
+ padding: 0 3.5rem;
167
+ }
168
+ .n9fzuwq {
169
+ margin-top: 1rem;
170
+ }
171
+ }
172
+ @media screen and (max-width:768px) {
173
+ .n9fzuw0 {
174
+ padding: 0 2rem;
175
+ }
176
+ }
177
+ @media screen and (max-width:470px) {
178
+ .n9fzuw0 {
179
+ padding: 0 1.5rem;
180
+ }
181
+ }
182
+ @media screen and (max-width:1124px) {
183
+ .n9fzuw5 {
184
+ flex-wrap: wrap;
185
+ justify-content: center;
186
+ }
187
+ }
188
+ @media screen and (min-width:1125px) {
189
+ .n9fzuw6 {
190
+ margin-right: 2rem;
191
+ }
192
+ }
193
+ @media screen and (max-width:480px) {
194
+ .n9fzuwg {
195
+ flex-direction: column;
196
+ }
197
+ }
@@ -70,6 +70,18 @@ article.containment {
70
70
  }
71
71
  }
72
72
  @media screen and (max-width:768px) {
73
+ .lchs2s0 {
74
+ font-size: 28px;
75
+ line-height: 1.29;
76
+ }
77
+ .lchs2s1 {
78
+ font-size: 24px;
79
+ line-height: 1.33;
80
+ }
81
+ .lchs2s2 {
82
+ font-size: 20px;
83
+ line-height: 1.4;
84
+ }
73
85
  article.containment {
74
86
  max-width: unset;
75
87
  width: min(1200px, calc(100% - 4rem));
package/dist/main.d.ts CHANGED
@@ -16,6 +16,7 @@ export * from './Calculators/AxosOneCalculator';
16
16
  export * from './Calculators/BalanceAPYCalculator';
17
17
  export * from './Calculators/MarginTradingCalculator';
18
18
  export * from './Calculators/MonthlyPaymentCalculator';
19
+ export * from './Calculators/BuyDownCalculator';
19
20
  export * from './CallToActionBar';
20
21
  export * from './Carousel';
21
22
  export * from './Chevron';
package/dist/main.js CHANGED
@@ -28,6 +28,7 @@ import { MaxLoanCalculator } from "./Calculators/MaxLoanCalculator/index.js";
28
28
  import { MonthlyPaymentCalculator } from "./Calculators/MonthlyPaymentCalculator/index.js";
29
29
  import { MonthlyPaymentLVFCalculator } from "./Calculators/MonthlyPaymentLVFCalculator/index.js";
30
30
  import { SummitApyCalculator } from "./Calculators/SummitApyCalculator/index.js";
31
+ import { BuyDownCalculator } from "./Calculators/BuyDownCalculator/index.js";
31
32
  import { CallToActionBar } from "./CallToActionBar/index.js";
32
33
  import { Carousel, CarouselSlide } from "./Carousel/index.js";
33
34
  import { Chevron } from "./Chevron/index.js";
@@ -222,6 +223,7 @@ export {
222
223
  BreadcumbHeader,
223
224
  BulletItem,
224
225
  Button,
226
+ BuyDownCalculator,
225
227
  Calculator,
226
228
  CallToActionBar,
227
229
  Carousel,