@thecb/components 8.0.3-beta.4 → 8.0.4-beta.10

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 CHANGED
@@ -26812,13 +26812,12 @@ var ProcessingFee = function ProcessingFee(_ref) {
26812
26812
 
26813
26813
  var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$s, "default");
26814
26814
 
26815
-
26816
-
26817
- var index$5 = /*#__PURE__*/Object.freeze({
26818
- __proto__: null,
26819
- colors: colors,
26820
- fontWeights: style_constants
26821
- });
26815
+ var activeColor$5 = MATISSE_BLUE;
26816
+ var inactiveBorderColor = GREY_CHATEAU;
26817
+ var fallbackValues$t = {
26818
+ inactiveBorderColor: inactiveBorderColor,
26819
+ activeColor: activeColor$5
26820
+ };
26822
26821
 
26823
26822
  var HiddenRadioInput = styled__default.input.withConfig({
26824
26823
  displayName: "RadioButtonWithLabel__HiddenRadioInput",
@@ -26827,28 +26826,42 @@ var HiddenRadioInput = styled__default.input.withConfig({
26827
26826
  var Circle = styled__default.div.withConfig({
26828
26827
  displayName: "RadioButtonWithLabel__Circle",
26829
26828
  componentId: "sc-1m9whwg-1"
26830
- })(["flex-shrink:0;margin-right:8px;width:1.5rem;height 1.5rem;border:1px solid ", ";border-radius:50%;box-sizing:border-box;padding:2px;:after{content:\"\";width:100%;height:100%;display:block;background:", ";border-radius:50%;transform:scale(0);}"], GREY_CHATEAU, MATISSE_BLUE);
26829
+ })(["flex-shrink:0;margin-right:8px;width:1.5rem;height 1.5rem;border:", ";border-radius:50%;box-sizing:border-box;padding:2px;:after{content:\"\";width:100%;height:100%;display:block;background:", ";border-radius:50%;transform:scale(0);}"], function (_ref) {
26830
+ var inactiveBorderColor = _ref.inactiveBorderColor;
26831
+ return "1px solid ".concat(inactiveBorderColor);
26832
+ }, function (_ref2) {
26833
+ var activeColor = _ref2.activeColor;
26834
+ return activeColor;
26835
+ });
26831
26836
  var InputAndLabelContainer = styled__default(Cluster).withConfig({
26832
26837
  displayName: "RadioButtonWithLabel__InputAndLabelContainer",
26833
26838
  componentId: "sc-1m9whwg-2"
26834
- })(["overflow:visible;", ":checked + label ", ":after{transform:scale(0.85);transition:transform 0.15s;}", ":checked + label ", "{border:1px solid ", ";}", ":focus + label ", "{{box-shadow:0px 0px 2px 1px ", ";}"], HiddenRadioInput, Circle, HiddenRadioInput, Circle, MATISSE_BLUE, HiddenRadioInput, Circle, MATISSE_BLUE);
26835
-
26836
- var RadioButtonWithLabel = function RadioButtonWithLabel(_ref) {
26837
- var _ref$id = _ref.id,
26838
- id = _ref$id === void 0 ? "" : _ref$id,
26839
- _ref$value = _ref.value,
26840
- value = _ref$value === void 0 ? "" : _ref$value,
26841
- _ref$labelText = _ref.labelText,
26842
- labelText = _ref$labelText === void 0 ? "" : _ref$labelText,
26843
- groupName = _ref.groupName,
26844
- setValue = _ref.setValue,
26845
- ariaInvalid = _ref.ariaInvalid,
26846
- index = _ref.index,
26847
- _ref$handleChange = _ref.handleChange,
26848
- handleChange = _ref$handleChange === void 0 ? noop : _ref$handleChange;
26839
+ })(["overflow:visible;", ":checked + label ", ":after{transform:scale(0.85);transition:transform 0.15s;}", ":checked + label ", "{border:", "}", ":focus + label ", "{{box-shadow:", "}"], HiddenRadioInput, Circle, HiddenRadioInput, Circle, function (_ref3) {
26840
+ var activeColor = _ref3.activeColor;
26841
+ return "1px solid ".concat(activeColor, ";");
26842
+ }, HiddenRadioInput, Circle, function (_ref4) {
26843
+ var activeColor = _ref4.activeColor;
26844
+ return "0px 0px 2px 1px ".concat(activeColor, ";");
26845
+ });
26846
+
26847
+ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
26848
+ var _ref5$id = _ref5.id,
26849
+ id = _ref5$id === void 0 ? "" : _ref5$id,
26850
+ _ref5$value = _ref5.value,
26851
+ value = _ref5$value === void 0 ? "" : _ref5$value,
26852
+ _ref5$labelText = _ref5.labelText,
26853
+ labelText = _ref5$labelText === void 0 ? "" : _ref5$labelText,
26854
+ groupName = _ref5.groupName,
26855
+ setValue = _ref5.setValue,
26856
+ ariaInvalid = _ref5.ariaInvalid,
26857
+ themeValues = _ref5.themeValues,
26858
+ index = _ref5.index,
26859
+ _ref5$handleChange = _ref5.handleChange,
26860
+ handleChange = _ref5$handleChange === void 0 ? noop : _ref5$handleChange;
26849
26861
  return /*#__PURE__*/React__default.createElement(InputAndLabelContainer, {
26850
26862
  align: "center",
26851
- childGap: "0.5rem"
26863
+ childGap: "0.5rem",
26864
+ activeColor: themeValues.activeColor
26852
26865
  }, /*#__PURE__*/React__default.createElement(HiddenRadioInput, {
26853
26866
  "aria-invalid": ariaInvalid,
26854
26867
  style: {
@@ -26867,13 +26880,18 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref) {
26867
26880
  as: "label",
26868
26881
  htmlFor: id,
26869
26882
  extraStyles: "\n font-size: 1rem;\n display: flex; \n width: 100%;\n :hover {\n cursor: pointer;\n }\n "
26870
- }, /*#__PURE__*/React__default.createElement(Circle, null), labelText));
26883
+ }, /*#__PURE__*/React__default.createElement(Circle, {
26884
+ activeColor: themeValues.activeColor,
26885
+ inactiveBorderColor: themeValues.inactiveBorderColor
26886
+ }), labelText));
26871
26887
  };
