finance-shared 0.0.17 → 0.0.18

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.
@@ -81,12 +81,13 @@ const locale$3 = {
81
81
  DOCUMENTS_REMARKS: "Documents Remarks",
82
82
  LOAN_AMOUNT: "Loan Amount",
83
83
  INTEREST_RATE: "Interest Rate",
84
- INTEREST_FEES: "Interest Fees",
85
- REPAYMENT_AMOUNT: "Repayment Amount",
84
+ INTEREST_FEES: "Total Interest",
85
+ REPAYMENT_AMOUNT: "Monthly Installment",
86
+ PRINCIPLE_PLUS_INTEREST: "Principal + Interest",
86
87
  DISBURSEMENT: "Disbursement",
87
88
  CONFIRM_INFORMATION_READ: "I confirm that I have read, understood, and agree to the loan amount, interest rate, repayment terms, deductions, tenure, and all related loan details.",
88
89
  PDF_PREVIEW_TITLE: "Summary of loan application",
89
- TOTAL_INTEREST_RATE: "Total Interest Rate",
90
+ TOTAL_INTEREST_RATE: "Interest Rate",
90
91
  DURATION: "Duration",
91
92
  STAMP_DUTY: "Stamp Duty",
92
93
  LEGAL_FEES: "Legal Fees",
@@ -149,12 +150,13 @@ const locale$2 = {
149
150
  DOCUMENTS_REMARKS: "Documents Remarks",
150
151
  LOAN_AMOUNT: "Jumlah Pinjaman",
151
152
  INTEREST_RATE: "Kadar Faedah",
152
- INTEREST_FEES: "Yuran Faedah",
153
- REPAYMENT_AMOUNT: "Amaun Bayaran Balik",
153
+ INTEREST_FEES: "Jumlah Faedah",
154
+ REPAYMENT_AMOUNT: "Ansuran Bulanan",
155
+ PRINCIPLE_PLUS_INTEREST: "Prinsipal + Faedah",
154
156
  DISBURSEMENT: "Pengeluaran",
155
157
  CONFIRM_INFORMATION_READ: "Saya mengesahkan bahawa saya telah membaca, memahami, dan bersetuju dengan jumlah pinjaman, kadar faedah, terma pembayaran balik, potongan, tempoh pinjaman, serta semua butiran pinjaman yang berkaitan.",
156
158
  PDF_PREVIEW_TITLE: "Ringkasan permohonan pinjaman",
157
- TOTAL_INTEREST_RATE: "Jumlah Kadar Faedah",
159
+ TOTAL_INTEREST_RATE: "Kadar Faedah",
158
160
  DURATION: "Tempoh",
159
161
  STAMP_DUTY: "Duti Setem",
160
162
  LEGAL_FEES: "Yuran Guaman",
@@ -25941,7 +25943,7 @@ const PDFPreviewForTheSignature = ({
25941
25943
  ": "
25942
25944
  ] }),
25943
25945
  financeCalculation.totalInterestRate,
25944
- " %"
25946
+ "% p.a."
25945
25947
  ] }) }),
25946
25948
  financeCalculation.interestFees !== void 0 && /* @__PURE__ */ jsx(Grid2, { size: { xs: 12, sm: 4 }, children: /* @__PURE__ */ jsxs(Typography$1, { variant: "body2", children: [
25947
25949
  /* @__PURE__ */ jsxs("strong", { children: [
@@ -25950,6 +25952,13 @@ const PDFPreviewForTheSignature = ({
25950
25952
  ] }),
25951
25953
  formatAmount(financeCalculation.interestFees)
25952
25954
  ] }) }),
25955
+ financeCalculation.principalPlusInterest !== void 0 && /* @__PURE__ */ jsx(Grid2, { size: { xs: 12, sm: 4 }, children: /* @__PURE__ */ jsxs(Typography$1, { variant: "body2", children: [
25956
+ /* @__PURE__ */ jsxs("strong", { children: [
25957
+ t2("PRINCIPLE_PLUS_INTEREST"),
25958
+ ": "
25959
+ ] }),
25960
+ formatAmount(financeCalculation.principalPlusInterest)
25961
+ ] }) }),
25953
25962
  financeCalculation.repaymentAmount !== void 0 && /* @__PURE__ */ jsx(Grid2, { size: { xs: 12, sm: 4 }, children: /* @__PURE__ */ jsxs(Typography$1, { variant: "body2", children: [
25954
25963
  /* @__PURE__ */ jsxs("strong", { children: [
25955
25964
  t2("REPAYMENT_AMOUNT"),