@thecb/components 7.7.3-beta.5 → 7.7.4-beta.1

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.esm.js CHANGED
@@ -12803,7 +12803,7 @@ var SpinnerIcon = function SpinnerIcon(_ref3) {
12803
12803
  }))))));
12804
12804
  };
12805
12805
 
12806
- var _excluded$h = ["action", "variant", "text", "textWrap", "isLoading", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children"];
12806
+ var _excluded$h = ["action", "children", "contentOverride", "dataQa", "disabledBackgroundColor", "disabledBorderColor", "disabledColor", "extraStyles", "isLoading", "tabIndex", "text", "textExtraStyles", "textWrap", "variant"];
12807
12807
  var rotate$1 = posed.div({
12808
12808
  fixed: {
12809
12809
  rotate: "0deg"
@@ -12857,22 +12857,28 @@ var Spinner = function Spinner(_ref) {
12857
12857
  var ButtonWithAction = function ButtonWithAction(_ref2) {
12858
12858
  var _ref2$action = _ref2.action,
12859
12859
  action = _ref2$action === void 0 ? noop : _ref2$action,
12860
- _ref2$variant = _ref2.variant,
12861
- variant = _ref2$variant === void 0 ? "primary" : _ref2$variant,
12862
- text = _ref2.text,
12863
- _ref2$textWrap = _ref2.textWrap,
12864
- textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
12865
- _ref2$isLoading = _ref2.isLoading,
12866
- isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
12867
- _ref2$dataQa = _ref2.dataQa,
12868
- dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
12869
- textExtraStyles = _ref2.textExtraStyles,
12860
+ children = _ref2.children,
12870
12861
  _ref2$contentOverride = _ref2.contentOverride,
12871
12862
  contentOverride = _ref2$contentOverride === void 0 ? false : _ref2$contentOverride,
12863
+ _ref2$dataQa = _ref2.dataQa,
12864
+ dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
12865
+ _ref2$disabledBackgro = _ref2.disabledBackgroundColor,
12866
+ disabledBackgroundColor = _ref2$disabledBackgro === void 0 ? "#6D717E" : _ref2$disabledBackgro,
12867
+ _ref2$disabledBorderC = _ref2.disabledBorderColor,
12868
+ disabledBorderColor = _ref2$disabledBorderC === void 0 ? "#6D717E" : _ref2$disabledBorderC,
12869
+ _ref2$disabledColor = _ref2.disabledColor,
12870
+ disabledColor = _ref2$disabledColor === void 0 ? "#FFFFFF" : _ref2$disabledColor,
12872
12871
  _ref2$extraStyles = _ref2.extraStyles,
12873
12872
  extraStyles = _ref2$extraStyles === void 0 ? "" : _ref2$extraStyles,
12873
+ _ref2$isLoading = _ref2.isLoading,
12874
+ isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
12874
12875
  tabIndex = _ref2.tabIndex,
12875
- children = _ref2.children,
12876
+ text = _ref2.text,
12877
+ textExtraStyles = _ref2.textExtraStyles,
12878
+ _ref2$textWrap = _ref2.textWrap,
12879
+ textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
12880
+ _ref2$variant = _ref2.variant,
12881
+ variant = _ref2$variant === void 0 ? "primary" : _ref2$variant,
12876
12882
  rest = _objectWithoutProperties(_ref2, _excluded$h);
12877
12883
 
12878
12884
  var themeContext = useContext(ThemeContext);
@@ -12880,7 +12886,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12880
12886
  var isMobile = themeContext.isMobile;
12881
12887
  var hoverStyles = "\n outline: none;\n background-color: ".concat(themeValues.hoverBackgroundColor, ";\n border-color: ").concat(themeValues.hoverBorderColor, ";\n color: ").concat(themeValues.hoverColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n cursor: pointer;\n ");
12882
12888
  var activeStyles = "\n outline: none;\n background-color: ".concat(themeValues.activeBackgroundColor, ";\n border-color: ").concat(themeValues.activeBorderColor, ";\n color: ").concat(themeValues.activeColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n ");
12883
- var disabledStyles = "\n background-color: #6D717E;\n border-color: #6D717E;\n color: #FFFFFF;\n cursor: default;\n &:focus {\n box-shadow: 0 0 10px #6D717E;\n outline: none;\n }\n ";
12889
+ var disabledStyles = "\n background-color: ".concat(disabledBackgroundColor, ";\n border-color: ").concat(disabledBorderColor, ";\n color: ").concat(disabledColor, ";\n cursor: default;\n &:focus {\n box-shadow: 0 0 10px ").concat(disabledBackgroundColor, ";\n outline: none;\n }\n ");
12884
12890
  return /*#__PURE__*/React.createElement(Box, _extends({
12885
12891
  variant: variant,
12886
12892
  padding: themeValues.padding,
@@ -45672,24 +45678,36 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
45672
45678
  };
45673
45679
  };
45674
45680
 
45681
+ var arrowColor = WHITE;
45682
+ var numberColor = MATISSE_BLUE;
45683
+ var hoverBackgroundColor$2 = ALABASTER_WHITE;
45684
+ var fallbackValues$J = {
45685
+ arrowColor: arrowColor,
45686
+ hoverBackgroundColor: hoverBackgroundColor$2,
45687
+ numberColor: numberColor
45688
+ };
45689
+
45675
45690
  var PAGING_SPACE = 2; // how many pages we want to have before/after delimiter
45676
45691
 
45677
45692
  var PAGING_INIT_SPACE = 3; // first delimiter should appear after 3 pages
45678
45693
 
45679
45694
  var PrevNextButton = function PrevNextButton(_ref) {
45680
45695
  var action = _ref.action,
45681
- type = _ref.type,
45682
45696
  arrowColor = _ref.arrowColor,
45683
- numberColor = _ref.numberColor;
45697
+ borderRadius = _ref.borderRadius,
45698
+ buttonHeight = _ref.buttonHeight,
45699
+ buttonWidth = _ref.buttonWidth,
45700
+ numberColor = _ref.numberColor,
45701
+ type = _ref.type;
45684
45702
  return /*#__PURE__*/React.createElement(Box, {
45685
45703
  padding: "0 10px 0",
45686
- minHeight: "40px",
45687
- extraStyles: "max-height: 40px;"
45704
+ minHeight: buttonHeight,
45705
+ extraStyles: "max-height: ".concat(buttonHeight, ";")
45688
45706
  }, /*#__PURE__*/React.createElement(ButtonWithAction, {
45689
45707
  action: action,
45690
45708
  contentOverride: true,
45691
45709
  dataQa: type,
45692
- extraStyles: "\n min-width: 40px;\n min-height: 100%;\n max-height: 40px;\n padding: 6px;\n border-radius: 3px;\n background-color: ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, ";\n border-color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, "\n ")
45710
+ extraStyles: "\n background-color: ".concat(numberColor, ";\n border-color: ").concat(numberColor, "\n border-radius: ").concat(borderRadius, ";\n margin: 0;\n max-height: ").concat(buttonHeight, ";\n min-height: 100%;\n min-width: ").concat(buttonWidth, ";\n padding: 6px;\n &:focus {\n outline: none\n }\n ")
45693
45711
  }, /*#__PURE__*/React.createElement(Box, {
45694
45712
  padding: "0",
45695
45713
  extraStyles: type === "prev" && "transform: scaleX(-1)"
@@ -45746,27 +45764,44 @@ var getPagesPanel = function getPagesPanel(page, pagesCount) {
45746
45764
  };
45747
45765
 
45748
45766
  var Pagination = function Pagination(_ref2) {
45749
- var pagePrevious = _ref2.pagePrevious,
45750
- pageNext = _ref2.pageNext,
45751
- setCurrentPage = _ref2.setCurrentPage,
45767
+ var _ref2$activeBorderWid = _ref2.activeBorderWidth,
45768
+ activeBorderWidth = _ref2$activeBorderWid === void 0 ? "1px" : _ref2$activeBorderWid,
45769
+ activeBackgroundColor = _ref2.activeBackgroundColor,
45770
+ arrowColor = _ref2.arrowColor,
45771
+ _ref2$borderRadius = _ref2.borderRadius,
45772
+ borderRadius = _ref2$borderRadius === void 0 ? "3px" : _ref2$borderRadius,
45773
+ _ref2$buttonHeight = _ref2.buttonHeight,
45774
+ buttonHeight = _ref2$buttonHeight === void 0 ? "40px" : _ref2$buttonHeight,
45775
+ _ref2$buttonWidth = _ref2.buttonWidth,
45776
+ buttonWidth = _ref2$buttonWidth === void 0 ? "40px" : _ref2$buttonWidth,
45777
+ _ref2$childGap = _ref2.childGap,
45778
+ childGap = _ref2$childGap === void 0 ? "10px" : _ref2$childGap,
45752
45779
  currentPage = _ref2.currentPage,
45753
- pageCount = _ref2.pageCount,
45780
+ _ref2$fontSize = _ref2.fontSize,
45781
+ fontSize = _ref2$fontSize === void 0 ? "17px" : _ref2$fontSize,
45782
+ _ref2$fontWeight = _ref2.fontWeight,
45783
+ fontWeight = _ref2$fontWeight === void 0 ? "900" : _ref2$fontWeight,
45754
45784
  numberColor = _ref2.numberColor,
45755
- arrowColor = _ref2.arrowColor;
45785
+ pageCount = _ref2.pageCount,
45786
+ pageNext = _ref2.pageNext,
45787
+ pagePrevious = _ref2.pagePrevious,
45788
+ setCurrentPage = _ref2.setCurrentPage,
45789
+ themeValues = _ref2.themeValues;
45756
45790
  return /*#__PURE__*/React.createElement(Cluster, {
45757
45791
  justify: "center",
45758
- childGap: "10px"
45792
+ childGap: childGap
45759
45793
  }, currentPage > 1 && /*#__PURE__*/React.createElement(PrevNextButton, {
45760
- type: "prev",
45761
45794
  action: pagePrevious,
45762
- arrowColor: arrowColor,
45763
- numberColor: numberColor
45795
+ arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
45796
+ borderRadius: borderRadius,
45797
+ buttonHeight: buttonHeight,
45798
+ buttonWidth: buttonWidth,
45799
+ numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
45800
+ type: "prev"
45764
45801
  }), getPagesPanel(currentPage, pageCount).map(function (item, index) {
45765
45802
  return item.isButton ? /*#__PURE__*/React.createElement(Box, {
45766
45803
  padding: "0",
45767
- border: item.active && "1px solid ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE),
45768
- borderRadius: item.active && "3px",
45769
- extraStyles: "max-height: 40px;"
45804
+ extraStyles: "max-height: ".concat(buttonHeight, ";")
45770
45805
  }, /*#__PURE__*/React.createElement(ButtonWithAction, {
45771
45806
  variant: "ghost",
45772
45807
  key: item.index,
@@ -45777,9 +45812,12 @@ var Pagination = function Pagination(_ref2) {
45777
45812
  pageNumber: item.index
45778
45813
  });
45779
45814
  } : noop,
45780
- textExtraStyles: "font-size: 17px; font-weight: 900;",
45781
- extraStyles: "\n min-width: 40px; min-height: 100%; padding: 0;\n &:hover, &:focus {\n text-decoration: none;\n > * > span {\n text-decoration: none;\n }\n }\n > * > span {\n color: ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, "\n }\n }\n &:hover { ").concat(item.active ? "cursor: default;" : "background-color: ".concat(ALABASTER_WHITE), " }\n "),
45782
- dataQa: index
45815
+ textExtraStyles: "font-size: ".concat(fontSize, "; font-weight: ").concat(fontWeight, ";"),
45816
+ extraStyles: "\n ".concat(item.active ? "border: ".concat(activeBorderWidth, " solid ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, ";") : "", "\n min-width: ").concat(buttonWidth, "; min-height: 100%; padding: 0;\n border-radius: ").concat(borderRadius, ";\n &:hover, &:focus {\n text-decoration: none;\n > * > span {\n text-decoration: none;\n }\n }\n > * > span {\n color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, "\n }\n margin: 0;\n &:hover { ").concat(item.active ? "cursor: default;" : "background-color: ".concat(themeValues.hoverBackgroundColor), " }\n &:focus {\n outline: none\n }\n "),
45817
+ dataQa: index,
45818
+ disabledBackgroundColor: activeBackgroundColor,
45819
+ disabledBorderColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
45820
+ disabledColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor
45783
45821
  }, item.index)) : /*#__PURE__*/React.createElement(Box, {
45784
45822
  padding: "0 10px"
45785
45823
  }, /*#__PURE__*/React.createElement(Cluster, {
@@ -45787,17 +45825,22 @@ var Pagination = function Pagination(_ref2) {
45787
45825
  }, /*#__PURE__*/React.createElement(Text$1, {
45788
45826
  key: index,
45789
45827
  variant: "pXL",
45790
- weight: "900",
45791
- color: numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE
45828
+ weight: fontWeight,
45829
+ color: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor
45792
45830
  }, "...")));
45793
45831
  }), currentPage < pageCount && /*#__PURE__*/React.createElement(PrevNextButton, {
45794
- type: "next",
45795
45832
  action: pageNext,
45796
- arrowColor: arrowColor,
45797
- numberColor: numberColor
45833
+ arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
45834
+ borderRadius: borderRadius,
45835
+ buttonHeight: buttonHeight,
45836
+ buttonWidth: buttonWidth,
45837
+ numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
45838
+ type: "next"
45798
45839
  }));
45799
45840
  };
45800
45841
 
45842
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
45843
+
45801
45844
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
45802
45845
  var _ref$forwardButtonTex = _ref.forwardButtonText,
45803
45846
  forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
@@ -45874,7 +45917,7 @@ var labeledAmountTotal = {
45874
45917
  "default": "h6",
45875
45918
  small: "p"
45876
45919
  };
45877
- var fallbackValues$J = {
45920
+ var fallbackValues$K = {
45878
45921
  backgroundColor: backgroundColor$b,
45879
45922
  lineItem: lineItem,
45880
45923
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -46125,7 +46168,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
46125
46168
  });
46126
46169
  };
46127
46170
 
46128
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$J, "default");
46171
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$K, "default");
46129
46172
 
46130
46173
  var linkColor$5 = {
46131
46174
  "default": "#3176AA"
@@ -46142,7 +46185,7 @@ var fontWeight$7 = {
46142
46185
  var modalLinkHoverFocus$1 = {
46143
46186
  "default": "outline: none; text-decoration: underline;"
46144
46187
  };
46145
- var fallbackValues$K = {
46188
+ var fallbackValues$L = {
46146
46189
  linkColor: linkColor$5,
46147
46190
  fontSize: fontSize$a,
46148
46191
  lineHeight: lineHeight$4,
@@ -46201,7 +46244,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
46201
46244
  }, link));
46202
46245
  };
46203
46246
 
46204
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$K, "default");
46247
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$L, "default");
46205
46248
 
46206
46249
  var PaymentFormACH = function PaymentFormACH(_ref) {
46207
46250
  var _routingNumberErrors, _accountNumberErrors;
@@ -46807,7 +46850,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
46807
46850
  var bodyBackgroundColor$1 = "#eeeeee";
46808
46851
  var borderColor$5 = "".concat(GREY_CHATEAU);
46809
46852
  var focusStyles = "outline: none;";
46810
- var fallbackValues$L = {
46853
+ var fallbackValues$M = {
46811
46854
  headingBackgroundColor: headingBackgroundColor$1,
46812
46855
  headingDisabledColor: headingDisabledColor,
46813
46856
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -46995,7 +47038,7 @@ var RadioSection = function RadioSection(_ref) {
46995
47038
  })));
46996
47039
  };
46997
47040
 
46998
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$L);
47041
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$M);
46999
47042
 
47000
47043
  var RegistrationForm = function RegistrationForm(_ref) {
47001
47044
  var _emailErrorMessages, _passwordErrorMessage;
@@ -47292,7 +47335,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
47292
47335
  var activeTabBackground = "#FFFFFF";
47293
47336
  var activeTabAccent = "#15749D";
47294
47337
  var activeTabHover = "#B8D5E1";
47295
- var fallbackValues$M = {
47338
+ var fallbackValues$N = {
47296
47339
  activeTabBackground: activeTabBackground,
47297
47340
  activeTabAccent: activeTabAccent,
47298
47341
  activeTabHover: activeTabHover
@@ -47371,12 +47414,12 @@ var Tabs = function Tabs(_ref) {
47371
47414
  }))));
47372
47415
  };
47373
47416
 
47374
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$M);
47417
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$N);
47375
47418
 