26872
26888
 
26873
- var activeColor$5 = "".concat(MATISSE_BLUE);
26889
+ var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$t);
26890
+
26891
+ var activeColor$6 = "".concat(MATISSE_BLUE);
26874
26892
  var inactiveColor = "".concat(GREY_CHATEAU);
26875
- var fallbackValues$t = {
26876
- activeColor: activeColor$5,
26893
+ var fallbackValues$u = {
26894
+ activeColor: activeColor$6,
26877
26895
  inactiveColor: inactiveColor
26878
26896
  };
26879
26897
 
@@ -26965,12 +26983,12 @@ var RadioButton$1 = function RadioButton(_ref2) {
26965
26983
  })));
26966
26984
  };
26967
26985
 
26968
- var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$t);
26986
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$u);
26969
26987
 
26970
26988
  var border$2 = {
26971
26989
  "default": "1px solid #caced8"
26972
26990
  };
26973
- var fallbackValues$u = {
26991
+ var fallbackValues$v = {
26974
26992
  border: border$2
26975
26993
  };
26976
26994
 
@@ -27047,7 +27065,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
27047
27065
  }))));
27048
27066
  };
27049
27067
 
27050
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$u, "default");
27068
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$v, "default");
27051
27069
 
27052
27070
  var borderColor$2 = {
27053
27071
  "default": "".concat(GREY_CHATEAU)
@@ -27055,7 +27073,7 @@ var borderColor$2 = {
27055
27073
  var borderSize = {
27056
27074
  "default": "1px"
27057
27075
  };
27058
- var fallbackValues$v = {
27076
+ var fallbackValues$w = {
27059
27077
  borderColor: borderColor$2,
27060
27078
  borderSize: borderSize
27061
27079
  };
@@ -27072,7 +27090,7 @@ var SolidDivider = function SolidDivider(_ref) {
27072
27090
  });
27073
27091
  };
27074
27092
 
27075
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$v, "default");
27093
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$w, "default");
27076
27094
 
