@thecb/components 7.7.0-beta.0 → 7.7.0-beta.2
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 +255 -194
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +255 -194
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/{components/.DS_Store → .DS_Store} +0 -0
- package/src/components/{molecules → atoms}/.DS_Store +0 -0
- package/src/components/atoms/{icons/PaymentIcon.js → formatted-bank-account/FormattedBankAccount.js} +22 -8
- package/src/components/atoms/formatted-bank-account/FormattedBankAccount.theme.js +9 -0
- package/src/components/atoms/formatted-bank-account/index.js +3 -0
- package/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +32 -60
- package/src/components/atoms/icons/{ExternalLinkIcon.js → ExternalLinkicon.js} +0 -0
- package/src/components/atoms/icons/index.js +0 -2
- package/src/components/atoms/index.js +1 -0
- package/src/components/molecules/obligation/Obligation.js +25 -5
- package/src/components/molecules/obligation/modules/AmountModule.js +7 -1
- package/src/components/molecules/obligation/modules/AutopayModalModule.js +33 -15
- package/src/components/molecules/obligation/modules/InactiveControlsModule.js +7 -1
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +10 -1
- package/src/components/molecules/radio-group/RadioGroup.js +4 -1
- package/src/components/molecules/radio-section/RadioSection.js +9 -50
- package/src/constants/general.js +3 -0
- package/src/util/general.js +66 -1
package/dist/index.esm.js
CHANGED
|
@@ -6310,6 +6310,47 @@ var throttle = function throttle(delay, fn) {
|
|
|
6310
6310
|
return fn.apply(void 0, arguments);
|
|
6311
6311
|
};
|
|
6312
6312
|
};
|
|
6313
|
+
var titleCaseWord = function titleCaseWord(word) {
|
|
6314
|
+
return word.charAt(0).toUpperCase() + word.slice(1);
|
|
6315
|
+
};
|
|
6316
|
+
var titleCaseString = function titleCaseString(string) {
|
|
6317
|
+
return string.split(" ").map(function (word, index, string) {
|
|
6318
|
+
return index === 0 || index === string.length - 1 || word.length > 3 ? titleCaseWord(word.toLowerCase()) : word;
|
|
6319
|
+
}).join(" ");
|
|
6320
|
+
};
|
|
6321
|
+
var renderCardStatus = function renderCardStatus(expirationStatus, expireDate) {
|
|
6322
|
+
var textAlign = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "right";
|
|
6323
|
+
var as = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "span";
|
|
6324
|
+
var ACTIVE = "ACTIVE";
|
|
6325
|
+
var EXPIRING_SOON = "EXPIRING_SOON";
|
|
6326
|
+
var EXPIRED = "EXPIRED";
|
|
6327
|
+
|
|
6328
|
+
switch (expirationStatus) {
|
|
6329
|
+
case ACTIVE:
|
|
6330
|
+
return /*#__PURE__*/React.createElement(Text$1, {
|
|
6331
|
+
as: as,
|
|
6332
|
+
variant: "pXS",
|
|
6333
|
+
color: ASH_GREY,
|
|
6334
|
+
extraStyles: "text-align: ".concat(textAlign, ";")
|
|
6335
|
+
}, "Exp Date ", expireDate);
|
|
6336
|
+
|
|
6337
|
+
case EXPIRING_SOON:
|
|
6338
|
+
return /*#__PURE__*/React.createElement(Text$1, {
|
|
6339
|
+
as: as,
|
|
6340
|
+
variant: "pXS",
|
|
6341
|
+
color: FIRE_YELLOW,
|
|
6342
|
+
extraStyles: "text-align: ".concat(textAlign, ";")
|
|
6343
|
+
}, "Expiring Soon ", expireDate);
|
|
6344
|
+
|
|
6345
|
+
case EXPIRED:
|
|
6346
|
+
return /*#__PURE__*/React.createElement(Text$1, {
|
|
6347
|
+
as: as,
|
|
6348
|
+
variant: "pXS",
|
|
6349
|
+
color: ASH_GREY,
|
|
6350
|
+
extraStyles: "text-align: ".concat(textAlign, ";")
|
|
6351
|
+
}, "Expired");
|
|
6352
|
+
}
|
|
6353
|
+
};
|
|
6313
6354
|
|
|
6314
6355
|
var general = /*#__PURE__*/Object.freeze({
|
|
6315
6356
|
__proto__: null,
|
|
@@ -6327,7 +6368,10 @@ var general = /*#__PURE__*/Object.freeze({
|
|
|
6327
6368
|
inputPlaceholderTextStyle: inputPlaceholderTextStyle,
|
|
6328
6369
|
inputDisabledStyle: inputDisabledStyle,
|
|
6329
6370
|
MOBILE_WIDTH: MOBILE_WIDTH,
|
|
6330
|
-
throttle: throttle
|
|
6371
|
+
throttle: throttle,
|
|
6372
|
+
titleCaseWord: titleCaseWord,
|
|
6373
|
+
titleCaseString: titleCaseString,
|
|
6374
|
+
renderCardStatus: renderCardStatus
|
|
6331
6375
|
});
|
|
6332
6376
|
|
|
6333
6377
|
var _excluded$1 = ["themeValues", "weight", "color", "textWrap", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children", "variant"];
|
|
@@ -13813,33 +13857,6 @@ var GenericCard = function GenericCard() {
|
|
|
13813
13857
|
}));
|
|
13814
13858
|
};
|
|
13815
13859
|
|
|
13816
|
-
var BankItemWrapper = styled.div.withConfig({
|
|
13817
|
-
displayName: "PaymentIcon__BankItemWrapper",
|
|
13818
|
-
componentId: "sc-1k0jl35-0"
|
|
13819
|
-
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
13820
|
-
var BankAccountText = styled.h4.withConfig({
|
|
13821
|
-
displayName: "PaymentIcon__BankAccountText",
|
|
13822
|
-
componentId: "sc-1k0jl35-1"
|
|
13823
|
-
})(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], CHARADE_GREY);
|
|
13824
|
-
var CHECKING = "CHECKING";
|
|
13825
|
-
var SAVINGS = "SAVINGS";
|
|
13826
|
-
|
|
13827
|
-
var PaymentIcon = function PaymentIcon(_ref) {
|
|
13828
|
-
var lastFour = _ref.lastFour,
|
|
13829
|
-
accountType = _ref.accountType,
|
|
13830
|
-
autoPay = _ref.autoPay;
|
|
13831
|
-
return /*#__PURE__*/React.createElement(BankItemWrapper, null, /*#__PURE__*/React.createElement(Box, {
|
|
13832
|
-
padding: "0.25rem 0 0 0",
|
|
13833
|
-
extraStyles: "margin-right: 1rem;"
|
|
13834
|
-
}, /*#__PURE__*/React.createElement(BankIcon, null)), /*#__PURE__*/React.createElement(Stack, {
|
|
13835
|
-
childGap: "0"
|
|
13836
|
-
}, accountType === CHECKING && /*#__PURE__*/React.createElement(BankAccountText, null, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React.createElement(BankAccountText, null, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
13837
|
-
variant: "p",
|
|
13838
|
-
color: REGENT_GREY,
|
|
13839
|
-
extraStyles: "font-style: italic;"
|
|
13840
|
-
}, "Autopay Enabled")));
|
|
13841
|
-
};
|
|
13842
|
-
|
|
13843
13860
|
var IconAdd = function IconAdd() {
|
|
13844
13861
|
return /*#__PURE__*/React.createElement("svg", {
|
|
13845
13862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -24277,9 +24294,50 @@ var fallbackValues$l = {
|
|
|
24277
24294
|
autopayTextColor: autopayTextColor
|
|
24278
24295
|
};
|
|
24279
24296
|
|
|
24280
|
-
var
|
|
24281
|
-
|
|
24282
|
-
|
|
24297
|
+
var BankItemWrapper = styled.div.withConfig({
|
|
24298
|
+
displayName: "FormattedBankAccount__BankItemWrapper",
|
|
24299
|
+
componentId: "sc-18hcgw4-0"
|
|
24300
|
+
})(["display:flex;justify-content:flex-start;align-items:center;"]);
|
|
24301
|
+
var BankAccountText = styled.h4.withConfig({
|
|
24302
|
+
displayName: "FormattedBankAccount__BankAccountText",
|
|
24303
|
+
componentId: "sc-18hcgw4-1"
|
|
24304
|
+
})(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], function (_ref) {
|
|
24305
|
+
var color = _ref.color;
|
|
24306
|
+
return color;
|
|
24307
|
+
});
|
|
24308
|
+
var CHECKING = "CHECKING";
|
|
24309
|
+
var SAVINGS = "SAVINGS";
|
|
24310
|
+
|
|
24311
|
+
var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
24312
|
+
var lastFour = _ref2.lastFour,
|
|
24313
|
+
accountType = _ref2.accountType,
|
|
24314
|
+
autoPay = _ref2.autoPay,
|
|
24315
|
+
themeValues = _ref2.themeValues;
|
|
24316
|
+
return /*#__PURE__*/React.createElement(BankItemWrapper, null, /*#__PURE__*/React.createElement(Box, {
|
|
24317
|
+
padding: "0.25rem 0 0 0",
|
|
24318
|
+
extraStyles: "margin-right: 1rem;"
|
|
24319
|
+
}, /*#__PURE__*/React.createElement(BankIcon, null)), /*#__PURE__*/React.createElement(Stack, {
|
|
24320
|
+
childGap: "0"
|
|
24321
|
+
}, accountType === CHECKING && /*#__PURE__*/React.createElement(BankAccountText, {
|
|
24322
|
+
color: themeValues.textColor
|
|
24323
|
+
}, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React.createElement(BankAccountText, {
|
|
24324
|
+
color: themeValues.textColor
|
|
24325
|
+
}, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
24326
|
+
variant: "p",
|
|
24327
|
+
color: themeValues.autopayTextColor,
|
|
24328
|
+
extraStyles: "font-style: italic;"
|
|
24329
|
+
}, "Autopay Enabled")));
|
|
24330
|
+
};
|
|
24331
|
+
|
|
24332
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$l);
|
|
24333
|
+
|
|
24334
|
+
var textColor$2 = "".concat(CHARADE_GREY);
|
|
24335
|
+
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
24336
|
+
var fallbackValues$m = {
|
|
24337
|
+
textColor: textColor$2,
|
|
24338
|
+
autopayTextColor: autopayTextColor$1
|
|
24339
|
+
};
|
|
24340
|
+
|
|
24283
24341
|
var CreditCardWrapper = styled.div.withConfig({
|
|
24284
24342
|
displayName: "FormattedCreditCard__CreditCardWrapper",
|
|
24285
24343
|
componentId: "sc-s0ta5l-0"
|
|
@@ -24295,32 +24353,6 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
24295
24353
|
expireDate = _ref.expireDate,
|
|
24296
24354
|
expirationStatus = _ref.expirationStatus,
|
|
24297
24355
|
themeValues = _ref.themeValues;
|
|
24298
|
-
|
|
24299
|
-
var renderCardStatus = function renderCardStatus() {
|
|
24300
|
-
switch (expirationStatus) {
|
|
24301
|
-
case ACTIVE:
|
|
24302
|
-
return /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
24303
|
-
variant: "pXS",
|
|
24304
|
-
color: ASH_GREY,
|
|
24305
|
-
textAlign: "left"
|
|
24306
|
-
}, "Exp Date ", expireDate);
|
|
24307
|
-
|
|
24308
|
-
case EXPIRING_SOON:
|
|
24309
|
-
return /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
24310
|
-
variant: "pXS",
|
|
24311
|
-
color: FIRE_YELLOW,
|
|
24312
|
-
textAlign: "left"
|
|
24313
|
-
}, "Expiring Soon ", expireDate);
|
|
24314
|
-
|
|
24315
|
-
case EXPIRED:
|
|
24316
|
-
return /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
24317
|
-
variant: "pXS",
|
|
24318
|
-
color: ASH_GREY,
|
|
24319
|
-
textAlign: "left"
|
|
24320
|
-
}, "Expired");
|
|
24321
|
-
}
|
|
24322
|
-
};
|
|
24323
|
-
|
|
24324
24356
|
return /*#__PURE__*/React.createElement(CreditCardWrapper, null, /*#__PURE__*/React.createElement(CCIconWrapper, null, /*#__PURE__*/React.createElement(GenericCard, null)), /*#__PURE__*/React.createElement(Stack, {
|
|
24325
24357
|
childGap: "0"
|
|
24326
24358
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
@@ -24331,14 +24363,14 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
24331
24363
|
color: themeValues.textColor,
|
|
24332
24364
|
textAlign: "left",
|
|
24333
24365
|
extraStyles: "display: inline-block;"
|
|
24334
|
-
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus())), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
24366
|
+
}, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus(expirationStatus, expireDate, "left", "p"))), autoPay && /*#__PURE__*/React.createElement(Text$1, {
|
|
24335
24367
|
variant: "p",
|
|
24336
24368
|
color: themeValues.autopayTextColor,
|
|
24337
24369
|
extraStyles: "font-style: italic;"
|
|
24338
24370
|
}, "Autopay Enabled")));
|
|
24339
24371
|
};
|
|
24340
24372
|
|
|
24341
|
-
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$
|
|
24373
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$m);
|
|
24342
24374
|
|
|
24343
24375
|
var Hamburger = styled.button.withConfig({
|
|
24344
24376
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -24420,7 +24452,7 @@ var fontSize$8 = {
|
|
|
24420
24452
|
h5: "1.375rem",
|
|
24421
24453
|
h6: "1.25rem"
|
|
24422
24454
|
};
|
|
24423
|
-
var fallbackValues$
|
|
24455
|
+
var fallbackValues$n = {
|
|
24424
24456
|
fontFamily: fontFamily$5,
|
|
24425
24457
|
fontSize: fontSize$8
|
|
24426
24458
|
};
|
|
@@ -24462,7 +24494,7 @@ var Heading = function Heading(_ref) {
|
|
|
24462
24494
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
24463
24495
|
};
|
|
24464
24496
|
|
|
24465
|
-
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$
|
|
24497
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$n, "h1");
|
|
24466
24498
|
|
|
24467
24499
|
var Jumbo = function Jumbo(_ref) {
|
|
24468
24500
|
var showButton = _ref.showButton,
|
|
@@ -24536,7 +24568,7 @@ var fontWeight$4 = {
|
|
|
24536
24568
|
pL: "600",
|
|
24537
24569
|
h6: "700"
|
|
24538
24570
|
};
|
|
24539
|
-
var fallbackValues$
|
|
24571
|
+
var fallbackValues$o = {
|
|
24540
24572
|
fontWeight: fontWeight$4
|
|
24541
24573
|
};
|
|
24542
24574
|
|
|
@@ -24564,7 +24596,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
|
|
|
24564
24596
|
}, amount));
|
|
24565
24597
|
};
|
|
24566
24598
|
|
|
24567
|
-
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$
|
|
24599
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$o, "default");
|
|
24568
24600
|
|
|
24569
24601
|
var weightTitle = {
|
|
24570
24602
|
"default": "600",
|
|
@@ -24574,7 +24606,7 @@ var paragraphVariant = {
|
|
|
24574
24606
|
"default": "pL",
|
|
24575
24607
|
small: "pS"
|
|
24576
24608
|
};
|
|
24577
|
-
var fallbackValues$
|
|
24609
|
+
var fallbackValues$p = {
|
|
24578
24610
|
weightTitle: weightTitle,
|
|
24579
24611
|
paragraphVariant: paragraphVariant
|
|
24580
24612
|
};
|
|
@@ -24603,10 +24635,10 @@ var LineItem = function LineItem(_ref) {
|
|
|
24603
24635
|
}, amount));
|
|
24604
24636
|
};
|
|
24605
24637
|
|
|
24606
|
-
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$
|
|
24638
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$p, "default");
|
|
24607
24639
|
|
|
24608
24640
|
var color$8 = "#15749D";
|
|
24609
|
-
var fallbackValues$
|
|
24641
|
+
var fallbackValues$q = {
|
|
24610
24642
|
color: color$8
|
|
24611
24643
|
};
|
|
24612
24644
|
|
|
@@ -24645,7 +24677,7 @@ var Spinner$1 = function Spinner(_ref4) {
|
|
|
24645
24677
|
})));
|
|
24646
24678
|
};
|
|
24647
24679
|
|
|
24648
|
-
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$
|
|
24680
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$q);
|
|
24649
24681
|
|
|
24650
24682
|
var Loading = function Loading() {
|
|
24651
24683
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -24911,7 +24943,7 @@ var height$1 = {
|
|
|
24911
24943
|
"default": "3rem",
|
|
24912
24944
|
large: "192px"
|
|
24913
24945
|
};
|
|
24914
|
-
var fallbackValues$
|
|
24946
|
+
var fallbackValues$r = {
|
|
24915
24947
|
color: color$9,
|
|
24916
24948
|
height: height$1
|
|
24917
24949
|
};
|
|
@@ -25020,12 +25052,12 @@ var Placeholder = function Placeholder(_ref2) {
|
|
|
25020
25052
|
}, text)))))))))));
|
|
25021
25053
|
};
|
|
25022
25054
|
|
|
25023
|
-
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$
|
|
25055
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$r, "default");
|
|
25024
25056
|
|
|
25025
25057
|
var backgroundColor$4 = {
|
|
25026
25058
|
"default": "".concat(WHITE)
|
|
25027
25059
|
};
|
|
25028
|
-
var fallbackValues$
|
|
25060
|
+
var fallbackValues$s = {
|
|
25029
25061
|
backgroundColor: backgroundColor$4
|
|
25030
25062
|
};
|
|
25031
25063
|
|
|
@@ -25053,7 +25085,7 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
25053
25085
|
}));
|
|
25054
25086
|
};
|
|
25055
25087
|
|
|
25056
|
-
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$
|
|
25088
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$s, "default");
|
|
25057
25089
|
|
|
25058
25090
|
|
|
25059
25091
|
|
|
@@ -25115,7 +25147,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref) {
|
|
|
25115
25147
|
|
|
25116
25148
|
var activeColor$5 = "".concat(MATISSE_BLUE);
|
|
25117
25149
|
var inactiveColor = "".concat(GREY_CHATEAU);
|
|
25118
|
-
var fallbackValues$
|
|
25150
|
+
var fallbackValues$t = {
|
|
25119
25151
|
activeColor: activeColor$5,
|
|
25120
25152
|
inactiveColor: inactiveColor
|
|
25121
25153
|
};
|
|
@@ -25205,12 +25237,12 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
25205
25237
|
})));
|
|
25206
25238
|
};
|
|
25207
25239
|
|
|
25208
|
-
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$
|
|
25240
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$t);
|
|
25209
25241
|
|
|
25210
25242
|
var border$2 = {
|
|
25211
25243
|
"default": "1px solid #caced8"
|
|
25212
25244
|
};
|
|
25213
|
-
var fallbackValues$
|
|
25245
|
+
var fallbackValues$u = {
|
|
25214
25246
|
border: border$2
|
|
25215
25247
|
};
|
|
25216
25248
|
|
|
@@ -25285,7 +25317,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
25285
25317
|
})))));
|
|
25286
25318
|
};
|
|
25287
25319
|
|
|
25288
|
-
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$
|
|
25320
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$u, "default");
|
|
25289
25321
|
|
|
25290
25322
|
var borderColor$2 = {
|
|
25291
25323
|
"default": "".concat(GREY_CHATEAU)
|
|
@@ -25293,7 +25325,7 @@ var borderColor$2 = {
|
|
|
25293
25325
|
var borderSize = {
|
|
25294
25326
|
"default": "1px"
|
|
25295
25327
|
};
|
|
25296
|
-
var fallbackValues$
|
|
25328
|
+
var fallbackValues$v = {
|
|
25297
25329
|
borderColor: borderColor$2,
|
|
25298
25330
|
borderSize: borderSize
|
|
25299
25331
|
};
|
|
@@ -25310,7 +25342,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
25310
25342
|
});
|
|
25311
25343
|
};
|
|
25312
25344
|
|
|
25313
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
25345
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$v, "default");
|
|
25314
25346
|
|
|
25315
25347
|
var placeHolderOptionUS = {
|
|
25316
25348
|
text: "Please select state",
|
|
@@ -35894,7 +35926,7 @@ var offBackground = "".concat(REGENT_GREY);
|
|
|
35894
35926
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
35895
35927
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
35896
35928
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
35897
|
-
var fallbackValues$
|
|
35929
|
+
var fallbackValues$w = {
|
|
35898
35930
|
onBackground: onBackground,
|
|
35899
35931
|
disabledBackground: disabledBackground,
|
|
35900
35932
|
white: white,
|
|
@@ -36070,7 +36102,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
36070
36102
|
}, label))));
|
|
36071
36103
|
};
|
|
36072
36104
|
|
|
36073
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
36105
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$w);
|
|
36074
36106
|
|
|
36075
36107
|
var background$1 = "".concat(ATHENS_GREY);
|
|
36076
36108
|
var white$1 = "".concat(WHITE);
|
|
@@ -36119,7 +36151,7 @@ var backgroundColor$5 = WHITE;
|
|
|
36119
36151
|
var imageBackgroundColor = INFO_BLUE;
|
|
36120
36152
|
var headerBackgroundColor = STORM_GREY;
|
|
36121
36153
|
var headerColor = WHITE;
|
|
36122
|
-
var fallbackValues$
|
|
36154
|
+
var fallbackValues$x = {
|
|
36123
36155
|
backgroundColor: backgroundColor$5,
|
|
36124
36156
|
imageBackgroundColor: imageBackgroundColor,
|
|
36125
36157
|
headerBackgroundColor: headerBackgroundColor,
|
|
@@ -36142,11 +36174,11 @@ var CardImage = styled.img.withConfig({
|
|
|
36142
36174
|
|
|
36143
36175
|
var titleColor = BRIGHT_GREY;
|
|
36144
36176
|
var titleWeight = FONT_WEIGHT_BOLD;
|
|
36145
|
-
var textColor$
|
|
36146
|
-
var fallbackValues$
|
|
36177
|
+
var textColor$3 = BRIGHT_GREY;
|
|
36178
|
+
var fallbackValues$y = {
|
|
36147
36179
|
titleColor: titleColor,
|
|
36148
36180
|
titleWeight: titleWeight,
|
|
36149
|
-
textColor: textColor$
|
|
36181
|
+
textColor: textColor$3
|
|
36150
36182
|
};
|
|
36151
36183
|
|
|
36152
36184
|
var CardText = function CardText(_ref) {
|
|
@@ -36167,7 +36199,7 @@ var CardText = function CardText(_ref) {
|
|
|
36167
36199
|
color: themeValues.textColor
|
|
36168
36200
|
}, text))));
|
|
36169
36201
|
};
|
|
36170
|
-
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$
|
|
36202
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$y);
|
|
36171
36203
|
|
|
36172
36204
|
var CardHeader = function CardHeader(_ref) {
|
|
36173
36205
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -36264,12 +36296,12 @@ var Card = function Card(_ref) {
|
|
|
36264
36296
|
}), children)));
|
|
36265
36297
|
};
|
|
36266
36298
|
|
|
36267
|
-
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$
|
|
36299
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$x);
|
|
36268
36300
|
|
|
36269
36301
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
36270
36302
|
var activeColor$6 = MATISSE_BLUE;
|
|
36271
36303
|
var linkColor$3 = CHARADE_GREY;
|
|
36272
|
-
var fallbackValues$
|
|
36304
|
+
var fallbackValues$z = {
|
|
36273
36305
|
fontFamily: fontFamily$6,
|
|
36274
36306
|
activeColor: activeColor$6,
|
|
36275
36307
|
linkColor: linkColor$3
|
|
@@ -36302,7 +36334,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
36302
36334
|
}, label));
|
|
36303
36335
|
};
|
|
36304
36336
|
|
|
36305
|
-
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$
|
|
36337
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$z);
|
|
36306
36338
|
|
|
36307
36339
|
var NavTabs = function NavTabs(_ref) {
|
|
36308
36340
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -38260,7 +38292,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
|
|
|
38260
38292
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
38261
38293
|
|
|
38262
38294
|
var backgroundColor$6 = "#ebeffb";
|
|
38263
|
-
var fallbackValues$
|
|
38295
|
+
var fallbackValues$A = {
|
|
38264
38296
|
backgroundColor: backgroundColor$6
|
|
38265
38297
|
};
|
|
38266
38298
|
|
|
@@ -38312,7 +38344,7 @@ var Banner = function Banner(_ref) {
|
|
|
38312
38344
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
38313
38345
|
};
|
|
38314
38346
|
|
|
38315
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
38347
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$A);
|
|
38316
38348
|
|
|
38317
38349
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
38318
38350
|
var _newPasswordErrorMess;
|
|
@@ -38454,7 +38486,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
38454
38486
|
var titleColor$1 = "#292A33";
|
|
38455
38487
|
var headingBackgroundColor = "transparent";
|
|
38456
38488
|
var bodyBackgroundColor = "transparent";
|
|
38457
|
-
var fallbackValues$
|
|
38489
|
+
var fallbackValues$B = {
|
|
38458
38490
|
titleColor: titleColor$1,
|
|
38459
38491
|
headingBackgroundColor: headingBackgroundColor,
|
|
38460
38492
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -38581,7 +38613,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
38581
38613
|
}, children))));
|
|
38582
38614
|
};
|
|
38583
38615
|
|
|
38584
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
38616
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$B);
|
|
38585
38617
|
|
|
38586
38618
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
38587
38619
|
var themeValues = _ref.themeValues;
|
|
@@ -38842,8 +38874,8 @@ var EditableListItemControls = styled.div.withConfig({
|
|
|
38842
38874
|
componentId: "sc-10ehkz7-1"
|
|
38843
38875
|
})(["display:flex;justify-content:space-evenly;align-items:center;"]);
|
|
38844
38876
|
|
|
38845
|
-
var ACTIVE
|
|
38846
|
-
var EXPIRED
|
|
38877
|
+
var ACTIVE = "ACTIVE";
|
|
38878
|
+
var EXPIRED = "EXPIRED";
|
|
38847
38879
|
|
|
38848
38880
|
var EditableList = function EditableList(_ref) {
|
|
38849
38881
|
var _ref$title = _ref.title,
|
|
@@ -38900,13 +38932,13 @@ var EditableList = function EditableList(_ref) {
|
|
|
38900
38932
|
modalOpen = _useState2[0],
|
|
38901
38933
|
toggleModal = _useState2[1];
|
|
38902
38934
|
|
|
38903
|
-
var expiredItem = (_item$expirationStatu = item === null || item === void 0 ? void 0 : item.expirationStatus) !== null && _item$expirationStatu !== void 0 ? _item$expirationStatu : ACTIVE
|
|
38935
|
+
var expiredItem = (_item$expirationStatu = item === null || item === void 0 ? void 0 : item.expirationStatus) !== null && _item$expirationStatu !== void 0 ? _item$expirationStatu : ACTIVE;
|
|
38904
38936
|
return /*#__PURE__*/React.createElement(EditableListItem, {
|
|
38905
38937
|
listItemSize: !!item.id && autoPayMethods !== null && autoPayMethods !== void 0 && autoPayMethods.some(function (methodID) {
|
|
38906
38938
|
return methodID === item.id;
|
|
38907
38939
|
}) ? "big" : listItemSize,
|
|
38908
38940
|
key: item.id || item,
|
|
38909
|
-
disabled: expiredItem === EXPIRED
|
|
38941
|
+
disabled: expiredItem === EXPIRED
|
|
38910
38942
|
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
38911
38943
|
variant: "p",
|
|
38912
38944
|
color: CHARADE_GREY
|
|
@@ -39167,7 +39199,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
39167
39199
|
|
|
39168
39200
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
39169
39201
|
var subfooterBackgroundColor = STORM_GREY;
|
|
39170
|
-
var fallbackValues$
|
|
39202
|
+
var fallbackValues$C = {
|
|
39171
39203
|
footerBackgroundColor: footerBackgroundColor,
|
|
39172
39204
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
39173
39205
|
};
|
|
@@ -39199,7 +39231,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
39199
39231
|
}));
|
|
39200
39232
|
};
|
|
39201
39233
|
|
|
39202
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
39234
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$C);
|
|
39203
39235
|
|
|
39204
39236
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
39205
39237
|
var _EmailErrorMessages;
|
|
@@ -39249,10 +39281,10 @@ ForgotPasswordForm.reducer = reducer$4;
|
|
|
39249
39281
|
ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
|
|
39250
39282
|
ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
39251
39283
|
|
|
39252
|
-
var textColor$
|
|
39284
|
+
var textColor$4 = "#ffffff";
|
|
39253
39285
|
var backgroundColor$7 = "#182848";
|
|
39254
|
-
var fallbackValues$
|
|
39255
|
-
textColor: textColor$
|
|
39286
|
+
var fallbackValues$D = {
|
|
39287
|
+
textColor: textColor$4,
|
|
39256
39288
|
backgroundColor: backgroundColor$7
|
|
39257
39289
|
};
|
|
39258
39290
|
|
|
@@ -39308,7 +39340,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
39308
39340
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
39309
39341
|
};
|
|
39310
39342
|
|
|
39311
|
-
var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
39343
|
+
var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$D));
|
|
39312
39344
|
|
|
39313
39345
|
var AccountBillIcon = function AccountBillIcon() {
|
|
39314
39346
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -44460,7 +44492,7 @@ var backgroundColor$8 = {
|
|
|
44460
44492
|
largeTitle: WHITE,
|
|
44461
44493
|
small: WHITE
|
|
44462
44494
|
};
|
|
44463
|
-
var fallbackValues$
|
|
44495
|
+
var fallbackValues$E = {
|
|
44464
44496
|
fontSize: fontSize$9,
|
|
44465
44497
|
fontWeight: fontWeight$5,
|
|
44466
44498
|
fontColor: fontColor,
|
|
@@ -44519,7 +44551,7 @@ var Module = function Module(_ref) {
|
|
|
44519
44551
|
}, children)));
|
|
44520
44552
|
};
|
|
44521
44553
|
|
|
44522
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
44554
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$E, "default"));
|
|
44523
44555
|
|
|
44524
44556
|
var backgroundColor$9 = {
|
|
44525
44557
|
profile: "#3b414d",
|
|
@@ -44529,7 +44561,7 @@ var shadowColor = {
|
|
|
44529
44561
|
profile: "#292A33",
|
|
44530
44562
|
cms: "#292A33"
|
|
44531
44563
|
};
|
|
44532
|
-
var fallbackValues$
|
|
44564
|
+
var fallbackValues$F = {
|
|
44533
44565
|
backgroundColor: backgroundColor$9,
|
|
44534
44566
|
shadowColor: shadowColor
|
|
44535
44567
|
};
|
|
@@ -44570,7 +44602,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
44570
44602
|
}, menuContent));
|
|
44571
44603
|
};
|
|
44572
44604
|
|
|
44573
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
44605
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$F, "profile");
|
|
44574
44606
|
|
|
44575
44607
|
var menu = posed.div({
|
|
44576
44608
|
invisible: {
|
|
@@ -44626,7 +44658,11 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
44626
44658
|
}, menuContent));
|
|
44627
44659
|
};
|
|
44628
44660
|
|
|
44629
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
44661
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$F, "profile");
|
|
44662
|
+
|
|
44663
|
+
var ACH_METHOD = "BANK_ACCOUNT";
|
|
44664
|
+
var CC_METHOD = "CREDIT_CARD";
|
|
44665
|
+
var CASH_METHOD = "CASH";
|
|
44630
44666
|
|
|
44631
44667
|
var IconsModule = function IconsModule(_ref) {
|
|
44632
44668
|
var icon = _ref.icon,
|
|
@@ -44683,7 +44719,7 @@ var activeColor$7 = "#0E506D";
|
|
|
44683
44719
|
var linkColor$4 = "#3176AA";
|
|
44684
44720
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
44685
44721
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
44686
|
-
var fallbackValues$
|
|
44722
|
+
var fallbackValues$G = {
|
|
44687
44723
|
color: color$a,
|
|
44688
44724
|
hoverColor: hoverColor$5,
|
|
44689
44725
|
activeColor: activeColor$7,
|
|
@@ -44707,13 +44743,27 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44707
44743
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
44708
44744
|
nextAutopayDate = _ref.nextAutopayDate,
|
|
44709
44745
|
dueDate = _ref.dueDate,
|
|
44710
|
-
inactive = _ref.inactive
|
|
44711
|
-
|
|
44746
|
+
inactive = _ref.inactive,
|
|
44747
|
+
description = _ref.description,
|
|
44748
|
+
subDescription = _ref.subDescription,
|
|
44749
|
+
allowedPaymentInstruments = _ref.allowedPaymentInstruments;
|
|
44750
|
+
|
|
44751
|
+
var generateMethodNeededText = function generateMethodNeededText(planText, allowedPaymentInstruments) {
|
|
44752
|
+
var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
|
|
44753
|
+
var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
|
|
44754
|
+
var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
|
|
44755
|
+
return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address in your profile. Do you want to save these now?");
|
|
44756
|
+
};
|
|
44757
|
+
|
|
44758
|
+
var plan = isPaymentPlan ? "your payment plan" : "autopay";
|
|
44759
|
+
var shortPlan = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
44760
|
+
var deactivateText = "deactivate ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
|
|
44761
|
+
var activateText = "Set Up ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
|
|
44712
44762
|
var nextDate = dueDate || nextAutopayDate;
|
|
44713
44763
|
var modalExtraProps = {
|
|
44714
|
-
modalHeaderText: autoPayActive ?
|
|
44715
|
-
modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(
|
|
44716
|
-
continueButtonText: autoPayActive ? "Disable ".concat(
|
|
44764
|
+
modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
|
|
44765
|
+
modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(plan, "? ").concat(!inactive && nextDate ? "Your next payment will be due on ".concat(nextDate, ".") : "") : generateMethodNeededText(plan, allowedPaymentInstruments),
|
|
44766
|
+
continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add to Profile",
|
|
44717
44767
|
useDangerButton: autoPayActive,
|
|
44718
44768
|
continueAction: autoPayActive ? function () {
|
|
44719
44769
|
deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
|
|
@@ -44729,7 +44779,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44729
44779
|
case "secondary":
|
|
44730
44780
|
{
|
|
44731
44781
|
return /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
44732
|
-
text: autoPayActive ? "Turn off ".concat(
|
|
44782
|
+
text: autoPayActive ? "Turn off ".concat(shortPlan) : "Set Up ".concat(shortPlan),
|
|
44733
44783
|
variant: "secondary",
|
|
44734
44784
|
action: function action() {
|
|
44735
44785
|
toggleModal(true);
|
|
@@ -44742,7 +44792,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44742
44792
|
case "tertiary":
|
|
44743
44793
|
{
|
|
44744
44794
|
return /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
44745
|
-
text: autoPayActive ? "Manage ".concat(
|
|
44795
|
+
text: autoPayActive ? "Manage ".concat(shortPlan) : "Set Up ".concat(shortPlan),
|
|
44746
44796
|
variant: "tertiary",
|
|
44747
44797
|
action: function action() {
|
|
44748
44798
|
toggleModal(true);
|
|
@@ -44774,12 +44824,12 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44774
44824
|
e.key === "Enter" && toggleModal(true);
|
|
44775
44825
|
},
|
|
44776
44826
|
tabIndex: "0",
|
|
44777
|
-
dataQa: "".concat(
|
|
44827
|
+
dataQa: "".concat(shortPlan, " On"),
|
|
44778
44828
|
color: SEA_GREEN,
|
|
44779
44829
|
weight: themeValues.fontWeight,
|
|
44780
44830
|
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
44781
44831
|
extraStyles: "padding-left: 0.25rem;"
|
|
44782
|
-
}, "".concat(
|
|
44832
|
+
}, "".concat(shortPlan, " ").concat(nextAutopayDate))));
|
|
44783
44833
|
}
|
|
44784
44834
|
}
|
|
44785
44835
|
};
|
|
@@ -44795,7 +44845,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44795
44845
|
}, modalExtraProps), renderAutoPayControl());
|
|
44796
44846
|
};
|
|
44797
44847
|
|
|
44798
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
44848
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$G);
|
|
44799
44849
|
|
|
44800
44850
|
var AmountModule = function AmountModule(_ref) {
|
|
44801
44851
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -44806,7 +44856,10 @@ var AmountModule = function AmountModule(_ref) {
|
|
|
44806
44856
|
autoPaySchedule = _ref.autoPaySchedule,
|
|
44807
44857
|
paymentPlanSchedule = _ref.paymentPlanSchedule,
|
|
44808
44858
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
44809
|
-
nextAutopayDate = _ref.nextAutopayDate
|
|
44859
|
+
nextAutopayDate = _ref.nextAutopayDate,
|
|
44860
|
+
description = _ref.description,
|
|
44861
|
+
subDescription = _ref.subDescription,
|
|
44862
|
+
allowedPaymentInstruments = _ref.allowedPaymentInstruments;
|
|
44810
44863
|
|
|
44811
44864
|
var _useState = useState(false),
|
|
44812
44865
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -44835,7 +44888,10 @@ var AmountModule = function AmountModule(_ref) {
|
|
|
44835
44888
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
44836
44889
|
isPaymentPlan: isPaymentPlan,
|
|
44837
44890
|
nextAutopayDate: nextAutopayDate,
|
|
44838
|
-
controlType: "link"
|
|
44891
|
+
controlType: "link",
|
|
44892
|
+
description: description,
|
|
44893
|
+
subDescription: subDescription,
|
|
44894
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
44839
44895
|
})));
|
|
44840
44896
|
};
|
|
44841
44897
|
|
|
@@ -44854,7 +44910,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
44854
44910
|
isPaymentPlan = _ref.isPaymentPlan,
|
|
44855
44911
|
nextAutopayDate = _ref.nextAutopayDate,
|
|
44856
44912
|
obligationAssocID = _ref.obligationAssocID,
|
|
44857
|
-
dueDate = _ref.dueDate
|
|
44913
|
+
dueDate = _ref.dueDate,
|
|
44914
|
+
description = _ref.description,
|
|
44915
|
+
subDescription = _ref.subDescription,
|
|
44916
|
+
allowedPaymentInstruments = _ref.allowedPaymentInstruments;
|
|
44858
44917
|
var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
44859
44918
|
|
|
44860
44919
|
var _useState = useState(false),
|
|
@@ -44910,7 +44969,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
44910
44969
|
autoPaySchedule: autoPaySchedule,
|
|
44911
44970
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
44912
44971
|
isPaymentPlan: isPaymentPlan,
|
|
44913
|
-
nextAutopayDate: nextAutopayDate
|
|
44972
|
+
nextAutopayDate: nextAutopayDate,
|
|
44973
|
+
description: description,
|
|
44974
|
+
subDescription: subDescription,
|
|
44975
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
44914
44976
|
}))), /*#__PURE__*/React.createElement(Box, {
|
|
44915
44977
|
padding: isMobile ? "16px" : "0"
|
|
44916
44978
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
@@ -44950,7 +45012,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
44950
45012
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
44951
45013
|
isPaymentPlan: isPaymentPlan,
|
|
44952
45014
|
nextAutopayDate: nextAutopayDate,
|
|
44953
|
-
dueDate: dueDate
|
|
45015
|
+
dueDate: dueDate,
|
|
45016
|
+
description: description,
|
|
45017
|
+
subDescription: subDescription,
|
|
45018
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
44954
45019
|
})), !isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
44955
45020
|
padding: "0"
|
|
44956
45021
|
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
@@ -45040,7 +45105,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
45040
45105
|
dueDate = _ref.dueDate,
|
|
45041
45106
|
agencyName = _ref.agencyName,
|
|
45042
45107
|
configType = _ref.configType,
|
|
45043
|
-
actions = _ref.actions
|
|
45108
|
+
actions = _ref.actions,
|
|
45109
|
+
description = _ref.description,
|
|
45110
|
+
subDescription = _ref.subDescription,
|
|
45111
|
+
allowedPaymentInstruments = _ref.allowedPaymentInstruments;
|
|
45044
45112
|
|
|
45045
45113
|
var _useState = useState(false),
|
|
45046
45114
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -45079,7 +45147,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
|
|
|
45079
45147
|
obligationAssocID: obligationAssocID,
|
|
45080
45148
|
dueDate: dueDate,
|
|
45081
45149
|
controlType: "secondary",
|
|
45082
|
-
inactive: true
|
|
45150
|
+
inactive: true,
|
|
45151
|
+
description: description,
|
|
45152
|
+
subDescription: subDescription,
|
|
45153
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45083
45154
|
})), /*#__PURE__*/React.createElement(Box, {
|
|
45084
45155
|
padding: "0",
|
|
45085
45156
|
extraStyles: "flex-grow: 1;"
|
|
@@ -45121,7 +45192,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
45121
45192
|
};
|
|
45122
45193
|
|
|
45123
45194
|
var Obligation = function Obligation(_ref) {
|
|
45124
|
-
var _firstObligation$cust
|
|
45195
|
+
var _obligations$, _firstObligation$cust;
|
|
45125
45196
|
|
|
45126
45197
|
var config = _ref.config,
|
|
45127
45198
|
obligations = _ref.obligations,
|
|
@@ -45156,7 +45227,13 @@ var Obligation = function Obligation(_ref) {
|
|
|
45156
45227
|
The top level desc/subdesc for all obligations in a collection is the same
|
|
45157
45228
|
(Collection accounts look different in the Account Details page)
|
|
45158
45229
|
*/
|
|
45159
|
-
var firstObligation = obligations[0];
|
|
45230
|
+
var firstObligation = (_obligations$ = obligations === null || obligations === void 0 ? void 0 : obligations[0]) !== null && _obligations$ !== void 0 ? _obligations$ : {};
|
|
45231
|
+
var _firstObligation$allo = firstObligation.allowedPaymentInstruments,
|
|
45232
|
+
allowedPaymentInstruments = _firstObligation$allo === void 0 ? [CASH_METHOD, CC_METHOD, ACH_METHOD] : _firstObligation$allo,
|
|
45233
|
+
_firstObligation$desc = firstObligation.description,
|
|
45234
|
+
description = _firstObligation$desc === void 0 ? "Account" : _firstObligation$desc,
|
|
45235
|
+
_firstObligation$subD = firstObligation.subDescription,
|
|
45236
|
+
subDescription = _firstObligation$subD === void 0 ? obligationAssocID : _firstObligation$subD;
|
|
45160
45237
|
var customAttributes = (_firstObligation$cust = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.customAttributes) !== null && _firstObligation$cust !== void 0 ? _firstObligation$cust : {};
|
|
45161
45238
|
var boxShadowValue = "0px 2px 4px rgba(41, 42, 51, 0.1), 0px 1px 1px 2px rgba(41, 42, 51, 0.1);";
|
|
45162
45239
|
var activeObligation = /*#__PURE__*/React.createElement(Box, {
|
|
@@ -45164,7 +45241,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
45164
45241
|
borderRadius: "4px",
|
|
45165
45242
|
boxShadow: boxShadowValue,
|
|
45166
45243
|
as: "section",
|
|
45167
|
-
"aria-label": "".concat(
|
|
45244
|
+
"aria-label": "".concat(description, " - ").concat(subDescription),
|
|
45168
45245
|
border: "1px solid ".concat(GRECIAN_GREY),
|
|
45169
45246
|
borderWidthOverride: "1px 0 0 0"
|
|
45170
45247
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
@@ -45193,8 +45270,8 @@ var Obligation = function Obligation(_ref) {
|
|
|
45193
45270
|
iconValue: config.iconValue,
|
|
45194
45271
|
customAttributes: customAttributes
|
|
45195
45272
|
}), /*#__PURE__*/React.createElement(TitleModule, {
|
|
45196
|
-
title:
|
|
45197
|
-
subtitle:
|
|
45273
|
+
title: description,
|
|
45274
|
+
subtitle: subDescription,
|
|
45198
45275
|
titleColor: BRIGHT_GREY,
|
|
45199
45276
|
isMobile: isMobile
|
|
45200
45277
|
}))), !isMobile && /*#__PURE__*/React.createElement(AmountModule, {
|
|
@@ -45208,7 +45285,10 @@ var Obligation = function Obligation(_ref) {
|
|
|
45208
45285
|
autoPaySchedule: autoPaySchedule,
|
|
45209
45286
|
paymentPlanSchedule: paymentPlanSchedule,
|
|
45210
45287
|
isPaymentPlan: isPaymentPlan,
|
|
45211
|
-
nextAutopayDate: nextAutopayDate
|
|
45288
|
+
nextAutopayDate: nextAutopayDate,
|
|
45289
|
+
description: description,
|
|
45290
|
+
subDescription: subDescription,
|
|
45291
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45212
45292
|
}))), !isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
|
|
45213
45293
|
obligations: obligations,
|
|
45214
45294
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -45223,7 +45303,10 @@ var Obligation = function Obligation(_ref) {
|
|
|
45223
45303
|
isMobile: isMobile,
|
|
45224
45304
|
isPaymentPlan: isPaymentPlan,
|
|
45225
45305
|
nextAutopayDate: nextAutopayDate,
|
|
45226
|
-
obligationAssocID: obligationAssocID
|
|
45306
|
+
obligationAssocID: obligationAssocID,
|
|
45307
|
+
description: description,
|
|
45308
|
+
subDescription: subDescription,
|
|
45309
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45227
45310
|
}))), isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
|
|
45228
45311
|
obligations: obligations,
|
|
45229
45312
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -45238,7 +45321,10 @@ var Obligation = function Obligation(_ref) {
|
|
|
45238
45321
|
isMobile: isMobile,
|
|
45239
45322
|
isPaymentPlan: isPaymentPlan,
|
|
45240
45323
|
nextAutopayDate: nextAutopayDate,
|
|
45241
|
-
obligationAssocID: obligationAssocID
|
|
45324
|
+
obligationAssocID: obligationAssocID,
|
|
45325
|
+
description: description,
|
|
45326
|
+
subDescription: subDescription,
|
|
45327
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45242
45328
|
}));
|
|
45243
45329
|
var inactiveObligation = /*#__PURE__*/React.createElement(Box, {
|
|
45244
45330
|
padding: "0",
|
|
@@ -45291,7 +45377,10 @@ var Obligation = function Obligation(_ref) {
|
|
|
45291
45377
|
obligationAssocID: obligationAssocID,
|
|
45292
45378
|
dueDate: dueDate,
|
|
45293
45379
|
agencyName: agencyName,
|
|
45294
|
-
configType: config.type
|
|
45380
|
+
configType: config.type,
|
|
45381
|
+
description: description,
|
|
45382
|
+
subDescription: subDescription,
|
|
45383
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45295
45384
|
}))), isMobile && /*#__PURE__*/React.createElement(InactiveControlsModule, {
|
|
45296
45385
|
obligations: obligations,
|
|
45297
45386
|
autoPayEnabled: autoPayEnabled,
|
|
@@ -45305,7 +45394,10 @@ var Obligation = function Obligation(_ref) {
|
|
|
45305
45394
|
obligationAssocID: obligationAssocID,
|
|
45306
45395
|
dueDate: dueDate,
|
|
45307
45396
|
agencyName: agencyName,
|
|
45308
|
-
configType: config.type
|
|
45397
|
+
configType: config.type,
|
|
45398
|
+
description: description,
|
|
45399
|
+
subDescription: subDescription,
|
|
45400
|
+
allowedPaymentInstruments: allowedPaymentInstruments
|
|
45309
45401
|
}))));
|
|
45310
45402
|
return inactive ? inactiveObligation : activeObligation;
|
|
45311
45403
|
};
|
|
@@ -45607,7 +45699,7 @@ var labeledAmountTotal = {
|
|
|
45607
45699
|
"default": "h6",
|
|
45608
45700
|
small: "p"
|
|
45609
45701
|
};
|
|
45610
|
-
var fallbackValues$
|
|
45702
|
+
var fallbackValues$H = {
|
|
45611
45703
|
backgroundColor: backgroundColor$a,
|
|
45612
45704
|
lineItem: lineItem,
|
|
45613
45705
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -45858,7 +45950,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
45858
45950
|
});
|
|
45859
45951
|
};
|
|
45860
45952
|
|
|
45861
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
45953
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$H, "default");
|
|
45862
45954
|
|
|
45863
45955
|
var linkColor$5 = {
|
|
45864
45956
|
"default": "#3176AA"
|
|
@@ -45875,7 +45967,7 @@ var fontWeight$7 = {
|
|
|
45875
45967
|
var modalLinkHoverFocus$1 = {
|
|
45876
45968
|
"default": "outline: none; text-decoration: underline;"
|
|
45877
45969
|
};
|
|
45878
|
-
var fallbackValues$
|
|
45970
|
+
var fallbackValues$I = {
|
|
45879
45971
|
linkColor: linkColor$5,
|
|
45880
45972
|
fontSize: fontSize$a,
|
|
45881
45973
|
lineHeight: lineHeight$4,
|
|
@@ -45934,7 +46026,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
45934
46026
|
}, link));
|
|
45935
46027
|
};
|
|
45936
46028
|
|
|
45937
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
46029
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$I, "default");
|
|
45938
46030
|
|
|
45939
46031
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
45940
46032
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -46530,7 +46622,7 @@ var RadioGroup = function RadioGroup(_ref) {
|
|
|
46530
46622
|
groupName: groupName,
|
|
46531
46623
|
setValue: setValue,
|
|
46532
46624
|
handleChange: handleChange,
|
|
46533
|
-
"aria-invalid": field.dirty && field.hasErrors || field.hasErrors
|
|
46625
|
+
"aria-invalid": field.dirty && field.hasErrors || field.hasErrors && showErrors
|
|
46534
46626
|
}));
|
|
46535
46627
|
})));
|
|
46536
46628
|
};
|
|
@@ -46540,7 +46632,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
46540
46632
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
46541
46633
|
var borderColor$3 = "".concat(GREY_CHATEAU);
|
|
46542
46634
|
var focusStyles = "outline: none;";
|
|
46543
|
-
var fallbackValues$
|
|
46635
|
+
var fallbackValues$J = {
|
|
46544
46636
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
46545
46637
|
headingDisabledColor: headingDisabledColor,
|
|
46546
46638
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -46557,7 +46649,8 @@ var fallbackValues$I = {
|
|
|
46557
46649
|
hideRadioButton: boolean, (keeps section displayed but hides radio and disables open/close function),
|
|
46558
46650
|
hidden: boolean, (hides section entirely)
|
|
46559
46651
|
dataQa: string,
|
|
46560
|
-
content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work)
|
|
46652
|
+
content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work),
|
|
46653
|
+
rightTitleContent: <React Component(s)> (rendered on the very right of the title section, use to supplement "rightIcons" with text, as in expired CC status, or render other custom content)
|
|
46561
46654
|
}
|
|
46562
46655
|
|
|
46563
46656
|
Also takes an "openSection" which should equal the id of the section that should be open
|
|
@@ -46570,10 +46663,6 @@ var fallbackValues$I = {
|
|
|
46570
46663
|
|
|
46571
46664
|
*/
|
|
46572
46665
|
|
|
46573
|
-
var ACTIVE$2 = "ACTIVE";
|
|
46574
|
-
var EXPIRING_SOON$1 = "EXPIRING_SOON";
|
|
46575
|
-
var EXPIRED$2 = "EXPIRED";
|
|
46576
|
-
|
|
46577
46666
|
var RadioSection = function RadioSection(_ref) {
|
|
46578
46667
|
var themeValues = _ref.themeValues,
|
|
46579
46668
|
isMobile = _ref.isMobile,
|
|
@@ -46596,34 +46685,6 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46596
46685
|
}
|
|
46597
46686
|
};
|
|
46598
46687
|
|
|
46599
|
-
var renderCardStatus = function renderCardStatus(item) {
|
|
46600
|
-
var expirationStatus = item.expirationStatus,
|
|
46601
|
-
expireDate = item.expireDate;
|
|
46602
|
-
|
|
46603
|
-
switch (expirationStatus) {
|
|
46604
|
-
case ACTIVE$2:
|
|
46605
|
-
return /*#__PURE__*/React.createElement(Text$1, {
|
|
46606
|
-
variant: "pXS",
|
|
46607
|
-
color: ASH_GREY,
|
|
46608
|
-
extraStyles: "text-align: right;"
|
|
46609
|
-
}, "Exp Date ", expireDate);
|
|
46610
|
-
|
|
46611
|
-
case EXPIRING_SOON$1:
|
|
46612
|
-
return /*#__PURE__*/React.createElement(Text$1, {
|
|
46613
|
-
variant: "pXS",
|
|
46614
|
-
color: FIRE_YELLOW,
|
|
46615
|
-
extraStyles: "text-align: right;"
|
|
46616
|
-
}, "Expiring Soon ", expireDate);
|
|
46617
|
-
|
|
46618
|
-
case EXPIRED$2:
|
|
46619
|
-
return /*#__PURE__*/React.createElement(Text$1, {
|
|
46620
|
-
variant: "pXS",
|
|
46621
|
-
color: ASH_GREY,
|
|
46622
|
-
extraStyles: "text-align: right;"
|
|
46623
|
-
}, "Expired");
|
|
46624
|
-
}
|
|
46625
|
-
};
|
|
46626
|
-
|
|
46627
46688
|
var wrapper = {
|
|
46628
46689
|
open: {
|
|
46629
46690
|
height: openHeight,
|
|
@@ -46677,13 +46738,13 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46677
46738
|
return /*#__PURE__*/React.createElement(Motion, {
|
|
46678
46739
|
tabIndex: section.hideRadioButton || section.disabled ? "-1" : "0",
|
|
46679
46740
|
onKeyDown: function onKeyDown(e) {
|
|
46680
|
-
return handleKeyDown(section.id, e);
|
|
46741
|
+
return !section.disabled && handleKeyDown(section.id, e);
|
|
46681
46742
|
},
|
|
46682
46743
|
onFocus: function onFocus() {
|
|
46683
|
-
return setFocused(section.id);
|
|
46744
|
+
return !section.disabled && setFocused(section.id);
|
|
46684
46745
|
},
|
|
46685
46746
|
onBlur: function onBlur() {
|
|
46686
|
-
return setFocused(null);
|
|
46747
|
+
return !section.disabled && setFocused(null);
|
|
46687
46748
|
},
|
|
46688
46749
|
hoverStyles: themeValues.focusStyles,
|
|
46689
46750
|
animate: openSection === section.id ? "open" : "closed",
|
|
@@ -46698,7 +46759,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46698
46759
|
onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
|
|
46699
46760
|
return toggleOpenSection(section.id);
|
|
46700
46761
|
},
|
|
46701
|
-
onTouchEnd: isMobile && supportsTouch
|
|
46762
|
+
onTouchEnd: isMobile && supportsTouch && !section.disabled ? function () {
|
|
46702
46763
|
return toggleOpenSection(section.id);
|
|
46703
46764
|
} : noop,
|
|
46704
46765
|
key: "header-".concat(section.id),
|
|
@@ -46743,7 +46804,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46743
46804
|
isMobile: isMobile,
|
|
46744
46805
|
alt: icon.altText
|
|
46745
46806
|
});
|
|
46746
|
-
})), section.
|
|
46807
|
+
})), section.rightTitleContent && /*#__PURE__*/React.createElement(Fragment$1, null, rightTitleContent))), /*#__PURE__*/React.createElement(AnimatePresence, {
|
|
46747
46808
|
initial: false
|
|
46748
46809
|
}, openSection === section.id && /*#__PURE__*/React.createElement(Motion, {
|
|
46749
46810
|
key: "content-".concat(section.id),
|
|
@@ -46759,7 +46820,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46759
46820
|
})));
|
|
46760
46821
|
};
|
|
46761
46822
|
|
|
46762
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
46823
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$J);
|
|
46763
46824
|
|
|
46764
46825
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
46765
46826
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -47056,7 +47117,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
47056
47117
|
var activeTabBackground = "#FFFFFF";
|
|
47057
47118
|
var activeTabAccent = "#15749D";
|
|
47058
47119
|
var activeTabHover = "#B8D5E1";
|
|
47059
|
-
var fallbackValues$
|
|
47120
|
+
var fallbackValues$K = {
|
|
47060
47121
|
activeTabBackground: activeTabBackground,
|
|
47061
47122
|
activeTabAccent: activeTabAccent,
|
|
47062
47123
|
activeTabHover: activeTabHover
|
|
@@ -47135,12 +47196,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
47135
47196
|
}))));
|
|
47136
47197
|
};
|
|
47137
47198
|
|
|
47138
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
47199
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$K);
|
|
47139
47200
|
|
|
47140
47201
|
var activeTabBackground$1 = "#FFFFFF";
|
|
47141
47202
|
var activeTabAccent$1 = "#15749D";
|
|
47142
47203
|
var activeTabHover$1 = "#B8D5E1";
|
|
47143
|
-
var fallbackValues$
|
|
47204
|
+
var fallbackValues$L = {
|
|
47144
47205
|
activeTabBackground: activeTabBackground$1,
|
|
47145
47206
|
activeTabAccent: activeTabAccent$1,
|
|
47146
47207
|
activeTabHover: activeTabHover$1
|
|
@@ -47196,7 +47257,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
47196
47257
|
})));
|
|
47197
47258
|
};
|
|
47198
47259
|
|
|
47199
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
47260
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$L);
|
|
47200
47261
|
|
|
47201
47262
|
var backgroundColor$b = {
|
|
47202
47263
|
"default": "#ffffff",
|
|
@@ -47227,7 +47288,7 @@ var modalLinkHoverFocus$2 = {
|
|
|
47227
47288
|
"default": standardInteractionStyles,
|
|
47228
47289
|
footer: standardInteractionStyles
|
|
47229
47290
|
};
|
|
47230
|
-
var fallbackValues$
|
|
47291
|
+
var fallbackValues$M = {
|
|
47231
47292
|
backgroundColor: backgroundColor$b,
|
|
47232
47293
|
linkColor: linkColor$6,
|
|
47233
47294
|
border: border$3,
|
|
@@ -47289,7 +47350,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47289
47350
|
}, link));
|
|
47290
47351
|
};
|
|
47291
47352
|
|
|
47292
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
47353
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$M, "default");
|
|
47293
47354
|
|
|
47294
47355
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
47295
47356
|
var onCheck = _ref.onCheck,
|
|
@@ -47364,7 +47425,7 @@ var fontColor$1 = WHITE;
|
|
|
47364
47425
|
var textAlign$1 = "left";
|
|
47365
47426
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
47366
47427
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
47367
|
-
var fallbackValues$
|
|
47428
|
+
var fallbackValues$N = {
|
|
47368
47429
|
fontWeight: fontWeight$9,
|
|
47369
47430
|
fontColor: fontColor$1,
|
|
47370
47431
|
textAlign: textAlign$1,
|
|
@@ -47411,7 +47472,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
47411
47472
|
})))));
|
|
47412
47473
|
};
|
|
47413
47474
|
|
|
47414
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
47475
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$N));
|
|
47415
47476
|
|
|
47416
47477
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
47417
47478
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -47466,7 +47527,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
47466
47527
|
};
|
|
47467
47528
|
|
|
47468
47529
|
var pageBackground = "#FBFCFD";
|
|
47469
|
-
var fallbackValues$
|
|
47530
|
+
var fallbackValues$O = {
|
|
47470
47531
|
pageBackground: pageBackground
|
|
47471
47532
|
};
|
|
47472
47533
|
|
|
@@ -47513,7 +47574,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
47513
47574
|
})));
|
|
47514
47575
|
};
|
|
47515
47576
|
|
|
47516
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
47577
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$O));
|
|
47517
47578
|
|
|
47518
47579
|
var CenterStack = function CenterStack(_ref) {
|
|
47519
47580
|
var header = _ref.header,
|
|
@@ -47555,7 +47616,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
47555
47616
|
})));
|
|
47556
47617
|
};
|
|
47557
47618
|
|
|
47558
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
47619
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$O));
|
|
47559
47620
|
|
|
47560
47621
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
47561
47622
|
var header = _ref.header,
|
|
@@ -47600,7 +47661,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
47600
47661
|
})));
|
|
47601
47662
|
};
|
|
47602
47663
|
|
|
47603
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
47664
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$O));
|
|
47604
47665
|
|
|
47605
47666
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
47606
47667
|
var header = _ref.header,
|
|
@@ -47654,7 +47715,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
47654
47715
|
})));
|
|
47655
47716
|
};
|
|
47656
47717
|
|
|
47657
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
47718
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$O));
|
|
47658
47719
|
|
|
47659
47720
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
47660
47721
|
var header = _ref.header,
|
|
@@ -47725,7 +47786,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
47725
47786
|
})));
|
|
47726
47787
|
};
|
|
47727
47788
|
|
|
47728
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
47789
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$O));
|
|
47729
47790
|
|
|
47730
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard,
|
|
47791
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
47731
47792
|
//# sourceMappingURL=index.esm.js.map
|