@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
@@ -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,3 +9,4 @@ export * from './MaxLoanCalculator';
9
9
  export * from './MonthlyPaymentCalculator';
10
10
  export * from './MonthlyPaymentLVFCalculator';
11
11
  export * from './SummitApyCalculator';
12
+ export * from './BuyDownCalculator';
@@ -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,
@@ -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 */
@@ -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 */
@@ -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 */
@@ -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 {};
@@ -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 */
@@ -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";
@@ -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 */
@@ -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 */
@@ -33,7 +33,8 @@ const Checkbox = forwardRef((props, ref) => {
33
33
  props.className,
34
34
  input({ size: sizes }),
35
35
  checkbox({})
36
- )
36
+ ),
37
+ disabled: disabled ?? false
37
38
  }
38
39
  ) }),
39
40
  children
@@ -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,3 @@
1
+ import { CurencyInputProps } from '.';
2
+
3
+ export declare const PercentageInput: import('react').ForwardRefExoticComponent<CurencyInputProps & import('react').RefAttributes<HTMLInputElement>>;
@@ -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
+ };