27077
27095
  var placeHolderOptionUS = {
27078
27096
  text: "Please select state",
@@ -37656,7 +37674,7 @@ var offBackground = "".concat(REGENT_GREY);
37656
37674
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
37657
37675
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
37658
37676
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
37659
- var fallbackValues$w = {
37677
+ var fallbackValues$x = {
37660
37678
  onBackground: onBackground,
37661
37679
  disabledBackground: disabledBackground,
37662
37680
  white: white,
@@ -37832,7 +37850,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
37832
37850
  }, label))));
37833
37851
  };
37834
37852
 
37835
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$w);
37853
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$x);
37836
37854
 
37837
37855
  var background$1 = "".concat(ATHENS_GREY);
37838
37856
  var white$1 = "".concat(WHITE);
@@ -37881,7 +37899,7 @@ var backgroundColor$5 = WHITE;
37881
37899
  var imageBackgroundColor = INFO_BLUE;
37882
37900
  var headerBackgroundColor = STORM_GREY;
37883
37901
  var headerColor = WHITE;
37884
- var fallbackValues$x = {
37902
+ var fallbackValues$y = {
37885
37903
  backgroundColor: backgroundColor$5,
37886
37904
  imageBackgroundColor: imageBackgroundColor,
37887
37905
  headerBackgroundColor: headerBackgroundColor,
@@ -37905,7 +37923,7 @@ var CardImage = styled__default.img.withConfig({
37905
37923
  var titleColor = BRIGHT_GREY;
37906
37924
  var titleWeight = FONT_WEIGHT_BOLD;
37907
37925
  var textColor$3 = BRIGHT_GREY;
37908
- var fallbackValues$y = {
37926
+ var fallbackValues$z = {
37909
37927
  titleColor: titleColor,
37910
37928
  titleWeight: titleWeight,
37911
37929
  textColor: textColor$3
@@ -37929,7 +37947,7 @@ var CardText = function CardText(_ref) {
37929
37947
  color: themeValues.textColor
37930
37948
  }, text))));
37931
37949
  };
37932
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$y);
37950
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$z);
37933
37951
 
37934
37952
  var CardHeader = function CardHeader(_ref) {
37935
37953
  var backgroundColor = _ref.backgroundColor,
@@ -38006,8 +38024,7 @@ var Card = function Card(_ref) {
38006
38024
  }, Image && !imgSrc && /*#__PURE__*/React__default.createElement(Box, {
38007
38025
  minHeight: imgHeight,
38008
38026
  padding: "0",
38009
- background: themeValues.imageBackgroundColor,
38010
- extraStyles: "background-color: ".concat(themeValues.imageBackgroundColor)
38027
+ background: themeValues.imageBackgroundColor
38011
38028
  }, /*#__PURE__*/React__default.createElement(Cover, {
38012
38029
  minHeight: imgHeight,
38013
38030
  singleChild: true
@@ -38033,14 +38050,14 @@ var Card = function Card(_ref) {
38033
38050
  }), children)))));
38034
38051
  };
38035
38052
 
38036
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$x);
38053
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$y);
38037
38054
 
38038
38055
  var fontFamily$6 = "Public Sans, sans-serif";
38039
- var activeColor$6 = MATISSE_BLUE;
38056
+ var activeColor$7 = MATISSE_BLUE;
38040
38057
  var linkColor$3 = CHARADE_GREY;
38041
- var fallbackValues$z = {
38058
+ var fallbackValues$A = {
38042
38059
  fontFamily: fontFamily$6,
38043
- activeColor: activeColor$6,
38060
+ activeColor: activeColor$7,
38044
38061
  linkColor: linkColor$3
38045
38062
  };
38046
38063
 
@@ -38071,7 +38088,7 @@ var NavTab = function NavTab(_ref) {
38071
38088
  }, label));
38072
38089
  };
38073
38090
 
38074
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$z);
38091
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$A);
38075
38092
 
38076
38093
  var NavTabs = function NavTabs(_ref) {
38077
38094
  var tabsConfig = _ref.tabsConfig,
@@ -38095,6 +38112,14 @@ var NavTabs = function NavTabs(_ref) {
38095
38112
  }, tabs)));
38096
38113
  };
38097
38114
 
38115
+
38116
+
38117
+ var index$5 = /*#__PURE__*/Object.freeze({
38118
+ __proto__: null,
38119
+ colors: colors,
38120
+ fontWeights: style_constants
38121
+ });
38122
+
38098
38123
  var shineFrames = styled.keyframes(["{0{background-position:0 0;}20%{background-position:100% 100%;}100%{background-position:100% 100%;}}"]);
