@lanaco/lnc-react-ui 4.0.79 → 4.0.81
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/BlogsSectionWithFilters.cjs +6 -6
- package/dist/BlogsSectionWithFilters.js +61 -65
- package/dist/CustomLoanMapSection.cjs +1 -1
- package/dist/CustomLoanMapSection.js +1 -1
- package/dist/LoanCalculatorSection.cjs +226 -1
- package/dist/LoanCalculatorSection.js +673 -23
- package/dist/{index-CcLiL4eM.js → index-D0Cl3mpJ.js} +2 -2
- package/dist/{index-BuKj-ITH.cjs → index-Dy-o153l.cjs} +1 -1
- package/package.json +1 -1
|
@@ -113,7 +113,7 @@ const o = I.div`
|
|
|
113
113
|
text: D = "Lorem ipsum dolor sit amet consectetur, Nunc nibh at.",
|
|
114
114
|
placeholderText: Q = "Enter the loan amount",
|
|
115
115
|
openCalculatorText: j = "Open calculator",
|
|
116
|
-
onOpenCalculator: X = () => {
|
|
116
|
+
onOpenCalculator: X = (A) => {
|
|
117
117
|
}
|
|
118
118
|
} = c, d = E(), [e, z] = V(null);
|
|
119
119
|
return /* @__PURE__ */ g(o, { className: "loan-calculator", children: [
|
|
@@ -151,7 +151,7 @@ const o = I.div`
|
|
|
151
151
|
type: "button",
|
|
152
152
|
size: "medium",
|
|
153
153
|
color: "neutral",
|
|
154
|
-
onClick: X,
|
|
154
|
+
onClick: () => X(e),
|
|
155
155
|
children: j
|
|
156
156
|
}
|
|
157
157
|
)
|