47376
47419
  var activeTabBackground$1 = "#FFFFFF";
47377
47420
  var activeTabAccent$1 = "#15749D";
47378
47421
  var activeTabHover$1 = "#B8D5E1";
47379
- var fallbackValues$N = {
47422
+ var fallbackValues$O = {
47380
47423
  activeTabBackground: activeTabBackground$1,
47381
47424
  activeTabAccent: activeTabAccent$1,
47382
47425
  activeTabHover: activeTabHover$1
@@ -47432,7 +47475,7 @@ var TabSidebar = function TabSidebar(_ref) {
47432
47475
  })));
47433
47476
  };
47434
47477
 
47435
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$N);
47478
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$O);
47436
47479
 
47437
47480
  var backgroundColor$c = {
47438
47481
  "default": "#ffffff",
@@ -47463,7 +47506,7 @@ var modalLinkHoverFocus$2 = {
47463
47506
  "default": standardInteractionStyles,
47464
47507
  footer: standardInteractionStyles
47465
47508
  };
47466
- var fallbackValues$O = {
47509
+ var fallbackValues$P = {
47467
47510
  backgroundColor: backgroundColor$c,
47468
47511
  linkColor: linkColor$6,
47469
47512
  border: border$3,
@@ -47525,7 +47568,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47525
47568
  }, link));