38099
38124
  var LoadingPill = styled__default.div.withConfig({
38100
38125
  displayName: "LoadingPillstyled__LoadingPill",
@@ -38164,7 +38189,7 @@ var TableCell_styled = styled__default.td.withConfig({
38164
38189
 
38165
38190
  var backgroundColor$6 = ALABASTER_WHITE;
38166
38191
  var borderColor$3 = GREY_CHATEAU;
38167
- var fallbackValues$A = {
38192
+ var fallbackValues$B = {
38168
38193
  backgroundColor: backgroundColor$6,
38169
38194
  borderColor: borderColor$3
38170
38195
  };
@@ -38186,7 +38211,7 @@ var StyledTableHead = styled__default.thead.withConfig({
38186
38211
 
38187
38212
  var borderColor$4 = GREY_CHATEAU;
38188
38213
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
38189
- var fallbackValues$B = {
38214
+ var fallbackValues$C = {
38190
38215
  borderColor: borderColor$4,
38191
38216
  hoverBackgroundColor: hoverBackgroundColor$1
38192
38217
  };
@@ -38228,7 +38253,7 @@ var TableRow = function TableRow(_ref) {
38228
38253
  }, props), children);
38229
38254
  };
38230
38255
 
38231
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$B);
38256
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$C);
38232
38257
 
38233
38258
  var TableHead = function TableHead(_ref) {
38234
38259
  var children = _ref.children,
@@ -38244,7 +38269,7 @@ var TableHead = function TableHead(_ref) {
38244
38269
  }, children));
38245
38270
  };
38246
38271
 
38247
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$A);
38272
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$B);
38248
38273
 
38249
38274
  var TableHeading_styled = styled__default.th.withConfig({
38250
38275
  displayName: "TableHeadingstyled",
@@ -40165,7 +40190,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
40165
40190
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40166
40191
 
40167
40192
  var backgroundColor$7 = "#ebeffb";
40168
- var fallbackValues$C = {
40193
+ var fallbackValues$D = {
40169
40194
  backgroundColor: backgroundColor$7
40170
40195
  };
40171
40196
 
@@ -40217,7 +40242,7 @@ var Banner = function Banner(_ref) {
40217
40242
  }, /*#__PURE__*/React__default.createElement(Image, null))));
40218
40243
  };
40219
40244
 
40220
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$C);
40245
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$D);
40221
40246
 
40222
40247
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
40223
40248
  var _newPasswordErrorMess;
@@ -40359,7 +40384,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
40359
40384
  var titleColor$1 = "#292A33";
40360
40385
  var headingBackgroundColor = "transparent";
40361
40386
  var bodyBackgroundColor = "transparent";
40362
- var fallbackValues$D = {
40387
+ var fallbackValues$E = {
40363
40388
  titleColor: titleColor$1,
40364
40389
  headingBackgroundColor: headingBackgroundColor,
40365
40390
  bodyBackgroundColor: bodyBackgroundColor
@@ -40488,7 +40513,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40488
40513
  }, children))));
40489
40514
  };
40490
40515
 
40491
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$D);
40516
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$E);
40492
40517
 
40493
40518
  var ClipboardIcon = function ClipboardIcon(_ref) {
40494
40519
  var themeValues = _ref.themeValues;
@@ -41078,7 +41103,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41078
41103
 
41079
41104
  var footerBackgroundColor = BRIGHT_GREY;
41080
41105
  var subfooterBackgroundColor = STORM_GREY;
41081
- var fallbackValues$E = {
41106
+ var fallbackValues$F = {
41082
41107
  footerBackgroundColor: footerBackgroundColor,
41083
41108
  subfooterBackgroundColor: subfooterBackgroundColor
41084
41109
  };
@@ -41110,7 +41135,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41110
41135
  }));
41111
41136
  };
41112
41137
 
41113
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$E);
41138
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$F);
41114
41139
 
41115
41140
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41116
41141
  var _EmailErrorMessages;
@@ -41162,7 +41187,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41162
41187
 
41163
41188
  var textColor$4 = "#ffffff";
41164
41189
  var backgroundColor$8 = "#182848";
