@thecb/components 8.0.4-beta.2 → 8.0.4-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -4779,7 +4779,7 @@ var fontSize = {
4779
4779
  pXL: "1.5rem" // 24px
4780
4780
 
4781
4781
  };
4782
- var fallbackValues$1 = {
4782
+ var fallbackValues = {
4783
4783
  fontFamily: fontFamily,
4784
4784
  fontSize: fontSize
4785
4785
  };
@@ -4879,7 +4879,7 @@ var createThemeValues = function createThemeValues(themeContext, fallbackValues,
4879
4879
  }, {});
4880
4880
  return createdTheme;
4881
4881
  };
4882
- var themeComponent$1 = function themeComponent(component, componentThemeId, fallbackValues, defaultVariant) {
4882
+ var themeComponent = function themeComponent(component, componentThemeId, fallbackValues, defaultVariant) {
4883
4883
  return function (_ref7) {
4884
4884
  var _themeContext$metadat;
4885
4885
 
@@ -4919,7 +4919,7 @@ export const generateImgSrc = (
4919
4919
  var themeUtils = /*#__PURE__*/Object.freeze({
4920
4920
  __proto__: null,
4921
4921
  createThemeValues: createThemeValues,
4922
- themeComponent: themeComponent$1
4922
+ themeComponent: themeComponent
4923
4923
  });
4924
4924
 
4925
4925
  /* These are constants used by nav frontend components */
@@ -4959,7 +4959,8 @@ var SEASHELL_WHITE = "#F1F1F1";
4959
4959
  var ALABASTER_WHITE = "#F7F7F7";
4960
4960
  var AQUA_HAZE_WHITE = "#F7F9FA";
4961
4961
  var BLEACH_WHITE = "#FEF4d7";
4962
- var CATSKILL_WHITE = "#EAF2F6"; // GREY
4962
+ var CATSKILL_WHITE = "#EAF2F6";
4963
+ var HALF_COLONIAL_WHITE = "#FDF4D2"; // GREY
4963
4964
 
4964
4965
  var ATHENS_GREY = "#F6F6F9"; // CBS-100
4965
4966
 
@@ -5066,6 +5067,25 @@ var ALERT_COLORS = {
5066
5067
  },
5067
5068
  text: ZODIAC_BLUE,
5068
5069
  link: SCIENCE_BLUE
5070
+ }; // These colors match the pill components seen in CityBase UI designs.
5071
+
5072
+ var PILL_COLORS = {
5073
+ danger: {
5074
+ background: BLUSH_RED,
5075
+ text: RAZZMATAZZ_RED
5076
+ },
5077
+ neutral: {
5078
+ background: GRECIAN_GREY,
5079
+ text: CHARADE_GREY
5080
+ },
5081
+ success: {
5082
+ background: HINT_GREEN,
5083
+ text: SEA_GREEN
5084
+ },
5085
+ warning: {
5086
+ background: HALF_COLONIAL_WHITE,
5087
+ text: ZEST_ORANGE
5088
+ }
5069
5089
  };
5070
5090
 
5071
5091
  var colors = /*#__PURE__*/Object.freeze({
@@ -5079,6 +5099,7 @@ var colors = /*#__PURE__*/Object.freeze({
5079
5099
  AQUA_HAZE_WHITE: AQUA_HAZE_WHITE,
5080
5100
  BLEACH_WHITE: BLEACH_WHITE,
5081
5101
  CATSKILL_WHITE: CATSKILL_WHITE,
5102
+ HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
5082
5103
  ATHENS_GREY: ATHENS_GREY,
5083
5104
  ALTO_GREY: ALTO_GREY,
5084
5105
  SILVER_GREY: SILVER_GREY,
@@ -5142,6 +5163,7 @@ var colors = /*#__PURE__*/Object.freeze({
5142
5163
  BLUSH_RED: BLUSH_RED,
5143
5164
  RASPBERRY: RASPBERRY,
5144
5165
  ALERT_COLORS: ALERT_COLORS,
5166
+ PILL_COLORS: PILL_COLORS,
5145
5167
  ERROR_COLOR: ERROR_COLOR
5146
5168
  });
5147
5169
 
@@ -6384,7 +6406,7 @@ var Text = function Text(_ref) {
6384
6406
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
6385
6407
  };
6386
6408
 
6387
- var Text$1 = themeComponent$1(Text, "Text", fallbackValues$1, "p");
6409
+ var Text$1 = themeComponent(Text, "Text", fallbackValues, "p");
6388
6410
 
6389
6411
  var _excluded$2 = ["activeStyles", "hoverStyles", "disabledStyles", "extraStyles", "borderSize", "borderColor", "borderWidthOverride", "borderRadius", "textAlign", "boxShadow", "minHeight", "minWidth", "maxWidth", "padding", "hiddenStyles", "ariaControls", "ariaLabel"];
6390
6412
  /*
@@ -6464,8 +6486,9 @@ var BoxWrapper = styled(function (_ref) {
6464
6486
  return textAlign;
6465
6487
  }, function (_ref14) {
6466
6488
  var hoverStyles = _ref14.hoverStyles,
6467
- as = _ref14.as;
6468
- return css(["", " ", ""], hoverStyles, as === "button" ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
6489
+ as = _ref14.as,
6490
+ disabled = _ref14.disabled;
6491
+ return css(["", " ", ""], hoverStyles, as === "button" && !disabled ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
6469
6492
  }, function (_ref15) {
6470
6493
  var as = _ref15.as;
6471
6494
  return css(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
@@ -12740,7 +12763,7 @@ var activeColor = {
12740
12763
  whiteSecondary: WHITE,
12741
12764
  whitePrimary: WHITE
12742
12765
  };
12743
- var fallbackValues$2 = {
12766
+ var fallbackValues$1 = {
12744
12767
  padding: padding,
12745
12768
  color: color$1,
12746
12769
  fontSizeVariant: fontSizeVariant,
@@ -12900,7 +12923,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12900
12923
  rest = _objectWithoutProperties(_ref2, _excluded$h);
12901
12924
 
12902
12925
  var themeContext = useContext(ThemeContext);
12903
- var themeValues = createThemeValues(themeContext, fallbackValues$2, "Button", variant);
12926
+ var themeValues = createThemeValues(themeContext, fallbackValues$1, "Button", variant);
12904
12927
  var isMobile = themeContext.isMobile;
12905
12928
  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 ");
12906
12929
  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 ");
@@ -12956,7 +12979,7 @@ var singleIconColor = {
12956
12979
  secondary: "".concat(BRIGHT_GREY),
12957
12980
  darkMode: "".concat(WHITE)
12958
12981
  };
12959
- var fallbackValues$3 = {
12982
+ var fallbackValues$2 = {
12960
12983
  primaryColor: primaryColor,
12961
12984
  accentColor: accentColor,
12962
12985
  subIconColor: subIconColor,
@@ -12996,7 +13019,7 @@ var AccountsIcon = function AccountsIcon(_ref) {
12996
13019
  })));
12997
13020
  };
12998
13021
 
12999
- var AccountsIcon$1 = themeComponent$1(AccountsIcon, "Icons", fallbackValues$3, "info");
13022
+ var AccountsIcon$1 = themeComponent(AccountsIcon, "Icons", fallbackValues$2, "info");
13000
13023
 
13001
13024
  var AccountsAddIcon = function AccountsAddIcon(_ref) {
13002
13025
  var themeValues = _ref.themeValues;
@@ -13035,7 +13058,7 @@ var AccountsAddIcon = function AccountsAddIcon(_ref) {
13035
13058
  })));
13036
13059
  };
13037
13060
 
13038
- var AccountsAddIcon$1 = themeComponent$1(AccountsAddIcon, "Icons", fallbackValues$3, "info");
13061
+ var AccountsAddIcon$1 = themeComponent(AccountsAddIcon, "Icons", fallbackValues$2, "info");
13039
13062
 
13040
13063
  var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
13041
13064
  var themeValues = _ref.themeValues;
@@ -13073,7 +13096,7 @@ var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
13073
13096
  })));
13074
13097
  };
13075
13098
 
13076
- var ForgotPasswordIcon$1 = themeComponent$1(ForgotPasswordIcon, "Icons", fallbackValues$3, "info");
13099
+ var ForgotPasswordIcon$1 = themeComponent(ForgotPasswordIcon, "Icons", fallbackValues$2, "info");
13077
13100
 
13078
13101
  var GoToEmailIcon = function GoToEmailIcon(_ref) {
13079
13102
  var themeValues = _ref.themeValues;
@@ -13103,7 +13126,7 @@ var GoToEmailIcon = function GoToEmailIcon(_ref) {
13103
13126
  })));
13104
13127
  };
13105
13128
 
13106
- var GoToEmailIcon$1 = themeComponent$1(GoToEmailIcon, "Icons", fallbackValues$3, "info");
13129
+ var GoToEmailIcon$1 = themeComponent(GoToEmailIcon, "Icons", fallbackValues$2, "info");
13107
13130
 
13108
13131
  var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
13109
13132
  var themeValues = _ref.themeValues;
@@ -13147,7 +13170,7 @@ var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
13147
13170
  })));
13148
13171
  };
13149
13172
 
13150
- var VerifiedEmailIcon$1 = themeComponent$1(VerifiedEmailIcon, "Icons", fallbackValues$3, "info");
13173
+ var VerifiedEmailIcon$1 = themeComponent(VerifiedEmailIcon, "Icons", fallbackValues$2, "info");
13151
13174
 
13152
13175
  var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
13153
13176
  var themeValues = _ref.themeValues;
@@ -13182,7 +13205,7 @@ var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
13182
13205
  })));
13183
13206
  };
13184
13207
 
13185
- var PaymentMethodIcon$1 = themeComponent$1(PaymentMethodIcon, "Icons", fallbackValues$3, "info");
13208
+ var PaymentMethodIcon$1 = themeComponent(PaymentMethodIcon, "Icons", fallbackValues$2, "info");
13186
13209
 
13187
13210
  var AccountsIconSmall = function AccountsIconSmall(_ref) {
13188
13211
  var themeValues = _ref.themeValues;
@@ -13221,7 +13244,7 @@ var AccountsIconSmall = function AccountsIconSmall(_ref) {
13221
13244
  }))))))));
13222
13245
  };
13223
13246
 
13224
- var AccountsIconSmall$1 = themeComponent$1(AccountsIconSmall, "Icons", fallbackValues$3, "primary");
13247
+ var AccountsIconSmall$1 = themeComponent(AccountsIconSmall, "Icons", fallbackValues$2, "primary");
13225
13248
 
13226
13249
  var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
13227
13250
  var themeValues = _ref.themeValues;
@@ -13272,7 +13295,7 @@ var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
13272
13295
  }))))))));
13273
13296
  };
13274
13297
 
13275
- var PaymentsIconSmall$1 = themeComponent$1(PaymentsIconSmall, "Icons", fallbackValues$3, "primary");
13298
+ var PaymentsIconSmall$1 = themeComponent(PaymentsIconSmall, "Icons", fallbackValues$2, "primary");
13276
13299
 
13277
13300
  var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
13278
13301
  var themeValues = _ref.themeValues;
@@ -13336,7 +13359,7 @@ var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
13336
13359
  })))))));
13337
13360
  };
13338
13361
 
13339
- var PaymentMethodAddIcon$1 = themeComponent$1(PaymentMethodAddIcon, "Icons", fallbackValues$3, "info");
13362
+ var PaymentMethodAddIcon$1 = themeComponent(PaymentMethodAddIcon, "Icons", fallbackValues$2, "info");
13340
13363
 
13341
13364
  var ProfileIconSmall = function ProfileIconSmall(_ref) {
13342
13365
  var themeValues = _ref.themeValues;
@@ -13365,7 +13388,7 @@ var ProfileIconSmall = function ProfileIconSmall(_ref) {
13365
13388
  })))));
13366
13389
  };
13367
13390
 
13368
- var ProfileIconSmall$1 = themeComponent$1(ProfileIconSmall, "Icons", fallbackValues$3, "primary");
13391
+ var ProfileIconSmall$1 = themeComponent(ProfileIconSmall, "Icons", fallbackValues$2, "primary");
13369
13392
 
13370
13393
  var SettingsIconSmall = function SettingsIconSmall(_ref) {
13371
13394
  var themeValues = _ref.themeValues;
@@ -13416,7 +13439,7 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
13416
13439
  }))))))));
13417
13440
  };
13418
13441
 
13419
- var SettingsIconSmall$1 = themeComponent$1(SettingsIconSmall, "Icons", fallbackValues$3, "primary");
13442
+ var SettingsIconSmall$1 = themeComponent(SettingsIconSmall, "Icons", fallbackValues$2, "primary");
13420
13443
 
13421
13444
  var WalletIconSmall = function WalletIconSmall(_ref) {
13422
13445
  var themeValues = _ref.themeValues,
@@ -13457,7 +13480,7 @@ var WalletIconSmall = function WalletIconSmall(_ref) {
13457
13480
  })));
13458
13481
  };
13459
13482
 
13460
- var WalletIconSmall$1 = themeComponent$1(WalletIconSmall, "Icons", fallbackValues$3, "primary");
13483
+ var WalletIconSmall$1 = themeComponent(WalletIconSmall, "Icons", fallbackValues$2, "primary");
13461
13484
 
13462
13485
  var ChevronIcon = function ChevronIcon(_ref) {
13463
13486
  var themeValues = _ref.themeValues,
@@ -13499,7 +13522,7 @@ var ChevronIcon = function ChevronIcon(_ref) {
13499
13522
  }))));
13500
13523
  };
13501
13524
 
13502
- var ChevronIcon$1 = themeComponent$1(ChevronIcon, "Icons", fallbackValues$3, "secondary");
13525
+ var ChevronIcon$1 = themeComponent(ChevronIcon, "Icons", fallbackValues$2, "secondary");
13503
13526
 
13504
13527
  var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
13505
13528
  var themeValues = _ref.themeValues;
@@ -13568,7 +13591,7 @@ var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
13568
13591
  })))))));
13569
13592
  };
13570
13593
 
13571
- var PropertiesAddIcon$1 = themeComponent$1(PropertiesAddIcon, "Icons", fallbackValues$3, "info");
13594
+ var PropertiesAddIcon$1 = themeComponent(PropertiesAddIcon, "Icons", fallbackValues$2, "info");
13572
13595
 
13573
13596
  var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
13574
13597
  var themeValues = _ref.themeValues;
@@ -13595,7 +13618,7 @@ var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
13595
13618
  })));
13596
13619
  };
13597
13620
 
13598
- var PropertiesIconSmall$1 = themeComponent$1(PropertiesIconSmall, "Icons", fallbackValues$3, "primary");
13621
+ var PropertiesIconSmall$1 = themeComponent(PropertiesIconSmall, "Icons", fallbackValues$2, "primary");
13599
13622
 
13600
13623
  var AccountNumberImage = function AccountNumberImage() {
13601
13624
  return /*#__PURE__*/React.createElement("svg", {
@@ -13784,16 +13807,16 @@ var CheckmarkIcon = function CheckmarkIcon() {
13784
13807
  transform: "translate(672.000000, 64.000000)"
13785
13808
  }, /*#__PURE__*/React.createElement("circle", {
13786
13809
  id: "Oval-2",
13787
- stroke: MATISSE_BLUE,
13810
+ stroke: SEA_GREEN,
13788
13811
  strokeWidth: "2",
13789
- fill: INFO_BLUE,
13812
+ fill: HINT_GREEN,
13790
13813
  cx: "48",
13791
13814
  cy: "48",
13792
13815
  r: "48"
13793
13816
  }), /*#__PURE__*/React.createElement("g", {
13794
13817
  id: "Group-2",
13795
13818
  transform: "translate(20.800000, 28.400000)",
13796
- fill: MATISSE_BLUE
13819
+ fill: SEA_GREEN
13797
13820
  }, /*#__PURE__*/React.createElement("polygon", {
13798
13821
  id: "Rectangle-2",
13799
13822
  transform: "translate(12.800000, 30.000000) rotate(-45.000000) translate(-12.800000, -30.000000) ",
@@ -14087,7 +14110,9 @@ var TimeoutImage = function TimeoutImage() {
14087
14110
  })))));
14088
14111
  };
14089
14112
 
14090
- var AutopayOnIcon = function AutopayOnIcon() {
14113
+ var AutopayOnIcon = function AutopayOnIcon(_ref) {
14114
+ var _ref$color = _ref.color,
14115
+ color = _ref$color === void 0 ? SEA_GREEN : _ref$color;
14091
14116
  return /*#__PURE__*/React.createElement("svg", {
14092
14117
  xmlns: "http://www.w3.org/2000/svg",
14093
14118
  width: "12",
@@ -14100,7 +14125,7 @@ var AutopayOnIcon = function AutopayOnIcon() {
14100
14125
  strokeWidth: "1"
14101
14126
  }, /*#__PURE__*/React.createElement("path", {
14102
14127
  className: "autopayIcon",
14103
- fill: SEA_GREEN,
14128
+ fill: color,
14104
14129
  fillRule: "nonzero",
14105
14130
  d: "M1.898 5.75c.079 0 .141-.02.188-.059a.281.281 0 00.094-.152 3.825 3.825 0 011.394-2.144A3.838 3.838 0 016 2.563c.5 0 .98.09 1.441.27.461.179.88.44 1.254.784l-.984.985A.542.542 0 007.547 5c0 .156.055.29.164.398.11.11.242.165.398.165h3.141c.156 0 .289-.055.398-.165A.542.542 0 0011.812 5V1.86a.542.542 0 00-.164-.399.542.542 0 00-.398-.164.542.542 0 00-.398.164l-.844.844A5.699 5.699 0 006 .688c-.938 0-1.809.207-2.613.62-.805.415-1.48.981-2.028 1.7A5.726 5.726 0 00.281 5.422a.265.265 0 00.059.223c.055.07.129.105.222.105h1.336zM6 12.312c.937 0 1.809-.207 2.613-.62a5.919 5.919 0 002.028-1.7 5.726 5.726 0 001.078-2.414.265.265 0 00-.059-.223.267.267 0 00-.223-.105h-1.335c-.079 0-.141.02-.188.059a.281.281 0 00-.094.152 3.825 3.825 0 01-1.394 2.144c-.711.555-1.52.833-2.426.833-.5 0-.98-.09-1.441-.27a3.985 3.985 0 01-1.254-.785l.984-.985A.542.542 0 004.453 8a.542.542 0 00-.164-.398.542.542 0 00-.398-.164H.75a.542.542 0 00-.398.164A.542.542 0 00.187 8v3.14c0 .157.055.29.165.4.109.108.242.163.398.163.156 0 .29-.055.398-.164l.844-.844A5.699 5.699 0 006 12.312z"
14106
14131
  })));
@@ -14498,7 +14523,7 @@ var WalletIcon = function WalletIcon(_ref) {
14498
14523
  }))));
14499
14524
  };
14500
14525
 
14501
- var WalletIcon$1 = themeComponent$1(WalletIcon, "Icons", fallbackValues$3, "info");
14526
+ var WalletIcon$1 = themeComponent(WalletIcon, "Icons", fallbackValues$2, "info");
14502
14527
 
14503
14528
  var AchReturnIcon = function AchReturnIcon() {
14504
14529
  return /*#__PURE__*/React.createElement("svg", {
@@ -14731,7 +14756,29 @@ var FailedIcon = function FailedIcon() {
14731
14756
  }))));
14732
14757
  };
14733
14758
 
14734
- var PendingIcon = function PendingIcon() {
14759
+ var PencilIcon = function PencilIcon(_ref) {
14760
+ var _ref$ariaLabel = _ref.ariaLabel,
14761
+ ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel,
14762
+ themeValues = _ref.themeValues;
14763
+ return /*#__PURE__*/React.createElement("svg", {
14764
+ "aria-label": ariaLabel,
14765
+ width: "24px",
14766
+ height: "24px",
14767
+ fill: "none",
14768
+ xmlns: "http://www.w3.org/2000/svg"
14769
+ }, /*#__PURE__*/React.createElement("path", {
14770
+ fillRule: "evenodd",
14771
+ clipRule: "evenodd",
14772
+ d: "M19.74 6.84a.885.885 0 0 1 0 1.253l-1.626 1.626-3.333-3.333 1.626-1.626a.885.885 0 0 1 1.253 0l2.08 2.08ZM4 20.5v-3.333l9.83-9.83 3.333 3.333-9.83 9.83H4Z",
14773
+ fill: themeValues.subIconColor
14774
+ }));
14775
+ };
14776
+
14777
+ var PencilIcon$1 = themeComponent(PencilIcon, "Icons", fallbackValues$2, "info");
14778
+
14779
+ var PendingIcon = function PendingIcon(_ref) {
14780
+ var _ref$fill = _ref.fill,
14781
+ fill = _ref$fill === void 0 ? STORM_GREY : _ref$fill;
14735
14782
  return /*#__PURE__*/React.createElement("svg", {
14736
14783
  width: "32px",
14737
14784
  height: "32px",
@@ -14748,7 +14795,7 @@ var PendingIcon = function PendingIcon() {
14748
14795
  }, /*#__PURE__*/React.createElement("g", {
14749
14796
  id: "Icons",
14750
14797
  transform: "translate(-64.000000, -448.000000)",
14751
- fill: "#6D717E"
14798
+ fill: fill
14752
14799
  }, /*#__PURE__*/React.createElement("path", {
14753
14800
  d: "M80,480 C88.836556,480 96,472.836556 96,464 C96,455.163444 88.836556,448 80,448 C71.163444,448 64,455.163444 64,464 C64,472.836556 71.163444,480 80,480 Z M87,466 C88.1045695,466 89,465.104569 89,464 C89,462.895431 88.1045695,462 87,462 C85.8954305,462 85,462.895431 85,464 C85,465.104569 85.8954305,466 87,466 Z M80,462 C81.1045695,462 82,462.895431 82,464 C82,465.104569 81.1045695,466 80,466 C78.8954305,466 78,465.104569 78,464 C78,462.895431 78.8954305,462 80,462 Z M73,462 C74.1045695,462 75,462.895431 75,464 C75,465.104569 74.1045695,466 73,466 C71.8954305,466 71,465.104569 71,464 C71,462.895431 71.8954305,462 73,462 Z",
14754
14801
  id: "status-icon---pending"
@@ -14939,7 +14986,7 @@ var CarrotIcon = function CarrotIcon(_ref) {
14939
14986
  }))))))));
14940
14987
  };
14941
14988
 
14942
- var CarrotIcon$1 = themeComponent$1(CarrotIcon, "Icons", fallbackValues$3, "darkMode");
14989
+ var CarrotIcon$1 = themeComponent(CarrotIcon, "Icons", fallbackValues$2, "darkMode");
14943
14990
 
14944
14991
  var ProfileIcon = function ProfileIcon(_ref) {
14945
14992
  var themeValues = _ref.themeValues;
@@ -14977,7 +15024,7 @@ var ProfileIcon = function ProfileIcon(_ref) {
14977
15024
  }))));
14978
15025
  };
14979
15026
 
14980
- var ProfileIcon$1 = themeComponent$1(ProfileIcon, "Icons", fallbackValues$3, "info");
15027
+ var ProfileIcon$1 = themeComponent(ProfileIcon, "Icons", fallbackValues$2, "info");
14981
15028
 
14982
15029
  var GenericCardLarge = function GenericCardLarge() {
14983
15030
  return /*#__PURE__*/React.createElement("svg", {
@@ -15038,7 +15085,7 @@ var EmptyCartIcon = function EmptyCartIcon(_ref) {
15038
15085
  })));
15039
15086
  };
15040
15087
 
15041
- var EmptyCartIcon$1 = themeComponent$1(EmptyCartIcon, "Icons", fallbackValues$3, "info");
15088
+ var EmptyCartIcon$1 = themeComponent(EmptyCartIcon, "Icons", fallbackValues$2, "info");
15042
15089
 
