@thecb/components 5.8.0 → 5.8.1-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "5.8.0",
3
+ "version": "5.8.1-beta.0",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -25,7 +25,7 @@ const Obligation = ({
25
25
  isPaymentPlan,
26
26
  nextAutopayDate,
27
27
  obligationAssocID,
28
- isActive = true,
28
+ inactive = false,
29
29
  inactiveLookupTitle = "",
30
30
  inactiveLookupInput = "Account",
31
31
  inactiveLookupValue = ""
@@ -145,7 +145,7 @@ const Obligation = ({
145
145
  nowrap
146
146
  >
147
147
  <Box padding="0">
148
- <Cluster justify="flex-start" align="center">
148
+ <Cluster justify="flex-start" align="center" nowrap>
149
149
  <IconModule
150
150
  icon={config.icon}
151
151
  iconDefault={config.iconDefault}
@@ -197,7 +197,7 @@ const Obligation = ({
197
197
  </Box>
198
198
  );
199
199
 
200
- return isActive ? activeObligation : inactiveObligation;
200
+ return inactive ? inactiveObligation : activeObligation;
201
201
  };
202
202
 
203
203
  export default Obligation;
@@ -35,7 +35,6 @@ const InactiveControlsModule = ({
35
35
  modalOpen={modalOpen}
36
36
  navigateToSettings={navigateToSettings}
37
37
  deactivatePaymentSchedule={deactivatePaymentSchedule}
38
- buttonLinkType
39
38
  isMobile={isMobile}
40
39
  paymentPlanSchedule={paymentPlanSchedule}
41
40
  isPaymentPlan={isPaymentPlan}