@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.
- package/dist/ATMLocator/ATMLocator.js +15 -13
- package/dist/Button/Button.js +2 -0
- package/dist/Calculators/BuyDownCalculator/BuyDownCalculator.css.d.ts +101 -0
- package/dist/Calculators/BuyDownCalculator/BuyDownCalculator.css.js +56 -0
- package/dist/Calculators/BuyDownCalculator/index.d.ts +25 -0
- package/dist/Calculators/BuyDownCalculator/index.js +868 -0
- package/dist/Calculators/Calculator.js +11 -0
- package/dist/Calculators/index.d.ts +1 -0
- package/dist/Calculators/index.js +2 -0
- package/dist/Carousel/index.js +2 -0
- package/dist/Chevron/index.js +2 -0
- package/dist/Comparison/Comparison.js +2 -0
- package/dist/ExecutiveBio/ExecutiveBio.js +2 -0
- package/dist/FaqAccordion/index.js +2 -0
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
- package/dist/Forms/ApplyNow.js +2 -0
- package/dist/Forms/ContactUsBusiness.js +2 -0
- package/dist/Forms/ContactUsNMLSId.js +2 -0
- package/dist/Forms/CraPublicFile.js +2 -0
- package/dist/Forms/EmailOnly.js +2 -0
- package/dist/Forms/FormEnums.d.ts +21 -0
- package/dist/Forms/FormEnums.js +251 -0
- package/dist/Forms/MortgageRate/MortgageRateForm.js +2 -0
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +2 -0
- package/dist/Forms/SuccesForm.js +14 -12
- package/dist/Hyperlink/index.js +2 -0
- package/dist/ImageLink/ImageLink.js +2 -0
- package/dist/ImageLink/ImageLinkSet.js +2 -0
- package/dist/ImageLink/index.js +2 -0
- package/dist/Input/Checkbox.js +2 -1
- package/dist/Input/Input.js +2 -1
- package/dist/Input/PercentageInput.d.ts +3 -0
- package/dist/Input/PercentageInput.js +32 -0
- package/dist/Input/RadioButton.js +12 -3
- package/dist/Insight/Featured/CategorySelector.js +2 -0
- package/dist/Insight/Featured/Featured.js +2 -0
- package/dist/Insight/Featured/Header.js +2 -0
- package/dist/Modal/Modal.js +2 -0
- package/dist/NavigationMenu/AxosALTS/NavData.js +2 -0
- package/dist/NavigationMenu/AxosALTS/index.js +2 -0
- package/dist/NavigationMenu/AxosBank/NavData.js +2 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +2 -0
- package/dist/NavigationMenu/AxosBank/index.js +2 -0
- package/dist/NavigationMenu/LaVictoire/NavData.js +2 -0
- package/dist/NavigationMenu/LaVictoire/index.js +2 -0
- package/dist/SetContainer/SetContainer.js +2 -0
- package/dist/SocialMediaBar/iconsRepository.js +2 -0
- package/dist/VideoWrapper/index.js +2 -0
- package/dist/assets/Calculators/BuyDownCalculator/BuyDownCalculator.css +197 -0
- package/dist/assets/Insight/Insight.css +12 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +2 -0
- package/package.json +130 -130
|
@@ -35,6 +35,7 @@ import { MaxLoanCalculator } from "./MaxLoanCalculator/index.js";
|
|
|
35
35
|
import { MonthlyPaymentCalculator } from "./MonthlyPaymentCalculator/index.js";
|
|
36
36
|
import { MonthlyPaymentLVFCalculator } from "./MonthlyPaymentLVFCalculator/index.js";
|
|
37
37
|
import { SummitApyCalculator } from "./SummitApyCalculator/index.js";
|
|
38
|
+
import { BuyDownCalculator } from "./BuyDownCalculator/index.js";
|
|
38
39
|
/* empty css */
|
|
39
40
|
import "../Carousel/index.js";
|
|
40
41
|
import "../Hyperlink/Hyperlink.css.js";
|
|
@@ -231,6 +232,16 @@ const Calculator = (props) => {
|
|
|
231
232
|
icon
|
|
232
233
|
}
|
|
233
234
|
);
|
|
235
|
+
} else if (name === "Buydown Calculator LVF") {
|
|
236
|
+
return /* @__PURE__ */ jsx(
|
|
237
|
+
BuyDownCalculator,
|
|
238
|
+
{
|
|
239
|
+
header: headline,
|
|
240
|
+
body: bodyCopy,
|
|
241
|
+
variant,
|
|
242
|
+
disclosure
|
|
243
|
+
}
|
|
244
|
+
);
|
|
234
245
|
} else
|
|
235
246
|
return /* @__PURE__ */ jsx("section", { id, children: /* @__PURE__ */ jsxs("div", { className: clsx("containment"), children: [
|
|
236
247
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
@@ -9,11 +9,13 @@ import { MaxLoanCalculator } from "./MaxLoanCalculator/index.js";
|
|
|
9
9
|
import { MonthlyPaymentCalculator } from "./MonthlyPaymentCalculator/index.js";
|
|
10
10
|
import { MonthlyPaymentLVFCalculator } from "./MonthlyPaymentLVFCalculator/index.js";
|
|
11
11
|
import { SummitApyCalculator } from "./SummitApyCalculator/index.js";
|
|
12
|
+
import { BuyDownCalculator } from "./BuyDownCalculator/index.js";
|
|
12
13
|
export {
|
|
13
14
|
AnnualFeeCalculator,
|
|
14
15
|
ApyCalculator,
|
|
15
16
|
AxosOneCalculator,
|
|
16
17
|
BalanceAPYCalculator,
|
|
18
|
+
BuyDownCalculator,
|
|
17
19
|
Calculator,
|
|
18
20
|
MarginTradingCalculator,
|
|
19
21
|
MaxLoanCalculator,
|
package/dist/Carousel/index.js
CHANGED
|
@@ -61,6 +61,8 @@ import "iframe-resizer";
|
|
|
61
61
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
63
63
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
64
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
65
|
+
import "../Input/PercentageInput.js";
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
66
68
|
/* empty css */
|
package/dist/Chevron/index.js
CHANGED
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* 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 */
|
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
@@ -59,6 +59,8 @@ import "iframe-resizer";
|
|
|
59
59
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
60
60
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
62
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
63
|
+
import "../Input/PercentageInput.js";
|
|
62
64
|
/* empty css */
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* 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 */
|
package/dist/Forms/ApplyNow.js
CHANGED
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
package/dist/Forms/EmailOnly.js
CHANGED
|
@@ -61,6 +61,8 @@ import "iframe-resizer";
|
|
|
61
61
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
63
63
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
64
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
65
|
+
import "../Input/PercentageInput.js";
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
66
68
|
/* empty css */
|
|
@@ -72,3 +72,24 @@ export declare const BrokerConpensation: {
|
|
|
72
72
|
value: string;
|
|
73
73
|
text: string;
|
|
74
74
|
}[];
|
|
75
|
+
export declare const Program: {
|
|
76
|
+
value: string;
|
|
77
|
+
text: string;
|
|
78
|
+
}[];
|
|
79
|
+
export declare const Fico: {
|
|
80
|
+
value: string;
|
|
81
|
+
text: string;
|
|
82
|
+
}[];
|
|
83
|
+
export declare const BuydownRate: {
|
|
84
|
+
value: number;
|
|
85
|
+
text: string;
|
|
86
|
+
}[];
|
|
87
|
+
export declare const BuydownTerm: {
|
|
88
|
+
value: number;
|
|
89
|
+
text: string;
|
|
90
|
+
}[];
|
|
91
|
+
type RateMap = Map<string, string>;
|
|
92
|
+
type FicoMap = Map<string, RateMap>;
|
|
93
|
+
type LoanRatesMap = Map<string, FicoMap>;
|
|
94
|
+
export declare const LoanRates: LoanRatesMap;
|
|
95
|
+
export {};
|
package/dist/Forms/FormEnums.js
CHANGED
|
@@ -155,23 +155,274 @@ const BrokerConpensation = [
|
|
|
155
155
|
{ value: "Borrower Paid", text: "Borrower Paid" },
|
|
156
156
|
{ value: "Lender Paid", text: "Lender Paid" }
|
|
157
157
|
];
|
|
158
|
+
const Program = [
|
|
159
|
+
{ value: "3/6 SOFR ARM", text: "3/6 SOFR ARM" },
|
|
160
|
+
{ value: "5/6 SOFR ARM", text: "5/6 SOFR ARM" },
|
|
161
|
+
{
|
|
162
|
+
value: "20 Year Fixed - Personal Use/Limited Charter",
|
|
163
|
+
text: "20 Year Fixed - Personal Use/Limited Charter"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
value: "20 Year Fixed - Full Time Charter",
|
|
167
|
+
text: "20 Year Fixed - Full Time Charter"
|
|
168
|
+
}
|
|
169
|
+
];
|
|
170
|
+
const Fico = [
|
|
171
|
+
{ value: "800+", text: "800+" },
|
|
172
|
+
{ value: "760-799", text: "760-799" },
|
|
173
|
+
{ value: "720-759", text: "720-759" },
|
|
174
|
+
{ value: "700-719", text: "700-719" }
|
|
175
|
+
];
|
|
176
|
+
const BuydownRate = [
|
|
177
|
+
{ value: 2.99, text: "2.99%" },
|
|
178
|
+
{ value: 3.99, text: "3.99%" },
|
|
179
|
+
{ value: 4.99, text: "4.99%" },
|
|
180
|
+
{ value: 5.99, text: "5.99%" },
|
|
181
|
+
{ value: 6.99, text: "6.99%" }
|
|
182
|
+
];
|
|
183
|
+
const BuydownTerm = [
|
|
184
|
+
{ value: 1, text: "1 Year" },
|
|
185
|
+
{ value: 2, text: "2 Years" },
|
|
186
|
+
{ value: 3, text: "3 Years" },
|
|
187
|
+
{ value: 4, text: "4 Years" },
|
|
188
|
+
{ value: 5, text: "5 Years" }
|
|
189
|
+
];
|
|
190
|
+
const LoanRates = /* @__PURE__ */ new Map([
|
|
191
|
+
[
|
|
192
|
+
"3/6 SOFR ARM",
|
|
193
|
+
/* @__PURE__ */ new Map([
|
|
194
|
+
[
|
|
195
|
+
"800+",
|
|
196
|
+
/* @__PURE__ */ new Map([
|
|
197
|
+
["$75,000 ≤ $100,000", "8.345%"],
|
|
198
|
+
["$100,001 ≤ $150,000", "8.345%"],
|
|
199
|
+
["$150,001 ≤ $250,000", "8.045%"],
|
|
200
|
+
["$250,001 ≤ $500,000", "7.645%"],
|
|
201
|
+
["$500,001 ≤ $1,500,000", "7.645%"],
|
|
202
|
+
["$1,500,001 ≤ $2,000,000", "7.945%"],
|
|
203
|
+
["> $2,000,000", "8.245%"]
|
|
204
|
+
])
|
|
205
|
+
],
|
|
206
|
+
[
|
|
207
|
+
"760-799",
|
|
208
|
+
/* @__PURE__ */ new Map([
|
|
209
|
+
["$75,000 ≤ $100,000", "8.545%"],
|
|
210
|
+
["$100,001 ≤ $150,000", "8.545%"],
|
|
211
|
+
["$150,001 ≤ $250,000", "8.245%"],
|
|
212
|
+
["$250,001 ≤ $500,000", "7.845%"],
|
|
213
|
+
["$500,001 ≤ $1,500,000", "7.845%"],
|
|
214
|
+
["$1,500,001 ≤ $2,000,000", "8.145%"],
|
|
215
|
+
["> $2,000,000", "8.445%"]
|
|
216
|
+
])
|
|
217
|
+
],
|
|
218
|
+
[
|
|
219
|
+
"720-759",
|
|
220
|
+
/* @__PURE__ */ new Map([
|
|
221
|
+
["$75,000 ≤ $100,000", "8.995%"],
|
|
222
|
+
["$100,001 ≤ $150,000", "8.995%"],
|
|
223
|
+
["$150,001 ≤ $250,000", "8.320%"],
|
|
224
|
+
["$250,001 ≤ $500,000", "8.295%"],
|
|
225
|
+
["$500,001 ≤ $1,500,000", "8.295%"],
|
|
226
|
+
["$1,500,001 ≤ $2,000,000", "8.595%"],
|
|
227
|
+
["> $2,000,000", "N/A"]
|
|
228
|
+
])
|
|
229
|
+
],
|
|
230
|
+
[
|
|
231
|
+
"700-719",
|
|
232
|
+
/* @__PURE__ */ new Map([
|
|
233
|
+
["$75,000 ≤ $100,000", "9.345%"],
|
|
234
|
+
["$100,001 ≤ $150,000", "9.345%"],
|
|
235
|
+
["$150,001 ≤ $250,000", "8.820%"],
|
|
236
|
+
["$250,001 ≤ $500,000", "8.645%"],
|
|
237
|
+
["$500,001 ≤ $1,500,000", "8.645%"],
|
|
238
|
+
["$1,500,001 ≤ $2,000,000", "N/A"],
|
|
239
|
+
["> $2,000,000", "N/A"]
|
|
240
|
+
])
|
|
241
|
+
]
|
|
242
|
+
])
|
|
243
|
+
],
|
|
244
|
+
[
|
|
245
|
+
"5/6 SOFR ARM",
|
|
246
|
+
/* @__PURE__ */ new Map([
|
|
247
|
+
[
|
|
248
|
+
"800+",
|
|
249
|
+
/* @__PURE__ */ new Map([
|
|
250
|
+
["$75,000 ≤ $100,000", "8.495%"],
|
|
251
|
+
["$100,001 ≤ $150,000", "8.495%"],
|
|
252
|
+
["$150,001 ≤ $250,000", "8.195%"],
|
|
253
|
+
["$250,001 ≤ $500,000", "7.795%"],
|
|
254
|
+
["$500,001 ≤ $1,500,000", "7.795%"],
|
|
255
|
+
["$1,500,001 ≤ $2,000,000", "8.095%"],
|
|
256
|
+
["> $2,000,000", "8.395%"]
|
|
257
|
+
])
|
|
258
|
+
],
|
|
259
|
+
[
|
|
260
|
+
"760-799",
|
|
261
|
+
/* @__PURE__ */ new Map([
|
|
262
|
+
["$75,000 ≤ $100,000", "8.695%"],
|
|
263
|
+
["$100,001 ≤ $150,000", "8.695%"],
|
|
264
|
+
["$150,001 ≤ $250,000", "8.395%"],
|
|
265
|
+
["$250,001 ≤ $500,000", "7.995%"],
|
|
266
|
+
["$500,001 ≤ $1,500,000", "7.995%"],
|
|
267
|
+
["$1,500,001 ≤ $2,000,000", "8.295%"],
|
|
268
|
+
["> $2,000,000", "8.595%"]
|
|
269
|
+
])
|
|
270
|
+
],
|
|
271
|
+
[
|
|
272
|
+
"720-759",
|
|
273
|
+
/* @__PURE__ */ new Map([
|
|
274
|
+
["$75,000 ≤ $100,000", "9.145%"],
|
|
275
|
+
["$100,001 ≤ $150,000", "9.145%"],
|
|
276
|
+
["$150,001 ≤ $250,000", "8.470%"],
|
|
277
|
+
["$250,001 ≤ $500,000", "8.445%"],
|
|
278
|
+
["$500,001 ≤ $1,500,000", "8.445%"],
|
|
279
|
+
["$1,500,001 ≤ $2,000,000", "8.745%"],
|
|
280
|
+
["> $2,000,000", "N/A"]
|
|
281
|
+
])
|
|
282
|
+
],
|
|
283
|
+
[
|
|
284
|
+
"700-719",
|
|
285
|
+
/* @__PURE__ */ new Map([
|
|
286
|
+
["$75,000 ≤ $100,000", "9.495%"],
|
|
287
|
+
["$100,001 ≤ $150,000", "9.495%"],
|
|
288
|
+
["$150,001 ≤ $250,000", "8.970%"],
|
|
289
|
+
["$250,001 ≤ $500,000", "8.795%"],
|
|
290
|
+
["$500,001 ≤ $1,500,000", "8.795%"],
|
|
291
|
+
["$1,500,001 ≤ $2,000,000", "N/A"],
|
|
292
|
+
["> $2,000,000", "N/A"]
|
|
293
|
+
])
|
|
294
|
+
]
|
|
295
|
+
])
|
|
296
|
+
],
|
|
297
|
+
[
|
|
298
|
+
"20 Year Fixed - Personal Use/Limited Charter",
|
|
299
|
+
/* @__PURE__ */ new Map([
|
|
300
|
+
[
|
|
301
|
+
"800+",
|
|
302
|
+
/* @__PURE__ */ new Map([
|
|
303
|
+
["$75,000 ≤ $100,000", "8.240%"],
|
|
304
|
+
["$100,001 ≤ $150,000", "8.240%"],
|
|
305
|
+
["$150,001 ≤ $250,000", "7.590%"],
|
|
306
|
+
["$250,001 ≤ $500,000", "7.290%"],
|
|
307
|
+
["$500,001 ≤ $1,500,000", "7.090%"],
|
|
308
|
+
["$1,500,001 ≤ $2,000,000", "7.290%"],
|
|
309
|
+
["> $2,000,000", "7.540%"]
|
|
310
|
+
])
|
|
311
|
+
],
|
|
312
|
+
[
|
|
313
|
+
"760-799",
|
|
314
|
+
/* @__PURE__ */ new Map([
|
|
315
|
+
["$75,000 ≤ $100,000", "8.490%"],
|
|
316
|
+
["$100,001 ≤ $150,000", "8.490%"],
|
|
317
|
+
["$150,001 ≤ $250,000", "7.990%"],
|
|
318
|
+
["$250,001 ≤ $500,000", "7.690%"],
|
|
319
|
+
["$500,001 ≤ $1,500,000", "7.490%"],
|
|
320
|
+
["$1,500,001 ≤ $2,000,000", "7.790%"],
|
|
321
|
+
["> $2,000,000", "8.040%"]
|
|
322
|
+
])
|
|
323
|
+
],
|
|
324
|
+
[
|
|
325
|
+
"720-759",
|
|
326
|
+
/* @__PURE__ */ new Map([
|
|
327
|
+
["$75,000 ≤ $100,000", "8.740%"],
|
|
328
|
+
["$100,001 ≤ $150,000", "8.740%"],
|
|
329
|
+
["$150,001 ≤ $250,000", "8.490%"],
|
|
330
|
+
["$250,001 ≤ $500,000", "8.190%"],
|
|
331
|
+
["$500,001 ≤ $1,500,000", "7.990%"],
|
|
332
|
+
["$1,500,001 ≤ $2,000,000", "8.390%"],
|
|
333
|
+
["> $2,000,000", "N/A"]
|
|
334
|
+
])
|
|
335
|
+
],
|
|
336
|
+
[
|
|
337
|
+
"700-719",
|
|
338
|
+
/* @__PURE__ */ new Map([
|
|
339
|
+
["$75,000 ≤ $100,000", "9.240%"],
|
|
340
|
+
["$100,001 ≤ $150,000", "9.240%"],
|
|
341
|
+
["$150,001 ≤ $250,000", "8.990%"],
|
|
342
|
+
["$250,001 ≤ $500,000", "8.990%"],
|
|
343
|
+
["$500,001 ≤ $1,500,000", "8.490%"],
|
|
344
|
+
["$1,500,001 ≤ $2,000,000", "N/A"],
|
|
345
|
+
["> $2,000,000", "N/A"]
|
|
346
|
+
])
|
|
347
|
+
]
|
|
348
|
+
])
|
|
349
|
+
],
|
|
350
|
+
[
|
|
351
|
+
"20 Year Fixed - Full Time Charter",
|
|
352
|
+
/* @__PURE__ */ new Map([
|
|
353
|
+
[
|
|
354
|
+
"800+",
|
|
355
|
+
/* @__PURE__ */ new Map([
|
|
356
|
+
["$75,000 ≤ $100,000", "8.740%"],
|
|
357
|
+
["$100,001 ≤ $150,000", "8.740%"],
|
|
358
|
+
["$150,001 ≤ $250,000", "8.090%"],
|
|
359
|
+
["$250,001 ≤ $500,000", "7.790%"],
|
|
360
|
+
["$500,001 ≤ $1,500,000", "7.690%"],
|
|
361
|
+
["$1,500,001 ≤ $2,000,000", "7.690%"],
|
|
362
|
+
["> $2,000,000", "8.840%"]
|
|
363
|
+
])
|
|
364
|
+
],
|
|
365
|
+
[
|
|
366
|
+
"760-799",
|
|
367
|
+
/* @__PURE__ */ new Map([
|
|
368
|
+
["$75,000 ≤ $100,000", "8.990%"],
|
|
369
|
+
["$100,001 ≤ $150,000", "8.990%"],
|
|
370
|
+
["$150,001 ≤ $250,000", "8.490%"],
|
|
371
|
+
["$250,001 ≤ $500,000", "8.240%"],
|
|
372
|
+
["$500,001 ≤ $1,500,000", "7.990%"],
|
|
373
|
+
["$1,500,001 ≤ $2,000,000", "7.990%"],
|
|
374
|
+
["> $2,000,000", "8.540%"]
|
|
375
|
+
])
|
|
376
|
+
],
|
|
377
|
+
[
|
|
378
|
+
"720-759",
|
|
379
|
+
/* @__PURE__ */ new Map([
|
|
380
|
+
["$75,000 ≤ $100,000", "9.240%"],
|
|
381
|
+
["$100,001 ≤ $150,000", "9.240%"],
|
|
382
|
+
["$150,001 ≤ $250,000", "8.990%"],
|
|
383
|
+
["$250,001 ≤ $500,000", "8.990%"],
|
|
384
|
+
["$500,001 ≤ $1,500,000", "8.490%"],
|
|
385
|
+
["$1,500,001 ≤ $2,000,000", "8.875%"],
|
|
386
|
+
["> $2,000,000", "N/A"]
|
|
387
|
+
])
|
|
388
|
+
],
|
|
389
|
+
[
|
|
390
|
+
"700-719",
|
|
391
|
+
/* @__PURE__ */ new Map([
|
|
392
|
+
["$75,000 ≤ $100,000", "9.740%"],
|
|
393
|
+
["$100,001 ≤ $150,000", "9.740%"],
|
|
394
|
+
["$150,001 ≤ $250,000", "9.490%"],
|
|
395
|
+
["$250,001 ≤ $500,000", "9.490%"],
|
|
396
|
+
["$500,001 ≤ $1,500,000", "8.990%"],
|
|
397
|
+
["$1,500,001 ≤ $2,000,000", "N/A"],
|
|
398
|
+
["> $2,000,000", "N/A"]
|
|
399
|
+
])
|
|
400
|
+
]
|
|
401
|
+
])
|
|
402
|
+
]
|
|
403
|
+
]);
|
|
158
404
|
export {
|
|
159
405
|
AnnualGrossRevenue,
|
|
160
406
|
AssetClass,
|
|
161
407
|
BankruptcySeasoning,
|
|
162
408
|
BankruptcyType,
|
|
163
409
|
BrokerConpensation,
|
|
410
|
+
BuydownRate,
|
|
411
|
+
BuydownTerm,
|
|
164
412
|
Citizenship,
|
|
165
413
|
CurrentAssets,
|
|
166
414
|
DocType,
|
|
415
|
+
Fico,
|
|
167
416
|
HousingEventHistory,
|
|
168
417
|
HousingEventType,
|
|
169
418
|
LeadType,
|
|
419
|
+
LoanRates,
|
|
170
420
|
MortgageLates12,
|
|
171
421
|
MortgageLates24,
|
|
172
422
|
NumberOfUnits,
|
|
173
423
|
Occupancy,
|
|
174
424
|
PrepaymentPenalty,
|
|
425
|
+
Program,
|
|
175
426
|
PropertyType,
|
|
176
427
|
PurposeOfLoan,
|
|
177
428
|
Purposes,
|
|
@@ -60,6 +60,8 @@ import "iframe-resizer";
|
|
|
60
60
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
63
|
+
import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
64
|
+
import "../../Input/PercentageInput.js";
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* 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 */
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -31,6 +31,20 @@ import "iframe-resizer";
|
|
|
31
31
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
32
32
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
33
33
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
34
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
35
|
+
import "../Input/Checkbox.js";
|
|
36
|
+
import "../Input/CurrencyInput.js";
|
|
37
|
+
import "../Input/Dropdown.js";
|
|
38
|
+
import "../Input/Dropdown.css.js";
|
|
39
|
+
import "../Input/Input.js";
|
|
40
|
+
import "../Input/Input.css.js";
|
|
41
|
+
import "../Input/InputAmount.js";
|
|
42
|
+
import "../Input/InputPhone.js";
|
|
43
|
+
import "../Input/InputTextArea.js";
|
|
44
|
+
import "../Input/DownPaymentInput.js";
|
|
45
|
+
import "../Input/RadioButton.js";
|
|
46
|
+
import "react-hook-form";
|
|
47
|
+
import "../Input/PercentageInput.js";
|
|
34
48
|
/* empty css */
|
|
35
49
|
/* empty css */
|
|
36
50
|
/* empty css */
|
|
@@ -54,17 +68,6 @@ import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
|
54
68
|
/* empty css */
|
|
55
69
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
56
70
|
/* empty css */
|
|
57
|
-
import "../Input/Checkbox.js";
|
|
58
|
-
import "../Input/CurrencyInput.js";
|
|
59
|
-
import "../Input/Dropdown.js";
|
|
60
|
-
import "../Input/Dropdown.css.js";
|
|
61
|
-
import "../Input/Input.js";
|
|
62
|
-
import "../Input/Input.css.js";
|
|
63
|
-
import "../Input/InputAmount.js";
|
|
64
|
-
import "../Input/InputPhone.js";
|
|
65
|
-
import "../Input/InputTextArea.js";
|
|
66
|
-
import "../Input/DownPaymentInput.js";
|
|
67
|
-
import "../Input/RadioButton.js";
|
|
68
71
|
/* empty css */
|
|
69
72
|
/* empty css */
|
|
70
73
|
/* empty css */
|
|
@@ -104,7 +107,6 @@ import "next/script.js";
|
|
|
104
107
|
/* empty css */
|
|
105
108
|
/* empty css */
|
|
106
109
|
import "../Interstitial/Interstitial-variants.css.js";
|
|
107
|
-
import "react-hook-form";
|
|
108
110
|
import { success_icon, success_circle, succes_check_mark, success_wrap } from "./Forms.css.js";
|
|
109
111
|
import "./SalesforceFieldsForm.js";
|
|
110
112
|
import "../Input/RadioButton.css.js";
|
package/dist/Hyperlink/index.js
CHANGED
|
@@ -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 */
|
|
@@ -54,6 +54,8 @@ import "iframe-resizer";
|
|
|
54
54
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
55
55
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
56
56
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
57
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
58
|
+
import "../Input/PercentageInput.js";
|
|
57
59
|
/* empty css */
|
|
58
60
|
/* empty css */
|
|
59
61
|
/* empty css */
|
|
@@ -59,6 +59,8 @@ import "iframe-resizer";
|
|
|
59
59
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
60
60
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
62
|
+
import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
63
|
+
import "../Input/PercentageInput.js";
|
|
62
64
|
/* empty css */
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
package/dist/ImageLink/index.js
CHANGED
|
@@ -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 */
|
package/dist/Input/Checkbox.js
CHANGED
package/dist/Input/Input.js
CHANGED
|
@@ -36,7 +36,8 @@ const Input = forwardRef((props, ref) => {
|
|
|
36
36
|
ref,
|
|
37
37
|
className: clsx(props.className, input({ size: sizes })),
|
|
38
38
|
type,
|
|
39
|
-
placeholder
|
|
39
|
+
placeholder,
|
|
40
|
+
disabled: disabled ?? false
|
|
40
41
|
}
|
|
41
42
|
),
|
|
42
43
|
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { InputNumberFormat } from "@react-input/number-format";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import "./Checkbox.js";
|
|
5
|
+
import "./CurrencyInput.js";
|
|
6
|
+
import "./Dropdown.js";
|
|
7
|
+
import "./Dropdown.css.js";
|
|
8
|
+
import { Input } from "./Input.js";
|
|
9
|
+
import "./Input.css.js";
|
|
10
|
+
import "./InputAmount.js";
|
|
11
|
+
import "./InputPhone.js";
|
|
12
|
+
import "./InputTextArea.js";
|
|
13
|
+
import "./DownPaymentInput.js";
|
|
14
|
+
import "./RadioButton.js";
|
|
15
|
+
const PercentageInput = forwardRef(
|
|
16
|
+
(props, ref) => {
|
|
17
|
+
return /* @__PURE__ */ jsx(
|
|
18
|
+
InputNumberFormat,
|
|
19
|
+
{
|
|
20
|
+
component: Input,
|
|
21
|
+
ref,
|
|
22
|
+
format: "percent",
|
|
23
|
+
maximumFractionDigits: props?.maxfractiondigits ?? 2,
|
|
24
|
+
minimumFractionDigits: props?.minfractiondigits ?? 2,
|
|
25
|
+
...props
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
export {
|
|
31
|
+
PercentageInput
|
|
32
|
+
};
|