15043
15090
  var ShoppingCartIcon = function ShoppingCartIcon() {
15044
15091
  return /*#__PURE__*/React.createElement("svg", {
@@ -15110,7 +15157,7 @@ var TrashIcon = function TrashIcon(_ref) {
15110
15157
  })));
15111
15158
  };
15112
15159
 
15113
- var TrashIcon$1 = themeComponent$1(TrashIcon, "Icons", fallbackValues$3, "primary");
15160
+ var TrashIcon$1 = themeComponent(TrashIcon, "Icons", fallbackValues$2, "primary");
15114
15161
 
15115
15162
  var NoCustomerResultsIcon = function NoCustomerResultsIcon() {
15116
15163
  return /*#__PURE__*/React.createElement("svg", {
@@ -15703,7 +15750,7 @@ var WalletBannerIcon = function WalletBannerIcon(_ref) {
15703
15750
  }));
15704
15751
  };
15705
15752
 
15706
- var WalletBannerIcon$1 = themeComponent$1(WalletBannerIcon, "Icons", fallbackValues$3, "primary");
15753
+ var WalletBannerIcon$1 = themeComponent(WalletBannerIcon, "Icons", fallbackValues$2, "primary");
15707
15754
 
15708
15755
  var StandardCheckoutImage = function StandardCheckoutImage() {
15709
15756
  return /*#__PURE__*/React.createElement("svg", {
@@ -16263,7 +16310,7 @@ var RevenueManagementImage = function RevenueManagementImage() {
16263
16310
  fill: "#15749D"
16264
16311
  }), /*#__PURE__*/React.createElement("path", {
16265
16312
  d: "M132.245 62.7452V65.8824L140.19 70.4222C140.685 70.7055 141.31 70.6219 141.713 70.2182L152.324 59.6079H148.559L141.2 67.5796C141.1 67.688 140.939 67.7129 140.811 67.6398L132.245 62.7452Z",
16266
- fill: "#3B5BDB"
16313
+ fill: "#15749D"
16267
16314
  }), /*#__PURE__*/React.createElement("path", {
16268
16315
  d: "M145.422 58.353C145.422 57.66 145.983 57.0981 146.677 57.0981H156.716C157.409 57.0981 157.971 57.66 157.971 58.353C157.971 59.0461 157.409 59.6079 156.716 59.6079H146.677C145.983 59.6079 145.422 59.0461 145.422 58.353Z",
16269
16316
  fill: "#15749D"
@@ -16476,6 +16523,705 @@ var RevenueManagementImage = function RevenueManagementImage() {
16476
16523
  }))));
16477
16524
  };
16478
16525
 
