@thecb/components 5.8.2-beta.3 → 5.8.2-beta.4
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/index.cjs.js +7 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/obligation/Obligation.js +2 -0
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +3 -2
package/dist/index.esm.js
CHANGED
|
@@ -40484,7 +40484,8 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
40484
40484
|
autoPaySchedule = _ref.autoPaySchedule,
|
|
40485
40485
|
paymentPlanSchedule = _ref.paymentPlanSchedule,
|
|
40486
40486
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
40487
|
-
nextAutopayDate = _ref.nextAutopayDate
|
|
40487
|
+
nextAutopayDate = _ref.nextAutopayDate,
|
|
40488
|
+
obligationAssocID = _ref.obligationAssocID;
|
|
40488
40489
|
var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
40489
40490
|
|
|
40490
40491
|
var _useState = useState(false),
|
|
@@ -40509,7 +40510,7 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
40509
40510
|
};
|
|
40510
40511
|
|
|
40511
40512
|
var handleDetailsClick = function handleDetailsClick() {
|
|
40512
|
-
setDetailedObligation(obligations, config);
|
|
40513
|
+
setDetailedObligation(obligations, config, obligationAssocID);
|
|
40513
40514
|
navigateToDetailedObligation(detailsSlug);
|
|
40514
40515
|
};
|
|
40515
40516
|
|
|
@@ -40792,7 +40793,8 @@ var Obligation = function Obligation(_ref) {
|
|
|
40792
40793
|
actions: actions,
|
|
40793
40794
|
isMobile: isMobile,
|
|
40794
40795
|
isPaymentPlan: isPaymentPlan,
|
|
40795
|
-
nextAutopayDate: nextAutopayDate
|
|
40796
|
+
nextAutopayDate: nextAutopayDate,
|
|
40797
|
+
obligationAssocID: obligationAssocID
|
|
40796
40798
|
}))), isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
|
|
40797
40799
|
obligations: obligations,
|
|
40798
40800
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -40806,7 +40808,8 @@ var Obligation = function Obligation(_ref) {
|
|
|
40806
40808
|
actions: actions,
|
|
40807
40809
|
isMobile: isMobile,
|
|
40808
40810
|
isPaymentPlan: isPaymentPlan,
|
|
40809
|
-
nextAutopayDate: nextAutopayDate
|
|
40811
|
+
nextAutopayDate: nextAutopayDate,
|
|
40812
|
+
obligationAssocID: obligationAssocID
|
|
40810
40813
|
}));
|
|
40811
40814
|
var inactiveObligation = /*#__PURE__*/React.createElement(Box, {
|
|
40812
40815
|
padding: "0",
|