@thecb/components 5.8.2-beta.1 → 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 +10 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +10 -7
- 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/AutopayModalModule.js +3 -1
- package/src/components/molecules/obligation/modules/InactiveControlsModule.js +2 -2
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +3 -2
package/dist/index.esm.js
CHANGED
|
@@ -40367,7 +40367,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
40367
40367
|
toggleModal(true);
|
|
40368
40368
|
},
|
|
40369
40369
|
dataQa: "Turn off Autopay",
|
|
40370
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "
|
|
40370
|
+
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "flex-grow: 1; min-width: 165px;"
|
|
40371
40371
|
});
|
|
40372
40372
|
}
|
|
40373
40373
|
|
|
@@ -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
|
|
|
@@ -40635,7 +40636,7 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
40635
40636
|
border: isMobile ? "1px solid ".concat(GHOST_GREY) : "0px",
|
|
40636
40637
|
borderWidthOverride: isMobile ? "1px 0 0 0" : "0px"
|
|
40637
40638
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
40638
|
-
childGap:
|
|
40639
|
+
childGap: "8px",
|
|
40639
40640
|
nowrap: true
|
|
40640
40641
|
}, autoPayEnabled && /*#__PURE__*/React.createElement(Box, {
|
|
40641
40642
|
padding: "0",
|
|
@@ -40661,7 +40662,7 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
40661
40662
|
text: "Remove",
|
|
40662
40663
|
action: handleRemoveAccount,
|
|
40663
40664
|
dataQa: "Remove Account",
|
|
40664
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "
|
|
40665
|
+
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "flex-grow: 1;"
|
|
40665
40666
|
}))));
|
|
40666
40667
|
};
|
|
40667
40668
|
|
|
@@ -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",
|