16526
+ var KioskImage = function KioskImage() {
16527
+ return /*#__PURE__*/React.createElement("svg", {
16528
+ width: 191,
16529
+ height: 96,
16530
+ viewBox: "0 0 191 96",
16531
+ fill: "none",
16532
+ xmlns: "http://www.w3.org/2000/svg"
16533
+ }, /*#__PURE__*/React.createElement("path", {
16534
+ fillRule: "evenodd",
16535
+ clipRule: "evenodd",
16536
+ d: "M12.4433 28.1096C12.4164 28.11 12.3894 28.1102 12.3624 28.1102C9.63896 28.1102 7.43115 25.9085 7.43115 23.1926C7.43115 20.4766 9.63896 18.2749 12.3624 18.2749C13.4748 18.2749 14.5012 18.6422 15.3263 19.2619C16.1831 16.4509 18.8028 14.4053 21.9017 14.4053C25.4863 14.4053 28.4299 17.1426 28.7452 20.6355C29.4629 20.0662 30.3716 19.726 31.3599 19.726C33.6816 19.726 35.5636 21.6029 35.5636 23.9181C35.5636 26.2334 33.6816 28.1102 31.3599 28.1102C31.3058 28.1102 31.2519 28.1092 31.1983 28.1072V28.1105H12.4433V28.1096Z",
16537
+ fill: "#3B5BDB",
16538
+ fillOpacity: 0.3
16539
+ }), /*#__PURE__*/React.createElement("path", {
16540
+ fillRule: "evenodd",
16541
+ clipRule: "evenodd",
16542
+ d: "M17.077 59.7212C17.0639 59.7214 17.0507 59.7215 17.0375 59.7215C15.7078 59.7215 14.6299 58.6466 14.6299 57.3205C14.6299 55.9945 15.7078 54.9196 17.0375 54.9196C17.5806 54.9196 18.0817 55.0989 18.4845 55.4014C18.9029 54.029 20.1819 53.0303 21.6949 53.0303C23.4451 53.0303 24.8824 54.3669 25.0362 56.0724C25.3866 55.7944 25.8302 55.6283 26.3128 55.6283C27.4463 55.6283 28.3652 56.5447 28.3652 57.6751C28.3652 58.8054 27.4463 59.7218 26.3128 59.7218C26.2864 59.7218 26.26 59.7213 26.2339 59.7203V59.7217H17.077V59.7212Z",
16543
+ fill: "#3B5BDB",
16544
+ fillOpacity: 0.3
16545
+ }), /*#__PURE__*/React.createElement("path", {
16546
+ fillRule: "evenodd",
16547
+ clipRule: "evenodd",
16548
+ d: "M51.8554 45.6714C51.8755 45.6718 51.8958 45.6719 51.916 45.6719C53.9561 45.6719 55.6099 43.9769 55.6099 41.886C55.6099 39.7952 53.9561 38.1002 51.916 38.1002C51.0827 38.1002 50.3139 38.383 49.6959 38.86C49.0541 36.6959 47.0917 35.1211 44.7705 35.1211C42.0852 35.1211 39.8802 37.2286 39.6442 39.9179C39.1066 39.4796 38.4259 39.2177 37.6855 39.2177C35.9465 39.2177 34.5367 40.6626 34.5367 42.445C34.5367 44.2274 35.9465 45.6723 37.6855 45.6723C37.7261 45.6723 37.7665 45.6715 37.8066 45.67V45.6721H51.8554V45.6714Z",
16549
+ fill: "#3B5BDB",
16550
+ fillOpacity: 0.3
16551
+ }), /*#__PURE__*/React.createElement("path", {
16552
+ fillRule: "evenodd",
16553
+ clipRule: "evenodd",
16554
+ d: "M150.742 16.4655C150.66 16.4725 150.577 16.476 150.493 16.476C148.894 16.476 147.597 15.183 147.597 13.588C147.597 11.993 148.894 10.7 150.493 10.7C150.688 10.7 150.878 10.7192 151.062 10.7558C151.584 8.82245 153.354 7.39941 155.457 7.39941C157.417 7.39941 159.087 8.63418 159.728 10.366C159.937 10.263 160.173 10.2052 160.422 10.2052C161.008 10.2052 161.518 10.5242 161.789 10.9973C162.175 10.807 162.61 10.7 163.07 10.7C164.669 10.7 165.966 11.993 165.966 13.588C165.966 15.183 164.669 16.476 163.07 16.476C163.042 16.476 163.015 16.4756 162.987 16.4748V16.476H150.742V16.4655Z",
16555
+ fill: "#3B5BDB",
16556
+ fillOpacity: 0.3
16557
+ }), /*#__PURE__*/React.createElement("path", {
16558
+ d: "M115.317 86.6337C115.317 88.8967 104.441 90.7313 91.0246 90.7313C77.6081 90.7313 66.7319 88.8967 66.7319 86.6337C66.7319 84.3707 77.6081 82.5361 91.0246 82.5361C104.441 82.5361 115.317 84.3707 115.317 86.6337Z",
16559
+ fill: "#3B5BDB",
16560
+ fillOpacity: 0.3
16561
+ }), /*#__PURE__*/React.createElement("path", {
16562
+ fillRule: "evenodd",
16563
+ clipRule: "evenodd",
16564
+ d: "M67.656 5.85669C66.0341 5.85669 64.3904 5.64884 64.3904 8.59922V75.4381C64.3904 78.3885 65.9995 78.4389 67.6214 78.4389H115.307C116.929 78.4389 118.244 78.3885 118.244 75.4381L118.209 8.85746C118.209 5.90708 116.271 5.85669 114.649 5.85669H67.656Z",
16565
+ fill: "white"
16566
+ }), /*#__PURE__*/React.createElement("path", {
16567
+ fillRule: "evenodd",
16568
+ clipRule: "evenodd",
16569
+ d: "M118.209 8.85746C118.209 5.90708 116.271 5.85669 114.649 5.85669H67.656C67.5556 5.85669 67.455 5.85589 67.3548 5.85509C65.8368 5.84305 64.3904 5.83158 64.3904 8.59922V75.4381C64.3904 78.3885 65.9995 78.4389 67.6214 78.4389H115.307C116.929 78.4389 118.244 78.3885 118.244 75.4381L118.209 8.85746ZM115.903 75.4381L115.868 8.85746C115.868 8.55226 115.836 8.36846 115.811 8.27076C115.764 8.25927 115.696 8.24597 115.602 8.23432C115.354 8.20357 115.063 8.19815 114.649 8.19815H67.656C67.5462 8.19815 67.4378 8.19729 67.3401 8.19651L67.3335 8.19646C67.2309 8.19565 67.1397 8.19495 67.051 8.19498C66.9336 8.19503 66.8349 8.19644 66.7493 8.19961C66.7392 8.30204 66.7318 8.43357 66.7318 8.59922V75.4381C66.7318 75.7386 66.7553 75.9409 66.7793 76.0687C66.9759 76.092 67.2256 76.0974 67.6214 76.0974H115.307C115.552 76.0974 115.729 76.0952 115.866 76.0889C115.886 75.9395 115.903 75.7279 115.903 75.4381Z",
16570
+ fill: "#292A33"
16571
+ }), /*#__PURE__*/React.createElement("path", {
16572
+ d: "M70.8725 12.8778C70.8727 12.5547 71.1347 12.293 71.4578 12.293H105.366C105.689 12.293 105.951 12.555 105.951 12.8783V63.8052C105.951 64.1285 105.689 64.3905 105.366 64.3905H71.4152C71.0917 64.3905 70.8296 64.1282 70.8298 63.8047L70.8725 12.8778Z",
16573
+ fill: "#EBEFFB"
16574
+ }), /*#__PURE__*/React.createElement("rect", {
16575
+ x: 162.573,
16576
+ y: 70.0283,
16577
+ width: 12.5769,
16578
+ height: 2.64072,
16579
+ rx: 1.32036,
16580
+ fill: "#292A33"
16581
+ }), /*#__PURE__*/React.createElement("path", {
16582
+ d: "M117.073 70.2441H157.463C158.11 70.2441 158.634 70.7683 158.634 71.4149V71.4149C158.634 72.0614 158.11 72.5856 157.463 72.5856H117.073V70.2441Z",
16583
+ fill: "#292A33"
16584
+ }), /*#__PURE__*/React.createElement("path", {
16585
+ d: "M28.6829 71.4149C28.6829 70.7683 29.207 70.2441 29.8536 70.2441H66.1463V72.5856H29.8536C29.207 72.5856 28.6829 72.0614 28.6829 71.4149V71.4149Z",
16586
+ fill: "#292A33"
16587
+ }), /*#__PURE__*/React.createElement("rect", {
16588
+ x: 17.4429,
16589
+ y: 70.0283,
16590
+ width: 8.10877,
16591
+ height: 2.64072,
16592
+ rx: 1.32036,
16593
+ fill: "#292A33"
16594
+ }), /*#__PURE__*/React.createElement("rect", {
16595
+ x: 93.0732,
16596
+ y: 70.2441,
16597
+ width: 8.10877,
16598
+ height: 2.64072,
16599
+ rx: 1.32036,
16600
+ fill: "#292A33"
16601
+ }), /*#__PURE__*/React.createElement("rect", {
16602
+ x: 112.689,
16603
+ y: 56.1953,
16604
+ width: 8.10877,
16605
+ height: 2.64072,
16606
+ rx: 1.32036,
16607
+ transform: "rotate(90 112.689 56.1953)",
16608
+ fill: "#292A33"
16609
+ }), /*#__PURE__*/React.createElement("rect", {
16610
+ x: 104.781,
16611
+ y: 70.2441,
16612
+ width: 8.10877,
16613
+ height: 2.64072,
16614
+ rx: 1.32036,
16615
+ fill: "#292A33"
16616
+ }), /*#__PURE__*/React.createElement("path", {
16617
+ fillRule: "evenodd",
16618
+ clipRule: "evenodd",
16619
+ d: "M96.4624 31.5838C95.8425 31.5838 95.2796 32.0356 95.1249 32.7055C95.0174 33.1711 94.5519 33.4615 94.0853 33.3542C93.6187 33.2469 93.3276 32.7825 93.4352 32.3169C93.7555 30.9299 94.9667 29.8535 96.4624 29.8535C97.9582 29.8535 99.1694 30.9299 99.4897 32.3169C99.5972 32.7825 99.3062 33.2469 98.8396 33.3542C98.3729 33.4615 97.9075 33.1711 97.8 32.7055C97.6452 32.0356 97.0824 31.5838 96.4624 31.5838Z",
16620
+ fill: "#3B5BDB"
16621
+ }), /*#__PURE__*/React.createElement("path", {
16622
+ fillRule: "evenodd",
16623
+ clipRule: "evenodd",
16624
+ d: "M80.3179 31.5838C79.6979 31.5838 79.1351 32.0356 78.9804 32.7055C78.8728 33.1711 78.4074 33.4615 77.9408 33.3542C77.4742 33.2469 77.1831 32.7825 77.2907 32.3169C77.611 30.9299 78.8221 29.8535 80.3179 29.8535C81.8137 29.8535 83.0248 30.9299 83.3452 32.3169C83.4527 32.7825 83.1616 33.2469 82.695 33.3542C82.2284 33.4615 81.763 33.1711 81.6554 32.7055C81.5007 32.0356 80.9379 31.5838 80.3179 31.5838Z",
16625
+ fill: "#3B5BDB"
16626
+ }), /*#__PURE__*/React.createElement("path", {
16627
+ fillRule: "evenodd",
16628
+ clipRule: "evenodd",
16629
+ d: "M82.8702 42.6553C83.349 42.6553 83.7372 43.0426 83.7372 43.5204C83.7372 44.2447 84.3256 44.8319 85.0514 44.8319H91.7293C92.4551 44.8319 93.0435 44.2447 93.0435 43.5204C93.0435 43.0426 93.4317 42.6553 93.9105 42.6553C94.3894 42.6553 94.7775 43.0426 94.7775 43.5204C94.7775 45.2003 93.4128 46.5622 91.7293 46.5622H85.0514C83.3679 46.5622 82.0032 45.2003 82.0032 43.5204C82.0032 43.0426 82.3914 42.6553 82.8702 42.6553Z",
16630
+ fill: "#3B5BDB"
16631
+ }), /*#__PURE__*/React.createElement("g", {
16632
+ filter: "url(#filter0_d_4997_39198)"
16633
+ }, /*#__PURE__*/React.createElement("path", {
16634
+ d: "M118.244 20.1895H151.308C153.794 20.1895 155.809 22.2045 155.809 24.6903V24.9302C155.809 27.416 153.794 29.4311 151.308 29.4311H118.244V20.1895Z",
16635
+ fill: "white"
16636
+ }), /*#__PURE__*/React.createElement("rect", {
16637
+ x: 144.722,
16638
+ y: 23.8203,
16639
+ width: 7.44683,
16640
+ height: 1.98054,
16641
+ rx: 0.990269,
16642
+ fill: "#959CA8"
16643
+ }), /*#__PURE__*/React.createElement("rect", {
16644
+ x: 137.606,
16645
+ y: 23.8203,
16646
+ width: 4.4681,
16647
+ height: 1.98054,
16648
+ rx: 0.990269,
16649
+ fill: "#959CA8"
16650
+ }), /*#__PURE__*/React.createElement("rect", {
16651
+ x: 124.367,
16652
+ y: 23.8203,
16653
+ width: 10.5911,
16654
+ height: 1.98054,
16655
+ rx: 0.990269,
16656
+ fill: "#959CA8"
16657
+ }), /*#__PURE__*/React.createElement("path", {
16658
+ d: "M118.244 23.8203H120.729C121.276 23.8203 121.719 24.2637 121.719 24.8106V24.8106C121.719 25.3575 121.276 25.8009 120.729 25.8009H118.244V23.8203Z",
16659
+ fill: "#959CA8"
16660
+ })), /*#__PURE__*/React.createElement("g", {
16661
+ filter: "url(#filter1_d_4997_39198)"
16662
+ }, /*#__PURE__*/React.createElement("rect", {
16663
+ x: 125.836,
16664
+ y: 28.1113,
16665
+ width: 53.2862,
16666
+ height: 9.2416,
16667
+ rx: 4.5008,
16668
+ fill: "white"
16669
+ }), /*#__PURE__*/React.createElement("rect", {
16670
+ x: 164.229,
16671
+ y: 31.7422,
16672
+ width: 11.253,
16673
+ height: 1.98054,
16674
+ rx: 0.990269,
16675
+ fill: "#959CA8"
16676
+ }), /*#__PURE__*/React.createElement("rect", {
16677
+ x: 147.68,
16678
+ y: 31.7422,
16679
+ width: 13.9008,
16680
+ height: 1.98054,
16681
+ rx: 0.990269,
16682
+ fill: "#959CA8"
16683
+ }), /*#__PURE__*/React.createElement("rect", {
16684
+ x: 140.233,
16685
+ y: 31.7422,
16686
+ width: 4.79907,
16687
+ height: 1.98054,
16688
+ rx: 0.990269,
16689
+ fill: "#959CA8"
16690
+ }), /*#__PURE__*/React.createElement("rect", {
16691
+ x: 129.477,
16692
+ y: 31.7422,
16693
+ width: 8.10877,
16694
+ height: 1.98054,
16695
+ rx: 0.990269,
16696
+ fill: "#959CA8"
16697
+ })), /*#__PURE__*/React.createElement("path", {
16698
+ d: "M118.244 57.6594V60.7877L126.495 65.2624C127.195 65.6421 128.062 65.5138 128.622 64.9478L139.261 54.1865H135.62L127.589 62.5156C127.446 62.6637 127.22 62.6953 127.042 62.5919L118.244 57.6594Z",
16699
+ fill: "#3B5BDB"
16700
+ }), /*#__PURE__*/React.createElement("path", {
16701
+ d: "M131.708 52.8663C131.708 52.137 132.3 51.5459 133.031 51.5459H143.954C144.685 51.5459 145.277 52.137 145.277 52.8663V52.8663C145.277 53.5955 144.685 54.1866 143.954 54.1866H133.031C132.3 54.1866 131.708 53.5955 131.708 52.8663V52.8663Z",
16702
+ fill: "#3B5BDB"
16703
+ }), /*#__PURE__*/React.createElement("path", {
16704
+ fillRule: "evenodd",
16705
+ clipRule: "evenodd",
16706
+ d: "M83.3283 63.4473C84.1249 63.5441 84.692 64.267 84.595 65.0618C84.5327 65.5717 84.5006 66.0914 84.5006 66.6193C84.5006 68.5554 84.9326 70.3868 85.7044 72.0265C86.0456 72.7512 85.7333 73.6147 85.007 73.9551C84.2807 74.2955 83.4154 73.984 83.0742 73.2592C82.1247 71.2419 81.5947 68.9903 81.5947 66.6193C81.5947 65.974 81.634 65.3372 81.7104 64.7112C81.8074 63.9164 82.5318 63.3505 83.3283 63.4473Z",
16707
+ fill: "#3B5BDB"
16708
+ }), /*#__PURE__*/React.createElement("path", {
16709
+ d: "M64.683 55.0245V58.244L63.1895 58.9406C69.4503 61.6998 83.3787 67.841 83.3787 67.841V70.8672L60.092 60.5667C58.8353 60.0108 58.7888 58.1134 60.0167 57.4871L64.683 55.0245Z",
16710
+ fill: "#3B5BDB"
16711
+ }), /*#__PURE__*/React.createElement("g", {
16712
+ filter: "url(#filter2_d_4997_39198)"
16713
+ }, /*#__PURE__*/React.createElement("rect", {
16714
+ x: 128.195,
16715
+ y: 30.5869,
16716
+ width: 18.5343,
16717
+ height: 18.4832,
16718
+ rx: 8.439,
16719
+ fill: "#3B5BDB"
16720
+ })), /*#__PURE__*/React.createElement("path", {
16721
+ d: "M138.41 45.0735V44.0862C139.872 43.8932 140.787 43.0549 140.787 41.8526C140.787 40.6557 140.19 39.7843 138.75 39.4369L137.474 39.1225C136.614 38.8964 136.362 38.6647 136.362 38.2015C136.362 37.6223 136.899 37.2252 137.77 37.2252C138.613 37.2252 138.93 37.6554 139.029 38.3614L140.644 38.3338C140.661 37.1922 139.823 36.2435 138.443 36.0009V34.9033H137.058V35.9953C135.645 36.2104 134.637 37.0874 134.648 38.389C134.665 39.6134 135.442 40.3248 136.652 40.573L137.95 40.8543C138.722 41.0308 139.089 41.2735 139.089 41.8636C139.089 42.4317 138.525 42.8563 137.737 42.8563C136.861 42.8563 136.247 42.4703 136.078 41.7423L134.413 41.7753C134.561 43.1707 135.53 43.9208 137.03 44.0918V45.0735H138.41Z",
16722
+ fill: "white"
16723
+ }), /*#__PURE__*/React.createElement("mask", {
16724
+ id: "mask0_4997_39198",
16725
+ style: {
16726
+ maskType: "luminance"
16727
+ },
16728
+ maskUnits: "userSpaceOnUse",
16729
+ x: 134,
16730
+ y: 34,
16731
+ width: 7,
16732
+ height: 12
16733
+ }, /*#__PURE__*/React.createElement("path", {
16734
+ d: "M138.41 45.0735V44.0862C139.872 43.8932 140.787 43.0549 140.787 41.8526C140.787 40.6557 140.19 39.7843 138.75 39.4369L137.474 39.1225C136.614 38.8964 136.362 38.6647 136.362 38.2015C136.362 37.6223 136.899 37.2252 137.77 37.2252C138.613 37.2252 138.93 37.6554 139.029 38.3614L140.644 38.3338C140.661 37.1922 139.823 36.2435 138.443 36.0009V34.9033H137.058V35.9953C135.645 36.2104 134.637 37.0874 134.648 38.389C134.665 39.6134 135.442 40.3248 136.652 40.573L137.95 40.8543C138.722 41.0308 139.089 41.2735 139.089 41.8636C139.089 42.4317 138.525 42.8563 137.737 42.8563C136.861 42.8563 136.247 42.4703 136.078 41.7423L134.413 41.7753C134.561 43.1707 135.53 43.9208 137.03 44.0918V45.0735H138.41Z",
16735
+ fill: "white"
16736
+ })), /*#__PURE__*/React.createElement("g", {
16737
+ mask: "url(#mask0_4997_39198)"
16738
+ }, /*#__PURE__*/React.createElement("rect", {
16739
+ x: 129.951,
16740
+ y: 32.2012,
16741
+ width: 15.2974,
16742
+ height: 15.2552,
16743
+ fill: "white"
16744
+ })), /*#__PURE__*/React.createElement("path", {
16745
+ d: "M73.1709 76.0977H108.878V86.0489C108.878 86.6955 108.354 87.2196 107.707 87.2196H74.3416C73.6951 87.2196 73.1709 86.6955 73.1709 86.0489V76.0977Z",
16746
+ fill: "white"
16747
+ }), /*#__PURE__*/React.createElement("path", {
16748
+ fillRule: "evenodd",
16749
+ clipRule: "evenodd",
16750
+ d: "M106.537 78.4391H75.5124V84.8781H106.537V78.4391ZM73.1709 76.0977V86.0489C73.1709 86.6955 73.6951 87.2196 74.3416 87.2196H107.707C108.354 87.2196 108.878 86.6955 108.878 86.0489V76.0977H73.1709Z",
16751
+ fill: "#292A33"
16752
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
16753
+ id: "filter0_d_4997_39198",
16754
+ x: 107.093,
16755
+ y: 9.03814,
16756
+ width: 59.8678,
16757
+ height: 31.5438,
16758
+ filterUnits: "userSpaceOnUse",
16759
+ colorInterpolationFilters: "sRGB"
16760
+ }, /*#__PURE__*/React.createElement("feFlood", {
16761
+ floodOpacity: 0,
16762
+ result: "BackgroundImageFix"
16763
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16764
+ "in": "SourceAlpha",
16765
+ type: "matrix",
16766
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
16767
+ result: "hardAlpha"
16768
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
16769
+ stdDeviation: 5.57566
16770
+ }), /*#__PURE__*/React.createElement("feComposite", {
16771
+ in2: "hardAlpha",
16772
+ operator: "out"
16773
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16774
+ type: "matrix",
16775
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
16776
+ }), /*#__PURE__*/React.createElement("feBlend", {
16777
+ mode: "normal",
16778
+ in2: "BackgroundImageFix",
16779
+ result: "effect1_dropShadow_4997_39198"
16780
+ }), /*#__PURE__*/React.createElement("feBlend", {
16781
+ mode: "normal",
16782
+ "in": "SourceGraphic",
16783
+ in2: "effect1_dropShadow_4997_39198",
16784
+ result: "shape"
16785
+ })), /*#__PURE__*/React.createElement("filter", {
16786
+ id: "filter1_d_4997_39198",
16787
+ x: 114.685,
16788
+ y: 16.96,
16789
+ width: 75.5888,
16790
+ height: 31.5438,
16791
+ filterUnits: "userSpaceOnUse",
16792
+ colorInterpolationFilters: "sRGB"
16793
+ }, /*#__PURE__*/React.createElement("feFlood", {
16794
+ floodOpacity: 0,
16795
+ result: "BackgroundImageFix"
16796
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16797
+ "in": "SourceAlpha",
16798
+ type: "matrix",
16799
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
16800
+ result: "hardAlpha"
16801
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
16802
+ stdDeviation: 5.57566
16803
+ }), /*#__PURE__*/React.createElement("feComposite", {
16804
+ in2: "hardAlpha",
16805
+ operator: "out"
16806
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16807
+ type: "matrix",
16808
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
16809
+ }), /*#__PURE__*/React.createElement("feBlend", {
16810
+ mode: "normal",
16811
+ in2: "BackgroundImageFix",
16812
+ result: "effect1_dropShadow_4997_39198"
16813
+ }), /*#__PURE__*/React.createElement("feBlend", {
16814
+ mode: "normal",
16815
+ "in": "SourceGraphic",
16816
+ in2: "effect1_dropShadow_4997_39198",
16817
+ result: "shape"
16818
+ })), /*#__PURE__*/React.createElement("filter", {
16819
+ id: "filter2_d_4997_39198",
16820
+ x: 113.195,
16821
+ y: 15.5869,
16822
+ width: 48.5344,
16823
+ height: 48.4834,
16824
+ filterUnits: "userSpaceOnUse",
16825
+ colorInterpolationFilters: "sRGB"
16826
+ }, /*#__PURE__*/React.createElement("feFlood", {
16827
+ floodOpacity: 0,
16828
+ result: "BackgroundImageFix"
16829
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16830
+ "in": "SourceAlpha",
16831
+ type: "matrix",
16832
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
16833
+ result: "hardAlpha"
16834
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
16835
+ stdDeviation: 7.5
16836
+ }), /*#__PURE__*/React.createElement("feComposite", {
16837
+ in2: "hardAlpha",
16838
+ operator: "out"
16839
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
16840
+ type: "matrix",
16841
+ values: "0 0 0 0 0.0823529 0 0 0 0 0.454902 0 0 0 0 0.615686 0 0 0 0.2 0"
16842
+ }), /*#__PURE__*/React.createElement("feBlend", {
16843
+ mode: "normal",
16844
+ in2: "BackgroundImageFix",
16845
+ result: "effect1_dropShadow_4997_39198"
16846
+ }), /*#__PURE__*/React.createElement("feBlend", {
16847
+ mode: "normal",
16848
+ "in": "SourceGraphic",
16849
+ in2: "effect1_dropShadow_4997_39198",
16850
+ result: "shape"
16851
+ }))));
16852
+ };
16853
+
16854
+ var PointOfSaleImage = function PointOfSaleImage() {
16855
+ return /*#__PURE__*/React.createElement("svg", {
16856
+ width: 180,
16857
+ height: 96,
16858
+ viewBox: "0 0 180 96",
16859
+ fill: "none",
16860
+ xmlns: "http://www.w3.org/2000/svg"
16861
+ }, /*#__PURE__*/React.createElement("path", {
16862
+ fillRule: "evenodd",
16863
+ clipRule: "evenodd",
16864
+ d: "M142.706 17.5583C140.253 17.3968 138.314 15.3563 138.314 12.8627C138.314 10.2637 140.421 8.15681 143.02 8.15681C143.913 8.15681 144.749 8.40592 145.46 8.8385C146.262 5.91385 148.939 3.76465 152.118 3.76465C155.728 3.76465 158.691 6.53709 158.994 10.0693C159.633 9.65335 160.396 9.41171 161.216 9.41171C163.468 9.41171 165.294 11.2377 165.294 13.4901C165.294 15.7426 163.468 17.5686 161.216 17.5686C161.11 17.5686 161.005 17.5646 160.902 17.5567V17.5686H152.118H143.02H142.706V17.5583Z",
16865
+ fill: "#15749D",
16866
+ fillOpacity: 0.3
16867
+ }), /*#__PURE__*/React.createElement("path", {
16868
+ fillRule: "evenodd",
16869
+ clipRule: "evenodd",
16870
+ d: "M20.3531 64.627C18.9669 64.627 17.8433 63.5034 17.8433 62.1172C17.8433 60.7311 18.9669 59.6074 20.3531 59.6074C20.7424 59.6074 21.1111 59.6961 21.44 59.8544C21.9913 58.9536 22.9843 58.3525 24.1178 58.3525C25.5139 58.3525 26.6971 59.2646 27.104 60.5253C27.4257 60.3406 27.7986 60.2349 28.1962 60.2349C29.4091 60.2349 30.3923 61.2181 30.3923 62.431C30.3923 63.6438 29.4091 64.627 28.1962 64.627H24.1178H20.3531Z",
16871
+ fill: "#15749D",
16872
+ fillOpacity: 0.3
16873
+ }), /*#__PURE__*/React.createElement("path", {
16874
+ fillRule: "evenodd",
16875
+ clipRule: "evenodd",
16876
+ d: "M60.8237 8.78431H53.608H49.147V8.77384C49.0663 8.78078 48.9846 8.78431 48.9021 8.78431C47.3428 8.78431 46.0786 7.52018 46.0786 5.96078C46.0786 4.40139 47.3428 3.13726 48.9021 3.13726C49.067 3.13726 49.2286 3.15139 49.3857 3.1785C49.9123 1.34307 51.6033 0 53.608 0C55.4761 0 57.0719 1.1663 57.7068 2.81047C57.8935 2.7321 58.0986 2.68878 58.3139 2.68878C58.8648 2.68878 59.3494 2.97248 59.6292 3.40162C59.992 3.232 60.3968 3.13726 60.8237 3.13726C62.3831 3.13726 63.6472 4.40139 63.6472 5.96078C63.6472 7.43768 62.5133 8.64973 61.0686 8.77384V8.78431H60.8237Z",
16877
+ fill: "#15749D",
16878
+ fillOpacity: 0.3
16879
+ }), /*#__PURE__*/React.createElement("path", {
16880
+ d: "M109.451 91.9212C109.451 94.1737 100.883 95.9996 90.3138 95.9996C79.7446 95.9996 71.1765 94.1737 71.1765 91.9212C71.1765 89.6687 79.7446 87.8428 90.3138 87.8428C100.883 87.8428 109.451 89.6687 109.451 91.9212Z",
16881
+ fill: "#15749D",
16882
+ fillOpacity: 0.3
16883
+ }), /*#__PURE__*/React.createElement("path", {
16884
+ d: "M49.8433 32H130.784V80.3137C130.784 81.0068 130.223 81.5686 129.53 81.5686H51.0982C50.4051 81.5686 49.8433 81.0068 49.8433 80.3137V32Z",
16885
+ fill: "white"
16886
+ }), /*#__PURE__*/React.createElement("path", {
16887
+ d: "M47.9609 22.9333C47.9609 21.0102 49.5199 19.4512 51.4431 19.4512H129.185C131.108 19.4512 132.667 21.0102 132.667 22.9333V32.0002H47.9609V22.9333Z",
16888
+ fill: "#E5E7EC"
16889
+ }), /*#__PURE__*/React.createElement("path", {
16890
+ d: "M63.0196 25.7243C63.0196 26.4166 62.4577 26.9778 61.7647 26.9778C61.0716 26.9778 60.5098 26.4166 60.5098 25.7243C60.5098 25.0319 61.0716 24.4707 61.7647 24.4707C62.4577 24.4707 63.0196 25.0319 63.0196 25.7243Z",
16891
+ fill: "#292A33"
16892
+ }), /*#__PURE__*/React.createElement("path", {
16893
+ d: "M59.2549 25.7243C59.2549 26.4166 58.6931 26.9778 58 26.9778C57.307 26.9778 56.7451 26.4166 56.7451 25.7243C56.7451 25.0319 57.307 24.4707 58 24.4707C58.6931 24.4707 59.2549 25.0319 59.2549 25.7243Z",
16894
+ fill: "#292A33"
16895
+ }), /*#__PURE__*/React.createElement("path", {
16896
+ d: "M55.4903 25.7243C55.4903 26.4166 54.9284 26.9778 54.2354 26.9778C53.5423 26.9778 52.9805 26.4166 52.9805 25.7243C52.9805 25.0319 53.5423 24.4707 54.2354 24.4707C54.9284 24.4707 55.4903 25.0319 55.4903 25.7243Z",
16897
+ fill: "#292A33"
16898
+ }), /*#__PURE__*/React.createElement("path", {
16899
+ fillRule: "evenodd",
16900
+ clipRule: "evenodd",
16901
+ d: "M129.53 21.3335H51.0982C50.4051 21.3335 49.8433 21.8954 49.8433 22.5884V80.3139C49.8433 81.007 50.4051 81.5688 51.0982 81.5688H129.53C130.223 81.5688 130.784 81.007 130.784 80.3139V22.5884C130.784 21.8954 130.223 21.3335 129.53 21.3335ZM51.0982 19.4512C49.3655 19.4512 47.9609 20.8558 47.9609 22.5884V80.3139C47.9609 82.0466 49.3655 83.4512 51.0982 83.4512H129.53C131.262 83.4512 132.667 82.0466 132.667 80.3139V22.5884C132.667 20.8558 131.262 19.4512 129.53 19.4512H51.0982Z",
16902
+ fill: "#292A33"
16903
+ }), /*#__PURE__*/React.createElement("path", {
16904
+ d: "M157.765 75.9219C157.765 75.2288 158.326 74.667 159.02 74.667H169.686C170.379 74.667 170.941 75.2288 170.941 75.9219V75.9219C170.941 76.615 170.379 77.1768 169.686 77.1768H159.02C158.326 77.1768 157.765 76.615 157.765 75.9219V75.9219Z",
16905
+ fill: "#292A33"
16906
+ }), /*#__PURE__*/React.createElement("path", {
16907
+ d: "M132.667 74.667H153.252C153.95 74.667 154.517 75.2335 154.517 75.9323V75.9323C154.517 76.6311 153.95 77.1976 153.252 77.1976H132.667V74.667Z",
16908
+ fill: "#292A33"
16909
+ }), /*#__PURE__*/React.createElement("path", {
16910
+ d: "M30.3923 75.9219C30.3923 75.2288 30.9542 74.667 31.6472 74.667H47.961V77.1768H31.6472C30.9542 77.1768 30.3923 76.615 30.3923 75.9219V75.9219Z",
16911
+ fill: "#292A33"
16912
+ }), /*#__PURE__*/React.createElement("path", {
16913
+ d: "M19.7256 75.9219C19.7256 75.2288 20.2874 74.667 20.9805 74.667H26.0001C26.6932 74.667 27.255 75.2288 27.255 75.9219V75.9219C27.255 76.615 26.6932 77.1768 26.0001 77.1768H20.9805C20.2874 77.1768 19.7256 76.615 19.7256 75.9219V75.9219Z",
16914
+ fill: "#292A33"
16915
+ }), /*#__PURE__*/React.createElement("path", {
16916
+ fillRule: "evenodd",
16917
+ clipRule: "evenodd",
16918
+ d: "M99.7255 48.4773C98.639 48.4773 97.8554 49.1092 97.6631 49.7849C97.5435 50.2053 97.1057 50.4491 96.6854 50.3295C96.265 50.2098 96.0211 49.7721 96.1408 49.3517C96.5631 47.8673 98.0747 46.8945 99.7255 46.8945C101.376 46.8945 102.888 47.8673 103.31 49.3517C103.43 49.7721 103.186 50.2098 102.766 50.3295C102.345 50.4491 101.907 50.2053 101.788 49.7849C101.596 49.1092 100.812 48.4773 99.7255 48.4773Z",
16919
+ fill: "#292A33"
16920
+ }), /*#__PURE__*/React.createElement("path", {
16921
+ fillRule: "evenodd",
16922
+ clipRule: "evenodd",
16923
+ d: "M82.1569 48.4773C81.0704 48.4773 80.2868 49.1092 80.0945 49.7849C79.9749 50.2053 79.5371 50.4491 79.1167 50.3295C78.6964 50.2098 78.4525 49.7721 78.5722 49.3517C78.9945 47.8673 80.5061 46.8945 82.1569 46.8945C83.8077 46.8945 85.3192 47.8673 85.7416 49.3517C85.8612 49.7721 85.6174 50.2098 85.197 50.3295C84.7766 50.4491 84.3389 50.2053 84.2192 49.7849C84.027 49.1092 83.2434 48.4773 82.1569 48.4773Z",
16924
+ fill: "#292A33"
16925
+ }), /*#__PURE__*/React.createElement("path", {
16926
+ fillRule: "evenodd",
16927
+ clipRule: "evenodd",
16928
+ d: "M83.098 59.4443C83.5351 59.4443 83.8894 59.7987 83.8894 60.2357C83.8894 61.1848 84.6588 61.9541 85.6078 61.9541H95.0196C95.9687 61.9541 96.738 61.1848 96.738 60.2357C96.738 59.7987 97.0923 59.4443 97.5294 59.4443C97.9665 59.4443 98.3208 59.7987 98.3208 60.2357C98.3208 62.0589 96.8428 63.5369 95.0196 63.5369H85.6078C83.7846 63.5369 82.3066 62.0589 82.3066 60.2357C82.3066 59.7987 82.661 59.4443 83.098 59.4443Z",
16929
+ fill: "#292A33"
16930
+ }), /*#__PURE__*/React.createElement("path", {
16931
+ d: "M47.9609 30.1172H132.667V31.9995H47.9609V30.1172Z",
16932
+ fill: "#292A33"
16933
+ }), /*#__PURE__*/React.createElement("g", {
16934
+ filter: "url(#filter0_d_4979_37133)"
16935
+ }, /*#__PURE__*/React.createElement("path", {
16936
+ d: "M22.2354 35.1377C22.2354 34.4447 22.7972 33.8828 23.4903 33.8828H47.9608V42.0397H23.4903C22.7972 42.0397 22.2354 41.4778 22.2354 40.7848V35.1377Z",
16937
+ fill: "white"
16938
+ }), /*#__PURE__*/React.createElement("path", {
16939
+ fillRule: "evenodd",
16940
+ clipRule: "evenodd",
16941
+ d: "M25.9323 37.6658C25.5914 37.5877 25.5079 37.5381 25.5079 37.4245V37.4175C25.5079 37.3252 25.5878 37.2577 25.7514 37.2577C25.9455 37.2577 26.1621 37.3239 26.3658 37.4561C26.4039 37.4808 26.4541 37.4725 26.4801 37.4349L26.724 37.0836C26.7499 37.0462 26.7429 36.9935 26.7064 36.9669C26.5557 36.8569 26.3858 36.779 26.1926 36.7335V36.4748C26.1926 36.4294 26.1565 36.3926 26.112 36.3926H25.6219C25.5774 36.3926 25.5413 36.4294 25.5413 36.4748V36.7055C25.0931 36.7813 24.8261 37.0836 24.8261 37.4813V37.4884C24.8261 37.9957 25.2261 38.1448 25.7444 38.2654C26.0783 38.347 26.1584 38.4003 26.1584 38.5066V38.5138C26.1584 38.6202 26.061 38.6839 25.8766 38.6839C25.6183 38.6839 25.3747 38.5976 25.1483 38.4329C25.1127 38.407 25.0633 38.4148 25.0353 38.449L24.7648 38.7786C24.7353 38.8145 24.7391 38.869 24.7752 38.8981C24.9925 39.0729 25.2567 39.1835 25.5413 39.2299V39.4543C25.5413 39.496 25.5745 39.5298 25.6154 39.5298H26.1186C26.1595 39.5298 26.1926 39.496 26.1926 39.4543V39.2163C26.5893 39.1204 26.8366 38.8483 26.8366 38.4463V38.4393C26.8366 37.9744 26.4888 37.7899 25.9323 37.6658Z",
16942
+ fill: "#959CA8"
16943
+ }), /*#__PURE__*/React.createElement("path", {
16944
+ d: "M40.4314 37.9617C40.4314 37.4419 40.8528 37.0205 41.3726 37.0205H47.9608V38.9029H41.3726C40.8528 38.9029 40.4314 38.4815 40.4314 37.9617V37.9617Z",
16945
+ fill: "#959CA8"
16946
+ }), /*#__PURE__*/React.createElement("path", {
16947
+ d: "M29.7646 37.9617C29.7646 37.4419 30.186 37.0205 30.7058 37.0205H36.9803C37.5001 37.0205 37.9215 37.4419 37.9215 37.9617V37.9617C37.9215 38.4815 37.5001 38.9029 36.9803 38.9029H30.7058C30.186 38.9029 29.7646 38.4815 29.7646 37.9617V37.9617Z",
16948
+ fill: "#959CA8"
16949
+ })), /*#__PURE__*/React.createElement("g", {
16950
+ filter: "url(#filter1_d_4979_37133)"
16951
+ }, /*#__PURE__*/React.createElement("path", {
16952
+ d: "M5.92163 42.0391C5.92163 41.346 6.48347 40.7842 7.17653 40.7842H55.4903C56.1833 40.7842 56.7452 41.346 56.7452 42.0391V47.6861C56.7452 48.3792 56.1833 48.941 55.4903 48.941H7.17653C6.48347 48.941 5.92163 48.3792 5.92163 47.6861V42.0391Z",
16953
+ fill: "white"
16954
+ }), /*#__PURE__*/React.createElement("path", {
16955
+ fillRule: "evenodd",
16956
+ clipRule: "evenodd",
16957
+ d: "M9.61856 44.5671C9.27768 44.4891 9.19416 44.4395 9.19416 44.3259V44.3189C9.19416 44.2266 9.27411 44.1591 9.43766 44.1591C9.63178 44.1591 9.84835 44.2252 10.0521 44.3575C10.0902 44.3822 10.1403 44.3738 10.1664 44.3362L10.4103 43.9849C10.4362 43.9476 10.4292 43.8949 10.3926 43.8683C10.242 43.7583 10.0721 43.6804 9.87892 43.6349V43.3761C9.87892 43.3308 9.84282 43.2939 9.79826 43.2939H9.30818C9.26369 43.2939 9.22759 43.3308 9.22759 43.3761V43.6069C8.77941 43.6827 8.5124 43.9849 8.5124 44.3826V44.3898C8.5124 44.8971 8.91239 45.0461 9.43066 45.1667C9.76462 45.2483 9.84464 45.3016 9.84464 45.4079V45.4152C9.84464 45.5215 9.74727 45.5853 9.56287 45.5853C9.30461 45.5853 9.06097 45.499 8.8346 45.3342C8.799 45.3083 8.74961 45.3162 8.72163 45.3504L8.45105 45.6799C8.4216 45.7159 8.42538 45.7704 8.46148 45.7994C8.67882 45.9743 8.94296 46.0849 9.22759 46.1313V46.3556C9.22759 46.3974 9.26075 46.4312 9.30167 46.4312H9.80484C9.84576 46.4312 9.87892 46.3974 9.87892 46.3556V46.1176C10.2755 46.0218 10.5229 45.7496 10.5229 45.3477V45.3407C10.5229 44.8758 10.1751 44.6913 9.61856 44.5671Z",
16958
+ fill: "#959CA8"
16959
+ }), /*#__PURE__*/React.createElement("path", {
16960
+ d: "M41.6863 44.8631C41.6863 44.3433 42.1077 43.9219 42.6275 43.9219H52.6667C53.1865 43.9219 53.6078 44.3433 53.6078 44.8631V44.8631C53.6078 45.3828 53.1865 45.8042 52.6667 45.8042H42.6275C42.1077 45.8042 41.6863 45.3828 41.6863 44.8631V44.8631Z",
16961
+ fill: "#959CA8"
16962
+ }), /*#__PURE__*/React.createElement("path", {
16963
+ d: "M26 44.8631C26 44.3433 26.4214 43.9219 26.9412 43.9219H38.2353C38.7551 43.9219 39.1765 44.3433 39.1765 44.8631V44.8631C39.1765 45.3828 38.7551 45.8042 38.2353 45.8042H26.9412C26.4214 45.8042 26 45.3828 26 44.8631V44.8631Z",
16964
+ fill: "#959CA8"
16965
+ }), /*#__PURE__*/React.createElement("path", {
16966
+ d: "M13.4509 44.8631C13.4509 44.3433 13.8723 43.9219 14.3921 43.9219H22.549C23.0688 43.9219 23.4901 44.3433 23.4901 44.8631V44.8631C23.4901 45.3828 23.0688 45.8042 22.549 45.8042H14.3921C13.8723 45.8042 13.4509 45.3828 13.4509 44.8631V44.8631Z",
16967
+ fill: "#959CA8"
16968
+ })), /*#__PURE__*/React.createElement("g", {
16969
+ filter: "url(#filter2_d_4979_37133)"
16970
+ }, /*#__PURE__*/React.createElement("path", {
16971
+ d: "M132.667 27.6074H167.804C168.497 27.6074 169.059 28.1693 169.059 28.8623V34.5094C169.059 35.2024 168.497 35.7643 167.804 35.7643H132.667V27.6074Z",
16972
+ fill: "white"
16973
+ }), /*#__PURE__*/React.createElement("path", {
16974
+ d: "M157.765 31.6853C157.765 31.1655 158.186 30.7441 158.706 30.7441H164.98C165.5 30.7441 165.922 31.1655 165.922 31.6853V31.6853C165.922 32.2051 165.5 32.6265 164.98 32.6265H158.706C158.186 32.6265 157.765 32.2051 157.765 31.6853V31.6853Z",
16975
+ fill: "#959CA8"
16976
+ }), /*#__PURE__*/React.createElement("path", {
16977
+ d: "M146.471 31.6853C146.471 31.1655 146.892 30.7441 147.412 30.7441H154.314C154.834 30.7441 155.255 31.1655 155.255 31.6853V31.6853C155.255 32.2051 154.834 32.6265 154.314 32.6265H147.412C146.892 32.6265 146.471 32.2051 146.471 31.6853V31.6853Z",
16978
+ fill: "#959CA8"
16979
+ }), /*#__PURE__*/React.createElement("path", {
16980
+ d: "M132.667 30.7441H143.02C143.539 30.7441 143.961 31.1655 143.961 31.6853V31.6853C143.961 32.2051 143.539 32.6265 143.02 32.6265H132.667V30.7441Z",
16981
+ fill: "#959CA8"
16982
+ })), /*#__PURE__*/React.createElement("g", {
16983
+ filter: "url(#filter3_d_4979_37133)"
16984
+ }, /*#__PURE__*/React.createElement("path", {
16985
+ d: "M123.255 35.7647C123.255 35.0716 123.817 34.5098 124.51 34.5098H172.824C173.517 34.5098 174.078 35.0716 174.078 35.7647V41.4117C174.078 42.1048 173.517 42.6666 172.824 42.6666H124.51C123.817 42.6666 123.255 42.1048 123.255 41.4117V35.7647Z",
16986
+ fill: "white"
16987
+ }), /*#__PURE__*/React.createElement("path", {
16988
+ fillRule: "evenodd",
16989
+ clipRule: "evenodd",
16990
+ d: "M126.952 38.2927C126.611 38.2147 126.527 38.1651 126.527 38.0515V38.0445C126.527 37.9522 126.607 37.8847 126.771 37.8847C126.965 37.8847 127.182 37.9508 127.385 38.0831C127.423 38.1078 127.474 38.0994 127.5 38.0618L127.744 37.7105C127.769 37.6731 127.762 37.6205 127.726 37.5939C127.575 37.4839 127.405 37.4059 127.212 37.3605V37.1017C127.212 37.0563 127.176 37.0195 127.132 37.0195H126.641C126.597 37.0195 126.561 37.0563 126.561 37.1017V37.3325C126.113 37.4083 125.846 37.7105 125.846 38.1082V38.1153C125.846 38.6227 126.246 38.7717 126.764 38.8923C127.098 38.9739 127.178 39.0272 127.178 39.1335V39.1407C127.178 39.2471 127.081 39.3109 126.896 39.3109C126.638 39.3109 126.394 39.2246 126.168 39.0598C126.132 39.0339 126.083 39.0418 126.055 39.076L125.784 39.4055C125.755 39.4415 125.759 39.496 125.795 39.525C126.012 39.6999 126.276 39.8105 126.561 39.8568V40.0812C126.561 40.123 126.594 40.1568 126.635 40.1568H127.138C127.179 40.1568 127.212 40.123 127.212 40.0812V39.8432C127.609 39.7474 127.856 39.4752 127.856 39.0732V39.0663C127.856 38.6014 127.508 38.4169 126.952 38.2927Z",
16991
+ fill: "#959CA8"
16992
+ }), /*#__PURE__*/React.createElement("path", {
16993
+ d: "M159.647 38.5886C159.647 38.0688 160.069 37.6475 160.588 37.6475H170C170.52 37.6475 170.941 38.0688 170.941 38.5886V38.5886C170.941 39.1084 170.52 39.5298 170 39.5298H160.588C160.069 39.5298 159.647 39.1084 159.647 38.5886V38.5886Z",
16994
+ fill: "#959CA8"
16995
+ }), /*#__PURE__*/React.createElement("path", {
16996
+ d: "M143.961 38.5896C143.961 38.0698 144.382 37.6484 144.902 37.6484H156.196C156.716 37.6484 157.137 38.0698 157.137 38.5896V38.5896C157.137 39.1094 156.716 39.5308 156.196 39.5308H144.902C144.382 39.5308 143.961 39.1094 143.961 38.5896V38.5896Z",
16997
+ fill: "#959CA8"
16998
+ }), /*#__PURE__*/React.createElement("path", {
16999
+ d: "M130.784 38.5886C130.784 38.0688 131.206 37.6475 131.726 37.6475H140.51C141.03 37.6475 141.451 38.0688 141.451 38.5886V38.5886C141.451 39.1084 141.03 39.5298 140.51 39.5298H131.726C131.206 39.5298 130.784 39.1084 130.784 38.5886V38.5886Z",
17000
+ fill: "#959CA8"
17001
+ })), /*#__PURE__*/React.createElement("path", {
17002
+ d: "M86.2354 89.7247V83.4502H88.7452V91.2848C88.7452 91.8093 88.32 92.2345 87.7956 92.2345H82.4707C81.7777 92.2345 81.2158 91.6727 81.2158 90.9796C81.2158 90.2865 81.7777 89.7247 82.4707 89.7247H86.2354Z",
17003
+ fill: "#15749D"
17004
+ }), /*#__PURE__*/React.createElement("path", {
17005
+ d: "M91.8823 91.2848V83.4502H94.3921V89.7247H98.1568C98.8499 89.7247 99.4117 90.2865 99.4117 90.9796C99.4117 91.6727 98.8499 92.2345 98.1568 92.2345H92.832C92.3075 92.2345 91.8823 91.8093 91.8823 91.2848Z",
17006
+ fill: "#15749D"
17007
+ }), /*#__PURE__*/React.createElement("path", {
17008
+ d: "M132.667 62.7447V65.8819L140.611 70.4217C141.107 70.705 141.731 70.6214 142.135 70.2177L152.745 59.6074H148.98L141.311 67.5835C141.209 67.6894 141.048 67.7113 140.922 67.6364L132.667 62.7447Z",
17009
+ fill: "#15749D"
17010
+ }), /*#__PURE__*/React.createElement("path", {
17011
+ d: "M145.843 58.3526C145.843 57.6595 146.405 57.0977 147.098 57.0977H157.137C157.83 57.0977 158.392 57.6595 158.392 58.3526V58.3526C158.392 59.0456 157.83 59.6075 157.137 59.6075H147.098C146.405 59.6075 145.843 59.0456 145.843 58.3526V58.3526Z",
17012
+ fill: "#15749D"
17013
+ }), /*#__PURE__*/React.createElement("path", {
17014
+ d: "M47.9608 65.8814V62.7441L37.054 71.0541C36.1854 71.7159 36.518 73.0945 37.5928 73.2874L59.2549 77.1755V74.6657L40.4314 71.5285L47.9608 65.8814Z",
17015
+ fill: "#15749D"
17016
+ }), /*#__PURE__*/React.createElement("path", {
17017
+ d: "M62.3921 71.5283H63.647C64.3401 71.5283 64.902 72.0902 64.902 72.7832C64.902 73.4763 64.3401 74.0381 63.647 74.0381H63.0196C61.98 74.0381 61.1372 74.8809 61.1372 75.9205C61.1372 76.9601 61.98 77.8028 63.0196 77.8028H65.5294C66.2225 77.8028 66.7843 78.3647 66.7843 79.0577C66.7843 79.7508 66.2225 80.3126 65.5294 80.3126H62.3921C60.313 80.3126 58.6274 78.6271 58.6274 76.5479V75.293C58.6274 73.2138 60.313 71.5283 62.3921 71.5283Z",
17018
+ fill: "#15749D"
17019
+ }), /*#__PURE__*/React.createElement("g", {
17020
+ filter: "url(#filter4_d_4979_37133)"
17021
+ }, /*#__PURE__*/React.createElement("path", {
17022
+ d: "M140.823 47.0591C140.823 44.6334 142.79 42.667 145.216 42.667H159.02C161.445 42.667 163.412 44.6334 163.412 47.0591V53.3337C163.412 54.0267 162.85 54.5886 162.157 54.5886H142.078C141.385 54.5886 140.823 54.0267 140.823 53.3337V47.0591Z",
17023
+ fill: "#E5E7EC"
17024
+ }), /*#__PURE__*/React.createElement("path", {
17025
+ fillRule: "evenodd",
17026
+ clipRule: "evenodd",
17027
+ d: "M159.02 43.9219H145.216C143.483 43.9219 142.078 45.3265 142.078 47.0591V53.3337H162.157V47.0591C162.157 45.3265 160.752 43.9219 159.02 43.9219ZM145.216 42.667C142.79 42.667 140.823 44.6334 140.823 47.0591V53.3337C140.823 54.0267 141.385 54.5886 142.078 54.5886H162.157C162.85 54.5886 163.412 54.0267 163.412 53.3337V47.0591C163.412 44.6334 161.445 42.667 159.02 42.667H145.216Z",
17028
+ fill: "#292A33"
17029
+ }), /*#__PURE__*/React.createElement("path", {
17030
+ d: "M144.588 47.0591C144.588 46.7126 144.869 46.4316 145.216 46.4316H159.02C159.366 46.4316 159.647 46.7126 159.647 47.0591V47.0591C159.647 47.4056 159.366 47.6865 159.02 47.6865H145.216C144.869 47.6865 144.588 47.4056 144.588 47.0591V47.0591Z",
17031
+ fill: "#292A33"
17032
+ }), /*#__PURE__*/React.createElement("path", {
17033
+ d: "M145.843 36.3926V47.6867H158.392V39.5299H161.53C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828H148.353C146.967 33.8828 145.843 35.0065 145.843 36.3926Z",
17034
+ fill: "white"
17035
+ }), /*#__PURE__*/React.createElement("path", {
17036
+ fillRule: "evenodd",
17037
+ clipRule: "evenodd",
17038
+ d: "M158.392 39.5299H161.53C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828H148.353C146.967 33.8828 145.843 35.0065 145.843 36.3926V47.6867H158.392V39.5299ZM157.137 46.4318V38.275H160.902V36.3926C160.902 35.6996 160.34 35.1377 159.647 35.1377H148.353C147.66 35.1377 147.098 35.6996 147.098 36.3926V46.4318H157.137Z",
17039
+ fill: "#292A33"
17040
+ }), /*#__PURE__*/React.createElement("path", {
17041
+ d: "M157.137 36.3926C157.137 35.0065 158.261 33.8828 159.647 33.8828L-nan -nanL-nan -nanL159.647 33.8828C161.033 33.8828 162.157 35.0065 162.157 36.3926V38.9024C162.157 39.249 161.876 39.5299 161.529 39.5299H157.137V36.3926Z",
17042
+ fill: "white"
17043
+ }), /*#__PURE__*/React.createElement("path", {
17044
+ fillRule: "evenodd",
17045
+ clipRule: "evenodd",
17046
+ d: "M160.902 38.275V36.3926C160.902 35.6996 160.34 35.1377 159.647 35.1377C158.954 35.1377 158.392 35.6996 158.392 36.3926V38.275H160.902ZM159.647 33.8828C158.261 33.8828 157.137 35.0065 157.137 36.3926V39.5299H161.529C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828Z",
17047
+ fill: "#292A33"
17048
+ }), /*#__PURE__*/React.createElement("path", {
17049
+ d: "M148.98 37.9612C148.98 37.7879 149.121 37.6475 149.294 37.6475H154.941C155.115 37.6475 155.255 37.7879 155.255 37.9612V38.5886C155.255 38.7619 155.115 38.9024 154.941 38.9024H149.294C149.121 38.9024 148.98 38.7619 148.98 38.5886V37.9612Z",
17050
+ fill: "#292A33"
17051
+ }), /*#__PURE__*/React.createElement("path", {
17052
+ d: "M148.98 40.471C148.98 40.2977 149.121 40.1572 149.294 40.1572H153.686C153.86 40.1572 154 40.2977 154 40.471V41.0984C154 41.2717 153.86 41.4121 153.686 41.4121H149.294C149.121 41.4121 148.98 41.2717 148.98 41.0984V40.471Z",
17053
+ fill: "#292A33"
17054
+ }), /*#__PURE__*/React.createElement("path", {
17055
+ d: "M148.98 42.9807C148.98 42.8075 149.121 42.667 149.294 42.667H154.941C155.115 42.667 155.255 42.8075 155.255 42.9807V43.6082C155.255 43.7814 155.115 43.9219 154.941 43.9219H149.294C149.121 43.9219 148.98 43.7814 148.98 43.6082V42.9807Z",
17056
+ fill: "#292A33"
17057
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
17058
+ id: "filter0_d_4979_37133",
17059
+ x: 17.2354,
17060
+ y: 28.8828,
17061
+ width: 35.7256,
17062
+ height: 18.1572,
17063
+ filterUnits: "userSpaceOnUse",
17064
+ colorInterpolationFilters: "sRGB"
17065
+ }, /*#__PURE__*/React.createElement("feFlood", {
17066
+ floodOpacity: 0,
17067
+ result: "BackgroundImageFix"
17068
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17069
+ "in": "SourceAlpha",
17070
+ type: "matrix",
17071
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
17072
+ result: "hardAlpha"
17073
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
17074
+ stdDeviation: 2.5
17075
+ }), /*#__PURE__*/React.createElement("feComposite", {
17076
+ in2: "hardAlpha",
17077
+ operator: "out"
17078
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17079
+ type: "matrix",
17080
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
17081
+ }), /*#__PURE__*/React.createElement("feBlend", {
17082
+ mode: "normal",
17083
+ in2: "BackgroundImageFix",
17084
+ result: "effect1_dropShadow_4979_37133"
17085
+ }), /*#__PURE__*/React.createElement("feBlend", {
17086
+ mode: "normal",
17087
+ "in": "SourceGraphic",
17088
+ in2: "effect1_dropShadow_4979_37133",
17089
+ result: "shape"
17090
+ })), /*#__PURE__*/React.createElement("filter", {
17091
+ id: "filter1_d_4979_37133",
17092
+ x: 0.921631,
17093
+ y: 35.7842,
17094
+ width: 60.8235,
17095
+ height: 18.1572,
17096
+ filterUnits: "userSpaceOnUse",
17097
+ colorInterpolationFilters: "sRGB"
17098
+ }, /*#__PURE__*/React.createElement("feFlood", {
17099
+ floodOpacity: 0,
17100
+ result: "BackgroundImageFix"
17101
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17102
+ "in": "SourceAlpha",
17103
+ type: "matrix",
17104
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
17105
+ result: "hardAlpha"
17106
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
17107
+ stdDeviation: 2.5
17108
+ }), /*#__PURE__*/React.createElement("feComposite", {
17109
+ in2: "hardAlpha",
17110
+ operator: "out"
17111
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17112
+ type: "matrix",
17113
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
17114
+ }), /*#__PURE__*/React.createElement("feBlend", {
17115
+ mode: "normal",
17116
+ in2: "BackgroundImageFix",
17117
+ result: "effect1_dropShadow_4979_37133"
17118
+ }), /*#__PURE__*/React.createElement("feBlend", {
17119
+ mode: "normal",
17120
+ "in": "SourceGraphic",
17121
+ in2: "effect1_dropShadow_4979_37133",
17122
+ result: "shape"
17123
+ })), /*#__PURE__*/React.createElement("filter", {
17124
+ id: "filter2_d_4979_37133",
17125
+ x: 127.667,
17126
+ y: 22.6074,
17127
+ width: 46.3921,
17128
+ height: 18.1572,
17129
+ filterUnits: "userSpaceOnUse",
17130
+ colorInterpolationFilters: "sRGB"
17131
+ }, /*#__PURE__*/React.createElement("feFlood", {
17132
+ floodOpacity: 0,
17133
+ result: "BackgroundImageFix"
17134
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17135
+ "in": "SourceAlpha",
17136
+ type: "matrix",
17137
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
17138
+ result: "hardAlpha"
17139
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
17140
+ stdDeviation: 2.5
17141
+ }), /*#__PURE__*/React.createElement("feComposite", {
17142
+ in2: "hardAlpha",
17143
+ operator: "out"
17144
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17145
+ type: "matrix",
17146
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
17147
+ }), /*#__PURE__*/React.createElement("feBlend", {
17148
+ mode: "normal",
17149
+ in2: "BackgroundImageFix",
17150
+ result: "effect1_dropShadow_4979_37133"
17151
+ }), /*#__PURE__*/React.createElement("feBlend", {
17152
+ mode: "normal",
17153
+ "in": "SourceGraphic",
17154
+ in2: "effect1_dropShadow_4979_37133",
17155
+ result: "shape"
17156
+ })), /*#__PURE__*/React.createElement("filter", {
17157
+ id: "filter3_d_4979_37133",
17158
+ x: 118.255,
17159
+ y: 29.5098,
17160
+ width: 60.8235,
17161
+ height: 18.1572,
17162
+ filterUnits: "userSpaceOnUse",
17163
+ colorInterpolationFilters: "sRGB"
17164
+ }, /*#__PURE__*/React.createElement("feFlood", {
17165
+ floodOpacity: 0,
17166
+ result: "BackgroundImageFix"
17167
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17168
+ "in": "SourceAlpha",
17169
+ type: "matrix",
17170
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
17171
+ result: "hardAlpha"
17172
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
17173
+ stdDeviation: 2.5
17174
+ }), /*#__PURE__*/React.createElement("feComposite", {
17175
+ in2: "hardAlpha",
17176
+ operator: "out"
17177
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17178
+ type: "matrix",
17179
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
17180
+ }), /*#__PURE__*/React.createElement("feBlend", {
17181
+ mode: "normal",
17182
+ in2: "BackgroundImageFix",
17183
+ result: "effect1_dropShadow_4979_37133"
17184
+ }), /*#__PURE__*/React.createElement("feBlend", {
17185
+ mode: "normal",
17186
+ "in": "SourceGraphic",
17187
+ in2: "effect1_dropShadow_4979_37133",
17188
+ result: "shape"
17189
+ })), /*#__PURE__*/React.createElement("filter", {
17190
+ id: "filter4_d_4979_37133",
17191
+ x: 132.823,
17192
+ y: 25.8828,
17193
+ width: 38.5881,
17194
+ height: 36.7061,
17195
+ filterUnits: "userSpaceOnUse",
17196
+ colorInterpolationFilters: "sRGB"
17197
+ }, /*#__PURE__*/React.createElement("feFlood", {
17198
+ floodOpacity: 0,
17199
+ result: "BackgroundImageFix"
17200
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17201
+ "in": "SourceAlpha",
17202
+ type: "matrix",
17203
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
17204
+ result: "hardAlpha"
17205
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
17206
+ stdDeviation: 4
17207
+ }), /*#__PURE__*/React.createElement("feComposite", {
17208
+ in2: "hardAlpha",
17209
+ operator: "out"
17210
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
17211
+ type: "matrix",
17212
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
17213
+ }), /*#__PURE__*/React.createElement("feBlend", {
17214
+ mode: "normal",
17215
+ in2: "BackgroundImageFix",
17216
+ result: "effect1_dropShadow_4979_37133"
17217
+ }), /*#__PURE__*/React.createElement("feBlend", {
17218
+ mode: "normal",
17219
+ "in": "SourceGraphic",
17220
+ in2: "effect1_dropShadow_4979_37133",
17221
+ result: "shape"
17222
+ }))));
17223
+ };
17224
+
16479
17225
  var FindIconSmall = function FindIconSmall(_ref) {
16480
17226
  var themeValues = _ref.themeValues,
16481
17227
  _ref$iconIndex = _ref.iconIndex,
@@ -16516,7 +17262,7 @@ var FindIconSmall = function FindIconSmall(_ref) {
16516
17262
  })));