47526
47569
  };
47527
47570
 
47528
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$O, "default");
47571
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
47529
47572
 
47530
47573
  var TermsAndConditions = function TermsAndConditions(_ref) {
47531
47574
  var onCheck = _ref.onCheck,
@@ -47600,7 +47643,7 @@ var fontColor$1 = WHITE;
47600
47643
  var textAlign$1 = "left";
47601
47644
  var headerBackgroundColor$1 = BRIGHT_GREY;
47602
47645
  var imageBackgroundColor$1 = MATISSE_BLUE;
47603
- var fallbackValues$P = {
47646
+ var fallbackValues$Q = {
47604
47647
  fontWeight: fontWeight$9,
47605
47648
  fontColor: fontColor$1,
47606
47649
  textAlign: textAlign$1,
@@ -47647,7 +47690,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
47647
47690
  })))));
47648
47691
  };
47649
47692
 
47650
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$P));
47693
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Q));
47651
47694
 
47652
47695
  var WorkflowTile = function WorkflowTile(_ref) {
47653
47696
  var _ref$workflowName = _ref.workflowName,
@@ -47702,7 +47745,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
47702
47745
  };
47703
47746
 
47704
47747
  var pageBackground = "#FBFCFD";
47705
- var fallbackValues$Q = {
47748
+ var fallbackValues$R = {
47706
47749
  pageBackground: pageBackground
47707
47750
  };
47708
47751
 
@@ -47749,7 +47792,7 @@ var CenterSingle = function CenterSingle(_ref) {
47749
47792
  })));