41165
- var fallbackValues$F = {
41190
+ var fallbackValues$G = {
41166
41191
  textColor: textColor$4,
41167
41192
  backgroundColor: backgroundColor$8
41168
41193
  };
@@ -41222,7 +41247,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41222
41247
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41223
41248
  };
41224
41249
 
41225
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$F);
41250
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$G);
41226
41251
 
41227
41252
  var AccountBillIcon = function AccountBillIcon() {
41228
41253
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -46374,7 +46399,7 @@ var backgroundColor$9 = {
46374
46399
  largeTitle: WHITE,
46375
46400
  small: WHITE
46376
46401
  };
46377
- var fallbackValues$G = {
46402
+ var fallbackValues$H = {
46378
46403
  fontSize: fontSize$9,
46379
46404
  fontWeight: fontWeight$5,
46380
46405
  fontColor: fontColor,
@@ -46442,7 +46467,7 @@ var Module = function Module(_ref) {
46442
46467
  }, children)));
46443
46468
  };
46444
46469
 
46445
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
46470
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$H, "default"));
46446
46471
 
46447
46472
  var backgroundColor$a = {
46448
46473
  profile: "#3b414d",
@@ -46452,7 +46477,7 @@ var shadowColor = {
46452
46477
  profile: "#292A33",
46453
46478
  cms: "#292A33"
46454
46479
  };
46455
- var fallbackValues$H = {
46480
+ var fallbackValues$I = {
46456
46481
  backgroundColor: backgroundColor$a,
46457
46482
  shadowColor: shadowColor
46458
46483
  };
@@ -46493,7 +46518,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46493
46518
  }, menuContent));
46494
46519
  };
46495
46520
 
46496
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$H, "profile");
46521
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$I, "profile");
46497
46522
 
46498
46523
  var menu = posed.div({
46499
46524
  invisible: {
@@ -46555,7 +46580,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46555
46580
  }, menuContent));
46556
46581
  };
46557
46582
 
46558
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$H, "profile");
46583
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$I, "profile");
46559
46584
 
46560
46585
  var ACH_METHOD = "BANK_ACCOUNT";
46561
46586
  var CC_METHOD = "CREDIT_CARD";
@@ -46612,14 +46637,14 @@ var TitleModule = function TitleModule(_ref) {
46612
46637
 
46613
46638
  var color$a = "#15749D";
46614
46639
  var hoverColor$5 = "#116285";
46615
- var activeColor$7 = "#0E506D";
46640
+ var activeColor$8 = "#0E506D";
46616
46641
  var linkColor$4 = "#3176AA";
46617
46642
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
46618
46643
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
46619
- var fallbackValues$I = {
46644
+ var fallbackValues$J = {
46620
46645
  color: color$a,
46621
46646
  hoverColor: hoverColor$5,
46622
- activeColor: activeColor$7,
46647
+ activeColor: activeColor$8,
46623
46648
  linkColor: linkColor$4,
46624
46649
  fontWeight: fontWeight$6,
46625
46650
  modalLinkHoverFocus: modalLinkHoverFocus
@@ -46742,7 +46767,7 @@ var AutopayModal = function AutopayModal(_ref) {
46742
46767
  }, modalExtraProps), renderAutoPayControl());
46743
46768
  };
46744
46769
 
46745
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$I);
46770
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$J);
46746
46771
 
46747
46772
  var AmountModule = function AmountModule(_ref) {
46748
46773
  var totalAmountDue = _ref.totalAmountDue,
@@ -47416,9 +47441,9 @@ var arrowColor = WHITE;
47416
47441
  var numberColor = MATISSE_BLUE;
47417
47442
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47418
47443
  var activeBackgroundColor$1 = WHITE;
47419
- var activeColor$8 = MATISSE_BLUE;
47420
- var fallbackValues$J = {
47421
- activeColor: activeColor$8,
47444
+ var activeColor$9 = MATISSE_BLUE;
47445
+ var fallbackValues$K = {
47446
+ activeColor: activeColor$9,
47422
47447
  activeBackgroundColor: activeBackgroundColor$1,
47423
47448
  arrowColor: arrowColor,
47424
47449
  hoverBackgroundColor: hoverBackgroundColor$2,
@@ -47625,7 +47650,7 @@ var Pagination = function Pagination(_ref3) {
47625
47650
  }));
47626
47651
  };