16517
17263
  };
16518
17264
 
16519
- var FindIconSmall$1 = themeComponent$1(FindIconSmall, "Icons", fallbackValues$3, "primary");
17265
+ var FindIconSmall$1 = themeComponent(FindIconSmall, "Icons", fallbackValues$2, "primary");
16520
17266
 
16521
17267
  var HistoryIconSmall = function HistoryIconSmall(_ref) {
16522
17268
  var themeValues = _ref.themeValues;
@@ -16542,7 +17288,7 @@ var HistoryIconSmall = function HistoryIconSmall(_ref) {
16542
17288
  }));
16543
17289
  };
16544
17290
 
16545
- var HistoryIconSmall$1 = themeComponent$1(HistoryIconSmall, "Icons", fallbackValues$3, "primary");
17291
+ var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$2, "primary");
16546
17292
 
16547
17293
  var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
16548
17294
  var _ref$color = _ref.color,
@@ -17277,7 +18023,7 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
17277
18023
  var color$2 = "#15749D";
17278
18024
  var hoverColor$1 = "#116285";
17279
18025
  var activeColor$1 = "#0E506D";
17280
- var fallbackValues$4 = {
18026
+ var fallbackValues$3 = {
17281
18027
  color: color$2,
17282
18028
  hoverColor: hoverColor$1,
17283
18029
  activeColor: activeColor$1
@@ -17319,7 +18065,7 @@ var AddObligation = function AddObligation(_ref) {
17319
18065
  })))));
17320
18066
  };
17321
18067
 
17322
- var AddObligation$1 = themeComponent$1(AddObligation, "AddObligation", fallbackValues$4);
18068
+ var AddObligation$1 = themeComponent(AddObligation, "AddObligation", fallbackValues$3);
17323
18069
 
