@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.cjs.js
CHANGED
|
@@ -40375,7 +40375,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
40375
40375
|
toggleModal(true);
|
|
40376
40376
|
},
|
|
40377
40377
|
dataQa: "Turn off Autopay",
|
|
40378
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "
|
|
40378
|
+
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "flex-grow: 1; min-width: 165px;"
|
|
40379
40379
|
});
|
|
40380
40380
|
}
|
|
40381
40381
|
|
|
@@ -40492,7 +40492,8 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
40492
40492
|
autoPaySchedule = _ref.autoPaySchedule,
|
|
40493
40493
|
paymentPlanSchedule = _ref.paymentPlanSchedule,
|
|
40494
40494
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
40495
|
-
nextAutopayDate = _ref.nextAutopayDate
|
|
40495
|
+
nextAutopayDate = _ref.nextAutopayDate,
|
|
40496
|
+
obligationAssocID = _ref.obligationAssocID;
|
|
40496
40497
|
var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
40497
40498
|
|
|
40498
40499
|
var _useState = React.useState(false),
|
|
@@ -40517,7 +40518,7 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
40517
40518
|
};
|
|
40518
40519
|
|
|
40519
40520
|
var handleDetailsClick = function handleDetailsClick() {
|
|
40520
|
-
setDetailedObligation(obligations, config);
|
|
40521
|
+
setDetailedObligation(obligations, config, obligationAssocID);
|
|
40521
40522
|
navigateToDetailedObligation(detailsSlug);
|
|
40522
40523
|
};
|
|
40523
40524
|
|
|
@@ -40643,7 +40644,7 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
40643
40644
|
border: isMobile ? "1px solid ".concat(GHOST_GREY) : "0px",
|
|
40644
40645
|
borderWidthOverride: isMobile ? "1px 0 0 0" : "0px"
|
|
40645
40646
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
40646
|
-
childGap:
|
|
40647
|
+
childGap: "8px",
|
|
40647
40648
|
nowrap: true
|
|
40648
40649
|
}, autoPayEnabled && /*#__PURE__*/React__default.createElement(Box, {
|
|
40649
40650
|
padding: "0",
|
|
@@ -40669,7 +40670,7 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
40669
40670
|
text: "Remove",
|
|
40670
40671
|
action: handleRemoveAccount,
|
|
40671
40672
|
dataQa: "Remove Account",
|
|
40672
|
-
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "
|
|
40673
|
+
extraStyles: isMobile ? "flex-grow: 1; width: 100%;" : "flex-grow: 1;"
|
|
40673
40674
|
}))));
|
|
40674
40675
|
};
|
|
40675
40676
|
|
|
@@ -40800,7 +40801,8 @@ var Obligation = function Obligation(_ref) {
|
|
|
40800
40801
|
actions: actions,
|
|
40801
40802
|
isMobile: isMobile,
|
|
40802
40803
|
isPaymentPlan: isPaymentPlan,
|
|
40803
|
-
nextAutopayDate: nextAutopayDate
|
|
40804
|
+
nextAutopayDate: nextAutopayDate,
|
|
40805
|
+
obligationAssocID: obligationAssocID
|
|
40804
40806
|
}))), isMobile && /*#__PURE__*/React__default.createElement(PaymentDetailsActions, {
|
|
40805
40807
|
obligations: obligations,
|
|
40806
40808
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -40814,7 +40816,8 @@ var Obligation = function Obligation(_ref) {
|
|
|
40814
40816
|
actions: actions,
|
|
40815
40817
|
isMobile: isMobile,
|
|
40816
40818
|
isPaymentPlan: isPaymentPlan,
|
|
40817
|
-
nextAutopayDate: nextAutopayDate
|
|
40819
|
+
nextAutopayDate: nextAutopayDate,
|
|
40820
|
+
obligationAssocID: obligationAssocID
|
|
40818
40821
|
}));
|
|
40819
40822
|
var inactiveObligation = /*#__PURE__*/React__default.createElement(Box, {
|
|
40820
40823
|
padding: "0",
|