47627
47652
 
47628
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
47653
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$K);
47629
47654
 
47630
47655
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47631
47656
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47709,7 +47734,7 @@ var labeledAmountTotal = {
47709
47734
  "default": "h6",
47710
47735
  small: "p"
47711
47736
  };
47712
- var fallbackValues$K = {
47737
+ var fallbackValues$L = {
47713
47738
  backgroundColor: backgroundColor$b,
47714
47739
  lineItem: lineItem,
47715
47740
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -48029,7 +48054,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48029
48054
  });
48030
48055
  };
48031
48056
 
48032
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$K, "default");
48057
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$L, "default");
48033
48058
 
48034
48059
  var linkColor$5 = {
48035
48060
  "default": "#3176AA"
@@ -48046,7 +48071,7 @@ var fontWeight$7 = {
48046
48071
  var modalLinkHoverFocus$1 = {
48047
48072
  "default": "outline: none; text-decoration: underline;"
48048
48073
  };
48049
- var fallbackValues$L = {
48074
+ var fallbackValues$M = {
48050
48075
  linkColor: linkColor$5,
48051
48076
  fontSize: fontSize$a,
48052
48077
  lineHeight: lineHeight$4,
@@ -48105,7 +48130,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48105
48130
  }, link));
48106
48131
  };
48107
48132
 
48108
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$L, "default");
48133
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$M, "default");
48109
48134
 
48110
48135
  var backgroundColor$c = {
48111
48136
  "default": "#ffffff",
@@ -48136,7 +48161,7 @@ var modalLinkHoverFocus$2 = {
48136
48161
  "default": standardInteractionStyles,
48137
48162
  footer: standardInteractionStyles
48138
48163
  };
48139
- var fallbackValues$M = {
48164
+ var fallbackValues$N = {
48140
48165
  backgroundColor: backgroundColor$c,
48141
48166
  linkColor: linkColor$6,
48142
48167
  border: border$3,
@@ -48201,7 +48226,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48201
48226
  }, link));
48202
48227
  };
48203
48228
 
48204
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$M, "default");
48229
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$N, "default");
48205
48230
 
48206
48231
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48207
48232
  var onCheck = _ref.onCheck,
@@ -48983,7 +49008,7 @@ var RadioGroup = function RadioGroup(_ref) {
48983
49008
  }, Heading !== null && Heading, /*#__PURE__*/React__default.createElement(Stack, {
48984
49009
  childGap: "4px"
48985
49010
  }, config.map(function (c, idx) {
48986
- return /*#__PURE__*/React__default.createElement(RadioButtonWithLabel, _extends({
49011
+ return /*#__PURE__*/React__default.createElement(RadioButtonWithLabel$1, _extends({
48987
49012
  index: idx,
48988
49013
  key: c.id
48989
49014
  }, c, {
@@ -49000,7 +49025,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49000
49025
  var bodyBackgroundColor$1 = "#eeeeee";
49001
49026
  var borderColor$5 = "".concat(GREY_CHATEAU);
49002
49027
  var focusStyles = "outline: none;";
49003
- var fallbackValues$N = {
49028
+ var fallbackValues$O = {
49004
49029
  headingBackgroundColor: headingBackgroundColor$1,
49005
49030
  headingDisabledColor: headingDisabledColor,
49006
49031
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49190,7 +49215,7 @@ var RadioSection = function RadioSection(_ref) {
49190
49215
  })));
49191
49216
  };
49192
49217
 
49193
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$N);
49218
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$O);
49194
49219
 
49195
49220
  var RegistrationForm = function RegistrationForm(_ref) {
49196
49221
  var _emailErrorMessages, _passwordErrorMessage;
@@ -49487,7 +49512,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
49487
49512
  var activeTabBackground = "#FFFFFF";
49488
49513
  var activeTabAccent = "#15749D";
49489
49514
  var activeTabHover = "#B8D5E1";
49490
- var fallbackValues$O = {
49515
+ var fallbackValues$P = {
49491
49516
  activeTabBackground: activeTabBackground,
49492
49517
  activeTabAccent: activeTabAccent,
49493
49518
  activeTabHover: activeTabHover
@@ -49566,12 +49591,12 @@ var Tabs = function Tabs(_ref) {
49566
49591
  }))));
49567
49592
  };
49568
49593
 
49569
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$O);
49594
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$P);
49570
49595
 
49571
49596
  var activeTabBackground$1 = "#FFFFFF";
49572
49597
  var activeTabAccent$1 = "#15749D";
49573
49598
  var activeTabHover$1 = "#B8D5E1";
49574
- var fallbackValues$P = {
49599
+ var fallbackValues$Q = {
49575
49600
  activeTabBackground: activeTabBackground$1,
49576
49601
  activeTabAccent: activeTabAccent$1,
49577
49602
  activeTabHover: activeTabHover$1
@@ -49627,7 +49652,7 @@ var TabSidebar = function TabSidebar(_ref) {
49627
49652
  })));