17324
18070
  var IconChevron = function IconChevron(_ref) {
17325
18071
  var _ref$fill = _ref.fill,
@@ -17708,7 +18454,7 @@ var link = {
17708
18454
  error: "".concat(SCIENCE_BLUE),
17709
18455
  success: "".concat(SCIENCE_BLUE)
17710
18456
  };
17711
- var fallbackValues$5 = {
18457
+ var fallbackValues$4 = {
17712
18458
  background: background,
17713
18459
  border: border$1,
17714
18460
  iconBackground: iconBackground,
@@ -17717,7 +18463,63 @@ var fallbackValues$5 = {
17717
18463
  link: link
17718
18464
  };
17719
18465
 
18466
+ /*
18467
+
18468
+ A utility function that can generate box-shadow values for components
18469
+ Takes a string representing an rgb color value and returns an object
18470
+ with values for standard, inset, and overlay shadows.
18471
+
18472
+ The objects for standard and inset shadows contain versions approiate
18473
+ for base, hover, and active interaction states.
18474
+
18475
+ */
18476
+
18477
+ /*
18478
+ Function to convert string representing rgb color to rgba value with provided opacity
18479
+ ("rgb(41, 42, 51)", "0.1") => "rgba(41, 42, 51, 0.1)"
18480
+
18481
+ */
18482
+ var rgbToRgba = function rgbToRgba() {
18483
+ var rgbValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
18484
+ var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
18485
+
18486
+ if (typeof rgbValue !== "string" || typeof opacity !== "string" || rgbValue.charAt(0) === "#") {
18487
+ return "";
18488
+ }
18489
+
18490
+ return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
18491
+ };
18492
+
18493
+ var generateShadows = function generateShadows() {
18494
+ var baseColorRGB = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "rgb(41, 42, 51)";
18495
+ var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
18496
+ var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
18497
+ var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
18498
+ var colorThirty = rgbToRgba(baseColorRGB, "0.3") || "rgba(41, 42, 51, 0.3)";
18499
+ var blackTwentyFive = "rgba(0, 0, 0, 0.25)";
18500
+ var standard = {
18501
+ base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 6px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
18502
+ hover: "0px 1px 2px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(blackTwentyFive, ", 0px 6px 12px 0px ").concat(colorTen),
18503
+ active: "0px 2px 8px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(colorThirty, ", 0px 6px 12px 0px ").concat(colorTwentyFive)
18504
+ };
18505
+ var inset = {
18506
+ base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
18507
+ hover: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwentyFive, ", 0px 4px 8px 0px ").concat(colorTen),
18508
+ active: "0px 1px 2px 2px ".concat(colorTwenty, ", 0px 3px 6px 0px ").concat(colorThirty, ", 0px 4px 8px 0px ").concat(colorTwenty)
18509
+ };
18510
+ var overlay = {
18511
+ base: "0px 7px 32px 0px ".concat(colorTwenty, ", 0px 1px 4px 0px ").concat(colorTwenty, ", 0px 1px 8px -1px ").concat(colorThirty)
18512
+ };
18513
+ return {
18514
+ standard: standard,
18515
+ inset: inset,
18516
+ overlay: overlay
18517
+ };
18518
+ };
18519
+
17720
18520
  var Alert = function Alert(_ref) {
18521
+ var _generateShadows, _generateShadows$inse;
18522
+
17721
18523
  var heading = _ref.heading,
17722
18524
  text = _ref.text,
17723
18525
  textOverride = _ref.textOverride,
@@ -17731,13 +18533,26 @@ var Alert = function Alert(_ref) {
17731
18533
  showQuitLink = _ref$showQuitLink === void 0 ? true : _ref$showQuitLink,
17732
18534
  themeValues = _ref.themeValues,
17733
18535
  extraStyles = _ref.extraStyles,
17734
- maxContentWidth = _ref.maxContentWidth;
18536
+ maxContentWidth = _ref.maxContentWidth,
18537
+ _ref$noBorder = _ref.noBorder,
18538
+ noBorder = _ref$noBorder === void 0 ? false : _ref$noBorder,
18539
+ _ref$enableBoxShadow = _ref.enableBoxShadow,
18540
+ enableBoxShadow = _ref$enableBoxShadow === void 0 ? false : _ref$enableBoxShadow,
18541
+ _ref$enableSmallText = _ref.enableSmallText,
18542
+ enableSmallText = _ref$enableSmallText === void 0 ? false : _ref$enableSmallText,
18543
+ _ref$innerContentPadd = _ref.innerContentPadding,
18544
+ innerContentPadding = _ref$innerContentPadd === void 0 ? "1rem" : _ref$innerContentPadd,
18545
+ _ref$iconPadding = _ref.iconPadding,
18546
+ iconPadding = _ref$iconPadding === void 0 ? "0 0 0 1rem" : _ref$iconPadding,
18547
+ _ref$contentFullHeigh = _ref.contentFullHeight,
18548
+ contentFullHeight = _ref$contentFullHeigh === void 0 ? false : _ref$contentFullHeigh;
17735
18549
  var Icon = AlertIcons[variant];
18550
+ var contentPadding = maxContentWidth ? "".concat(padding, " 1rem") : innerContentPadding;
17736
18551
  var content = /*#__PURE__*/React.createElement(Sidebar, {
17737
18552
  width: "24px",
17738
18553
  childGap: "0rem"
17739
18554
  }, /*#__PURE__*/React.createElement(Box, {
17740
- padding: "0 0 0 1rem",
18555
+ padding: iconPadding,
17741
18556
  minHeight: "100%"
17742
18557
  }, /*#__PURE__*/React.createElement(Cover, {
17743
18558
  minHeight: "100%",
@@ -17751,17 +18566,18 @@ var Alert = function Alert(_ref) {
17751
18566
  }, /*#__PURE__*/React.createElement(Sidebar, {
17752
18567
  sidebarOnRight: true,
17753
18568
  width: "24px",
17754
- childGap: "0rem"
18569
+ childGap: "0rem",
18570
+ fullHeight: contentFullHeight
17755
18571
  }, /*#__PURE__*/React.createElement(Box, {
17756
- padding: maxContentWidth ? "".concat(padding, " 1rem") : "1rem"
18572
+ padding: contentPadding
17757
18573
  }, /*#__PURE__*/React.createElement(Cluster, {
17758
18574
  justify: "flex-start",
17759
18575
  align: "center"
17760
18576
  }, textOverride ? textOverride : /*#__PURE__*/React.createElement(Stack, {
17761
18577
  fullHeight: true,
17762
- childGap: "0.25rem"
18578
+ childGap: "0"
17763
18579
  }, /*#__PURE__*/React.createElement(Text$1, {
17764
- variant: "p",
18580
+ variant: enableSmallText ? "pS" : "p",
17765
18581
  color: themeValues.text,
17766
18582
  weight: "600"
17767
18583
  }, heading), /*#__PURE__*/React.createElement(Text$1, {
@@ -17783,14 +18599,15 @@ var Alert = function Alert(_ref) {
17783
18599
  background: themeValues.background,
17784
18600
  borderRadius: "4px",
17785
18601
  borderColor: themeValues.border,
17786
- borderSize: "1px",
18602
+ borderSize: noBorder ? "0px" : "1px",
18603
+ boxShadow: enableBoxShadow ? (_generateShadows = generateShadows()) === null || _generateShadows === void 0 ? void 0 : (_generateShadows$inse = _generateShadows.inset) === null || _generateShadows$inse === void 0 ? void 0 : _generateShadows$inse.base : "",
17787
18604
  extraStyles: extraStyles
17788
18605
  }, maxContentWidth ? /*#__PURE__*/React.createElement(Center, {
17789
18606
  maxWidth: maxContentWidth
17790
18607
  }, content) : content);
17791
18608
  };
17792
18609
 
17793
- var Alert$1 = themeComponent$1(Alert, "Alert", fallbackValues$5, "info");
18610
+ var Alert$1 = themeComponent(Alert, "Alert", fallbackValues$4, "info");
17794
18611
 
17795
18612
  var TitleText = styled.h1.withConfig({
17796
18613
  displayName: "Titlestyled__TitleText",
@@ -17835,7 +18652,7 @@ var mobileFontSize = {
17835
18652
  small: "1.2142rem" // 17px
17836
18653
 
17837
18654
  };
17838
- var fallbackValues$6 = {
18655
+ var fallbackValues$5 = {
17839
18656
  fontFamily: fontFamily$1,
17840
18657
  fontSize: fontSize$1
17841
18658
  };
@@ -17872,7 +18689,7 @@ var _excluded$i = ["themeValues", "weight", "color", "margin", "textAlign", "ext
17872
18689
  var isBelowBreakpoint = window.innerWidth < MOBILE_BREAKPOINT;
17873
18690
  var isTouchDevice$1 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
17874
18691
  var mobileDeviceDetected = isBelowBreakpoint && isTouchDevice$1;
17875
- var fallbacks = mobileDeviceDetected ? mobileFallbackValues : fallbackValues$6;
18692
+ var fallbacks = mobileDeviceDetected ? mobileFallbackValues : fallbackValues$5;
17876
18693
 
17877
18694
  var Title = function Title(_ref) {
17878
18695
  var themeValues = _ref.themeValues,
@@ -17909,10 +18726,10 @@ var Title = function Title(_ref) {
17909
18726
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
17910
18727
  };
17911
18728
 
17912
- var Title$1 = themeComponent$1(Title, "Title", fallbacks, "large");
18729
+ var Title$1 = themeComponent(Title, "Title", fallbacks, "large");
17913
18730
 
17914
18731
  var color$3 = "#292A33";
17915
- var fallbackValues$7 = {
18732
+ var fallbackValues$6 = {
17916
18733
  color: color$3
17917
18734
  };
17918
18735
 
@@ -17931,7 +18748,7 @@ var AmountCallout = function AmountCallout(_ref) {
17931
18748
  }, amount));
17932
18749
  };
17933
18750
 
17934
- var AmountCallout$1 = themeComponent$1(AmountCallout, "AmountCallout", fallbackValues$7);
18751
+ var AmountCallout$1 = themeComponent(AmountCallout, "AmountCallout", fallbackValues$6);
17935
18752
 
17936
18753
  function _extends$1() {
17937
18754
  _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
@@ -18750,7 +19567,7 @@ var curriedTint = /*#__PURE__*/curry
18750
19567
  var curriedTint$1 = curriedTint;
18751
19568
 
18752
19569
  var linkColor = MATISSE_BLUE;
18753
- var fallbackValues$8 = {
19570
+ var fallbackValues$7 = {
18754
19571
  linkColor: linkColor
18755
19572
  };
18756
19573
 
@@ -18777,7 +19594,7 @@ var BoxWithShadow = function BoxWithShadow(_ref) {
18777
19594
  }, props), children);
18778
19595
  };
18779
19596
 
18780
- var BoxWithShadow$1 = themeComponent$1(BoxWithShadow, "BoxWithShadow", fallbackValues$8);
19597
+ var BoxWithShadow$1 = themeComponent(BoxWithShadow, "BoxWithShadow", fallbackValues$7);
18781
19598
 
18782
19599
  // import theme from "styled-theming";
18783
19600
  /*
@@ -18793,7 +19610,7 @@ var lineHeight = "1.25rem";
18793
19610
  var fontWeight$1 = "400";
18794
19611
  var margin = "0.5rem";
18795
19612
  var hover = "text-decoration: none;";
18796
- var fallbackValues$9 = {
19613
+ var fallbackValues$8 = {
18797
19614
  color: color$4,
18798
19615
  activeColor: activeColor$2,
18799
19616
  activeBreadcrumbColor: activeBreadcrumbColor,
@@ -18811,7 +19628,7 @@ var fontFamily$2 = {
18811
19628
  var hoverColor$2 = "#116285";
18812
19629
  var activeColor$3 = "#0E506D";
18813
19630
  var externalLinkColor = "#15749D";
18814
- var fallbackValues$a = {
19631
+ var fallbackValues$9 = {
18815
19632
  fontFamily: fontFamily$2,
18816
19633
  hoverColor: hoverColor$2,
18817
19634
  activeColor: activeColor$3,
@@ -18886,7 +19703,7 @@ var ExternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
18886
19703
  ariaLabel = _ref.ariaLabel,
18887
19704
  children = _ref.children;
18888
19705
  var themeContext = useContext(ThemeContext);
18889
- var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
19706
+ var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
18890
19707
  return /*#__PURE__*/React.createElement(StyledExternalLink, {
18891
19708
  href: href,
18892
19709
  target: newTab ? "_blank" : "",
@@ -18978,7 +19795,7 @@ var InternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
18978
19795
  _ref$extraStyles = _ref.extraStyles,
18979
19796
  extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
18980
19797
  var themeContext = useContext(ThemeContext);
18981
- var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
19798
+ var themeValues = createThemeValues(themeContext, fallbackValues$9, "Link", variant);
18982
19799
  return /*#__PURE__*/React.createElement(StyledInternalLink, {
18983
19800
  to: to,
18984
19801
  color: color,
@@ -19001,7 +19818,7 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
19001
19818
  var _ref$breadcrumbsList = _ref.breadcrumbsList,
19002
19819
  breadcrumbsList = _ref$breadcrumbsList === void 0 ? [] : _ref$breadcrumbsList;
19003
19820
  var themeContext = useContext(ThemeContext);
19004
- var themeValues = createThemeValues(themeContext, fallbackValues$9, "Breadcrumb");
19821
+ var themeValues = createThemeValues(themeContext, fallbackValues$8, "Breadcrumb");
19005
19822
  return /*#__PURE__*/React.createElement(Box, {
19006
19823
  padding: "0",
19007
19824
  as: "nav",
@@ -20682,7 +21499,7 @@ var fontSize$3 = {
20682
21499
  pXL: "1.5rem" // 24px
20683
21500
 
20684
21501
  };
20685
- var fallbackValues$b = {
21502
+ var fallbackValues$a = {
20686
21503
  fontFamily: fontFamily$3,
20687
21504
  fontSize: fontSize$3
20688
21505
  };
@@ -20739,11 +21556,11 @@ var Paragraph = function Paragraph(_ref) {
20739
21556
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
20740
21557
  };
20741
21558
 
20742
- var Paragraph$1 = themeComponent$1(Paragraph, "Paragraph", fallbackValues$b, "p");
21559
+ var Paragraph$1 = themeComponent(Paragraph, "Paragraph", fallbackValues$a, "p");
20743
21560
 
20744
21561
  var backgroundColor$1 = WHITE;
20745
21562
  var iconBackgroundColor = GRECIAN_GREY;
20746
- var fallbackValues$c = {
21563
+ var fallbackValues$b = {
20747
21564
  backgroundColor: backgroundColor$1,
20748
21565
  iconBackgroundColor: iconBackgroundColor
20749
21566
  };
@@ -20886,7 +21703,7 @@ var CardRegistryCard = function CardRegistryCard(_ref2) {
20886
21703
  }))))));
20887
21704
  };
20888
21705
 
20889
- var CardRegistryCard$1 = themeComponent$1(withWindowSize(CardRegistryCard), "CardRegistryCard", fallbackValues$c);
21706
+ var CardRegistryCard$1 = themeComponent(withWindowSize(CardRegistryCard), "CardRegistryCard", fallbackValues$b);
20890
21707
 
20891
21708
  var cardRegistry = {
20892
21709
  accounts: function accounts(props) {
@@ -20957,7 +21774,7 @@ var checkedStyles = {
20957
21774
  var defaultStyles = {
20958
21775
  "default": "\n background: ".concat(WHITE, "; \n border: 1px solid ").concat(STORM_GREY, ";\n")
20959
21776
  };
20960
- var fallbackValues$d = {
21777
+ var fallbackValues$c = {
20961
21778
  backgroundColor: backgroundColor$2,
20962
21779
  textFontSize: textFontSize,
20963
21780
  textFontWeight: textFontWeight,
@@ -20980,7 +21797,7 @@ var CheckboxContainer = styled.div.withConfig({
20980
21797
  var CheckboxLabelContainer = styled.label.withConfig({
20981
21798
  displayName: "Checkbox__CheckboxLabelContainer",
20982
21799
  componentId: "sc-36kqbv-1"
20983
- })(["display:flex;align-items:center;"]);
21800
+ })(["display:flex;align-items:center;column-gap:1rem;"]);
20984
21801
  var CheckboxIcon = styled.svg.withConfig({
20985
21802
  displayName: "Checkbox__CheckboxIcon",
20986
21803
  componentId: "sc-36kqbv-2"
@@ -20999,7 +21816,7 @@ var HiddenCheckbox = styled.input.attrs({
20999
21816
  var StyledCheckbox = styled.div.withConfig({
21000
21817
  displayName: "Checkbox__StyledCheckbox",
21001
21818
  componentId: "sc-36kqbv-4"
21002
- })(["display:inline-block;margin-right:16px;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
21819
+ })(["display:inline-block;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
21003
21820
  var checked = _ref2.checked;
21004
21821
  return checked ? "visible" : "hidden";
21005
21822
  }, function (_ref3) {
@@ -21029,6 +21846,8 @@ var Checkbox = function Checkbox(_ref4) {
21029
21846
  hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
21030
21847
  _ref4$error = _ref4.error,
21031
21848
  error = _ref4$error === void 0 ? false : _ref4$error,
21849
+ _ref4$checkboxMargin = _ref4.checkboxMargin,
21850
+ checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
21032
21851
  extraStyles = _ref4.extraStyles,
21033
21852
  textExtraStyles = _ref4.textExtraStyles;
21034
21853
 
@@ -21057,7 +21876,7 @@ var Checkbox = function Checkbox(_ref4) {
21057
21876
  },
21058
21877
  hiddenStyles: hidden,
21059
21878
  background: themeValues.backgroundColor,
21060
- extraStyles: "outline: none; ".concat(extraStyles)
21879
+ extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
21061
21880
  }, /*#__PURE__*/React.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React.createElement(CheckboxContainer, {
21062
21881
  "data-qa": "Checkbox"
21063
21882
  }, /*#__PURE__*/React.createElement(HiddenCheckbox, {
@@ -21069,7 +21888,7 @@ var Checkbox = function Checkbox(_ref4) {
21069
21888
  onChange: onChange,
21070
21889
  tabIndex: "-1",
21071
21890
  "aria-invalid": error,
21072
- "aria-describedby": "".concat(name, "-error-message")
21891
+ "aria-describedby": error ? "".concat(name, "-error-message") : ""
21073
21892
  }), /*#__PURE__*/React.createElement(StyledCheckbox, {
21074
21893
  error: error,
21075
21894
  disabled: disabled,
@@ -21088,7 +21907,7 @@ var Checkbox = function Checkbox(_ref4) {
21088
21907
  checkColor: themeValues.checkColor
21089
21908
  }, /*#__PURE__*/React.createElement("polyline", {
21090
21909
  points: "20 6 9 17 4 12"
21091
- })))), /*#__PURE__*/React.createElement(Text$1, {
21910
+ })))), title && /*#__PURE__*/React.createElement(Text$1, {
21092
21911
  variant: "p",
21093
21912
  weight: themeValues.textFontWeight,
21094
21913
  color: themeValues.textColor,
@@ -21096,7 +21915,7 @@ var Checkbox = function Checkbox(_ref4) {
21096
21915
  }, title)));
21097
21916
  };
21098
21917
 
21099
- var Checkbox$1 = themeComponent$1(Checkbox, "Checkbox", fallbackValues$d, "default");
21918
+ var Checkbox$1 = themeComponent(Checkbox, "Checkbox", fallbackValues$c, "default");
21100
21919
 
21101
21920
  var listBackgroundColor = {
21102
21921
  "default": "".concat(ATHENS_GREY),
@@ -21122,7 +21941,7 @@ var radioButtonInactive = {
21122
21941
  "default": "".concat(GHOST_GREY),
21123
21942
  disabled: "".concat(GHOST_GREY)
21124
21943
  };
21125
- var fallbackValues$e = {
21944
+ var fallbackValues$d = {
21126
21945
  listBackgroundColor: listBackgroundColor,
21127
21946
  listItemColor: listItemColor,
21128
21947
  listItemBackgroundColor: listItemBackgroundColor,
@@ -21293,7 +22112,7 @@ var CheckboxList = function CheckboxList(_ref2) {
21293
22112
  })));
21294
22113
  };
21295
22114
 
21296
- var CheckboxList$1 = themeComponent$1(CheckboxList, "CheckboxList", fallbackValues$e, "default");
22115
+ var CheckboxList$1 = themeComponent(CheckboxList, "CheckboxList", fallbackValues$d, "default");
21297
22116
 
21298
22117
  var DropdownIcon = function DropdownIcon() {
21299
22118
  return /*#__PURE__*/React.createElement("svg", {
@@ -22594,7 +23413,7 @@ exportTypedArrayMethod$1('at', function at(index) {
22594
23413
 
22595
23414
  var selectedColor = "".concat(MATISSE_BLUE);
22596
23415
  var hoverColor$3 = "".concat(HOVER_LIGHT_BLUE);
22597
- var fallbackValues$f = {
23416
+ var fallbackValues$e = {
22598
23417
  selectedColor: selectedColor,
22599
23418
  hoverColor: hoverColor$3
22600
23419
  };
@@ -22989,7 +23808,7 @@ var Dropdown = function Dropdown(_ref8) {
22989
23808
  }))) : /*#__PURE__*/React.createElement(Fragment$1, null)));
22990
23809
  };
22991
23810
 
22992
- var Dropdown$1 = themeComponent$1(Dropdown, "Dropdown", fallbackValues$f);
23811
+ var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$e);
22993
23812
 
22994
23813
  var SelectContainer = styled.div.withConfig({
22995
23814
  displayName: "FormSelectstyled__SelectContainer",
@@ -23060,7 +23879,7 @@ var hoverFocusStyles = {
23060
23879
  "default": "color: #0E506D; outline: none; text-decoration: underline; ",
23061
23880
  disabled: "color: #6D717E;"
23062
23881
  };
23063
- var fallbackValues$g = {
23882
+ var fallbackValues$f = {
23064
23883
  linkColor: linkColor$1,
23065
23884
  formBackgroundColor: formBackgroundColor,
23066
23885
  inputBackgroundColor: inputBackgroundColor,
@@ -23163,7 +23982,7 @@ var FormSelect = function FormSelect(_ref) {
23163
23982
  })));
23164
23983
  };
23165
23984
 
23166
- var FormSelect$1 = themeComponent$1(FormSelect, "FormSelect", fallbackValues$g, "default");
23985
+ var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$f, "default");
23167
23986
 
23168
23987
  var options = [{
23169
23988
  text: "Afghanistan",
@@ -23980,7 +24799,7 @@ var mobileFontSize$1 = {
23980
24799
  extraSmall: "0.71428rem" // 10px
23981
24800
 
23982
24801
  };
23983
- var fallbackValues$h = {
24802
+ var fallbackValues$g = {
23984
24803
  fontFamily: fontFamily$4,
23985
24804
  fontSize: fontSize$5
23986
24805
  };
@@ -24020,7 +24839,7 @@ var _excluded$o = ["themeValues", "weight", "color", "margin", "textAlign", "ext
24020
24839
  var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
24021
24840
  var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
24022
24841
  var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
24023
- var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$h;
24842
+ var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$g;
24024
24843
 
24025
24844
  var Detail = function Detail(_ref) {
24026
24845
  var themeValues = _ref.themeValues,
@@ -24057,11 +24876,11 @@ var Detail = function Detail(_ref) {
24057
24876
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
24058
24877
  };
24059
24878
 
24060
- var Detail$1 = themeComponent$1(Detail, "Detail", fallbacks$1, "regular");
24879
+ var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
24061
24880
 
24062
24881
  var backgroundColor$3 = WHITE;
24063
24882
  var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
24064
- var fallbackValues$i = {
24883
+ var fallbackValues$h = {
24065
24884
  backgroundColor: backgroundColor$3,
24066
24885
  boxShadow: boxShadow
24067
24886
  };
@@ -24082,7 +24901,7 @@ var DisplayBox = function DisplayBox(_ref) {
24082
24901
  }, children));
24083
24902
  };
24084
24903
 
24085
- var DisplayBox$1 = themeComponent$1(DisplayBox, "DisplayBox", fallbackValues$i);
24904
+ var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$h);
24086
24905
 
24087
24906
  function _extends$2() {
24088
24907
  _extends$2 = Object.assign || function (target) {
@@ -24473,7 +25292,7 @@ var index$4 = /*#__PURE__*/Object.freeze({
24473
25292
  var hoverColor$4 = "#116285";
24474
25293
  var activeColor$4 = "#0E506D";
24475
25294
  var popoverTriggerColor = "#15749D";
24476
- var fallbackValues$j = {
25295
+ var fallbackValues$i = {
24477
25296
  hoverColor: hoverColor$4,
24478
25297
  activeColor: activeColor$4,
24479
25298
  popoverTriggerColor: popoverTriggerColor
@@ -24631,7 +25450,7 @@ var Popover = function Popover(_ref) {
24631
25450
  })));
24632
25451
  };
24633
25452
 
24634
- var Popover$1 = themeComponent$1(Popover, "Popover", fallbackValues$j);
25453
+ var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$i);
24635
25454
 
24636
25455
  var DisplayCard = function DisplayCard(_ref) {
24637
25456
  var title = _ref.title,
@@ -24749,7 +25568,7 @@ var hoverFocusStyles$1 = {
24749
25568
  var formFooterPanel = {
24750
25569
  "default": "".concat(INFO_BLUE)
24751
25570
  };
24752
- var fallbackValues$k = {
25571
+ var fallbackValues$j = {
24753
25572
  linkColor: linkColor$2,
24754
25573
  formBackgroundColor: formBackgroundColor$1,
24755
25574
  inputBackgroundColor: inputBackgroundColor$1,
@@ -24971,7 +25790,7 @@ var FormInput = function FormInput(_ref15) {
24971
25790
  }, decorator)));
24972
25791
  };
24973
25792
 
24974
- var FormInput$1 = themeComponent$1(FormInput, "FormInput", fallbackValues$k, "default");
25793
+ var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$j, "default");
24975
25794
 
24976
25795
  var _excluded$q = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
24977
25796
 
@@ -25027,7 +25846,7 @@ var FormContainer = function FormContainer(_ref) {
25027
25846
  }, rest), children);
25028
25847
  };
25029
25848
 
25030
- var FormContainer$1 = themeComponent$1(withWindowSize(FormContainer), "FormContainer", fallbackValues$k, "default");
25849
+ var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$j, "default");
25031
25850
 
25032
25851
  var FormFooterPanel = function FormFooterPanel(_ref) {
25033
25852
  var themeValues = _ref.themeValues,
@@ -25051,7 +25870,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
25051
25870
  })));
25052
25871
  };
25053
25872
 
25054
- var FormFooterPanel$1 = themeComponent$1(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$k, "default");
25873
+ var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$j, "default");
25055
25874
 
25056
25875
  var fontSize$7 = {
25057
25876
  "default": "1rem",
@@ -25065,7 +25884,7 @@ var color$7 = {
25065
25884
  "default": "".concat(CHARADE_GREY),
25066
25885
  radio: "".concat(MINESHAFT_GREY)
25067
25886
  };
25068
- var fallbackValues$l = {
25887
+ var fallbackValues$k = {
25069
25888
  fontSize: fontSize$7,
25070
25889
  padding: padding$1,
25071
25890
  color: color$7
@@ -25108,11 +25927,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
25108
25927
  }, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
25109
25928
  };
25110
25929
 
25111
- var FormattedAddress$1 = themeComponent$1(FormattedAddress, "FormattedAddress", fallbackValues$l, "default");
25930
+ var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$k, "default");
25112
25931
 
25113
25932
  var textColor$1 = "".concat(CHARADE_GREY);
25114
25933
  var autopayTextColor = "".concat(REGENT_GREY);
25115
- var fallbackValues$m = {
25934
+ var fallbackValues$l = {
25116
25935
  textColor: textColor$1,
25117
25936
  autopayTextColor: autopayTextColor
25118
25937
  };
@@ -25152,11 +25971,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
25152
25971
  }, "Autopay Enabled")));
25153
25972
  };
25154
25973
 
25155
- var FormattedBankAccount$1 = themeComponent$1(FormattedBankAccount, "FormattedBankAccount", fallbackValues$m);
25974
+ var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$l);
25156
25975
 
25157
25976
  var textColor$2 = "".concat(CHARADE_GREY);
25158
25977
  var autopayTextColor$1 = "".concat(REGENT_GREY);
25159
- var fallbackValues$n = {
25978
+ var fallbackValues$m = {
25160
25979
  textColor: textColor$2,
25161
25980
  autopayTextColor: autopayTextColor$1
25162
25981
  };
@@ -25193,7 +26012,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
25193
26012
  }, "Autopay Enabled")));
25194
26013
  };
25195
26014
 
25196
- var FormattedCreditCard$1 = themeComponent$1(FormattedCreditCard, "FormattedCreditCard", fallbackValues$n);
26015
+ var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$m);
25197
26016
 
25198
26017
  var Hamburger = styled.button.withConfig({
25199
26018
  displayName: "HamburgerButton__Hamburger",
@@ -25275,7 +26094,7 @@ var fontSize$8 = {
25275
26094
  h5: "1.375rem",
25276
26095
  h6: "1.25rem"
25277
26096
  };
25278
- var fallbackValues$o = {
26097
+ var fallbackValues$n = {
25279
26098
  fontFamily: fontFamily$5,
25280
26099
  fontSize: fontSize$8
25281
26100
  };
@@ -25317,7 +26136,7 @@ var Heading = function Heading(_ref) {
25317
26136
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
25318
26137
  };
25319
26138
 
25320
- var Heading$1 = themeComponent$1(Heading, "Heading", fallbackValues$o, "h1");
26139
+ var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$n, "h1");
25321
26140
 
25322
26141
  var Image = styled.img.withConfig({
25323
26142
  displayName: "ImageBoxstyled__Image",
@@ -25444,7 +26263,7 @@ var fontWeight$4 = {
25444
26263
  pL: "600",
25445
26264
  h6: "700"
25446
26265
  };
25447
- var fallbackValues$p = {
26266
+ var fallbackValues$o = {
25448
26267
  fontWeight: fontWeight$4
25449
26268
  };
25450
26269
 
@@ -25472,7 +26291,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
25472
26291
  }, amount));
25473
26292
  };
25474
26293
 
25475
- var LabeledAmount$1 = themeComponent$1(LabeledAmount, "LabeledAmount", fallbackValues$p, "default");
26294
+ var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$o, "default");
25476
26295
 
25477
26296
  var weightTitle = {
25478
26297
  "default": "600",
@@ -25482,7 +26301,7 @@ var paragraphVariant = {
25482
26301
  "default": "pL",
25483
26302
  small: "pS"
25484
26303
  };
25485
- var fallbackValues$q = {
26304
+ var fallbackValues$p = {
25486
26305
  weightTitle: weightTitle,
25487
26306
  paragraphVariant: paragraphVariant
25488
26307
  };
@@ -25491,7 +26310,9 @@ var LineItem = function LineItem(_ref) {
25491
26310
  var description = _ref.description,
25492
26311
  subDescription = _ref.subDescription,
25493
26312
  amount = _ref.amount,
25494
- themeValues = _ref.themeValues;
26313
+ themeValues = _ref.themeValues,
26314
+ _ref$displayQuantity = _ref.displayQuantity,
26315
+ displayQuantity = _ref$displayQuantity === void 0 ? null : _ref$displayQuantity;
25495
26316
  return /*#__PURE__*/React.createElement(Cluster, {
25496
26317
  nowrap: true,
25497
26318
  justify: "space-between",
@@ -25504,24 +26325,27 @@ var LineItem = function LineItem(_ref) {
25504
26325
  }, description), /*#__PURE__*/React.createElement(Paragraph$1, {
25505
26326
  variant: themeValues.paragraphVariant,
25506
26327
  weight: "400"
25507
- }, subDescription)), /*#__PURE__*/React.createElement(Paragraph$1, {
26328
+ }, subDescription)), !!displayQuantity && /*#__PURE__*/React.createElement(Paragraph$1, {
26329
+ variant: themeValues.paragraphVariant,
26330
+ weight: themeValues.weightTitle
26331
+ }, "x".concat(displayQuantity)), /*#__PURE__*/React.createElement(Paragraph$1, {
25508
26332
  variant: themeValues.paragraphVariant,
25509
26333
  weight: "600",
25510
26334
  extraStyles: "margin: 0; text-align: end; min-width: fit-content; padding-left: 32px;"
25511
26335
  }, amount));
25512
26336
  };
25513
26337
 
25514
- var LineItem$1 = themeComponent$1(LineItem, "LineItem", fallbackValues$q, "default");
26338
+ var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$p, "default");
25515
26339
 
25516
26340
  var color$8 = "#15749D";
25517
- var fallbackValues$r = {
26341
+ var fallbackValues$q = {
25518
26342
  color: color$8
25519
26343
  };
25520
26344
 
25521
26345
  var SpinnerSvgAnimation = styled.svg.withConfig({
25522
26346
  displayName: "Spinner__SpinnerSvgAnimation",
25523
26347
  componentId: "sc-vhupl9-0"
25524
- })(["animation:rotate 2s linear infinite;margin:-25px 0 0 -25px;width:", "px;height:", "px;& .path{stroke:", ";stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;}@keyframes rotate{100%{transform:rotate(360deg);}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}}"], function (_ref) {
26348
+ })(["animation:rotate 2s linear infinite;margin:-25px 0 0 -25px;width:", "px;height:", "px;& .path{stroke:", ";stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;}@keyframes rotate{100%{transform:rotate(360deg);}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}}", ""], function (_ref) {
25525
26349
  var size = _ref.size;
25526
26350
  return size;
25527
26351
  }, function (_ref2) {
@@ -25530,19 +26354,36 @@ var SpinnerSvgAnimation = styled.svg.withConfig({
25530
26354
  }, function (_ref3) {
25531
26355
  var color = _ref3.color;
25532
26356
  return color;
26357
+ }, function (_ref4) {
26358
+ var centerSpinner = _ref4.centerSpinner;
26359
+ return centerSpinner ? css(["margin:0;"]) : "";
25533
26360
  });
25534
26361
  var SpinnerContainer$2 = styled.div.withConfig({
25535
26362
  displayName: "Spinner__SpinnerContainer",
25536
26363
  componentId: "sc-vhupl9-1"
25537
- })(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;"]);
26364
+ })(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;", ""], function (_ref5) {
26365
+ var centerSpinner = _ref5.centerSpinner,
26366
+ size = _ref5.size;
26367
+ return centerSpinner ? css(["width:", "px;height:", "px;"], size, size) : "";
26368
+ });
26369
+ /*
26370
+ `centerSpinner` prop alters existing styling of spinner to allow it to properly center itself within
26371
+ containers. Default is false to preserve legacy behavior for past uses.
26372
+ */
25538
26373
 
25539
- var Spinner$1 = function Spinner(_ref4) {
25540
- var _ref4$size = _ref4.size,
25541
- size = _ref4$size === void 0 ? "24" : _ref4$size,
25542
- themeValues = _ref4.themeValues;
25543
- return /*#__PURE__*/React.createElement(SpinnerContainer$2, null, /*#__PURE__*/React.createElement(SpinnerSvgAnimation, {
26374
+ var Spinner$1 = function Spinner(_ref6) {
26375
+ var _ref6$size = _ref6.size,
26376
+ size = _ref6$size === void 0 ? "24" : _ref6$size,
26377
+ _ref6$centerSpinner = _ref6.centerSpinner,
26378
+ centerSpinner = _ref6$centerSpinner === void 0 ? false : _ref6$centerSpinner,
26379
+ themeValues = _ref6.themeValues;
26380
+ return /*#__PURE__*/React.createElement(SpinnerContainer$2, {
26381
+ centerSpinner: centerSpinner,
26382
+ size: size
26383
+ }, /*#__PURE__*/React.createElement(SpinnerSvgAnimation, {
25544
26384
  size: size,
25545
- color: themeValues.color
26385
+ color: themeValues.color,
26386
+ centerSpinner: centerSpinner
25546
26387
  }, /*#__PURE__*/React.createElement("circle", {
25547
26388
  className: "path",
25548
26389
  cx: "50",
@@ -25553,7 +26394,7 @@ var Spinner$1 = function Spinner(_ref4) {
25553
26394
  })));
25554
26395
  };
25555
26396
 
25556
- var Spinner$2 = themeComponent$1(Spinner$1, "Spinner", fallbackValues$r);
26397
+ var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$q);
25557
26398
 
25558
26399
  var Loading = function Loading() {
25559
26400
  return /*#__PURE__*/React.createElement(Box, {
@@ -25819,7 +26660,7 @@ var height$1 = {
25819
26660
  "default": "3rem",
25820
26661
  large: "192px"
25821
26662
  };
25822
- var fallbackValues$s = {
26663
+ var fallbackValues$r = {
25823
26664
  color: color$9,
25824
26665
  height: height$1
25825
26666
  };
@@ -25928,12 +26769,12 @@ var Placeholder = function Placeholder(_ref2) {
25928
26769
  }, text)))))))))));