47750
47793
  };
47751
47794
 
47752
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Q));
47795
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$R));
47753
47796
 
47754
47797
  var CenterStack = function CenterStack(_ref) {
47755
47798
  var header = _ref.header,
@@ -47791,7 +47834,7 @@ var CenterStack = function CenterStack(_ref) {
47791
47834
  })));
47792
47835
  };
47793
47836
 
47794
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Q));
47837
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$R));
47795
47838
 
47796
47839
  var CenterSingle$2 = function CenterSingle(_ref) {
47797
47840
  var header = _ref.header,
@@ -47836,7 +47879,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
47836
47879
  })));
47837
47880
  };
47838
47881
 
47839
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Q));
47882
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$R));
47840
47883
 
47841
47884
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
47842
47885
  var header = _ref.header,
@@ -47890,7 +47933,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
47890
47933
  })));
47891
47934
  };
47892
47935
 
47893
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Q));
47936
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$R));
47894
47937
 
47895
47938
  var SidebarStackContent = function SidebarStackContent(_ref) {
47896
47939
  var header = _ref.header,
@@ -47961,7 +48004,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
47961
48004
  })));
47962
48005
  };
47963
48006
 
47964
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Q));
48007
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
47965
48008
 
47966
- 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, HistoryIconSmall$1 as HistoryIconSmall, 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, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, 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 };
48009
+ 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, HistoryIconSmall$1 as HistoryIconSmall, 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$1 as 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, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, 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 };
47967
48010
  //# sourceMappingURL=index.esm.js.map