49628
49653
  };
49629
49654
 
49630
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$P);
49655
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Q);
49631
49656
 
49632
49657
  var Timeout = function Timeout(_ref) {
49633
49658
  var onLogout = _ref.onLogout;
@@ -49671,7 +49696,7 @@ var fontColor$1 = WHITE;
49671
49696
  var textAlign$1 = "left";
49672
49697
  var headerBackgroundColor$1 = BRIGHT_GREY;
49673
49698
  var imageBackgroundColor$1 = MATISSE_BLUE;
49674
- var fallbackValues$Q = {
49699
+ var fallbackValues$R = {
49675
49700
  fontWeight: fontWeight$9,
49676
49701
  fontColor: fontColor$1,
49677
49702
  textAlign: textAlign$1,
@@ -49718,7 +49743,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
49718
49743
  })))));
49719
49744
  };
49720
49745
 
49721
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Q));
49746
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$R));
49722
49747
 
49723
49748
  var WorkflowTile = function WorkflowTile(_ref) {
49724
49749
  var _ref$workflowName = _ref.workflowName,
@@ -49773,7 +49798,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
49773
49798
  };
49774
49799
 
49775
49800
  var pageBackground = "#FBFCFD";
49776
- var fallbackValues$R = {
49801
+ var fallbackValues$S = {
49777
49802
  pageBackground: pageBackground
49778
49803
  };
49779
49804
 
@@ -49822,7 +49847,7 @@ var CenterSingle = function CenterSingle(_ref) {
49822
49847
  })));
49823
49848
  };
49824
49849
 
49825
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$R));
49850
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$S));
49826
49851
 
49827
49852
  var CenterStack = function CenterStack(_ref) {
49828
49853
  var header = _ref.header,
@@ -49864,7 +49889,7 @@ var CenterStack = function CenterStack(_ref) {
49864
49889
  })));
49865
49890
  };
49866
49891
 
49867
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$R));
49892
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$S));
49868
49893
 
49869
49894
  var CenterSingle$2 = function CenterSingle(_ref) {
49870
49895
  var header = _ref.header,
@@ -49909,7 +49934,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
49909
49934
  })));
49910
49935
  };
49911
49936
 
49912
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$R));
49937
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$S));
49913
49938
 
49914
49939
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
49915
49940
  var header = _ref.header,
@@ -49963,7 +49988,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
49963
49988
  })));
49964
49989
  };
49965
49990
 
49966
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$R));
49991
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$S));
49967
49992
 
49968
49993
  var SidebarStackContent = function SidebarStackContent(_ref) {
49969
49994
  var header = _ref.header,
@@ -50034,7 +50059,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50034
50059
  })));
50035
50060
  };
50036
50061
 
50037
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
50062
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$S));
50038
50063
 
50039
50064
  exports.AccountNumberImage = AccountNumberImage;
50040
50065
  exports.AccountsAddIcon = AccountsAddIcon$1;
@@ -50175,7 +50200,7 @@ exports.ProfileImage = ProfileImage;
50175
50200
  exports.PropertiesAddIcon = PropertiesAddIcon$1;
50176
50201
  exports.PropertiesIconSmall = PropertiesIconSmall$1;
50177
50202
  exports.RadioButton = RadioButton$2;
50178
- exports.RadioButtonWithLabel = RadioButtonWithLabel;
50203
+ exports.RadioButtonWithLabel = RadioButtonWithLabel$1;
50179
50204
  exports.RadioGroup = RadioGroup;
50180
50205
  exports.RadioSection = RadioSection$1;
50181
50206
  exports.Reel = Reel;