25929
26770
  };
25930
26771
 
25931
- var Placeholder$1 = themeComponent$1(Placeholder, "Placeholder", fallbackValues$s, "default");
26772
+ var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$r, "default");
25932
26773
 
25933
26774
  var backgroundColor$4 = {
25934
26775
  "default": "".concat(WHITE)
25935
26776
  };
25936
- var fallbackValues$t = {
26777
+ var fallbackValues$s = {
25937
26778
  backgroundColor: backgroundColor$4
25938
26779
  };
25939
26780
 
@@ -25961,15 +26802,14 @@ var ProcessingFee = function ProcessingFee(_ref) {
25961
26802
  }));
25962
26803
  };
25963
26804
 
25964
- var ProcessingFee$1 = themeComponent$1(ProcessingFee, "ProcessingFee", fallbackValues$t, "default");
25965
-
25966
-
26805
+ var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$s, "default");
25967
26806
 
25968
- var index$5 = /*#__PURE__*/Object.freeze({
25969
- __proto__: null,
25970
- colors: colors,
25971
- fontWeights: style_constants
25972
- });
26807
+ var backgroundColor$5 = MATISSE_BLUE;
26808
+ var borderColor$2 = GREY_CHATEAU;
26809
+ var fallbackValues$t = {
26810
+ borderColor: borderColor$2,
26811
+ backgroundColor: backgroundColor$5
26812
+ };
25973
26813
 
25974
26814
  var HiddenRadioInput = styled.input.withConfig({
25975
26815
  displayName: "RadioButtonWithLabel__HiddenRadioInput",
@@ -26033,7 +26873,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
26033
26873
  }, /*#__PURE__*/React.createElement(Circle, null), labelText));
26034
26874
  };
26035
26875
 
26036
- var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues);
26876
+ var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$t);
26037
26877
 
26038
26878
  var activeColor$5 = "".concat(MATISSE_BLUE);
26039
26879
  var inactiveColor = "".concat(GREY_CHATEAU);
@@ -26059,6 +26899,8 @@ var RadioButton$1 = function RadioButton(_ref2) {
26059
26899
  name = _ref2.name,
26060
26900
  _ref2$disabled = _ref2.disabled,
26061
26901
  disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
26902
+ _ref2$ariaDescribedBy = _ref2.ariaDescribedBy,
26903
+ ariaDescribedBy = _ref2$ariaDescribedBy === void 0 ? "" : _ref2$ariaDescribedBy,
26062
26904
  themeValues = _ref2.themeValues;
26063
26905
  var buttonBorder = {
26064
26906
  onFocused: {
@@ -26110,6 +26952,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
26110
26952
  "aria-label": name,
26111
26953
  disabled: disabled,
26112
26954
  onClick: toggleRadio,
26955
+ "aria-describedby": ariaDescribedBy,
26113
26956
  tabIndex: "-1"
26114
26957
  }), /*#__PURE__*/React.createElement(Motion, {
26115
26958
  borderWidth: "1px",
@@ -26127,7 +26970,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
26127
26970
  })));
26128
26971
  };
26129
26972
 
26130
- var RadioButton$2 = themeComponent$1(RadioButton$1, "RadioButton", fallbackValues$u);
26973
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$u);
26131
26974
 
26132
26975
  var border$2 = {
26133
26976
  "default": "1px solid #caced8"
@@ -26209,16 +27052,16 @@ var SearchableSelect = function SearchableSelect(_ref) {
26209
27052
  }))));
26210
27053
  };
26211
27054
 
26212
- var SearchableSelect$1 = themeComponent$1(SearchableSelect, "SearchableSelect", fallbackValues$v, "default");
27055
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$v, "default");
26213
27056
 
26214
- var borderColor$2 = {
27057
+ var borderColor$3 = {
26215
27058
  "default": "".concat(GREY_CHATEAU)
26216
27059
  };
26217
27060
  var borderSize = {
26218
27061
  "default": "1px"
26219
27062
  };
26220
27063
  var fallbackValues$w = {
26221
- borderColor: borderColor$2,
27064
+ borderColor: borderColor$3,
26222
27065
  borderSize: borderSize
26223
27066
  };
26224
27067
 
@@ -26234,7 +27077,7 @@ var SolidDivider = function SolidDivider(_ref) {
26234
27077
  });
26235
27078
  };
26236
27079
 
26237
- var SolidDivider$1 = themeComponent$1(SolidDivider, "SolidDivider", fallbackValues$w, "default");
27080
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$w, "default");
26238
27081
 
26239
27082
  var placeHolderOptionUS = {
26240
27083
  text: "Please select state",
@@ -36994,7 +37837,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
36994
37837
  }, label))));
36995
37838
  };
36996
37839
 
36997
- var ToggleSwitch$1 = themeComponent$1(ToggleSwitch, "ToggleSwitch", fallbackValues$x);
37840
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$x);
36998
37841
 
36999
37842
  var background$1 = "".concat(ATHENS_GREY);
37000
37843
  var white$1 = "".concat(WHITE);
@@ -37039,12 +37882,12 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
37039
37882
  }));
37040
37883
  };
37041
37884
 
37042
- var backgroundColor$5 = WHITE;
37885
+ var backgroundColor$6 = WHITE;
37043
37886
  var imageBackgroundColor = INFO_BLUE;
37044
37887
  var headerBackgroundColor = STORM_GREY;
37045
37888
  var headerColor = WHITE;
37046
37889
  var fallbackValues$y = {
37047
- backgroundColor: backgroundColor$5,
37890
+ backgroundColor: backgroundColor$6,
37048
37891
  imageBackgroundColor: imageBackgroundColor,
37049
37892
  headerBackgroundColor: headerBackgroundColor,
37050
37893
  headerColor: headerColor
@@ -37091,7 +37934,7 @@ var CardText = function CardText(_ref) {
37091
37934
  color: themeValues.textColor
37092
37935
  }, text))));
37093
37936
  };
37094
- var CardText$1 = themeComponent$1(withWindowSize(CardText), "CardText", fallbackValues$z);
37937
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$z);
37095
37938
 
37096
37939
  var CardHeader = function CardHeader(_ref) {
37097
37940
  var backgroundColor = _ref.backgroundColor,
@@ -37149,11 +37992,10 @@ var Card = function Card(_ref) {
37149
37992
  minWidth: width,
37150
37993
  extraStyles: extraStyles
37151
37994
  }, /*#__PURE__*/React.createElement(Cover, {
37152
- singleChild: true,
37153
- fillCenter: true
37995
+ singleChild: true
37154
37996
  }, /*#__PURE__*/React.createElement(Stack, {
37155
37997
  fullHeight: true,
37156
- childGap: "0",
37998
+ childGap: "1.5rem",
37157
37999
  bottomItem: numberOfChildren
37158
38000
  }, headerText && /*#__PURE__*/React.createElement(CardHeader, {
37159
38001
  headerText: headerText,
@@ -37163,7 +38005,10 @@ var Card = function Card(_ref) {
37163
38005
  borderRadius: borderRadius,
37164
38006
  padding: padding,
37165
38007
  as: headerAs
37166
- }), Image && !imgSrc && /*#__PURE__*/React.createElement(Box, {
38008
+ }), /*#__PURE__*/React.createElement(Stack, {
38009
+ direction: "row",
38010
+ childGap: "0"
38011
+ }, Image && !imgSrc && /*#__PURE__*/React.createElement(Box, {
37167
38012
  minHeight: imgHeight,
37168
38013
  padding: "0",
37169
38014
  background: themeValues.imageBackgroundColor
@@ -37180,15 +38025,19 @@ var Card = function Card(_ref) {
37180
38025
  backgroundColor: themeValues.imageBackgroundColor,
37181
38026
  src: imgSrc,
37182
38027
  alt: imgAltText
37183
- }), text && /*#__PURE__*/React.createElement(CardText$1, {
38028
+ }), /*#__PURE__*/React.createElement(Box, {
38029
+ padding: "0",
38030
+ width: "100%",
38031
+ extraStyles: "flex-basis: 100%;"
38032
+ }, text && /*#__PURE__*/React.createElement(CardText$1, {
37184
38033
  padding: padding,
37185
38034
  titleText: titleText,
37186
38035
  text: text,
37187
38036
  titleVariant: titleVariant
37188
- }), children)));
38037
+ }), children)))));
37189
38038
  };
37190
38039
 
37191
- var Card$1 = themeComponent$1(withWindowSize(Card), "Card", fallbackValues$y);
38040
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$y);
37192
38041
 
37193
38042
  var fontFamily$6 = "Public Sans, sans-serif";
37194
38043
  var activeColor$6 = MATISSE_BLUE;
@@ -37226,7 +38075,7 @@ var NavTab = function NavTab(_ref) {
37226
38075
  }, label));
37227
38076
  };
37228
38077
 
37229
- var NavTab$1 = themeComponent$1(NavTab, "NavTab", fallbackValues$A);
38078
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$A);
37230
38079
 
37231
38080
  var NavTabs = function NavTabs(_ref) {
37232
38081
  var tabsConfig = _ref.tabsConfig,
@@ -37250,6 +38099,14 @@ var NavTabs = function NavTabs(_ref) {
37250
38099
  }, tabs)));
37251
38100
  };
37252
38101
 
38102
+
38103
+
38104
+ var index$5 = /*#__PURE__*/Object.freeze({
38105
+ __proto__: null,
38106
+ colors: colors,
38107
+ fontWeights: style_constants
38108
+ });
38109
+
37253
38110
  var shineFrames = keyframes$3(["{0{background-position:0 0;}20%{background-position:100% 100%;}100%{background-position:100% 100%;}}"]);
37254
38111
  var LoadingPill = styled.div.withConfig({
37255
38112
  displayName: "LoadingPillstyled__LoadingPill",
@@ -37317,11 +38174,11 @@ var TableCell_styled = styled.td.withConfig({
37317
38174
  return extraStyles;
37318
38175
  });
37319
38176
 
37320
- var backgroundColor$6 = ALABASTER_WHITE;
37321
- var borderColor$3 = GREY_CHATEAU;
38177
+ var backgroundColor$7 = ALABASTER_WHITE;
38178
+ var borderColor$4 = GREY_CHATEAU;
37322
38179
  var fallbackValues$B = {
37323
- backgroundColor: backgroundColor$6,
37324
- borderColor: borderColor$3
38180
+ backgroundColor: backgroundColor$7,
38181
+ borderColor: borderColor$4
37325
38182
  };
37326
38183
 
37327
38184
  var StyledTableHead = styled.thead.withConfig({
@@ -37339,10 +38196,10 @@ var StyledTableHead = styled.thead.withConfig({
37339
38196
  return fontSize;
37340
38197
  });
37341
38198
 
37342
- var borderColor$4 = GREY_CHATEAU;
38199
+ var borderColor$5 = GREY_CHATEAU;
37343
38200
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
37344
38201
  var fallbackValues$C = {
37345
- borderColor: borderColor$4,
38202
+ borderColor: borderColor$5,
37346
38203
  hoverBackgroundColor: hoverBackgroundColor$1
37347
38204
  };
37348
38205
 
@@ -37383,7 +38240,7 @@ var TableRow = function TableRow(_ref) {
37383
38240
  }, props), children);
37384
38241
  };
37385
38242
 
37386
- var TableRow$1 = themeComponent$1(TableRow, "TableRow", fallbackValues$C);
38243
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$C);
37387
38244
 
37388
38245
  var TableHead = function TableHead(_ref) {
37389
38246
  var children = _ref.children,
@@ -37399,7 +38256,7 @@ var TableHead = function TableHead(_ref) {
37399
38256
  }, children));
37400
38257
  };
37401
38258
 
37402
- var TableHead$1 = themeComponent$1(TableHead, "TableHead", fallbackValues$B);
38259
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$B);
37403
38260
 
37404
38261
  var TableHeading_styled = styled.th.withConfig({
37405
38262
  displayName: "TableHeadingstyled",
@@ -39319,9 +40176,9 @@ AddressForm.reducer = reducer;
39319
40176
  AddressForm.mapStateToProps = mapStateToProps$1;
39320
40177
  AddressForm.mapDispatchToProps = mapDispatchToProps;
39321
40178
 
39322
- var backgroundColor$7 = "#ebeffb";
40179
+ var backgroundColor$8 = "#ebeffb";
39323
40180
  var fallbackValues$D = {
39324
- backgroundColor: backgroundColor$7
40181
+ backgroundColor: backgroundColor$8
39325
40182
  };
39326
40183
 
39327
40184
  var Banner = function Banner(_ref) {
@@ -39372,7 +40229,7 @@ var Banner = function Banner(_ref) {
39372
40229
  }, /*#__PURE__*/React.createElement(Image, null))));
39373
40230
  };
39374
40231
 
39375
- var Banner$1 = themeComponent$1(Banner, "Banner", fallbackValues$D);
40232
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$D);
39376
40233
 
39377
40234
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
39378
40235
  var _newPasswordErrorMess;
@@ -39545,7 +40402,9 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
39545
40402
  _ref$name = _ref.name,
39546
40403
  name = _ref$name === void 0 ? "" : _ref$name,
39547
40404
  _ref$index = _ref.index,
39548
- index = _ref$index === void 0 ? 1 : _ref$index;
40405
+ index = _ref$index === void 0 ? 1 : _ref$index,
40406
+ _ref$extraStyles = _ref.extraStyles,
40407
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
39549
40408
 
39550
40409
  var handleKeyDown = function handleKeyDown(e) {
39551
40410
  if (e.keyCode === 13) {
@@ -39605,7 +40464,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
39605
40464
  hoverStyles: "cursor: pointer;",
39606
40465
  tabIndex: "0",
39607
40466
  onKeyDown: handleKeyDown,
39608
- extraStyles: "z-index: 25;",
40467
+ extraStyles: "z-index: 25; ".concat(extraStyles),
39609
40468
  role: "button",
39610
40469
  "aria-expanded": isOpen.toString(),
39611
40470
  "aria-controls": id,
@@ -39641,7 +40500,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
39641
40500
  }, children))));
39642
40501
  };
39643
40502
 
39644
- var CollapsibleSection$1 = themeComponent$1(CollapsibleSection, "CollapsibleSection", fallbackValues$E);
40503
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$E);
39645
40504
 
39646
40505
  var ClipboardIcon = function ClipboardIcon(_ref) {
39647
40506
  var themeValues = _ref.themeValues;
@@ -39675,7 +40534,7 @@ var ClipboardIcon = function ClipboardIcon(_ref) {
39675
40534
  })));
39676
40535
  };
39677
40536
 
39678
- var ClipboardIcon$1 = themeComponent$1(ClipboardIcon, "Icons", fallbackValues$3, "primary");
40537
+ var ClipboardIcon$1 = themeComponent(ClipboardIcon, "Icons", fallbackValues$2, "primary");
39679
40538
 
39680
40539
  /*
39681
40540
  This component will render `content` and a clipboard icon.
@@ -39932,13 +40791,16 @@ var EditableList = function EditableList(_ref) {
39932
40791
  autoPayMethods = _ref.autoPayMethods,
39933
40792
  _ref$as = _ref.as,
39934
40793
  as = _ref$as === void 0 ? "p" : _ref$as,
40794
+ _ref$listPadding = _ref.listPadding,
40795
+ listPadding = _ref$listPadding === void 0 ? "0rem 0rem 1.5rem 0rem" : _ref$listPadding,
39935
40796
  qaPrefix = _ref.qaPrefix,
39936
40797
  ariaLabel = _ref.ariaLabel;
39937
40798
  var addText = "Add a".concat(itemName[0].match(/[aieouAIEOU]/) ? "n" : "", " ").concat(itemName);
39938
40799
  return /*#__PURE__*/React.createElement(Box, {
39939
- padding: "0rem 0rem 1.5rem 0rem",
40800
+ padding: listPadding,
39940
40801
  as: "section",
39941
- "aria-labelledby": "li"
40802
+ "aria-labelledby": typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : "",
40803
+ "aria-label": !title && typeof itemName === "string" ? "editable-list-".concat(createIdFromString(itemName)) : ""
39942
40804
  }, /*#__PURE__*/React.createElement(Stack, {
39943
40805
  childGap: "0rem"
39944
40806
  }, title !== "" && /*#__PURE__*/React.createElement(Box, {
@@ -39947,7 +40809,8 @@ var EditableList = function EditableList(_ref) {
39947
40809
  as: as,
39948
40810
  weight: titleWeight,
39949
40811
  color: CHARADE_GREY,
39950
- extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;"
40812
+ extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;",
40813
+ id: typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : ""
39951
40814
  }, title)), /*#__PURE__*/React.createElement(Box, {
39952
40815
  padding: "0",
39953
40816
  borderRadius: "4px",
@@ -40259,7 +41122,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
40259
41122
  }));
40260
41123
  };
40261
41124
 
40262
- var FooterWithSubfooter$1 = themeComponent$1(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$F);
41125
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$F);
40263
41126
 
40264
41127
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
40265
41128
  var _EmailErrorMessages;
@@ -40310,10 +41173,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
40310
41173
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
40311
41174
 
40312
41175
  var textColor$4 = "#ffffff";
40313
- var backgroundColor$8 = "#182848";
41176
+ var backgroundColor$9 = "#182848";
40314
41177
  var fallbackValues$G = {
40315
41178
  textColor: textColor$4,
40316
- backgroundColor: backgroundColor$8
41179
+ backgroundColor: backgroundColor$9
40317
41180
  };
40318
41181
 
40319
41182
  var HighlightTabRow = function HighlightTabRow(_ref) {
@@ -40371,7 +41234,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
40371
41234
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
40372
41235
  };
40373
41236
 
40374
- var HighlightTabRow$1 = themeComponent$1(HighlightTabRow, "HighlightTabRow", fallbackValues$G);
41237
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$G);
40375
41238
 
40376
41239
  var AccountBillIcon = function AccountBillIcon() {
40377
41240
  return /*#__PURE__*/React.createElement("svg", {
@@ -45518,7 +46381,7 @@ var borderRadius = {
45518
46381
  largeTitle: "0.25rem",
45519
46382
  small: "0.25rem"
45520
46383
  };
45521
- var backgroundColor$9 = {
46384
+ var backgroundColor$a = {
45522
46385
  "default": WHITE,
45523
46386
  largeTitle: WHITE,
45524
46387
  small: WHITE
@@ -45533,7 +46396,7 @@ var fallbackValues$H = {
45533
46396
  titleSpacing: titleSpacing,
45534
46397
  boxShadow: boxShadow$1,
45535
46398
  borderRadius: borderRadius,
45536
- backgroundColor: backgroundColor$9
46399
+ backgroundColor: backgroundColor$a
45537
46400
  };
45538
46401
 
45539
46402
  /*
@@ -45591,9 +46454,9 @@ var Module = function Module(_ref) {
45591
46454
  }, children)));
45592
46455
  };
45593
46456
 
45594
- var Module$1 = /*#__PURE__*/memo(themeComponent$1(Module, "Module", fallbackValues$H, "default"));
46457
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$H, "default"));
45595
46458
 
45596
- var backgroundColor$a = {
46459
+ var backgroundColor$b = {
45597
46460
  profile: "#3b414d",
45598
46461
  cms: "#3b414d"
45599
46462
  };
@@ -45602,7 +46465,7 @@ var shadowColor = {
45602
46465
  cms: "#292A33"
45603
46466
  };
45604
46467
  var fallbackValues$I = {
45605
- backgroundColor: backgroundColor$a,
46468
+ backgroundColor: backgroundColor$b,
45606
46469
  shadowColor: shadowColor
45607
46470
  };
45608
46471
 
@@ -45642,7 +46505,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
45642
46505
  }, menuContent));
45643
46506
  };
45644
46507
 
45645
- var NavMenuDesktop$1 = themeComponent$1(NavMenuDesktop, "NavMenu", fallbackValues$I, "profile");
46508
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$I, "profile");
45646
46509
 
45647
46510
  var menu = posed.div({
45648
46511
  invisible: {
@@ -45677,19 +46540,25 @@ var menu = posed.div({
45677
46540
  var ImposterMenu = styled(menu).withConfig({
45678
46541
  displayName: "NavMenuMobile__ImposterMenu",
45679
46542
  componentId: "sc-1pf0qp7-0"
45680
- })(["position:fixed;top:72px;"]);
46543
+ })(["position:fixed;top:", ";"], function (_ref) {
46544
+ var headerSize = _ref.headerSize;
46545
+ return headerSize;
46546
+ });
45681
46547
 
45682
- var NavMenuMobile = function NavMenuMobile(_ref) {
45683
- var id = _ref.id,
45684
- _ref$menuContent = _ref.menuContent,
45685
- menuContent = _ref$menuContent === void 0 ? [] : _ref$menuContent,
45686
- _ref$visible = _ref.visible,
45687
- visible = _ref$visible === void 0 ? false : _ref$visible,
45688
- themeValues = _ref.themeValues;
46548
+ var NavMenuMobile = function NavMenuMobile(_ref2) {
46549
+ var id = _ref2.id,
46550
+ _ref2$menuContent = _ref2.menuContent,
46551
+ menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
46552
+ _ref2$visible = _ref2.visible,
46553
+ visible = _ref2$visible === void 0 ? false : _ref2$visible,
46554
+ _ref2$headerSize = _ref2.headerSize,
46555
+ headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
46556
+ themeValues = _ref2.themeValues;
45689
46557
  return /*#__PURE__*/React.createElement(ImposterMenu, {
45690
46558
  id: id,
45691
46559
  initialPose: "invisible",
45692
- pose: visible ? "visible" : "invisible"
46560
+ pose: visible ? "visible" : "invisible",
46561
+ headerSize: headerSize
45693
46562
  }, /*#__PURE__*/React.createElement(Box, {
45694
46563
  width: "100vw",
45695
46564
  padding: "1rem 0.5rem",
@@ -45698,7 +46567,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
45698
46567
  }, menuContent));
45699
46568
  };
45700
46569
 
45701
- var NavMenuMobile$1 = themeComponent$1(NavMenuMobile, "NavMenu", fallbackValues$I, "profile");
46570
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$I, "profile");
45702
46571
 
45703
46572
  var ACH_METHOD = "BANK_ACCOUNT";
45704
46573
  var CC_METHOD = "CREDIT_CARD";
@@ -45792,7 +46661,7 @@ var AutopayModal = function AutopayModal(_ref) {
45792
46661
  var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
45793
46662
  var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
45794
46663
  var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
45795
- return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address in your profile. Do you want to save these now?");
46664
+ return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address. Do you want to save these now?");
45796
46665
  };
45797
46666
 
45798
46667
  var plan = isPaymentPlan ? "your payment plan" : "autopay";
@@ -45803,7 +46672,7 @@ var AutopayModal = function AutopayModal(_ref) {
45803
46672
  var modalExtraProps = {
45804
46673
  modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
45805
46674
  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),
45806
- continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add to Profile",
46675
+ continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add",
45807
46676
  useDangerButton: autoPayActive,
45808
46677
  continueAction: autoPayActive ? function () {
45809
46678
  deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
@@ -45885,7 +46754,7 @@ var AutopayModal = function AutopayModal(_ref) {
45885
46754
  }, modalExtraProps), renderAutoPayControl());
45886
46755
  };
45887
46756
 
45888
- var AutopayModalModule = themeComponent$1(AutopayModal, "AutopayModal", fallbackValues$J);
46757
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$J);
45889
46758
 
45890
46759
  var AmountModule = function AmountModule(_ref) {
45891
46760
  var totalAmountDue = _ref.totalAmountDue,
@@ -46111,7 +46980,7 @@ var RemoveAccountModalModule = function RemoveAccountModalModule(_ref) {
46111
46980
  },
46112
46981
  modalOpen: modalIsOpen,
46113
46982
  modalHeaderText: "Remove ".concat(accountType),
46114
- modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, " from your profile? Any autopay scheduled against ").concat(obligations.length > 1 ? "them" : "it", " will be deactivated."),
46983
+ modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, "? Any autopay scheduled against ").concat(obligations.length > 1 ? "them" : "it", " will be deactivated."),
46115
46984
  continueButtonText: "Remove",
46116
46985
  continueAction: function continueAction() {
46117
46986
  removeAccount();
@@ -46451,6 +47320,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
46451
47320
  maximum = _ref.maximum,
46452
47321
  _ref$minimum = _ref.minimum,
46453
47322
  minimum = _ref$minimum === void 0 ? 1 : _ref$minimum,
47323
+ blockPartialPaymentOverpay = _ref.blockPartialPaymentOverpay,
46454
47324
  clearOnDismount = _ref.clearOnDismount,
46455
47325
  fields = _ref.fields,
46456
47326
  actions = _ref.actions,
@@ -46466,6 +47336,18 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
46466
47336
  }
46467
47337
 
46468
47338
  var amountErrors = (_amountErrors = {}, _defineProperty(_amountErrors, required.error, "Amount is required"), _defineProperty(_amountErrors, numberGreaterThanOrEqualTo.error, "There is a minimum payment of ".concat(displayCurrency(minimum))), _defineProperty(_amountErrors, numberLessThanOrEqualTo.error, "There is a maximum payment of ".concat(displayCurrency(maximum))), _amountErrors);
47339
+
47340
+ var getPartialAmountFormErrors = function getPartialAmountFormErrors(itemAmount) {
47341
+ var errorMessages = amountErrors;
47342
+
47343
+ if (blockPartialPaymentOverpay) {
47344
+ var maxAmountError = "There is a maximum payment of ".concat(displayCurrency(itemAmount));
47345
+ return _objectSpread2(_objectSpread2({}, errorMessages), {}, _defineProperty({}, numberLessThanOrEqualTo.error, maxAmountError));
47346
+ }
47347
+
47348
+ return errorMessages;
47349
+ };
47350
+
46469
47351
  var lineItemsNew = Array.isArray(lineItems) ? lineItems : [];
46470
47352
  return /*#__PURE__*/React.createElement(FormContainer$1, {
46471
47353
  variant: variant,
@@ -46484,7 +47366,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
46484
47366
  field: fields[li.id],
46485
47367
  fieldActions: actions.fields[li.id],
46486
47368
  showErrors: showErrors,
46487
- errorMessages: amountErrors,
47369
+ errorMessages: getPartialAmountFormErrors(li.amount),
46488
47370
  style: {
46489
47371
  textAlign: "right"
46490
47372
  },
@@ -46503,6 +47385,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
46503
47385
 
46504
47386
  var createPartialAmountFormState = function createPartialAmountFormState(lineItems, maximum) {
46505
47387
  var minimum = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
47388
+ var blockPartialPaymentOverpay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
46506
47389
  var formConfig = lineItems.reduce(function (acc, item) {
46507
47390
  var validators = [required(), validateSum(numberGreaterThanOrEqualTo(minimum), lineItems.filter(function (lineItem) {
46508
47391
  return lineItem != item;
@@ -46518,6 +47401,10 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
46518
47401
  }, [])));
46519
47402
  }
46520
47403
 
47404
+ if (blockPartialPaymentOverpay) {
47405
+ validators.push(numberLessThanOrEqualTo(item.amount));
47406
+ }
47407
+
46521
47408
  return _objectSpread2(_objectSpread2({}, acc), {}, _defineProperty({}, item.id, {
46522
47409
  validators: validators,
46523
47410
  constraints: [onlyNaturals()],
@@ -46750,10 +47637,12 @@ var Pagination = function Pagination(_ref3) {
46750
47637
  }));
46751
47638
  };
46752
47639
 
46753
- var Pagination$1 = themeComponent$1(Pagination, "Pagination", fallbackValues$K);
47640
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$K);
46754
47641
 
46755
47642
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
46756
- var _ref$forwardButtonTex = _ref.forwardButtonText,
47643
+ var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
47644
+ isForwardButtonDisabled = _ref$isForwardButtonD === void 0 ? false : _ref$isForwardButtonD,
47645
+ _ref$forwardButtonTex = _ref.forwardButtonText,
46757
47646
  forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
46758
47647
  forwardButtonAction = _ref.forwardButtonAction,
46759
47648
  forwardButtonLoading = _ref.forwardButtonLoading,
@@ -46770,7 +47659,9 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
46770
47659
  redirectText = _ref$redirectText === void 0 ? "Return" : _ref$redirectText,
46771
47660
  buttonFlexOverride = _ref.buttonFlexOverride,
46772
47661
  _ref$hideForwardButto = _ref.hideForwardButton,
46773
- hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto;
47662
+ hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto,
47663
+ _ref$hideBackButton = _ref.hideBackButton,
47664
+ hideBackButton = _ref$hideBackButton === void 0 ? false : _ref$hideBackButton;
46774
47665
 
46775
47666
  var _useContext = useContext(ThemeContext),
46776
47667
  isMobile = _useContext.isMobile;
@@ -46793,14 +47684,16 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
46793
47684
  text: redirectText,
46794
47685
  variant: forwardButtonVariant,
46795
47686
  extraStyles: isMobile && "flex-grow: 1",
46796
- dataQa: redirectText
47687
+ dataQa: redirectText,
47688
+ disabled: isForwardButtonDisabled
46797
47689
  }) : forwardButtonAction && /*#__PURE__*/React.createElement(ButtonWithAction, {
46798
47690
  text: forwardButtonText,
46799
47691
  variant: forwardButtonVariant,
46800
47692
  action: forwardButtonAction,
46801
47693
  isLoading: forwardButtonLoading,
46802
47694
  extraStyles: isMobile && "flex-grow: 1",
46803
- dataQa: forwardButtonText
47695
+ dataQa: forwardButtonText,
47696
+ disabled: isForwardButtonDisabled
46804
47697
  });
46805
47698
  return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
46806
47699
  padding: "1.25rem 0"
@@ -46809,10 +47702,10 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
46809
47702
  }, /*#__PURE__*/React.createElement(Cluster, {
46810
47703
  justify: buttonFlexOverride ? buttonFlexOverride : !!backButton ? "space-between" : "flex-end",
46811
47704
  align: "center"
46812
- }, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
47705
+ }, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
46813
47706
  };
46814
47707
 
46815
- var backgroundColor$b = {
47708
+ var backgroundColor$c = {
46816
47709
  "default": "transparent",
46817
47710
  small: "transparent"
46818
47711
  };
@@ -46829,7 +47722,7 @@ var labeledAmountTotal = {
46829
47722
  small: "p"
46830
47723
  };
46831
47724
  var fallbackValues$L = {
46832
- backgroundColor: backgroundColor$b,
47725
+ backgroundColor: backgroundColor$c,
46833
47726
  lineItem: lineItem,
46834
47727
  labeledAmountSubtotal: labeledAmountSubtotal,
46835
47728
  labeledAmountTotal: labeledAmountTotal
@@ -46877,7 +47770,7 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
46877
47770
  },
46878
47771
  text: "Void",
46879
47772
  padding: "0",
46880
- extraStyles: "\n min-width: 65px; \n margin: 0px;\n min-height: 0px;\n ",
47773
+ extraStyles: "\n min-width: 65px;\n margin: 0px;\n min-height: 0px;\n ",
46881
47774
  textExtraStyles: "font-weight: ".concat(FONT_WEIGHT_REGULAR, "; font-size: 14px;")
46882
47775
  })), /*#__PURE__*/React.createElement(Box, {
46883
47776
  padding: "0",
@@ -46905,12 +47798,69 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
46905
47798
  }));
46906
47799
  };
46907
47800
 
47801
+ var LoadingDetails = function LoadingDetails() {
47802
+ return /*#__PURE__*/React.createElement(Box, {
47803
+ padding: "0",
47804
+ background: GRECIAN_GREY,
47805
+ borderRadius: "4px",
47806
+ minHeight: "196px"
47807
+ }, /*#__PURE__*/React.createElement(Cover, {
47808
+ minHeight: "196px",
47809
+ singleChild: true,
47810
+ fillCenter: true
47811
+ }, /*#__PURE__*/React.createElement(Center, {
47812
+ intrinsic: true
47813
+ }, /*#__PURE__*/React.createElement(Box, {
47814
+ padding: "0",
47815
+ extraStyles: "flex-grow: 1; display: flex; justify-content: center; align-items: center;"
47816
+ }, /*#__PURE__*/React.createElement(Spinner$2, {
47817
+ size: "100",
47818
+ centerSpinner: true
47819
+ })))));
47820
+ };
47821
+
47822
+ var ErrorDetails = function ErrorDetails() {
47823
+ return /*#__PURE__*/React.createElement(Box, {
47824
+ padding: "0"
47825
+ }, /*#__PURE__*/React.createElement(Alert$1, {
47826
+ variant: "error",
47827
+ heading: "Error Loading Payment",
47828
+ text: "Please go back and try again.",
47829
+ showQuitLink: false,
47830
+ noBorder: true,
47831
+ enableBoxShadow: true,
47832
+ enableSmallText: true,
47833
+ innerContentPadding: "0 0 0 0.75rem",
47834
+ iconPadding: "0 0 0 0",
47835
+ height: "67px",
47836
+ minHeight: "67px",
47837
+ padding: "0.75rem"
47838
+ }));
47839
+ };
47840
+
47841
+ var getLoadingOrErrorContent = function getLoadingOrErrorContent() {
47842
+ var isLoading = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
47843
+ var isError = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
47844
+
47845
+ if (isLoading) {
47846
+ return /*#__PURE__*/React.createElement(LoadingDetails, null);
47847
+ } else if (isError) {
47848
+ return /*#__PURE__*/React.createElement(ErrorDetails, null);
47849
+ }
47850
+
47851
+ return /*#__PURE__*/React.createElement(Fragment$1, null);
47852
+ };
47853
+
46908
47854
  var Collapsible = function Collapsible(_ref2) {
46909
47855
  var content = _ref2.content,
46910
47856
  title = _ref2.title,
46911
47857
  supportsTouch = _ref2.supportsTouch,
46912
47858
  isOpen = _ref2.isOpen,
46913
- setIsOpen = _ref2.setIsOpen;
47859
+ setIsOpen = _ref2.setIsOpen,
47860
+ _ref2$isLoading = _ref2.isLoading,
47861
+ isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
47862
+ _ref2$isError = _ref2.isError,
47863
+ isError = _ref2$isError === void 0 ? false : _ref2$isError;
46914
47864
  return /*#__PURE__*/React.createElement(CollapsibleSection$1, {
46915
47865
  isMobile: true,
46916
47866
  supportsTouch: supportsTouch,
@@ -46933,13 +47883,17 @@ var Collapsible = function Collapsible(_ref2) {
46933
47883
  },
46934
47884
  positionTransition: true,
46935
47885
  initial: "closed"
46936
- }, content));
47886
+ }, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content));
46937
47887
  };
46938
47888
 
46939
47889
  var NonCollapsible = function NonCollapsible(_ref3) {
46940
47890
  var title = _ref3.title,
46941
- content = _ref3.content;
46942
- return /*#__PURE__*/React.createElement(Stack, null, title, content);
47891
+ content = _ref3.content,
47892
+ _ref3$isLoading = _ref3.isLoading,
47893
+ isLoading = _ref3$isLoading === void 0 ? false : _ref3$isLoading,
47894
+ _ref3$isError = _ref3.isError,
47895
+ isError = _ref3$isError === void 0 ? false : _ref3$isError;
47896
+ return /*#__PURE__*/React.createElement(Stack, null, title, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content);
46943
47897
  };
46944
47898
 
46945
47899
  var PaymentDetails = function PaymentDetails(_ref4) {
@@ -46969,7 +47923,11 @@ var PaymentDetails = function PaymentDetails(_ref4) {
46969
47923
  _ref4$voidableAmountP = _ref4.voidableAmountPaid,
46970
47924
  voidableAmountPaid = _ref4$voidableAmountP === void 0 ? 0 : _ref4$voidableAmountP,
46971
47925
  _ref4$remainingBalanc = _ref4.remainingBalance,
46972
- remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc;
47926
+ remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc,
47927
+ _ref4$isLoading = _ref4.isLoading,
47928
+ isLoading = _ref4$isLoading === void 0 ? false : _ref4$isLoading,
47929
+ _ref4$isError = _ref4.isError,
47930
+ isError = _ref4$isError === void 0 ? false : _ref4$isError;
46973
47931
 
46974
47932
  var _useState = useState(initiallyOpen),
46975
47933
  _useState2 = _slicedToArray(_useState, 2),
@@ -47072,14 +48030,18 @@ var PaymentDetails = function PaymentDetails(_ref4) {
47072
48030
  isOpen: isOpen,
47073
48031
  setIsOpen: setIsOpen,
47074
48032
  isMobile: isMobile,
47075
- supportsTouch: supportsTouch
48033
+ supportsTouch: supportsTouch,
48034
+ isLoading: isLoading,
48035
+ isError: isError
47076
48036
  }) : /*#__PURE__*/React.createElement(NonCollapsible, {
47077
48037
  title: title,
47078
- content: content
48038
+ content: content,
48039
+ isLoading: isLoading,
48040
+ isError: isError
47079
48041
  });
47080
48042
  };
47081
48043
 
47082
- var PaymentDetails$1 = themeComponent$1(PaymentDetails, "PaymentDetails", fallbackValues$L, "default");
48044
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$L, "default");
47083
48045
 
47084
48046
  var linkColor$5 = {
47085
48047
  "default": "#3176AA"
@@ -47155,9 +48117,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
47155
48117
  }, link));
47156
48118
  };
47157
48119
 
47158
- var AccountAndRoutingModal$1 = themeComponent$1(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$M, "default");
48120
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$M, "default");
47159
48121
 
47160
- var backgroundColor$c = {
48122
+ var backgroundColor$d = {
47161
48123
  "default": "#ffffff",
47162
48124
  footer: "#ffffff"
47163
48125
  };
@@ -47187,7 +48149,7 @@ var modalLinkHoverFocus$2 = {
47187
48149
  footer: standardInteractionStyles
47188
48150
  };
47189
48151
  var fallbackValues$N = {
47190
- backgroundColor: backgroundColor$c,
48152
+ backgroundColor: backgroundColor$d,
47191
48153
  linkColor: linkColor$6,
47192
48154
  border: border$3,
47193
48155
  fontSize: fontSize$b,
@@ -47222,7 +48184,8 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47222
48184
  background: themeValues.backgroundColor,
47223
48185
  border: "1px solid ".concat(themeValues.border),
47224
48186
  borderRadius: "3px",
47225
- extraStyles: "overflow: scroll; max-height: 20rem;"
48187
+ extraStyles: "overflow: scroll; max-height: 20rem;",
48188
+ id: "terms-body-text"
47226
48189
  }, /*#__PURE__*/React.createElement(Text$1, {
47227
48190
  variant: "p",
47228
48191
  extraStyles: "& a { text-decoration: underline; }"
@@ -47250,7 +48213,175 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47250
48213
  }, link));
47251
48214
  };
47252
48215
 
47253
- var TermsAndConditionsModal$1 = themeComponent$1(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$N, "default");
48216
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$N, "default");
48217
+
48218
+ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48219
+ var onCheck = _ref.onCheck,
48220
+ isChecked = _ref.isChecked,
48221
+ html = _ref.html,
48222
+ terms = _ref.terms,
48223
+ _ref$error = _ref.error,
48224
+ error = _ref$error === void 0 ? false : _ref$error,
48225
+ linkVariant = _ref.linkVariant;
48226
+
48227
+ var _useState = useState(false),
48228
+ _useState2 = _slicedToArray(_useState, 2),
48229
+ showTerms = _useState2[0],
48230
+ toggleShowTerms = _useState2[1];
48231
+
48232
+ return /*#__PURE__*/React.createElement(DisplayBox$1, null, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Checkbox$1, {
48233
+ name: "terms",
48234
+ title: "Terms and Conditions",
48235
+ error: error,
48236
+ checked: isChecked,
48237
+ onChange: onCheck
48238
+ }), /*#__PURE__*/React.createElement(Box, {
48239
+ padding: "0 0 0 58px"
48240
+ }, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Box, {
48241
+ padding: "0"
48242
+ }, html), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
48243
+ link: "Learn More",
48244
+ terms: terms,
48245
+ isOpen: showTerms,
48246
+ toggleOpen: toggleShowTerms,
48247
+ linkVariant: linkVariant
48248
+ })))));
48249
+ };
48250
+
48251
+ /*
48252
+ Hook that takes an ID selector for an element on the screen
48253
+ And optionally values for top position, left position, smooth behavior
48254
+ Finds element on screen and scrolls it to the provided coordinates
48255
+
48256
+ (string, number, number, string, number) => undefined;
48257
+ */
48258
+ var useScrollTo = function useScrollTo(id) {
48259
+ var top = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
48260
+ var left = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
48261
+ var behavior = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "auto";
48262
+ var delay = arguments.length > 4 ? arguments[4] : undefined;
48263
+ var scrollItem;
48264
+
48265
+ if (delay) {
48266
+ setTimeout(function () {
48267
+ var _scrollItem;
48268
+
48269
+ scrollItem = document.getElementById(id);
48270
+ (_scrollItem = scrollItem) === null || _scrollItem === void 0 ? void 0 : _scrollItem.scrollTo({
48271
+ top: top,
48272
+ left: left,
48273
+ behavior: behavior
48274
+ });
48275
+ }, delay);
48276
+ } else {
48277
+ var _scrollItem2;
48278
+
48279
+ scrollItem = document.getElementById(id);
48280
+ (_scrollItem2 = scrollItem) === null || _scrollItem2 === void 0 ? void 0 : _scrollItem2.scrollTo({
48281
+ top: top,
48282
+ left: left,
48283
+ behavior: behavior
48284
+ });
48285
+ }
48286
+ };
48287
+
48288
+ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
48289
+ var _ref$showCheckbox = _ref.showCheckbox,
48290
+ showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
48291
+ onCheck = _ref.onCheck,
48292
+ isChecked = _ref.isChecked,
48293
+ hasError = _ref.hasError,
48294
+ _ref$errorMessage = _ref.errorMessage,
48295
+ errorMessage = _ref$errorMessage === void 0 ? "Please accept Terms and Conditions" : _ref$errorMessage,
48296
+ _ref$description = _ref.description,
48297
+ description = _ref$description === void 0 ? "" : _ref$description,
48298
+ _ref$linkText = _ref.linkText,
48299
+ linkText = _ref$linkText === void 0 ? "Terms and Conditions" : _ref$linkText,
48300
+ html = _ref.html,
48301
+ terms = _ref.terms,
48302
+ _ref$id = _ref.id,
48303
+ id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
48304
+ _ref$displayInline = _ref.displayInline,
48305
+ displayInline = _ref$displayInline === void 0 ? true : _ref$displayInline,
48306
+ _ref$modalVariant = _ref.modalVariant,
48307
+ modalVariant = _ref$modalVariant === void 0 ? "default" : _ref$modalVariant,
48308
+ _ref$containerBackgro = _ref.containerBackground,
48309
+ containerBackground = _ref$containerBackgro === void 0 ? ATHENS_GREY : _ref$containerBackgro,
48310
+ _ref$checkboxMargin = _ref.checkboxMargin,
48311
+ checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
48312
+ _ref$modalTitle = _ref.modalTitle,
48313
+ modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
48314
+
48315
+ var _useState = useState(false),
48316
+ _useState2 = _slicedToArray(_useState, 2),
48317
+ showTerms = _useState2[0],
48318
+ toggleShowTerms = _useState2[1];
48319
+
48320
+ var standardBoxShadow = generateShadows().standard.base;
48321
+
48322
+ var toggleTerms = function toggleTerms(termsOpen) {
48323
+ toggleShowTerms(termsOpen);
48324
+
48325
+ if (termsOpen) {
48326
+ useScrollTo("terms-body-text", 0, 0, "smooth", 100);
48327
+ }
48328
+ };
48329
+
48330
+ return /*#__PURE__*/React.createElement(Box, {
48331
+ padding: displayInline ? "0" : "1.5rem",
48332
+ minWidth: displayInline ? "0" : "100%",
48333
+ background: displayInline ? "transparent" : containerBackground,
48334
+ boxShadow: displayInline ? "none" : standardBoxShadow,
48335
+ borderRadius: displayInline ? "0" : "4px"
48336
+ }, /*#__PURE__*/React.createElement(Stack, {
48337
+ childGap: "0"
48338
+ }, html && /*#__PURE__*/React.createElement(Box, {
48339
+ padding: "0"
48340
+ }, html), /*#__PURE__*/React.createElement(Cluster, {
48341
+ justify: "flex-start",
48342
+ align: "center",
48343
+ nowrap: true
48344
+ }, showCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
48345
+ name: id,
48346
+ error: hasError,
48347
+ checked: isChecked,
48348
+ onChange: onCheck,
48349
+ checkboxMargin: checkboxMargin,
48350
+ extraStyles: "align-self: flex-start;"
48351
+ }), /*#__PURE__*/React.createElement(Stack, {
48352
+ childGap: "0.25rem",
48353
+ fullHeight: true
48354
+ }, /*#__PURE__*/React.createElement(Cluster, {
48355
+ justify: "flex-start",
48356
+ align: "center",
48357
+ nowrap: true,
48358
+ extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
48359
+ }, description && /*#__PURE__*/React.createElement(Text$1, {
48360
+ color: CHARADE_GREY
48361
+ }, description), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
48362
+ link: linkText,
48363
+ terms: terms,
48364
+ isOpen: showTerms,
48365
+ toggleOpen: toggleTerms,
48366
+ linkVariant: modalVariant,
48367
+ title: modalTitle
48368
+ })), showCheckbox && hasError && /*#__PURE__*/React.createElement(Text$1, {
48369
+ variant: "pXS",
48370
+ color: ERROR_COLOR,
48371
+ id: "".concat(id, "-error-message")
48372
+ }, errorMessage)))));
48373
+ };
48374
+
48375
+ var _excluded$y = ["version"];
48376
+
48377
+ var TermsAndConditions = function TermsAndConditions(_ref) {
48378
+ var _ref$version = _ref.version,
48379
+ version = _ref$version === void 0 ? "v1" : _ref$version,
48380
+ rest = _objectWithoutProperties(_ref, _excluded$y);
48381
+
48382
+ var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
48383
+ return /*#__PURE__*/React.createElement(TermsAndConditionsControl, rest);
48384
+ };
47254
48385
 
47255
48386
  var PaymentFormACH = function PaymentFormACH(_ref) {
47256
48387
  var _routingNumberErrors, _accountNumberErrors;
@@ -47271,9 +48402,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
47271
48402
  showWalletCheckbox = _ref.showWalletCheckbox,
47272
48403
  saveToWallet = _ref.saveToWallet,
47273
48404
  walletCheckboxMarked = _ref.walletCheckboxMarked,
47274
- termsContent = _ref.termsContent,
47275
- _ref$termsTitle = _ref.termsTitle,
47276
- termsTitle = _ref$termsTitle === void 0 ? "Terms &amp; Conditions" : _ref$termsTitle;
48405
+ termsContent = _ref.termsContent;
47277
48406
 
47278
48407
  if (clearOnDismount) {
47279
48408
  useEffect$1(function () {
@@ -47293,13 +48422,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
47293
48422
  showAccount = _useState4[0],
47294
48423
  toggleShowAccount = _useState4[1];
47295
48424
 
47296
- var _useState5 = useState(false),
47297
- _useState6 = _slicedToArray(_useState5, 2),
47298
- termsModalOpen = _useState6[0],
47299
- setTermsModalOpen = _useState6[1];
47300
-
47301
48425
  var showTerms = !!termsContent;
47302
- var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
47303
48426
 
47304
48427
  var nameErrors = _defineProperty({}, required.error, "Name is required");
47305
48428
 
@@ -47410,7 +48533,8 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
47410
48533
  checked: defaultMethod.value,
47411
48534
  hidden: hideDefaultPayment
47412
48535
  }), (showWalletCheckbox || showTerms) && /*#__PURE__*/React.createElement(Cluster, {
47413
- childGap: "4px"
48536
+ childGap: "4px",
48537
+ align: "center"
47414
48538
  }, showWalletCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
47415
48539
  name: "bank checkbox",
47416
48540
  title: "Save checking account to wallet.",
@@ -47418,18 +48542,12 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
47418
48542
  onChange: saveToWallet
47419
48543
  }), showTerms && /*#__PURE__*/React.createElement(Cover, {
47420
48544
  singleChild: true
47421
- }, /*#__PURE__*/React.createElement(Cluster, {
47422
- childGap: 0
47423
- }, /*#__PURE__*/React.createElement(Text$1, {
47424
- variant: showTermsLinkVariant
47425
- }, "View\xA0"), /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
47426
- link: termsTitle,
47427
- linkVariant: showTermsLinkVariant,
47428
- terms: termsContent,
47429
- title: termsTitle,
47430
- isOpen: termsModalOpen,
47431
- toggleOpen: setTermsModalOpen
47432
- }))))));
48545
+ }, /*#__PURE__*/React.createElement(TermsAndConditions, {
48546
+ version: "v2",
48547
+ showCheckbox: false,
48548
+ description: "View",
48549
+ terms: termsContent
48550
+ })))));
47433
48551
  };
47434
48552
 
47435
48553
  var formConfig$6 = {
@@ -47484,20 +48602,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
47484
48602
  saveToWallet = _ref.saveToWallet,
47485
48603
  walletCheckboxMarked = _ref.walletCheckboxMarked,
47486
48604
  deniedCards = _ref.deniedCards,
47487
- termsContent = _ref.termsContent,
47488
- _ref$termsTitle = _ref.termsTitle,
47489
- termsTitle = _ref$termsTitle === void 0 ? "Terms &amp; Conditions" : _ref$termsTitle;
48605
+ termsContent = _ref.termsContent;
47490
48606
 
47491
48607
  var _useContext = useContext(ThemeContext),
47492
48608
  isMobile = _useContext.isMobile;
47493
48609
 
47494
- var _useState = useState(false),
47495
- _useState2 = _slicedToArray(_useState, 2),
47496
- termsModalOpen = _useState2[0],
47497
- setTermsModalOpen = _useState2[1];
47498
-
47499
48610
  var showTerms = !!termsContent;
47500
- var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
47501
48611
  useEffect$1(function () {
47502
48612
  if (deniedCards) {
47503
48613
  deniedCards.map(function (card) {
@@ -47607,7 +48717,8 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
47607
48717
  },
47608
48718
  autocomplete: "billing postal-code"
47609
48719
  })), (showWalletCheckbox || showTerms) && /*#__PURE__*/React.createElement(Cluster, {
47610
- childGap: "4px"
48720
+ childGap: "4px",
48721
+ align: "center"
47611
48722
  }, showWalletCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
47612
48723
  name: "credit card checkbox",
47613
48724
  title: "Save credit card to wallet.",
@@ -47615,18 +48726,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
47615
48726
  onChange: saveToWallet
47616
48727
  }), showTerms && /*#__PURE__*/React.createElement(Cover, {
47617
48728
  singleChild: true
47618
- }, /*#__PURE__*/React.createElement(Cluster, {
47619
- childGap: 0
47620
- }, /*#__PURE__*/React.createElement(Text$1, {
47621
- variant: showTermsLinkVariant
47622
- }, "View\xA0"), /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
47623
- link: termsTitle,
47624
- linkVariant: showTermsLinkVariant,
47625
- terms: termsContent,
47626
- title: termsTitle,
47627
- isOpen: termsModalOpen,
47628
- toggleOpen: setTermsModalOpen
47629
- }))))));
48729
+ }, /*#__PURE__*/React.createElement(TermsAndConditions, {
48730
+ version: "v2",
48731
+ showCheckbox: false,
48732
+ description: "View",
48733
+ terms: termsContent
48734
+ })))));
47630
48735
  };
47631
48736
 
47632
48737
  var PaymentFormCard$1 = withWindowSize(PaymentFormCard);
@@ -47905,13 +49010,13 @@ var RadioGroup = function RadioGroup(_ref) {
47905
49010
  var headingBackgroundColor$1 = "".concat(WHITE);
47906
49011
  var headingDisabledColor = "".concat(ATHENS_GREY);
47907
49012
  var bodyBackgroundColor$1 = "#eeeeee";
47908
- var borderColor$5 = "".concat(GREY_CHATEAU);
49013
+ var borderColor$6 = "".concat(GREY_CHATEAU);
47909
49014
  var focusStyles = "outline: none;";
47910
49015
  var fallbackValues$O = {
47911
49016
  headingBackgroundColor: headingBackgroundColor$1,
47912
49017
  headingDisabledColor: headingDisabledColor,
47913
49018
  bodyBackgroundColor: bodyBackgroundColor$1,
47914
- borderColor: borderColor$5,
49019
+ borderColor: borderColor$6,
47915
49020
  focusStyles: focusStyles
47916
49021
  };
47917
49022
 
@@ -47952,7 +49057,8 @@ var RadioSection = function RadioSection(_ref) {
47952
49057
  _ref$initiallyOpen = _ref.initiallyOpen,
47953
49058
  initiallyOpen = _ref$initiallyOpen === void 0 ? true : _ref$initiallyOpen,
47954
49059
  _ref$openHeight = _ref.openHeight,
47955
- openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight;
49060
+ openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight,
49061
+ ariaDescribedBy = _ref.ariaDescribedBy;
47956
49062
 
47957
49063
  var handleKeyDown = function handleKeyDown(id, e) {
47958
49064
  if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13) {
@@ -48029,7 +49135,7 @@ var RadioSection = function RadioSection(_ref) {
48029
49135
  }, /*#__PURE__*/React.createElement(Stack, {
48030
49136
  childGap: "0"
48031
49137
  }, /*#__PURE__*/React.createElement(Box, {
48032
- padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem 1.25rem 1.25rem",
49138
+ padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem",
48033
49139
  background: section.disabled ? themeValues.headingDisabledColor : themeValues.headingBackgroundColor,
48034
49140
  onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
48035
49141
  return toggleOpenSection(section.id);
@@ -48046,7 +49152,7 @@ var RadioSection = function RadioSection(_ref) {
48046
49152
  }, /*#__PURE__*/React.createElement(Cluster, {
48047
49153
  justify: "space-between",
48048
49154
  align: "center",
48049
- childGap: "0.5rem",
49155
+ childGap: "1px",
48050
49156
  nowrap: true
48051
49157
  }, /*#__PURE__*/React.createElement(Cluster, {
48052
49158
  justify: "flex-start",
@@ -48055,7 +49161,8 @@ var RadioSection = function RadioSection(_ref) {
48055
49161
  }, !section.hideRadioButton && /*#__PURE__*/React.createElement(Box, {
48056
49162
  padding: "0"
48057
49163
  }, /*#__PURE__*/React.createElement(RadioButton$2, {
48058
- name: section.id,
49164
+ name: typeof section.title === "string" ? createIdFromString(section.title) : section.id,
49165
+ ariaDescribedBy: ariaDescribedBy,
48059
49166
  radioOn: openSection === section.id,
48060
49167
  radioFocused: focused === section.id,
48061
49168
  toggleRadio: section.disabled ? noop : function () {
@@ -48095,7 +49202,7 @@ var RadioSection = function RadioSection(_ref) {
48095
49202
  })));
48096
49203
  };
48097
49204
 
48098
- var RadioSection$1 = themeComponent$1(RadioSection, "RadioSection", fallbackValues$O);
49205
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$O);
48099
49206
 
48100
49207
  var RegistrationForm = function RegistrationForm(_ref) {
48101
49208
  var _emailErrorMessages, _passwordErrorMessage;
@@ -48471,7 +49578,7 @@ var Tabs = function Tabs(_ref) {
48471
49578
  }))));
48472
49579
  };
48473
49580
 
48474
- var Tabs$1 = themeComponent$1(Tabs, "NavigationTab", fallbackValues$P);
49581
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$P);
48475
49582
 
48476
49583
  var activeTabBackground$1 = "#FFFFFF";
48477
49584
  var activeTabAccent$1 = "#15749D";
@@ -48532,40 +49639,7 @@ var TabSidebar = function TabSidebar(_ref) {
48532
49639
  })));
48533
49640
  };
48534
49641
 
48535
- var TabSidebar$1 = themeComponent$1(TabSidebar, "ProfileTab", fallbackValues$Q);
48536
-
48537
- var TermsAndConditions = function TermsAndConditions(_ref) {
48538
- var onCheck = _ref.onCheck,
48539
- isChecked = _ref.isChecked,
48540
- html = _ref.html,
48541
- terms = _ref.terms,
48542
- _ref$error = _ref.error,
48543
- error = _ref$error === void 0 ? false : _ref$error,
48544
- linkVariant = _ref.linkVariant;
48545
-
48546
- var _useState = useState(false),
48547
- _useState2 = _slicedToArray(_useState, 2),
48548
- showTerms = _useState2[0],
48549
- toggleShowTerms = _useState2[1];
48550
-
48551
- return /*#__PURE__*/React.createElement(DisplayBox$1, null, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Checkbox$1, {
48552
- name: "terms",
48553
- title: "Terms and Conditions",
48554
- error: error,
48555
- checked: isChecked,
48556
- onChange: onCheck
48557
- }), /*#__PURE__*/React.createElement(Box, {
48558
- padding: "0 0 0 58px"
48559
- }, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Box, {
48560
- padding: "0"
48561
- }, html), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
48562
- link: "Learn More",
48563
- terms: terms,
48564
- isOpen: showTerms,
48565
- toggleOpen: toggleShowTerms,
48566
- linkVariant: linkVariant
48567
- })))));
48568
- };
49642
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Q);
48569
49643
 
48570
49644
  var Timeout = function Timeout(_ref) {
48571
49645
  var onLogout = _ref.onLogout;
@@ -48656,7 +49730,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
48656
49730
  })))));
48657
49731
  };
48658
49732
 
48659
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent$1(WelcomeModule, "WelcomeModule", fallbackValues$R));
49733
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$R));
48660
49734
 
48661
49735
  var WorkflowTile = function WorkflowTile(_ref) {
48662
49736
  var _ref$workflowName = _ref.workflowName,
@@ -48728,13 +49802,15 @@ var CenterSingle = function CenterSingle(_ref) {
48728
49802
  _ref$centeredMobileCo = _ref.centeredMobileContent,
48729
49803
  centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
48730
49804
  content = _ref.content,
49805
+ _ref$backgroundColor = _ref.backgroundColor,
49806
+ backgroundColor = _ref$backgroundColor === void 0 ? COOL_GREY_05 : _ref$backgroundColor,
48731
49807
  themeValues = _ref.themeValues;
48732
49808
  var themeContext = useContext(ThemeContext);
48733
49809
  var isMobile = themeContext.isMobile;
48734
49810
  return /*#__PURE__*/React.createElement(Box, {
48735
49811
  padding: "0",
48736
49812
  minWidth: "100%",
48737
- background: COOL_GREY_05,
49813
+ background: backgroundColor,
48738
49814
  extraStyles: "flex-grow: 1;"
48739
49815
  }, /*#__PURE__*/React.createElement(Cover, {
48740
49816
  centerOverride: isMobile && !centeredMobileContent
@@ -48758,7 +49834,7 @@ var CenterSingle = function CenterSingle(_ref) {
48758
49834
  })));
48759
49835
  };
48760
49836
 
48761
- var CenterSingle$1 = withWindowSize(themeComponent$1(CenterSingle, "Global", fallbackValues$S));
49837
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$S));
48762
49838
 
48763
49839
  var CenterStack = function CenterStack(_ref) {
48764
49840
  var header = _ref.header,
@@ -48800,7 +49876,7 @@ var CenterStack = function CenterStack(_ref) {
48800
49876
  })));
48801
49877
  };
48802
49878
 
48803
- var CenterStack$1 = withWindowSize(themeComponent$1(CenterStack, "Global", fallbackValues$S));
49879
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$S));
48804
49880
 
48805
49881
  var CenterSingle$2 = function CenterSingle(_ref) {
48806
49882
  var header = _ref.header,
@@ -48845,7 +49921,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
48845
49921
  })));
48846
49922
  };
48847
49923
 
48848
- var DefaultPageTemplate = withWindowSize(themeComponent$1(CenterSingle$2, "Global", fallbackValues$S));
49924
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$S));
48849
49925
 
48850
49926
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
48851
49927
  var header = _ref.header,
@@ -48899,7 +49975,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
48899
49975
  })));
48900
49976
  };
48901
49977
 
48902
- var SidebarSingleContent$1 = withWindowSize(themeComponent$1(SidebarSingleContent, "Global", fallbackValues$S));
49978
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$S));
48903
49979
 
48904
49980
  var SidebarStackContent = function SidebarStackContent(_ref) {
48905
49981
  var header = _ref.header,
@@ -48970,7 +50046,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
48970
50046
  })));
48971
50047
  };
48972
50048
 
48973
- var SidebarStackContent$1 = withWindowSize(themeComponent$1(SidebarStackContent, "Global", fallbackValues$S));
50049
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$S));
48974
50050
 
48975
- 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, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowUpCircleIconSmall, AutopayOnIcon, BankIcon, BankIconLarge, 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, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, 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, ImageBox, 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$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, 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, SuccessfulIconMedium, SuccessfulIconSmall, 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, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
50051
+ 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, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowUpCircleIconSmall, AutopayOnIcon, BankIcon, BankIconLarge, 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, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, 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, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, 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, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PointOfSaleImage, 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$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, 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, SuccessfulIconMedium, SuccessfulIconSmall, 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, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
48976
50052
  //# sourceMappingURL=index.esm.js.map